/* ==========================================================================
   NXTGEN HUNTING BLINDS — SITE STYLESHEET
   Design principle: nothing bounces. 500–900ms, cubic-bezier(.16,1,.3,1).
   Palette coverage target: NXT Red ~3% of the page.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
@font-face {
  font-family: 'Break Brush';
  src: url('../fonts/Break Brush.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Palette */
  --timber:      #0C0E0B;
  --timber-2:    #1E221B;
  --timber-3:    #151813;
  --bone:        #E8E4DA;
  --bone-2:      #C9C5BA;
  --ash:         #8E9187;
  --ash-2:       #6B6E65;
  --sage:        #7D8A6A;
  --red:         #E52E19;
  --red-lt:      #F4553C;
  --red-dk:      #B81F0E;

  /* Lines & fills */
  --line:        rgba(232, 228, 218, .13);
  --line-2:      rgba(232, 228, 218, .07);
  --line-strong: rgba(232, 228, 218, .28);
  --glass:       rgba(12, 14, 11, .78);

  /* Type */
  --dsp: 'Archivo', 'Arial Black', system-ui, sans-serif;
  --ui:  'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mono:'JetBrains Mono', ui-monospace, 'SFMono-Regular', Consolas, monospace;

  /* Motion */
  --ease: cubic-bezier(.16, 1, .3, 1);
  --t-fast: .28s;
  --t-mid:  .6s;
  --t-slow: .9s;

  /* Layout */
  --max: 1240px;
  --max-narrow: 780px;
  --gut: 28px;
  --nav-h: 74px;
  --sec-y: clamp(80px, 11vw, 148px);
}

/* --------------------------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--timber);
  color: var(--bone);
  font-family: var(--ui);
  font-size: 17px;
  line-height: 1.62;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body.nav-open { overflow: hidden; }

img, video, svg, canvas { display: block; max-width: 100%; }
img { height: auto; }

::selection { background: var(--red); color: #fff; }

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 2px;
}

/* --------------------------------------------------------------------------
   3. TYPE
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, .dsp {
  font-family: var(--dsp);
  font-weight: 800;
  font-stretch: 118%;
  letter-spacing: -.015em;
  line-height: .98;
  text-transform: uppercase;
  text-wrap: balance;
}

.mono {
  font-family: var(--mono);
  font-weight: 400;
  letter-spacing: .02em;
  font-feature-settings: "tnum" 1;
}

a { color: inherit; text-decoration: none; transition: color var(--t-fast) var(--ease); }
p a, .prose a {
  color: var(--bone);
  text-decoration: underline;
  text-decoration-color: rgba(229, 46, 25, .55);
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}
p a:hover, .prose a:hover { color: var(--red-lt); text-decoration-color: var(--red-lt); }

strong, b { font-weight: 600; color: #fff; }

/* Utility type scale */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--red);
  opacity: .8;
}
.eyebrow.plain::before { display: none; }
.eyebrow.ash { color: var(--ash); }
.eyebrow.ash::before { background: var(--ash); }

.h-xl  { font-size: clamp(42px, 8.2vw, 116px); line-height: .92; }
.h-lg  { font-size: clamp(32px, 5.4vw, 68px); }
.h-md  { font-size: clamp(26px, 3.4vw, 42px); }
.h-sm  { font-size: clamp(20px, 2.2vw, 27px); }

.dim { color: var(--ash-2); }
.dim-2 { color: var(--ash); }
.red { color: var(--red); }
.sage { color: var(--sage); }

.lead {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
  color: var(--bone-2);
  max-width: 40ch;
}
.lead.wide { max-width: 56ch; }

.prose { max-width: 62ch; color: var(--bone-2); }
.prose p + p { margin-top: 1.15em; }
.prose h2 { margin: 2.2em 0 .7em; font-size: clamp(22px, 2.6vw, 30px); color: var(--bone); }
.prose h3 { margin: 1.9em 0 .5em; font-size: clamp(17px, 1.8vw, 20px); color: var(--bone); letter-spacing: .01em; }
.prose ul, .prose ol { margin: 1em 0 1em 1.15em; }
.prose li { margin-bottom: .5em; }
.prose li::marker { color: var(--red); }

.fine { font-size: 13px; line-height: 1.55; color: var(--ash); }

/* --------------------------------------------------------------------------
   4. LAYOUT
   -------------------------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gut); }
.wrap-narrow { width: 100%; max-width: var(--max-narrow); margin-inline: auto; padding-inline: var(--gut); }

section { padding-block: var(--sec-y); position: relative; }
section.tight { padding-block: clamp(56px, 7vw, 90px); }
.rule-top { border-top: 1px solid var(--line); }
.bg-2 { background: var(--timber-3); }

.sec-head { margin-bottom: clamp(36px, 5vw, 64px); }
.sec-head .lead { margin-top: 22px; }

.grid { display: grid; gap: 24px; }
.g-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.g-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.g-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 900px) { .g-3, .g-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .g-2, .g-3, .g-4 { grid-template-columns: minmax(0, 1fr); } }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.split.wide-left { grid-template-columns: 1.15fr 1fr; }
.split.wide-right { grid-template-columns: 1fr 1.15fr; }
@media (max-width: 900px) { .split, .split.wide-left, .split.wide-right { grid-template-columns: 1fr; } }

.stack-sm > * + * { margin-top: 14px; }
.stack   > * + * { margin-top: 24px; }
.stack-lg > * + * { margin-top: 40px; }

/* --------------------------------------------------------------------------
   5. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  --btn-bg: var(--bone);
  --btn-fg: var(--timber);
  --btn-bd: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bd);
  font-family: var(--dsp);
  font-weight: 700;
  font-stretch: 112%;
  font-size: 12.5px;
  letter-spacing: .11em;
  text-transform: uppercase;
  padding: 15px 28px;
  border-radius: 2px;
  cursor: pointer;
  text-align: center;
  transition: background var(--t-mid) var(--ease), color var(--t-mid) var(--ease),
              border-color var(--t-mid) var(--ease), opacity var(--t-mid) var(--ease);
}
.btn:hover { --btn-bg: #fff; color: var(--timber); }
.btn svg { width: 15px; height: 15px; flex: none; }

.btn--red { --btn-bg: var(--red); --btn-fg: #fff; }
.btn--red:hover { --btn-bg: var(--red-lt); color: #fff; }

.btn--ghost { --btn-bg: transparent; --btn-fg: var(--bone); --btn-bd: var(--line-strong); }
.btn--ghost:hover { --btn-bg: rgba(232,228,218,.06); --btn-bd: var(--bone); color: var(--bone); }

.btn--sm { padding: 11px 20px; font-size: 11.5px; }
.btn--block { width: 100%; }
.btn[disabled], .btn.is-disabled { opacity: .38; pointer-events: none; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--bone);
  border-bottom: 1px solid rgba(232,228,218,.22);
  padding-bottom: 3px;
  transition: color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.link-arrow::after { content: "→"; transition: transform var(--t-mid) var(--ease); }
.link-arrow:hover { color: var(--red-lt); border-color: var(--red); }
.link-arrow:hover::after { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   6. TAGS / PILLS / DATA
   -------------------------------------------------------------------------- */
.tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--ash);
  white-space: nowrap;
}
.tag--red  { border-color: rgba(229,46,25,.45); color: var(--red-lt); }
.tag--sage { border-color: rgba(125,138,106,.45); color: var(--sage); }
.tag--solid{ background: var(--red); border-color: var(--red); color: #fff; }

.datum { border-top: 1px solid var(--line); padding-top: 18px; }
.datum .k {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--ash); display: block; margin-bottom: 10px;
}
.datum .v { font-family: var(--mono); font-size: clamp(26px, 3.2vw, 40px); line-height: 1; color: var(--bone); }
.datum .v em { font-style: normal; color: var(--red); }
.datum .v .u { font-size: .46em; color: var(--ash); letter-spacing: .04em; margin-left: 3px; }
.datum p { margin-top: 12px; font-size: 14px; color: var(--ash); line-height: 1.5; }

.spec-list { list-style: none; }
.spec-list li {
  display: flex; justify-content: space-between; gap: 18px;
  font-family: var(--mono); font-size: 12.5px;
  padding: 11px 0; border-bottom: 1px solid var(--line-2);
}
.spec-list li:last-child { border-bottom: none; }
.spec-list .k { color: var(--ash); letter-spacing: .04em; }
.spec-list .v { color: var(--bone); text-align: right; }

/* --------------------------------------------------------------------------
   7. REVEAL
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .09s; }
.reveal[data-d="2"] { transition-delay: .18s; }
.reveal[data-d="3"] { transition-delay: .27s; }
.reveal[data-d="4"] { transition-delay: .36s; }

/* --------------------------------------------------------------------------
   8. NAV
   -------------------------------------------------------------------------- */
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--red); color: #fff; padding: 12px 20px;
  font-family: var(--mono); font-size: 12px;
}
.skip:focus { left: 0; }

.nav {
  position: fixed; inset: 0 0 auto 0; height: var(--nav-h);
  z-index: 200;
  display: flex; align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background var(--t-mid) var(--ease), border-color var(--t-mid) var(--ease),
              backdrop-filter var(--t-mid) var(--ease);
}
.nav.solid, .nav.forced {
  background: var(--glass);
  backdrop-filter: blur(18px) saturate(1.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
  border-bottom-color: var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; width: 100%; }

/* Reduced horizontal lockup — the nav mark.
   The full logo never appears under ~90px tall, and never on photography. */
a.brand { display: inline-flex; align-items: center; flex: none; }
.lk { display: block; width: 138px; }
.lk-word {
  display: block;
  font-family: var(--dsp); font-weight: 800; font-stretch: 125%;
  font-size: 22px; line-height: 1; letter-spacing: .015em;
  color: var(--bone);
}
.lk-word b { color: var(--red); font-weight: 800; transition: color var(--t-fast) var(--ease); }
a.brand:hover .lk-word b { color: var(--red-lt); }
.lk-rule { display: flex; align-items: center; height: 9px; margin: 4px 0 3px; }
.lk-rule svg { height: 9px; flex: none; fill: var(--ash); }
.lk-rule .lk-fletch { width: 18px; }
.lk-rule .lk-head { width: 10px; }
.lk-rule i { flex: 1; height: 1.4px; background: var(--ash); }
.lk-sub {
  display: block;
  font-family: var(--mono); font-size: 7.5px; line-height: 1;
  letter-spacing: .335em; color: var(--ash); text-transform: uppercase;
}
.mobile-menu .lk { width: 168px; }
.mobile-menu .lk-word { font-size: 27px; }
.mobile-menu .lk-sub { font-size: 9px; letter-spacing: .335em; }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-family: var(--mono);
  font-size: 11.5px; letter-spacing: .13em; text-transform: uppercase;
  color: var(--bone-2); position: relative; padding-block: 6px;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--red); transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-mid) var(--ease);
}
.nav-links a:hover { color: var(--bone); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { color: var(--bone); }

.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-tel {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .08em; color: var(--ash);
  white-space: nowrap;
}
.nav-tel:hover { color: var(--bone); }

.burger {
  display: none; width: 42px; height: 42px; background: none; border: 1px solid var(--line);
  border-radius: 2px; cursor: pointer; position: relative;
}
.burger span {
  position: absolute; left: 11px; width: 18px; height: 1.5px; background: var(--bone);
  transition: transform var(--t-mid) var(--ease), opacity var(--t-fast) var(--ease);
}
.burger span:nth-child(1) { top: 15px; }
.burger span:nth-child(2) { top: 20px; }
.burger span:nth-child(3) { top: 25px; }
body.nav-open .burger span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
body.nav-open .burger span:nth-child(2) { opacity: 0; }
body.nav-open .burger span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 190;
  background: var(--timber);
  padding: calc(var(--nav-h) + 30px) var(--gut) 40px;
  display: flex; flex-direction: column; justify-content: space-between;
  opacity: 0; visibility: hidden; transform: translateY(-12px);
  transition: opacity var(--t-mid) var(--ease), transform var(--t-mid) var(--ease), visibility var(--t-mid);
  overflow-y: auto;
}
body.nav-open .mobile-menu { opacity: 1; visibility: visible; transform: none; }
.mobile-menu a.mm-link {
  display: block; font-family: var(--dsp); font-weight: 800; font-stretch: 115%;
  text-transform: uppercase; font-size: clamp(28px, 8vw, 42px); line-height: 1.16;
  padding: 10px 0; border-bottom: 1px solid var(--line-2); color: var(--bone);
}
.mobile-menu a.mm-link:hover { color: var(--red); }
.mm-foot { margin-top: 36px; }
.mm-foot .mono { font-size: 13px; color: var(--ash); display: block; margin-bottom: 6px; }

@media (max-width: 1040px) {
  .nav-links, .nav-tel { display: none; }
  .burger { display: block; }
}

/* --------------------------------------------------------------------------
   9. HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: min(100svh, 900px);
  display: flex; align-items: flex-end;
  padding-block: calc(var(--nav-h) + 40px) clamp(56px, 8vw, 110px);
  overflow: hidden;
  isolation: isolate;
}
.hero-media { position: absolute; inset: 0; z-index: -2; overflow: hidden; background: #060705; }
.hero-media video, .hero-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 45%;
}
.hero-media video { opacity: 0; transition: opacity 1.4s var(--ease); }
.hero-media video.ready { opacity: 1; }
.hero-scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(12,14,11,.72) 0%, rgba(12,14,11,.18) 34%, rgba(12,14,11,.62) 74%, rgba(12,14,11,.97) 100%),
    radial-gradient(120% 80% at 20% 90%, rgba(12,14,11,.6) 0%, rgba(12,14,11,0) 60%);
}
.hero-content { position: relative; width: 100%; }
.hero h1 { max-width: 15ch; }
.hero .lead { margin-top: 26px; max-width: 46ch; }
.hero .btn-row { margin-top: 36px; }

.hero-strip {
  margin-top: clamp(44px, 6vw, 72px);
  border-top: 1px solid var(--line);
  padding-top: 20px;
  display: flex; flex-wrap: wrap; gap: 14px 40px;
}
.hero-strip div {
  font-family: var(--mono); font-size: 11px; letter-spacing: .13em;
  text-transform: uppercase; color: var(--ash);
}
.hero-strip div em { font-style: normal; color: var(--bone); }

.scroll-cue {
  position: absolute; right: var(--gut); bottom: clamp(56px, 8vw, 110px);
  font-family: var(--mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ash); writing-mode: vertical-rl; display: flex; align-items: center; gap: 12px;
}
.scroll-cue::after {
  content: ""; width: 1px; height: 46px;
  background: linear-gradient(180deg, var(--ash), transparent);
  animation: cue 2.6s var(--ease) infinite;
}
@keyframes cue { 0%, 100% { opacity: .25; } 50% { opacity: 1; } }
@media (max-width: 900px) { .scroll-cue { display: none; } }

.mute-toggle {
  position: absolute; right: var(--gut); top: calc(var(--nav-h) + 22px);
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line-strong); background: rgba(12,14,11,.5);
  color: var(--bone); cursor: pointer; display: grid; place-items: center;
  backdrop-filter: blur(8px); transition: border-color var(--t-fast) var(--ease);
}
.mute-toggle:hover { border-color: var(--bone); }
.mute-toggle svg { width: 16px; height: 16px; }

/* Page hero (interior pages) */
.phero {
  position: relative;
  padding-block: calc(var(--nav-h) + clamp(60px, 9vw, 110px)) clamp(50px, 7vw, 86px);
  border-bottom: 1px solid var(--line);
  overflow: hidden; isolation: isolate;
}
.phero.has-media::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
  background-image: var(--phero-img);
}
.phero.has-media::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(12,14,11,.86) 0%, rgba(12,14,11,.7) 55%, rgba(12,14,11,.96) 100%);
}
.phero .lead { margin-top: 22px; }

.crumbs { font-family: var(--mono); font-size: 11px; letter-spacing: .13em; text-transform: uppercase; color: var(--ash); margin-bottom: 22px; }
.crumbs a:hover { color: var(--bone); }
.crumbs span { opacity: .5; margin-inline: 8px; }

/* --------------------------------------------------------------------------
   10. THE TURN — geometry
   -------------------------------------------------------------------------- */
.turn-panel {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--timber-2) 0%, var(--timber-3) 100%);
  border-radius: 3px;
  padding: clamp(24px, 3.6vw, 44px);
}
.turn-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: 34px; }
.turn-head h3 { font-size: clamp(18px, 2vw, 23px); }
.turn-head p { font-size: 14px; color: var(--ash); margin-top: 8px; max-width: 42ch; }

.seg { display: inline-flex; border: 1px solid var(--line); border-radius: 3px; overflow: hidden; }
.seg button {
  background: transparent; border: 0; border-right: 1px solid var(--line);
  color: var(--ash); font-family: var(--mono); font-size: 11px; letter-spacing: .09em;
  padding: 12px 17px; cursor: pointer;
  transition: background var(--t-mid) var(--ease), color var(--t-mid) var(--ease);
  white-space: nowrap;
}
.seg button:last-child { border-right: 0; }
.seg button:hover { color: var(--bone); background: rgba(232,228,218,.04); }
.seg button.on { background: var(--red); color: #fff; }

.turn-stage { display: grid; grid-template-columns: 1fr 300px; gap: clamp(28px, 4vw, 52px); align-items: center; }
@media (max-width: 860px) { .turn-stage { grid-template-columns: 1fr; } }

#turn-svg { width: 100%; max-width: 440px; margin-inline: auto; overflow: visible; }
.gx-wedge { fill: rgba(229,46,25,.14); }
.gx-shell { fill: rgba(232,228,218,.025); stroke: rgba(232,228,218,.34); stroke-width: 1.2; }
.gx-win   { stroke: var(--red); stroke-width: 4.5; stroke-linecap: round; }
.gx-lane  { stroke: rgba(229,46,25,.34); stroke-width: 1; stroke-dasharray: 3 5; }
.gx-txt   { font-family: var(--mono); font-size: 9.5px; letter-spacing: .12em; fill: var(--ash); text-transform: uppercase; }
.gx-hero  { font-family: var(--mono); font-size: 11px; letter-spacing: .16em; fill: var(--red); }

.readout { border-top: 1px solid var(--line); }
.readout .row {
  display: flex; justify-content: space-between; gap: 14px;
  font-family: var(--mono); font-size: 12.5px;
  padding: 15px 0; border-bottom: 1px solid var(--line-2);
}
.readout .row:last-child { border-bottom: 0; }
.readout .row span:first-child { color: var(--ash); }
.readout .row.big span:last-child { color: var(--red); font-size: 17px; }

.turn-payoff { text-align: center; margin-top: clamp(48px, 7vw, 84px); }
.turn-payoff h3 { font-size: clamp(30px, 5.4vw, 68px); }
.turn-payoff p { margin-top: 18px; color: var(--ash); font-family: var(--mono); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; }

/* --------------------------------------------------------------------------
   11. PANORAMA
   -------------------------------------------------------------------------- */
.pano {
  position: relative; width: 100%;
  height: clamp(340px, 56vh, 620px);
  overflow: hidden; border: 1px solid var(--line); border-radius: 3px;
  cursor: grab; background: #000; touch-action: pan-y;
  user-select: none; -webkit-user-select: none;
}
.pano.dragging { cursor: grabbing; }
.pano-track { position: absolute; inset: 0; will-change: transform; }
.pano-track img { height: 100%; width: auto; max-width: none; object-fit: cover; }
.pano-hint {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%);
  background: rgba(12,14,11,.82); border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  padding: 9px 16px; border-radius: 999px;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--bone); display: flex; align-items: center; gap: 9px; pointer-events: none;
  transition: opacity var(--t-mid) var(--ease);
}
.pano-hint.hide { opacity: 0; }
.pano-vig { position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(120% 100% at 50% 50%, transparent 55%, rgba(12,14,11,.55) 100%); }

/* --------------------------------------------------------------------------
   12. CARDS
   -------------------------------------------------------------------------- */
.card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(30,34,27,.28) 0%, rgba(30,34,27,.75) 100%);
  border-radius: 3px;
  padding: clamp(22px, 2.6vw, 30px);
  transition: border-color var(--t-mid) var(--ease), background var(--t-mid) var(--ease), transform var(--t-mid) var(--ease);
  display: flex; flex-direction: column;
}
a.card:hover, .card.hoverable:hover { border-color: rgba(232,228,218,.3); transform: translateY(-3px); }

.pcard { position: relative; overflow: hidden; }
.pcard .pcard-media {
  aspect-ratio: 4 / 3; position: relative;
  margin: -6px 0 22px; overflow: hidden;
  background: #000; border-radius: 2px;
}
.pcard .pcard-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; transition: transform 1.1s var(--ease); }
.pcard:hover .pcard-media img { transform: scale(1.045); }
.pcard h3 { font-size: clamp(22px, 2.4vw, 28px); }
.pcard .who { color: var(--red); font-size: 15px; margin-top: 7px; margin-bottom: 22px; }
.pcard .spec-list { margin-bottom: 22px; }
.pcard .price { font-family: var(--mono); font-size: 15px; color: var(--bone); margin-bottom: 18px; }
.pcard .price small { color: var(--ash); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; display: block; margin-top: 4px; }
.pcard .btn { margin-top: auto; }

.figure { border: 1px solid var(--line); border-radius: 3px; overflow: hidden; background: var(--timber-2); }
.figure img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.figure figcaption {
  padding: 15px 18px; font-family: var(--mono); font-size: 11px;
  letter-spacing: .1em; text-transform: uppercase; color: var(--ash);
  border-top: 1px solid var(--line);
}
.figure.tall img { aspect-ratio: 4/5; }
.figure.wide img { aspect-ratio: 16/9; }

.step { border-top: 1px solid var(--line); padding-top: 22px; }
.step .n { font-family: var(--mono); font-size: 11px; letter-spacing: .18em; color: var(--red); display: block; margin-bottom: 14px; }
.step h4 { font-size: 17px; margin-bottom: 10px; }
.step p { font-size: 14.5px; color: var(--ash); line-height: 1.55; }

/* Quote / callout */
.callout {
  border-left: 2px solid var(--red);
  background: linear-gradient(90deg, rgba(229,46,25,.05), rgba(30,34,27,.35));
  padding: clamp(22px, 3vw, 34px);
  border-radius: 0 3px 3px 0;
}
.callout p { font-size: clamp(16px, 1.8vw, 19px); color: var(--bone-2); line-height: 1.58; }
.callout.sage { border-left-color: var(--sage); background: linear-gradient(90deg, rgba(125,138,106,.07), rgba(30,34,27,.35)); }

.pullquote {
  font-family: var(--dsp); font-weight: 800; font-stretch: 112%; text-transform: uppercase;
  font-size: clamp(24px, 3.6vw, 46px); line-height: 1.05; letter-spacing: -.01em;
  text-wrap: balance;
}

/* --------------------------------------------------------------------------
   13. DEALER / MAP
   -------------------------------------------------------------------------- */
.dealer-card { border: 1px solid var(--line); background: var(--timber-2); border-radius: 3px; padding: 24px; }
.dealer-card .dist { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--sage); margin-bottom: 12px; }
.dealer-card h4 { font-size: 19px; margin-bottom: 9px; }
.dealer-card address { font-style: normal; font-size: 14.5px; color: var(--ash); line-height: 1.55; }
.dealer-card .lot { background: rgba(12,14,11,.55); border-radius: 3px; padding: 15px 16px; margin: 18px 0; }
.dealer-card .lot .t { font-family: var(--mono); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--ash); margin-bottom: 10px; }
.dealer-card .lot li { list-style: none; display: flex; align-items: center; gap: 9px; font-size: 14px; padding: 3px 0; }
.dealer-card .lot li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--sage); flex: none; }

/* Mapsteader embed. The script injects a style-isolated iframe where the tag
   sits — host CSS cannot reach inside it, but the iframe element itself is ours,
   so these !important rules re-skin its frame to match the site. */
.map-embed { position: relative; min-height: 200px; }
.map-embed iframe {
  border: 1px solid var(--line) !important;
  border-radius: 3px !important;
  background: var(--timber-2);
  display: block;
  width: 100%;
}
.map-fallback {
  display: grid; place-items: center; text-align: center;
  min-height: 260px; padding: 32px;
  border: 1px dashed var(--line); border-radius: 3px;
  color: var(--ash); font-size: 15px;
}

.notice {
  border: 1px dashed rgba(229,46,25,.5);
  background: rgba(229,46,25,.06);
  border-radius: 3px; padding: 16px 20px; margin-bottom: 26px;
  font-size: 14px; color: var(--bone-2);
}
.notice strong { color: var(--red-lt); }

/* --------------------------------------------------------------------------
   14. FORMS
   -------------------------------------------------------------------------- */
.field { display: block; margin-bottom: 20px; }
.field > span {
  display: block; font-family: var(--mono); font-size: 10.5px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--ash); margin-bottom: 9px;
}
input[type="text"], input[type="email"], input[type="tel"], input[type="search"], select, textarea {
  width: 100%; background: var(--timber-2); border: 1px solid var(--line);
  color: var(--bone); font-family: var(--ui); font-size: 15.5px;
  padding: 13px 15px; border-radius: 2px;
  transition: border-color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
input::placeholder, textarea::placeholder { color: var(--ash-2); }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--red); background: var(--timber-3); }
textarea { min-height: 140px; resize: vertical; line-height: 1.55; }
select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%238E9187' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center; background-size: 10px;
  padding-right: 40px;
}
.check {
  display: flex; gap: 13px; align-items: flex-start; padding: 15px 0;
  border-bottom: 1px solid var(--line-2); cursor: pointer;
}
.check:last-of-type { border-bottom: 0; }
.check input { appearance: none; flex: none; width: 20px; height: 20px; margin-top: 2px;
  border: 1px solid var(--line-strong); border-radius: 2px; background: var(--timber-2); cursor: pointer;
  transition: background var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease); }
.check input:checked { background: var(--red); border-color: var(--red); }
.check input:checked::after { content: "✓"; display: grid; place-items: center; color: #fff; font-size: 13px; height: 100%; }
.check .ct { font-size: 15px; color: var(--bone); line-height: 1.45; }
.check .cs { font-size: 13px; color: var(--ash); margin-top: 3px; display: block; }

.zip-row { display: flex; gap: 12px; flex-wrap: wrap; }
.zip-row input { flex: 1 1 200px; }
.form-note { font-size: 13px; color: var(--ash); margin-top: 14px; }
.form-status { margin-top: 16px; font-family: var(--mono); font-size: 12.5px; letter-spacing: .05em; }
.form-status.ok  { color: var(--sage); }
.form-status.err { color: var(--red-lt); }

/* --------------------------------------------------------------------------
   15. BUY FORK
   -------------------------------------------------------------------------- */
.fork { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 860px) { .fork { grid-template-columns: 1fr; } }
.fork-opt {
  border: 1px solid var(--line); border-radius: 3px; padding: clamp(24px, 3vw, 34px);
  background: linear-gradient(180deg, rgba(30,34,27,.3), rgba(30,34,27,.72));
  display: flex; flex-direction: column;
  transition: border-color var(--t-mid) var(--ease);
}
.fork-opt:hover { border-color: rgba(232,228,218,.28); }
.fork-opt.rec { border-color: rgba(125,138,106,.4); }
.fork-opt .rec-flag { align-self: flex-start; margin-bottom: 18px; }
.fork-opt h3 { font-size: clamp(21px, 2.4vw, 27px); margin-bottom: 12px; }
.fork-opt > p { color: var(--ash); font-size: 15px; line-height: 1.55; }
.fork-opt ul { list-style: none; margin: 22px 0; }
.fork-opt ul li { display: flex; gap: 11px; font-size: 14.5px; color: var(--bone-2); padding: 8px 0; }
.fork-opt ul li::before { content: "—"; color: var(--red); flex: none; }
.fork-opt .btn { margin-top: auto; }

.price-block {
  border: 1px solid var(--line); border-radius: 3px; padding: clamp(24px, 3vw, 36px);
  background: var(--timber-2);
}
.price-block .big { font-family: var(--mono); font-size: clamp(38px, 6vw, 68px); line-height: 1; color: var(--bone); }
.price-block .big em { font-style: normal; color: var(--red); }

.faux-checkout { border: 1px solid var(--line); border-radius: 3px; padding: 22px; background: var(--timber-2); }
.faux-checkout .line { display: flex; justify-content: space-between; font-family: var(--mono); font-size: 13.5px; padding: 10px 0; border-bottom: 1px solid var(--line-2); }
.faux-checkout .line:last-of-type { border-bottom: 0; }
.faux-checkout .line.total { border-top: 1px solid var(--line); margin-top: 6px; padding-top: 16px; font-size: 17px; color: var(--bone); }

.step-flow { counter-reset: sf; }
.step-flow > li {
  list-style: none; counter-increment: sf; position: relative;
  padding: 0 0 30px 46px; border-left: 1px solid var(--line); margin-left: 12px;
}
.step-flow > li:last-child { border-left-color: transparent; padding-bottom: 0; }
.step-flow > li::before {
  content: counter(sf, decimal-leading-zero);
  position: absolute; left: -13px; top: -3px;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--timber); border: 1px solid var(--red); color: var(--red);
  font-family: var(--mono); font-size: 10px; display: grid; place-items: center;
}
.step-flow h4 { font-size: 17px; margin-bottom: 8px; }
.step-flow p { color: var(--ash); font-size: 14.5px; line-height: 1.55; }

/* --------------------------------------------------------------------------
   16. REVIEWS
   -------------------------------------------------------------------------- */
.rating { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.rating .score { font-family: var(--mono); font-size: clamp(40px, 6vw, 66px); line-height: 1; color: var(--bone); }
.stars { display: flex; gap: 3px; }
.stars svg { width: 17px; height: 17px; fill: var(--red); }
.rating .meta { font-family: var(--mono); font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--ash); }

#reviews-widget:empty::before {
  content: "Review widget mounts here — see README.md";
  display: grid; place-items: center; min-height: 180px;
  border: 1px dashed var(--line); border-radius: 3px;
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ash-2);
}

/* --------------------------------------------------------------------------
   17. FAQ / ACCORDION
   -------------------------------------------------------------------------- */
.acc { border-top: 1px solid var(--line); }
.acc details { border-bottom: 1px solid var(--line); }
.acc summary {
  list-style: none; cursor: pointer; padding: 24px 44px 24px 0; position: relative;
  font-family: var(--dsp); font-weight: 700; font-stretch: 110%; text-transform: uppercase;
  font-size: clamp(15px, 1.7vw, 18px); line-height: 1.28; color: var(--bone);
  transition: color var(--t-fast) var(--ease);
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary:hover { color: var(--red-lt); }
.acc summary::after {
  content: ""; position: absolute; right: 6px; top: 50%; width: 13px; height: 13px;
  margin-top: -6px;
  background: linear-gradient(var(--ash), var(--ash)) center/13px 1px no-repeat,
              linear-gradient(var(--ash), var(--ash)) center/1px 13px no-repeat;
  transition: transform var(--t-mid) var(--ease);
}
.acc details[open] summary::after { transform: rotate(135deg); }
.acc .acc-body { padding: 0 44px 26px 0; color: var(--ash); font-size: 15.5px; line-height: 1.62; max-width: 68ch; }
.acc .acc-body p + p { margin-top: .9em; }
.acc .acc-body a { color: var(--bone); text-decoration: underline; text-decoration-color: rgba(229,46,25,.55); text-underline-offset: 3px; }

/* --------------------------------------------------------------------------
   18. GALLERY
   -------------------------------------------------------------------------- */
.gal { display: grid; grid-template-columns: repeat(12, 1fr); gap: 14px; }
.gal figure { overflow: hidden; border-radius: 3px; border: 1px solid var(--line); }
.gal img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.gal figure:hover img { transform: scale(1.04); }
.gal .c4 { grid-column: span 4; aspect-ratio: 3/4; }
.gal .c6 { grid-column: span 6; aspect-ratio: 3/2; }
.gal .c8 { grid-column: span 8; aspect-ratio: 16/9; }
.gal .c12 { grid-column: span 12; aspect-ratio: 21/9; }
@media (max-width: 760px) {
  .gal .c4, .gal .c6, .gal .c8 { grid-column: span 12; aspect-ratio: 3/2; }
  .gal .c12 { aspect-ratio: 16/9; }
}

/* Full-bleed band */
.band { position: relative; min-height: clamp(340px, 60vh, 620px); display: grid; align-items: end; isolation: isolate; }
.band > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.band::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(12,14,11,.55) 0%, rgba(12,14,11,.28) 34%, rgba(12,14,11,.9) 78%, rgba(12,14,11,.98) 100%),
    linear-gradient(90deg, rgba(12,14,11,.9) 0%, rgba(12,14,11,.5) 44%, rgba(12,14,11,0) 74%);
}
/* Red at 11px on photography is never a safe contrast bet — the rule keeps the
   accent, the text goes bone. */
.band .eyebrow { color: var(--bone); }
.band .eyebrow::before { background: var(--red); opacity: 1; }
.band .wrap { padding-block: clamp(40px, 6vw, 72px); }

/* --------------------------------------------------------------------------
   19. FOOTER
   -------------------------------------------------------------------------- */
.foot { border-top: 1px solid var(--line); padding-block: clamp(56px, 7vw, 88px) 34px; background: var(--timber-3); }
.foot-top { display: grid; grid-template-columns: 1.25fr 2fr; gap: clamp(36px, 5vw, 70px); }
@media (max-width: 900px) { .foot-top { grid-template-columns: 1fr; } }
.foot-brand img { width: clamp(130px, 16vw, 168px); opacity: .9; margin-bottom: 22px; }
.foot-brand .tagline { font-family: var(--dsp); font-weight: 800; font-stretch: 112%; text-transform: uppercase; font-size: 15px; letter-spacing: .02em; color: var(--bone); }
.foot-brand address { font-style: normal; font-size: 14.5px; color: var(--ash); line-height: 1.6; margin-top: 20px; }
.foot-brand address a:hover { color: var(--bone); }

.foot-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
@media (max-width: 700px) { .foot-cols { grid-template-columns: repeat(2, 1fr); } }
.foot-cols h5 { font-family: var(--mono); font-weight: 500; font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--ash); margin-bottom: 16px; }
.foot-cols ul { list-style: none; }
.foot-cols li { margin-bottom: 11px; }
.foot-cols a { font-size: 14.5px; color: var(--bone-2); }
.foot-cols a:hover { color: var(--red-lt); }

.foot-bottom {
  margin-top: clamp(44px, 6vw, 72px); padding-top: 26px; border-top: 1px solid var(--line-2);
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-family: var(--mono); font-size: 11px; letter-spacing: .07em; color: var(--ash-2);
}
.foot-bottom a:hover { color: var(--bone); }
.foot-bottom nav { display: flex; gap: 22px; flex-wrap: wrap; }

/* --------------------------------------------------------------------------
   20. MISC
   -------------------------------------------------------------------------- */
.hr { border: 0; border-top: 1px solid var(--line); margin-block: clamp(48px, 6vw, 80px); }
.center { text-align: center; }
.center .lead, .center .prose { margin-inline: auto; }
.mt-0 { margin-top: 0 !important; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.anchor-offset { scroll-margin-top: calc(var(--nav-h) + 20px); }

/* --------------------------------------------------------------------------
   21. REDUCED MOTION — first-class path
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-media video { display: none; }
  .scroll-cue::after { animation: none; opacity: .6; }
}

/* --------------------------------------------------------------------------
   22. PRINT
   -------------------------------------------------------------------------- */
@media print {
  .nav, .mobile-menu, .scroll-cue, .hero-media, .mute-toggle, #map { display: none !important; }
  body { background: #fff; color: #000; }
  .reveal { opacity: 1; transform: none; }
}
