/* ============================================================
   Ramona Origins — scroll-driven rebuild
   Palette, type and voice preserved from the original site.
   ============================================================ */

:root{
  --ink:#111111;
  --ink-soft:#4a4640;
  --orange:#F28C00;
  --gold:#F7B500;
  --forest:#16311f;
  --forest-deep:#0e2216;
  --canopy:#2f5d3f;
  --canopy-light:#4c7d5c;
  --clay:#a84a2b;
  --parchment:#f1ead9;
  --paper:#faf7f0;
  --white:#ffffff;
  --line:rgba(17,17,17,0.12);
  --max:1140px;
  --ease:cubic-bezier(.2,.7,.2,1);
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth; -webkit-text-size-adjust:100%;}
body{
  margin:0; background:var(--paper); color:var(--ink);
  font-family:'Inter',system-ui,sans-serif; line-height:1.55;
  -webkit-font-smoothing:antialiased; overflow-x:hidden;
}
h1,h2,h3{font-family:'Fraunces',Georgia,serif; font-weight:680; line-height:1.06; margin:0; letter-spacing:-0.01em;}
em{font-style:italic; font-weight:500; color:var(--gold);}
a{color:inherit;}
img{max-width:100%; display:block; height:auto;}  /* height:auto lets CSS aspect-ratio beat the width/height attributes */
.wrap{max-width:var(--max); margin:0 auto; padding:0 28px;}
.eyebrow{font-family:'Space Mono',ui-monospace,monospace; font-size:0.72rem; letter-spacing:0.14em; text-transform:uppercase; color:var(--orange);}
a:focus-visible,button:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible{outline:2px solid var(--orange); outline-offset:3px;}
.visually-hidden{position:absolute; width:1px; height:1px; margin:-1px; padding:0; overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0;}
section{padding:96px 0;}

/* ---------- SCROLL PROGRESS ---------- */
.progress{position:fixed; top:0; left:0; height:2px; width:100%; z-index:70; background:transparent; pointer-events:none;}
.progress i{display:block; height:100%; width:100%; background:linear-gradient(90deg,var(--orange),var(--gold)); transform:scaleX(0); transform-origin:0 50%;}

/* ---------- NAV ---------- */
.nav{position:fixed; top:0; left:0; right:0; z-index:60; transition:background .3s var(--ease), border-color .3s var(--ease), backdrop-filter .3s;
  background:transparent; border-bottom:1px solid transparent;}
.nav .wrap{display:flex; align-items:center; justify-content:space-between; padding-top:14px; padding-bottom:14px;}
.nav-mark{display:flex; align-items:center;}
.nav-mark img{height:40px; width:auto; transition:height .3s var(--ease);}
/* the wordmark is black, so the hero state needs the light lockup */
.nav .mark-dark{display:none;}
.nav.solid .mark-light, .nav.open .mark-light{display:none;}
.nav.solid .mark-dark, .nav.open .mark-dark{display:block;}
.nav-links{display:flex; gap:24px; align-items:center;}
.nav-links a{color:var(--white); text-decoration:none; font-size:0.88rem; opacity:.82; transition:opacity .15s ease,color .3s ease;}
.nav-links a:hover{opacity:1;}
.nav-cta{background:var(--orange); color:var(--ink) !important; padding:9px 18px; border-radius:2px; font-weight:600; font-size:0.85rem !important; opacity:1 !important;}
.nav-cta:hover{background:var(--gold);}
.nav.solid{background:rgba(255,255,255,0.94); backdrop-filter:blur(8px); border-bottom-color:var(--line);}
.nav.solid .nav-links a{color:var(--ink);}
.nav.solid .nav-mark img{height:34px;}
.nav-toggle{display:none; background:none; border:0; padding:8px; cursor:pointer;}
.nav-toggle span{display:block; width:22px; height:2px; background:var(--white); margin:4px 0; transition:background .3s;}
.nav.solid .nav-toggle span{background:var(--ink);}
@media (max-width:900px){
  .nav-toggle{display:block;}
  .nav-links{position:fixed; inset:0 0 auto 0; top:0; padding:84px 28px 28px; flex-direction:column; align-items:flex-start; gap:6px;
    background:var(--white); border-bottom:1px solid var(--line); transform:translateY(-102%); transition:transform .4s var(--ease); z-index:-1;}
  .nav-links a{color:var(--ink); font-size:1.05rem; padding:10px 0; width:100%;}
  .nav.open .nav-links{transform:translateY(0);}
  .nav.open{background:var(--white);}
  .nav.open .nav-toggle span{background:var(--ink);}
  .nav-cta{align-self:flex-start; margin-top:10px;}
}

/* ---------- HERO ---------- */
.hero{position:relative; min-height:100svh; display:flex; align-items:flex-end; background:var(--ink); color:var(--parchment); overflow:hidden;}
.hero-media{position:absolute; inset:-8% 0; will-change:transform;}
.hero-media img,.hero-media video{position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center 40%; opacity:.72;}
.hero-video{display:none;}
.hero-media.has-video .hero-video{display:block;}
.hero-media.has-video .hero-bg{display:none;}
.hero::after{content:""; position:absolute; inset:0; background:linear-gradient(to top,rgba(8,8,8,.94) 0%,rgba(8,8,8,.6) 42%,rgba(8,8,8,.25) 100%);}
.hero-grain{position:absolute; inset:0; z-index:1; pointer-events:none; opacity:.12; mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.9'/></svg>");}
.hero-inner{position:relative; z-index:3; padding:132px 0 0; width:100%;}
/* One column by default (no 3D model in the hero). The two-column split only
   applies when a model stage is actually present, so both hero variants share
   this stylesheet; browsers without :has() simply get the single column. */
.hero-grid{display:grid; grid-template-columns:1fr; gap:32px; align-items:center;}
.hero-grid:has(.cherry-stage){grid-template-columns:1.05fr 0.95fr;}
.hero-copy h1{font-size:clamp(2.4rem,5.2vw,4.3rem); max-width:15ch; color:var(--white);}
.hero-copy p{margin-top:22px; max-width:52ch; font-size:1.06rem; color:rgba(255,255,255,.86);}
.hero-eyebrow{margin-bottom:18px; display:block; color:var(--gold);}
.hero-actions{margin-top:32px; display:flex; gap:14px; flex-wrap:wrap;}

.btn{font-weight:600; font-size:0.92rem; padding:13px 24px; border-radius:2px; border:1px solid transparent; cursor:pointer; text-decoration:none;
  display:inline-flex; align-items:center; gap:8px; transition:transform .15s ease,background .15s ease,border-color .15s ease;}
.btn:hover{transform:translateY(-1px);}
.btn-primary{background:var(--orange); color:var(--ink);}
.btn-primary:hover{background:var(--gold);}
.btn-ghost{border-color:rgba(255,255,255,.45); color:var(--white);}
.btn-ghost:hover{border-color:var(--white);}

/* hero 3D cherry */
.cherry-stage{position:relative; aspect-ratio:1/1; width:100%; max-width:520px; justify-self:end;}
.cherry-stage canvas{width:100%; height:100%; display:block; cursor:grab; touch-action:pan-y;}
.cherry-stage canvas:active{cursor:grabbing;}
.cherry-fallback{position:absolute; inset:0; display:grid; place-items:center; background:radial-gradient(circle at 50% 45%,rgba(168,74,43,.35),transparent 62%);}
.cherry-fallback img{width:64%; border-radius:50%; opacity:.9;}
.cherry-stage.ready .cherry-fallback{display:none;}
.cherry-caption{position:absolute; left:0; right:0; bottom:-4px; margin:0; text-align:center; font-family:'Space Mono',monospace; font-size:.66rem; letter-spacing:.12em; color:rgba(255,255,255,.45);}

/* cutaway labels: leader lines in SVG, text in HTML, both driven per frame */
.cherry-leaders{position:absolute; inset:0; width:100%; height:100%; pointer-events:none; overflow:visible;}
.cherry-leaders line{stroke:rgba(247,181,0,.7); stroke-width:1;}
.cherry-leaders circle{fill:var(--gold);}
.cherry-labels{position:absolute; inset:0; pointer-events:none;}
.cherry-labels span{position:absolute; left:0; top:0; opacity:0; white-space:nowrap;
  font-family:'Space Mono',monospace; font-size:.62rem; letter-spacing:.1em; text-transform:uppercase;
  color:var(--white); text-shadow:0 1px 8px rgba(0,0,0,.9), 0 0 2px rgba(0,0,0,.8);}
.cherry-labels em{display:block; font-style:normal; font-size:.56rem; letter-spacing:.06em;
  text-transform:none; color:var(--gold); opacity:.85; margin-top:1px;}

.stat-strip{position:relative; z-index:3; margin-top:56px; border-top:1px solid rgba(255,255,255,.2); display:grid; grid-template-columns:repeat(4,1fr);}
.stat{padding:22px 24px 26px; border-right:1px solid rgba(255,255,255,.2);}
.stat:last-child{border-right:none;}
.stat-num{font-family:'Space Mono',monospace; font-size:1.45rem; font-weight:700; color:var(--gold);}
.stat-label{margin-top:4px; font-size:.8rem; color:rgba(255,255,255,.7);}
.scroll-cue{position:absolute; left:50%; bottom:18px; z-index:4; width:22px; height:36px; border:1.5px solid rgba(255,255,255,.4); border-radius:12px; transform:translateX(-50%);}
.scroll-cue span{position:absolute; left:50%; top:6px; width:3px; height:7px; margin-left:-1.5px; border-radius:2px; background:var(--gold); animation:cue 1.8s ease-in-out infinite;}
@keyframes cue{0%{transform:translateY(0);opacity:1}70%{transform:translateY(14px);opacity:0}100%{opacity:0}}

@media (max-width:900px){
  .hero{min-height:auto;}
  .hero-inner{padding-top:104px;}
  .hero-grid{grid-template-columns:1fr; gap:8px;}
  .cherry-stage{max-width:min(80vw,320px); justify-self:center; order:-1; margin-bottom:44px;}
  .cherry-labels span.opt{display:none;}
  .cherry-labels span{font-size:.55rem; letter-spacing:.06em;}
  .cherry-labels em{display:none;}
  .cherry-caption{bottom:-18px;}
  .stat-strip{grid-template-columns:repeat(2,1fr); margin-top:38px;}
  .stat{border-bottom:1px solid rgba(255,255,255,.2);}
  .scroll-cue{display:none;}
}

/* ---------- SECTION SHELL ---------- */
.section-head{max-width:660px; margin-bottom:52px;}
.section-head h2{font-size:clamp(1.9rem,3.4vw,2.6rem); margin-top:14px;}
.section-head p{margin-top:16px; font-size:1.02rem; color:var(--ink-soft);}

/* ---------- WHY RAMONA ---------- */
.why-ramona{background:var(--white);}
.split{display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center;}
.split-media{overflow:hidden; border-radius:3px;}
.split-media img{width:100%; aspect-ratio:4/3; object-fit:cover; will-change:transform;}
.pillars{display:grid; border-top:1px solid var(--line);}
.pillar{padding:24px 0; border-bottom:1px solid var(--line); display:grid; grid-template-columns:56px 1fr; gap:16px;}
.pillar .num{font-family:'Space Mono',monospace; font-size:.78rem; color:var(--orange); padding-top:4px;}
.pillar h3{font-size:1.15rem; font-weight:560;}
.pillar p{margin:8px 0 0; font-size:.94rem; color:var(--ink-soft);}
@media (max-width:900px){.split{grid-template-columns:1fr; gap:32px;}}

/* ---------- LOTS ---------- */
.lots{background:var(--ink); color:var(--parchment);}
.lots .section-head p{color:rgba(241,234,217,.72);}
.lot-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:18px;}
.lot{background:#1c1b19; border:1px solid rgba(255,255,255,.1); border-radius:3px; overflow:hidden; display:flex; flex-direction:column;
  transition:border-color .3s ease, transform .4s var(--ease);}
.lot:hover{border-color:rgba(247,181,0,.5); transform:translateY(-4px);}
.lot-img{overflow:hidden;}
.lot img{width:100%; aspect-ratio:4/3; object-fit:cover; transition:transform .8s var(--ease);}
.lot:hover img{transform:scale(1.05);}
.lot-body{padding:24px 24px 26px; flex:1; display:flex; flex-direction:column;}
.lot .tag{font-family:'Space Mono',monospace; font-size:.7rem; letter-spacing:.1em; text-transform:uppercase; color:var(--gold);}
.lot h3{font-size:1.35rem; font-weight:560; margin-top:8px; color:var(--white);}
.lot p{margin-top:10px; font-size:.92rem; color:rgba(241,234,217,.72); flex:1;}
.lot dl{margin:18px 0 0; display:grid; grid-template-columns:auto 1fr; gap:6px 14px; font-size:.82rem;}
.lot dt{color:rgba(241,234,217,.5); font-family:'Space Mono',monospace; font-size:.68rem; text-transform:uppercase; letter-spacing:.06em; padding-top:2px;}
.lot dd{margin:0; color:var(--parchment);}
.lot-note{margin-top:28px; font-size:.88rem; color:rgba(241,234,217,.6); max-width:70ch;}
.spec-grid{margin-top:40px; display:grid; grid-template-columns:1fr 1fr; gap:18px;}
.spec{border:1px solid rgba(255,255,255,.12); border-radius:3px; padding:22px 24px;}
.spec-h{font-family:'Space Mono',monospace; font-size:.7rem; letter-spacing:.1em; text-transform:uppercase; color:var(--gold); margin-bottom:12px;}
.spec dl{margin:0; display:grid; grid-template-columns:auto 1fr; gap:8px 18px; font-size:.88rem;}
.spec dt{color:rgba(241,234,217,.55);}
.spec dd{margin:0; color:var(--parchment);}
@media (max-width:900px){.lot-grid{grid-template-columns:1fr;}}
@media (max-width:720px){.spec-grid{grid-template-columns:1fr;}}

/* ---------- HOW ---------- */
.how{background:var(--parchment);}
.steps{display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--line); border:1px solid var(--line);}
.step{background:var(--parchment); padding:28px 24px;}
.step .num{font-family:'Space Mono',monospace; font-size:.78rem; color:var(--orange);}
.step h3{font-size:1.08rem; font-weight:560; margin-top:12px;}
.step p{margin-top:10px; font-size:.9rem; color:var(--ink-soft);}
@media (max-width:900px){.steps{grid-template-columns:1fr 1fr;}}
@media (max-width:520px){.steps{grid-template-columns:1fr;}}

/* ---------- ORIGIN / GLOBE ---------- */
.history{background:var(--forest-deep); color:var(--parchment); position:relative; overflow:clip;}
.history .eyebrow{color:var(--gold);}
.history .section-head h2{color:var(--white);}
.history .section-head p{color:rgba(241,234,217,.74);}
/* the globe column must STRETCH to the row height, otherwise its sticky
   child has no travel and the globe scrolls away with the first timeline entry */
.history-grid{display:grid; grid-template-columns:0.95fr 1.05fr; gap:56px; align-items:stretch;}
.globe-col{position:relative;}
.globe-sticky{position:sticky; top:clamp(88px, calc(50vh - 300px), 170px);}
.globe-stage{position:relative; width:100%; aspect-ratio:1/1;}
.globe-stage canvas{width:100%; height:100%; display:block;}
.globe-fallback{position:absolute; inset:0; display:grid; place-items:center; border-radius:50%;
  background:radial-gradient(circle at 38% 34%,#2b5f7a,#0d1f2c 62%,transparent 63%);}
.globe-stage.ready .globe-fallback{display:none;}
.globe-marker{position:absolute; left:0; top:0; transform:translate(-50%,-50%); pointer-events:none; opacity:0; transition:opacity .4s ease;}
.globe-marker .pin{width:10px; height:10px; border-radius:50%; background:var(--orange); box-shadow:0 0 0 4px rgba(242,140,0,.28), 0 0 18px rgba(242,140,0,.9); margin:0 auto;}
.globe-marker .lbl{margin-top:18px; font-family:'Space Mono',monospace; font-size:.7rem; letter-spacing:.1em; text-transform:uppercase; color:var(--white); white-space:nowrap; text-shadow:0 1px 6px rgba(0,0,0,.8);}
.globe-marker .coord{display:block; font-size:.62rem; color:var(--gold); letter-spacing:.08em; margin-top:2px;}
.globe-caption{margin-top:14px; text-align:center; font-family:'Space Mono',monospace; font-size:.72rem; letter-spacing:.08em; color:rgba(241,234,217,.6);}
.globe-caption b{display:block; color:var(--gold); font-weight:400; margin-bottom:4px;}

.timeline{position:relative; z-index:0; border-left:2px solid rgba(241,234,217,.18); margin-left:6px;}
.timeline .tl-fill{position:absolute; left:-2px; top:0; width:2px; height:100%; background:linear-gradient(180deg,var(--orange),var(--gold)); transform:scaleY(0); transform-origin:0 0;}
.tl-item{position:relative; padding:0 0 44px 34px;}
.tl-item:last-child{padding-bottom:0;}
.tl-item::before{content:""; position:absolute; left:-7px; top:4px; width:12px; height:12px; border-radius:50%; background:var(--forest-deep); border:2px solid var(--orange); transition:box-shadow .4s ease;}
.tl-item.active::before{box-shadow:0 0 0 5px rgba(242,140,0,.18);}
.tl-year{font-family:'Space Mono',monospace; font-size:.82rem; font-weight:700; color:var(--orange); letter-spacing:.04em;}
.tl-item h3{font-size:1.24rem; font-weight:560; margin-top:6px; color:var(--white);}
.tl-item p{margin-top:8px; color:rgba(241,234,217,.72); max-width:64ch; font-size:.98rem;}
@media (max-width:900px){
  /* block layout so the globe panel can stick over the whole grid, with the
     timeline scrolling underneath it and fading out behind the panel */
  .history-grid{display:block;}
  /* full-bleed panel: the negative margin cancels .wrap's padding so the
     timeline rail cannot peek past the edge as it scrolls underneath */
  .globe-col{position:sticky; top:0; z-index:2; margin:0 -28px; padding:70px 28px 18px;
    background:linear-gradient(to bottom, var(--forest-deep) 0%, var(--forest-deep) 86%, rgba(14,34,22,0) 100%);}
  .globe-sticky{position:static;}
  .globe-stage{max-width:min(58vw,240px); margin:0 auto;}
  .globe-caption{margin-top:10px; font-size:.68rem;}
  .timeline{margin-top:6px;}
}

/* ---------- FIELD MOSAIC ---------- */
.field-section{background:var(--white);}
.mosaic{display:grid; grid-template-columns:1.3fr 1fr 1fr; grid-template-rows:auto auto; gap:14px;}
.mosaic .m-large{grid-row:1/3;}
.mosaic figure{margin:0; position:relative; overflow:hidden; border-radius:2px; background:var(--parchment);}
.mosaic img{width:100%; height:100%; object-fit:cover; aspect-ratio:4/3; transition:transform .8s var(--ease);}
.mosaic .m-large img{aspect-ratio:4/4.7;}
.mosaic figure:hover img{transform:scale(1.04);}
.mosaic figcaption{position:absolute; left:0; right:0; bottom:0; padding:14px 16px 12px; background:linear-gradient(to top,rgba(10,10,10,.82),rgba(10,10,10,0)); color:var(--white); font-size:.8rem; line-height:1.35;}
@media (max-width:720px){
  .mosaic{grid-template-columns:1fr 1fr;}
  .mosaic .m-large{grid-row:auto; grid-column:1/-1;}
  .mosaic img,.mosaic .m-large img{aspect-ratio:4/3;}
}

/* ---------- VIDEOS ---------- */
.videos{background:var(--parchment);}
.video-grid{display:grid; grid-template-columns:1.3fr 1fr; gap:18px; align-items:start;}
.video-side{display:grid; gap:18px;}
.video{background:var(--white); border:1px solid var(--line); border-radius:3px; overflow:hidden;}
.video .frame{position:relative; aspect-ratio:16/9; background:var(--ink); cursor:pointer;}
.video-grid > .video .frame{aspect-ratio:5/4;}
@media (max-width:900px){.video-grid > .video .frame{aspect-ratio:16/9;}}
.video .frame iframe{position:absolute; inset:0; width:100%; height:100%; border:0;}
.video .frame img{position:absolute; inset:0; width:100%; height:100%; object-fit:cover; opacity:.85;}
.video .frame .play{position:absolute; inset:0; display:grid; place-items:center; border:0; background:none; cursor:pointer; padding:0;}
.video .frame .play::before{content:""; width:60px; height:60px; border-radius:50%; background:rgba(242,140,0,.94); box-shadow:0 8px 30px rgba(0,0,0,.4); transition:transform .25s var(--ease);}
.video .frame .play::after{content:""; position:absolute; border-style:solid; border-width:11px 0 11px 18px; border-color:transparent transparent transparent var(--ink); margin-left:5px;}
.video .frame:hover .play::before{transform:scale(1.08);}
.video-body{padding:16px 18px 18px;}
.video .tag{font-family:'Space Mono',monospace; font-size:.68rem; letter-spacing:.1em; text-transform:uppercase; color:var(--orange);}
.video h3{font-size:1.05rem; font-weight:560; margin-top:6px;}
.video p{margin:6px 0 0; font-size:.88rem; color:var(--ink-soft);}
@media (max-width:900px){.video-grid{grid-template-columns:1fr;}}

/* ---------- TERROIR ---------- */
.why{background:var(--forest); color:var(--parchment);}
.why .section-head p{color:rgba(241,234,217,.72);}
.why .section-head h2{color:var(--white);}
.why .eyebrow{color:var(--gold);}
.card-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:rgba(241,234,217,.14); border:1px solid rgba(241,234,217,.14);}
.card{background:var(--forest); padding:30px 26px; transition:background .35s ease;}
.card:hover{background:var(--forest-deep);}
.card .num{font-family:'Space Mono',monospace; font-size:.78rem; color:var(--canopy-light);}
.card h3{font-size:1.1rem; font-weight:560; margin-top:12px; color:var(--parchment);}
.card p{margin-top:10px; font-size:.92rem; color:rgba(241,234,217,.68);}
@media (max-width:900px){.card-grid{grid-template-columns:1fr 1fr;}}
@media (max-width:560px){.card-grid{grid-template-columns:1fr;}}

/* ---------- COMPARISON ---------- */
.compare{background:var(--paper);}
.compare-note{background:var(--parchment); border-left:3px solid var(--orange); padding:16px 20px; font-size:.94rem; color:var(--ink-soft); margin-bottom:40px; max-width:74ch;}
.table-wrap{overflow-x:auto; border:1px solid var(--line); background:var(--white); -webkit-overflow-scrolling:touch;}
table{width:100%; border-collapse:collapse; min-width:680px; font-size:.92rem;}
thead th{text-align:left; font-family:'Space Mono',monospace; font-size:.72rem; letter-spacing:.06em; text-transform:uppercase; color:var(--ink-soft); padding:14px 18px; border-bottom:1px solid var(--line);}
thead th:first-child{color:var(--ink);}
thead th.hl{color:var(--orange);}
tbody td{padding:16px 18px; border-bottom:1px solid var(--line); vertical-align:top;}
tbody tr:last-child td{border-bottom:none;}
tbody td:first-child{font-weight:600; color:var(--ink-soft); font-size:.82rem; white-space:nowrap;}
td.hl{background:rgba(242,140,0,.07); font-weight:500;}
.foot-src{margin-top:18px; font-family:'Space Mono',monospace; font-size:.72rem; color:var(--ink-soft); opacity:.75;}

/* ---------- CTA ---------- */
.cta{background:var(--ink); color:var(--parchment); position:relative; overflow:hidden;}
.cta-inner{position:relative; z-index:2; display:grid; grid-template-columns:.9fr 1.1fr; gap:56px; align-items:start;}
.cta-left h2{font-size:clamp(1.9rem,3.4vw,2.5rem); color:var(--white); max-width:14ch;}
.cta-left p{margin-top:18px; color:rgba(241,234,217,.78); max-width:46ch; font-size:1rem;}
.contact-block{margin-top:28px; padding:20px 22px; border:1px solid rgba(255,255,255,.14); border-radius:3px; font-size:.92rem;}
.contact-block .eyebrow{color:var(--gold); display:block; margin-bottom:10px;}
.contact-block a{color:var(--white); text-decoration:none; border-bottom:1px solid rgba(255,255,255,.3);}
.contact-block a:hover{border-color:var(--orange);}
.channels{margin-top:24px; display:flex; flex-direction:column; gap:10px;}
.channel{display:flex; align-items:center; gap:10px; font-size:.9rem; text-decoration:none; color:var(--parchment); padding-bottom:10px; border-bottom:1px solid rgba(255,255,255,.14); width:fit-content; transition:border-color .15s ease;}
.channel:hover{border-color:var(--orange);}
.channel .dot{width:6px; height:6px; border-radius:50%; background:var(--orange); flex:none;}
.form-card{background:var(--white); color:var(--ink); padding:36px; border-radius:3px;}
.form-card h3{font-size:1.2rem; font-weight:560;}
.form-card .form-sub{margin-top:6px; font-size:.88rem; color:var(--ink-soft);}
.form-grid{margin-top:24px; display:grid; grid-template-columns:1fr 1fr; gap:16px;}
.field{display:flex; flex-direction:column; gap:6px;}
.field.full{grid-column:1/-1;}
label{font-family:'Space Mono',monospace; font-size:.68rem; letter-spacing:.05em; text-transform:uppercase; color:var(--ink-soft);}
input,select,textarea{font-family:'Inter',sans-serif; font-size:16px; padding:11px 12px; border:1px solid var(--line); border-radius:2px; background:#fff; color:var(--ink);}
textarea{resize:vertical; min-height:70px;}
.checks{display:flex; gap:16px; flex-wrap:wrap; font-size:.9rem;}
.checks label{display:flex; align-items:center; gap:6px; font-family:'Inter',sans-serif; text-transform:none; letter-spacing:0; font-size:.9rem; color:var(--ink);}
.form-submit{margin-top:22px; width:100%; justify-content:center; background:var(--orange); color:var(--ink); font-family:'Inter',sans-serif;}
.form-submit:hover{background:var(--gold);}
.form-status{margin-top:12px; font-size:.82rem; color:var(--canopy); min-height:18px;}
@media (max-width:900px){.cta-inner{grid-template-columns:1fr; gap:34px;} .form-grid{grid-template-columns:1fr;} .form-card{padding:26px 22px;}}

/* sticky mobile sample bar */
.sample-bar{position:fixed; left:0; right:0; bottom:0; z-index:55; display:none; padding:10px 16px calc(10px + env(safe-area-inset-bottom));
  background:rgba(17,17,17,.95); backdrop-filter:blur(8px); transform:translateY(110%); transition:transform .35s var(--ease);}
.sample-bar a{display:flex; justify-content:center; width:100%;}
.sample-bar.show{transform:translateY(0);}
@media (max-width:900px){.sample-bar{display:block;}}

/* ---------- FOOTER ---------- */
footer{background:var(--white); color:var(--ink-soft); padding:36px 0 44px; font-size:.82rem; border-top:1px solid var(--line);}
footer .wrap{display:flex; justify-content:space-between; align-items:center; gap:16px; flex-wrap:wrap;}
footer img{height:34px; width:auto;}
footer a{color:var(--ink); text-decoration:none;}
footer a:hover{color:var(--orange);}
@media (max-width:900px){footer{padding-bottom:86px;}}

/* ---------- ANIMATION PRIMITIVES ---------- */
.anim{opacity:0; transform:translateY(26px);}
.word{display:inline-block; will-change:transform,opacity;}
.no-js .anim,.no-anim .anim{opacity:1; transform:none;}

@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto;}
  *{animation-duration:.001ms !important; transition-duration:.001ms !important;}
  .anim{opacity:1 !important; transform:none !important;}
  .hero-video{display:none !important;}
  .hero-media.has-video .hero-bg{display:block !important;}
}
