:root {
    --forest: #18251a;
    --forest-deep: #0d160f;
    --olive: #49543a;
    --olive-soft: #7f8767;
    --ink: #171b16;
    --paper: #f7f4eb;
    --paper-deep: #eae4d7;
    --white: #fffdf7;
    --gold: #c79b55;
    --gold-light: #dec18a;
    --clay: #9e5e3e;
    --line: rgba(23, 27, 22, .16);
    --line-light: rgba(255, 253, 247, .24);
    --font-display: "Cormorant Garamond", Georgia, serif;
    --font-sans: "Montserrat", Arial, sans-serif;
    --shell: min(1320px, calc(100vw - 96px));
    --ease: cubic-bezier(.22, 1, .36, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

html.js { scroll-behavior: auto; }

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.65;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

::selection { color: var(--white); background: var(--clay); }

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

a { color: inherit; text-decoration: none; }

button, a { -webkit-tap-highlight-color: transparent; }

button, .button, .text-link, .brand, .desktop-nav a, .header-cta,
.mobile-menu a, .faq-item button, .footer-links a, .mobile-adopt { cursor: pointer; }

:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    color: var(--white);
    background: var(--forest-deep);
    transform: translateY(-150%);
    transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }

.page-shell { width: var(--shell); margin-inline: auto; }

.section-pad { padding-block: clamp(96px, 11vw, 180px); }

.scroll-progress {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: transparent;
}

.scroll-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: var(--gold);
    transform-origin: left;
    transition: box-shadow .25s ease;
}

body.is-scrolling .scroll-progress span { box-shadow: 0 0 12px rgba(199, 155, 85, .75); }

.eyebrow {
    margin: 0 0 28px;
    color: var(--olive);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .22em;
    line-height: 1.4;
    text-transform: uppercase;
}

.eyebrow--light { color: rgba(255, 253, 247, .72); }

.display-title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(48px, 5.2vw, 78px);
    font-weight: 500;
    letter-spacing: -.045em;
    line-height: .99;
}

.display-title--large { font-size: clamp(56px, 6.4vw, 100px); }
.display-title--xl { font-size: clamp(64px, 7.4vw, 116px); }
.display-title em { color: var(--clay); font-weight: 400; }

.lead {
    max-width: 630px;
    margin: 32px 0 0;
    color: #4f554d;
    font-size: clamp(16px, 1.3vw, 20px);
    line-height: 1.8;
}

.kicker {
    margin: 0 0 22px;
    color: var(--clay);
    font-family: var(--font-display);
    font-size: clamp(22px, 2.2vw, 34px);
    font-style: italic;
}

.kicker--gold { color: var(--gold-light); }

.chapter-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
    margin-bottom: clamp(60px, 8vw, 112px);
}

.chapter-head .eyebrow { margin: 0; }

.chapter-number {
    margin: 0;
    color: rgba(23, 27, 22, .3);
    font-family: var(--font-display);
    font-size: 16px;
    line-height: 1;
}

.chapter-head--dark { border-color: var(--line-light); }
.chapter-head--dark .chapter-number { color: rgba(255, 253, 247, .38); }

/* Header */
.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 102px;
    padding-inline: 48px;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, .18);
    transition: height .35s var(--ease), color .35s ease, background-color .35s ease, border-color .35s ease;
}

.site-header.is-scrolled {
    height: 76px;
    color: var(--ink);
    background: rgba(247, 244, 235, .92);
    border-color: var(--line);
    box-shadow: 0 12px 40px rgba(13, 22, 15, .06);
    backdrop-filter: blur(16px);
}

.brand {
    display: inline-flex;
    align-items: center;
    justify-self: start;
    gap: 11px;
    width: max-content;
}

.brand-mark {
    width: 27px;
    height: 34px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.35;
}

.brand-type {
    display: flex;
    flex-direction: column;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -.055em;
    line-height: .8;
}

.brand-type small {
    margin-top: 8px;
    font-size: 7px;
    font-weight: 600;
    letter-spacing: .25em;
    line-height: 1;
    text-transform: uppercase;
}

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
}

.desktop-nav a {
    position: relative;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .3s var(--ease);
}

.desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-self: end;
    gap: 16px;
    padding: 13px 18px;
    border: 1px solid currentColor;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .12em;
    line-height: 1;
    text-transform: uppercase;
    transition: color .25s ease, background-color .25s ease;
}

.header-cta:hover { color: var(--ink); background: var(--white); }
.site-header.is-scrolled .header-cta:hover { color: var(--white); background: var(--forest); }

.menu-toggle {
    position: relative;
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    color: inherit;
    border: 0;
    background: transparent;
}

.menu-toggle::before {
    content: "";
    position: absolute;
    inset: 4px;
    border: 1px solid currentColor;
    border-radius: 50%;
    opacity: 0;
    transform: scale(.7);
    transition: opacity .3s ease, transform .45s var(--ease);
}

.menu-toggle:hover::before,
.menu-toggle:focus-visible::before { opacity: .24; transform: scale(1); }

.menu-toggle span {
    position: absolute;
    left: 9px;
    top: 14px;
    display: block;
    width: 26px;
    height: 1px;
    margin: 0;
    background: currentColor;
    transform-origin: center;
    transition: top .45s var(--ease), left .35s var(--ease), width .35s var(--ease),
        opacity .22s ease, transform .5s var(--ease);
}

.menu-toggle span:nth-child(2) { top: 21px; left: 15px; width: 20px; }
.menu-toggle span:nth-child(3) { top: 28px; }
.menu-toggle:hover span:nth-child(2) { left: 9px; width: 26px; }

.menu-toggle[aria-expanded="true"]::before { opacity: .16; transform: scale(1.08); }
.menu-toggle[aria-expanded="true"] span:first-child { top: 21px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { left: 20px; width: 4px; opacity: 0; transform: scaleX(0); }
.menu-toggle[aria-expanded="true"] span:last-child { top: 21px; transform: rotate(-45deg); }

.mobile-menu { display: none; }

/* Hero */
.hero {
    position: relative;
    min-height: max(760px, 100svh);
    overflow: hidden;
    color: var(--white);
    background: var(--forest-deep);
}

.hero-media, .hero-shade, .grain {
    position: absolute;
    inset: 0;
}

.hero-media img {
    width: 100%;
    height: 112%;
    object-fit: cover;
    object-position: center 54%;
    transform: scale(1.035);
    will-change: transform;
}

.hero-shade {
    background:
        linear-gradient(90deg, rgba(7, 13, 8, .78) 0%, rgba(7, 13, 8, .45) 40%, rgba(7, 13, 8, .1) 72%),
        linear-gradient(0deg, rgba(6, 11, 7, .72) 0%, transparent 55%, rgba(6, 11, 7, .22) 100%);
}

.grain {
    opacity: .11;
    pointer-events: none;
    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='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
    mix-blend-mode: soft-light;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: max(760px, 100svh);
    padding-block: 145px 128px;
}

.hero-eyebrow { color: rgba(255, 253, 247, .72); }

.hero-title {
    max-width: 1040px;
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(74px, 9.2vw, 146px);
    font-weight: 500;
    letter-spacing: -.06em;
    line-height: .75;
}

.title-line {
    display: block;
    padding-bottom: .12em;
    overflow: hidden;
}

.title-line > span {
    display: block;
    transform: translateY(112%);
    transition: transform 1.15s var(--ease);
}

body.is-ready .title-line > span { transform: translateY(0); }
body.is-ready .title-line:nth-child(2) > span { transition-delay: .1s; }
body.is-ready .title-line:nth-child(3) > span { transition-delay: .2s; }

.title-line--italic {
    color: var(--gold-light);
    font-style: italic;
    font-weight: 400;
}

.hero-bottom {
    display: flex;
    align-items: flex-end;
    gap: clamp(48px, 7vw, 112px);
    max-width: 900px;
    margin-top: 36px;
    margin-left: clamp(0px, 8vw, 130px);
}

.hero-bottom > p {
    max-width: 530px;
    margin: 0;
    color: rgba(255, 253, 247, .82);
    font-family: var(--font-display);
    font-size: clamp(19px, 1.55vw, 25px);
    line-height: 1.45;
}

.hero-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; flex: 0 0 auto; }

.button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 16px 25px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    transition: color .25s ease, background-color .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.button--light { color: var(--forest); background: var(--white); border: 1px solid var(--white); }
.button--light:hover { color: var(--white); background: transparent; }
.button--gold { color: var(--forest-deep); background: var(--gold); border: 1px solid var(--gold); }
.button--gold:hover { color: var(--gold-light); background: transparent; }
.button--outline { color: var(--forest); background: transparent; border: 1px solid rgba(24, 37, 26, .5); }
.button--outline:hover { color: var(--white); background: var(--forest); border-color: var(--forest); }

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 5px;
    border-bottom: 1px solid currentColor;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .13em;
    text-transform: uppercase;
    transition: opacity .2s ease;
}

.text-link:hover { opacity: .68; }
.text-link--light { color: rgba(255, 253, 247, .86); }

.hero-side-note {
    position: absolute;
    z-index: 2;
    top: 50%;
    right: 28px;
    display: flex;
    gap: 24px;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    transform: translateY(-50%) rotate(90deg);
}

.edition-mark {
    position: absolute;
    z-index: 2;
    right: 48px;
    bottom: 38px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    min-width: 330px;
    padding-top: 14px;
    color: rgba(255, 253, 247, .65);
    border-top: 1px solid rgba(255, 253, 247, .35);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.edition-mark strong {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    letter-spacing: .04em;
    text-align: center;
}

/* Brand story */
.brand-story { background: var(--paper-deep); }

.brand-story-grid {
    display: grid;
    grid-template-columns: .88fr 1.12fr;
    align-items: center;
    gap: clamp(70px, 10vw, 160px);
}

.brand-decoder {
    display: grid;
    grid-template-columns: auto 1fr auto 1fr auto;
    align-items: center;
    gap: 12px;
    color: var(--forest);
    font-size: clamp(15px, 1.3vw, 20px);
    font-weight: 700;
    letter-spacing: -.04em;
}

.brand-decoder i { display: block; height: 1px; background: rgba(24, 37, 26, .35); }
.brand-story-copy .display-title { max-width: 700px; }

/* Roots */
.roots { background: var(--paper); }

.roots-grid {
    display: grid;
    grid-template-columns: minmax(330px, .85fr) minmax(440px, 1.15fr);
    align-items: center;
    gap: clamp(70px, 10vw, 164px);
}

.roots-image-wrap { position: relative; margin-left: clamp(0px, 4vw, 62px); }

.roots-image-wrap::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -28px;
    left: -28px;
    width: 38%;
    height: 34%;
    border-top: 1px solid var(--clay);
    border-left: 1px solid var(--clay);
}

.roots-image-wrap img { width: 100%; aspect-ratio: 2 / 3; object-fit: cover; }

.image-caption, .oil-visual figcaption {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding-top: 14px;
    color: #666b61;
    border-top: 1px solid var(--line);
    margin-top: 12px;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.roots-copy { padding-top: 30px; }
.roots-copy .display-title { max-width: 760px; }

.story-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 42px;
    margin-top: 56px;
    color: #555b52;
    font-size: 14px;
    line-height: 1.9;
}

.story-body p { margin: 0; }

.pull-quote {
    margin: 62px 0 0;
    padding: 22px 0 0 56px;
    color: var(--olive);
    border-top: 1px solid var(--line);
    font-family: var(--font-display);
    font-size: clamp(30px, 3vw, 48px);
    font-style: italic;
    line-height: 1;
}

/* Heritage timeline */
.time-story {
    position: relative;
    color: var(--white);
    background: var(--forest-deep);
    overflow: hidden;
}

.time-story::before {
    content: "";
    position: absolute;
    top: -420px;
    right: -320px;
    width: 900px;
    height: 900px;
    border: 1px solid rgba(199, 155, 85, .12);
    border-radius: 50%;
    box-shadow: 0 0 0 100px rgba(199, 155, 85, .025), 0 0 0 200px rgba(199, 155, 85, .018);
}

.time-intro {
    position: relative;
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    align-items: end;
    gap: 100px;
}

.time-intro .display-title em { color: var(--gold-light); }

.time-lead {
    margin: 0 0 8px;
    color: rgba(255, 253, 247, .67);
    font-family: var(--font-display);
    font-size: clamp(19px, 1.7vw, 27px);
    line-height: 1.55;
}

.heritage-line {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding-bottom: clamp(100px, 10vw, 158px);
}

.heritage-line::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 253, 247, .2);
}

.heritage-step { position: relative; padding: 58px 38px 0 0; }
.heritage-step:not(:last-child) { border-right: 1px solid rgba(255, 253, 247, .1); }
.heritage-step:not(:first-child) { padding-left: 38px; }

.heritage-step::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 0;
    width: 11px;
    height: 11px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    background: var(--forest-deep);
}

.heritage-step:not(:first-child)::before { left: 38px; }
.step-index { color: var(--gold); font-family: var(--font-display); font-size: 17px; }

.step-era {
    margin: 22px 0 9px;
    color: rgba(255, 253, 247, .48);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.heritage-step h3 {
    margin: 0 0 18px;
    font-family: var(--font-display);
    font-size: clamp(25px, 2.2vw, 36px);
    font-weight: 500;
    line-height: 1;
}

.heritage-step > p:last-child {
    margin: 0;
    color: rgba(255, 253, 247, .57);
    font-size: 12px;
    line-height: 1.75;
}

/* Terroir */
.terroir { background: #efeade; }

.terroir-heading {
    display: grid;
    grid-template-columns: 1.4fr .6fr;
    align-items: end;
    gap: 80px;
    margin-bottom: 90px;
}

.terroir-heading .lead { margin-bottom: 9px; }

.terroir-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: stretch;
    gap: clamp(52px, 7vw, 108px);
}

.terroir-visual { position: relative; min-height: 680px; }
.terroir-visual img { width: 100%; height: 100%; object-fit: cover; }

.terrain-stamp {
    position: absolute;
    right: -42px;
    bottom: 42px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 122px;
    height: 122px;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 50%;
    background: rgba(13, 22, 15, .82);
    backdrop-filter: blur(8px);
    text-transform: uppercase;
}

.terrain-stamp span { font-size: 7px; letter-spacing: .2em; }
.terrain-stamp strong { margin: 2px 0; font-family: var(--font-display); font-size: 30px; font-weight: 500; }

.terrain-notes { display: flex; flex-direction: column; justify-content: center; }

.terrain-note {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    padding: 28px 0;
    border-top: 1px solid var(--line);
}

.terrain-note:last-child { border-bottom: 1px solid var(--line); }
.terrain-index { color: var(--clay); font-family: var(--font-display); font-size: 17px; }

.terrain-note h3 {
    margin: 0 0 8px;
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 500;
    line-height: 1;
}

.terrain-note p { max-width: 480px; margin: 0; color: #5d6259; font-size: 12px; line-height: 1.75; }

.terroir-statement {
    margin: clamp(70px, 10vw, 140px) 0 0;
    color: #6d6f68;
    font-family: var(--font-display);
    font-size: clamp(38px, 5.3vw, 82px);
    letter-spacing: -.04em;
    line-height: 1.04;
    text-align: center;
}

.terroir-statement strong { color: var(--forest); font-weight: 500; }

/* Harvest */
.harvest-banner {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 86svh;
    color: var(--white);
    overflow: hidden;
}

.harvest-image, .harvest-overlay { position: absolute; inset: 0; }

.harvest-image img {
    width: 100%;
    height: 118%;
    object-fit: cover;
    object-position: center;
    transform: translateY(-8%);
    will-change: transform;
}

.harvest-overlay { background: linear-gradient(90deg, rgba(8, 14, 9, .79), rgba(8, 14, 9, .25) 58%, rgba(8, 14, 9, .05)); }

.harvest-copy { position: relative; z-index: 1; }
.harvest-copy h2 { margin: 0; font-family: var(--font-display); font-size: clamp(72px, 9vw, 140px); font-weight: 500; letter-spacing: -.055em; line-height: .78; }
.harvest-copy h2 em { color: var(--gold-light); font-weight: 400; }
.harvest-copy > p:last-child { max-width: 500px; margin: 42px 0 0 80px; color: rgba(255, 253, 247, .78); font-size: 14px; line-height: 1.8; }

/* Oil */
.oil { position: relative; color: var(--white); background: var(--forest-deep); }

.oil-grid {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    align-items: center;
    gap: clamp(70px, 9vw, 150px);
}

.oil-copy > p:not(.kicker) { max-width: 560px; color: rgba(255, 253, 247, .58); font-size: 13px; line-height: 1.9; }
.oil-copy .oil-lead { margin-top: 45px; color: rgba(255, 253, 247, .82) !important; font-family: var(--font-display); font-size: clamp(21px, 1.8vw, 29px) !important; line-height: 1.5 !important; }
.oil .display-title em { color: var(--gold-light); }

.sensory { margin-top: 54px; border-top: 1px solid var(--line-light); }

.sensory-item {
    display: grid;
    grid-template-columns: 42px 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 17px 0;
    border-bottom: 1px solid rgba(255, 253, 247, .14);
}

.sensory-item span { color: var(--gold); font-family: var(--font-display); }
.sensory-item strong { font-family: var(--font-display); font-size: 21px; font-weight: 500; }
.sensory-item small { color: rgba(255, 253, 247, .42); font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }

.oil-visual { margin: 0; }
.oil-visual img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.oil-visual figcaption { color: rgba(255, 253, 247, .48); border-color: var(--line-light); }

/* Experience */
.experience { background: var(--paper); }

.experience-intro, .adoptions-head {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    align-items: end;
    gap: 90px;
    margin-bottom: clamp(72px, 9vw, 132px);
}

.experience-intro .lead, .adoptions-head .lead { margin-bottom: 8px; }

.experience-path {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.path-card { position: relative; min-height: 380px; padding: 42px 32px 40px; }
.path-card:not(:last-child) { border-right: 1px solid var(--line); }
.path-number { position: absolute; top: 22px; right: 22px; color: #a1a398; font-family: var(--font-display); font-size: 14px; }

.path-card svg {
    width: 42px;
    height: 42px;
    margin: 44px 0 66px;
    fill: none;
    stroke: var(--clay);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.2;
}

.path-card h3 { margin: 0 0 16px; font-family: var(--font-display); font-size: 35px; font-weight: 500; }
.path-card p { margin: 0; color: #61665d; font-size: 12px; line-height: 1.8; }

.limited-note {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 34px;
    margin-top: 48px;
}

.limited-line { height: 1px; background: var(--line); }
.limited-note p { margin: 0; color: #64685f; font-size: 11px; }
.limited-note p strong { color: var(--ink); }
.limited-count { color: var(--clay); font-family: var(--font-display); font-size: 22px; }

/* Pricing */
.adoptions { background: #e8e0d2; }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
    gap: 16px;
}

.price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 700px;
    padding: 38px;
    color: var(--ink);
    border: 1px solid rgba(24, 37, 26, .18);
    background: rgba(247, 244, 235, .6);
    transition: border-color .25s ease, box-shadow .25s ease, background-color .25s ease;
}

.price-card:hover { border-color: rgba(24, 37, 26, .45); background: rgba(247, 244, 235, .92); box-shadow: 0 24px 60px rgba(24, 37, 26, .08); }

.price-card--featured { color: var(--white); border-color: var(--forest); background: var(--forest); }
.price-card--featured:hover { background: var(--forest); border-color: var(--gold); box-shadow: 0 24px 70px rgba(13, 22, 15, .2); }

.featured-tag {
    position: absolute;
    top: 0;
    right: 38px;
    padding: 10px 14px;
    color: var(--forest);
    background: var(--gold);
    font-size: 7px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.price-top { display: flex; justify-content: space-between; color: #7b7e74; font-size: 8px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.price-card--featured .price-top { color: rgba(255, 253, 247, .52); }

.price-card h3 { margin: 75px 0 4px; font-family: var(--font-display); font-size: clamp(48px, 4.5vw, 70px); font-weight: 500; letter-spacing: -.04em; line-height: 1; }
.price-caption { min-height: 48px; margin: 0; color: #656a60; font-size: 11px; }
.price-card--featured .price-caption { color: rgba(255, 253, 247, .55); }

.price { margin: 38px 0 42px; font-family: var(--font-display); font-size: 82px; letter-spacing: -.05em; line-height: .8; }
.price sup { margin-right: 7px; font-family: var(--font-sans); font-size: 15px; font-weight: 600; vertical-align: top; }
.price small { margin-left: 8px; font-family: var(--font-sans); font-size: 8px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }

.price-card ul { flex: 1; padding: 0; margin: 0 0 40px; list-style: none; border-top: 1px solid var(--line); }
.price-card--featured ul { border-color: var(--line-light); }

.price-card li {
    position: relative;
    padding: 13px 0 13px 23px;
    border-bottom: 1px solid rgba(24, 37, 26, .1);
    color: #51564e;
    font-size: 10px;
}

.price-card--featured li { color: rgba(255, 253, 247, .7); border-color: rgba(255, 253, 247, .1); }
.price-card li::before { content: ""; position: absolute; top: 19px; left: 2px; width: 8px; height: 4px; border-left: 1px solid var(--clay); border-bottom: 1px solid var(--clay); transform: rotate(-45deg); }
.price-card--featured li::before { border-color: var(--gold); }
.price-card .button { width: 100%; }

.nature-note { max-width: 720px; margin: 42px auto 0; color: #656961; font-family: var(--font-display); font-size: 16px; font-style: italic; line-height: 1.5; text-align: center; }

/* Founder */
.founder-letter { color: var(--white); background: var(--clay); }

.letter-grid {
    display: grid;
    grid-template-columns: .38fr 1.62fr;
    gap: clamp(50px, 8vw, 130px);
}

.letter-mark {
    color: rgba(255, 253, 247, .16);
    font-family: var(--font-display);
    font-size: clamp(220px, 25vw, 390px);
    font-style: italic;
    line-height: .75;
}

.letter-copy { max-width: 900px; }
.letter-copy .eyebrow { color: rgba(255, 253, 247, .65); }
.letter-copy .display-title { font-size: clamp(45px, 5.3vw, 82px); line-height: 1.05; }
.letter-copy > p:not(.eyebrow) { max-width: 680px; margin: 48px 0 0 auto; color: rgba(255, 253, 247, .72); font-size: 13px; line-height: 1.9; }

.signature { display: flex; align-items: center; gap: 22px; margin: 48px 0 0 auto; width: max-content; }
.signature span { font-family: var(--font-display); font-size: 39px; font-style: italic; }
.signature small { padding-left: 22px; border-left: 1px solid rgba(255, 253, 247, .34); color: rgba(255, 253, 247, .55); font-size: 8px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }

/* FAQ */
.faq { background: var(--paper); }

.faq-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: clamp(70px, 10vw, 160px); }
.faq-intro { position: sticky; top: 130px; align-self: start; }
.faq-intro > p:last-child { max-width: 360px; margin-top: 40px; color: #656a60; font-size: 12px; }

.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }

.faq-item button {
    display: grid;
    grid-template-columns: 1fr 30px;
    align-items: center;
    gap: 24px;
    width: 100%;
    padding: 31px 0;
    color: var(--ink);
    border: 0;
    background: none;
    font-family: var(--font-display);
    font-size: clamp(23px, 2.2vw, 34px);
    line-height: 1.15;
    text-align: left;
}

.faq-item button i { position: relative; display: block; width: 24px; height: 24px; }
.faq-item button i::before, .faq-item button i::after { content: ""; position: absolute; top: 11px; left: 3px; width: 18px; height: 1px; background: var(--clay); transition: transform .3s var(--ease); }
.faq-item button i::after { transform: rotate(90deg); }
.faq-item button[aria-expanded="true"] i::after { transform: rotate(0); }

.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .4s var(--ease); }
.faq-answer > p { overflow: hidden; max-width: 680px; margin: 0; color: #60655c; font-size: 13px; line-height: 1.8; }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-item.is-open .faq-answer > p { padding-bottom: 31px; }

/* Closing */
.closing {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 94svh;
    color: var(--white);
    overflow: hidden;
}

.closing-media, .closing-overlay { position: absolute; inset: 0; }
.closing-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.closing-overlay { background: linear-gradient(90deg, rgba(8, 14, 9, .83), rgba(8, 14, 9, .25) 70%); }

.closing-content { position: relative; z-index: 1; }
.closing-content h2 { max-width: 950px; margin: 0; font-family: var(--font-display); font-size: clamp(80px, 10vw, 155px); font-weight: 500; letter-spacing: -.06em; line-height: .76; }
.closing-content h2 em { color: var(--gold-light); font-weight: 400; }
.closing-content > p:not(.eyebrow) { max-width: 520px; margin: 48px 0 0 80px; color: rgba(255, 253, 247, .76); font-family: var(--font-display); font-size: clamp(19px, 1.6vw, 25px); }
.closing-actions { display: flex; align-items: center; gap: 32px; margin: 38px 0 0 80px; }

/* Footer */
.site-footer { padding: 82px 0 26px; color: rgba(255, 253, 247, .7); background: var(--forest-deep); }

.footer-grid { display: grid; grid-template-columns: 1fr .35fr .5fr; gap: 80px; padding-bottom: 76px; }
.brand--footer { color: var(--white); }
.footer-grid > div:first-child > p { margin: 32px 0 0; font-family: var(--font-display); font-size: 19px; line-height: 1.5; }

.footer-links { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }
.footer-links h3 { margin: 0 0 17px; color: rgba(255, 253, 247, .38); font-size: 8px; font-weight: 600; letter-spacing: .17em; text-transform: uppercase; }
.footer-links a, .footer-links span { font-size: 10px; }
.footer-links a { transition: color .2s ease; }
.footer-links a:hover { color: var(--gold-light); }

.footer-bottom { display: grid; grid-template-columns: 1fr 1fr auto; gap: 30px; padding-top: 24px; border-top: 1px solid rgba(255, 253, 247, .13); color: rgba(255, 253, 247, .35); font-size: 8px; font-weight: 500; letter-spacing: .09em; text-transform: uppercase; }
.footer-bottom span:nth-child(2) { text-align: center; }
.footer-bottom a { color: rgba(255, 253, 247, .68); }

.mobile-adopt { display: none; }

/* Entrance animation */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .85s var(--ease), transform .85s var(--ease);
}

.reveal.is-visible { opacity: 1; transform: translateY(0); }

.reveal-media { overflow: hidden; }
.reveal-media img { transform: scale(1.08); transition: transform 1.35s var(--ease); }
.reveal-media.is-visible img { transform: scale(1); }

.heritage-step:nth-child(2), .path-card:nth-child(2), .price-card:nth-child(2), .terrain-note:nth-child(2), .sensory-item:nth-child(2) { transition-delay: .09s; }
.heritage-step:nth-child(3), .path-card:nth-child(3), .price-card:nth-child(3), .terrain-note:nth-child(3), .sensory-item:nth-child(3) { transition-delay: .18s; }
.heritage-step:nth-child(4), .path-card:nth-child(4), .terrain-note:nth-child(4) { transition-delay: .27s; }

/* Responsive */
@media (max-width: 1120px) {
    :root { --shell: min(100% - 64px, 1040px); }
    .site-header { grid-template-columns: 1fr auto; padding-inline: 32px; }
    .desktop-nav { display: none; }
    .header-cta { margin-right: 56px; }
    .menu-toggle {
        position: absolute;
        right: 27px;
        display: block;
        opacity: 0;
        transform: translateY(-12px);
        transition: color .3s ease, opacity .55s var(--ease), transform .55s var(--ease);
    }

    body.is-ready .menu-toggle { opacity: 1; transform: translateY(0); transition-delay: 0s, .28s, .28s; }

    .mobile-menu {
        position: fixed;
        z-index: -1;
        inset: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 130px 8vw 70px;
        color: var(--white);
        background:
            radial-gradient(circle at 100% 0%, rgba(199, 155, 85, .17), transparent 31%),
            linear-gradient(145deg, #111d13 0%, var(--forest-deep) 72%);
        visibility: hidden;
        pointer-events: none;
        clip-path: circle(0 at calc(100% - 48px) 44px);
        transition: clip-path .72s var(--ease), visibility 0s linear .72s;
    }

    .mobile-menu::before {
        content: "";
        position: absolute;
        right: -26vw;
        bottom: -46vw;
        width: min(86vw, 820px);
        aspect-ratio: 1;
        border: 1px solid rgba(222, 193, 138, .08);
        border-radius: 50%;
        box-shadow: 0 0 0 80px rgba(222, 193, 138, .018), 0 0 0 160px rgba(222, 193, 138, .012);
        pointer-events: none;
    }

    .mobile-menu.is-open {
        visibility: visible;
        pointer-events: auto;
        clip-path: circle(150vmax at calc(100% - 48px) 44px);
        transition: clip-path .88s var(--ease), visibility 0s linear 0s;
    }

    .mobile-menu nav { position: relative; z-index: 1; display: flex; flex-direction: column; }
    .mobile-menu a {
        display: flex;
        align-items: baseline;
        gap: 22px;
        width: max-content;
        padding: 9px 0;
        font-family: var(--font-display);
        font-size: clamp(45px, 7vw, 72px);
        line-height: 1;
        opacity: 0;
        transform: translateY(38px) skewY(2deg);
        transform-origin: left;
        transition: color .25s ease, opacity .28s ease, transform .35s ease;
    }

    .mobile-menu a:hover { color: var(--gold-light); }
    .mobile-menu.is-open a { opacity: 1; transform: translateY(0) skewY(0); transition-duration: .25s, .65s, .65s; transition-timing-function: ease, var(--ease), var(--ease); }
    .mobile-menu.is-open a:nth-child(1) { transition-delay: 0s, .16s, .16s; }
    .mobile-menu.is-open a:nth-child(2) { transition-delay: 0s, .22s, .22s; }
    .mobile-menu.is-open a:nth-child(3) { transition-delay: 0s, .28s, .28s; }
    .mobile-menu.is-open a:nth-child(4) { transition-delay: 0s, .34s, .34s; }
    .mobile-menu.is-open a:nth-child(5) { transition-delay: 0s, .4s, .4s; }
    .mobile-menu a span { color: var(--gold); font-family: var(--font-sans); font-size: 9px; font-weight: 600; letter-spacing: .12em; }
    .mobile-menu > p {
        position: relative;
        z-index: 1;
        margin: 60px 0 0;
        color: rgba(255, 253, 247, .45);
        font-size: 9px;
        letter-spacing: .12em;
        line-height: 1.8;
        text-transform: uppercase;
        opacity: 0;
        transform: translateY(18px);
        transition: opacity .35s ease, transform .5s var(--ease);
    }

    .mobile-menu.is-open > p { opacity: 1; transform: translateY(0); transition-delay: .46s; }
    .site-header.menu-active { color: var(--white); border-color: rgba(255, 255, 255, .15); background: transparent; box-shadow: none; }

    .hero-title { font-size: clamp(78px, 11.5vw, 118px); }
    .hero-side-note { display: none; }
    .brand-story-grid { gap: 70px; }
    .roots-grid { grid-template-columns: .82fr 1.18fr; gap: 70px; }
    .story-body { grid-template-columns: 1fr; gap: 20px; }
    .time-intro, .terroir-heading, .experience-intro, .adoptions-head { gap: 60px; }
    .heritage-step { padding-right: 24px; }
    .heritage-step:not(:first-child) { padding-left: 24px; }
    .heritage-step:not(:first-child)::before { left: 24px; }
    .terroir-grid { gap: 60px; }
    .terrain-stamp { right: -30px; }
    .path-card { padding-inline: 22px; }
    .price-card { padding: 28px; }
}

@media (max-width: 820px) {
    :root { --shell: calc(100vw - 40px); }
    .section-pad { padding-block: 100px; }
    .display-title--xl { font-size: clamp(60px, 12vw, 90px); }
    .header-cta { display: none; }
    .site-header { height: 80px; padding-inline: 20px; }
    .site-header.is-scrolled { height: 68px; }
    .menu-toggle { right: 13px; }

    .hero { min-height: 780px; }
    .hero-content { min-height: 780px; padding-block: 122px 135px; justify-content: flex-end; }
    .hero-media img { object-position: 64% center; }
    .hero-title { font-size: clamp(66px, 15.6vw, 108px); line-height: .8; }
    .hero-bottom { flex-direction: column; align-items: flex-start; gap: 30px; margin-left: 0; }
    .hero-actions { flex-direction: row; align-items: center; }
    .edition-mark { right: 20px; bottom: 24px; min-width: 300px; }

    .brand-story-grid, .roots-grid, .time-intro, .terroir-heading, .terroir-grid,
    .oil-grid, .experience-intro, .adoptions-head, .letter-grid, .faq-grid {
        grid-template-columns: 1fr;
    }

    .brand-story-grid { gap: 80px; }
    .brand-decoder { max-width: 520px; }
    .roots-grid { gap: 80px; }
    .roots-image-wrap { width: min(78%, 500px); margin-left: 8%; }
    .story-body { grid-template-columns: 1fr 1fr; }
    .pull-quote { padding-left: 0; }

    .time-intro { align-items: start; gap: 50px; }
    .time-lead { max-width: 600px; }
    .heritage-line { grid-template-columns: 1fr 1fr; }
    .heritage-line::before { display: none; }
    .heritage-step { padding: 55px 32px 55px 0; border-top: 1px solid rgba(255, 253, 247, .18); }
    .heritage-step:nth-child(even) { padding-left: 32px; }
    .heritage-step:nth-child(3) { padding-left: 0; }
    .heritage-step:nth-child(3)::before { left: 0; }
    .heritage-step:nth-child(2)::before, .heritage-step:nth-child(4)::before { left: 32px; }

    .terroir-heading { align-items: start; gap: 35px; }
    .terroir-heading .lead { margin-top: 0; }
    .terroir-visual { min-height: 70vw; max-height: 720px; }
    .terrain-stamp { right: 24px; }
    .terrain-note { padding-block: 25px; }

    .harvest-banner { min-height: 720px; }
    .harvest-copy > p:last-child { margin-left: 0; }
    .harvest-image img { object-position: 54% center; }

    .oil-grid { gap: 80px; }
    .oil-visual { order: -1; }
    .oil-visual img { aspect-ratio: 4 / 3; }
    .sensory { max-width: 650px; }

    .experience-intro, .adoptions-head { align-items: start; gap: 40px; }
    .experience-intro .lead, .adoptions-head .lead { margin-top: 0; }
    .experience-path { grid-template-columns: 1fr 1fr; }
    .path-card { min-height: 350px; }
    .path-card:nth-child(2) { border-right: 0; }
    .path-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }

    .pricing-grid { grid-template-columns: 1fr; gap: 20px; }
    .price-card { min-height: auto; padding: 42px; }
    .price-card h3 { margin-top: 60px; }
    .price-card ul { min-height: 0; }
    .price-card--featured { order: -1; }

    .letter-grid { gap: 20px; }
    .letter-mark { font-size: 190px; }
    .letter-copy { margin-top: -80px; }
    .faq-grid { gap: 80px; }
    .faq-intro { position: static; }
    .faq-item button { font-size: 29px; }

    .closing { min-height: 780px; }
    .closing-content > p:not(.eyebrow), .closing-actions { margin-left: 0; }

    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
    :root { --shell: calc(100vw - 32px); }
    html { scroll-padding-top: 72px; }
    body { font-size: 15px; padding-bottom: 68px; }
    .section-pad { padding-block: 84px; }
    .eyebrow { margin-bottom: 22px; }
    .display-title { font-size: 48px; }
    .display-title--large, .display-title--xl { font-size: clamp(54px, 15.4vw, 76px); }
    .chapter-head { margin-bottom: 58px; }

    .brand-type { font-size: 18px; }
    .brand-mark { width: 24px; height: 30px; }
    .mobile-menu { padding-inline: 22px; }
    .mobile-menu a { font-size: 52px; }

    .hero { min-height: 760px; }
    .hero-content { min-height: 760px; padding: 112px 0 168px; }
    .hero-title { font-size: clamp(59px, 18vw, 82px); }
    .hero-bottom { margin-top: 26px; }
    .hero-bottom > p { font-size: 18px; }
    .hero-actions { flex-direction: column; align-items: stretch; width: 100%; }
    .hero-actions .button { width: 100%; }
    .edition-mark { left: 16px; right: 16px; bottom: 88px; min-width: 0; }

    .brand-story-grid { gap: 62px; }
    .brand-decoder { gap: 8px; font-size: 13px; }
    .brand-story-copy .lead { margin-top: 25px; }

    .roots-grid { gap: 62px; }
    .roots-image-wrap { width: calc(100% - 22px); margin-left: 22px; }
    .roots-image-wrap::before { top: -16px; left: -16px; }
    .story-body { grid-template-columns: 1fr; gap: 22px; margin-top: 38px; }
    .pull-quote { margin-top: 42px; font-size: 36px; }

    .time-intro { gap: 34px; }
    .heritage-line { grid-template-columns: 1fr; }
    .heritage-step, .heritage-step:nth-child(even), .heritage-step:nth-child(3) { padding: 44px 0; border-right: 0; }
    .heritage-step:nth-child(2)::before, .heritage-step:nth-child(3)::before, .heritage-step:nth-child(4)::before { left: 0; }

    .terroir-heading { margin-bottom: 58px; }
    .terroir-visual { min-height: 480px; }
    .terrain-stamp { right: 14px; bottom: 14px; width: 98px; height: 98px; }
    .terrain-stamp strong { font-size: 24px; }
    .terrain-note { grid-template-columns: 40px 1fr; gap: 9px; }
    .terrain-note h3 { font-size: 30px; }
    .terroir-statement { font-size: 42px; text-align: left; }

    .harvest-banner { min-height: 680px; }
    .harvest-copy h2 { font-size: 72px; }
    .harvest-copy > p:last-child { margin-top: 30px; }

    .oil-grid { gap: 60px; }
    .oil-visual img { aspect-ratio: 1 / 1; object-position: 60% center; }
    .oil-copy .oil-lead { margin-top: 32px; }
    .sensory-item { grid-template-columns: 32px 1fr; }
    .sensory-item small { grid-column: 2; }

    .experience-path { grid-template-columns: 1fr; }
    .path-card { min-height: auto; padding: 34px 18px 40px; border-right: 0 !important; border-bottom: 1px solid var(--line); }
    .path-card svg { margin: 30px 0 48px; }
    .limited-note { grid-template-columns: 1fr auto; gap: 18px; }
    .limited-line { grid-column: 1 / -1; }
    .limited-note p { font-size: 10px; }

    .price-card { padding: 30px 24px; }
    .price-card h3 { font-size: 58px; }
    .price { font-size: 72px; }

    .letter-mark { font-size: 155px; }
    .letter-copy { margin-top: -62px; }
    .letter-copy > p:not(.eyebrow) { margin-top: 35px; }
    .signature { margin-left: 0; }

    .faq-grid { gap: 55px; }
    .faq-item button { padding-block: 25px; font-size: 25px; }

    .closing { min-height: 720px; }
    .closing-content h2 { font-size: 74px; }
    .closing-content > p:not(.eyebrow) { margin-top: 35px; }
    .closing-actions { flex-direction: column; align-items: stretch; gap: 24px; }
    .closing-actions .button { width: 100%; }
    .closing-actions .text-link { width: max-content; }

    .site-footer { padding-top: 68px; }
    .footer-grid { grid-template-columns: 1fr; gap: 48px; }
    .footer-grid > div:first-child { grid-column: auto; }
    .footer-bottom { grid-template-columns: 1fr auto; }
    .footer-bottom span:nth-child(2) { display: none; }

    .mobile-adopt {
        position: fixed;
        z-index: 90;
        right: 10px;
        bottom: 10px;
        left: 10px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 58px;
        padding: 10px 18px;
        color: var(--white);
        background: rgba(13, 22, 15, .96);
        box-shadow: 0 14px 40px rgba(13, 22, 15, .25);
        backdrop-filter: blur(10px);
    }

    .mobile-adopt span { color: var(--gold-light); font-size: 7px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
    .mobile-adopt strong { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
    .reveal-media img, .title-line > span { transform: none; }
    .hero-media img, .harvest-image img { height: 100%; transform: none !important; }
}
