/* ==================================================================
   Sip with Bet — Site Styles
   Design system: merlot / gamay / rosé / cream
   Typography: Fraunces (serif, editorial) + Outfit (sans, body)
   Brand: Bethany's personal sommelier umbrella + Wine for Good
   ================================================================== */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    /* Merlot (dark surfaces) */
    --merlot: #2f0000;
    --merlot-deep: #1a0000;
    --merlot-mid: #4a1414;

    /* Gamay (primary warm accent) */
    --gamay: #aa7f80;
    --gamay-deep: #8a5f60;
    --gamay-soft: #c49a9b;

    /* Rosé (feminine highlight) */
    --rose: #f2cbd0;
    --rose-soft: #f8e0e3;
    --rose-deep: #d9a8ae;

    /* Neutrals */
    --cream: #faf5ee;
    --cream-warm: #f3ebde;
    --cream-dark: #e8ddcc;

    /* Text */
    --text-dark: #2a1a1a;
    --text-body: #5a3f42;
    --text-light: #faf5ee;
    --text-muted: #8a6f72;

    --border-light: #e8ddcc;
    --border-dark: rgba(250, 245, 238, 0.08);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Outfit', sans-serif;
    background: var(--cream);
    color: var(--text-body);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
img { max-width: 100%; display: block; }

.skip-link {
    position: absolute; top: -40px; left: 0;
    background: var(--merlot); color: var(--cream);
    padding: 0.5rem 1rem; z-index: 1000;
    text-decoration: none; font-size: 0.8rem;
}
.skip-link:focus { top: 0; }

/* === NAV === */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 1.5rem 3rem;
    transition: all 0.4s ease;
}

.nav.scrolled,
.nav.solid {
    background: rgba(47, 0, 0, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.85rem 3rem;
}

.nav-inner {
    max-width: 1400px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center;
}

.nav-logo {
    display: flex; align-items: center; gap: 0.75rem;
    text-decoration: none;
}

.nav-logo img {
    height: 52px; width: auto;
    transition: height 0.3s ease, filter 0.3s ease;
}

.nav.scrolled .nav-logo img,
.nav.solid .nav-logo img { height: 40px; }

.nav-links {
    display: flex; list-style: none; gap: 2rem; align-items: center;
}

.nav-links a {
    color: rgba(250,245,238,0.75); text-decoration: none;
    font-size: 0.72rem; font-weight: 500;
    letter-spacing: 0.14em; text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a:focus-visible { color: var(--rose); outline: none; }
.nav-links a.is-current { color: var(--rose); }

.nav-cta {
    background: var(--rose) !important;
    color: var(--merlot) !important;
    padding: 0.55rem 1.4rem; font-weight: 600 !important;
    border-radius: 2px;
}

.nav-cta:hover,
.nav-cta:focus-visible { background: var(--rose-deep) !important; }

.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    cursor: pointer; background: none; border: none;
    padding: 0.25rem;
}

.nav-toggle span {
    display: block; width: 24px; height: 1.5px;
    background: var(--cream); transition: all 0.3s;
}

/* === HERO === */
.hero {
    min-height: 100vh; min-height: 100svh;
    display: grid; grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative; overflow: hidden;
    background: var(--cream);
}

.hero::before {
    content: ''; position: absolute;
    top: 0; right: 0; width: 50%; height: 100%;
    background: var(--rose-soft);
    z-index: 0;
}

.hero-content {
    position: relative; z-index: 2;
    padding: 8rem 4rem 6rem;
    max-width: 620px;
    margin-left: auto;
}

.hero-tag {
    font-size: 0.7rem; font-weight: 500;
    letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--gamay-deep); margin-bottom: 1.5rem;
    display: flex; align-items: center; gap: 0.75rem;
}

.hero-tag::before { content: ''; width: 30px; height: 1px; background: var(--gamay); }

.hero h1 {
    font-family: 'Fraunces', serif;
    font-optical-sizing: auto;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 300;
    color: var(--text-dark); line-height: 1.02;
    letter-spacing: -0.02em; margin-bottom: 1.5rem;
}

.hero h1 em {
    font-style: italic;
    color: var(--merlot);
    font-weight: 400;
}

.hero-sub {
    font-size: 1.08rem; font-weight: 300;
    color: var(--text-body); max-width: 480px;
    line-height: 1.75; margin-bottom: 2.5rem;
}

.hero-cta-wrap {
    display: flex; gap: 1rem; flex-wrap: wrap;
}

.hero-image {
    position: relative; z-index: 2;
    height: 100vh; height: 100svh;
    background-size: cover; background-position: center;
}

/* === BUTTONS === */
.btn {
    display: inline-block; padding: 1rem 2.2rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase;
    text-decoration: none; transition: all 0.3s ease;
    cursor: pointer; border: none;
    border-radius: 2px;
}

.btn:focus-visible {
    outline: 2px solid var(--gamay);
    outline-offset: 3px;
}

.btn-merlot { background: var(--merlot); color: var(--cream); }
.btn-merlot:hover { background: var(--merlot-mid); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(47,0,0,0.18); }

.btn-gamay { background: var(--gamay); color: var(--cream); }
.btn-gamay:hover { background: var(--gamay-deep); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(170,127,128,0.28); }

.btn-outline-dark {
    border: 1px solid var(--text-dark); color: var(--text-dark);
    background: transparent;
}
.btn-outline-dark:hover { background: var(--text-dark); color: var(--cream); }

.btn-outline-light {
    border: 1px solid rgba(250,245,238,0.45); color: var(--cream);
    background: transparent;
}
.btn-outline-light:hover { border-color: var(--rose); color: var(--rose); }

.btn-rose { background: var(--rose); color: var(--merlot); }
.btn-rose:hover { background: var(--rose-deep); transform: translateY(-2px); }

/* === SECTIONS === */
.section { padding: 7rem 3rem; position: relative; }
.section-inner { max-width: 1200px; margin: 0 auto; }

.section-tag {
    font-size: 0.7rem; font-weight: 500;
    letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--gamay-deep); margin-bottom: 1rem;
}

.section-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--text-dark); line-height: 1.1;
    letter-spacing: -0.015em; margin-bottom: 1.5rem;
}

.section-title em {
    font-style: italic;
    color: var(--merlot);
    font-weight: 400;
}

.section-title-light { color: var(--cream); }
.section-title-light em { color: var(--rose); }

.section-desc {
    font-size: 1rem; font-weight: 300;
    color: var(--text-body); max-width: 560px; line-height: 1.8;
}

.reveal {
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1),
                transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.rd1 { transition-delay: 0.1s; }
.rd2 { transition-delay: 0.2s; }
.rd3 { transition-delay: 0.3s; }
.rd4 { transition-delay: 0.4s; }

/* === PAGE HERO (subpages) === */
.page-hero {
    padding: 10rem 3rem 5rem;
    background: var(--merlot);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: ''; position: absolute;
    top: 0; right: 0; width: 40%; height: 100%;
    background: linear-gradient(135deg, var(--merlot) 0%, var(--merlot-mid) 100%);
    opacity: 0.6; z-index: 0;
}

.page-hero-inner {
    max-width: 1200px; margin: 0 auto;
    position: relative; z-index: 2;
}

.page-tag {
    font-size: 0.7rem; font-weight: 500;
    letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--rose); margin-bottom: 1.5rem;
    display: flex; align-items: center; gap: 0.75rem;
}

.page-tag::before { content: ''; width: 30px; height: 1px; background: var(--rose); }

.page-hero h1 {
    font-family: 'Fraunces', serif;
    font-size: clamp(2.4rem, 5.5vw, 4.5rem);
    font-weight: 300; line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--cream); max-width: 20ch;
    margin-bottom: 1.25rem;
}

.page-hero h1 em { font-style: italic; color: var(--rose); font-weight: 400; }

.page-hero-sub {
    font-size: 1.08rem; font-weight: 300;
    color: rgba(250,245,238,0.85);
    max-width: 620px; line-height: 1.75;
}

/* === TWO COL STORY === */
.two-col {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 5rem; align-items: center;
}

.two-col.image-right { grid-template-columns: 1fr 1fr; }

.two-col-photo {
    aspect-ratio: 4/5;
    background-size: cover; background-position: center;
    border-radius: 2px;
}

.two-col-photo.landscape { aspect-ratio: 4/3; }

.pullquote {
    padding-left: 1.5rem; border-left: 2px solid var(--gamay);
    font-family: 'Fraunces', serif;
    font-size: 1.25rem; font-style: italic;
    color: var(--merlot);
    line-height: 1.55; margin: 2rem 0;
    font-weight: 300;
}

/* === SERVICES (3-up) === */
.services-bg { background: var(--cream-warm); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.service-card {
    background: var(--cream);
    padding: 2.75rem 2.25rem;
    border: 1px solid var(--border-light);
    border-radius: 2px;
    transition: all 0.3s ease;
    display: flex; flex-direction: column;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(47,0,0,0.08);
    border-color: var(--gamay);
}

.service-icon {
    width: 42px; height: 42px;
    background: var(--rose-soft);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    display: flex; align-items: center; justify-content: center;
    color: var(--merlot);
    font-family: 'Fraunces', serif;
    font-size: 1.25rem;
    font-style: italic;
}

.service-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.4rem; font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.25;
}

.service-card p {
    font-size: 0.93rem; color: var(--text-body);
    line-height: 1.7; flex: 1;
    margin-bottom: 1.25rem;
}

.service-price {
    font-size: 0.78rem; color: var(--gamay-deep);
    letter-spacing: 0.12em; text-transform: uppercase;
    font-weight: 500;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}

/* === WINE FOR GOOD SPOTLIGHT (homepage) === */
.wfg-spotlight {
    background: var(--rose-soft);
    padding: 7rem 3rem;
    position: relative;
    overflow: hidden;
}

.wfg-spotlight::before {
    content: ''; position: absolute;
    top: -10%; right: -5%; width: 40%; height: 120%;
    background: var(--rose);
    border-radius: 50%;
    opacity: 0.35;
    z-index: 0;
}

.wfg-inner {
    max-width: 1200px; margin: 0 auto;
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1.1fr 1fr;
    gap: 5rem; align-items: center;
}

.wfg-mission {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.6rem, 3vw, 2.15rem);
    font-weight: 300; font-style: italic;
    color: var(--merlot);
    line-height: 1.3;
    margin: 1.5rem 0 2rem;
    letter-spacing: -0.01em;
}

.wfg-steps {
    display: flex; gap: 1.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.wfg-step {
    flex: 1; min-width: 160px;
}

.wfg-step-num {
    font-family: 'Fraunces', serif;
    font-size: 2.2rem; font-weight: 300;
    font-style: italic;
    color: var(--gamay);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.wfg-step-title {
    font-family: 'Fraunces', serif;
    font-size: 1rem; font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.35rem;
}

.wfg-step-text {
    font-size: 0.85rem; color: var(--text-body);
    line-height: 1.55;
}

.wfg-photo {
    aspect-ratio: 4/5;
    background-size: cover; background-position: center;
    border-radius: 2px;
    box-shadow: 0 20px 60px rgba(47,0,0,0.15);
}

/* === TOURS TEASER === */
.tours-teaser {
    padding: 5rem 3rem;
    text-align: center;
    background: var(--cream);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.tours-teaser-inner {
    max-width: 620px; margin: 0 auto;
}

.tours-teaser h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.75rem, 3vw, 2.3rem);
    font-weight: 300; line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.tours-teaser h2 em { font-style: italic; color: var(--merlot); font-weight: 400; }

.tours-teaser p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* === TESTIMONIAL === */
.testimonial {
    background: var(--merlot);
    color: var(--cream);
    padding: 7rem 3rem;
    text-align: center;
}

.testimonial-inner {
    max-width: 820px; margin: 0 auto;
}

.testimonial-quote {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.5rem, 3vw, 2.15rem);
    font-style: italic; font-weight: 300;
    line-height: 1.4;
    margin-bottom: 2rem;
    color: var(--cream);
    letter-spacing: -0.01em;
}

.testimonial-quote::before { content: '"'; color: var(--rose); margin-right: 0.15em; }
.testimonial-quote::after { content: '"'; color: var(--rose); margin-left: 0.15em; }

.testimonial-attribution {
    font-size: 0.8rem; letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(250,245,238,0.65);
    font-weight: 500;
}

/* === CONTACT DUAL CTA === */
.contact {
    padding: 7rem 3rem;
    background: var(--cream-warm);
}

.contact-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 4rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    background: var(--cream);
    padding: 3rem 2.5rem;
    border: 1px solid var(--border-light);
    border-radius: 2px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: flex; flex-direction: column;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(47,0,0,0.1);
    border-color: var(--gamay);
}

.contact-card-tag {
    font-size: 0.68rem; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--gamay-deep);
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.5rem; font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.contact-card p {
    font-size: 0.93rem; color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.contact-card-cta {
    font-size: 0.72rem; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--merlot);
    font-weight: 600;
}

.contact-card-cta::after { content: ' →'; transition: margin-left 0.3s; display: inline-block; }
.contact-card:hover .contact-card-cta::after { margin-left: 0.25em; }

/* === FOOTER === */
.footer {
    background: var(--merlot-deep);
    color: var(--cream);
    padding: 3rem 3rem 2rem;
}

.footer-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-brand img {
    height: 56px; width: auto;
    margin-bottom: 1rem;
    filter: brightness(1.5) contrast(0.9);
}

.footer-brand p {
    font-size: 0.88rem;
    color: rgba(250,245,238,0.65);
    line-height: 1.7;
    max-width: 340px;
}

.footer-col h4 {
    font-size: 0.65rem; font-weight: 600;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--rose); margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }
.footer-col li { padding: 0.25rem 0; }

.footer-col a {
    color: rgba(250,245,238,0.7);
    text-decoration: none;
    font-size: 0.88rem; transition: color 0.3s;
}

.footer-col a:hover,
.footer-col a:focus-visible { color: var(--rose); outline: none; }

.footer-bottom {
    max-width: 1200px; margin: 0 auto;
    padding-top: 2rem; border-top: 1px solid rgba(250,245,238,0.1);
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 1rem;
    font-size: 0.78rem; color: rgba(250,245,238,0.45);
}

.footer-bottom a { color: rgba(250,245,238,0.45); text-decoration: none; transition: color 0.3s; }
.footer-bottom a:hover { color: var(--rose); }

/* === WINE FOR GOOD PAGE SPECIFIC === */
.wfg-hero {
    background: linear-gradient(180deg, var(--merlot) 0%, var(--merlot-mid) 100%);
    color: var(--cream);
    padding: 10rem 3rem 6rem;
    position: relative;
    overflow: hidden;
}

.wfg-hero::before {
    content: ''; position: absolute;
    bottom: -10%; left: -5%; width: 500px; height: 500px;
    background: radial-gradient(circle, var(--rose) 0%, transparent 60%);
    opacity: 0.2; z-index: 0;
}

.wfg-hero-inner {
    max-width: 900px; margin: 0 auto;
    position: relative; z-index: 2;
    text-align: center;
}

.wfg-hero h1 {
    font-family: 'Fraunces', serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 300; line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--cream);
    margin-bottom: 2rem;
}

.wfg-hero h1 em { font-style: italic; color: var(--rose); font-weight: 400; }

.wfg-hero-tagline {
    font-family: 'Fraunces', serif;
    font-size: 1.3rem; font-style: italic;
    color: var(--rose);
    letter-spacing: 0.05em;
    margin-bottom: 2.5rem;
}

.wfg-hero-sub {
    font-family: 'Fraunces', serif;
    font-size: 1.25rem; font-weight: 300;
    color: rgba(250,245,238,0.9);
    line-height: 1.55; max-width: 720px; margin: 0 auto 2rem;
}

/* Wide how-it-works grid for dedicated page */
.wfg-how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.wfg-how-card {
    padding: 2rem 0;
}

.wfg-how-num {
    font-family: 'Fraunces', serif;
    font-size: 3.5rem; font-weight: 300;
    font-style: italic;
    color: var(--gamay);
    line-height: 1; margin-bottom: 1rem;
}

.wfg-how-title {
    font-family: 'Fraunces', serif;
    font-size: 1.4rem; font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
}

.wfg-how-text {
    font-size: 0.95rem; color: var(--text-body);
    line-height: 1.75;
}

/* Past events grid */
.past-events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.past-event {
    background: var(--cream);
    padding: 2rem;
    border: 1px solid var(--border-light);
    border-radius: 2px;
}

.past-event-date {
    font-size: 0.72rem; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--gamay-deep);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.past-event h4 {
    font-family: 'Fraunces', serif;
    font-size: 1.2rem; font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.past-event p {
    font-size: 0.88rem; color: var(--text-body);
    line-height: 1.6;
}

.past-event-impact {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
    font-size: 0.82rem;
    color: var(--merlot);
    font-weight: 500;
}

/* CTA Band */
.cta-band {
    background: var(--gamay);
    color: var(--cream);
    padding: 6rem 3rem;
    text-align: center;
}

.cta-band-inner {
    max-width: 720px; margin: 0 auto;
}

.cta-band h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 300; line-height: 1.2;
    color: var(--cream);
    margin-bottom: 1.25rem;
}

.cta-band h2 em { font-style: italic; color: var(--rose-soft); font-weight: 400; }

.cta-band p {
    font-size: 1rem; color: rgba(250,245,238,0.9);
    line-height: 1.7; margin-bottom: 2rem;
}

/* === UTIL === */
.gap-note {
    display: inline-block;
    font-size: 0.62rem;
    color: var(--gamay-deep);
    background: rgba(170,127,128,0.12);
    padding: 0.15rem 0.55rem;
    border: 1px dashed var(--gamay);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-left: 0.5rem;
    vertical-align: middle;
    font-weight: 500;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .hero::before { display: none; }
    .hero-content {
        padding: 8rem 2rem 4rem;
        margin: 0 auto;
        max-width: 720px;
    }
    .hero-image {
        height: 60vh;
        order: -1;
    }
    .two-col, .wfg-inner { grid-template-columns: 1fr; gap: 3rem; }
    .services-grid, .wfg-how-grid, .past-events-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    .nav { padding: 1.2rem 1.5rem; }
    .nav.scrolled, .nav.solid { padding: 0.75rem 1.5rem; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        flex-direction: column;
        background: rgba(47,0,0,0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 1.5rem 2rem 2rem; gap: 0;
    }
    .nav-links.open { display: flex; }
    .nav-links li { width: 100%; padding: 0.7rem 0; border-bottom: 1px solid var(--border-dark); }
    .nav-links li:last-child { border-bottom: none; padding-top: 1rem; }
    .nav-toggle { display: flex; }
    .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

    .section { padding: 5rem 1.5rem; }
    .hero-content { padding: 7rem 1.5rem 3rem; }
    .page-hero { padding: 8rem 1.5rem 4rem; }
    .services-grid, .wfg-how-grid, .past-events-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
    .wfg-spotlight { padding: 5rem 1.5rem; }
    .testimonial { padding: 5rem 1.5rem; }
    .contact { padding: 5rem 1.5rem; }
    .cta-band { padding: 4rem 1.5rem; }
    .hero-cta-wrap { flex-direction: column; align-items: stretch; }
    .hero-cta-wrap .btn { text-align: center; }
}

@media (max-width: 480px) {
    html { font-size: 15px; }
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .reveal { opacity: 1; transform: none; }
}
