/* =========================================================================
   Heal the Root — brand stylesheet
   Palette drawn from the logo: deep navy, sage/olive greens, root brown,
   gold heart accent, on a warm cream ground.
   ========================================================================= */

:root {
    --navy:        #1b2a4a;
    --navy-deep:   #142038;
    --navy-soft:   #2e3e5e;
    --sage:        #8ba888;
    --sage-light:  #a9c2a4;
    --olive:       #5e7355;
    --brown:       #6b4a2e;
    --gold:        #c9a24b;
    --gold-soft:   #d9bd7e;
    --cream:       #fbf8f3;
    --cream-deep:  #f3ece0;
    --ink:         #2b3445;
    --ink-soft:    #56607a;
    --white:       #ffffff;

    --maxw: 1140px;
    --radius: 18px;
    --radius-sm: 10px;
    --shadow-sm: 0 6px 20px rgba(27, 42, 74, 0.06);
    --shadow-md: 0 18px 50px rgba(27, 42, 74, 0.12);
    --shadow-lg: 0 30px 80px rgba(27, 42, 74, 0.18);

    --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --sans: 'Mulish', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ----- Reset ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--sans);
    color: var(--ink);
    background: var(--cream);
    line-height: 1.7;
    font-weight: 400;
    font-size: 1.0625rem;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--olive); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--navy); }

h1, h2, h3, h4 {
    font-family: var(--serif);
    color: var(--navy);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: 0.01em;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.skip-link {
    position: absolute; left: -999px; top: 0; z-index: 200;
    background: var(--navy); color: var(--white); padding: 10px 18px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ----- Buttons ----------------------------------------------------------- */
.btn {
    display: inline-block;
    font-family: var(--sans);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 15px 34px;
    border-radius: 50px;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    white-space: nowrap;
}
.btn-gold { background: var(--gold); color: var(--navy); box-shadow: 0 10px 24px rgba(201, 162, 75, 0.35); }
.btn-gold:hover { background: var(--gold-soft); color: var(--navy-deep); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(201, 162, 75, 0.45); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-deep); color: var(--white); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline-light:hover { background: var(--white); color: var(--navy); }

/* ----- Header ------------------------------------------------------------ */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(251, 248, 243, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(27, 42, 74, 0.08);
    transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; padding-bottom: 14px; gap: 20px; }

.brand { display: flex; align-items: center; gap: 14px; }
.brand-logo { width: 64px; height: 64px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; color: var(--navy); letter-spacing: 0.02em; }
.brand-sub { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--olive); font-weight: 600; }

.primary-nav ul { list-style: none; display: flex; align-items: center; gap: 2px; }
.nav-link {
    font-size: 0.9rem; font-weight: 600; letter-spacing: 0.03em; color: var(--navy-soft);
    padding: 10px 13px; border-radius: 50px; position: relative; white-space: nowrap;
}
.nav-link:hover { color: var(--navy); background: rgba(139, 168, 136, 0.16); }
.nav-link.is-active { color: var(--navy); }
.nav-link.is-active::after {
    content: ''; position: absolute; left: 16px; right: 16px; bottom: 4px; height: 2px; background: var(--gold); border-radius: 2px;
}
.nav-cta {
    margin-left: 10px; background: var(--navy); color: var(--white);
    padding: 11px 22px; border-radius: 50px; font-size: 0.85rem; font-weight: 600;
    letter-spacing: 0.04em; text-transform: uppercase; transition: all var(--transition);
    white-space: nowrap;
}
.nav-cta:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }

.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; background: none; border: none; cursor: pointer; }
.nav-toggle span { display: block; height: 2px; width: 26px; background: var(--navy); border-radius: 2px; transition: all var(--transition); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----- Generic section --------------------------------------------------- */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-cream-deep { background: var(--cream-deep); }
.section-navy { background: var(--navy); color: rgba(255,255,255,0.86); }
.section-navy h1, .section-navy h2, .section-navy h3 { color: var(--white); }

.eyebrow {
    display: inline-block; font-size: 0.75rem; letter-spacing: 0.22em; text-transform: uppercase;
    font-weight: 700; color: var(--olive); margin-bottom: 18px;
}
.section-navy .eyebrow { color: var(--gold-soft); }

.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: 18px; }
.section-head p { color: var(--ink-soft); font-size: 1.1rem; }
.section-navy .section-head p { color: rgba(255,255,255,0.75); }

.lead { font-size: 1.2rem; color: var(--ink-soft); }

.text-center { text-align: center; }
.divider-leaf { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 22px 0; color: var(--sage); }
.divider-leaf::before, .divider-leaf::after { content: ''; height: 1px; width: 60px; background: linear-gradient(to right, transparent, var(--sage)); }
.divider-leaf::after { background: linear-gradient(to left, transparent, var(--sage)); }

/* ----- Hero -------------------------------------------------------------- */
.hero {
    position: relative;
    background:
        radial-gradient(circle at 80% -10%, rgba(139, 168, 136, 0.25), transparent 45%),
        radial-gradient(circle at -10% 110%, rgba(201, 162, 75, 0.16), transparent 40%),
        linear-gradient(160deg, var(--cream) 0%, var(--cream-deep) 100%);
    overflow: hidden;
}
.hero-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; padding: 96px 0 104px; }
.hero-content .eyebrow { color: var(--olive); }
.hero h1 { font-size: clamp(2.6rem, 5.4vw, 4.3rem); line-height: 1.05; margin-bottom: 24px; font-weight: 600; }
.hero h1 em { font-style: italic; color: var(--olive); }
.hero-lead { font-size: 1.22rem; color: var(--ink-soft); max-width: 540px; margin-bottom: 36px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 34px; }
.hero-motto { display: flex; flex-wrap: wrap; gap: 10px 20px; font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--olive); font-weight: 700; }
.hero-motto span { position: relative; padding-left: 22px; }
.hero-motto span::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 10px; height: 10px; border-radius: 50%; background: var(--gold); }

.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-visual-ring {
    position: relative; width: min(360px, 88%); aspect-ratio: 1; border-radius: 50%;
    background: radial-gradient(circle, var(--white) 0%, var(--cream) 70%);
    box-shadow: var(--shadow-lg);
    display: flex; align-items: center; justify-content: center;
}
.hero-visual-ring img { width: 78%; height: 78%; object-fit: contain; }

/* ----- Intro / mission --------------------------------------------------- */
.intro-quote {
    font-family: var(--serif); font-size: clamp(1.6rem, 3.4vw, 2.4rem); font-style: italic;
    color: var(--navy); line-height: 1.4; max-width: 860px; margin: 0 auto; text-align: center;
}
.intro-quote .accent { color: var(--gold); font-style: normal; }

/* ----- Service cards ----------------------------------------------------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.service-card {
    background: var(--white); border-radius: var(--radius); padding: 40px 34px;
    box-shadow: var(--shadow-sm); border: 1px solid rgba(27, 42, 74, 0.05);
    display: flex; flex-direction: column; transition: transform var(--transition), box-shadow var(--transition);
    position: relative; overflow: hidden;
}
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(to right, var(--sage), var(--gold)); transform: scaleX(0); transform-origin: left; transition: transform var(--transition); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 60px; height: 60px; border-radius: 16px; display: flex; align-items: center; justify-content: center;
    background: rgba(139, 168, 136, 0.16); color: var(--olive); margin-bottom: 22px;
}
.service-icon svg { width: 30px; height: 30px; }
.service-card h3 { font-size: 1.55rem; margin-bottom: 12px; }
.service-card p { color: var(--ink-soft); margin-bottom: 22px; flex-grow: 1; }
.service-card .card-link { font-weight: 700; font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy); display: inline-flex; align-items: center; gap: 8px; }
.service-card .card-link span { transition: transform var(--transition); }
.service-card:hover .card-link span { transform: translateX(5px); }
.card-price { font-family: var(--serif); font-size: 1.1rem; color: var(--gold); font-weight: 600; margin-bottom: 16px; }

/* ----- Feature / two-column split --------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-content h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin-bottom: 22px; }
.split-content p { color: var(--ink-soft); margin-bottom: 18px; }
.split-media-card {
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
    border-radius: var(--radius); padding: 48px; color: rgba(255,255,255,0.9);
    box-shadow: var(--shadow-md); position: relative; overflow: hidden;
}
.split-media-card::before { content: ''; position: absolute; right: -40px; bottom: -40px; width: 180px; height: 180px; border-radius: 50%; background: rgba(139, 168, 136, 0.2); }
.split-media-card h3 { color: var(--white); font-size: 1.7rem; margin-bottom: 18px; position: relative; }
.split-media-card .quote-mark { font-family: var(--serif); font-size: 4rem; color: var(--gold); line-height: 0.5; }

/* ----- Lists with leaf bullets ------------------------------------------ */
.leaf-list { list-style: none; display: grid; gap: 16px; }
.leaf-list li { position: relative; padding-left: 36px; color: var(--ink); }
.leaf-list li::before {
    content: ''; position: absolute; left: 0; top: 4px; width: 20px; height: 20px;
    background-color: var(--sage);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C7 6 4 10 4 14a8 8 0 0016 0c0-4-3-8-8-12z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C7 6 4 10 4 14a8 8 0 0016 0c0-4-3-8-8-12z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.leaf-list.cols { grid-template-columns: repeat(2, 1fr); gap: 16px 40px; }

/* ----- Benefit cards ----------------------------------------------------- */
.benefit-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 22px; }
.benefit { background: var(--white); border-radius: var(--radius-sm); padding: 28px; box-shadow: var(--shadow-sm); border-left: 3px solid var(--sage); }
.benefit h4 { font-size: 1.25rem; margin-bottom: 10px; color: var(--navy); }
.benefit p { color: var(--ink-soft); font-size: 0.98rem; margin: 0; }

/* ----- Page hero (interior) --------------------------------------------- */
.page-hero {
    background:
        radial-gradient(circle at 85% 20%, rgba(139, 168, 136, 0.22), transparent 50%),
        linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
    color: var(--white); padding: 88px 0 76px; text-align: center; position: relative; overflow: hidden;
}
.page-hero .eyebrow { color: var(--gold-soft); }
.page-hero h1 { color: var(--white); font-size: clamp(2.3rem, 5vw, 3.6rem); margin-bottom: 18px; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.18rem; max-width: 640px; margin: 0 auto; }
.breadcrumb { font-size: 0.8rem; letter-spacing: 0.06em; color: rgba(255,255,255,0.55); margin-top: 26px; text-transform: uppercase; }
.breadcrumb a { color: rgba(255,255,255,0.75); }
.breadcrumb a:hover { color: var(--gold-soft); }

/* ----- Prose ------------------------------------------------------------- */
.prose { max-width: 760px; margin: 0 auto; }
.prose p { margin-bottom: 22px; color: var(--ink); }
.prose p.lead { color: var(--ink-soft); }
.prose h2 { font-size: 2rem; margin: 48px 0 18px; }
.prose h3 { font-size: 1.5rem; margin: 36px 0 14px; }

.pull-quote {
    border-left: 4px solid var(--gold); padding: 8px 0 8px 28px; margin: 36px 0;
    font-family: var(--serif); font-size: 1.5rem; font-style: italic; color: var(--navy); line-height: 1.4;
}

/* ----- Stats / qualifications ------------------------------------------- */
.qual-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; }
.qual { text-align: center; background: var(--white); border-radius: var(--radius-sm); padding: 32px 24px; box-shadow: var(--shadow-sm); }
.qual .qual-icon { width: 52px; height: 52px; margin: 0 auto 16px; color: var(--gold); }
.qual h4 { font-size: 1.2rem; color: var(--navy); }

/* ----- Programme included box ------------------------------------------- */
.included-box { background: var(--white); border-radius: var(--radius); padding: 44px; box-shadow: var(--shadow-md); }
.included-box h3 { font-size: 1.8rem; margin-bottom: 26px; }

/* ----- CTA banner -------------------------------------------------------- */
.cta-band {
    background: linear-gradient(150deg, var(--olive) 0%, var(--navy) 100%);
    border-radius: var(--radius); padding: 60px; text-align: center; color: var(--white); box-shadow: var(--shadow-md);
    position: relative; overflow: hidden;
}
.cta-band h2 { color: var(--white); font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto 30px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ----- Community / pricing ---------------------------------------------- */
.price-card {
    background: var(--white); border-radius: var(--radius); padding: 48px; box-shadow: var(--shadow-lg);
    text-align: center; max-width: 480px; margin: 0 auto; border: 1px solid rgba(201, 162, 75, 0.3); position: relative;
}
.price-card .price { font-family: var(--serif); color: var(--navy); margin: 20px 0 6px; }
.price-card .price .amount { font-size: 3.4rem; font-weight: 700; }
.price-card .price .period { font-size: 1.05rem; color: var(--ink-soft); font-family: var(--sans); }
.price-badge { display: inline-block; background: rgba(201, 162, 75, 0.18); color: var(--brown); font-weight: 700; font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; padding: 7px 16px; border-radius: 50px; }

/* ----- Contact ----------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-form { background: var(--white); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-md); }
.form-row { margin-bottom: 20px; }
.form-row label { display: block; font-weight: 600; font-size: 0.9rem; color: var(--navy); margin-bottom: 8px; }
.form-row input, .form-row textarea, .form-row select {
    width: 100%; font-family: var(--sans); font-size: 1rem; color: var(--ink);
    padding: 14px 16px; border: 1.5px solid rgba(27, 42, 74, 0.15); border-radius: var(--radius-sm);
    background: var(--cream); transition: border var(--transition), box-shadow var(--transition);
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
    outline: none; border-color: var(--sage); box-shadow: 0 0 0 3px rgba(139, 168, 136, 0.2); background: var(--white);
}
.form-row textarea { resize: vertical; min-height: 140px; }
.form-note { font-size: 0.85rem; color: var(--ink-soft); margin-top: 8px; }

.contact-aside { display: grid; gap: 22px; }
.contact-tile { background: var(--white); border-radius: var(--radius-sm); padding: 28px; box-shadow: var(--shadow-sm); display: flex; gap: 18px; align-items: flex-start; }
.contact-tile .ct-icon { flex-shrink: 0; width: 48px; height: 48px; border-radius: 12px; background: rgba(139,168,136,0.16); color: var(--olive); display: flex; align-items: center; justify-content: center; }
.contact-tile h4 { font-size: 1.2rem; margin-bottom: 6px; }
.contact-tile p { color: var(--ink-soft); margin: 0; font-size: 0.96rem; }

.alert { padding: 16px 20px; border-radius: var(--radius-sm); margin-bottom: 24px; font-weight: 500; }
.alert-success { background: rgba(139, 168, 136, 0.18); color: var(--olive); border: 1px solid var(--sage); }
.alert-error { background: rgba(201, 90, 75, 0.12); color: #9a3b2e; border: 1px solid rgba(201, 90, 75, 0.4); }

/* ----- Reveal on scroll -------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ----- Pre-footer + footer ---------------------------------------------- */
.pre-footer {
    background:
        radial-gradient(circle at 10% 20%, rgba(139, 168, 136, 0.18), transparent 40%),
        linear-gradient(150deg, var(--cream-deep), var(--cream));
    padding: 80px 0; text-align: center;
}
.pre-footer-inner { max-width: 720px; margin: 0 auto; }
.pre-footer-quote { font-family: var(--serif); font-style: italic; font-size: clamp(1.6rem, 3.4vw, 2.3rem); color: var(--navy); margin-bottom: 18px; }
.pre-footer-text { color: var(--ink-soft); font-size: 1.1rem; margin-bottom: 30px; }

.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.72); padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-logo { width: 150px; height: auto; background: var(--white); border-radius: 18px; padding: 12px; margin-bottom: 18px; }
.footer-motto { font-family: var(--serif); font-style: italic; font-size: 1.15rem; color: var(--gold-soft); max-width: 280px; }
.footer-col h4 { color: var(--white); font-size: 1rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 18px; font-family: var(--sans); font-weight: 700; }
.footer-col ul { list-style: none; display: grid; gap: 11px; }
.footer-col a { color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.footer-col a:hover { color: var(--gold-soft); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 24px 0; }
.footer-bottom .container { display: flex; flex-direction: column; gap: 6px; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.footer-disclaimer { font-size: 0.78rem !important; }

/* ----- Responsive -------------------------------------------------------- */
@media (max-width: 980px) {
    .hero-inner { grid-template-columns: 1fr; gap: 48px; text-align: center; padding: 72px 0 80px; }
    .hero-content .eyebrow, .hero-actions, .hero-motto { justify-content: center; }
    .hero-lead { margin-left: auto; margin-right: auto; }
    .hero-visual { order: -1; }
    .hero-visual-ring { width: min(300px, 72%); }
    .split, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .split.reverse .split-media { order: 0; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
    /* backdrop-filter traps fixed children inside the header height — disable on mobile */
    .site-header {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: var(--cream);
    }
    body.nav-open .site-header { z-index: 120; }

    .nav-toggle { display: flex; position: relative; z-index: 121; }

    .primary-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: auto;
        width: min(320px, 84vw);
        height: 100dvh;
        min-height: 100vh;
        max-height: 100dvh;
        background: var(--cream);
        box-shadow: var(--shadow-lg);
        padding: 96px 28px 40px;
        transform: translateX(100%);
        transition: transform var(--transition);
        z-index: 110;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }
    .primary-nav.open { transform: translateX(0); }
    .primary-nav ul { flex-direction: column; align-items: stretch; gap: 6px; }
    .nav-link { display: block; padding: 14px 16px; font-size: 1rem; }
    .nav-link.is-active::after { display: none; }
    .nav-link.is-active { background: rgba(139, 168, 136, 0.18); }
    .nav-cta { margin: 12px 0 0; text-align: center; display: block; }
    body.nav-open { overflow: hidden; }

    .nav-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(20, 32, 56, 0.45);
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--transition), visibility var(--transition);
        z-index: 105;
    }
    .nav-backdrop.show { opacity: 1; visibility: visible; }
    .nav-backdrop[hidden] { display: block; visibility: hidden; opacity: 0; }
    .nav-backdrop.show[hidden] { visibility: visible; opacity: 1; }

    .section { padding: 68px 0; }
    .leaf-list.cols { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .cta-band, .included-box, .split-media-card, .contact-form { padding: 32px 24px; }
    .brand-sub { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    * { scroll-behavior: auto !important; }
    .reveal { opacity: 1; transform: none; transition: none; }
}
