/* ============================================================
   Ms. Fizzy's Dirty Sodas — Shared Stylesheet
   ============================================================ */

:root {
    --cream: #FDF6E3;
    --cream-dark: #F5EAC8;
    --gold: #C8922A;
    --gold-light: #E8B84B;
    --red-bright: #E74C3C;
    --red-light: #FF6B5B;
    --brown-dark: #2C1A0E;   /* kept for text contrast elements only */
    --brown-mid: #3D2010;    /* kept for body text */
    --coral: #D4583A;
    --coral-light: #E8795E;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    background-color: var(--cream);
    font-family: 'Montserrat', sans-serif;
    color: var(--brown-dark);
    min-height: 100vh;
}

/* ============================================================
   BUBBLES (index only, but defined here for cleanliness)
   will-change: transform enables GPU compositing — fixes
   the "non-composited animations" PageSpeed warning
   ============================================================ */
.bubble {
    position: fixed; bottom: -100px; border-radius: 50%;
    background: radial-gradient(circle at 28% 28%, #ffffff 0%, #ffffff 30%, rgba(220,235,255,0.7) 65%, rgba(180,210,255,0.3) 100%);
    border: 2px solid #ffffff;
    box-shadow: 0 0 16px rgba(255,255,255,1), 0 0 6px rgba(180,210,255,0.9), inset 0 2px 6px #ffffff;
    animation: rise linear infinite;
    z-index: 0; pointer-events: none;
    will-change: transform; /* GPU-composited — fixes PageSpeed animation warning */
}
.bubble:nth-child(1)  { width:20px;height:20px;left:10%;animation:rise1 8s linear infinite;animation-delay:-4s; }
.bubble:nth-child(2)  { width:40px;height:40px;left:25%;animation:rise2 7s linear infinite;animation-delay:-5s; }
.bubble:nth-child(3)  { width:15px;height:15px;left:40%;animation:rise3 9s linear infinite;animation-delay:-2s; }
.bubble:nth-child(4)  { width:50px;height:50px;left:55%;animation:rise1 11s linear infinite;animation-delay:-8s; }
.bubble:nth-child(5)  { width:25px;height:25px;left:70%;animation:rise2 9s linear infinite;animation-delay:-1s; }
.bubble:nth-child(6)  { width:20px;height:20px;left:90%;animation:rise1 6s linear infinite;animation-delay:-3s; }
.bubble:nth-child(7)  { width:40px;height:40px;left:75%;animation:rise2 12s linear infinite;animation-delay:-9s; }
.bubble:nth-child(8)  { width:15px;height:15px;left:60%;animation:rise3 7s linear infinite;animation-delay:-6s; }
.bubble:nth-child(9)  { width:50px;height:50px;left:15%;animation:rise1 10s linear infinite;animation-delay:-7s; }
.bubble:nth-child(10) { width:25px;height:25px;left:35%;animation:rise2 8s linear infinite;animation-delay:-4s; }
.bubble:nth-child(11) { width:35px;height:35px;left:85%;animation:rise3 11s linear infinite;animation-delay:-2s; }

@keyframes rise1 { 0%{bottom:-100px;opacity:0;transform:translateX(0)} 10%{opacity:.9} 50%{transform:translateX(30px)} 100%{bottom:110vh;opacity:0;transform:translateX(-30px)} }
@keyframes rise2 { 0%{bottom:-100px;opacity:0;transform:translateX(0)} 10%{opacity:.8} 50%{transform:translateX(-25px)} 100%{bottom:110vh;opacity:0;transform:translateX(25px)} }
@keyframes rise3 { 0%{bottom:-100px;opacity:0;transform:translateX(0)} 10%{opacity:.9} 50%{transform:translateX(20px)} 100%{bottom:110vh;opacity:0;transform:translateX(-20px)} }

/* ============================================================
   NAV — light bright red
   ============================================================ */
nav {
    background-color: var(--red-bright);
    border-bottom: 3px solid var(--gold);
    position: sticky; top: 0; z-index: 50; padding: 0 1.5rem;
}
.nav-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between; height: 70px;
}
.nav-brand { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.nav-brand img { height: 48px; width: 48px; object-fit: contain; }
.nav-brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.nav-brand-name { font-family: 'Pacifico', cursive; font-size: 1.35rem; color: var(--cream); }
.nav-brand-sub { font-size: 0.58rem; font-weight: 800; letter-spacing: 0.25em; text-transform: uppercase; color: var(--cream); opacity: 0.85; }

.nav-links { display: flex; align-items: center; gap: 1.75rem; }
.nav-links a { text-decoration: none; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--cream); transition: color 0.2s; }
.nav-links a:hover { color: var(--gold); }

.nav-cta { background: var(--brown-dark) !important; color: var(--cream) !important; padding: 0.45rem 1.1rem; border-radius: 999px; border: 2px solid var(--gold) !important; transition: background 0.2s, transform 0.15s !important; }
.nav-cta:hover { background: var(--gold) !important; color: var(--brown-dark) !important; transform: translateY(-1px) !important; }

.nav-ig svg { stroke: var(--cream); transition: stroke 0.2s; }
.nav-ig:hover svg { stroke: var(--gold); }

.hamburger { display: none; background: none; border: 2px solid var(--cream); border-radius: 6px; padding: 6px 8px; cursor: pointer; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--cream); border-radius: 2px; }

.mobile-menu { display: none; background: var(--red-bright); border-top: 1px solid rgba(255,255,255,0.25); padding: 0.5rem 1.5rem 1.25rem; }
.mobile-menu a { display: block; padding: 0.85rem 0; border-bottom: 1px solid rgba(255,255,255,0.2); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--cream); text-decoration: none; transition: color 0.2s; }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--gold); }

@media (max-width: 860px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .nav-brand-sub { display: none; }
    .nav-brand-name { font-size: 1.15rem; }
}

/* ============================================================
   SHARED COMPONENTS
   ============================================================ */
.section-tag {
    display: inline-block;
    background: var(--brown-dark); color: var(--cream-dark);
    font-size: 0.62rem; font-weight: 800; letter-spacing: 0.25em; text-transform: uppercase;
    padding: 0.3rem 0.9rem; border-radius: 999px;
    border: 1.5px solid var(--coral); margin-bottom: 1.25rem;
}

.btn-primary {
    display: inline-block; background: var(--coral); color: var(--cream);
    font-size: 0.73rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase;
    padding: 0.85rem 2rem; border-radius: 999px; text-decoration: none;
    border: 2px solid var(--coral-light); transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(212,88,58,0.28);
    cursor: pointer; font-family: 'Montserrat', sans-serif;
}
.btn-primary:hover { background: var(--coral-light); color: var(--brown-dark); transform: translateY(-2px); }

.btn-outline {
    display: inline-block; background: transparent; color: var(--brown-dark);
    font-size: 0.73rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase;
    padding: 0.85rem 2rem; border-radius: 999px; text-decoration: none;
    border: 2px solid var(--gold); transition: all 0.2s;
    cursor: pointer; font-family: 'Montserrat', sans-serif;
}
.btn-outline:hover { background: var(--gold); color: var(--cream); transform: translateY(-2px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    background: var(--cream);
    border-bottom: 3px solid var(--gold);
    padding: 5rem 1.5rem 4.5rem;
    text-align: center; position: relative; overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(200,146,42,0.1) 0%, transparent 65%);
    pointer-events: none;
}
.hero-card {
    display: inline-block; background: var(--cream);
    border: 3px solid var(--gold); border-radius: 28px;
    padding: 3rem 3.5rem 2.5rem;
    box-shadow: 0 8px 48px rgba(44,26,14,0.12), inset 0 0 0 8px rgba(200,146,42,0.05);
    position: relative; max-width: 520px; width: 100%;
}
.hero-logo {
    width: 150px; height: 150px; object-fit: contain;
    margin: 0 auto 1.25rem; display: block;
}
.hero-brand { font-family: 'Pacifico', cursive; font-size: 3rem; color: var(--gold); line-height: 1; margin-bottom: 0.4rem; }
.hero-sub { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.32em; text-transform: uppercase; color: var(--brown-dark); margin-bottom: 0.6rem; }
.hero-tagline { font-size: 0.85rem; color: var(--brown-mid); margin-bottom: 2rem; font-weight: 500; }
.hero-btns { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   ABOUT
   ============================================================ */
.about {
    background: var(--cream);
    border-top: 3px solid var(--gold); border-bottom: 3px solid var(--gold);
    padding: 5rem 1.5rem; position: relative;
}
.about-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.about-heading { font-family: 'Pacifico', cursive; font-size: 3.2rem; color: var(--red-bright); margin-bottom: 1.75rem; }
.about-body {
    background: var(--cream); border: 2.5px solid var(--gold);
    border-radius: 20px; padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(44,26,14,0.07);
}
.about-body p { font-size: 0.95rem; line-height: 1.85; color: var(--brown-mid); margin-bottom: 1.25rem; }
.about-body p:last-of-type { margin-bottom: 1.75rem; }
.about-drinks { font-family: 'Pacifico', cursive; font-size: 1.25rem; color: var(--coral); line-height: 1.7; }

@media (max-width: 580px) { .about-heading { font-size: 2.4rem; } }

/* ============================================================
   QUIZ STRIP
   ============================================================ */
.quiz-strip {
    background: var(--coral);
    border-top: 3px solid var(--coral-light); border-bottom: 3px solid var(--coral-light);
    padding: 5rem 1.5rem; text-align: center; position: relative; overflow: hidden;
}
.quiz-strip::before {
    content: '🥤'; position: absolute; font-size: 12rem; opacity: 0.07;
    top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none;
}
.quiz-strip-tag {
    display: inline-block; background: rgba(255,255,255,0.15); color: var(--cream);
    font-size: 0.62rem; font-weight: 800; letter-spacing: 0.3em; text-transform: uppercase;
    padding: 0.3rem 1rem; border-radius: 999px;
    border: 1.5px solid rgba(255,255,255,0.35); margin-bottom: 1rem;
}
.quiz-strip h3 { font-family: 'Pacifico', cursive; font-size: 2.8rem; color: var(--cream); margin-bottom: 0.75rem; line-height: 1.2; }
.quiz-strip p { font-size: 0.88rem; color: var(--cream); opacity: 0.8; margin-bottom: 2rem; font-weight: 500; }
.quiz-strip .btn-quiz {
    display: inline-block; background: var(--cream); color: var(--coral);
    font-size: 0.78rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase;
    padding: 1rem 2.5rem; border-radius: 999px; text-decoration: none;
    border: 2px solid var(--cream); transition: all 0.2s;
    box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}
.quiz-strip .btn-quiz:hover { background: var(--brown-dark); color: var(--cream); border-color: var(--brown-dark); transform: translateY(-2px); }

/* ============================================================
   MENU
   ============================================================ */
.menu { background: var(--cream); padding: 5rem 1.5rem; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { font-family: 'Pacifico', cursive; font-size: 2.8rem; color: var(--red-bright); margin-bottom: 0.4rem; }
.section-header p { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }

.menu-category-label {
    max-width: 1100px; margin: 0 auto 1.25rem;
    font-size: 0.65rem; font-weight: 800; letter-spacing: 0.28em;
    text-transform: uppercase; color: var(--brown-dark);
    padding: 0.3rem 0.9rem; border-left: 3px solid var(--red-bright);
}
.menu-grid {
    max-width: 1100px; margin: 0 auto 3rem;
    display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem;
}
@media (max-width: 860px) { .menu-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px) { .menu-grid { grid-template-columns: 1fr; } }

.menu-card {
    background: var(--cream); border: 2.5px solid var(--gold);
    border-radius: 20px; overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 2px 12px rgba(44,26,14,0.06);
}
.menu-card:hover { transform: translateY(-5px); box-shadow: 0 10px 32px rgba(44,26,14,0.14); }

/* Reserve height for images before they load — reduces CLS */
.menu-card-img { height: 210px; overflow: hidden; background: var(--cream-dark); }.menu-card-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.4s;
    /* Images load lazily by default via loading="lazy" in HTML */
}
.menu-card:hover .menu-card-img img { transform: scale(1.06); }

.menu-card-body { padding: 1.25rem 1.4rem 1.5rem; border-top: 2px solid var(--cream-dark); }
.menu-card-body h3 { font-family: 'Pacifico', cursive; font-size: 1.1rem; color: var(--coral); margin-bottom: 0.5rem; }
.menu-card-body p { font-size: 0.8rem; line-height: 1.6; color: var(--brown-mid); }

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
    max-width: 500px; margin: 3rem auto 0;
    background: var(--coral); border: 2.5px solid var(--coral-light);
    border-radius: 20px; padding: 2rem 2.5rem; text-align: center;
}
.pricing h3 { font-family: 'Pacifico', cursive; font-size: 1.5rem; color: var(--cream); margin-bottom: 1.5rem; }
.pricing-row { display: flex; justify-content: space-between; align-items: center; padding: 0.7rem 0; border-bottom: 1px solid rgba(253,246,227,0.25); }
.pricing-row:last-of-type { border-bottom: none; }
.pricing-row span:first-child { font-size: 0.82rem; font-weight: 700; color: var(--cream); }
.pricing-row span:last-child { font-family: 'Pacifico', cursive; font-size: 1.2rem; color: var(--cream); }
.pricing-note { font-size: 0.72rem; color: rgba(253,246,227,0.7); margin-top: 1rem; font-style: italic; }

/* ============================================================
   SERVICES
   ============================================================ */
.services {
    background: var(--cream);
    border-top: 3px solid var(--gold); border-bottom: 3px solid var(--gold);
    padding: 5rem 1.5rem;
}
.services .section-header h2 { color: var(--red-bright); }
.services .section-header p { color: var(--gold); }
.services-inner { max-width: 880px; margin: 0 auto; }
.services-card {
    background: var(--cream); border: 2.5px solid var(--gold);
    border-radius: 20px; padding: 2.5rem; text-align: center;
    box-shadow: 0 4px 20px rgba(44,26,14,0.07);
}
.services-card h3 { font-family: 'Pacifico', cursive; font-size: 1.8rem; color: var(--red-bright); margin-bottom: 0.75rem; }
.services-card > p { font-size: 0.88rem; color: var(--brown-mid); margin-bottom: 2rem; }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 2.5rem; }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }
.services-box { background: var(--cream-dark); border: 1.5px solid var(--gold); border-radius: 14px; padding: 1.4rem; text-align: left; }
.services-box h4 { font-size: 0.65rem; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brown-dark); margin-bottom: 1rem; }
.services-box ul { list-style: none; }
.services-box li { font-size: 0.82rem; color: var(--brown-mid); padding: 0.32rem 0; display: flex; align-items: center; gap: 0.5rem; }
.services-box li::before { content: '◆'; font-size: 0.4rem; color: var(--coral); flex-shrink: 0; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--cream); padding: 5rem 1.5rem; }
.contact-inner { max-width: 620px; margin: 0 auto; text-align: center; }
.contact-inner p.lead { font-size: 0.88rem; color: var(--brown-mid); margin-bottom: 2.5rem; }
.contact-links { display: flex; flex-direction: column; gap: 1rem; }
.contact-link {
    display: flex; align-items: center; justify-content: center; gap: 1rem;
    background: var(--cream); border: 2.5px solid var(--gold);
    border-radius: 14px; padding: 1.2rem 2rem;
    text-decoration: none; transition: all 0.2s;
}
.contact-link:hover { background: var(--brown-dark); border-color: var(--coral); transform: translateY(-2px); }
.contact-link svg { stroke: var(--coral); flex-shrink: 0; }
.contact-link span { font-size: 0.88rem; font-weight: 700; color: var(--brown-dark); transition: color 0.2s; }
.contact-link:hover span { color: var(--cream); }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: var(--brown-dark); border-top: 3px solid var(--gold); padding: 2.5rem 1.5rem; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 0.9rem; text-align: center; }
.footer-brand { font-family: 'Pacifico', cursive; font-size: 1.4rem; color: var(--gold); }
.footer-tagline { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--cream-dark); opacity: 0.45; }
.footer-icons { display: flex; gap: 1rem; }
.footer-icons a { color: var(--cream-dark); opacity: 0.55; transition: opacity 0.2s; }
.footer-icons a:hover { opacity: 1; }
.footer-copy { font-size: 0.67rem; color: var(--cream-dark); opacity: 0.3; border-top: 1px solid rgba(200,146,42,0.15); padding-top: 1rem; width: 100%; }

/* ============================================================
   PAGE HEADER (event-request, quiz)
   ============================================================ */
.page-header {
    background: var(--cream); border-bottom: 3px solid var(--gold);
    padding: 4rem 1.5rem 3.5rem; text-align: center;
    position: relative; overflow: hidden;
}
.page-header::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(200,146,42,0.1) 0%, transparent 65%);
    pointer-events: none;
}
.page-header h1 { font-family: 'Pacifico', cursive; font-size: 2.8rem; color: var(--red-bright); margin-bottom: 0.75rem; }
.page-header p { font-size: 0.9rem; color: var(--brown-mid); max-width: 520px; margin: 0 auto; }

/* ============================================================
   BOOKING FORM (event-request)
   ============================================================ */
.form-section { padding: 4rem 1.5rem 5rem; }
.form-card {
    max-width: 640px; margin: 0 auto;
    background: var(--cream); border: 2.5px solid var(--gold);
    border-radius: 24px; padding: 2.5rem;
    box-shadow: 0 6px 32px rgba(44,26,14,0.09);
}
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brown-dark); margin-bottom: 0.5rem; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%; background: var(--cream);
    border: 2px solid var(--cream-dark); border-radius: 12px;
    padding: 0.85rem 1rem;
    font-family: 'Montserrat', sans-serif; font-size: 0.88rem;
    color: var(--brown-dark); transition: border-color 0.2s; outline: none; appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(61,32,16,0.35); }
.form-group select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C8922A' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } }
.form-submit { text-align: center; margin-top: 2rem; }

/* ============================================================
   QUIZ PAGE
   ============================================================ */
.quiz-section { padding: 4rem 1.5rem 5rem; }
.quiz-card {
    max-width: 640px; margin: 0 auto;
    background: var(--cream); border: 2.5px solid var(--gold);
    border-radius: 24px; padding: 2.5rem;
    box-shadow: 0 6px 32px rgba(44,26,14,0.09);
}
.quiz-question { display: none; }
.quiz-question.active { display: block; }
.quiz-question h3 { font-family: 'Pacifico', cursive; font-size: 1.5rem; color: var(--red-bright); margin-bottom: 0.5rem; text-align: center; }
.quiz-question .q-sub { font-size: 0.78rem; color: var(--brown-mid); text-align: center; margin-bottom: 1.75rem; font-style: italic; }

.quiz-progress { display: flex; justify-content: center; gap: 0.5rem; margin-bottom: 2rem; }
.progress-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--cream-dark); border: 2px solid var(--gold); transition: background 0.3s; }
.progress-dot.active { background: var(--gold); }
.progress-dot.done { background: var(--red-bright); border-color: var(--red-bright); }

.quiz-options { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
@media (max-width: 460px) { .quiz-options { grid-template-columns: 1fr; } }

.quiz-btn {
    background: var(--cream); border: 2px solid var(--cream-dark);
    border-radius: 14px; padding: 1rem 1.25rem;
    font-family: 'Montserrat', sans-serif; font-size: 0.82rem; font-weight: 700;
    color: var(--brown-dark); cursor: pointer; text-align: center;
    transition: all 0.2s; line-height: 1.4;
}
.quiz-btn:hover { border-color: var(--gold); background: var(--cream-dark); transform: translateY(-2px); box-shadow: 0 4px 14px rgba(44,26,14,0.1); }

#quiz-result { display: none; text-align: center; }
.result-label { font-size: 0.65rem; font-weight: 800; letter-spacing: 0.25em; text-transform: uppercase; color: var(--brown-mid); margin-bottom: 0.5rem; }
.result-drink { font-family: 'Pacifico', cursive; font-size: 2rem; color: var(--red-bright); margin-bottom: 0.25rem; }
.result-tagline { font-family: 'Pacifico', cursive; font-size: 1rem; color: var(--gold); margin-bottom: 1rem; }
.result-divider { width: 60px; height: 3px; background: var(--gold); border-radius: 2px; margin: 1.25rem auto; }
.result-desc { font-size: 0.88rem; color: var(--brown-mid); line-height: 1.8; margin-bottom: 2rem; }
.result-btns { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   THANK YOU PAGE
   ============================================================ */
body.thankyou-page { display: flex; flex-direction: column; }

main {
    flex: 1; display: flex; align-items: center;
    justify-content: center; padding: 4rem 1.5rem;
}
.thankyou-card {
    max-width: 520px; width: 100%;
    background: var(--cream); border: 2.5px solid var(--gold);
    border-radius: 28px; padding: 3.5rem 3rem;
    text-align: center; box-shadow: 0 8px 40px rgba(44,26,14,0.1);
    position: relative;
}
.thankyou-card::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(200,146,42,0.08) 0%, transparent 70%);
    border-radius: 26px; pointer-events: none;
}
.thankyou-icon { font-size: 3.5rem; margin-bottom: 1.25rem; display: block; }
.thankyou-card h1 { font-family: 'Pacifico', cursive; font-size: 2.8rem; color: var(--red-bright); margin-bottom: 1rem; }
.thankyou-card p { font-size: 0.9rem; color: var(--brown-mid); line-height: 1.7; margin-bottom: 0.5rem; }
.thankyou-card p:last-of-type { margin-bottom: 2rem; }
.divider { width: 60px; height: 3px; background: var(--gold); border-radius: 2px; margin: 1.5rem auto; }

/* ============================================================
   RESPONSIVE CATCH-ALLS
   ============================================================ */
@media (max-width: 580px) {
    .hero-card { padding: 2rem 1.5rem; }
    .section-header h2 { font-size: 2rem; }
    .quiz-strip h3 { font-size: 2rem; }
    .page-header h1 { font-size: 2rem; }
    .quiz-card { padding: 1.75rem 1.25rem; }
    .quiz-question h3 { font-size: 1.25rem; }
    .form-card { padding: 1.75rem 1.25rem; }
    .thankyou-card { padding: 2.5rem 1.5rem; }
    .thankyou-card h1 { font-size: 2.2rem; }
}
