:root {
    --cream: #f3efe6;
    --cream-light: #faf8f2;
    --sand: #ded2bd;
    --gold: #b48848;
    --gold-dark: #8e6835;
    --ink: #25241f;
    --muted: #6d685d;
    --sage: #727865;
    --white: #fffdf8;
    --serif: "Italiana", Georgia, serif;
    --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--cream-light);
    color: var(--ink);
    font-family: var(--sans);
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 20;
    opacity: .035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

a { color: inherit; }
img { display: block; max-width: 100%; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    min-height: 112px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6vw;
    background: rgba(243, 239, 230, .94);
    border-bottom: 1px solid rgba(37, 36, 31, .12);
    position: relative;
    z-index: 10;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    width: auto;
    height: auto;
    overflow: visible;
    text-decoration: none;
}
.brand-symbol {
    width: 48px;
    height: 57px;
    fill: none;
    stroke: var(--gold);
    stroke-width: 1.35;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex: 0 0 auto;
}
.brand-symbol circle { fill: var(--gold); stroke: none; }
.brand-type { display: flex; flex-direction: column; line-height: 1; }
.brand-type strong {
    font-family: var(--serif);
    font-size: 31px;
    font-weight: 400;
    letter-spacing: .025em;
    color: var(--gold-dark);
    white-space: nowrap;
}
.brand-type em { color: var(--ink); font-style: normal; }
.brand-type small {
    margin-top: 8px;
    color: var(--muted);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: .29em;
    text-transform: uppercase;
}

nav { display: flex; align-items: center; gap: clamp(24px, 3vw, 50px); }
nav a { font-size: 13px; text-decoration: none; letter-spacing: .07em; }
nav a:not(.nav-cta) { position: relative; }
nav a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -6px;
    height: 1px;
    background: var(--gold);
    transition: right .25s ease;
}
nav a:hover::after { right: 0; }
.nav-cta { border: 1px solid var(--ink); border-radius: 100px; padding: 12px 20px; transition: .2s ease; }
.nav-cta:hover { background: var(--ink); color: var(--white); }
.menu-button { display: none; }

.hero {
    min-height: calc(100vh - 112px);
    display: block;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 42%, rgba(180, 136, 72, .15) 0 11%, transparent 11.2%),
        radial-gradient(circle at 82% 42%, transparent 0 17%, rgba(180, 136, 72, .18) 17.2% 17.35%, transparent 17.55%),
        radial-gradient(circle at 8% 92%, rgba(114, 120, 101, .12) 0 12%, transparent 12.2%),
        var(--cream-light);
    position: relative;
}
.hero::after {
    content: "✦";
    position: absolute;
    right: 10vw;
    bottom: 9vh;
    color: var(--gold);
    font-size: 25px;
    opacity: .65;
}
.hero-copy {
    max-width: 1180px;
    min-height: calc(100vh - 112px);
    padding: clamp(85px, 12vh, 150px) 8vw clamp(70px, 9vh, 120px);
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.eyebrow {
    margin: 0 0 24px;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: .24em;
    font-size: 11px;
    font-weight: 600;
}
h1, h2 { font-family: var(--serif); font-weight: 400; margin: 0; line-height: .97; }
h1 { font-size: clamp(64px, 8.5vw, 132px); max-width: 1000px; letter-spacing: -.025em; }
h1 em, h2 em { color: var(--gold); font-weight: 400; }
.hero-intro { max-width: 560px; color: var(--muted); font-size: clamp(17px, 1.5vw, 21px); line-height: 1.7; margin: 34px 0 0; }
.hero-actions { display: flex; align-items: center; gap: 35px; margin-top: 42px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 28px; min-height: 56px; padding: 0 25px; text-decoration: none; border-radius: 2px; font-size: 13px; letter-spacing: .04em; transition: transform .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--ink); color: var(--white); }
.button-primary:hover { background: var(--gold-dark); }
.text-link { font-size: 13px; text-underline-offset: 7px; }
.text-link span { margin-left: 12px; color: var(--gold); }
.origin-note { display: flex; align-items: center; gap: 14px; margin-top: 75px; color: var(--muted); text-transform: uppercase; letter-spacing: .13em; font-size: 9px; line-height: 1.7; }
.origin-icon { display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid var(--sand); border-radius: 50%; color: var(--gold); font-size: 16px; }

.manifesto { padding: 120px 8vw; text-align: center; background: var(--ink); color: var(--white); }
.manifesto .eyebrow { color: #c8aa79; }
.manifesto-text { max-width: 980px; margin: 0 auto; font-family: var(--serif); font-size: clamp(38px, 5vw, 72px); line-height: 1.14; }

.features { padding: clamp(95px, 12vw, 170px) 7vw; }
.section-heading { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 75px; }
.section-heading h2 { font-size: clamp(56px, 6vw, 92px); }
.section-heading .eyebrow { align-self: flex-start; margin-top: 15px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--sand); border-bottom: 1px solid var(--sand); }
.feature-card { min-height: 420px; padding: 40px 42px 48px; display: flex; flex-direction: column; border-right: 1px solid var(--sand); }
.feature-card:last-child { border-right: 0; }
.feature-card.featured { background: var(--cream); }
.feature-number { color: var(--gold); font-size: 11px; letter-spacing: .18em; }
.line-icon { margin: auto 0 55px; color: var(--gold); font-family: var(--serif); font-size: 64px; font-weight: 300; }
.feature-card h3 { margin: 0 0 17px; font-family: var(--serif); font-weight: 400; font-size: 31px; }
.feature-card p { margin: 0; color: var(--muted); line-height: 1.7; font-size: 14px; max-width: 320px; }

.story { display: grid; grid-template-columns: 1fr 1fr; min-height: 720px; background: var(--cream); }
.story-art { position: relative; overflow: hidden; display: grid; place-items: center; background: var(--sand); }
.sun { width: 220px; height: 220px; border-radius: 50%; background: var(--gold); opacity: .76; box-shadow: 0 0 0 35px rgba(255,255,255,.13), 0 0 0 70px rgba(255,255,255,.08); }
.story-word { position: absolute; font-family: var(--serif); font-size: clamp(90px, 14vw, 220px); color: rgba(250,248,242,.56); letter-spacing: .05em; }
.leaf { position: absolute; width: 160px; height: 75px; border: 2px solid rgba(142,104,53,.55); border-radius: 100% 0 100% 0; }
.leaf-one { bottom: 12%; left: 8%; transform: rotate(-25deg); }
.leaf-two { top: 13%; right: 6%; transform: rotate(155deg); }
.story-copy { padding: clamp(80px, 10vw, 150px); display: flex; flex-direction: column; justify-content: center; }
.story-copy h2 { font-size: clamp(48px, 5vw, 76px); line-height: 1.05; margin-bottom: 40px; }
.story-copy > p:not(.eyebrow) { color: var(--muted); max-width: 520px; line-height: 1.8; font-size: 16px; margin: 0 0 20px; }
.story-copy em { color: var(--gold-dark); }

.waitlist { background: var(--sage); color: var(--white); padding: clamp(100px, 13vw, 185px) 7vw; text-align: center; }
.waitlist-inner { max-width: 770px; margin: 0 auto; }
.waitlist .eyebrow { color: #e1c99f; }
.waitlist h2 { font-size: clamp(70px, 8vw, 115px); }
.waitlist-inner > p:not(.eyebrow):not(.privacy-note):not(.form-message) { color: rgba(255,255,255,.75); line-height: 1.7; font-size: 17px; max-width: 540px; margin: 28px auto 45px; }
form { display: flex; max-width: 650px; margin: 0 auto; border-bottom: 1px solid rgba(255,255,255,.62); }
input { flex: 1; min-width: 0; background: transparent; color: white; border: 0; padding: 20px 4px; outline: none; font: 15px var(--sans); }
input::placeholder { color: rgba(255,255,255,.68); }
form button { border: 0; background: transparent; color: white; padding: 15px 0 15px 25px; font: 600 12px var(--sans); letter-spacing: .08em; cursor: pointer; }
form button span { margin-left: 20px; }
.privacy-note, .form-message { font-size: 10px; letter-spacing: .08em; color: rgba(255,255,255,.58); margin: 15px 0 0; min-height: 15px; }
.form-message { color: var(--white); font-size: 12px; }

footer { background: var(--ink); color: var(--white); padding: 70px 7vw; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; align-items: end; }
.footer-brand span { display: block; font-family: var(--serif); font-size: 27px; letter-spacing: .06em; color: #c49b5e; }
.footer-brand small { letter-spacing: .25em; font-size: 7px; }
.footer-contact { text-align: center; }
.footer-contact p { color: #98958d; font-size: 10px; text-transform: uppercase; letter-spacing: .2em; }
.footer-contact a { font-family: var(--serif); font-size: 20px; text-underline-offset: 6px; }
.copyright { text-align: right; color: #89867f; font-size: 10px; text-transform: uppercase; letter-spacing: .12em; line-height: 1.8; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
    .site-header { min-height: 82px; padding: 0 25px; }
    .brand { transform: scale(.82); transform-origin: left center; }
    .menu-button { display: grid; gap: 6px; border: 0; background: none; padding: 15px 0 15px 15px; cursor: pointer; }
    .menu-button > span:not(.sr-only) { width: 25px; height: 1px; background: var(--ink); transition: .2s; }
    .menu-button[aria-expanded="true"] > span:first-child { transform: translateY(3.5px) rotate(45deg); }
    .menu-button[aria-expanded="true"] > span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }
    nav { display: none; position: absolute; top: 82px; left: 0; right: 0; padding: 30px 25px 35px; background: var(--cream-light); border-bottom: 1px solid var(--sand); flex-direction: column; align-items: flex-start; }
    nav.is-open { display: flex; }
    .hero-copy { padding: 85px 7vw 70px; }
    .section-heading { display: block; }
    .feature-grid { grid-template-columns: 1fr; }
    .feature-card { border-right: 0; border-bottom: 1px solid var(--sand); min-height: 360px; }
    .feature-card:last-child { border-bottom: 0; }
    .story { grid-template-columns: 1fr; }
    .story-art { min-height: 600px; }
    .story-copy { padding: 90px 8vw; }
}

@media (max-width: 600px) {
    h1 { font-size: clamp(56px, 18vw, 82px); }
    .hero-actions { align-items: flex-start; flex-direction: column; gap: 26px; }
    .origin-note { margin-top: 60px; }
    .manifesto { padding: 95px 7vw; }
    .features { padding: 95px 6vw; }
    .feature-card { padding: 32px 24px 40px; }
    .story-art { min-height: 450px; }
    .sun { width: 150px; height: 150px; }
    .story-copy { padding: 85px 7vw; }
    form { display: block; border: 0; }
    input { display: block; width: 100%; border-bottom: 1px solid rgba(255,255,255,.62); text-align: center; }
    form button { margin-top: 22px; padding: 17px 24px; border: 1px solid rgba(255,255,255,.65); }
    footer { grid-template-columns: 1fr; text-align: center; }
    .copyright, .footer-contact { text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; transition: none; }
}
