/* ==========================================================================
   BEVST™ / 001 — Design tokens
   ========================================================================== */
:root{
  --stone-black:   #060606;
  --charcoal:       #0f0e0d;
  --charcoal-2:     #171614;
  --gunmetal:       #232220;
  --aluminium:      #9a9b9d;
  --aluminium-lt:   #c7c8ca;
  --warm-light:     #c9a978;
  --warm-light-dim: #7a6a4f;
  --red-accent:     #c81e1e;
  --ink:            #eae7e2;
  --ink-dim:        #8f8c86;
  --ink-faint:      #55534f;
  --border:         rgba(234,231,226,0.08);

  --font-display: 'Archivo Expanded', 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:    'IBM Plex Mono', 'SFMono-Regular', Consolas, monospace;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  color-scheme: dark;
}

/* ==========================================================================
   Base
   ========================================================================== */
html{ background: var(--stone-black); }
body{
  background: var(--stone-black);
  color: var(--ink);
  font-family: var(--font-body);
  overflow-x: hidden;
}

.mono{ font-family: var(--font-mono); letter-spacing: 0.08em; text-transform: uppercase; }
.tm{ font-size: 0.5em; vertical-align: super; }
::selection{ background: var(--warm-light); color: var(--stone-black); }

.grain{
  position: fixed; inset: 0; z-index: 500; pointer-events: none;
  opacity: 0.045; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
}

img{ -webkit-user-drag: none; user-select: none; }

/* Chapter marker — tiny recurring "001 / SECTION" tag, reinforces the
   collectible-chapter concept across the whole page */
.chapter-tag{
  position: absolute; z-index: 4;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em;
  color: var(--ink-faint); text-transform: uppercase;
  top: clamp(18px, 3vh, 32px); left: clamp(18px, 4vw, 40px);
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header{
  position: fixed; top: 0; left: 0; right: 0; z-index: 400;
  display: flex; align-items: center; justify-content: space-between;
  padding: clamp(16px, 3vw, 26px) clamp(18px, 4vw, 40px);
  transition: transform .5s var(--ease-out), background .4s ease;
}
.site-header[data-hidden="true"]{ transform: translateY(-120%); }
.site-header[data-scrolled="true"]{
  background: linear-gradient(to bottom, rgba(6,6,6,0.85), rgba(6,6,6,0));
  backdrop-filter: blur(6px);
}
.site-header__mark{ display: block; height: 13px; width: auto; }
.site-header__nav{ display: flex; align-items: center; gap: clamp(14px, 2.4vw, 24px); }
.site-header__link{
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-dim);
  transition: color .3s ease;
}
.site-header__link:hover{ color: var(--ink); }
.site-header__cta{
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink);
  border: 1px solid var(--border); padding: 10px 18px; border-radius: 0;
  transition: border-color .3s ease, background .3s ease;
}
.site-header__cta:hover{ border-color: var(--warm-light-dim); background: rgba(201,169,120,0.06); }

/* ==========================================================================
   Layout primitives
   ========================================================================== */
.section{ position: relative; width: 100%; }

.statement{
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(24px, 5.4vw, 44px);
  line-height: 1.1; letter-spacing: -0.01em;
  color: var(--ink);
}
.statement--dim{ color: var(--ink-dim); font-weight: 600; }
.statement--redline{ color: var(--red-accent); }

.btn{
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 17px 30px; border-radius: 0;
  border: 1px solid var(--ink);
  transition: transform .3s var(--ease-out), background .3s ease, border-color .3s ease, color .3s ease;
}
.btn:hover{ transform: translateY(-2px); }
.btn--primary{ background: var(--ink); color: var(--stone-black); }
.btn--primary:hover{ background: var(--warm-light); border-color: var(--warm-light); }
.btn--ghost{ background: transparent; color: var(--ink-dim); border-color: var(--border); }
.btn--ghost:hover{ color: var(--ink); border-color: var(--ink-dim); }
.btn--redline{ border-color: var(--red-accent); color: var(--red-accent); margin-top: 28px; }
.btn--redline:hover{ background: var(--red-accent); color: var(--ink); }
.btn--full{ width: 100%; }

.reveal-line{
  opacity: 0; transform: translateY(18px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal-line.is-visible{ opacity: 1; transform: translateY(0); }

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

/* ==========================================================================
   01 — HERO — asymmetric, oversized, cinematic
   ========================================================================== */
.hero{
  height: 100svh; min-height: 560px;
  position: relative;
  background: var(--stone-black);
  overflow: hidden;
}
.hero__image{
  position: absolute;
  top: 50%; left: 62%;
  width: min(72vw, 620px);
  transform: translate(-50%, -47%) scale(1.03);
  filter: brightness(0.85) contrast(1.08) saturate(0.95);
  opacity: 0;
  will-change: transform, opacity, filter;
}
/* A controlled, directional practical light raking across the garment —
   not a flat brightness lift. Screen blend so it only ever adds light. */
.hero__spotlight{
  position: absolute;
  top: 8%; left: 30%;
  width: 60%; height: 70%;
  background: radial-gradient(ellipse 55% 60% at 50% 20%, rgba(217,185,138,0.55) 0%, rgba(217,185,138,0.14) 40%, rgba(217,185,138,0) 72%);
  mix-blend-mode: screen;
  opacity: 0;
  pointer-events: none;
}
.hero__vignette{
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 62% 58% at 62% 46%, rgba(6,6,6,0) 42%, rgba(6,6,6,0.4) 74%, var(--stone-black) 100%),
    linear-gradient(180deg, rgba(6,6,6,0.4) 0%, rgba(6,6,6,0) 24%, rgba(6,6,6,0) 68%, rgba(6,6,6,0.85) 100%);
  pointer-events: none;
}
.hero__content{
  position: relative; z-index: 2;
  height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 clamp(18px, 5vw, 64px) clamp(64px, 11vh, 120px);
}
.hero__eyebrow{
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.28em;
  color: var(--ink-dim); text-transform: uppercase; margin-bottom: 18px;
}
.hero__headline{
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(46px, 12vw, 148px);
  letter-spacing: -0.03em; line-height: 0.92;
  color: var(--ink);
  max-width: 15ch;
}
.hero__meta{
  position: absolute; bottom: clamp(20px, 4vh, 36px); left: clamp(18px, 5vw, 64px);
  z-index: 2;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em;
  color: var(--ink-faint); text-transform: uppercase;
}
.scroll-cue{
  position: absolute; bottom: clamp(20px, 4vh, 36px); right: clamp(18px, 5vw, 64px);
  z-index: 2;
  width: 1px; height: 46px; background: var(--border); overflow: hidden;
}
.scroll-cue span{
  display: block; width: 100%; height: 40%; background: var(--warm-light);
  animation: scrollCue 2.2s var(--ease-in-out) infinite;
}
@keyframes scrollCue{ 0%{ transform: translateY(-100%); } 100%{ transform: translateY(250%); } }
@media (prefers-reduced-motion: reduce){ .scroll-cue span{ animation: none; top: 0; } }

@media (max-width: 700px){
  .hero__image{ left: 50%; width: min(90vw, 520px); transform: translate(-50%, -44%) scale(1.15); }
  .hero__content{ padding-bottom: 96px; align-items: center; text-align: center; }
  .hero__headline{ max-width: none; }
  .hero__meta{ left: 50%; transform: translateX(-50%); }
  .scroll-cue{ right: 50%; transform: translateX(50%); }
}

/* ==========================================================================
   PRODUCT SEQUENCE — one continuous pinned scene:
   material → front → turn → V reveal. Real photography, cross-faded and
   masked; nothing here alters garment pixels, only what light conceals.
   ========================================================================== */
.sequence{ height: 560vh; background: var(--stone-black); }
.sequence__pin{
  position: sticky; top: 0; height: 100svh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.sequence__frame{
  position: relative;
  width: min(58vw, 480px);
  height: min(80svh, 720px);
}
.seq-media{ position: absolute; inset: 0; }
.seq-img{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain; object-position: center;
  will-change: transform, opacity, filter;
  /* Baseline lift so the garment stays clearly visible on its own — the
     hero has a dedicated spotlight, this doesn't, so without this the
     material/front phases (nothing here touches filter until later) sit
     at raw photo brightness and read as too dark. */
  filter: brightness(1.1);
}
.seq-img--front{ opacity: 1; transform-origin: 50% 42%; }
.seq-img--back{ opacity: 0; transform-origin: 50% 50%; }

/* The V light-response — clipped to the EXACT approved V vector
   (BEVST_001_BACK_V_MASTER: polygon 0,0 58,0 157.5,278 257,0 315,0
   157.5,405, i.e. 0% 0%, 18.41% 0%, 50% 68.64%, 81.59% 0%, 100% 0%,
   50% 100%). left/top/width/height are set at runtime (js) because
   object-fit:contain's letterboxing inside .sequence__frame is not a
   fixed percentage — it depends on the viewport's own aspect ratio, so
   it has to be computed from the actual rendered image rect, not
   hardcoded. Not a black veil — this only ever adds a graphite light
   response on top of the existing dark V, via soft-light blending. */
.v-light{
  position: absolute;
  clip-path: polygon(0% 0%, 18.41% 0%, 50% 68.64%, 81.59% 0%, 100% 0%, 50% 100%);
  background: linear-gradient(115deg, transparent 15%, rgba(150,138,115,0.65) 50%, transparent 85%);
  background-size: 260% 260%;
  background-position: 120% 0%;
  mix-blend-mode: soft-light;
  opacity: 0;
  pointer-events: none;
}
.seq-flash{
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 35%, rgba(230,210,175,0.85) 0%, rgba(230,210,175,0) 70%);
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: screen;
}
.seq-sweep{
  position: absolute; top: -10%; bottom: -10%;
  width: 26%; left: -30%;
  background: linear-gradient(100deg, rgba(217,185,138,0) 0%, rgba(217,185,138,0.14) 50%, rgba(217,185,138,0) 100%);
  pointer-events: none;
}

/* Technical specs stay small and secondary — supporting detail,
   never the sales proposition. */
.sequence__annotations{
  position: absolute; bottom: clamp(28px, 5vh, 48px); left: clamp(18px, 5vw, 64px);
  z-index: 3;
  opacity: 0.8;
}
.seq-anno{
  display: flex; align-items: baseline; gap: 10px;
  padding: 6px 0;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em;
  opacity: 0; transform: translateX(-8px);
}
.seq-anno__num{ color: var(--ink-faint); font-size: 9px; }
.seq-anno__label{ color: var(--ink-dim); }

.sequence__statement{
  position: absolute; left: clamp(18px, 5vw, 64px); right: clamp(18px, 5vw, 64px);
  top: clamp(90px, 14vh, 140px);
  z-index: 3;
}
.sequence__statement .statement{ opacity: 0; }
.sequence__statement--right{ text-align: right; }
.sequence__statement-sub{
  font-family: var(--font-body); font-weight: 400;
  font-size: 14px; line-height: 1.5; letter-spacing: normal;
  color: var(--ink-dim); max-width: 34ch; margin-top: 14px;
}
.sequence__statement[data-seq-statement="v"],
.sequence__statement[data-seq-statement="close"]{
  top: auto; bottom: clamp(48px, 9vh, 100px);
}

@media (max-width: 900px){
  .sequence__frame{ width: min(78vw, 420px); height: min(66svh, 560px); }
  .sequence__annotations{ top: clamp(76px, 12vh, 110px); }
}

/* Reduced motion: the pinned cinematic sequence becomes a plain accessible
   stack — front image, its copy, back image, its copy — nothing pinned,
   nothing masked, nothing scroll-scrubbed. */
@media (prefers-reduced-motion: reduce){
  .sequence{ height: auto; }
  .sequence__pin{
    position: relative; height: auto; flex-direction: column; gap: 48px;
    padding: 90px clamp(18px, 5vw, 64px);
  }
  .chapter-tag[data-seq-tag]{ position: static; margin-bottom: 8px; }
  .sequence__frame{ position: static; width: min(80vw, 420px); height: auto; margin: 0 auto; }
  .seq-media{ position: static; }
  .seq-img{ position: static; opacity: 1 !important; transform: none !important; filter: brightness(1.1) !important; margin-bottom: 24px; }
  .seq-sweep, .v-light, .seq-flash{ display: none; }
  .sequence__annotations{ position: static; margin-bottom: 24px; }
  .seq-anno{ opacity: 1 !important; transform: none !important; }
  .sequence__statement{ position: static; opacity: 1 !important; }
  .sequence__statement .statement{ opacity: 1 !important; }
}

/* ==========================================================================
   HUMAN / MACHINE — asymmetric editorial spread, not a feature grid
   ========================================================================== */
.human-machine{
  padding: clamp(90px, 14vh, 160px) 0 clamp(60px, 10vh, 120px);
  background: var(--stone-black);
  position: relative;
}
.hm-intro{
  padding: 0 clamp(18px, 5vw, 64px);
  margin-bottom: clamp(40px, 7vh, 80px);
}
.hm-intro .statement{ max-width: 18ch; }

.hm-spread{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(8px, 1.2vw, 16px);
  padding: 0 clamp(18px, 5vw, 64px);
}
.hm-feature{
  position: relative; overflow: hidden;
  grid-column: span 12;
}
.hm-feature img{
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: brightness(0.92);
  transition: transform 1.4s var(--ease-out), filter .6s ease;
}
.hm-feature:hover img{ transform: scale(1.035); filter: brightness(1); }
.hm-feature--a, .hm-feature--b{ aspect-ratio: 4/5; }
.hm-feature--square{ aspect-ratio: 1/1; }
.hm-feature__cap{
  position: absolute; left: 18px; bottom: 18px; z-index: 2;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em;
  color: var(--ink-dim);
}
.hm-feature::after{
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,6,6,0.8) 0%, rgba(6,6,6,0) 40%);
}

.hm-mood{
  position: relative; overflow: hidden; grid-column: span 6;
  aspect-ratio: 3/4;
}
.hm-mood__art{ position: absolute; inset: 0; background-size: cover; background-position: center; }
.hm-mood__cap{
  position: absolute; left: 14px; bottom: 14px; z-index: 2;
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.12em; color: var(--ink-dim);
}
.hm-mood::after{ content:""; position:absolute; inset:0; background: linear-gradient(to top, rgba(6,6,6,0.7) 0%, rgba(6,6,6,0) 45%); }
.hm-mood--tunnel .hm-mood__art{ background: linear-gradient(180deg, #100d0a 0%, #030303 55%, #1a130e 100%); }
.hm-mood--wet .hm-mood__art{ background: linear-gradient(200deg, #12161a 0%, #050505 70%); }
.hm-mood--tacho .hm-mood__art{ background: radial-gradient(circle at 50% 45%, #221c17 0%, #0a0908 65%); }

@media (min-width: 860px){
  .hm-spread{ grid-template-columns: repeat(12, 1fr); align-items: end; }
  .hm-feature--a{ grid-column: 1 / span 5; aspect-ratio: 3/4; }
  .hm-feature--b{ grid-column: 6 / span 4; aspect-ratio: 3/4; margin-top: 10vh; }
  .hm-feature--c{ grid-column: 10 / span 3; aspect-ratio: 1/1; }
  .hm-mood-row{ grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(8px,1.2vw,16px); margin-top: clamp(8px,1.2vw,16px); }
  .hm-mood-row .hm-mood{ grid-column: span 1; aspect-ratio: 4/5; }
}

.hm-statement{
  margin-top: clamp(60px, 9vh, 110px);
  padding: 0 clamp(18px, 5vw, 64px);
  max-width: 720px;
}
.hm-statement .statement{ margin-bottom: 10px; }

/* ==========================================================================
   07 — REDLINE — the climax
   ========================================================================== */
.redline{ height: 220vh; background: var(--stone-black); position: relative; }
.redline__pin{
  position: sticky; top: 0; height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  padding: 20px; overflow: hidden;
}
.redline__bignum{
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display); font-weight: 900;
  font-size: min(52vw, 620px); line-height: 1;
  color: var(--charcoal-2);
  opacity: 0.55;
  z-index: 0; pointer-events: none;
  letter-spacing: -0.04em;
  user-select: none;
}
.redline__stage{ width: min(80vw, 460px); margin-bottom: 22px; position: relative; z-index: 2; }
.tacho{ width: 100%; height: auto; overflow: visible; }
.tacho__needle{
  /* Rotation is driven entirely by JS via the SVG-native
     `transform="rotate(angle 200 200)"` attribute (see main.js) — a CSS
     transform here (even just for a static baseline) would win over that
     attribute and silently override it, since CSS always beats SVG
     presentation attributes regardless of which sets it second. */
  will-change: transform;
}
.tacho__glow{ opacity: 0; transition: opacity .4s ease; }
.redline__copy{ position: relative; z-index: 2; }
.redline__copy .statement{ margin-bottom: 6px; }

/* ==========================================================================
   08 — DETAIL / CONSTRUCTION — obsessive macro, asymmetric editorial grid
   ========================================================================== */
.detail{
  padding: clamp(90px, 14vh, 150px) clamp(18px, 5vw, 64px) clamp(70px, 10vh, 120px);
  background: var(--charcoal);
  position: relative;
}
.section-kicker{
  font-size: 11px; color: var(--ink-dim); margin-bottom: clamp(40px, 6vh, 70px);
}
.detail-grid{
  display: grid; grid-template-columns: repeat(6, 1fr); gap: clamp(6px, 1vw, 12px);
  margin-bottom: clamp(50px, 8vh, 90px);
  /* Each tile's height comes from its own aspect-ratio (set inline per
     figure, matched to that image's real native ratio), not a stretched
     row track — align-items:start lets tiles sit at their true height
     instead of being force-stretched to match the tallest sibling,
     which is what was leaving big dark margins around smaller images. */
  align-items: start;
}
.detail-tile{ position: relative; overflow: hidden; grid-column: span 6; }
.detail-tile img{ width: 100%; height: 100%; object-fit: cover; display: block; }
.detail-tile figcaption{
  position: absolute; left: 12px; bottom: 12px; z-index: 2;
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.12em;
  color: var(--ink-dim); text-transform: uppercase;
}
.detail-tile::after{ content:""; position:absolute; inset:0; background: linear-gradient(to top, rgba(6,6,6,0.75) 0%, rgba(6,6,6,0) 40%); }
.detail-tile--wide{ grid-column: span 6; }
.detail-tile--tall{ aspect-ratio: 3/4; }
.detail-tile--sq{ aspect-ratio: 1/1; }

@media (min-width: 760px){
  .detail-grid{ grid-template-columns: repeat(12, 1fr); }
  .detail-tile{ grid-column: span 4; aspect-ratio: 4/5; }
  .detail-tile--wide{ grid-column: span 8; aspect-ratio: 16/9; }
  .detail-tile--narrow{ grid-column: span 4; }
}

.spec-strip{
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 22px;
  font-size: 11px; color: var(--ink-dim); text-align: center;
}
.spec-strip span::after{ content: '·'; margin-left: 22px; color: var(--ink-faint); }
.spec-strip span:last-child::after{ content: ''; margin: 0; }

/* ==========================================================================
   09 — CULT / SCARCITY
   ========================================================================== */
.cult{
  min-height: 76vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 100px clamp(18px, 5vw, 64px);
  background: var(--stone-black);
}
.cult__inner{ max-width: 900px; }
.cult__pillars{
  font-size: 10px; color: var(--ink-faint); letter-spacing: 0.2em;
  margin-bottom: 28px;
}
.cult .statement{ margin-bottom: 14px; }
.cult__lead{ font-size: clamp(30px, 6.5vw, 60px); }

/* ==========================================================================
   10 — ACCESS / CONVERSION
   ========================================================================== */
.access{
  min-height: 92vh;
  display: flex; align-items: center; justify-content: center;
  padding: 110px clamp(18px, 5vw, 64px);
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(201,169,120,0.05) 0%, rgba(201,169,120,0) 60%),
    var(--stone-black);
  text-align: center;
}
.access-panel{ width: 100%; max-width: 460px; display: flex; justify-content: center; }
.access-panel[hidden]{ display: none; }
.access-frame{
  position: relative;
  width: 100%;
  padding: clamp(40px, 6vw, 64px) clamp(24px, 5vw, 48px);
  border: 1px solid var(--border);
}
/* Instrument-panel corner ticks — restrained, not decorative gimmick */
.access-frame::before, .access-frame::after{
  content: ""; position: absolute; width: 14px; height: 14px;
  border: 1px solid var(--warm-light-dim); opacity: 0.6;
}
.access-frame::before{ top: -1px; left: -1px; border-right: none; border-bottom: none; }
.access-frame::after{ bottom: -1px; right: -1px; border-left: none; border-top: none; }
.access-panel__kicker{ font-size: 11px; color: var(--ink-faint); margin-bottom: 20px; letter-spacing: 0.3em; }
.access-panel__headline{
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(32px, 6.5vw, 52px); letter-spacing: -0.02em;
  margin-bottom: 18px; line-height: 1.05;
}
.access-panel__sub{
  color: var(--ink-dim); font-size: 14px; line-height: 1.5;
  max-width: 38ch; margin: 0 auto 36px;
}
.access-panel__price{ color: var(--ink-dim); font-size: 12px; margin-bottom: 30px; }
.access-panel__footnote{
  margin-top: 28px; font-size: 12px; color: var(--ink-faint);
}

/* Primary action — pre-order. Payment isolated behind one placeholder
   handler (see BEVST_CONFIG.onPreorderClick in js/main.js) so it can be
   wired to Stripe/Shopify later without touching this markup. */
.access-primary{ margin-bottom: 30px; }
.access-primary__sub{
  margin-top: 12px; font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.18em; color: var(--ink-faint);
}
.access-primary__note{
  margin-top: 12px; font-size: 12px; color: var(--warm-light);
}
.access-preorder-tag{
  margin-top: 14px; font-size: 12px; line-height: 1.5; color: var(--ink-faint);
}
.access-preorder-tag strong{
  display: block; font-size: 10px; letter-spacing: 0.18em;
  color: var(--ink-dim); margin-bottom: 4px; font-weight: 500;
}
.size-select{ margin-top: 22px; }
.size-select__label{
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em;
  color: var(--ink-faint); text-align: center; margin-bottom: 14px; text-transform: uppercase;
}
.size-select .btn{ margin-top: 18px; }
.btn:disabled{ opacity: 0.35; cursor: not-allowed; pointer-events: none; }
.btn:disabled:hover{ transform: none; }

.access-divider{
  display: flex; align-items: center; gap: 16px;
  margin: 30px 0; color: var(--ink-faint);
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em;
}
.access-divider::before, .access-divider::after{
  content: ""; flex: 1; height: 1px; background: var(--border);
}

.access-form__label{
  display: block; font-family: var(--font-mono); text-align: left;
  font-size: 10px; letter-spacing: 0.18em; color: var(--ink-faint);
  margin-bottom: 14px;
}
.access-form__row{ display: flex; flex-direction: column; gap: 0; }
.access-form__input{ text-align: center; }
.access-form__input{
  width: 100%; background: transparent; border: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0; padding: 14px 0; font-size: 20px; color: var(--ink);
  font-family: var(--font-display); font-weight: 600;
  transition: border-color .3s ease;
}
.access-form__input::placeholder{ color: var(--ink-faint); font-weight: 400; }
.access-form__input:focus{ outline: none; border-color: var(--warm-light-dim); }
.access-form__row .btn{ margin-top: 28px; }
.access-form__help{ margin-top: 18px; font-size: 12px; color: var(--ink-faint); }
.access-form__error{ margin-top: 10px; font-size: 12px; color: var(--red-accent); }

.access-success__line{
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(26px, 5vw, 36px); color: var(--ink);
}
.access-success__line--dim{ color: var(--ink-dim); font-weight: 600; margin-top: 6px; }

.size-select{ margin-bottom: 28px; }
.size-select__options{ display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.size-option{ position: relative; }
.size-option input{ position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.size-option span{
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border: 1px solid var(--border); border-radius: 0;
  font-family: var(--font-mono); font-size: 12px; color: var(--ink-dim);
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.size-option input:checked + span{ border-color: var(--ink); color: var(--ink); background: rgba(234,231,226,0.05); }
.size-option input:focus-visible + span{ outline: 2px solid var(--warm-light); outline-offset: 2px; }
.access-panel[data-mode="preorder"] .btn{ margin-top: 10px; }

/* ==========================================================================
   11 — FINALE
   ========================================================================== */
.finale{
  height: 100svh; min-height: 480px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: var(--stone-black); text-align: center; gap: 16px;
}
.finale__mark{
  height: 22px; width: auto; margin-bottom: 6px;
  opacity: 0; filter: brightness(0.3);
  will-change: opacity, filter;
}
.finale__line{
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.24em; color: var(--ink-dim);
  opacity: 0; transform: translateY(8px);
}
.finale__line--dim{ color: var(--ink-faint); }
@media (prefers-reduced-motion: reduce){
  .finale__mark{ opacity: 1; filter: none; }
  .finale__line{ opacity: 1; transform: none; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer{
  background: var(--stone-black);
  border-top: 1px solid var(--border);
  padding: clamp(28px, 5vw, 40px) clamp(18px, 4vw, 40px);
}
.site-footer__inner{
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  flex-wrap: wrap;
}
.site-footer__social{
  color: var(--ink-dim); display: inline-flex; transition: color .2s ease;
}
.site-footer__social:hover, .site-footer__social:focus-visible{ color: var(--ink); }
.site-footer__payments{ display: flex; align-items: center; gap: 8px; }
.pay-icon{
  width: 34px; height: 22px; color: var(--ink-faint);
}
.pay-icon rect{ fill: none; stroke: var(--border); stroke-width: 1; }
.pay-icon text{
  font-family: var(--font-mono); font-size: 6.5px; font-weight: 500;
  letter-spacing: 0.03em; fill: var(--ink-dim);
}
.site-footer__copyright{
  font-size: 10px; color: var(--ink-faint); letter-spacing: 0.1em;
}
@media (max-width: 560px){
  .site-footer__inner{ flex-direction: column; text-align: center; }
}

/* ==========================================================================
   Responsive refinements
   ========================================================================== */
@media (min-width: 1200px){
  .hero__headline{ font-size: clamp(70px, 9vw, 160px); }
}
