  :root {
    color-scheme: dark;
    --onyx: #100c07;
    --onyx-2: #1b150d;
    --onyx-3: #261d11;
    --gilt: #deb45c;
    --gilt-pale: #f6dc9c;
    --bloom: #edb82a;
    --parchment: #fcf4e3;
    --smoke: #cbbfa6;
    --hair: rgba(222, 180, 92, 0.28);
    --hair-strong: rgba(222, 180, 92, 0.6);
    --ok: #9cbf7a;
    --warn: #e59a78;
    --display: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
    --caps: "Cinzel", "Trajan Pro", Georgia, serif;
    --body: "Figtree", "Segoe UI", system-ui, sans-serif;
    --bar-h: 68px;
    --ease: cubic-bezier(.2, .7, .1, 1);
  }
  * { box-sizing: border-box; }
  [hidden] { display: none !important; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--onyx);
    color: var(--parchment);
    font: 400 16px/1.65 var(--body);
    -webkit-font-smoothing: antialiased;
    padding-bottom: calc(var(--bar-h) + env(safe-area-inset-bottom, 0px));
  }
  body::after { /* film grain */
    content: ""; position: fixed; inset: 0; z-index: 50; pointer-events: none; opacity: .07; mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  }
  a { color: inherit; }
  :focus-visible { outline: 1.5px solid var(--gilt-pale); outline-offset: 4px; }
  .wrap { max-width: 1180px; margin-inline: auto; padding-inline: 24px; }

  .caps { font-family: var(--caps); font-weight: 500; font-size: 12px; letter-spacing: .32em; text-transform: uppercase; color: var(--gilt); }
  .display { font-family: var(--display); font-weight: 300; letter-spacing: -.01em; line-height: 1.02; text-wrap: balance; margin: 0; }
  .display em { font-style: italic; color: var(--gilt-pale); }
  .lede { color: var(--smoke); font-size: 17px; max-width: 46ch; margin: 0; }

  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    min-height: 50px; padding: 0 26px; border-radius: 2px; border: 1px solid transparent;
    font: 600 13px/1 var(--body); letter-spacing: .14em; text-transform: uppercase; text-decoration: none; cursor: pointer; white-space: nowrap;
    transition: background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
  }
  .btn-gold { background: linear-gradient(180deg, #e3c27a, #b98f45); color: #17120a; box-shadow: inset 0 1px 0 rgba(255,255,255,.35); }
  .btn-gold:hover { background: linear-gradient(180deg, #edd08e, #c79d52); }
  .btn-line { border-color: var(--hair-strong); color: var(--parchment); background: transparent; }
  .btn-line:hover { border-color: var(--gilt-pale); color: var(--gilt-pale); }
  .btn .arrow { width: 16px; height: 1px; background: currentColor; position: relative; }
  .btn .arrow::after { content: ""; position: absolute; right: 0; top: -3px; width: 7px; height: 7px; border-top: 1px solid currentColor; border-right: 1px solid currentColor; transform: rotate(45deg); }

  /* ---------- Header ---------- */
  .top {
    position: fixed; top: 0; left: 0; right: 0; z-index: 30;
    display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
    padding: calc(16px + env(safe-area-inset-top, 0px)) 28px 16px;
    background: linear-gradient(rgba(12,10,7,.92), rgba(12,10,7,0));
  }
  .top nav { display: flex; gap: 28px; }
  .top nav a { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; text-decoration: none; color: var(--smoke); transition: color .3s; }
  .top nav a:hover { color: var(--parchment); }
  .mark { text-align: center; text-decoration: none; line-height: 1; }
  .mark b { display: block; font-family: var(--caps); font-weight: 600; font-size: 21px; letter-spacing: .22em; color: var(--parchment); }
  .mark span { display: block; margin-top: 6px; font-family: var(--caps); font-size: 8.5px; letter-spacing: .5em; color: var(--gilt); }
  .top .right { display: flex; justify-content: flex-end; }
  .top .right .btn { min-height: 40px; padding: 0 18px; font-size: 11px; }

  /* ---------- Story ---------- */
  .story { position: relative; height: 560vh; }
  .stage { position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden; }
  #dust { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; }
  #scene { position: absolute; top: 0; bottom: 0; right: 0; width: 60%; height: 100%; z-index: 0;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 28%), linear-gradient(0deg, transparent 0, #000 14%);
    -webkit-mask-composite: source-in; mask-image: linear-gradient(90deg, transparent 0, #000 28%), linear-gradient(0deg, transparent 0, #000 14%); mask-composite: intersect; }
  .vignette { position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background: radial-gradient(70% 80% at 68% 50%, rgba(12,10,7,0) 40%, rgba(12,10,7,.85) 100%), linear-gradient(90deg, var(--onyx) 30%, rgba(12,10,7,0) 52%); }
  .chapters { position: absolute; z-index: 2; left: max(28px, calc((100vw - 1180px) / 2 + 24px)); top: 50%; transform: translateY(-46%); width: min(520px, 44vw); }
  .ch { position: absolute; left: 0; right: 0; top: 50%; transform: translateY(calc(-50% + 24px)); opacity: 0; transition: opacity .8s var(--ease), transform .9s var(--ease); pointer-events: none; }
  .ch.on { opacity: 1; transform: translateY(-50%); pointer-events: auto; }
  .ch .caps { display: flex; align-items: center; gap: 14px; }
  .ch .caps::after { content: ""; width: 48px; height: 1px; background: var(--hair-strong); }
  .ch h1.display { font-size: clamp(46px, 6.2vw, 92px); margin: 22px 0 22px; }
  .ch h2.display { font-size: clamp(38px, 4.6vw, 68px); margin: 20px 0 20px; }
  .ch .actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
  .ch .fact { margin-top: 26px; display: flex; gap: 14px; align-items: baseline; border-top: 1px solid var(--hair); padding-top: 16px; max-width: 46ch; }
  .ch .fact b { font-family: var(--display); font-weight: 400; font-size: 34px; color: var(--gilt-pale); font-variant-numeric: lining-nums; white-space: nowrap; }
  .ch .fact span { font-size: 14px; color: var(--smoke); }

  .rail { position: absolute; z-index: 2; right: 28px; top: 50%; transform: translateY(-50%); display: grid; gap: 18px; list-style: none; margin: 0; padding: 0; }
  .rail li { display: flex; align-items: center; justify-content: flex-end; gap: 12px; font-family: var(--caps); font-size: 10px; letter-spacing: .28em; color: rgba(239,230,212,.72); text-shadow: 0 1px 8px rgba(0,0,0,.85); transition: color .5s; }
  .rail li i { width: 18px; height: 1.5px; background: currentColor; transition: width .5s var(--ease); }
  .rail li.on { color: var(--gilt-pale); }
  .rail li.on i { width: 36px; }
  .cue { position: absolute; z-index: 2; left: 50%; bottom: calc(var(--bar-h) + 18px); transform: translateX(-50%); display: grid; justify-items: center; gap: 10px; font-family: var(--caps); font-size: 10px; letter-spacing: .34em; color: var(--smoke); transition: opacity .6s; }
  .cue i { width: 1px; height: 42px; background: linear-gradient(var(--gilt), transparent); animation: cue 2.2s var(--ease) infinite; transform-origin: top; }
  @keyframes cue { 0% { transform: scaleY(0); } 60% { transform: scaleY(1); opacity: 1; } 100% { transform: scaleY(1); opacity: 0; } }

  /* ---------- Sections ---------- */
  section.band { padding-block: 120px; position: relative; }
  section.band + section.band { border-top: 1px solid var(--hair); }
  .head { display: grid; gap: 18px; margin-bottom: 56px; max-width: 720px; }
  .head h2.display { font-size: clamp(38px, 4.8vw, 64px); }

  /* Promise strip */
  .promise { display: grid; grid-template-columns: repeat(4, 1fr); border-block: 1px solid var(--hair); }
  .promise div { padding: 30px 26px; display: grid; gap: 6px; }
  .promise div + div { border-left: 1px solid var(--hair); }
  .promise b { font-family: var(--display); font-weight: 400; font-size: 24px; line-height: 1.15; }
  .promise span { font-size: 14px; color: var(--smoke); }

  /* Product spotlight */
  .spot { display: grid; grid-template-columns: 1.05fr 1fr; gap: 72px; align-items: center; }
  .plinth { position: relative; aspect-ratio: 4 / 5; max-width: 100%; display: grid; place-items: center; background:
      radial-gradient(46% 38% at 50% 62%, rgba(237,184,42,.22), rgba(237,184,42,0) 70%),
      radial-gradient(60% 8% at 50% 88%, rgba(0,0,0,.9), transparent 70%), var(--onyx-2);
    border: 1px solid var(--hair); overflow: hidden; }
  .plinth::before { content: ""; position: absolute; inset: 18px; border: 1px solid var(--hair); pointer-events: none; }
  .plinth .pv { position: absolute; inset: 0; display: grid; place-items: center; opacity: 0; transform: translateY(12px) scale(.98); transition: opacity .6s var(--ease), transform .8s var(--ease); }
  .plinth .pv.on { opacity: 1; transform: none; }
  .plinth img { height: 74%; width: auto; filter: drop-shadow(0 30px 30px rgba(0,0,0,.7)); }
  .plinth svg { height: 76%; width: auto; }
  .plinth .note { position: absolute; left: 34px; bottom: 30px; font-size: 12px; color: var(--smoke); letter-spacing: .06em; }
  .buy { display: grid; gap: 28px; }
  .buy h2.display { font-size: clamp(40px, 4.6vw, 62px); }
  .sizes { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--hair); }
  .sizes { position: relative; }
  .sizes input { position: absolute; opacity: 0; pointer-events: none; width: 1px; height: 1px; margin: 0; left: 0; top: 0; }
  .sizes label { padding: 16px 10px; text-align: center; cursor: pointer; display: grid; gap: 2px; transition: background-color .3s, color .3s; }
  .sizes label + input + label, .sizes input + label ~ label { border-left: 1px solid var(--hair); }
  .sizes label b { font-family: var(--display); font-weight: 400; font-size: 26px; line-height: 1; }
  .sizes label small { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--smoke); }
  .sizes input:checked + label { background: var(--onyx-3); box-shadow: inset 0 -2px 0 var(--gilt); }
  .sizes input:checked + label small { color: var(--gilt-pale); }
  .sizes input:focus-visible + label { outline: 1.5px solid var(--gilt-pale); outline-offset: -4px; }
  .priceline { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; border-bottom: 1px solid var(--hair); padding-bottom: 20px; }
  .priceline strong { font-family: var(--display); font-weight: 400; font-size: 44px; line-height: 1; font-variant-numeric: lining-nums tabular-nums; }
  .priceline span { font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--ok); }
  .priceline span.muted { color: var(--smoke); }
  .spec { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: 12px 28px; font-size: 15px; }
  .spec dt { color: var(--smoke); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; padding-top: 3px; }
  .spec dd { margin: 0; font-variant-numeric: tabular-nums; }
  .buy .row { display: flex; gap: 14px; flex-wrap: wrap; }
  .buy .row .btn { flex: 1 1 200px; }
  .admin-note { font-size: 12px; color: var(--smoke); margin: 0; }

  /* Standard */
  .standard { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
  .standard article { padding: 8px 36px 8px 0; display: grid; gap: 14px; align-content: start; }
  .standard article + article { padding-left: 36px; border-left: 1px solid var(--hair); }
  .standard h3 { font-family: var(--display); font-weight: 400; font-size: 30px; line-height: 1.1; margin: 0; }
  .standard p { color: var(--smoke); margin: 0; }
  .standard .status { justify-self: start; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; padding: 5px 10px; border: 1px solid var(--hair-strong); color: var(--gilt-pale); }

  /* Kitchen */
  .kitchen { display: grid; grid-template-columns: 1fr 1.2fr; gap: 72px; align-items: start; }
  .uses { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--hair); }
  .uses li { display: grid; grid-template-columns: 170px 1fr; gap: 24px; padding: 24px 0; border-bottom: 1px solid var(--hair); align-items: baseline; }
  .uses b { font-family: var(--display); font-weight: 400; font-style: italic; font-size: 28px; color: var(--gilt-pale); line-height: 1.1; }
  .uses span { color: var(--smoke); }

  /* Delivery */
  .route { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; list-style: none; margin: 0; padding: 0; counter-reset: r; }
  .route li { counter-increment: r; display: grid; gap: 10px; align-content: start; padding-top: 22px; border-top: 1px solid var(--hair-strong); position: relative; }
  .route li::before { content: counter(r, upper-roman); font-family: var(--caps); font-size: 12px; letter-spacing: .2em; color: var(--gilt); }
  .route li::after { content: ""; position: absolute; top: -4px; left: 0; width: 7px; height: 7px; background: var(--gilt); transform: rotate(45deg); }
  .route b { font-family: var(--display); font-weight: 400; font-size: 26px; line-height: 1.15; }
  .route span { color: var(--smoke); font-size: 15px; }
  .rates { margin-top: 56px; display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--hair); }
  .rates div { padding: 22px 24px; display: grid; gap: 4px; }
  .rates div + div { border-left: 1px solid var(--hair); }
  .rates small { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--smoke); }
  .rates b { font-weight: 500; }

  /* Reviews + FAQ */
  .split { display: grid; grid-template-columns: 1fr 1.3fr; gap: 72px; align-items: start; }
  .reviews { border: 1px solid var(--hair); padding: 36px; display: grid; gap: 14px; }
  .stars { display: flex; gap: 6px; color: var(--hair-strong); }
  .stars svg { width: 18px; height: 18px; }
  .reviews p { margin: 0; color: var(--smoke); }
  .faq details { border-bottom: 1px solid var(--hair); }
  .faq details:first-child { border-top: 1px solid var(--hair); }
  .faq summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 0; font-family: var(--display); font-size: 24px; line-height: 1.2; }
  .faq summary::-webkit-details-marker { display: none; }
  .faq summary i { flex: none; width: 14px; height: 14px; position: relative; }
  .faq summary i::before, .faq summary i::after { content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 1px; background: var(--gilt); transition: transform .4s var(--ease); }
  .faq summary i::after { transform: rotate(90deg); }
  .faq details[open] summary i::after { transform: rotate(0); }
  .faq p { margin: 0 0 22px; color: var(--smoke); max-width: 62ch; }

  /* Order */
  .order { display: grid; grid-template-columns: 1.25fr 1fr; gap: 56px; align-items: start; }
  form#orderForm { display: grid; gap: 22px; }
  .field { display: grid; gap: 8px; }
  .field label, .field .lbl { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--smoke); }
  .field input:not([type=radio]), .field select, .field textarea {
    width: 100%; min-height: 52px; padding: 12px 0; border: 0; border-bottom: 1px solid var(--hair-strong); border-radius: 0;
    background: transparent; color: var(--parchment); font: 400 18px var(--body); transition: border-color .3s;
  }
  .field select { -webkit-appearance: none; appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--gilt) 50%), linear-gradient(135deg, var(--gilt) 50%, transparent 50%); background-position: right 6px center, right 0 center; background-size: 6px 6px; background-repeat: no-repeat; }
  .field select option { background: var(--onyx-2); color: var(--parchment); }
  .field textarea { min-height: 80px; resize: vertical; }
  .field input:focus, .field select:focus, .field textarea:focus { outline: none; border-bottom-color: var(--gilt-pale); }
  .field input::placeholder, .field textarea::placeholder { color: rgba(154,143,123,.6); }
  .field .hint { font-size: 13px; color: var(--smoke); }
  .field .err { font-size: 13px; color: var(--warn); }
  .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
  .qty { display: inline-flex; align-items: center; border: 1px solid var(--hair-strong); justify-self: start; }
  .qty button { width: 48px; height: 48px; background: transparent; color: var(--parchment); border: 0; font-size: 20px; cursor: pointer; }
  .qty button:hover { color: var(--gilt-pale); }
  .qty output { min-width: 48px; text-align: center; font-variant-numeric: tabular-nums; font-size: 17px; }
  .ledger { border: 1px solid var(--hair); padding: 32px; display: grid; gap: 18px; position: sticky; top: 96px; background: var(--onyx-2); }
  .ledger dl { margin: 0; display: grid; grid-template-columns: 1fr auto; gap: 14px 20px; }
  .ledger dt { color: var(--smoke); }
  .ledger dd { margin: 0; text-align: right; font-variant-numeric: tabular-nums; }
  .ledger .total { border-top: 1px solid var(--hair); padding-top: 16px; font-family: var(--display); font-size: 28px; color: var(--parchment); }
  .ledger .nudge { margin: 0; font-size: 14px; color: var(--ok); }
  .ledger .fine { margin: 0; font-size: 13px; color: var(--smoke); }
  .success { border-left: 1px solid var(--ok); padding: 6px 0 6px 18px; display: grid; gap: 4px; }
  .success b { font-family: var(--display); font-weight: 400; font-size: 26px; }
  .success span { color: var(--smoke); }
  .demo { font-size: 12px; color: var(--smoke); margin: 0; }

  footer { border-top: 1px solid var(--hair); padding-block: 64px 40px; }
  footer .cols { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; font-size: 14px; color: var(--smoke); }
  footer h4 { margin: 0 0 14px; font-family: var(--caps); font-weight: 500; font-size: 11px; letter-spacing: .28em; color: var(--gilt); }
  footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
  footer a { text-decoration: none; }
  footer a:hover { color: var(--parchment); }
  footer .sig { font-family: var(--display); font-style: italic; font-size: 20px; color: var(--parchment); margin: 14px 0 0; line-height: 1.4; }
  footer .legal { margin-top: 48px; padding-top: 22px; border-top: 1px solid var(--hair); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12px; color: var(--smoke); }

  /* Order bar + WhatsApp */
  .bar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 40; min-height: var(--bar-h);
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 10px 28px calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(12,10,7,.9); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid var(--hair);
  }
  .bar .who { display: flex; align-items: center; gap: 14px; line-height: 1.25; }
  .bar .who img { height: 44px; width: auto; }
  .bar .who b { display: block; font-family: var(--display); font-weight: 500; font-size: 19px; }
  .bar .who span { font-size: 12px; color: var(--smoke); letter-spacing: .04em; }
  .bar .go { display: flex; align-items: center; gap: 12px; }
  .wa { width: 46px; height: 46px; border: 1px solid var(--hair-strong); display: grid; place-items: center; color: var(--gilt-pale); text-decoration: none; transition: border-color .3s, color .3s; }
  .wa:hover { border-color: #6fd08a; color: #6fd08a; }
  .wa svg { width: 20px; height: 20px; }


  /* Warmth: golden light behind sections so the black reads rich, not flat */
  section.band { background: radial-gradient(90% 60% at 50% 0%, rgba(237,184,42,.07), rgba(237,184,42,0) 70%); }
  section.band:nth-of-type(even) { background: radial-gradient(80% 70% at 100% 20%, rgba(237,184,42,.09), rgba(237,184,42,0) 60%), var(--onyx-2); }
  .caps { color: var(--bloom); }
  .display em { background: linear-gradient(100deg, #ffe7a6 0%, #f2c24a 45%, #ffe9b0 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
  .btn-gold { background: linear-gradient(180deg, #ffe08f, #e0ad48 55%, #c98f2e); color: #1a1206; box-shadow: 0 8px 24px rgba(237,184,42,.22), inset 0 1px 0 rgba(255,255,255,.5); }
  .btn-gold:hover { background: linear-gradient(180deg, #ffe9a8, #eab955 55%, #d49a36); }
  .promise { background: linear-gradient(90deg, rgba(237,184,42,.06), rgba(237,184,42,.12), rgba(237,184,42,.06)); }
  .promise b { color: var(--gilt-pale); }
  .plinth { border-color: var(--hair-strong); }
  .priceline strong, .ledger .total { color: var(--gilt-pale); }
  .uses b, .route b { color: var(--gilt-pale); }
  .lede, .standard p, .uses span, .route span, .faq p { color: var(--smoke); }


  /* ---------- Premium finish: foil gold, label ornament, deeper ground ---------- */
  :root { --foil: linear-gradient(100deg, #8a6417 0%, #e9c874 22%, #fff1c1 38%, #c9982f 55%, #f3d98f 72%, #a47a22 100%); }
  body { background: radial-gradient(120% 60% at 50% 0%, #1a130a 0%, var(--onyx) 55%) fixed, var(--onyx); }
  .display em, .caps, .mark b, .ch .fact b, .priceline strong, .ledger .total, .uses b, .route b, .promise b {
    background: var(--foil); background-size: 200% 100%; -webkit-background-clip: text; background-clip: text; color: transparent;
  }
  .mark b { animation: foil 9s linear infinite; }
  @keyframes foil { from { background-position: 0% 0; } to { background-position: 200% 0; } }
  .head h2.display::after, .buy h2.display::after { content: ""; display: block; width: 140px; height: 8px; margin-top: 20px; background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='8'><defs><linearGradient id='g'><stop offset='0' stop-color='%23c9982f' stop-opacity='0'/><stop offset='.5' stop-color='%23f3d98f'/><stop offset='1' stop-color='%23c9982f' stop-opacity='0'/></linearGradient></defs><rect x='0' y='3.5' width='56' height='1' fill='url(%23g)'/><rect x='84' y='3.5' width='56' height='1' fill='url(%23g)'/><circle cx='62' cy='4' r='1.8' fill='%23e6c27a'/><circle cx='70' cy='4' r='2.2' fill='%23f3d98f'/><circle cx='78' cy='4' r='1.8' fill='%23e6c27a'/></svg>") no-repeat; }
  .btn-gold { background: var(--foil); background-size: 220% 100%; background-position: 20% 0; color: #1a1206; border: 0; box-shadow: 0 10px 30px rgba(201,152,47,.28), inset 0 1px 0 rgba(255,255,255,.55); transition: background-position .8s var(--ease), box-shadow .4s; }
  .btn-gold:hover { background: var(--foil); background-size: 220% 100%; background-position: 90% 0; box-shadow: 0 12px 36px rgba(201,152,47,.4), inset 0 1px 0 rgba(255,255,255,.6); }
  .btn-line { border-image: linear-gradient(100deg, #8a6417, #f3d98f, #a47a22) 1; }
  .plinth, .ledger, .rates, .reviews { border: 1px solid transparent; border-image: linear-gradient(160deg, rgba(243,217,143,.55), rgba(138,100,23,.25) 40%, rgba(243,217,143,.45)) 1; }
  .sizes { border-image: linear-gradient(100deg, rgba(138,100,23,.5), rgba(243,217,143,.7), rgba(138,100,23,.5)) 1; }
  .sizes input:checked + label { background: linear-gradient(180deg, rgba(243,217,143,.10), rgba(243,217,143,.02)); box-shadow: inset 0 -2px 0 #e6c27a; }
  .bar { background: linear-gradient(180deg, rgba(16,12,7,.88), rgba(10,8,5,.97)); border-top: 1px solid transparent; border-image: linear-gradient(90deg, transparent, rgba(243,217,143,.55), transparent) 1; }
  @media (prefers-reduced-motion: reduce) { .mark b { animation: none; } }

  /* ---------- Responsive ---------- */
  @media (max-width: 980px) {
    .spot, .kitchen, .split, .order { grid-template-columns: 1fr; gap: 48px; }
    .standard { grid-template-columns: 1fr; }
    .standard article, .standard article + article { padding: 28px 0; border-left: 0; border-top: 1px solid var(--hair); }
    .route { grid-template-columns: 1fr 1fr; }
    footer .cols { grid-template-columns: 1fr 1fr; }
    .ledger { position: static; }
  }
  @media (max-width: 760px) {
    .top { grid-template-columns: 1fr auto; padding-inline: 18px; }
    .top nav { display: none; }
    .mark { text-align: left; }
    .mark b { font-size: 17px; }
    #scene { width: 100%; -webkit-mask-image: none; mask-image: none; }
    .vignette { background: radial-gradient(90% 60% at 50% 38%, rgba(12,10,7,0) 35%, rgba(12,10,7,.8) 100%), linear-gradient(0deg, var(--onyx) 40%, rgba(12,10,7,.6) 52%, rgba(12,10,7,0) 64%); }
    .chapters { left: 20px; right: 20px; width: auto; top: auto; bottom: calc(var(--bar-h) + 26px); transform: none; height: 46vh; }
    .ch, .ch.on { top: auto; bottom: 0; transform: translateY(20px); }
    .ch.on { transform: none; }
    .ch h1.display { font-size: 44px; margin: 14px 0; }
    .ch h2.display { font-size: 36px; margin: 14px 0; }
    .ch .lede { font-size: 15px; }
    .ch .fact { margin-top: 16px; padding-top: 12px; }
    .ch .fact b { font-size: 26px; }
    .ch .actions { margin-top: 20px; }
    .rail { right: 14px; top: 96px; transform: none; gap: 10px; }
    .rail li { font-size: 0; gap: 0; }
    .cue { display: none; }
    section.band { padding-block: 80px; }
    .promise { grid-template-columns: 1fr 1fr; }
    .promise div:nth-child(3) { border-left: 0; }
    .promise div:nth-child(n+3) { border-top: 1px solid var(--hair); }
    .uses li { grid-template-columns: 1fr; gap: 6px; }
    .rates { grid-template-columns: 1fr; }
    .rates div + div { border-left: 0; border-top: 1px solid var(--hair); }
    .row2 { grid-template-columns: 1fr; }
    .bar { padding-inline: 16px; }
    .bar .who img, .bar .who span { display: none; }
    .bar .who b { font-size: 17px; }
  }
  @media (max-width: 480px) {
    .route { grid-template-columns: 1fr; }
    footer .cols { grid-template-columns: 1fr; }
    .reviews { padding: 26px; }
    .ledger { padding: 24px; }
  }


  /* ---------- Phones first: lighter story, tighter sections ---------- */
  @media (max-width: 760px) {
    .story { height: 440vh; }
    section.band { padding-block: 64px; }
    .head { margin-bottom: 32px; gap: 12px; }
    .head h2.display, .buy h2.display { font-size: 38px; }
    .spot { gap: 32px; }
    .plinth { aspect-ratio: 1 / 1; max-height: 62vh; margin-inline: auto; width: 100%; }
    .plinth::before { inset: 10px; }
    .plinth .note { left: 20px; bottom: 16px; }
    .priceline strong { font-size: 36px; }
    .spec { grid-template-columns: 1fr; gap: 2px; }
    .spec dd { margin-bottom: 12px; }
    .uses li { padding: 18px 0; }
    .uses b { font-size: 24px; }
    .route { gap: 26px; }
    .rates { margin-top: 36px; }
    .faq summary { font-size: 21px; padding: 18px 0; }
    .ledger { padding: 22px; }
    .btn { min-height: 52px; }
    .ch .actions .btn { flex: 1 1 140px; }
    .promise div { padding: 22px 16px; }
    .promise b { font-size: 20px; }
    footer { padding-block: 48px 28px; }
    #scene { bottom: auto; height: 60%; -webkit-mask-image: linear-gradient(180deg, #000 72%, transparent); mask-image: linear-gradient(180deg, #000 72%, transparent); }
    .vignette { background: linear-gradient(0deg, var(--onyx) 38%, rgba(12,10,7,0) 48%); }
    .chapters { height: 38vh; }
  }
  .ch[data-ch="0"] > * { animation: rise 1.2s var(--ease) both; }
  .ch[data-ch="0"] > :nth-child(2) { animation-delay: .12s; }
  .ch[data-ch="0"] > :nth-child(3) { animation-delay: .24s; }
  .ch[data-ch="0"] > :nth-child(4) { animation-delay: .36s; }
  @keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .cue i, .ch[data-ch="0"] > * { animation: none; }
    .story { height: auto; }
    .stage { position: relative; height: auto; display: grid; }
    #scene { position: relative; width: 100%; height: 70vh; }
    .vignette, #dust, .rail, .cue { display: none; }
    .chapters { position: static; transform: none; width: auto; height: auto; padding: 110px 24px 24px; display: grid; gap: 56px; }
    .ch, .ch.on { position: static; opacity: 1; transform: none; }
  }
