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

:root {
    --brown:        #5D4037;
    --brown-dark:   #3E2723;
    --brown-light:  #8D6E63;
    --yellow:       #F9A825;
    --yellow-light: #FFF8E1;
    --white:        #ffffff;
    --off-white:    #FAF7F4;
    --text:         #1C1109;
    --text-muted:   #6B5B4E;
    --radius:       12px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Roboto', sans-serif;
    background: var(--white);
    color: var(--text);
    line-height: 1.6;
}

/* ── NAV ── */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--brown);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(1rem, 5vw, 3rem);
    height: 60px;
    box-shadow: 0 2px 12px rgba(0,0,0,.18);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.nav-name {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: .01em;
}

.nav-actions { display: flex; align-items: center; gap: 10px; }

.btn-ghost {
    color: var(--white);
    font-size: .85rem;
    font-weight: 500;
    padding: 7px 16px;
    border: 1.5px solid rgba(255,255,255,.45);
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s, border-color .2s;
    white-space: nowrap;
}

.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); }

.btn-primary {
    color: var(--brown-dark);
    font-size: .85rem;
    font-weight: 700;
    padding: 7px 18px;
    border: none;
    border-radius: 8px;
    background: var(--yellow);
    cursor: pointer;
    text-decoration: none;
    transition: background .2s, transform .15s;
    white-space: nowrap;
}

.btn-primary:hover { background: #FFB300; transform: translateY(-1px); }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform .3s, opacity .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;
    top: 60px;
    right: 0;
    width: 220px;
    background: var(--brown-dark);
    padding: 1rem;
    border-radius: 0 0 0 var(--radius);
    z-index: 99;
    flex-direction: column;
    gap: 10px;
    box-shadow: -4px 4px 20px rgba(0,0,0,.25);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { width: 100%; text-align: center; }

/* ── HERO ── */
.hero {
    background: var(--off-white);
    padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 5vw, 3rem);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(249,168,37,.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero-logo {
    width: clamp(100px, 15vw, 140px);
    margin: 0 auto 1.5rem;
    display: block;
}

.hero-eyebrow {
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--brown-light);
    margin-bottom: .5rem;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--brown-dark);
    line-height: 1.1;
    margin-bottom: .75rem;
}

.hero h1 span { color: var(--yellow); }

.hero-sub {
    font-size: clamp(.95rem, 2vw, 1.1rem);
    color: var(--text-muted);
    max-width: 480px;
    margin: 0 auto 2.5rem;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.btn-hero {
    font-size: 1rem;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
}
.btn-hero:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.15); }

.btn-hero-primary { background: var(--yellow); color: var(--brown-dark); }
.btn-hero-primary:hover { background: #FFB300; }

.btn-hero-secondary {
    background: transparent;
    color: var(--brown);
    border: 2px solid var(--brown-light);
}
.btn-hero-secondary:hover { border-color: var(--brown); }

/* ── DIVIDER ── */
.divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0 clamp(1rem, 5vw, 4rem);
    margin: 0;
}
.divider::before, .divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #E8DDD6;
}
.divider-icon { color: var(--brown-light); font-size: 1.2rem; }

/* ── PITCH ── */
.pitch {
    padding: clamp(3rem, 7vw, 5rem) clamp(1rem, 5vw, 3rem);
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.pitch h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 1rem;
    line-height: 1.25;
}

.pitch p {
    font-size: clamp(.95rem, 2vw, 1.1rem);
    color: var(--text-muted);
    margin-bottom: .75rem;
}

.pitch em {
    font-style: italic;
    color: var(--brown-light);
}

/* ── FEATURES ── */
.features {
    background: var(--off-white);
    padding: clamp(3rem, 7vw, 5rem) clamp(1rem, 5vw, 3rem);
}

.features-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-eyebrow {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--yellow);
    background: var(--brown);
    display: inline-block;
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.features-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    color: var(--brown-dark);
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    max-width: 900px;
    margin: 0 auto;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid #EDE0D8;
    transition: box-shadow .2s, transform .2s;
}
.feature-card:hover { box-shadow: 0 8px 28px rgba(93,64,55,.1); transform: translateY(-3px); }

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--yellow-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon svg { width: 22px; height: 22px; stroke: var(--brown); }

.feature-card h3 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: .4rem;
}

.feature-card p {
    font-size: .85rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* ── CTA BAND ── */
.cta-band {
    background: var(--brown);
    padding: clamp(3rem, 7vw, 5rem) clamp(1rem, 5vw, 3rem);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(249,168,37,.07);
    top: -100px;
    left: -100px;
    pointer-events: none;
}

.cta-band::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(249,168,37,.05);
    bottom: -80px;
    right: -60px;
    pointer-events: none;
}

.cta-band h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    color: var(--white);
    margin-bottom: .75rem;
    position: relative;
}

.cta-band p {
    color: rgba(255,255,255,.75);
    margin-bottom: 2rem;
    font-size: clamp(.9rem, 2vw, 1rem);
    position: relative;
}

.cta-band .btn-hero { position: relative; }

/* ── FOOTER ── */
footer {
    background: var(--brown-dark);
    color: rgba(255,255,255,.6);
    text-align: center;
    padding: 1.25rem clamp(1rem, 5vw, 3rem);
    font-size: .82rem;
}

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

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { transition: none !important; animation: none !important; }
}