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

:root {
    --green:      #606C38;
    --dark-green: #30361C;
    --deepest:    #181B0E;
    --cream:      #EEF1E4;
    --burgundy:   #6B2737;
    --burgundy-light: #8B3347;
    --cream-dark: #DDE2CE;
    --text:       #2A2E1A;
    --text-soft:  #4A5030;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Lato', sans-serif;
    background: var(--cream);
    color: var(--text);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(238,241,228,0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--cream-dark);
    transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(48,54,28,0.12); }

.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 28px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 90px;
    width: auto;
    display: block;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 36px;
}
.nav-links a {
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--dark-green);
    letter-spacing: 0.04em;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--burgundy); }
.nav-links .nav-cta {
    background: var(--burgundy);
    color: var(--cream) !important;
    padding: 9px 22px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: background 0.25s, transform 0.2s;
}
.nav-links .nav-cta:hover { background: var(--burgundy-light); transform: translateY(-1px); }

/* hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    border: none;
    background: none;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark-green);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
    display: none;
    position: fixed;
    inset: 68px 0 0 0;
    background: var(--cream);
    z-index: 99;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--dark-green);
    transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--burgundy); }
.mobile-menu .mob-cta {
    background: var(--burgundy);
    color: var(--cream) !important;
    padding: 14px 36px;
    border-radius: 40px;
    font-family: 'Lato', sans-serif !important;
    font-size: 1rem !important;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    padding: 120px 28px 80px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--dark-green);
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
            radial-gradient(ellipse 60% 70% at 80% 50%, rgba(96,108,56,0.35) 0%, transparent 60%),
            radial-gradient(ellipse 40% 50% at 10% 80%, rgba(107,39,55,0.2) 0%, transparent 50%);
    pointer-events: none;
}

/* Decorative botanical lines */
.hero-deco {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 520px;
    opacity: 0.07;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
}

.hero-tag {
    display: inline-block;
    background: rgba(238,241,228,0.12);
    border: 1px solid rgba(238,241,228,0.25);
    color: var(--cream-dark);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 28px;
    font-weight: 700;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.18;
    color: var(--cream);
    margin-bottom: 24px;
}
.hero h1 em {
    font-style: italic;
    color: #A8B87A;
}

.hero-lead {
    font-size: 1.05rem;
    color: rgba(238,241,228,0.75);
    font-weight: 300;
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background: var(--burgundy);
    color: var(--cream);
    text-decoration: none;
    padding: 15px 32px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
    box-shadow: 0 4px 20px rgba(107,39,55,0.4);
}
.btn-primary:hover {
    background: var(--burgundy-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(107,39,55,0.5);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--cream);
    text-decoration: none;
    padding: 15px 32px;
    border-radius: 40px;
    font-weight: 400;
    font-size: 0.9rem;
    border: 1px solid rgba(238,241,228,0.35);
    transition: border-color 0.25s, background 0.25s;
}
.btn-secondary:hover {
    border-color: var(--cream);
    background: rgba(238,241,228,0.08);
}

/* Hero card */
.hero-card {
    background: rgba(238,241,228,0.06);
    border: 1px solid rgba(238,241,228,0.15);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(4px);
}
.hero-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--cream);
    margin-bottom: 28px;
    opacity: 0.9;
}
.hero-pill-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.hero-pill-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(238,241,228,0.8);
    font-size: 0.92rem;
    line-height: 1.5;
}
.hero-pill-list li::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #A8B87A;
    flex-shrink: 0;
    margin-top: 6px;
}

/* ── SECTION BASE ── */
section { padding: 100px 28px; }

.section-inner {
    max-width: 900px;
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 16px;
}

h2.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.22;
    color: var(--deepest);
    margin-bottom: 24px;
}
h2.section-title em {
    font-style: italic;
    color: var(--burgundy);
}

.section-text {
    font-size: 1.05rem;
    color: var(--text-soft);
    line-height: 1.85;
    font-weight: 300;
}
.section-text + .section-text { margin-top: 18px; }

/* ── PAIN SECTION ── */
.pain { background: var(--cream); }

.pain-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 56px;
}

.pain-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    border-left: 3px solid var(--green);
    box-shadow: 0 2px 20px rgba(48,54,28,0.05);
    transition: transform 0.25s, box-shadow 0.25s;
}
.pain-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(48,54,28,0.1);
}
.pain-card-icon {
    font-size: 1.6rem;
    margin-bottom: 14px;
}
.pain-card p {
    font-size: 0.95rem;
    color: var(--text-soft);
    line-height: 1.7;
    font-style: italic;
}
.pain-card p strong {
    display: block;
    font-style: normal;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 12px;
}

/* ── QUOTE BAND ── */
.quote-band {
    background: var(--dark-green);
    padding: 80px 28px;
    text-align: center;
}
.quote-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-style: italic;
    color: var(--cream);
    max-width: 780px;
    margin: 0 auto;
    line-height: 1.55;
}
.quote-text em { color: #A8B87A; font-style: normal; font-weight: 600; }
.quote-sub {
    margin-top: 20px;
    font-size: 0.85rem;
    color: rgba(238,241,228,0.5);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ── HOW IT WORKS ── */
.how { background: var(--cream-dark); }

.steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 60px;
    position: relative;
}
.steps::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 28px;
    bottom: 28px;
    width: 1px;
    background: linear-gradient(to bottom, var(--green), transparent);
}

.step {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    padding: 40px 0;
    border-bottom: 1px solid rgba(96,108,56,0.15);
}
.step:last-child { border-bottom: none; }

.step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--green);
    color: var(--cream);
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.step-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--deepest);
    margin-bottom: 10px;
}
.step-content p {
    font-size: 0.97rem;
    color: var(--text-soft);
    line-height: 1.75;
    font-weight: 300;
}

/* ── WHO ── */
.who { background: var(--cream); }

.who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 56px;
}

.who-box {
    border-radius: 20px;
    padding: 40px;
}
.who-box.for {
    background: var(--dark-green);
    color: var(--cream);
}
.who-box.not-for {
    background: white;
    border: 1px solid var(--cream-dark);
    color: var(--text);
}

.who-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 24px;
}
.who-box.for h3 { color: #A8B87A; }
.who-box.not-for h3 { color: var(--dark-green); }

.who-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.who-list li {
    font-size: 0.93rem;
    line-height: 1.6;
    padding-left: 20px;
    position: relative;
}
.who-box.for .who-list li { color: rgba(238,241,228,0.82); }
.who-box.not-for .who-list li { color: var(--text-soft); }

.who-box.for .who-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #A8B87A;
    font-weight: 700;
}
.who-box.not-for .who-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--cream-dark);
}

/* ── ABOUT ── */
.about { background: var(--dark-green); }
.about .section-label { color: #A8B87A; }
.about h2.section-title { color: var(--cream); }
.about h2.section-title em { color: #A8B87A; }
.about .section-text { color: rgba(238,241,228,0.72); }

.about-inner {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 80px;
    align-items: center;
}

.about-credentials {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 36px;
}
.cred-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.88rem;
    color: rgba(238,241,228,0.65);
}
.cred-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #A8B87A;
    flex-shrink: 0;
}

.about-visual {
    position: relative;
}
.about-visual-box {
    background: rgba(238,241,228,0.06);
    border: 1px solid rgba(238,241,228,0.12);
    border-radius: 24px;
    padding: 48px 36px;
    text-align: center;
}
.about-visual-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-style: italic;
    color: var(--cream);
    line-height: 1.65;
    opacity: 0.88;
}
.about-visual-tag {
    margin-top: 24px;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #A8B87A;
    font-weight: 700;
}

/* ── CTA FINAL ── */
.cta-final {
    background: linear-gradient(135deg, var(--burgundy) 0%, #8B2030 100%);
    padding: 120px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(255,255,255,0.05) 0%, transparent 70%);
}

.cta-final-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }

.cta-final h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    color: var(--cream);
    line-height: 1.22;
    margin-bottom: 20px;
}
.cta-final p {
    font-size: 1.05rem;
    color: rgba(238,241,228,0.78);
    font-weight: 300;
    margin-bottom: 48px;
    line-height: 1.75;
}
.cta-final .btn-white {
    display: inline-block;
    background: var(--cream);
    color: var(--burgundy);
    text-decoration: none;
    padding: 16px 40px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    transition: transform 0.2s, box-shadow 0.25s;
    box-shadow: 0 4px 24px rgba(0,0,0,0.2);
    margin: 8px;
}
.cta-final .btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.cta-final .btn-outline-white {
    display: inline-block;
    background: transparent;
    color: var(--cream);
    text-decoration: none;
    padding: 16px 40px;
    border-radius: 40px;
    font-weight: 400;
    font-size: 0.92rem;
    border: 1px solid rgba(238,241,228,0.45);
    transition: border-color 0.25s, background 0.25s;
    margin: 8px;
}
.cta-final .btn-outline-white:hover {
    border-color: var(--cream);
    background: rgba(238,241,228,0.1);
}

/* ── FOOTER ── */
footer {
    background: var(--deepest);
    color: rgba(238,241,228,0.45);
    padding: 40px 28px;
    text-align: center;
    font-size: 0.82rem;
}
footer a { color: rgba(238,241,228,0.5); text-decoration: none; }
footer a:hover { color: var(--cream); }
.footer-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

/* ── SCROLL ANIMATIONS ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }

    .hero-inner {
        grid-template-columns: 1fr;
    }
    .hero-card { display: none; }

    .pain-grid { grid-template-columns: 1fr; }
    .who-grid { grid-template-columns: 1fr; }
    .about-inner { grid-template-columns: 1fr; }
    .about-visual { display: none; }

    section { padding: 72px 20px; }
}

@media (max-width: 540px) {
    .hero { padding-top: 100px; }
    .hero h1 { font-size: 1.9rem; }
    .hero-btns { flex-direction: column; }
    .hero-btns a { text-align: center; }
    .step { flex-direction: column; gap: 16px; }
    .steps::before { display: none; }
}
