/* ─────────────────────────────────────────────
   LUX-POOL — Cinematic editorial prototype
   Single direction. Dark, water-wavy, luxurious.
   ───────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --bg: #07090d;
  --bg-deep: #04050a;
  --bg-soft: #0e1218;
  --bg-elev: #141923;
  --fg: #f3eee2;
  /* Bumped soft from 0.62 → 0.82 to clear WCAG AA on dark bg. Faint is for true tertiary text only. */
  --fg-soft: rgba(243, 238, 226, 0.82);
  --fg-faint: rgba(243, 238, 226, 0.55);
  --line: rgba(243, 238, 226, 0.10);
  --line-strong: rgba(243, 238, 226, 0.22);
  --accent: oklch(0.78 0.10 75);    /* warm gold */
  --accent-2: oklch(0.72 0.09 215); /* pool aqua */

  --font-display: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --font-body: "Inter Tight", "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --pad: clamp(20px, 4vw, 64px);
  --max: 1480px;
}

/* Type pairings — Tweak */
[data-type="editorial"] {
  --font-display: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --font-body: "Inter Tight", "Inter", system-ui, sans-serif;
}
[data-type="modern"] {
  --font-display: "Fraunces", serif;
  --font-body: "Inter Tight", system-ui, sans-serif;
}
[data-type="classic"] {
  --font-display: "Playfair Display", serif;
  --font-body: "Manrope", system-ui, sans-serif;
}
[data-type="couture"] {
  --font-display: "DM Serif Display", serif;
  --font-body: "Inter Tight", system-ui, sans-serif;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; cursor: pointer; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--accent); color: var(--bg-deep); }

/* Type ramp */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-faint);
}
.eyebrow .dot {
  display: inline-block;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--accent);
  margin: 0 0.6em 0.2em 0;
  vertical-align: middle;
}
.display {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 0.92;
  font-size: clamp(48px, 9vw, 152px);
}
.display em { font-style: italic; font-weight: 300; color: var(--accent); }
.section-num { font-family: var(--font-mono); font-size: 11px; color: var(--fg-faint); letter-spacing: 0.12em; }

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

/* ── Top bar ── */
.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  height: 68px;
  z-index: 80;
  display: flex;
  align-items: center;
  padding: 0 var(--pad);
  background: color-mix(in oklab, var(--bg) 70%, transparent);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border-bottom: 1px solid var(--line);
  transition: background .4s ease;
}
.topbar .brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.02em;
  font-weight: 400;
  color: var(--fg);
  text-decoration: none;
}
.topbar .brand .wordmark { display: inline-block; }
.topbar nav {
  margin-left: auto;
  display: flex; gap: 32px;
  font-family: var(--font-mono);
  /* Up from 11px — 13px reads cleanly without dwarfing the wordmark. */
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-soft);
}
.topbar nav a { transition: color .2s; }
.topbar nav a:hover, .topbar nav a.is-active { color: var(--fg); }
.topbar nav a.is-active::before {
  content: ""; display: inline-block;
  width: 4px; height: 4px; background: var(--accent);
  margin: 0 8px 2px 0; vertical-align: middle; border-radius: 50%;
}
.topbar .cta {
  margin-left: 28px;
  padding: 10px 18px;
  border: 1px solid var(--fg);
  background: transparent; color: var(--fg);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all .2s;
}
.topbar .cta:hover { background: var(--accent); color: var(--bg-deep); border-color: var(--accent); }

/* Topbar actions cluster (cart + shop CTA) */
.topbar-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: 28px;
}
.topbar-actions .cta { margin-left: 0; }
.topbar .cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--fg);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: all .2s;
}
.topbar .cart-link svg { display: block; }
.topbar .cart-link:hover { background: var(--fg); color: var(--bg-deep); border-color: var(--fg); }
.topbar .cart-link.is-active { background: var(--fg); color: var(--bg-deep); border-color: var(--fg); }
/* Inline badge with leading dot — fixes the old "Cart1" run-on. Reads as "Cart · 3". */
.topbar .cart-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--accent, #c89a4a);
  font-weight: 600;
}
@media (max-width: 700px) {
  .topbar .cart-link .cart-text { display: none; }
}

/* Cart page */
.cart-page .cart-body { padding-top: 60px; }
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 60px 0;
}
.cart-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 64px;
  align-items: start;
}
.cart-lines { display: flex; flex-direction: column; }
.cart-line {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.cart-line:first-child { border-top: 1px solid var(--line); }
.cl-image {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--bg-soft);
}
.cl-image img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.92); }
.cl-meta { display: flex; flex-direction: column; gap: 6px; }
.cl-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-faint);
}
.cl-name { font-family: var(--font-display); font-size: 28px; margin: 0; letter-spacing: -0.01em; }
.cl-form {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-soft);
  margin-bottom: 8px;
}
.cl-controls {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 8px;
}
.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  height: 36px;
}
.qty button {
  background: transparent;
  border: 0;
  color: var(--fg);
  width: 36px; height: 100%;
  font-family: var(--font-mono);
  font-size: 16px;
  cursor: pointer;
  transition: background .15s;
}
.qty button:hover { background: rgba(255,255,255,0.06); }
.qty span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px; height: 100%;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 13px;
}
.cl-remove {
  background: transparent;
  border: 0;
  color: var(--fg-faint);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 8px 0;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color .15s;
}
.cl-remove:hover { color: var(--fg); }
.cl-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  text-align: right;
}
.cl-each {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-faint);
}
.cl-line-total {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.01em;
}
.cart-clear {
  align-self: flex-end;
  margin-top: 24px;
  font-size: 11px !important;
  padding: 10px 14px !important;
}

/* Cart summary */
.cart-summary {
  border: 1px solid var(--line);
  padding: 28px;
  background: var(--bg-soft);
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cs-head { padding-bottom: 8px; }
.cs-rows { display: flex; flex-direction: column; gap: 12px; }
.cs-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--fg);
}
.cs-row.muted { color: var(--fg-faint); }
.cs-divider { height: 1px; background: var(--line); margin: 6px 0; }
.cs-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: -0.01em;
}
.cs-total span:first-child { font-size: 14px; font-family: var(--font-mono); letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-faint); }

/* PayPal-style placeholder buttons */
.paypal-placeholder {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
}
.pp-note {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin-bottom: 4px;
}
.pp-btn {
  width: 100%;
  height: 46px;
  border-radius: 24px;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
  transition: filter .2s, transform .1s;
}
.pp-btn:hover { filter: brightness(1.05); }
.pp-btn:active { transform: translateY(1px); }
.pp-btn .pp-mark { display: inline-flex; align-items: baseline; font-style: italic; font-weight: 700; }
.pp-btn .pp-pa { color: #003087; }
.pp-btn .pp-pal { color: #009cde; }
.pp-yellow { background: #ffc439; color: #003087; }
.pp-dark { background: #2c2e2f; color: #fff; }
.pp-dark .pp-pa { color: #fff; }
.pp-dark .pp-pal { color: #009cde; }
.pp-dark .pp-sub { font-size: 13px; color: #ddd; font-style: normal; font-weight: 400; }
.pp-debit { background: #fff; color: #2c2e2f; border: 1px solid #ccc; font-style: normal; }
.pp-fineprint {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-faint);
  text-align: center;
  margin: 8px 0 0;
  line-height: 1.6;
}

@media (max-width: 980px) {
  .cart-grid { grid-template-columns: 1fr; gap: 40px; }
  .cart-summary { position: static; }
}
@media (max-width: 640px) {
  .cart-line { grid-template-columns: 100px 1fr; gap: 18px; }
  .cl-name { font-size: 22px; }
  .cl-price { grid-column: 1 / -1; flex-direction: row; justify-content: space-between; align-items: baseline; padding-top: 10px; border-top: 1px dashed var(--line); }
}
@media (max-width: 900px) {
  .topbar nav { display: none; }
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px var(--pad) 60px;
  overflow: hidden;
}
.hero canvas.water-bg { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 0%, var(--bg-deep) 100%);
  opacity: 0.6;
}
.hero .grain {
  position: absolute; inset: 0; pointer-events: none;
  opacity: 0.18; mix-blend-mode: overlay; z-index: 2;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
.hero .hero-inner {
  position: relative; z-index: 3;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  min-height: calc(100vh - 200px);
}

.hero .meta-strip {
  display: flex; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  padding-top: 60px;
}
.hero .meta-strip .item { display: flex; flex-direction: column; gap: 6px; }
.hero .meta-strip .label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg-faint); }
.hero .meta-strip .value { font-family: var(--font-display); font-size: 18px; font-weight: 400; }
.hero .heading-block { margin-top: auto; display: flex; flex-direction: column; gap: 32px; }
.hero .lede { max-width: 500px; font-size: 16px; line-height: 1.6; color: var(--fg-soft); }
.hero .actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

/* Hero layouts (Tweak) */
.hero[data-layout="centered"] .hero-inner {
  grid-template-columns: 1fr;
  text-align: center;
  align-items: center;
  justify-items: center;
}
.hero[data-layout="centered"] .heading-block { align-items: center; max-width: 1100px; margin-left: auto; margin-right: auto; }
.hero[data-layout="centered"] .lede { text-align: center; }
.hero[data-layout="centered"] .actions { justify-content: center; }
.hero[data-layout="centered"] .meta-strip { justify-content: center; gap: 80px; }

.hero[data-layout="split"] .hero-inner {
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: end;
}
.hero[data-layout="split"] .image-side {
  position: relative;
  height: 72vh; min-height: 540px;
  overflow: hidden;
  background: var(--bg-soft);
  border: 1px solid var(--line);
}
.hero[data-layout="split"] .image-side img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.78) contrast(1.08) saturate(0.92);
}
.hero[data-layout="split"] .image-side .corner {
  position: absolute;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.16em; color: var(--fg);
  background: rgba(0,0,0,.5); padding: 4px 8px; backdrop-filter: blur(4px);
}
.hero[data-layout="split"] .image-side .corner.tl { top: 12px; left: 12px; }
.hero[data-layout="split"] .image-side .corner.br { bottom: 12px; right: 12px; }

.hero[data-layout="anchored"] .hero-inner {
  grid-template-columns: 1fr;
  align-items: end;
}
.hero[data-layout="anchored"] .heading-block {
  align-items: flex-start;
  max-width: 1200px;
}
.hero[data-layout="anchored"] .meta-strip {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  margin-top: 60px;
}

@media (max-width: 900px) {
  .hero[data-layout="split"] .hero-inner { grid-template-columns: 1fr; }
  .hero[data-layout="split"] .image-side { height: 50vh; min-height: 360px; }
}

.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 28px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--fg);
  background: var(--fg);
  color: var(--bg-deep);
  transition: all .25s;
}
.btn:hover { background: var(--accent); color: var(--bg-deep); border-color: var(--accent); }
.btn.ghost { background: transparent; color: var(--fg); }
.btn.ghost:hover { background: var(--fg); color: var(--bg); border-color: var(--fg); }
.btn .arrow { font-family: serif; font-size: 14px; transition: transform .25s; }
.btn:hover .arrow { transform: translateX(4px); }

/* ── Marquee ── */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-soft);
  overflow: hidden;
  background: var(--bg);
}
.marquee-track {
  display: flex; gap: 60px; white-space: nowrap;
  animation: marquee 50s linear infinite;
  width: max-content;
}
.marquee-track .sep {
  display: inline-block; width: 6px; height: 6px;
  border-radius: 50%; background: var(--accent);
  align-self: center;
}
.marquee-track .item { display: flex; align-items: center; gap: 60px; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Section ── */
.section { padding: 120px var(--pad); position: relative; }
.section-head {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  margin-bottom: 72px;
  align-items: end;
}
.section-head .label { display: flex; flex-direction: column; gap: 8px; }
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(40px, 6vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 16ch;
}
.section-head h2 em { font-style: italic; color: var(--accent); }
.section-head .sub { margin-top: 24px; max-width: 520px; color: var(--fg-soft); font-size: 15px; line-height: 1.65; }
@media (max-width: 800px) {
  .section-head { grid-template-columns: 1fr; gap: 16px; }
}

/* ── Products: list view (default) — alternating large image rows ── */
.product-list { display: flex; flex-direction: column; gap: 120px; }
.product-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
  text-decoration: none;
  color: inherit;
  position: relative;
}
.product-row.right { grid-template-columns: 1fr 1.2fr; }
.product-row.right .pr-image { order: 2; }
.product-row.right .pr-meta { order: 1; text-align: right; align-items: flex-end; }
.product-row.left .pr-meta { text-align: left; align-items: flex-start; }
.product-row .pr-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: transparent;
}
.product-row .pr-image img,
.product-row .pr-image > div {width: 100%; height: 100%; object-fit: contain;
  transition: transform 1.2s cubic-bezier(.2,.8,.2,1), filter .6s;
  filter: brightness(0.92);
}
.product-row:hover .pr-image img { transform: scale(1.04); filter: brightness(1); }
.product-row .pr-num {
  position: absolute;
  top: 16px; left: 16px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.16em;
  color: rgba(255,255,255,.85);
  background: rgba(0,0,0,.4); padding: 6px 10px;
  backdrop-filter: blur(6px);
}
.product-row .pr-meta {
  display: flex; flex-direction: column; gap: 14px;
}
.product-row .pr-form {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--fg-faint);
}
.product-row .pr-name {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(56px, 8vw, 120px);
  line-height: 0.9;
  letter-spacing: -0.025em;
  margin: 0;
}
.product-row .pr-cta {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent);
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 8px;
}
.product-row .pr-priceline {
  display: flex; align-items: baseline; gap: 28px;
  margin-top: 4px;
  flex-wrap: wrap;
}
.product-row.right .pr-priceline { justify-content: flex-end; }
.product-row .pr-price {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.6vw, 26px);
  letter-spacing: -0.01em;
  color: var(--fg);
}
.product-row .pr-bespoke-line {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--accent);
  margin: 0;
  max-width: 32ch;
}
.product-row.right .pr-bespoke-line { margin-left: auto; }
.product-row.is-bespoke .pr-image::after {
  content: 'BESPOKE';
  position: absolute; top: 16px; right: 16px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.18em;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 6px 10px;
  background: rgba(0,0,0,.4);
  backdrop-filter: blur(6px);
}
.product-row:hover .pr-cta .arrow { transform: translateX(4px); }
.product-row .pr-cta .arrow { transition: transform .25s; display: inline-block; }
@media (max-width: 800px) {
  .product-list { gap: 64px; }
  .product-row,
  .product-row.right { grid-template-columns: 1fr; gap: 24px; }
  .product-row.right .pr-image,
  .product-row.right .pr-meta { order: initial; }
  .product-row.right .pr-meta { text-align: left; align-items: flex-start; }
  .product-row .pr-name { font-size: clamp(44px, 13vw, 80px); }
}
.product {
  display: grid;
  grid-template-columns: 80px 1fr 1fr 200px;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
  transition: background .4s ease, padding .4s ease;
  align-items: center;
  position: relative;
}
.product:hover { background: var(--bg-soft); padding-left: 24px; padding-right: 24px; }
.product .num { font-family: var(--font-mono); font-size: 11px; color: var(--fg-faint); letter-spacing: 0.1em; }
.product .meta { display: flex; flex-direction: column; gap: 8px; }
.product .meta .form { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg-faint); }
.product .meta h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.015em;
  margin: 0;
}
.product .meta h3 em { font-style: italic; color: var(--accent); }
.product .desc { color: var(--fg-soft); font-size: 15px; line-height: 1.6; max-width: 50ch; }
.product .image { height: 240px; position: relative; overflow: hidden; background: var(--bg-soft); }
.product .image img {width: 100%; height: 100%; object-fit: contain;
  transition: transform .9s cubic-bezier(.2,.8,.2,1), filter .6s;
  filter: grayscale(0.18) brightness(0.86);
}
.product:hover .image img { transform: scale(1.06); filter: none; }
@media (max-width: 800px) {
  .product { grid-template-columns: 60px 1fr; gap: 16px; }
  .product .desc, .product .image { grid-column: 1 / -1; }
  .product .image { height: 220px; }
}

/* ── Products: grid view ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  border-top: 1px solid var(--line);
}
.product-grid .product-card {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--bg-soft);
}
.product-grid .product-card img {width: 100%; height: 100%; object-fit: contain;
  transition: transform 1.2s cubic-bezier(.2,.8,.2,1);
  filter: brightness(0.8);
}
.product-grid .product-card:hover img { transform: scale(1.05); filter: brightness(1); }
.product-grid .product-card .overlay {
  position: absolute; inset: 0;
  padding: 36px;
  display: flex; flex-direction: column; justify-content: space-between;
  color: #fff;
  background: linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.65) 100%);
}
.product-grid .product-card .overlay .top { display: flex; justify-content: space-between; align-items: flex-start; }
.product-grid .product-card .overlay .form { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,.85); }
.product-grid .product-card .overlay .num { font-family: var(--font-mono); font-size: 11px; color: rgba(255,255,255,.7); }
.product-grid .product-card .overlay h3 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 300; letter-spacing: -0.02em;
  margin: 0; line-height: 0.95;
}
.product-grid .product-card .overlay h3 em { font-style: italic; color: var(--accent); }
@media (max-width: 800px) {
  .product-grid { grid-template-columns: 1fr; }
}

/* ── Products: mosaic view ── */
.product-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 80px;
  gap: 4px;
  border-top: 1px solid var(--line);
  padding-top: 4px;
}
.product-mosaic .tile {
  position: relative; overflow: hidden; background: var(--bg-soft);
}
.product-mosaic .tile img {width: 100%; height: 100%; object-fit: contain;
  transition: transform 1.4s cubic-bezier(.2,.8,.2,1);
  filter: brightness(0.86);
}
.product-mosaic .tile:hover img { transform: scale(1.07); filter: brightness(1); }
.product-mosaic .tile .label {
  position: absolute; bottom: 18px; left: 22px;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  color: #fff; letter-spacing: -0.01em; font-weight: 400;
  text-shadow: 0 2px 16px rgba(0,0,0,.45);
}
.product-mosaic .tile .label em { font-style: italic; color: var(--accent); }
.product-mosaic .tile .form-tag {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,.85);
  background: rgba(0,0,0,.45); padding: 4px 8px; backdrop-filter: blur(4px);
}
.product-mosaic .t-milan   { grid-column: span 7; grid-row: span 5; }
.product-mosaic .t-verona  { grid-column: span 5; grid-row: span 5; }
.product-mosaic .t-paris   { grid-column: span 5; grid-row: span 6; }
.product-mosaic .t-budapest{ grid-column: span 7; grid-row: span 6; }
@media (max-width: 800px) {
  .product-mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 240px; }
  .product-mosaic .tile { grid-column: span 1 !important; grid-row: span 1 !important; }
}

/* ── Pricing ── */
.pricing {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.price-cell {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 40px 28px 32px;
  display: flex; flex-direction: column; gap: 12px;
  min-height: 400px;
  position: relative;
  transition: background .4s;
}
.price-cell:hover { background: var(--bg); }
.price-cell .form {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-faint);
}
.price-cell h3 {
  font-family: var(--font-display);
  font-size: 48px; font-weight: 300; margin: 0;
  letter-spacing: -0.02em;
}
.price-cell h3 em { font-style: italic; color: var(--accent); }
.price-cell .tagline { font-size: 13px; color: var(--fg-soft); line-height: 1.5; max-width: 32ch; }
.price-cell .price-row { margin-top: auto; display: flex; flex-direction: column; gap: 4px; }
.price-cell .price {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 300; letter-spacing: -0.01em;
  display: flex; align-items: baseline; gap: 12px;
}
.price-cell .strike { font-size: 16px; text-decoration: line-through; color: var(--fg-faint); }
.price-cell .price-note {
  font-family: var(--font-mono);
  font-size: 10px; color: var(--fg-faint);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.price-cell .shop {
  margin-top: 20px;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line-strong);
  align-self: flex-start;
  transition: gap .2s, color .2s, border-color .2s;
}
.price-cell .shop:hover { gap: 14px; color: var(--accent); border-color: var(--accent); }
.price-cell.flagship { background: var(--bg); }
.price-cell.flagship::before {
  content: "FLAGSHIP";
  position: absolute; top: 16px; right: 16px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.14em; color: var(--accent);
}
.price-cell.bespoke { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%); }
.price-cell.bespoke::before {
  content: "BESPOKE";
  position: absolute; top: 16px; right: 16px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.14em; color: var(--accent-2);
}
@media (max-width: 1100px) { .price-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .price-grid { grid-template-columns: 1fr; } }

/* ── Features ── */
.features {
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.feature {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 48px 36px 60px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 20px;
  min-height: 480px;
  position: relative;
  transition: background .4s;
}
.feature:hover { background: var(--bg-soft); }
.feature .num { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; color: var(--accent); }
.feature h4 {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 300;
  letter-spacing: -0.015em; margin: 0;
}
.feature p { color: var(--fg-soft); font-size: 14px; line-height: 1.65; margin: 0; }
.feature .feat-image {
  width: 100%; height: 200px;
  background: var(--bg);
  overflow: hidden;
  margin-top: auto;
  position: relative;
}
.feature .feat-image img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.15) brightness(0.92);
  transition: transform .9s cubic-bezier(.2,.8,.2,1), filter .6s;
}
.feature:hover .feat-image img { transform: scale(1.05); filter: none; }
@media (max-width: 1000px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .feature-grid { grid-template-columns: 1fr; } }

/* ── Details ── */
.details { background: var(--bg); }
.details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 100px;
}
.detail-card { display: flex; flex-direction: column; gap: 20px; }
.detail-card .img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-soft);
}
.detail-card .img-wrap img {width: 100%; height: 100%; object-fit: contain;
  transition: transform 1s cubic-bezier(.2,.8,.2,1);
}
.detail-card:hover .img-wrap img { transform: scale(1.05); }
.detail-card .img-wrap .corner {
  position: absolute; bottom: 12px; left: 12px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,.85);
  background: rgba(0,0,0,.5); padding: 4px 8px; backdrop-filter: blur(4px);
}
.detail-card h4 {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 300; margin: 0;
  letter-spacing: -0.015em;
}
.detail-card p { color: var(--fg-soft); font-size: 14px; line-height: 1.65; margin: 0; }

.specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.spec {
  padding: 60px 28px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 12px;
}
.spec:last-child { border-right: none; }
.spec .num {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 300; line-height: 0.9;
  letter-spacing: -0.03em;
}
.spec .num em { font-style: italic; color: var(--accent); }
.spec .label {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-faint);
}
@media (max-width: 800px) {
  .details-grid { grid-template-columns: 1fr; }
  .specs { grid-template-columns: repeat(2, 1fr); }
  .spec:nth-child(2) { border-right: none; }
}

/* ── Videos ── */
.videos {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}
.video-card {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg);
}
.video-card img, .video-card video {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s cubic-bezier(.2,.8,.2,1), filter .4s;
  filter: brightness(0.7);
}
.video-card:hover img, .video-card:hover video { transform: scale(1.04); filter: brightness(0.88); }

.video-card.is-placeholder { cursor: default; }
.video-card.is-placeholder:hover { /* no zoom */ }
.video-placeholder {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  gap: 14px;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.018) 0 14px, transparent 14px 28px),
    radial-gradient(ellipse at center, rgba(255,255,255,0.04), rgba(255,255,255,0) 70%),
    var(--bg-deep);
  border: 1px dashed rgba(255,255,255,0.12);
  grid-template-rows: auto auto;
  align-content: center;
  text-align: center;
}
.video-placeholder .ph-mark {
  font-family: var(--font-display);
  font-size: clamp(64px, 9vw, 120px);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.18);
  line-height: 1;
}
.video-placeholder .ph-text {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.video-placeholder.awaiting {
  border-color: rgba(200,154,74,0.4);
  background:
    repeating-linear-gradient(45deg, rgba(200,154,74,0.04) 0 14px, transparent 14px 28px),
    radial-gradient(ellipse at center, rgba(200,154,74,0.06), rgba(255,255,255,0) 70%),
    var(--bg-deep);
}
.video-placeholder.awaiting .ph-mark { color: rgba(200,154,74,0.4); }
.video-placeholder.awaiting .ph-text { color: rgba(255,255,255,0.7); font-size: 14px; max-width: 70%; text-align: center; letter-spacing: 0.04em; text-transform: none; font-family: var(--font-display); }
.video-placeholder.awaiting .ph-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 8px;
}
.video-placeholder.awaiting .ph-sub code {
  font-family: var(--font-mono);
  background: rgba(255,255,255,0.06);
  padding: 2px 6px;
  border-radius: 2px;
  color: rgba(200,154,74,0.9);
  letter-spacing: 0;
}
.video-card .play {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  pointer-events: none;
}
.video-card .play .ring {
  width: 92px; height: 92px;
  border: 1px solid var(--fg);
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(0,0,0,.3);
  backdrop-filter: blur(8px);
  transition: transform .4s, background .4s, color .4s, border-color .4s;
  color: var(--fg);
}
.video-card:hover .play .ring { transform: scale(1.1); background: var(--accent); color: var(--bg-deep); border-color: var(--accent); }
.video-card .play .triangle {
  width: 0; height: 0;
  border-style: solid;
  border-width: 11px 0 11px 17px;
  border-color: transparent transparent transparent currentColor;
  margin-left: 4px;
}
.video-card .label {
  position: absolute; bottom: 22px; left: 24px;
  font-family: var(--font-display);
  font-size: 26px; color: #fff;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 16px rgba(0,0,0,.5);
}
.video-card .corner {
  position: absolute; top: 16px; left: 16px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,.85);
  background: rgba(0,0,0,.4); padding: 4px 8px; backdrop-filter: blur(4px);
}
@media (max-width: 800px) { .video-grid { grid-template-columns: 1fr; } }

/* ── CTA / footer ── */
.cta-section {
  padding: 180px var(--pad) 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: oklch(0.07 0.015 215); /* solid dark fallback — canvas paints on top */
}
.cta-section canvas.water-bg { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; opacity: 0.55; }
.cta-section::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background: radial-gradient(ellipse at center, transparent 30%, var(--bg-deep) 95%);
}
.cta-section .inner { position: relative; z-index: 3; }
.cta-section .display { margin: 0 auto; max-width: 18ch; }
.cta-section .lede { margin: 32px auto 48px; max-width: 540px; color: var(--fg-soft); font-size: 16px; line-height: 1.65; }
.cta-section .actions { display: flex; justify-content: center; gap: 16px; }

footer {
  padding: 60px var(--pad) 40px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  font-size: 13px;
  background: var(--bg-deep);
}
footer .brand-block .brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-size: 24px;
}
footer .brand-block p { margin: 16px 0 0; color: var(--fg-soft); max-width: 360px; line-height: 1.6; }
footer h5 {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--fg-faint);
  margin: 0 0 16px; font-weight: 400;
}
footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
footer ul li { color: var(--fg-soft); transition: color .2s; cursor: pointer; }
footer ul li:hover { color: var(--fg); }
footer .legal {
  grid-column: 1 / -1;
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.1em;
  color: var(--fg-faint);
}
@media (max-width: 800px) {
  footer { grid-template-columns: 1fr 1fr; }
  footer .brand-block { grid-column: 1 / -1; }
}

/* ── Lightbox / modal ── */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(4,5,10,0.94);
  backdrop-filter: blur(18px);
  display: grid; place-items: center;
  opacity: 0; pointer-events: none;
  transition: opacity .35s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox .lb-inner {
  width: 92%; max-width: 1180px;
  aspect-ratio: 16/9;
  background: #000;
  position: relative;
  border: 1px solid var(--line);
}
.lightbox video, .lightbox img {
  width: 100%; height: 100%; object-fit: contain;
}
.lightbox .lb-close {
  position: absolute;
  top: -48px; right: 0;
  background: transparent; color: var(--fg);
  border: 1px solid var(--line-strong);
  width: 38px; height: 38px;
  display: grid; place-items: center;
  font-size: 18px;
  transition: all .2s;
}
.lightbox .lb-close:hover { background: var(--accent); color: var(--bg-deep); border-color: var(--accent); }
.lightbox .lb-meta {
  position: absolute; bottom: -32px; left: 0;
  font-family: var(--font-mono); font-size: 11px;
  color: var(--fg-faint); letter-spacing: 0.12em; text-transform: uppercase;
}

/* ── Sub-page styles (shop, contact, assembly) ── */
.subpage {
  padding-top: 100px;
  min-height: 100vh;
}
.subpage-hero {
  padding: 80px var(--pad) 60px;
  border-bottom: 1px solid var(--line);
  position: relative; overflow: hidden;
  background: oklch(0.07 0.015 215); /* solid dark fallback — canvas paints on top when ready, no grey flash */
}
.subpage-hero canvas.water-bg { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; opacity: 0.5; }
.subpage-hero .inner { position: relative; z-index: 2; max-width: var(--max); margin: 0 auto; }
.subpage-hero h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(56px, 9vw, 132px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin: 24px 0 0;
}
.subpage-hero h1 em { font-style: italic; color: var(--accent); }
.subpage-hero .lede { max-width: 580px; margin-top: 32px; color: var(--fg-soft); font-size: 16px; line-height: 1.65; }
@media (max-width: 640px) {
  .subpage-hero { padding: 32px var(--pad) 28px; }
  .subpage-hero h1 { font-size: clamp(40px, 12vw, 72px); }
  .subpage-hero .lede { margin-top: 18px; }
  .subpage .section { padding-top: 28px; }
}
.crumbs {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--fg-faint);
}
.crumbs .sep { margin: 0 8px; opacity: 0.5; }
.crumbs a:hover { color: var(--fg); }

/* Shop grid */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  border-top: 1px solid var(--line);
}
.shop-card {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--bg-soft);
}
.shop-card img {width: 100%; height: 100%; object-fit: contain;
  transition: transform 1.2s cubic-bezier(.2,.8,.2,1);
  filter: brightness(0.85);
}
.shop-card:hover img { transform: scale(1.06); filter: brightness(1); }
.shop-card .info {
  position: absolute; inset: 0;
  padding: 28px;
  display: flex; flex-direction: column; justify-content: space-between;
  background: linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.6) 100%);
}
.shop-card .info .top { display: flex; justify-content: space-between; }
.shop-card .info .form {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,.85);
}
.shop-card .info h3 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300; letter-spacing: -0.02em;
  margin: 0 0 8px; color: #fff;
}
.shop-card .info h3 em { font-style: italic; color: var(--accent); }
.shop-card .info .price {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.12em;
  color: rgba(255,255,255,.9);
  display: flex; gap: 12px; align-items: baseline;
}
.shop-card .info .strike { text-decoration: line-through; color: rgba(255,255,255,.5); }
@media (max-width: 1000px) { .shop-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .shop-grid { grid-template-columns: 1fr; } }

/* Mobile: /shop acts as the landing page — first product up top, peek of the second */
@media (max-width: 640px) {
  .shop-page .subpage-hero { padding: 12px var(--pad) 8px; }
  .shop-page .subpage-hero .crumbs { font-size: 10px; }
  .shop-page .subpage-hero .eyebrow { display: none; }
  .shop-page .subpage-hero h1 { font-size: clamp(24px, 7vw, 32px); margin-top: 4px; }
  .shop-page .subpage-hero .lede { display: none; }
  .shop-page .section { padding-top: 10px !important; padding-bottom: 28px; }
  .shop-page .shop-grid { gap: 12px; border-top: none; }
  .shop-page .shop-card { aspect-ratio: 5 / 4; }
  .shop-page .shop-card .info { padding: 16px; }
  .shop-page .shop-card .info h3 { font-size: 30px; margin-bottom: 4px; }
}

/* QAFIX: Desktop /shop = landing page. Tighten the hero so a full product card
   (photo + name + price) sits above the 900px fold without crushing the header.
   Scoped min-width:641px so the mobile rules above are untouched. */
@media (min-width: 641px) {
  .shop-page .subpage-hero { padding: 26px var(--pad) 18px; }
  .shop-page .subpage-hero .eyebrow { margin-top: 0 !important; }
  .shop-page .subpage-hero h1 { font-size: clamp(40px, 4.8vw, 68px); margin: 8px 0 0; }
  .shop-page .subpage-hero .lede { margin-top: 12px; font-size: 14.5px; line-height: 1.55; max-width: 640px; }
  .shop-page .section { padding-top: 16px !important; }
}

/* Contact form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 100px var(--pad);
  max-width: var(--max);
  margin: 0 auto;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-faint);
}
.field input, .field textarea, .field select {
  background: transparent;
  border: 0; border-bottom: 1px solid var(--line-strong);
  padding: 12px 0;
  font-family: var(--font-body); font-size: 16px;
  color: var(--fg);
  outline: none;
  transition: border-color .2s;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--accent); }
.field textarea { resize: vertical; min-height: 120px; }
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-info .block { display: flex; flex-direction: column; gap: 8px; }
.contact-info .block .label {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--fg-faint);
}
.contact-info .block .value { font-family: var(--font-display); font-size: 22px; }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

/* Contact quick-strip — email + phone front and center on the contact hero */
.contact-quickstrip {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 24px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
  width: fit-content;
  max-width: 100%;
  flex-wrap: wrap;
}
.contact-quickstrip .quick {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
  color: var(--fg);
  transition: opacity 0.2s, color 0.2s;
  cursor: pointer;
}
.contact-quickstrip .quick:hover { opacity: 1; }
.contact-quickstrip .quick:hover .qk-value { color: var(--accent); text-decoration: underline; text-underline-offset: 4px; }
.contact-quickstrip .qk-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-faint);
}
.contact-quickstrip .qk-value {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--accent);
  border-bottom: 1px solid rgba(217, 175, 105, 0.4);
  padding-bottom: 1px;
  display: inline-block;
  width: max-content;
}
.contact-quickstrip .qk-divider {
  width: 1px;
  align-self: stretch;
  background: var(--line);
}
@media (max-width: 560px) {
  .contact-quickstrip { flex-direction: column; align-items: stretch; gap: 14px; }
  .contact-quickstrip .qk-divider { width: 100%; height: 1px; }
}

.contact-form-note {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-faint);
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--line);
}
.contact-form-note a { color: var(--fg); text-decoration: underline; text-underline-offset: 2px; }

/* Assembly steps */
.assembly-list {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line);
}
.assembly-step {
  display: grid;
  grid-template-columns: 70px 1.1fr 1.6fr 130px;
  gap: 32px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.assembly-step .num { font-family: var(--font-mono); font-size: 11px; color: var(--accent); letter-spacing: 0.14em; }
.assembly-step h4 {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 300; margin: 0;
  letter-spacing: -0.015em;
  line-height: 1.15;
}
.assembly-step p { color: var(--fg-soft); font-size: 14px; line-height: 1.55; margin: 0; max-width: 60ch; }
.assembly-step .duration {
  text-align: right;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-faint);
}
@media (max-width: 800px) {
  .assembly-step { grid-template-columns: 60px 1fr; }
  .assembly-step p, .assembly-step .duration { grid-column: 1 / -1; }
  .assembly-step .duration { text-align: left; }
}

/* ── Reveal animation ── */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 1.1s cubic-bezier(.2,.8,.2,1), transform 1.1s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ── Scroll progress ── */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 2px; background: var(--accent);
  z-index: 100; width: 0;
  transition: width .1s linear;
}

/* ── Cinematic hero — video bg ── */
.hero-cinematic { background: var(--bg-deep); }
.hero-cinematic .scroll-hint {
  display: flex; align-items: center; gap: 16px;
  margin-top: 48px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--fg-faint);
}
.hero-cinematic .scroll-hint .line {
  width: 60px; height: 1px; background: var(--fg-faint);
  display: inline-block;
  animation: scroll-line 2.4s ease-in-out infinite;
}
@keyframes scroll-line {
  0%, 100% { transform: scaleX(1); opacity: 0.5; transform-origin: left; }
  50% { transform: scaleX(1.6); opacity: 1; }
}

/* ── Product scene (one full-viewport slide per product) ── */
.product-scene {
  min-height: 100vh;
  padding: 100px var(--pad);
  display: grid;
  align-items: center;
  position: relative;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.product-scene:nth-child(odd) { background: var(--bg-deep); }
.product-scene .scene-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}
.product-scene.reverse .scene-inner { grid-template-columns: 1fr 1.1fr; }
.product-scene.reverse .scene-image { order: 2; }
.product-scene.reverse .scene-copy { order: 1; }

.product-scene .scene-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: transparent;
  border: 1px solid var(--line);
}
.product-scene .scene-image .image-corner {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.16em;
  color: rgba(255,255,255,.85);
  background: rgba(0,0,0,.5); padding: 6px 10px;
  backdrop-filter: blur(6px);
}
.product-scene .scene-image .image-corner.tl { top: 14px; left: 14px; }
.product-scene .scene-image .image-corner.br { bottom: 14px; right: 14px; }

.product-scene .scene-copy {
  display: flex; flex-direction: column; gap: 24px;
}
.product-scene .scene-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(56px, 9vw, 144px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  margin: 0;
  display: flex; flex-wrap: wrap;
}
.product-scene .scene-title span { display: inline-block; }
.product-scene .scene-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--accent);
  margin: 0;
}
.product-scene .scene-desc {
  color: var(--fg-soft);
  font-size: 15px;
  line-height: 1.7;
  max-width: 52ch;
  margin: 0;
}
.product-scene .scene-meta {
  display: flex; gap: 40px; flex-wrap: wrap;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.product-scene .scene-meta > div { display: flex; flex-direction: column; gap: 4px; }
.product-scene .scene-meta .k {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--fg-faint);
}
.product-scene .scene-meta .v {
  font-family: var(--font-display);
  font-size: 18px;
}
@media (max-width: 1000px) {
  .product-scene .scene-inner,
  .product-scene.reverse .scene-inner { grid-template-columns: 1fr; gap: 40px; }
  .product-scene.reverse .scene-image { order: 0; }
  .product-scene.reverse .scene-copy { order: 0; }
  .product-scene .scene-image { aspect-ratio: 4/3; }
}

/* ── Rome bespoke gallery (accents on the homepage card) ── */
.rome-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-top: 16px;
}
.rome-strip .thumb {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--bg);
}
.rome-strip .thumb img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.85);
  transition: transform 1s cubic-bezier(.2,.8,.2,1), filter .5s;
}
.rome-strip .thumb:hover img { transform: scale(1.06); filter: brightness(1); }

/* ─────────────────────────────────────────────────────────────────────
   YOUTUBE FILM LIBRARY (Assembly page)
   ───────────────────────────────────────────────────────────────────── */
.yt-library-section {
  border-top: 1px solid var(--rule);
  background: var(--bg);
}.yt-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
  margin-top: 16px;
}
@media (max-width: 1100px) { .yt-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .yt-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 14px; } }

.yt-tile {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  color: var(--fg);
  cursor: pointer;
}

.yt-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.08);
  transition: border-color 0.4s ease, transform 0.5s ease;
}
.yt-thumb img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1) brightness(0.55) contrast(1.05);
  transition: filter 0.5s ease, transform 0.6s ease;
}
.yt-veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}
.yt-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.92);
  color: rgba(255,255,255,0.85);
  opacity: 0.85;
  transition: transform 0.4s ease, opacity 0.3s ease, color 0.3s ease;
  pointer-events: none;
}
.yt-num {
  position: absolute;
  bottom: 10px; left: 12px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  pointer-events: none;
}

.yt-tile:hover .yt-thumb { border-color: rgba(200,154,74,0.5); }
.yt-tile:hover .yt-thumb img { filter: grayscale(0) brightness(0.9) contrast(1); transform: scale(1.04); }
.yt-tile:hover .yt-play { transform: translate(-50%, -50%) scale(1); opacity: 1; color: var(--accent); }

.yt-caption {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: rgba(255,255,255,0.92);
  padding: 0 2px;
}
@media (max-width: 720px) { .yt-caption { font-size: 13px; } }

/* ── Variant C: Showcase ── */
.showcase .showcase-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}
.showcase-stage {
  position: sticky; top: 100px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: stretch;
}
.showcase-stage .stage-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  animation: fade-in 0.6s ease both;
}
.showcase-stage .stage-image img,
.showcase-stage .stage-image > div {width: 100%; height: 100%; object-fit: contain;
}
.showcase-stage .stage-corner {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.16em;
  color: rgba(255,255,255,.85);
  background: rgba(0,0,0,.5); padding: 6px 10px;
  backdrop-filter: blur(6px);
}
.showcase-stage .stage-corner.tl { top: 14px; left: 14px; }
.showcase-stage .stage-corner.br { bottom: 14px; right: 14px; }
.showcase-stage .stage-copy { display: flex; flex-direction: column; gap: 18px; padding-top: 8px; }
.showcase-stage .stage-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0;
}
.showcase-stage .stage-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--accent);
  margin: 0;
}
.showcase-stage .stage-desc { color: var(--fg-soft); font-size: 15px; line-height: 1.65; margin: 0; }
.showcase-stage .stage-meta {
  display: flex; gap: 32px; flex-wrap: wrap;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.showcase-stage .stage-meta > div { display: flex; flex-direction: column; gap: 4px; }
.showcase-stage .stage-meta .k {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--fg-faint);
}
.showcase-stage .stage-meta .v { font-family: var(--font-display); font-size: 18px; }

.showcase-rail { display: flex; flex-direction: column; gap: 12px; }
.showcase-rail .rail-item {
  display: grid;
  grid-template-columns: 28px 80px 1fr 16px;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--fg);
  text-align: left;
  cursor: pointer;
  font: inherit;
  transition: background .25s, border-color .25s;
}
.showcase-rail .rail-item:hover { background: var(--bg-soft); }
.showcase-rail .rail-item.is-active {
  background: var(--bg-soft);
  border-color: var(--accent);
}
.showcase-rail .rail-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-faint);
}
.showcase-rail .rail-thumb {
  width: 80px; height: 80px;
  overflow: hidden;
  background: var(--bg);
}
.showcase-rail .rail-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.9);
}
.showcase-rail .rail-item.is-active .rail-thumb img { filter: brightness(1); }
.showcase-rail .rail-meta { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.showcase-rail .rail-form {
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-faint);
}
.showcase-rail .rail-name {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: -0.01em;
}
.showcase-rail .rail-arrow {
  color: var(--fg-faint);
  font-size: 14px;
  transition: transform .25s, color .25s;
}
.showcase-rail .rail-item.is-active .rail-arrow { color: var(--accent); transform: translateX(4px); }

@keyframes fade-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

@media (max-width: 1100px) {
  .showcase .showcase-grid { grid-template-columns: 1fr; gap: 40px; }
  .showcase-stage { position: static; }
}
@media (max-width: 800px) {
  .showcase-stage { grid-template-columns: 1fr; gap: 24px; }
  .showcase-rail .rail-item { grid-template-columns: 22px 60px 1fr 14px; gap: 10px; padding: 10px; }
  .showcase-rail .rail-thumb { width: 60px; height: 60px; }
  .showcase-rail .rail-name { font-size: 17px; }
}

/* ─────────────────────────────────────────────────────────────────────
   MOBILE POLISH — comprehensive overrides at the bottom so they win
   ───────────────────────────────────────────────────────────────────── */

/* Tablet & below */
@media (max-width: 900px) {
  .topbar { padding: 14px var(--pad); }
  .topbar .brand { font-size: 14px; }
  .topbar nav { display: none; }
  .topbar .cta { padding: 10px 14px; font-size: 11px; }

  .display {
    font-size: clamp(40px, 11vw, 88px);
    line-height: 0.95;
    letter-spacing: -0.02em;
  }

  /* Hero: tighten padding, stack everything, shrink meta */
  .hero {
    padding: 100px var(--pad) 60px;
    min-height: auto;
  }
  .hero .hero-inner { gap: 40px; }
  .hero .heading-block { gap: 20px; }
  .hero .lede { font-size: 15px; }
  .hero .meta-strip {
    gap: 16px 24px;
    padding-top: 28px;
    padding-bottom: 8px;
  }
  .hero .meta-strip .item { flex: 0 1 calc(50% - 12px); min-width: 0; }
  .hero .meta-strip .value { font-size: 14px; }
  .hero .meta-strip .label { font-size: 9px; letter-spacing: 0.14em; }
  .hero[data-layout="centered"] .meta-strip { gap: 20px; justify-content: space-between; }

  .hero .actions { gap: 10px; width: 100%; }
  .hero .actions .btn { flex: 1 1 auto; justify-content: space-between; padding: 14px 18px; font-size: 12px; }

  .hero-cinematic .scroll-hint { margin-top: 28px; font-size: 10px; }

  /* Buttons everywhere */
  .btn { padding: 14px 18px; font-size: 12px; }

  /* Sections */
  .section { padding: 80px var(--pad); }
  .section-head { gap: 12px; margin-bottom: 48px; }

  /* Product list (Row) — keep numbers tight, image full-width below */
  .product { padding: 20px 0; gap: 16px 12px; }
  .product .num { font-size: 28px; }
  .product .meta h3 { font-size: 22px; }
  .product .meta .form { font-size: 10px; }
  .product .desc { font-size: 14px; }
  .product .image { aspect-ratio: 16/10; }

  /* Pricing cards */
  .price-cell { padding: 24px; }
  .price-cell .price-value { font-size: 36px; }

  /* Story scenes (mobile already covered, just tighten typography) */
  .product-scene { padding: 60px var(--pad); min-height: auto; }
  .product-scene .scene-title { font-size: clamp(48px, 14vw, 96px); }
  .product-scene .scene-tagline { font-size: 18px; }
  .product-scene .scene-desc { font-size: 14px; }
  .product-scene .scene-meta { gap: 20px; padding: 20px 0; }
  .product-scene .scene-meta .v { font-size: 15px; }
  .product-scene .scene-meta > div { flex: 1 1 calc(33% - 14px); min-width: 0; }
  .product-scene .actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .product-scene .actions .btn { justify-content: space-between; width: 100%; }

  /* CTA / footer */
  .cta-section { padding: 80px var(--pad); }
  .cta-section .actions { flex-direction: column; align-items: stretch; }
  .cta-section .actions .btn { justify-content: space-between; }

  /* Tweaks panel — keep small on phones */
  .tweaks-panel { width: calc(100vw - 24px) !important; max-width: 360px; right: 12px !important; }

  /* Marquee — slightly smaller */
  .marquee { font-size: 14px; }
}

/* Phone */
@media (max-width: 560px) {
  :root { --pad: 18px; }

  .topbar { padding: 12px 16px; }
  .topbar .cta .arrow { display: none; }

  .display {
    font-size: clamp(36px, 13vw, 64px);
  }

  .hero {
    padding: 88px 18px 48px;
  }
  .hero .heading-block { gap: 16px; }
  .hero .meta-strip {
    flex-direction: row;
    gap: 12px;
    padding-top: 20px;
  }
  .hero .meta-strip .item { flex: 1 1 calc(50% - 6px); }
  .hero .meta-strip .value { font-size: 13px; }

  .hero .actions { flex-direction: column; align-items: stretch; }
  .hero .actions .btn { width: 100%; }

  .section-head h2 br { display: none; }

  .product { grid-template-columns: 44px 1fr !important; gap: 10px; }
  .product .num { font-size: 24px; }
  .product .meta { min-width: 0; }
  .product .meta h3 { font-size: 20px; }

  .product-mosaic { grid-template-columns: 1fr !important; grid-auto-rows: 220px; }

  .product-scene { padding: 56px 18px; }
  .product-scene .scene-title { font-size: clamp(44px, 14vw, 72px); }
  .product-scene .scene-meta { gap: 16px 24px; }
  .product-scene .scene-meta > div { flex: 1 1 calc(50% - 12px); }

  .video-grid { gap: 12px; }
  .feature-grid { gap: 24px; }
}

/* ─────────────────────────────────────────────────────────────────────
   MANUAL DOWNLOAD LINK (Assembly hero)
   ───────────────────────────────────────────────────────────────────── */
.manual-download {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  padding: 16px 22px 16px 18px;
  border: 1px solid rgba(200,154,74,0.35);
  background: rgba(200,154,74,0.04);
  text-decoration: none;
  color: var(--fg);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  max-width: 420px;
}
.manual-download:hover {
  background: rgba(200,154,74,0.1);
  border-color: var(--accent);
  transform: translateY(-1px);
}
.manual-download .md-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(200,154,74,0.4);
  border-radius: 50%;
  color: var(--accent);
  flex-shrink: 0;
}
.manual-download .md-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.manual-download .md-label {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: -0.005em;
  color: var(--fg);
}
.manual-download .md-meta {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-soft);
}
.manual-download .md-arrow {
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.manual-download:hover .md-arrow { transform: translateY(2px); }
@media (max-width: 560px) {
  .manual-download { width: 100%; max-width: none; }
  .manual-download .md-label { font-size: 14px; }
}

/* ─────────────────────────────────────────────────────────────────────
   WARRANTY PAGE
   ───────────────────────────────────────────────────────────────────── */
.warranty-page .subpage-hero h1 { font-size: clamp(56px, 11vw, 168px); }

/* Coverage cards (section 01) */
.warranty-coverage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 8px;
}
.warranty-coverage .cov-card {
  border: 1px solid var(--line);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: rgba(255,255,255,0.01);
  transition: border-color 0.3s ease, background 0.3s ease;
}
.warranty-coverage .cov-card:hover {
  border-color: rgba(200,154,74,0.35);
  background: rgba(200,154,74,0.02);
}
.warranty-coverage .cov-flagship {
  border-color: rgba(200,154,74,0.45);
  background: rgba(200,154,74,0.05);
}
.warranty-coverage .cov-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-faint);
}
.warranty-coverage .cov-flagship .cov-eyebrow { color: var(--accent); }
.warranty-coverage .cov-years {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--fg);
}
.warranty-coverage .cov-flagship .cov-years { color: var(--accent); }
.warranty-coverage .cov-models {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--fg-soft);
  letter-spacing: -0.005em;
}
.warranty-coverage .cov-foot {
  grid-column: 1 / -1;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--fg-faint);
  margin-top: 4px;
}
@media (max-width: 640px) {
  .warranty-coverage { grid-template-columns: 1fr; }
  .warranty-coverage .cov-years { font-size: 44px; }
}

/* Table of contents */
.warranty-toc-section { padding-top: 80px; padding-bottom: 0; }
.warranty-toc {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 32px;
  align-items: start;
}
.warranty-toc .toc-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-faint);
}
.warranty-toc ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 32px;
}
.warranty-toc li a {
  display: flex;
  gap: 12px;
  padding: 4px 0;
  text-decoration: none;
  color: var(--fg-soft);
  transition: color 0.2s ease;
  font-size: 13px;
}
.warranty-toc li a:hover { color: var(--accent); }
.warranty-toc .toc-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--fg-faint);
  min-width: 22px;
  padding-top: 2px;
}
.warranty-toc .toc-title {
  font-family: var(--font-display);
  letter-spacing: -0.005em;
  line-height: 1.4;
  flex: 1;
}
@media (max-width: 800px) {
  .warranty-toc { grid-template-columns: 1fr; gap: 16px; }
  .warranty-toc ol { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .warranty-toc ol { grid-template-columns: 1fr; }
}

/* Body sections */
.warranty-body-section { padding-top: 60px; }
.warranty-body {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.warranty-section {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 114px;
}
.warranty-section header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: sticky;
  top: 80px;
  align-self: start;
}
.warranty-section .ws-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-transform: uppercase;
}
.warranty-section h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0;
  color: var(--fg);
}
.warranty-section .ws-body {
  font-family: var(--font-display);
  color: var(--fg-soft);
  line-height: 1.7;
  font-size: 14.5px;
}
.warranty-section .ws-body p { margin: 0 0 16px; }
.warranty-section .ws-body p:last-child { margin-bottom: 0; }
.warranty-section .ws-body strong { color: var(--fg); font-weight: 500; }
.warranty-section .ws-body a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(200,154,74,0.4);
  transition: border-color 0.2s ease;
}
.warranty-section .ws-body a:hover { border-color: var(--accent); }

/* Exclusions list */
.warranty-exclusions, .warranty-procedure {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  counter-reset: warritem;
}
.warranty-exclusions li, .warranty-procedure li {
  position: relative;
  padding: 14px 0 14px 48px;
  border-top: 1px solid var(--line);
  counter-increment: warritem;
  font-size: 14px;
  line-height: 1.6;
}
.warranty-exclusions li:last-child, .warranty-procedure li:last-child { border-bottom: 1px solid var(--line); }
.warranty-exclusions li::before, .warranty-procedure li::before {
  content: counter(warritem, lower-alpha);
  position: absolute;
  left: 0;
  top: 14px;
  width: 32px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--accent);
  text-transform: uppercase;
}
.warranty-procedure li::before {
  content: counter(warritem, decimal-leading-zero);
}
.warranty-note {
  margin-top: 16px !important;
  padding: 14px 16px;
  border-left: 2px solid var(--accent);
  background: rgba(200,154,74,0.04);
  font-size: 13.5px !important;
  color: var(--fg) !important;
}
.warranty-caps {
  font-family: var(--font-mono) !important;
  font-size: 12px !important;
  letter-spacing: 0.04em;
  line-height: 1.7 !important;
  text-transform: uppercase;
  color: var(--fg) !important;
  padding: 16px;
  border: 1px solid rgba(200,154,74,0.3);
  background: rgba(200,154,74,0.03);
  margin-bottom: 20px !important;
}

@media (max-width: 800px) {
  .warranty-section { grid-template-columns: 1fr; gap: 16px; padding: 32px 0; }
  .warranty-section header { position: static; }
  .warranty-section h2 { font-size: 20px; }
}

/* Contact block */
.warranty-contact-section {
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
}
.warranty-contact {
  border: 1px solid var(--line);
  padding: 48px;
}
.warranty-contact .wc-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.warranty-contact .wc-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
}
.warranty-contact h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 300;
  letter-spacing: -0.015em;
  margin: 0 0 32px;
}
.warranty-contact .wc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.warranty-contact .wc-cell {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.warranty-contact .wc-k {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-faint);
}
.warranty-contact .wc-v {
  font-family: var(--font-display);
  font-size: 14px;
  line-height: 1.45;
  color: var(--fg);
}
.warranty-contact .wc-v a {
  color: var(--fg);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.warranty-contact .wc-v a:hover {
  color: var(--accent);
  border-color: var(--accent);
}
.warranty-contact .wc-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

@media (max-width: 800px) {
  .warranty-contact { padding: 32px 24px; }
  .warranty-contact .wc-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .warranty-contact .wc-grid { grid-template-columns: 1fr; }
  .warranty-contact .wc-actions .btn { width: 100%; justify-content: space-between; }
}

/* ─────────────────────────────────────────────────────────────────────
   OWNER'S SERVICE PAGE
   ───────────────────────────────────────────────────────────────────── */
.service-page .subpage-hero h1 { font-size: clamp(56px, 11vw, 168px); }

.service-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}
.service-tier {
  position: relative;
  border: 1px solid var(--line);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: rgba(255,255,255,0.01);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.service-tier:hover { border-color: rgba(200,154,74,0.35); transform: translateY(-2px); }
.service-tier.minimum {
  border-color: rgba(200,154,74,0.45);
  background: rgba(200,154,74,0.05);
}
.service-tier .st-badge {
  position: absolute;
  top: 16px; right: 16px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(200,154,74,0.5);
  padding: 4px 8px;
}
.service-tier .st-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-faint);
}
.service-tier .st-price {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--fg);
}
.service-tier.minimum .st-price { color: var(--accent); }
.service-tier ul {
  list-style: none;
  margin: 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-tier ul li {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--fg-soft);
  padding-left: 18px;
  position: relative;
}
.service-tier ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 1px;
  background: var(--accent);
}
.service-tier .st-note {
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  line-height: 1.55;
  color: var(--fg-faint);
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .service-tiers { grid-template-columns: 1fr; }
}

/* Process steps */
.service-process {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.service-process li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.service-process .sp-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--accent);
}
.service-process h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}
.service-process p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg-soft);
  max-width: 60ch;
}
.service-process p a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(200,154,74,0.4);
}
@media (max-width: 640px) {
  .service-process li { grid-template-columns: 1fr; gap: 12px; }
}

/* Service form */
.service-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 720px;
  margin-top: 16px;
}
.service-form .sf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.service-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-form label > span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-faint);
}
.service-form input,
.service-form select,
.service-form textarea {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--fg);
  padding: 14px 16px;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: border-color 0.2s ease, background 0.2s ease;
  resize: vertical;
}
.service-form select { appearance: none; cursor: pointer; }
.service-form input:focus,
.service-form select:focus,
.service-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(200,154,74,0.03);
}
.service-form .sf-actions {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 8px;
}
.service-form .sf-fineprint {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-faint);
}
.form-success {
  border: 1px solid rgba(200,154,74,0.4);
  background: rgba(200,154,74,0.04);
  padding: 48px;
  max-width: 600px;
  margin-top: 16px;
}
.form-success p { color: var(--fg-soft); margin: 0; line-height: 1.6; }

@media (max-width: 640px) {
  .service-form .sf-row { grid-template-columns: 1fr; gap: 20px; }
  .form-success { padding: 32px 24px; }
}

/* ─────────────────────────────────────────────────────────────────────
   WHITE-GLOVE DELIVERY PAGE (Rome only)
   ───────────────────────────────────────────────────────────────────── */
.whiteglove-page .subpage-hero h1 { font-size: clamp(56px, 11vw, 168px); }
.whiteglove-page .subpage-hero h1 em { color: var(--accent); }

/* Overview stats strip */
.wg-overview {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.wg-stat {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-right: 1px solid var(--line);
}
.wg-stat:last-child { border-right: none; }
.wg-stat .k {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-faint);
}
.wg-stat .v {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--fg);
}
@media (max-width: 1000px) {
  .wg-overview { grid-template-columns: repeat(3, 1fr); }
  .wg-stat:nth-child(3n) { border-right: none; }
  .wg-stat:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 560px) {
  .wg-overview { grid-template-columns: repeat(2, 1fr); }
  .wg-stat { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .wg-stat:nth-child(2n) { border-right: none; }
  .wg-stat:nth-last-child(-n+2) { border-bottom: none; }
}

/* Phase blocks */
.wg-phases {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  margin-top: 16px;
}
.wg-phase {
  padding: 32px 32px 32px 0;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.wg-phase:nth-child(2n) { padding-right: 0; padding-left: 32px; border-right: none; }
.wg-phase:nth-child(2n+1) { padding-left: 0; }
.wg-phase header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}
.wg-phase .wp-num {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.14em;
  color: var(--accent);
}
.wg-phase .wp-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-faint);
}
.wg-phase h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  letter-spacing: -0.015em;
  margin: 0;
  line-height: 1.15;
}
.wg-phase p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--fg-soft);
}
@media (max-width: 800px) {
  .wg-phases { grid-template-columns: 1fr; }
  .wg-phase, .wg-phase:nth-child(2n) {
    padding: 24px 0;
    border-right: none;
    border-left: none;
  }
}

/* Criteria section */
.wg-criteria {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: start;
}
.wg-criteria-head h2 { margin-top: 16px; }
.wg-criteria-head .lede { margin-top: 24px; }
.wg-criteria-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.wg-criteria-list li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.wg-criteria-list .wcl-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--accent);
  padding-top: 4px;
}
.wg-criteria-list h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}
.wg-criteria-list p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg-soft);
}
@media (max-width: 1000px) {
  .wg-criteria { grid-template-columns: 1fr; gap: 32px; }
}

/* CTA */
.wg-cta {
  text-align: center;
  padding: 80px 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: radial-gradient(ellipse at center, rgba(200,154,74,0.06), transparent 70%);
}
.wg-cta .eyebrow { justify-content: center; display: inline-flex; }
.wg-cta .actions { justify-content: center; }
@media (max-width: 560px) {
  .wg-cta { padding: 56px 20px; }
  .wg-cta .actions { flex-direction: column; align-items: stretch; }
  .wg-cta .actions .btn { justify-content: space-between; }
}


/* ─────────────────────────────────────────────────────────────
   USER MANUAL PAGE
   ───────────────────────────────────────────────────────────── */
.manual-page .subpage-hero h1 { font-size: clamp(56px, 11vw, 168px); }

.manual-body-section { padding-top: 0; }
.manual-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}

/* LEFT RAIL — sticky */
.manual-rail {
  position: sticky;
  top: 88px;
  align-self: start;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  padding-right: 8px;
  scrollbar-width: thin;
}
.manual-rail::-webkit-scrollbar { width: 6px; }
.manual-rail::-webkit-scrollbar-thumb { background: var(--line); border-radius: 3px; }

.manual-rail-inner { display: flex; flex-direction: column; gap: 40px; padding-top: 60px; }

.rail-eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-faint);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 16px;
}

/* Video viewer */
.rail-video {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #0a0d10;
  border: 1px solid var(--line);
  overflow: hidden;
  margin-bottom: 14px;
}
.rail-video video { width: 100%; height: 100%; object-fit: cover; display: block; }
.rail-video-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: stretch;
  background: linear-gradient(180deg, #0a0d10 0%, #131820 100%);
}
.rvp-glyph {
  flex: 1;
  display: grid;
  place-items: center;
  color: var(--accent);
  opacity: 0.55;
  padding: 16px;
}
.rvp-glyph svg { width: 100%; height: 100%; max-height: 110px; }
.rvp-meta {
  display: flex; flex-direction: column; gap: 4px;
  padding: 12px 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.3);
}
.rvp-mark {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-faint);
}
.rvp-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--fg-soft);
}

.rail-video-title {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--line);
}
.rvt-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
.rvt-title {
  font-size: 14px;
  line-height: 1.4;
  color: var(--fg);
  text-wrap: pretty;
}

/* Video list */
.rail-video-list { display: flex; flex-direction: column; gap: 2px; }
.rail-video-item {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 10px;
  background: transparent;
  border: 0;
  border-left: 2px solid transparent;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  color: var(--fg-soft);
}
.rail-video-item:hover { background: rgba(255,255,255,0.025); }
.rail-video-item.is-active {
  background: rgba(255,255,255,0.04);
  border-left-color: var(--accent);
  color: var(--fg);
}
.rvi-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--fg-faint);
}
.rail-video-item.is-active .rvi-num { color: var(--accent); }
.rvi-title {
  font-size: 12px;
  line-height: 1.35;
  text-wrap: pretty;
}
.rvi-badge {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-faint);
  padding: 3px 6px;
  border: 1px solid var(--line);
}

/* TOC */
.rail-toc { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1px; }
.rail-toc li a,
.rail-toc li button {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  padding: 8px 0;
  font-size: 12px;
  color: var(--fg-soft);
  text-decoration: none;
  border: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  text-align: left;
  cursor: pointer;
  width: 100%;
  font-family: inherit;
  transition: color 0.15s, border-color 0.15s;
}
.rail-toc li a:hover,
.rail-toc li button:hover { color: var(--fg); border-bottom-color: var(--line); }
.rt-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--fg-faint);
}

/* RIGHT — manual body */
.manual-body { padding-top: 60px; max-width: 720px; }
.manual-section { padding: 56px 0; border-top: 1px solid var(--line); }
.manual-section:first-child { border-top: 0; padding-top: 0; }
.manual-section header {
  display: flex; align-items: baseline; gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.ms-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--accent);
}
.manual-section h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--fg);
}
.ms-body { display: flex; flex-direction: column; gap: 18px; color: var(--fg-soft); font-size: 15px; line-height: 1.7; }
.ms-body p { margin: 0; text-wrap: pretty; }
.ms-body strong { color: var(--fg); font-weight: 500; }
.ms-body a { color: var(--accent); text-decoration: underline; text-decoration-color: rgba(255,255,255,0.2); text-underline-offset: 3px; }

.ms-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 19px;
  letter-spacing: -0.005em;
  color: var(--fg);
  margin: 16px 0 -4px;
}

.ms-bullets, .ms-numbered {
  margin: 0;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ms-bullets li, .ms-numbered li { padding-left: 6px; }
.ms-bullets li::marker { color: var(--fg-faint); }
.ms-numbered li::marker { color: var(--accent); font-family: var(--font-mono); font-size: 13px; }

.ms-callout {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  color: var(--fg);
}

.ms-stop {
  border-left: 2px solid var(--accent);
  background: rgba(255,255,255,0.025);
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ms-stop .stop-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
.ms-stop p { font-size: 14px; }

.ms-warn {
  border: 1px solid var(--line);
  border-left: 2px solid #b85a3a;
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ms-warn .warn-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #d77a5a;
}
.ms-warn p { font-size: 14px; }

.ms-safety li { font-size: 14px; }

.ms-caps {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  text-align: center;
}

.ms-foot {
  font-size: 13px;
  color: var(--fg-faint);
  font-style: italic;
}

.ms-contact {
  border: 1px solid var(--line);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}
.ms-contact-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-faint);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 4px;
}
.ms-contact-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: baseline;
  gap: 12px;
  font-size: 14px;
}
.ms-contact-row .k {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-faint);
}

/* Mobile */
@media (max-width: 1100px) {
  .manual-layout { grid-template-columns: 320px 1fr; gap: 48px; }
}
@media (max-width: 900px) {
  .manual-layout { grid-template-columns: 1fr; gap: 32px; }
  .manual-rail {
    position: static;
    max-height: none;
    overflow: visible;
  }
  .manual-rail-inner { padding-top: 32px; }
  .manual-body { padding-top: 24px; }
  .manual-section { padding: 40px 0; }
}

/* =================================================================
   ADDITIONS — hamburger menu + mobile drawer (matches existing 900px breakpoint)
   ================================================================= */
.topbar .hamburger {
  display: none;
  background: transparent;
  border: 1px solid rgba(243, 238, 226, 0.18);
  width: 44px; height: 44px;
  margin-left: 8px;
  cursor: pointer;
  padding: 8px;
  border-radius: 0;
  transition: border-color .2s, background .2s;
}
.topbar .hamburger:hover { border-color: var(--accent); }
.topbar .hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--fg);
  margin: 5px auto;
  transition: transform .25s ease, opacity .2s ease;
}
.topbar .hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.topbar .hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.topbar .hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-drawer {
  display: none;
  visibility: hidden;
  pointer-events: none;
  position: fixed;
  top: 98px; right: 0; left: 0;
  background: var(--bg-deep);
  border-bottom: 1px solid rgba(243, 238, 226, 0.10);
  padding: 8px 0 24px;
  transform: translateY(-110%);
  transition: transform .28s cubic-bezier(.4,0,.2,1);
  z-index: 90;
  max-height: calc(100vh - 98px);
  overflow-y: auto;
}
.mobile-drawer.open { transform: translateY(0); visibility: visible; pointer-events: auto; }
.mobile-drawer a {
  display: block;
  padding: 16px 24px;
  color: var(--fg-soft);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(243, 238, 226, 0.06);
  transition: color .2s, background .2s;
  min-height: 44px;
}
.mobile-drawer a:hover, .mobile-drawer a.is-active { color: var(--accent); background: rgba(243, 238, 226, 0.04); }
.mobile-drawer-overlay {
  display: none;
  position: fixed; inset: 98px 0 0 0;
  background: rgba(4, 5, 10, 0.6);
  z-index: 80;
  opacity: 0;
  transition: opacity .2s;
}
.mobile-drawer-overlay.show { display: block; opacity: 1; }

@media (max-width: 900px) {
  .topbar .hamburger { display: block; }
  .mobile-drawer { display: block; }
  /* Hide the squared SHOP cta on mobile so the drawer is the single nav surface */
  .topbar-actions .cta { display: none; }
}

/* ── Accessibility additions ──────────────────────────────────────────── */

/* Skip-to-content link — invisible until tabbed to, then jumps a keyboard user past the header. */
.skip-link {
  position: absolute;
  top: -40px;
  left: 12px;
  padding: 10px 16px;
  background: var(--fg);
  color: var(--bg-deep);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  z-index: 2147483647;
  transition: top .15s ease;
  border-radius: 4px;
}
.skip-link:focus { top: 12px; outline: 2px solid var(--accent, #c89a4a); }

/* Visible focus ring for any keyboard user. We never strip outline:none without a replacement. */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--accent, #c89a4a);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Main landmark wrapper — keep it transparent so existing layouts aren't disturbed. */
main { display: block; outline: none; }

/* Form labels: when present, give them clear hierarchy and link them visually. */
.contact-form .field label,
.review-form .field label,
.warranty-form .field label,
.service-form .field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-soft);
  margin-bottom: 6px;
}

/* Min tap target — 44×44 minimum on touch devices. */
@media (hover: none) and (pointer: coarse) {
  .topbar nav a,
  .topbar .cart-link,
  .topbar .cta,
  .footer a,
  .btn,
  .btn.ghost {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}

/* ── Legal pages (privacy, terms, refund-policy) ───────────────────────── */
.legal-page .subpage-hero h1 { font-size: clamp(48px, 9vw, 132px); }
.legal-page .ws-body .legal-ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}
.legal-page .ws-body .legal-ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--fg-soft);
}
.legal-page .ws-body .legal-ul li::before {
  content: '·';
  position: absolute;
  left: 4px;
  top: 0;
  color: var(--accent);
  font-weight: 600;
}
.legal-page .ws-body .legal-ul li strong { color: var(--fg); }
.legal-page .ws-body p { font-size: 15px; line-height: 1.75; }
.legal-page .ws-body a { color: var(--accent); text-decoration: none; border-bottom: 1px solid rgba(211, 164, 92, 0.4); }
.legal-page .ws-body a:hover { border-bottom-color: var(--accent); }

/* ── Cookie consent banner ─────────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  background: rgba(8, 14, 24, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(211, 164, 92, 0.25);
  padding: 16px 24px;
  animation: cookieSlideUp 0.45s ease-out both;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.4);
}
@keyframes cookieSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  justify-content: space-between;
}
.cookie-text {
  margin: 0;
  font-family: var(--font-sans, 'Inter Tight', sans-serif);
  font-size: 13px;
  line-height: 1.55;
  color: var(--fg-soft);
  flex: 1 1 320px;
}
.cookie-link {
  margin-left: 8px;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(211, 164, 92, 0.4);
}
.cookie-link:hover { border-bottom-color: var(--accent); }
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 11px 20px;
  border-radius: 2px;
  cursor: pointer;
  border: 1px solid rgba(211, 164, 92, 0.4);
  background: transparent;
  color: var(--fg-soft);
  transition: all 0.2s;
  min-height: 40px;
}
.cookie-btn:hover { color: var(--fg); border-color: var(--accent); }
.cookie-btn.cookie-accept {
  background: var(--accent);
  color: #0a0f1a;
  border-color: var(--accent);
}
.cookie-btn.cookie-accept:hover { background: #e0b370; border-color: #e0b370; color: #0a0f1a; }
@media (max-width: 640px) {
  .cookie-banner { padding: 8px 12px; }
  .cookie-inner { flex-direction: row; flex-wrap: nowrap; align-items: center; justify-content: space-between; gap: 10px; max-width: none; }
  .cookie-text { font-size: 10.5px; line-height: 1.3; flex: 1 1 auto; }
  .cookie-actions { flex-direction: row; gap: 8px; flex: 0 0 auto; flex-wrap: nowrap; align-items: center; }
  .cookie-btn { flex: none; min-height: 30px; padding: 6px 14px; font-size: 10px; letter-spacing: 0.05em; white-space: nowrap; }
}

/* ── Newsletter signup (footer) ────────────────────────────────────────── */
.newsletter-form { margin-top: 18px; max-width: 360px; }
.newsletter-row {
  display: flex;
  gap: 8px;
  border: 1px solid rgba(211, 164, 92, 0.3);
  border-radius: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}
.newsletter-row input[type="email"] {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 10px 14px;
  font-family: var(--font-sans, 'Inter Tight', sans-serif);
  font-size: 13px;
  color: var(--fg);
  outline: none;
}
.newsletter-row input[type="email"]::placeholder { color: var(--fg-soft); opacity: 0.65; }
.newsletter-row button {
  background: rgba(211, 164, 92, 0.18);
  border: 0;
  border-left: 1px solid rgba(211, 164, 92, 0.3);
  padding: 0 16px;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  cursor: pointer;
  transition: background 0.2s;
}
.newsletter-row button:hover:not(:disabled) { background: rgba(211, 164, 92, 0.32); }
.newsletter-row button:disabled { opacity: 0.5; cursor: wait; }
.newsletter-fine {
  margin: 8px 0 0;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--fg-soft);
  opacity: 0.7;
}
.newsletter-err {
  margin: 8px 0 0;
  font-size: 12px;
  color: #d77a5a;
}
.newsletter-done {
  margin-top: 18px;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--accent);
}

/* ── Order tracking page ───────────────────────────────────────────────── */
.tracking-page .subpage-hero h1 { font-size: clamp(48px, 9vw, 132px); }
.tracking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 760px;
  margin: 16px 0 32px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.015);
}
.tracking-fields {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: end;
}
.tracking-field { display: flex; flex-direction: column; gap: 6px; }
.tracking-field span {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-soft);
}
.tracking-field input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 10px 2px;
  font-family: var(--font-sans, 'Inter Tight', sans-serif);
  font-size: 16px;
  color: var(--fg);
  outline: none;
  transition: border-color 0.2s;
}
.tracking-field input:focus { border-bottom-color: var(--accent); }
.tracking-or {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-soft);
  padding-bottom: 14px;
}
.tracking-msg { margin: 12px 0; font-size: 14px; }
.tracking-msg-err { color: #d77a5a; }
.tracking-empty {
  margin: 24px 0;
  padding: 24px;
  border: 1px dashed var(--line);
  border-radius: 2px;
  text-align: center;
  color: var(--fg-soft);
  font-size: 15px;
}
.tracking-results { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.tracking-card {
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.015);
}
.tracking-card-h {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.tracking-type {
  font-family: var(--font-serif, 'Fraunces', serif);
  font-size: 18px;
  color: var(--fg);
  margin-right: 12px;
}
.tracking-id {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--fg-soft);
}
.status-pill {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.status-pill-active { background: rgba(211, 164, 92, 0.15); color: var(--accent); border: 1px solid rgba(211, 164, 92, 0.4); }
.status-pill-warn   { background: rgba(215, 122, 90, 0.15); color: #d77a5a;     border: 1px solid rgba(215, 122, 90, 0.4); }
.status-pill-good   { background: rgba(120, 180, 130, 0.15); color: #8fc89c;    border: 1px solid rgba(120, 180, 130, 0.4); }
.status-pill-muted  { background: rgba(255, 255, 255, 0.04); color: var(--fg-soft); border: 1px solid var(--line); }
.tracking-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 24px;
}
.tc-cell { display: flex; flex-direction: column; gap: 4px; }
.tc-cell.tc-wide { grid-column: 1 / -1; }
.tc-k {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-soft);
}
.tc-v { font-size: 14px; color: var(--fg); line-height: 1.5; }
.tracking-shipto {
  margin-top: 16px;
  padding: 14px 18px;
  border-left: 2px solid var(--accent);
  background: rgba(211, 164, 92, 0.06);
  font-size: 14px;
  color: var(--fg);
  line-height: 1.6;
}
.tracking-help {
  margin-top: 28px;
  font-size: 13px;
  color: var(--fg-soft);
}
.tracking-help a { color: var(--accent); text-decoration: none; }
@media (max-width: 720px) {
  .tracking-fields { grid-template-columns: 1fr; }
  .tracking-or { padding-bottom: 0; text-align: center; }
  .tracking-card-grid { grid-template-columns: 1fr; }
}

/* Visible link styling for inline contact info — accent color + subtle underline. */
.linklike {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(217, 175, 105, 0.4);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s;
}
.linklike:hover {
  text-decoration-color: var(--accent);
}


/* When the cookie banner is rendered, lift the chat fab out of the way.
   Modern browsers support :has(); fallback for older ones is harmless overlap. */
body:has(.cookie-banner) #lux-chat-host {
  transform: translateY(-92px);
  transition: transform 0.3s ease;
}
@media (max-width: 640px) {
  body:has(.cookie-banner) #lux-chat-host {
    transform: translateY(-150px); /* taller stacked banner on mobile */
  }
}

/* ── Mobile audit pass — overflow + footer breathing room ─────────────── */
/* Defensive: never let the page scroll horizontally regardless of internals. */
html, body { overflow-x: hidden; }

/* Inline admin-login circle inside footer's .legal row. */
.footer-admin-slot {
  display: inline-flex;
  align-items: center;
  gap: 0;
}
.footer-admin-slot .lp-admin-circle:hover {
  color: rgba(242, 200, 73, 1);
  border-color: rgba(242, 200, 73, 0.85);
  background: rgba(0, 0, 0, 0.92);
  transform: scale(1.06);
}
.footer-admin-slot .lp-admin-circle:focus-visible {
  outline: 2px solid rgba(242, 200, 73, 0.9);
  outline-offset: 2px;
}
.footer-admin-slot .lp-admin-circle[data-state="admin"] {
  color: rgba(242, 200, 73, 1);
  border-color: rgba(242, 200, 73, 0.8);
}

/* Footer legal row: wrap on narrow screens so the 4 spans (incl. admin L) don't overflow. */
footer .legal {
  flex-wrap: wrap;
  gap: 16px 24px;
  align-items: center;
}

/* Mobile-specific: ensure footer text breathes past the floating chat fab. */
@media (max-width: 700px) {
  footer { padding-bottom: 96px; }
  footer .legal { justify-content: flex-start; }
  /* Spec rows on PDPs: stack to single column at narrow widths so values aren't crushed. */
  .product-spec-row,
  .pr-spec-row,
  .specs-row { grid-template-columns: 1fr !important; }
  /* Cookie banner: allow inner row to wrap. */
  .cookie-inner { flex-wrap: wrap; gap: 12px; }
  .cookie-inner > * { min-width: 0; }
}

/* ── Live waitlist banner (Rome commission queue + Budapest production queue) ── */
.waitlist-banner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  margin: 22px 0 0;
  border: 1px solid rgba(211, 164, 92, 0.35);
  background: rgba(211, 164, 92, 0.06);
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--fg);
  line-height: 1.45;
}
.waitlist-banner strong {
  color: var(--accent, #d3a45c);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.wb-dot {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent, #d3a45c);
  box-shadow: 0 0 0 0 rgba(211, 164, 92, 0.7);
  animation: wb-pulse 2.4s ease-out infinite;
}
@keyframes wb-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(211, 164, 92, 0.7); }
  70%  { box-shadow: 0 0 0 12px rgba(211, 164, 92, 0); }
  100% { box-shadow: 0 0 0 0 rgba(211, 164, 92, 0); }
}
@media (max-width: 640px) {
  .waitlist-banner { font-size: 11px; padding: 10px 12px; gap: 10px; }
}

/* ── Warranty agreement: shake when user tries to checkout without agreeing ── */
.warranty-agreement.error {
  animation: warranty-shake 0.4s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}
@keyframes warranty-shake {
  10%, 90% { transform: translateX(-2px); }
  20%, 80% { transform: translateX(4px); }
  30%, 50%, 70% { transform: translateX(-6px); }
  40%, 60% { transform: translateX(6px); }
}

/* --- Conversion improvements (2026-06) — announcement+trust bar, prominent CTA, PDP badges, sticky cart --- */
#ship-banner{position:fixed;top:0;left:0;right:0;height:34px;z-index:90;display:flex;align-items:center;justify-content:center;gap:6px;background:#0A2540;color:#fff;font-size:12px;letter-spacing:.08em;font-weight:600;text-transform:uppercase;padding:0 12px;text-align:center;line-height:1.15;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.topbar{top:34px}
body{padding-top:34px}
.btn-xl{font-size:19px;padding:18px 34px;font-weight:600;box-shadow:0 8px 28px rgba(10,37,64,.22)}
.limited-badge{display:inline-block;align-self:flex-start;background:#0A2540;color:#fff;font-size:11px;letter-spacing:.1em;text-transform:uppercase;padding:5px 12px;border-radius:999px;margin-top:10px}
.ships-line{font-size:14px;color:var(--fg-soft,#5a6b7a);margin-top:8px}
@media (max-width:680px){
  #ship-banner{font-size:10px;letter-spacing:.03em}
  .pd-actions{position:fixed;left:0;right:0;bottom:0;z-index:80;display:flex;gap:10px;align-items:center;background:color-mix(in oklab,var(--bg,#fff) 92%,transparent);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);padding:12px 16px calc(12px + env(safe-area-inset-bottom));border-top:1px solid var(--line,#e5e5e5);margin-top:0;box-shadow:0 -6px 24px rgba(10,37,64,.14)}
  .pd-actions .btn{flex:1 1 auto;justify-content:center}
  .pd-actions .btn.ghost{display:none}
  .pd-sticky-price{font-family:var(--font-mono);font-size:13px;font-weight:600;color:var(--fg,#0A2540);white-space:nowrap;padding-right:2px}
  .subpage{padding-bottom:88px}
  body:has(.cookie-banner) .pd-actions{bottom:84px}
}


/* WEBFIX: value-bridge + trust-badges */
.pd-valuebridge{margin-top:18px;padding:16px 18px;border:1px solid var(--line);border-left:2px solid var(--accent);border-radius:6;background:color-mix(in oklab,var(--accent) 5%,transparent)}
.pd-vb-lead{font-family:var(--font-mono);font-size:11px;letter-spacing:.12em;text-transform:uppercase;color:var(--accent);margin-bottom:12px}
.pd-vb-list{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:9px}
.pd-vb-list li{position:relative;padding-left:18px;font-size:13.5px;line-height:1.5;color:var(--fg-soft)}
.pd-vb-list li::before{content:"\2713";position:absolute;left:0;top:0;color:var(--accent);font-size:12px;line-height:1.55}
.pd-vb-list li strong{color:var(--fg);font-weight:500}

/* Trust badges clustered at the buy button */
.pd-trustrow{margin-top:18px;display:flex;flex-wrap:wrap;gap:8px 10px;align-items:center}
.pd-trust-badge{display:inline-flex;align-items:center;gap:7px;padding:8px 12px;border:1px solid var(--line);border-radius:999px;font-family:var(--font-mono);font-size:11px;letter-spacing:.04em;text-transform:uppercase;color:var(--fg-soft);background:var(--bg-soft);white-space:nowrap}
.pd-trust-badge .ic{color:var(--accent);font-size:8px;line-height:1}
.pd-trust-reviews{text-decoration:none;color:var(--fg-soft);text-transform:none;letter-spacing:.02em;gap:6px}
.pd-trust-reviews .stars{color:var(--accent);letter-spacing:1px;font-size:12px}
.pd-trust-reviews:hover{border-color:var(--line-strong)}

/* Mobile sticky trust micro-row — only shown on the fixed mobile buy bar */
.pd-sticky-trust{display:none}
@media (max-width:680px){
  .pd-sticky-trust{display:flex;justify-content:center;align-items:center;gap:8px;position:fixed;left:0;right:0;bottom:calc(56px + env(safe-area-inset-bottom));z-index:80;padding:6px 16px;font-family:var(--font-mono);font-size:10px;letter-spacing:.04em;text-transform:uppercase;color:var(--fg-faint);background:color-mix(in oklab,var(--bg) 94%,transparent);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);border-top:1px solid var(--line)}
  .pd-sticky-trust .d{color:var(--accent);opacity:.7}
  body:has(.cookie-banner) .pd-sticky-trust{bottom:calc(140px + env(safe-area-inset-bottom))}
  .pd-trustrow{gap:7px 8px}
  .pd-trust-badge{font-size:10px;padding:7px 10px}
  .pd-valuebridge{padding:14px 15px}
  .pd-vb-list li{font-size:13px}
}


/* ============================================================
   BUYFIX (2026-06-19) — bright-ORANGE buy CTA + mobile shop layout
   Goal: every listing + PDP shows an obvious ORANGE BUY button that
   reaches add-to-cart/checkout; mobile /shop fills space; first screen
   shows a product, price, and the orange button without scrolling.
   ============================================================ */

/* Bright-yellow, big, obvious BUY button. Overrides .btn dark fill. */
.btn-buy,
a.btn.btn-buy,
button.btn.btn-buy {
  background: #FF6A00 !important;
  border-color: #FF6A00 !important;
  color: #0A2540 !important;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  padding: 17px 30px;
  border-radius: 6px;
  box-shadow: 0 6px 22px rgba(255, 106, 0, 0.34);
  text-decoration: none;
}
.btn-buy:hover,
a.btn.btn-buy:hover,
button.btn.btn-buy:hover {
  background: #FF8124 !important;
  border-color: #FF8124 !important;
  color: #0A2540 !important;
  box-shadow: 0 8px 28px rgba(255, 106, 0, 0.46);
  transform: translateY(-1px);
}
.btn-buy .arrow { color: #0A2540; }

/* Listing-card BUY button: pinned at the bottom of each shop card. */
.shop-card .card-buy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 14px;
  padding: 13px 16px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  cursor: pointer;
}

/* Make the card info a clean 3-zone column: label up top, then name+price
   +button anchored to the bottom so the dark dead-space is filled. */
.shop-card .info { justify-content: space-between; }
.shop-card .info .info-foot { display: flex; flex-direction: column; }

/* Pool-dimensions flash when buyer taps BUY before entering size. */
@keyframes dimsFlashPulse {
  0%, 100% { border-color: var(--line); box-shadow: 0 0 0 0 rgba(255,106,0,0); }
  30%      { border-color: #FF6A00; box-shadow: 0 0 0 3px rgba(255,106,0,0.35); }
}
.dims-flash { animation: dimsFlashPulse 1.5s ease-out; }

/* ---------- MOBILE /shop: fill space, first product above the fold ---------- */
@media (max-width: 640px) {
  /* Shrink the hero so a full product card is visible without scrolling.
     The .shop-page class is now applied on the wrapper so these fire. */
  .shop-page .subpage-hero {
    padding: 14px var(--pad) 14px;
    min-height: 0;
  }
  .shop-page .subpage-hero canvas.water-bg { opacity: 0.65; }
  .shop-page .subpage-hero .crumbs { font-size: 10px; }
  .shop-page .subpage-hero .eyebrow { display: none; }
  .shop-page .subpage-hero h1 { font-size: clamp(26px, 8vw, 38px); margin: 4px 0 0; }
  .shop-page .subpage-hero .lede { display: none; }
  .shop-page .section { padding-top: 12px !important; padding-bottom: 28px; }

  /* One column, shorter cards so image + name + price + yellow button all
     fit and the card no longer has a big empty dark band. */
  .shop-page .shop-grid { gap: 14px; border-top: none; grid-template-columns: 1fr; }
  .shop-page .shop-card {
    aspect-ratio: auto;
    height: auto;
    min-height: 340px;
    border-radius: 8px;
  }
  .shop-page .shop-card img { filter: brightness(0.9); }
  .shop-page .shop-card .info {
    padding: 18px;
    background: linear-gradient(180deg, rgba(0,0,0,.10) 0%, rgba(0,0,0,.35) 45%, rgba(0,0,0,.78) 100%);
  }
  .shop-page .shop-card .info h3 { font-size: 32px; margin: 0 0 6px; }
  .shop-page .shop-card .info .price { font-size: 14px; }
  .shop-page .shop-card .card-buy { margin-top: 14px; padding: 14px 16px; font-size: 13px; }
}

/* Small phones: keep the first card fully visible above the fold. */
@media (max-width: 640px) {
  .shop-page .shop-card { min-height: 320px; }
}

/* ---------- Desktop /shop: keep the yellow button visible on cards ---------- */
@media (min-width: 641px) {
  .shop-card .card-buy { max-width: 240px; }
}


/* ============================================================
   ORANGE-BUY TRUST + PAYPAL LABELING (2026-06-19)
   Trust/safety cluster by the buy button + clear PayPal label
   at the cart/checkout step. Pairs with the orange .btn-buy.
   ============================================================ */

/* PayPal wordmark (reuses .pp-pa / .pp-pal brand colors) */
.pp-wordmark { font-style: italic; font-weight: 700; letter-spacing: -0.01em; }
.pp-note-paypal { display: inline-flex; align-items: center; gap: 6px; flex-wrap: wrap; color: var(--fg-soft); font-size: 11px; }

/* Product page: trust cluster directly under the buy button */
.pd-buytrust {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
}
.pd-bt-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fg-soft);
  white-space: nowrap;
}
.pd-bt-item .pp-wordmark { font-size: 12px; text-transform: none; letter-spacing: -0.01em; }

/* Cart/checkout: trust row sitting right above the PayPal buttons */
.checkout-trustrow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 14px;
  margin: 0 0 14px;
}
.ck-trust {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fg-soft);
  white-space: nowrap;
}

@media (max-width: 680px) {
  .pd-buytrust { gap: 7px 10px; }
  .pd-bt-item { font-size: 10px; }
  .checkout-trustrow { gap: 7px 10px; }
  .ck-trust { font-size: 10px; }
}

