/* =========================================================================
   AXOS Editions — Drop 01
   Global stylesheet. Single source of truth for tokens, type scale, components.
   --------------------------------------------------------------------------
   Architecture (top to bottom):
   1. Tokens — colours, fonts, spacing, breakpoints
   2. Reset / base
   3. Type scale
   4. Layout utilities
   5. Shared components (header, doc-strip, footer, cta, eyebrow, render)
   6. Home page blocks
   7. PDP blocks
   8. About + Process page blocks
   9. Legal page styles
   10. FAQ accordion
   11. Mobile nav overlay
   12. Responsive overrides (>= 768, >= 1024)
   ========================================================================= */


/* ============================ 0. Web fonts (self-hosted) =================
   Archivo (variable, latin/latin-ext/vietnamese) — display + body
   JetBrains Mono (latin + extras) — numerics, eyebrows, microcopy
   Subset unicode-ranges mirror Google Fonts' default delivery.
   ========================================================================= */

@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/assets/fonts/archivo-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/assets/fonts/archivo-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/assets/fonts/archivo-vietnamese.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url('/assets/fonts/jetbrains-mono-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url('/assets/fonts/jetbrains-mono-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ============================ 1. Tokens ================================= */

:root {
  /* Brand book Ch. 04 — exact hex from the brand book palette */
  --charcoal: #0F1113;
  --parchment: #E8E5DF;
  --bronze: #9C6B3F;
  --green: #4A6B5C;
  --signal: #D24A1E;

  /* Derived working tones */
  --charcoal-2: #15181B;
  --charcoal-3: #1C2024;
  --line: #262A2F;
  --line-2: #333740;
  --parchment-2: #D9D5CC;
  --bronze-2: #B98758;
  --bronze-dim: #6E4A2C;
  --green-2: #5C7E6E;
  --green-dim: #34503F;

  /* Ink (text on charcoal) */
  --ink-1: #E8E5DF;
  --ink-2: #B8B4AC;
  --ink-3: #7B7770;
  --ink-4: #4D4A45;

  /* Ink on parchment */
  --on-parch-1: #0F1113;
  --on-parch-2: #4A4842;
  --on-parch-3: #7B7770;

  /* Typography — Archivo + JetBrains Mono per Brand Book Ch. 05.
     DM Sans removed by direction (source CSS oversight). */
  --font-display: "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body:    "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Layout */
  --site-max: 1320px;
  --site-pad: 64px;
  --site-pad-mobile: 20px;
  --header-h: 56px;
  --header-h-mobile: 48px;
}

/* ============================ 2. Reset ================================== */

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img, video, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol, dl { margin: 0; padding: 0; list-style: none; }
hr { border: 0; margin: 0; }
input, textarea, select, button {
  font-family: inherit;
  -webkit-tap-highlight-color: transparent;
}
a, button { -webkit-tap-highlight-color: transparent; }

html {
  background: var(--charcoal);
  color: var(--ink-1);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: 0;
  font-weight: 400;
  background: var(--charcoal);
  min-height: 100vh;
}

::selection { background: var(--bronze); color: var(--charcoal); }

/* ============================ 3. Type scale ============================== */

/* Per the brief (mobile-first; desktop overrides scale up). */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  margin: 0;
  font-weight: 700;
  color: inherit;
}

.h1, h1 {
  font-size: 40px;       /* mobile */
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.h2, h2 {
  font-size: 32px;       /* mobile */
  line-height: 1.1;
  letter-spacing: -0.01em;
  font-weight: 700;
}

.h3 {
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.005em;
  font-weight: 700;
}

h4, .h4 {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 500;
}

p { margin: 0; }
p, .body { font-size: 15px; line-height: 1.55; }

.mono, .eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.0;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}

.eyebrow {
  color: var(--bronze-2);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--bronze);
}

.eyebrow--parch { color: var(--bronze); }
.eyebrow--parch::before { background: var(--bronze); }

.caption {
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.01em;
  font-weight: 500;
  color: var(--ink-3);
}

/* ============================ 4. Layout utilities ========================= */

.container {
  max-width: var(--site-max);
  margin: 0 auto;
  padding: 0 var(--site-pad-mobile);
}

.section { padding: 64px 0; }
.section--charcoal { background: var(--charcoal); color: var(--ink-1); }
.section--parchment { background: var(--parchment); color: var(--on-parch-1); }

/* Section header pattern: eyebrow + huge headline */
.section-head { margin-bottom: 40px; }
.section-head .h2 { margin: 20px 0 0; max-width: 22ch; }
.section-head--charcoal .h2 { color: var(--ink-1); }
.section-head--parchment .h2 { color: var(--on-parch-1); }

/* ============================ 5. Shared components ======================== */

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(15, 17, 19, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  height: var(--header-h-mobile);
}
.site-header__inner {
  height: 100%;
  max-width: var(--site-max);
  margin: 0 auto;
  padding: 0 var(--site-pad-mobile);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
}

.lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  user-select: none;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--parchment);
}

/* × monogram — two equal-width bars on the diagonal, 16% stroke (Brand Book Ch.03) */
.x-mark {
  width: 16px;
  height: 16px;
  position: relative;
  display: inline-block;
  flex-shrink: 0;
  color: currentColor;
}
.x-mark::before,
.x-mark::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 130%;
  height: 18%;
  background: currentColor;
  transform-origin: center;
}
.x-mark::before { transform: translate(-50%, -50%) rotate(45deg); }
.x-mark::after  { transform: translate(-50%, -50%) rotate(-45deg); }

.site-nav { display: none; }
.site-nav a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--ink-2);
  padding: 8px 14px;
  border-radius: 1px;
  transition: color 150ms ease;
}
.site-nav a:hover { color: var(--ink-1); }
.site-nav a.is-active {
  color: var(--ink-1);
  position: relative;
}
.site-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px;
  bottom: 0;
  height: 1px;
  background: var(--bronze);
}

.site-header__right { justify-self: end; display: flex; align-items: center; gap: 12px; }

/* Mobile hamburger */
.nav-toggle {
  width: 36px; height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--parchment);
  border: 1px solid var(--line);
  border-radius: 1px;
  transition: border-color 150ms ease, background 150ms ease;
}
.nav-toggle:hover { border-color: var(--bronze); }
.nav-toggle__bars {
  display: block;
  position: relative;
  width: 16px;
  height: 10px;
}
.nav-toggle__bars::before,
.nav-toggle__bars::after,
.nav-toggle__bars span {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: currentColor;
  transition: transform 200ms ease, opacity 200ms ease, top 200ms ease;
}
.nav-toggle__bars::before { top: 0; }
.nav-toggle__bars span { top: 50%; transform: translateY(-50%); }
.nav-toggle__bars::after { bottom: 0; }

body.nav-open .nav-toggle__bars::before { top: 50%; transform: translateY(-50%) rotate(45deg); }
body.nav-open .nav-toggle__bars span { opacity: 0; }
body.nav-open .nav-toggle__bars::after { bottom: auto; top: 50%; transform: translateY(-50%) rotate(-45deg); }

.site-header__cta {
  display: none;
}

/* ---- Mobile nav overlay ---- */
.mobile-nav {
  position: fixed;
  top: 0; right: 0;
  width: min(360px, 88vw);
  height: 100vh;
  background: var(--charcoal);
  border-left: 1px solid var(--line);
  z-index: 40;
  transform: translateX(100%);
  transition: transform 260ms cubic-bezier(.4, 0, .2, 1);
  display: flex;
  flex-direction: column;
  padding: calc(var(--header-h-mobile) + 24px) 24px 24px;
  gap: 16px;
}
body.nav-open .mobile-nav { transform: translateX(0); }
.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--ink-1);
  border-bottom: 1px solid var(--line);
}
.mobile-nav a:hover { color: var(--bronze-2); }
.mobile-nav__cta {
  margin-top: auto;
}
.mobile-nav__legal {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 24px;
  line-height: 1.6;
}

.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 17, 19, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
  z-index: 35;
}
body.nav-open .mobile-nav-backdrop { opacity: 1; pointer-events: auto; }

/* ---- Doc strip (document metadata under header) ---- */
.doc-strip {
  background: var(--charcoal-2);
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.doc-strip__inner {
  max-width: var(--site-max);
  margin: 0 auto;
  padding: 10px var(--site-pad-mobile);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.doc-strip__inner span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.doc-strip__inner span:last-child { color: var(--ink-2); }

/* On parchment pages */
.section--parchment + .site-content .doc-strip,
.web--parchment .doc-strip {
  background: var(--parchment-2);
  border-bottom-color: rgba(15, 17, 19, 0.12);
  color: var(--on-parch-3);
}
.parchment-page .doc-strip {
  background: rgba(15, 17, 19, 0.04);
  border-bottom: 1px solid rgba(15, 17, 19, 0.1);
  color: var(--on-parch-3);
}
.parchment-page .doc-strip__inner span:last-child { color: var(--on-parch-2); }

/* ---- CTA buttons ---- */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--bronze);
  color: var(--charcoal);
  border: 1px solid var(--bronze);
  border-radius: 1px;
  transition: background 150ms ease, color 150ms ease, border-color 150ms ease;
  cursor: pointer;
}
.cta:hover { background: var(--bronze-2); border-color: var(--bronze-2); }
.cta__arrow { font-size: 14px; line-height: 1; }

.cta--outline {
  background: transparent;
  color: var(--bronze-2);
  border-color: var(--bronze);
}
.cta--outline:hover {
  background: var(--bronze);
  color: var(--charcoal);
}

.cta--ghost {
  background: transparent;
  color: var(--ink-2);
  border-color: transparent;
  border-bottom: 1px solid var(--ink-3);
  padding: 8px 0;
  border-radius: 0;
  letter-spacing: 0.14em;
}
.cta--ghost:hover { color: var(--ink-1); border-bottom-color: var(--ink-1); }

.cta--full { width: 100%; }

/* "Drop 02 — Waitlist" header pill */
.header-waitlist {
  display: none; /* shown on >= 1024 */
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid var(--bronze);
  color: var(--bronze-2);
  border-radius: 1px;
  transition: background 150ms ease, color 150ms ease;
}
.header-waitlist:hover { background: var(--bronze); color: var(--charcoal); }

/* ---- Held pill ---- */
.held-pill {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--signal);
  border: 1px solid var(--signal);
  padding: 4px 9px;
  border-radius: 1px;
  margin-left: 12px;
  vertical-align: middle;
}

/* ---- Render placeholder containers (overlay corner labels on images) ---- */
.render {
  position: relative;
  background: var(--charcoal-2);
  border: 1px dashed rgba(232, 229, 223, 0.12);
  overflow: hidden;
  isolation: isolate;
}
.render img,
.render video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.render__label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(232, 229, 223, 0.45);
  pointer-events: none;
  z-index: 2;
}
.render__corner {
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze-2);
  pointer-events: none;
  z-index: 2;
}
.render--parchment {
  background: var(--parchment-2);
  border-color: rgba(15, 17, 19, 0.15);
}
.render--parchment .render__label { color: rgba(15, 17, 19, 0.5); }
.render--parchment .render__corner { color: var(--bronze); }

/* ---- Wax seal (code-drawn) ---- */
.wax-seal {
  position: relative;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,0.10), transparent 50%),
    radial-gradient(circle at 60% 70%, rgba(0,0,0,0.35), transparent 60%),
    var(--green);
  box-shadow:
    inset 0 0 0 1px rgba(15,17,19,0.5),
    inset 0 -3px 12px rgba(0,0,0,0.35),
    0 2px 8px rgba(0,0,0,0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.wax-seal__x {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--bronze-2);
  text-shadow: 0 1px 0 rgba(0,0,0,0.25);
  user-select: none;
  line-height: 1;
}

/* ---- Footer ---- */
.site-footer {
  background: var(--charcoal);
  color: var(--ink-2);
  padding: 64px 0 32px;
  border-top: 1px solid var(--line);
}
.site-footer__inner {
  max-width: var(--site-max);
  margin: 0 auto;
  padding: 0 var(--site-pad-mobile);
}
.site-footer__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.site-footer__brand .lockup { color: var(--parchment); }
/* Locked brand motto — "The seal. The mark. The signature."
 * Appears in footer on every page per copy bible. Mono bronze caps.
 */
.site-footer__motto {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze-2);
  line-height: 1.4;
}
.site-footer__tagline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  color: var(--ink-1);
  margin-top: 6px;
  letter-spacing: -0.01em;
}
.site-footer__desc {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-3);
  max-width: 32ch;
}
.site-footer__col h4 {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bronze-2);
  font-weight: 500;
  margin-bottom: 16px;
}
.site-footer__col ul li { margin-bottom: 10px; }
.site-footer__col a {
  font-size: 14px;
  color: var(--ink-2);
  transition: color 150ms ease;
}
.site-footer__col a:hover { color: var(--ink-1); }

.site-footer__bot {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  line-height: 1.6;
}

/* ============================ 6. Home page blocks ========================= */

/* ---- Hero ---- */
.hero {
  background: var(--charcoal);
  padding: 48px 0 64px;
  text-align: center;
}
.hero__inner {
  max-width: var(--site-max);
  margin: 0 auto;
  padding: 0 var(--site-pad-mobile);
}
.hero__top {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}
.hero__visual {
  margin: 0 auto 40px;
  max-width: 760px;
  aspect-ratio: 16/9;
}
.hero__h1 {
  font-size: 48px;
  line-height: 1.0;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 0 0 20px;
  color: var(--ink-1);
  max-width: 14ch;
  margin-left: auto;
  margin-right: auto;
}
.hero__sub {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0 auto 32px;
  max-width: 56ch;
}
.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.hero__scroll {
  margin-top: 56px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ---- Three Signatures block ---- */
.signatures {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.signature {
  background: rgba(15, 17, 19, 0.04);
  border: 1px solid rgba(15, 17, 19, 0.1);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: 1px;
}
.signature__num {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--on-parch-3);
}
.signature__num strong {
  font-weight: 500;
  color: var(--on-parch-1);
}
.signature__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  color: var(--on-parch-1);
  letter-spacing: -0.005em;
  margin: 0;
  max-width: 18ch;
}
.signature__body {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--on-parch-2);
}
.signature__icon {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 64px;
}
.signature__icon .mono {
  font-family: var(--font-mono);
  font-size: 18px;
  letter-spacing: 0.18em;
  color: var(--on-parch-1);
}

/* ---- SKU cards ---- */
.sku-meta-right {
  display: none;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.sku-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 32px;
}
.sku-card {
  background: var(--charcoal-2);
  border: 1px solid var(--line);
  border-radius: 1px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 200ms ease, transform 200ms ease;
}
.sku-card:hover { border-color: var(--bronze-dim); }
.sku-card--lead { border-color: var(--bronze-dim); }
.sku-card--limited { border-color: var(--green-dim, #34503F); }
.sku-card__visual {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--charcoal-3);
  border-bottom: 1px solid var(--line);
}
.sku-card__visual .render {
  position: absolute;
  inset: 0;
  border: 0;
  background: transparent;
}
/* Held pill on Limited SKU card.
 * Sits top-LEFT so it doesn't collide with .render__corner ("03 · Drop 02")
 * which lives top-right. Reads as two separate marks with breathing room.
 */
.sku-card__held {
  position: absolute;
  top: 14px;
  left: 14px;
  margin-left: 0;       /* override .held-pill default margin */
  z-index: 3;
  background: rgba(15, 17, 19, 0.7);  /* slight backplate so it stays legible over any image */
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.sku-card__body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sku-card__eyebrow {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.sku-card__eyebrow .lead-tag { color: var(--bronze-2); margin-left: 8px; }
.sku-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.005em;
  color: var(--ink-1);
}
.sku-card__desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
}
.sku-card__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.01em;
  color: var(--bronze-2);
  margin-top: 4px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.sku-card__price .sub {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.sku-card--limited .sku-card__price { color: var(--green-2); }
.sku-card--limited .sku-card__price .sub { color: var(--green-2); opacity: 0.7; }
.sku-card__cta { margin-top: 12px; }

/* ---- Specification strip table ---- */
.spec-strip {
  border-top: 1px solid rgba(15, 17, 19, 0.12);
}
.spec-strip__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(15, 17, 19, 0.1);
}
.spec-strip__row .label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--on-parch-3);
  font-weight: 500;
}
.spec-strip__row .col {
  font-size: 14px;
  line-height: 1.5;
  color: var(--on-parch-1);
}
.spec-strip__row .col .mono {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.08em;
}
.spec-strip__row .col-lead { color: var(--on-parch-1); font-weight: 500; }
.spec-strip__row .col[data-col-head] {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--on-parch-3);
  font-weight: 500;
}
.spec-strip__row.is-head {
  border-bottom-color: rgba(15, 17, 19, 0.2);
  padding-bottom: 12px;
}
.spec-strip__row.is-lead .col { font-weight: 700; }
.spec-strip__row.is-lead .col-lead { color: var(--bronze); }
.spec-strip__foot {
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
}

/* ---- Three Process columns ---- */
.threes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 32px;
}
.three {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.three__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink-1);
  margin-bottom: 16px;
}
.three__eyebrow {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze-2);
  margin-bottom: 10px;
}
.three__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.15;
  margin: 0 0 12px;
  color: var(--ink-1);
}
.three__body {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-2);
  margin-bottom: 16px;
}
.three__specs {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ---- Video block ---- */
.video-wrap {
  position: relative;
  width: 100%;             /* needed when wrapped in .video-figure flex column */
  aspect-ratio: 16/9;
  max-width: var(--site-max);
  margin: 0 auto;
  background: var(--charcoal-2);
}
.video-wrap video,
.video-wrap img,
.video-wrap .render {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.video-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(15,17,19,0.7);
  border: 1px solid var(--bronze);
  color: var(--bronze-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  z-index: 2;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease;
}
.video-play:hover { background: var(--bronze); color: var(--charcoal); }
/* Video figure: video frame + caption below.
 * Caption is a real <figcaption> rendered beneath the video, NOT overlaid —
 * so it doesn't collide with the inner render__label.
 */
.video-figure {
  margin: 0 auto;
  max-width: var(--site-max);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.video-caption {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-2);
  text-align: center;
}

/* ============================ 7. PDP blocks =============================== */

.pdp {
  padding: 32px 0 64px;
}
.pdp__inner {
  max-width: var(--site-max);
  margin: 0 auto;
  padding: 0 var(--site-pad-mobile);
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.pdp__visual {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pdp__hero {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--charcoal-2);
}
.pdp__hero .render { position: absolute; inset: 0; border: 0; background: transparent; }
.pdp__rotate {
  position: absolute;
  bottom: 14px;
  right: 14px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  z-index: 2;
  display: none;             /* desktop-only hint — drag/scroll isn't a mobile gesture for a static placeholder */
}
@media (min-width: 1024px) {
  .pdp__rotate { display: block; }
}
.pdp__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.pdp__thumb {
  position: relative;
  aspect-ratio: 1/1;
  background: var(--charcoal-3);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: border-color 150ms ease;
}
.pdp__thumb:hover { border-color: var(--bronze-dim); }
.pdp__thumb.is-active { border-color: var(--bronze); }
.pdp__thumb .render { position: absolute; inset: 0; border: 0; background: transparent; }
.pdp__thumb .render__label { font-size: 8.5px; bottom: 6px; left: 6px; }

.pdp__copy {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.pdp__h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 18px 0 0;
  color: var(--ink-1);
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
}
.pdp__price-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}
.pdp__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.01em;
  color: var(--bronze-2);
}
.pdp--limited .pdp__price { color: var(--green-2); }
.pdp__price-meta {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.pdp__lede {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
  max-width: 60ch;
}

.pdp__sub {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.005em;
  line-height: 1.2;
  color: var(--ink-1);
  margin: 0 0 12px;
}

.pdp__divider {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 0;
}

.pdp__section-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze-2);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--bronze-dim);
  margin-bottom: 18px;
}

/* Spec table */
.pdp__spec {
  display: grid;
  grid-template-columns: minmax(120px, 32%) 1fr;
  gap: 12px 20px;
}
.pdp__spec dt {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding-top: 3px;
  font-weight: 500;
}
.pdp__spec dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-1);
}
.pdp__spec dd.mono {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
}

/* In-the-box list */
.pdp__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pdp__list li {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 14px;
  align-items: start;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-1);
}
.pdp__list li::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  margin-top: 8px;
  background: var(--bronze);
}

/* Hand-finish protocol */
.pdp__steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pdp__steps li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-2);
}
.pdp__steps li > span:first-child {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  color: var(--bronze-2);
  padding-top: 4px;
}

/* COGS Transparency */
.pdp__cogs {
  background: rgba(156, 107, 63, 0.06);
  border: 1px solid var(--bronze-dim);
  padding: 22px 24px;
  border-radius: 1px;
}
.pdp__cogs h4 {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze-2);
  font-weight: 500;
  margin: 0 0 8px;
}
.pdp__cogs p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-1);
  margin: 0;
}
.pdp__cogs strong { color: var(--bronze-2); font-weight: 700; }

/* Limited waitlist form */
.waitlist {
  display: flex;
  gap: 8px;
  flex-direction: column;
}
.waitlist__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze-2);
}
.waitlist__form {
  display: flex;
  gap: 0;
  border: 1px solid var(--line);
  background: var(--charcoal-2);
}
.waitlist__form input[type="email"] {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 14px 16px;
  color: var(--ink-1);
  font-size: 14px;
  outline: none;
}
.waitlist__form input[type="email"]::placeholder { color: var(--ink-4); }
.waitlist__form button {
  background: var(--bronze);
  color: var(--charcoal);
  padding: 0 22px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 0;
  transition: background 150ms ease;
}
.waitlist__form button:hover { background: var(--bronze-2); }
.waitlist__form.is-submitted {
  border-color: var(--bronze);
  background: rgba(156, 107, 63, 0.08);
}
.waitlist__form.is-submitted input,
.waitlist__form.is-submitted button { display: none; }
.waitlist__form.is-submitted::after {
  content: "You're on the list.";
  padding: 14px 16px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  color: var(--bronze-2);
  letter-spacing: 0;
  text-transform: none;
}
.waitlist__fine {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--ink-3);
}

/* Limited seal block: wax-seal disc + copy, 2-col on tablet+ */
.pdp__seal {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}
.pdp__seal-visual {
  display: flex;
  justify-content: flex-start;
}
.pdp__seal-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pdp__seal-text p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
  max-width: 44ch;
}
@media (min-width: 768px) {
  .pdp__seal { grid-template-columns: auto 1fr; gap: 32px; }
}

/* Inline HELD pill beside the H1 on Limited PDP */
.pdp__h1-held {
  align-self: center;
  margin-left: 14px;
  font-size: 11px;
}

/* Waitlist — Limited variant uses green outline button (per copy bible) */
.waitlist--limited .waitlist__form { border-color: var(--green); }
.waitlist--limited .waitlist__form button {
  background: transparent;
  color: var(--green-2);
  border-left: 1px solid var(--green);
}
.waitlist--limited .waitlist__form button:hover {
  background: var(--green);
  color: var(--parchment);
}
.waitlist--limited .waitlist__label { color: var(--green-2); }
.waitlist--limited .waitlist__form.is-submitted {
  border-color: var(--green);
  background: rgba(74, 107, 92, 0.08);
}
.waitlist--limited .waitlist__form.is-submitted::after { color: var(--green-2); }

/* ============================ 8. About + Process ========================== */

.parchment-page {
  background: var(--parchment);
  color: var(--on-parch-1);
}
.parchment-page .site-header {
  background: rgba(15, 17, 19, 0.92);
}

.about-hero {
  background: var(--parchment);
  padding: 24px 0 48px;
}
.about-hero__inner {
  max-width: var(--site-max);
  margin: 0 auto;
  padding: 0 var(--site-pad-mobile);
}
.about-hero__visual {
  aspect-ratio: 21/9;
  width: 100%;
  margin-bottom: 32px;
}
.about-hero__head {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.about-hero__numerals {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
  margin-top: 20px;
}
.about-hero__numeral {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 80px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--on-parch-1);
}
.about-hero__h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--on-parch-1);
  margin: 0;
}
.about-hero__sub {
  font-size: 16px;
  line-height: 1.55;
  color: var(--on-parch-2);
  max-width: 56ch;
  margin: 12px 0 0;
}
/* Locked brand motto, sits beneath about-hero H1 per copy bible §4.6 */
.about-hero__motto {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
}

/* Values list — single column on mobile, takes the right rail on tablet+ */
.about-values__list {
  display: flex;
  flex-direction: column;
}

/* Values list */
.about-values {
  background: var(--parchment);
  padding: 56px 0 72px;
}
.about-values__inner {
  max-width: var(--site-max);
  margin: 0 auto;
  padding: 0 var(--site-pad-mobile);
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.about-values__head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--on-parch-1);
  margin: 20px 0 0;
  max-width: 12ch;
}
.about-value {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  padding: 24px 0;
  border-top: 1px solid rgba(15, 17, 19, 0.12);
}
.about-value__num {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 500;
  padding-top: 6px;
}
.about-value h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.005em;
  color: var(--on-parch-1);
  margin: 0 0 10px;
}
.about-value p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--on-parch-2);
  margin: 0;
  max-width: 60ch;
}

/* Photo strip */
.about-photos {
  background: var(--charcoal);
  padding: 64px 0;
}
.about-photos__grid {
  max-width: var(--site-max);
  margin: 0 auto;
  padding: 0 var(--site-pad-mobile);
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.about-photos__grid .render { aspect-ratio: 4/5; }

/* About closing */
.about-close {
  background: var(--charcoal);
  padding: 64px 0 96px;
}
.about-close__inner {
  max-width: var(--site-max);
  margin: 0 auto;
  padding: 0 var(--site-pad-mobile);
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.about-close__copy { display: flex; flex-direction: column; align-items: flex-start; }
.about-close h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink-1);
  margin: 24px 0;
  max-width: 18ch;
}
.about-close p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 52ch;
  margin: 0 0 28px;
}
.about-close__visual { aspect-ratio: 4/5; }

/* Long-form prose on parchment (used by About "On colour-matching" + process body copy) */
.prose-parch {
  max-width: 64ch;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.prose-parch p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--on-parch-2);
  margin: 0;
}
.prose-charc {
  max-width: 64ch;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.prose-charc p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0;
}

/* Process page: reuses three-process / hand-finish styles */
.process-hero {
  background: var(--charcoal);
  padding: 56px 0;
  text-align: left;
}
.process-hero__inner {
  max-width: var(--site-max);
  margin: 0 auto;
  padding: 0 var(--site-pad-mobile);
}
.process-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 48px;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 16px 0 16px;
  color: var(--ink-1);
  max-width: 18ch;
}
.process-hero p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 60ch;
}

.process-block {
  padding: 48px 0;
  border-top: 1px solid var(--line);
}
.process-block__inner {
  max-width: var(--site-max);
  margin: 0 auto;
  padding: 0 var(--site-pad-mobile);
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.process-block__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 80px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink-1);
}
.process-block__eyebrow {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze-2);
  margin-bottom: 10px;
}
.process-block__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink-1);
  margin: 0 0 16px;
  max-width: 18ch;
}
.process-block__body p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0 0 14px;
  max-width: 60ch;
}
.process-block__specs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.process-block__protocol {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.process-block__protocol h3 {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze-2);
  font-weight: 500;
  margin-bottom: 16px;
}
.process-block--parchment {
  background: var(--parchment);
  color: var(--on-parch-1);
  border-top-color: rgba(15, 17, 19, 0.12);
}
.process-block--parchment .process-block__num,
.process-block--parchment .process-block__title { color: var(--on-parch-1); }
.process-block--parchment .process-block__specs { color: var(--on-parch-3); }
.process-block--parchment .process-block__eyebrow { color: var(--bronze); }
.process-block--charcoal { background: var(--charcoal); color: var(--ink-1); }

/* Process page closing band (charcoal) */
.process-close {
  background: var(--charcoal);
  color: var(--ink-1);
  padding: 72px 0 96px;
  border-top: 1px solid var(--line);
}
.process-close__inner {
  max-width: var(--site-max);
  margin: 0 auto;
  padding: 0 var(--site-pad-mobile);
}
.process-close h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink-1);
  margin: 0 0 16px;
  max-width: 22ch;
}
.process-close p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0;
  max-width: 56ch;
}
@media (min-width: 1024px) {
  .process-close { padding: 96px 0 128px; }
  .process-close h2 { font-size: 40px; }
}

/* ============================ 9. Legal pages ============================== */

.legal {
  background: var(--charcoal);
  padding: 48px 0 96px;
  color: var(--ink-1);
}
.legal__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--site-pad-mobile);
}
.legal h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 24px 0;
  color: var(--ink-1);
}
.legal h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.005em;
  margin: 32px 0 12px;
  color: var(--ink-1);
}
.legal p, .legal li {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
}
.legal ul, .legal ol { padding-left: 1.2em; margin: 12px 0; }
.legal__stub {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  border: 1px dashed var(--line-2);
  padding: 24px;
  margin: 32px 0;
  background: var(--charcoal-2);
}

/* ============================ 10. FAQ accordion =========================== */

/* 2-col grid: heading on left, questions on right (per axos-02-home-desktop.png).
 * Stacks single-column on mobile.
 */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.faq-grid__head .h2 { margin-top: 16px; max-width: 12ch; }

.faq {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(15, 17, 19, 0.12);
}
.faq__item {
  border-bottom: 1px solid rgba(15, 17, 19, 0.12);
}
.faq__q {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 22px 0;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.005em;
  line-height: 1.3;
  color: var(--on-parch-1);
  transition: color 150ms ease;
  background: none;
  border: 0;
}
.faq__q:hover { color: var(--bronze); }
.faq__icon {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 500;
  color: var(--bronze);
  width: 20px;
  display: inline-flex;
  justify-content: center;
}
.faq__a {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--on-parch-2);
  padding: 0 0 22px;
  max-width: 64ch;
  overflow: hidden;
  display: none;
}
.faq__item.is-open .faq__a { display: block; }
.faq__item.is-open .faq__icon { color: var(--bronze-2); }

/* ============================ 11. Mobile nav ============================== */

/* Already declared above */

/* ============================ 12. Responsive ============================== */

/* Tablet 768+ */
@media (min-width: 768px) {
  :root {
    --site-pad-mobile: 32px;
  }

  .h1, h1 { font-size: 56px; }
  .h2, h2 { font-size: 40px; }

  .signatures,
  .sku-grid,
  .threes,
  .about-photos__grid { grid-template-columns: repeat(3, 1fr); }
  .sku-grid--two { grid-template-columns: repeat(2, 1fr); max-width: 980px; margin-left: auto; margin-right: auto; }

  .faq-grid {
    grid-template-columns: 1fr 1.6fr;
    gap: 56px;
    align-items: start;
  }
  .faq-grid__head { position: sticky; top: calc(var(--header-h) + 16px); }

  .spec-strip__row {
    grid-template-columns: 1.1fr 1fr 1fr 1fr;
    align-items: baseline;
    gap: 16px;
  }
  .spec-strip--two .spec-strip__row {
    grid-template-columns: 1.1fr 1fr 1fr;
  }
  .spec-strip__row .label { padding-top: 2px; }

  .pdp__inner {
    grid-template-columns: 1.1fr 1fr;
    gap: 56px;
  }

  .about-hero__visual { aspect-ratio: 21/8; }
  .about-hero__numeral { font-size: 120px; }
  .about-hero__h1 { font-size: 56px; }

  .about-close__inner {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }
  .about-close h2 { font-size: 48px; }

  .about-values__inner {
    grid-template-columns: 1fr 2fr;
    gap: 56px;
  }

  .site-footer__row {
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 56px;
  }
  .site-footer__bot {
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
  }

  .process-block__inner {
    grid-template-columns: auto 1fr;
    gap: 56px;
  }
  .process-block__num { padding-top: 0; }
}

/* Desktop 1024+ */
@media (min-width: 1024px) {
  :root {
    --site-pad-mobile: 64px;
    --header-h-mobile: 56px;
  }

  .h1, h1 { font-size: 72px; }
  .h2, h2 { font-size: 48px; }

  .site-header { height: var(--header-h); }
  .site-header__inner {
    grid-template-columns: 1fr auto 1fr;
    padding: 0 var(--site-pad);
  }
  .site-nav {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    justify-self: center;
  }
  .nav-toggle { display: none; }
  .header-waitlist { display: inline-flex; align-items: center; }
  .site-header__right { justify-self: end; }

  .doc-strip__inner { padding-left: var(--site-pad); padding-right: var(--site-pad); }
  .container { padding: 0 var(--site-pad); }
  .about-hero__inner,
  .about-values__inner,
  .about-photos__grid,
  .about-close__inner,
  .pdp__inner,
  .hero__inner,
  .site-footer__inner,
  .legal__inner,
  .process-hero__inner,
  .process-block__inner { padding-left: var(--site-pad); padding-right: var(--site-pad); }

  .section { padding: 96px 0; }
  .hero { padding: 80px 0 96px; }
  .hero__h1 { font-size: 72px; max-width: 18ch; }
  .hero__sub { font-size: 18px; }
  .hero__actions { flex-direction: row; justify-content: center; }
  .hero__visual { aspect-ratio: 16/9; max-width: 900px; }

  .signature { padding: 36px; gap: 20px; }
  .signature__title { font-size: 26px; max-width: 20ch; }

  .sku-meta-right { display: inline-flex; align-self: end; }
  .sku-card__visual { aspect-ratio: 4/3; }
  .sku-card__body { padding: 24px 28px 28px; }

  .three { padding-top: 24px; }
  .three__num { font-size: 80px; margin-bottom: 24px; }
  .three__title { font-size: 26px; }

  .about-hero__visual { aspect-ratio: 21/7; }
  .about-hero__numeral { font-size: 160px; }
  .about-hero__h1 { font-size: 72px; }
  .about-hero__numerals { gap: 56px; }

  .about-values__inner { gap: 96px; }

  .about-close h2 { font-size: 56px; }
  .about-close { padding: 96px 0 128px; }

  .pdp__inner { gap: 80px; grid-template-columns: 1.2fr 1fr; }
  .pdp__visual {
    position: sticky;
    top: calc(var(--header-h) + 20px);
    height: fit-content;
  }
  .pdp__h1 { font-size: 56px; }

  .process-block__num { font-size: 120px; }
  .process-block__title { font-size: 40px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  html { scroll-behavior: auto; }
}

/* ============================ Accessibility ==============================
   Skip link (visible on keyboard focus only), focus-visible rings, waitlist
   error/submitting states.
   ========================================================================= */

.skip-link {
  position: fixed;
  top: 0;
  left: 0;
  padding: 12px 18px;
  background: var(--bronze);
  color: var(--charcoal);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  z-index: 9999;
  transform: translateY(-110%);
  transition: transform 150ms ease-out;
}
.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
  outline: 2px solid var(--parchment);
  outline-offset: 2px;
}

/* Keyboard focus rings — visible on every interactive element.
   Mouse focus stays subtle (browsers handle :focus without :focus-visible). */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible,
.cta:focus-visible {
  outline: 2px solid var(--bronze-2);
  outline-offset: 3px;
  border-radius: 1px;
}
/* Inputs (parchment ground) need a darker ring */
input:focus-visible,
textarea:focus-visible {
  outline-color: var(--charcoal);
  outline-offset: 2px;
}
/* Strip default browser outline only when our own focus-visible ring shows */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}

/* Waitlist — submitting + error states */
.waitlist__form.is-submitting input,
.waitlist__form.is-submitting button {
  opacity: 0.5;
  pointer-events: none;
}
.waitlist__form.is-error::after {
  content: "Something went wrong. Please try again or email hello@axoseditions.com.";
  display: block;
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--signal);
}

/* Hidden helper for screen-reader-only content */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================ Termly content overrides ===================
   Termly-generated legal HTML ships with inline white-mode styles + light-grey
   text. These rules map Termly's data-custom-class attributes into the AXOS
   charcoal/parchment palette. !important is necessary because Termly's
   inline style attributes use color: rgb(89,89,89) and similar.
   ========================================================================= */

.legal [data-custom-class='body'],
.legal [data-custom-class='body'] * {
  background: transparent !important;
}

/* All Termly text inherits the legal page's ink-1 colour by default */
.legal [data-custom-class='body'],
.legal [data-custom-class='body'] *,
.legal [data-custom-class='body_text'],
.legal [data-custom-class='body_text'] *,
.legal [data-custom-class='subtitle'],
.legal [data-custom-class='subtitle'] * {
  color: var(--ink-2) !important;
  font-family: var(--font-body) !important;
}

/* Override Termly's "color: rgb(89, 89, 89)" inline styles on spans/divs */
.legal span[style*='rgb(89, 89, 89)'],
.legal span[style*='rgb(127, 127, 127)'],
.legal div[style*='rgb(89, 89, 89)'],
.legal div[style*='rgb(127, 127, 127)'],
.legal [style*='color: rgb(89, 89, 89)'],
.legal [style*='color: rgb(127, 127, 127)'] {
  color: var(--ink-2) !important;
}

/* Titles / headings — pure parchment, Archivo */
.legal [data-custom-class='title'],
.legal [data-custom-class='title'] *,
.legal [data-custom-class='heading_1'],
.legal [data-custom-class='heading_1'] *,
.legal [data-custom-class='heading_2'],
.legal [data-custom-class='heading_2'] * {
  color: var(--ink-1) !important;
  font-family: var(--font-display) !important;
}

/* Termly emits its own <h2>/<h3> inside heading_1/2 spans — normalise spacing */
.legal [data-custom-class='heading_1'] h2,
.legal [data-custom-class='heading_2'] h3 {
  color: var(--ink-1) !important;
  font-family: var(--font-display) !important;
  margin: 32px 0 12px;
}
.legal [data-custom-class='heading_1'] h2 { font-size: 22px; font-weight: 700; }
.legal [data-custom-class='heading_2'] h3 { font-size: 18px; font-weight: 700; }

/* Subtitle (Last updated) — slightly dimmer, mono */
.legal [data-custom-class='subtitle'] {
  font-family: var(--font-mono) !important;
  font-size: 12px !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3) !important;
}

/* Links — bronze, matches site convention */
.legal [data-custom-class='link'],
.legal [data-custom-class='link'] *,
.legal a[data-custom-class='link'] {
  color: var(--bronze-2) !important;
  font-family: var(--font-body) !important;
  text-decoration: underline;
  text-decoration-color: var(--bronze-dim);
  text-underline-offset: 3px;
}
.legal [data-custom-class='link']:hover,
.legal a[data-custom-class='link']:hover {
  color: var(--parchment) !important;
  text-decoration-color: var(--bronze-2);
}

/* Override Termly inline color: rgb(0, 58, 250) blue links */
.legal a[style*='rgb(0, 58, 250)'],
.legal [style*='color: rgb(0, 58, 250)'] {
  color: var(--bronze-2) !important;
}

/* Termly's US-state table — fit the charcoal ground */
.legal table {
  width: 100% !important;
  border-collapse: collapse;
  margin: 16px 0;
  background: var(--charcoal-2);
  border: 1px solid var(--line) !important;
}
.legal table th,
.legal table td {
  border: 1px solid var(--line) !important;
  padding: 12px !important;
  vertical-align: top;
  color: var(--ink-2) !important;
}
.legal table th {
  background: var(--charcoal-3);
  color: var(--ink-1) !important;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 13px;
}

/* Strong + em inside Termly content */
.legal [data-custom-class='body'] strong,
.legal [data-custom-class='body_text'] strong {
  color: var(--ink-1) !important;
  font-weight: 700;
}

/* Bullet/numbered lists inside Termly content */
.legal [data-custom-class='body'] ul,
.legal [data-custom-class='body'] ol {
  padding-left: 1.4em;
  margin: 12px 0;
}
.legal [data-custom-class='body'] li {
  color: var(--ink-2) !important;
  margin-bottom: 6px;
  line-height: 1.6;
}

/* The Termly attribution footer line at the bottom — small, dimmed */
.legal [data-custom-class='body'] > div:last-child {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  color: var(--ink-3) !important;
}


/* ============================ 13. Hero — model-viewer + expandable specs ===
   Drop-in 3D viewer in the hero visual slot. Replaces <img> with <model-viewer>.
   The <details> below the CTAs hides specs by default — consumer-facing copy
   hook first, proof on demand.
   ========================================================================= */

.render--viewer {
  background: rgba(232, 229, 223, 0.04);
  position: relative;
}
.render--viewer model-viewer {
  width: 100%;
  height: 100%;
  display: block;
  --poster-color: transparent;
  --progress-bar-color: var(--bronze);
  --progress-mask: transparent;
  background-color: transparent;
}
.model-viewer__ar {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: var(--bronze);
  color: #0F1113;
  border: 0;
  padding: 10px 14px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  z-index: 2;
}

.hero__sig,
.pdp__sig {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
  margin: 18px auto 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
}
.pdp__sig {
  justify-content: flex-start;
  margin: 18px 0 28px;
}
.hero__sig-dash,
.pdp__sig-dash {
  display: inline-block;
  width: 18px;
  height: 1px;
  background: var(--bronze);
  margin-right: 2px;
}

/* PDP collapsible spec sheet — same pattern as hero__specs but PDP-toned */
.pdp__details {
  border-top: 1px solid var(--line, rgba(232,229,223,0.14));
  border-bottom: 1px solid var(--line, rgba(232,229,223,0.14));
  margin: 0 0 24px;
}
.pdp__details summary {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-2, #B7B5B0);
  cursor: pointer;
  padding: 18px 0;
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  transition: color 0.15s ease;
}
.pdp__details summary:hover { color: var(--bronze); }
.pdp__details summary::-webkit-details-marker { display: none; }
.pdp__details summary::before {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--bronze);
}
.pdp__details[open] summary::before { content: "−"; }
.pdp__details .pdp__spec { padding-bottom: 24px; }

.hero__specs {
  margin-top: 36px;
  border-top: 1px solid rgba(232, 229, 223, 0.14);
  padding-top: 0;
}
.hero__specs summary {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-2, #B7B5B0);
  cursor: pointer;
  padding: 18px 0;
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  transition: color 0.15s ease;
}
.hero__specs summary:hover { color: var(--bronze); }
.hero__specs summary::-webkit-details-marker { display: none; }
.hero__specs summary::before {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--bronze);
  transition: transform 0.2s ease;
}
.hero__specs[open] summary::before {
  content: "−";
}
.hero__specs dl {
  margin: 8px 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  font-size: 13.5px;
  max-width: 640px;
}
.hero__specs dt {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3, #6E6C68);
  padding-top: 2px;
  margin-bottom: 2px;
}
.hero__specs dd {
  margin: 0 0 4px;
  color: var(--ink-1, #E8E5DF);
  line-height: 1.5;
}

@media (min-width: 640px) {
  .hero__specs dl {
    grid-template-columns: 120px 1fr;
    gap: 14px 24px;
  }
  .hero__specs dt { margin-bottom: 0; }
}


/* =========================================================================
   14. v3 — Scene-based home page (animation-first)
   -----------------------------------------------------------------------
   Five scenes drive the home: open / material / edition / seal / editions
   Each is 100vh minimum, centred, dark/light alternating.
   ========================================================================= */

body.v3 {
  background: var(--charcoal, #0F1113);
  color: var(--ink-1, #E8E5DF);
}

body.v3 .site-header--floating {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(15, 17, 19, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232, 229, 223, 0.06);
}

.scene {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  overflow: hidden;
}

/* ============================ Scene 01 — Open =========================== */

.scene--open {
  background: var(--charcoal, #0F1113);
  color: var(--parchment, #E8E5DF);
  padding-top: 0;
  padding-bottom: 0;
}

.scene--open .scene__viewer {
  width: 100%;
  max-width: 720px;
  aspect-ratio: 1 / 1;
  margin-top: 48px;
}
.scene--open .scene__viewer model-viewer {
  width: 100%;
  height: 100%;
  background: transparent;
  --poster-color: transparent;
  --progress-bar-color: var(--bronze, #9C6B3F);
}

.scene--open .scene__copy {
  text-align: center;
  margin-top: 32px;
  max-width: 980px;
}
.scene--open .eyebrow {
  display: inline-block;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bronze, #9C6B3F);
  margin-bottom: 24px;
}

.display {
  font-family: var(--font-display, 'Archivo', sans-serif);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.02;
  color: inherit;
  margin: 0;
}
.display--xl {
  font-size: clamp(48px, 9vw, 128px);
}
.display--lg {
  font-size: clamp(40px, 6.5vw, 88px);
}
.display-sub {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bronze, #9C6B3F);
  margin-top: 32px;
  display: block;
}

.scene--open .display .word {
  display: inline-block;
  margin-right: 0.18em;
}

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(232, 229, 223, 0.55);
}

@media (max-width: 640px) {
  .scroll-hint {
    bottom: 24px;
    left: 24px;
    font-size: 9.5px;
  }
}

.scroll-hint__line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--bronze, #9C6B3F) 0%, transparent 100%);
  animation: scrollHintLine 2s ease-in-out infinite;
}
@keyframes scrollHintLine {
  0%, 100% { transform: scaleY(1); transform-origin: top; opacity: 0.6; }
  50% { transform: scaleY(0.5); transform-origin: top; opacity: 1; }
}

/* ============================ Scene 02 — Material ======================= */

.scene--material {
  background: var(--charcoal, #0F1113);
  flex-direction: row;
  gap: 96px;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}
.patina-copy {
  max-width: 480px;
}
.patina-copy .eyebrow {
  display: inline-block;
  margin-bottom: 24px;
}
.patina-sub {
  margin-top: 24px;
  font-family: var(--font-body);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.55;
  color: rgba(232, 229, 223, 0.7);
  max-width: 360px;
}

/* Patina headline — copper / green colour words with scroll-tied brightness */
.patina-headline { line-height: 1.05; }
.patina-word {
  font-weight: 700;
  transition: opacity 0.15s linear, filter 0.15s linear;
  display: inline-block;
}
.patina-word--bronze {
  color: #B98758;
  opacity: var(--bronze-bright, 1);
  filter: drop-shadow(0 2px 12px rgba(185, 135, 88, calc(var(--bronze-bright, 1) * 0.5)));
}
.patina-word--green {
  color: #4A6B5C;
  opacity: var(--green-bright, 0.4);
  filter: drop-shadow(0 2px 12px rgba(74, 107, 92, calc(var(--green-bright, 0.4) * 0.6)));
}

/* ============================ Image-based bronze rivet =============== */

.patina-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

/* Hero rivet — stacked images that cross-fade based on scroll.
   Source PNGs have a pure-black background; we use BOTH clip-path
   (crops the square to a circle) AND mix-blend-mode: screen on
   the image itself (residual edges blend invisibly). No filter on
   parent — that would isolate the stacking context. */
.patina-rivet-hero {
  position: relative;
  width: clamp(240px, 34vw, 380px);
  height: clamp(240px, 34vw, 380px);
}
.patina-rivet-hero .rivet-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.08s linear;
  will-change: opacity;
  /* Drop shadow per-image (not parent) so blend mode works */
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.55));
  mix-blend-mode: screen;
}
.patina-rivet-hero .rivet-img[data-stage="30"] {
  opacity: 1;
}

/* Small timeline rivets — same trick */
.patina-rivet-small {
  display: inline-block;
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.45));
  transition: transform 0.3s ease, filter 0.3s ease;
  mix-blend-mode: screen;
}

.patina-day {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bronze, #9C6B3F);
}

/* Timeline row */
.patina-timeline {
  display: flex;
  gap: clamp(20px, 4vw, 40px);
  align-items: center;
  margin-top: 16px;
}
.patina-stage-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.4;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.patina-stage-item .mono {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(232, 229, 223, 0.6);
}
.patina-stage-item.is-active {
  opacity: 1;
  transform: translateY(-4px);
}
.patina-stage-item.is-active .patina-rivet-small {
  transform: scale(1.18);
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 12px rgba(232, 229, 223, 0.15));
}
.patina-stage-item.is-passed {
  opacity: 0.7;
}

/* ============================ Scene 03 — Edition ======================== */

.scene--edition {
  background: var(--parchment, #E8E5DF);
  color: #0F1113;
  flex-direction: column;
  gap: 64px;
  padding-top: 120px;
  padding-bottom: 120px;
}
.edition-stage {
  text-align: center;
  max-width: 800px;
}
.scene--edition .eyebrow {
  display: inline-block;
  color: var(--bronze, #9C6B3F);
  margin-bottom: 24px;
}
.scene--edition .display {
  color: #0F1113;
}
.scene--edition .display-sub {
  color: rgba(15, 17, 19, 0.65);
}

.edition-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 12px;
  max-width: 720px;
  width: 100%;
}
.edition-cell {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 17, 19, 0.06);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(15, 17, 19, 0.55);
  border-radius: 2px;
  transition: background 0.2s ease, color 0.2s ease;
}
.edition-cell:hover {
  background: var(--bronze, #9C6B3F);
  color: #fff;
}

/* ============================ Scene 04 — Seal =========================== */

.scene--seal {
  background: var(--charcoal, #0F1113);
  flex-direction: column;
  gap: 64px;
  text-align: center;
}
.seal-stage {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
  perspective-origin: 50% 30%;
}

/* ============================ Wax seal (v3 — image-based) ============= */
/* The seal is now a real image at /assets/images/wax-seal.png.
   The CSS below provides: (1) styling for the image when present,
   and (2) a styled placeholder shown when the image is missing.        */

.wax-seal-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 36px rgba(0, 0, 0, 0.55)) drop-shadow(0 6px 12px rgba(74, 107, 92, 0.35));
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  /* Slight permanent tilt — real wax is never perfectly aligned */
  transform: rotate(-4deg);
  z-index: 2;
}
.wax-seal-image.is-missing {
  display: none;
}
.wax-seal-image:hover {
  transform: rotate(-4deg) scale(1.03);
}

/* Subtle breathing on the image */
@keyframes sealBreathe {
  0%, 100% { transform: rotate(-4deg) scale(1); }
  50%      { transform: rotate(-4deg) scale(1.008); }
}
.wax-seal-image:not(.is-missing) {
  animation: sealBreathe 6s ease-in-out infinite;
}
.wax-seal-image:not(.is-missing):hover {
  animation: none;
}

/* Fallback placeholder — hidden by default, only shown when image fails */
.wax-seal-placeholder {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 38% 32%, #5C7E6E 0%, #4A6B5C 45%, #34503F 100%);
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.5),
    inset 0 -10px 20px rgba(20, 35, 27, 0.4),
    inset 0 8px 16px rgba(255, 255, 255, 0.1);
  border: 2px dashed rgba(232, 229, 223, 0.18);
  z-index: 1;
}
/* Only show placeholder when the image element has failed to load */
.wax-seal-image.is-missing ~ .wax-seal-placeholder {
  display: flex;
}
.wax-seal-placeholder__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.wax-seal-placeholder__x {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 90px;
  line-height: 0.8;
  color: rgba(232, 229, 223, 0.5);
}
.wax-seal-placeholder__label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(232, 229, 223, 0.4);
  text-align: center;
  max-width: 160px;
  line-height: 1.5;
}

/* Legacy seal styles preserved below for any straggler markup — will
   no-op since the new markup doesn't include these classes.            */
.wax-seal-realistic {
  position: relative;
  width: 260px;
  height: 260px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
  /* Slight tilt — real wax is never perfectly aligned */
  transform: rotate(-4deg);
  perspective: 800px;
}
.wax-seal-realistic:hover {
  transform: rotate(-4deg) scale(1.025);
}
.wax-seal-realistic:active {
  transform: rotate(-4deg) scale(0.98);
}

/* Main wax disc — matte finish, layered for soft depth */
.wax-disc {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    /* Subtle top-left soft highlight (matte, not glossy) */
    radial-gradient(ellipse 70% 50% at 38% 28%, rgba(255, 255, 255, 0.08) 0%, transparent 70%),
    /* Bottom-right deep shadow for body roundness */
    radial-gradient(ellipse 60% 60% at 72% 78%, rgba(20, 35, 27, 0.5) 0%, transparent 65%),
    /* Base — slightly varied tones (less perfect than a gradient) */
    radial-gradient(circle at 42% 36%, #5C7E6E 0%, #4A6B5C 45%, #3A5A4C 75%, #2A4438 100%);
  box-shadow:
    /* Soft atmospheric glow under the wax */
    0 32px 80px rgba(74, 107, 92, 0.25),
    /* Sharp cast shadow */
    0 18px 36px rgba(0, 0, 0, 0.55),
    /* Outer rim glint */
    0 0 0 1px rgba(110, 145, 130, 0.18);
}

/* Raised outer rim — light catches on top edge, shadow under */
.wax-rim {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
  box-shadow:
    /* Outer rim raised: light from above */
    inset 0 3px 4px rgba(255, 255, 255, 0.22),
    inset 0 -5px 8px rgba(0, 0, 0, 0.35),
    /* Inner recessed area starts ~12% in */
    inset 0 0 0 14px transparent;
}

/* The recessed inner field — creates the "stamped" depression */
.wax-rim::before {
  content: '';
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  box-shadow:
    /* Recessed: shadow falls inward from top */
    inset 0 6px 12px rgba(0, 0, 0, 0.35),
    /* Subtle highlight at bottom of recess (light bouncing) */
    inset 0 -3px 8px rgba(180, 220, 200, 0.08);
}

/* Soft top-left atmospheric light (very subtle for matte look) */
.wax-highlight--main {
  position: absolute;
  top: 18%;
  left: 22%;
  width: 36%;
  height: 24%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(200, 230, 215, 0.16) 0%, transparent 70%);
  filter: blur(8px);
  pointer-events: none;
  mix-blend-mode: screen;
}

/* Small rim catch (a tiny brighter spot on the upper-left rim) */
.wax-highlight--rim {
  position: absolute;
  top: 6%;
  left: 26%;
  width: 10%;
  height: 4%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  filter: blur(2.5px);
  pointer-events: none;
  mix-blend-mode: screen;
}

/* Bottom shadow inside the disc (weight at the bottom of the pour) */
.wax-shadow {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 10%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(10, 20, 14, 0.4) 0%, transparent 70%);
  filter: blur(8px);
  pointer-events: none;
}

/* × monogram — embossed (RAISED) into the recessed centre */
.wax-x {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 132px;
  line-height: 0.8;
  user-select: none;
  pointer-events: none;
}
/* Bottom shadow — cast by raised letter onto the recessed wax */
.wax-x--shadow {
  color: rgba(0, 0, 0, 0.45);
  transform: translate(0, 4px);
  filter: blur(2.5px);
}
/* Main raised letter — slightly lighter than the wax (catches light from above) */
.wax-x--main {
  color: #5C7E6E;
}
/* Top edge highlight — top of the raised letter catches the light */
.wax-x--highlight {
  color: rgba(180, 220, 200, 0.55);
  transform: translate(0, -1.5px);
}

/* Subtle ambient breathing animation */
@keyframes waxBreathe {
  0%, 100% { transform: rotate(-4deg) scale(1); }
  50%      { transform: rotate(-4deg) scale(1.006); }
}
.wax-seal-realistic {
  animation: waxBreathe 5s ease-in-out infinite;
}
.wax-seal-realistic:hover,
.wax-seal-realistic:active {
  animation: none;
}

/* Lift-away state — applied via GSAP on click. Defined here for reference. */
.wax-seal-realistic.is-lifted {
  pointer-events: none;
  animation: none;
}

.seal-copy {
  max-width: 540px;
  text-align: center;
}
.seal-copy .eyebrow {
  display: inline-block;
  color: var(--green, #4A6B5C);
  margin-bottom: 24px;
}
.seal-body {
  margin-top: 24px;
  font-family: var(--font-body);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.55;
  color: rgba(232, 229, 223, 0.7);
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}
.seal-hint {
  display: inline-block;
  margin-top: 24px;
  font-size: 10.5px;
  color: rgba(232, 229, 223, 0.5);
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

/* ============================ Scene 05 — Editions ======================= */

.scene--editions {
  background: var(--charcoal, #0F1113);
  flex-direction: column;
  gap: 96px;
  padding-top: 140px;
  padding-bottom: 160px;
  width: 100%;
}

/* Row = tagline | card, side by side on desktop, stacked on mobile */
.edition-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  align-items: center;
}
@media (min-width: 880px) {
  .edition-row {
    grid-template-columns: minmax(220px, 0.8fr) 1.4fr;
    gap: 64px;
  }
  /* Mirror Row 02 — card on left, tagline on right, for visual rhythm */
  .edition-row--reserve {
    grid-template-columns: 1.4fr minmax(220px, 0.8fr);
  }
  .edition-row--reserve .edition-row__tagline {
    order: 2;
    text-align: right;
  }
  .edition-row--reserve .edition-row__tagline .eyebrow {
    align-self: flex-end;
  }
  .edition-row--reserve .edition-card {
    order: 1;
  }
}
.edition-row__tagline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.edition-row__tagline .eyebrow {
  display: inline-block;
}
.edition-row__headline {
  font-family: var(--font-display, 'Archivo', sans-serif);
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  font-size: clamp(22px, 2.6vw, 32px);
  color: var(--parchment, #E8E5DF);
  margin: 0;
}
.edition-row__line {
  display: block;
}

/* ============================ Reserve-only badge ======================== */

.reserve-only-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  margin-bottom: 24px;
  background: rgba(74, 107, 92, 0.12);
  border: 1px solid rgba(74, 107, 92, 0.45);
  border-radius: 999px;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green, #4A6B5C);
}
.reserve-only-badge::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green, #4A6B5C);
  box-shadow: 0 0 12px rgba(74, 107, 92, 0.6);
}

/* ============================ Scene 03 — The Fraction =================== */

.scene--fraction {
  background: var(--charcoal, #0F1113);
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.fraction-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 36px;
  max-width: 800px;
  padding: 72px 24px;
}
.fraction-display {
  display: flex;
  align-items: stretch;
  font-family: var(--font-display, 'Archivo', sans-serif);
  font-weight: 700;
  font-size: clamp(140px, 24vw, 280px);
  line-height: 1;
  letter-spacing: -0.04em;
  margin: 16px 0;
}
.fraction-display__num {
  color: var(--green, #4A6B5C);
  text-shadow: 0 0 80px rgba(74, 107, 92, 0.55);
  padding: 0 0.18em 0 0;
  font-variant-numeric: tabular-nums;
  text-align: right;
  display: inline-block;
}
.fraction-display__divider {
  width: 1px;
  background: linear-gradient(to bottom, transparent 0%, rgba(232, 229, 223, 0.45) 20%, rgba(232, 229, 223, 0.45) 80%, transparent 100%);
  align-self: stretch;
  flex-shrink: 0;
}
.fraction-display__den {
  color: var(--parchment, #E8E5DF);
  opacity: 0.65;
  padding: 0 0 0 0.18em;
  font-variant-numeric: tabular-nums;
  display: inline-block;
}
.fraction-label {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--bronze, #9C6B3F);
  margin: 0;
}
.fraction-caption {
  font-family: var(--font-body, 'Archivo', sans-serif);
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.55;
  color: rgba(232, 229, 223, 0.6);
  margin: 0;
  max-width: 440px;
}

@media (max-width: 640px) {
  .fraction-stage {
    gap: 28px;
    padding: 80px 20px;
  }
  .fraction-display {
    font-size: clamp(96px, 32vw, 180px);
  }
  .fraction-label {
    font-size: 11px;
    letter-spacing: 0.28em;
  }
}


/* Mobile: centre the tagline above its card, tighter spacing */
@media (max-width: 879px) {
  .edition-row {
    gap: 24px;
    padding: 0 20px;
  }
  .edition-row__tagline {
    text-align: center;
    align-items: center;
    gap: 12px;
  }
  .edition-row__tagline .eyebrow {
    align-self: center;
  }
  .edition-row__headline {
    align-items: center;
    font-size: clamp(20px, 5.5vw, 26px);
  }
  /* Tighter card body padding on mobile */
  .edition-card__body {
    padding: 20px 22px 22px;
    gap: 16px;
  }
}

.edition-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  background: rgba(232, 229, 223, 0.03);
  border: 1px solid rgba(232, 229, 223, 0.1);
  color: var(--parchment, #E8E5DF);
  text-decoration: none;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
}
.edition-card__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: rgba(232, 229, 223, 0.02);
  position: relative;
}
.edition-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.edition-card:hover .edition-card__image img {
  transform: scale(1.04);
}
.edition-card__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  gap: 20px;
  padding: 24px 28px 28px;
}
.edition-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent 0%, var(--bronze, #9C6B3F) 50%, transparent 100%);
  transform: scaleX(0);
  transition: transform 0.6s ease;
}
.edition-card:hover {
  background: rgba(232, 229, 223, 0.06);
  border-color: rgba(156, 107, 63, 0.4);
  transform: translateY(-4px);
}
.edition-card:hover::before {
  transform: scaleX(1);
}
.edition-card--limited {
  border-color: rgba(74, 107, 92, 0.3);
}
.edition-card--limited::before {
  background: linear-gradient(to right, transparent 0%, var(--green, #4A6B5C) 50%, transparent 100%);
}

.edition-card__meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(232, 229, 223, 0.55);
}
.edition-card__title h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 2.2vw, 24px);
  letter-spacing: -0.015em;
  margin: 0 0 6px;
  color: var(--parchment, #E8E5DF);
}
.edition-card__sub {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(232, 229, 223, 0.5);
}
.edition-card__bottom {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.edition-card__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  color: var(--bronze, #9C6B3F);
}
.edition-card--limited .edition-card__price {
  color: var(--green, #4A6B5C);
}
.edition-card__arrow {
  font-family: var(--font-mono);
  font-size: 24px;
  color: rgba(232, 229, 223, 0.5);
  transition: transform 0.3s ease, color 0.3s ease;
}
.edition-card:hover .edition-card__arrow {
  transform: translateX(8px);
  color: var(--bronze, #9C6B3F);
}
.edition-card--limited:hover .edition-card__arrow {
  color: var(--green, #4A6B5C);
}

/* ============================ Footer minimal =========================== */

body.v3 .site-footer--minimal {
  background: #0A0C0E;
  border-top: 1px solid rgba(232, 229, 223, 0.06);
  padding: 64px 24px 32px;
}
.site-footer__row--minimal {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: flex-start;
}
.site-footer__row--minimal .site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.site-footer__row--minimal .site-footer__tagline {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze, #9C6B3F);
}
.site-footer__cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  width: 100%;
}
body.v3 .site-footer__col h4 {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(232, 229, 223, 0.5);
  margin: 0 0 12px;
}
body.v3 .site-footer__col ul { list-style: none; padding: 0; margin: 0; }
body.v3 .site-footer__col li { margin: 0 0 8px; }
body.v3 .site-footer__col a {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--parchment, #E8E5DF);
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s ease, color 0.2s ease;
}
body.v3 .site-footer__col a:hover { opacity: 1; color: var(--bronze, #9C6B3F); }

body.v3 .site-footer__bot {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(232, 229, 223, 0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(232, 229, 223, 0.45);
}

/* ============================ Responsive ============================== */

@media (min-width: 768px) {
  .editions-grid { grid-template-columns: 1fr 1fr; }
  body.v3 .site-footer__cols { grid-template-columns: repeat(2, max-content); gap: 96px; }
  .site-footer__row--minimal { flex-direction: row; justify-content: space-between; align-items: flex-start; }
  body.v3 .site-footer__bot { flex-direction: row; justify-content: space-between; }
}

@media (max-width: 767px) {
  .scene--material { flex-direction: column; gap: 48px; padding: 80px 24px; }
  .scene--material .patina-copy { text-align: center; }
  .edition-grid { grid-template-columns: repeat(5, 1fr); }
}

/* ============================ Animation initial states =============== */
/* GSAP sets the final state on enter; these are the from states */

body.v3 .display .word { opacity: 1; } /* GSAP overrides on init */

/* Respect user motion preference */
@media (prefers-reduced-motion: reduce) {
  .scroll-hint__line { animation: none; }
  .edition-card { transition: none; }
}


/* =========================================================================
   15. v3 PDP — Product detail pages (animation-first)
   ========================================================================= */

body.v3.pdp-page,
body.v3.about-page {
  background: var(--charcoal, #0F1113);
  color: var(--ink-1, #E8E5DF);
}

body.v3 .site-header--pdp {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(15, 17, 19, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232, 229, 223, 0.06);
}

/* ============================ PDP Hero ================================ */

.pdp-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  justify-items: center;
  padding: 96px 24px 64px;
  gap: 32px;
  text-align: center;
}
.pdp-hero__viewer {
  width: 100%;
  max-width: 560px;
  aspect-ratio: 1 / 1;
}
.pdp-hero__viewer model-viewer {
  width: 100%;
  height: 100%;
  background: transparent;
  --poster-color: transparent;
  --progress-bar-color: var(--bronze, #9C6B3F);
}
.pdp-hero__copy {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.pdp-hero__copy .eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bronze, #9C6B3F);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.pdp-hero__copy .display .word {
  display: inline-block;
  margin-right: 0.2em;
}
.pdp-hero__price-row {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.pdp-hero__price-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.pdp-hero__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 64px);
  color: var(--bronze, #9C6B3F);
  letter-spacing: -0.02em;
  line-height: 1;
}
.pdp-hero__price--green { color: var(--green, #4A6B5C); }
.pdp-hero__meta {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(232, 229, 223, 0.55);
}

.held-pill--small {
  display: inline-block;
  background: var(--signal, #D24A1E);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  padding: 3px 8px;
  border-radius: 2px;
  text-transform: uppercase;
}

/* ============================ CTAs — v3 sizing ======================== */

body.v3 .cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 18px 32px;
  background: var(--bronze, #9C6B3F);
  color: #0F1113;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--bronze, #9C6B3F);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
  border-radius: 2px;
}
body.v3 .cta:hover { transform: translateY(-2px); }
body.v3 .cta--outline {
  background: transparent;
  color: var(--bronze, #9C6B3F);
}
body.v3 .cta--outline:hover {
  background: var(--bronze, #9C6B3F);
  color: #0F1113;
}
body.v3 .cta--green {
  background: var(--green, #4A6B5C);
  color: #fff;
  border-color: var(--green, #4A6B5C);
}
body.v3 .cta--green:hover { background: #5C7E6E; border-color: #5C7E6E; }
body.v3 .cta--xl {
  padding: 22px 40px;
  font-size: 14.5px;
  letter-spacing: 0.16em;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

/* ============================ PDP blocks ============================== */

.pdp-page .scene,
.about-page .scene {
  padding: 96px 24px;
  min-height: 60vh;
}
.scene--alt {
  background: rgba(232, 229, 223, 0.03);
}
.pdp-block {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.pdp-block .eyebrow {
  display: inline-block;
  margin-bottom: 24px;
}
.pdp-block .display {
  margin-bottom: 24px;
}
.pdp-block__lede {
  font-family: var(--font-body, 'Archivo', sans-serif);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.55;
  color: rgba(232, 229, 223, 0.78);
  margin: 0 auto;
  max-width: 580px;
}
.pdp-block--cost .display { color: var(--bronze, #9C6B3F); }

/* ============================ Specification (v3) ===================== */

.pdp__details--v3 {
  margin-top: 24px;
  border-top: 1px solid rgba(232, 229, 223, 0.1);
  border-bottom: 1px solid rgba(232, 229, 223, 0.1);
  text-align: left;
}
.pdp__details--v3 summary {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(232, 229, 223, 0.7);
  cursor: pointer;
  padding: 20px 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: color 0.15s ease;
}
.pdp__details--v3 summary:hover { color: var(--bronze); }
.pdp__details--v3 summary::-webkit-details-marker { display: none; }
.pdp__details--v3 summary::before {
  content: '+';
  font-size: 16px;
  color: var(--bronze, #9C6B3F);
}
.pdp__details--v3[open] summary::before { content: '−'; }
.pdp__details--v3 dl {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding-bottom: 24px;
  margin: 0;
}
.pdp__details--v3 dt {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(232, 229, 223, 0.5);
  margin: 0;
}
.pdp__details--v3 dd {
  margin: 0 0 8px;
  color: rgba(232, 229, 223, 0.9);
  font-size: 14px;
  line-height: 1.5;
}

@media (min-width: 640px) {
  .pdp__details--v3 dl {
    grid-template-columns: 140px 1fr;
    gap: 14px 24px;
  }
  .pdp__details--v3 dd { margin-bottom: 0; }
}

/* ============================ Protocol list (v3) ===================== */

.protocol-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.protocol-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(232, 229, 223, 0.08);
  align-items: baseline;
}
.protocol-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze, #9C6B3F);
}
.protocol-list li > span:last-child {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(232, 229, 223, 0.85);
}

/* ============================ Numbered plate visual =================== */

.numbered-plate {
  margin: 48px auto 0;
  max-width: 280px;
  aspect-ratio: 4 / 1;
  background: linear-gradient(135deg, #B98758 0%, #8A5A36 100%);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  color: #0F1113;
}
.numbered-plate__mono {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.65;
}
.numbered-plate__number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.05em;
}

/* ============================ Seal scene on PDP ====================== */

.scene--seal--pdp {
  flex-direction: column;
  gap: 48px;
  padding: 120px 24px;
}

/* ============================ Waitlist scene ========================= */

.scene--waitlist {
  background: rgba(74, 107, 92, 0.06);
  border-top: 1px solid rgba(74, 107, 92, 0.2);
  border-bottom: 1px solid rgba(74, 107, 92, 0.2);
}
.waitlist--v3 {
  margin: 40px auto 0;
  max-width: 480px;
}
.waitlist--v3 .waitlist__form {
  display: flex;
  gap: 0;
  border: 1px solid rgba(232, 229, 223, 0.2);
  border-radius: 2px;
  overflow: hidden;
}
.waitlist--v3 input {
  flex: 1;
  padding: 16px 20px;
  background: transparent;
  border: 0;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--parchment);
  outline: none;
}
.waitlist--v3 input::placeholder { color: rgba(232, 229, 223, 0.4); }
.waitlist--v3 input:focus { background: rgba(232, 229, 223, 0.04); }
.waitlist--v3 button {
  padding: 16px 32px;
  background: var(--green, #4A6B5C);
  color: #fff;
  border: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease;
}
.waitlist--v3 button:hover { background: #5C7E6E; }

/* ============================ About page (v3) ======================== */

.scene--about-hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 64px;
  text-align: center;
}
.about-hero-stage {
  max-width: 920px;
}
.about-hero-stage .eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bronze, #9C6B3F);
  margin-bottom: 24px;
}
.about-hero-stage .display .word {
  display: inline-block;
  margin-right: 0.2em;
}
.about-hero-sub {
  margin-top: 40px;
  font-family: var(--font-body);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.55;
  color: rgba(232, 229, 223, 0.75);
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.scene--values {
  padding: 120px 24px;
}
.values-stage {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}
.values-stage .eyebrow {
  display: inline-block;
  margin-bottom: 24px;
}
.values-stage .display { margin-bottom: 64px; }
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  text-align: left;
}
.value {
  padding: 32px;
  background: rgba(232, 229, 223, 0.03);
  border: 1px solid rgba(232, 229, 223, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.value__num {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bronze, #9C6B3F);
}
.value__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--parchment);
}
.value p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  color: rgba(232, 229, 223, 0.7);
  margin: 0;
}

.scene--about-close {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 96px 24px;
  text-align: center;
  background: rgba(232, 229, 223, 0.03);
}
.about-close-stage {
  max-width: 720px;
}
.about-close-stage .eyebrow {
  display: inline-block;
  margin-bottom: 24px;
}
.about-close-cta {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

@media (min-width: 768px) {
  .pdp-hero {
    grid-template-columns: 1fr 1fr;
    text-align: left;
    padding: 120px 64px 64px;
    gap: 64px;
  }
  .pdp-hero__copy { align-items: flex-start; }
  .pdp-hero__price-row { align-items: flex-start; }
  .pdp-hero__price-block { align-items: flex-start; }

  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .about-close-cta { flex-direction: row; }
}

@media (min-width: 1080px) {
  .values-grid { grid-template-columns: repeat(3, 1fr); }
}
