/* ==========================================================================
   VELORÉ MOTOR CO. — Design System
   Black · White · Metallic
   ========================================================================== */

/* ---------- Fonts (self-hosted) ---------- */
@font-face {
  font-family: 'Cinzel';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/cinzel-latin-600-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Cinzel';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/cinzel-latin-700-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/inter-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/inter-latin-500-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/inter-latin-600-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/inter-latin-700-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/space-grotesk-latin-500-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/space-grotesk-latin-700-normal.woff2') format('woff2');
}

/* ---------- Tokens ---------- */
:root {
  --bg: #060608;
  --bg-2: #0a0a0d;
  --surface: #101014;
  --surface-2: #16161b;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f4f4f6;
  --text-2: #a8aeb9;
  --text-3: #71767f;
  --silver: #c9ced8;
  --error: #e36c6c;
  --metal-grad: linear-gradient(105deg, #f8f9fb 0%, #c9ced8 20%, #8a93a4 42%, #f2f4f8 58%, #9aa3b2 78%, #e6e9ef 100%);
  --metal-grad-soft: linear-gradient(120deg, #e8eaef 0%, #9aa3b2 50%, #d4d8e0 100%);
  --font-display: 'Cinzel', 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-data: 'Space Grotesk', 'SF Mono', monospace;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --container: 1200px;
  --gutter: clamp(20px, 4vw, 48px);
  --radius: 16px;
  --header-h: 84px;
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.7;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
strong { font-weight: 600; color: var(--text); }

::selection { background: #c9ced8; color: #08080a; }

[id] { scroll-margin-top: calc(var(--header-h) + 16px); }

:focus-visible {
  outline: 2px solid #c9ced8;
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: fixed;
  top: -60px;
  left: 16px;
  z-index: 300;
  padding: 10px 18px;
  background: var(--text);
  color: #0a0a0c;
  font-weight: 600;
  border-radius: 8px;
  transition: top 0.25s var(--ease);
}
.skip-link:focus { top: 14px; }

/* ---------- Texture / chrome of the page ---------- */
.grain {
  position: fixed;
  inset: -50%;
  z-index: 250;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 100%;
  z-index: 240;
  background: var(--metal-grad);
  transform: scaleX(0);
  transform-origin: 0 50%;
  pointer-events: none;
}

/* Custom cursor (pointer devices only) */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 260;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0;
}
.cursor-dot { width: 6px; height: 6px; background: #e8eaf0; }
.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(220, 224, 232, 0.45);
  transition: width 0.25s var(--ease), height 0.25s var(--ease), border-color 0.25s;
}
body.cursor-on .cursor-dot, body.cursor-on .cursor-ring { opacity: 1; }
body.cursor-hover .cursor-ring {
  width: 56px;
  height: 56px;
  border-color: rgba(240, 242, 246, 0.9);
}
@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ---------- Preloader / page transition ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: #050507;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
}
.preloader img { width: clamp(120px, 18vw, 190px); height: auto; }
.preloader-line {
  width: clamp(140px, 22vw, 230px);
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}
.preloader-line::after {
  content: '';
  display: block;
  height: 100%;
  width: 100%;
  background: var(--metal-grad);
  transform: scaleX(0);
  transform-origin: 0 50%;
  animation: load-line 1.1s var(--ease) forwards;
}
@keyframes load-line { to { transform: scaleX(1); } }

.page-fade {
  position: fixed;
  inset: 0;
  z-index: 390;
  background: #050507;
  opacity: 0;
  pointer-events: none;
}

/* ---------- Typography helpers ---------- */
.metal-text {
  background: var(--metal-grad);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.metal-animate { animation: sheen 7s ease-in-out infinite alternate; }
@keyframes sheen {
  from { background-position: 0% 50%; }
  to { background-position: 100% 50%; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-data);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--text-3);
}
.eyebrow::before {
  content: '';
  width: 34px;
  height: 1px;
  background: var(--metal-grad-soft);
  flex: none;
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::after {
  content: '';
  width: 34px;
  height: 1px;
  background: var(--metal-grad-soft);
  flex: none;
}

h1, h2, h3, h4 { line-height: 1.12; font-weight: 700; }

.display {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

.section-head { max-width: 720px; margin-bottom: clamp(40px, 6vw, 64px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(28px, 4.2vw, 46px);
  margin-top: 18px;
}
.section-head p { margin-top: 18px; color: var(--text-2); font-size: 17px; }

.lead { font-size: clamp(17px, 1.6vw, 20px); color: var(--text-2); }

/* ---------- Layout ---------- */
.container {
  width: min(var(--container), 100% - var(--gutter) * 2);
  margin-inline: auto;
}
.container--wide { width: min(1400px, 100% - var(--gutter) * 2); }

.section { padding-block: clamp(72px, 10vw, 130px); }
.section--alt { background: var(--bg-2); }
.section--flush { padding-block: 0; }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    background-position 0.5s var(--ease), border-color 0.3s, background-color 0.3s;
  will-change: transform;
}
.btn svg { width: 17px; height: 17px; flex: none; transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn-metal {
  background: var(--metal-grad);
  background-size: 200% auto;
  color: #0a0a0c;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.65);
}
.btn-metal:hover {
  background-position: 95% 50%;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.btn-ghost {
  border: 1px solid var(--line-strong);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}
.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.btn-sm { min-height: 44px; padding: 10px 22px; font-size: 14.5px; }
.btn-lg { min-height: 58px; padding: 16px 38px; font-size: 16.5px; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  color: var(--silver);
}
.link-arrow svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.link-arrow:hover svg { transform: translateX(5px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  transition: background 0.4s var(--ease), border-color 0.4s, backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(5, 5, 8, 0.78);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
}
.header-inner {
  width: min(1400px, 100% - var(--gutter) * 2);
  margin-inline: auto;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: inline-flex; align-items: center; gap: 13px; }
.brand-emblem { width: 52px; height: auto; }
.brand-word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: 0.1em;
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  background: var(--metal-grad);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand-word small {
  font-family: var(--font-data);
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.52em;
  color: var(--text-3);
  -webkit-text-fill-color: var(--text-3);
}

.site-nav ul { display: flex; gap: clamp(18px, 2.4vw, 36px); }
.site-nav a {
  position: relative;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-2);
  padding: 8px 2px;
  transition: color 0.3s;
}
.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 1px;
  background: var(--metal-grad-soft);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 0.35s var(--ease);
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--text); }
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 16px; }

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  position: relative;
  flex: none;
}
.nav-toggle span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 1.6px;
  background: var(--text);
  transition: transform 0.35s var(--ease);
}
.nav-toggle span:first-child { transform: translate(-50%, calc(-50% - 4px)); }
.nav-toggle span:last-child { transform: translate(-50%, calc(-50% + 4px)); }
body.nav-open .nav-toggle span:first-child { transform: translate(-50%, -50%) rotate(45deg); }
body.nav-open .nav-toggle span:last-child { transform: translate(-50%, -50%) rotate(-45deg); }

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
}
.hero-stage {
  position: relative;
  height: 100%;
  overflow: hidden;
  perspective: 1100px;
  background: #050507;
}
.hero-media {
  position: absolute;
  inset: 0;
  transform-origin: 50% 82%;
  will-change: transform;
  overflow: hidden;
}
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 50% 30%, transparent 40%, rgba(4, 4, 6, 0.78) 100%),
    linear-gradient(to top, rgba(4, 4, 6, 0.92) 0%, rgba(4, 4, 6, 0.25) 30%, transparent 55%);
}
.hero-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(76px, 13vh, 130px);
  text-align: center;
  padding-inline: var(--gutter);
  z-index: 2;
}
.hero-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(30px, 5.6vw, 64px);
  letter-spacing: 0.04em;
  line-height: 1.14;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line > span { display: inline-block; }
.hero-sub {
  margin: 22px auto 0;
  max-width: 560px;
  color: var(--text-2);
  font-size: clamp(15.5px, 1.5vw, 18px);
}
.hero-cta {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-eyebrow { margin-bottom: 22px; }

.scroll-cue {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-data);
  font-size: 10.5px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-3);
}
.scroll-cue::after {
  content: '';
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, var(--silver), transparent);
  animation: cue 2s var(--ease) infinite;
}
@keyframes cue {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + clamp(64px, 10vw, 110px)) 0 clamp(56px, 8vw, 96px);
  background:
    radial-gradient(60% 120% at 50% -20%, rgba(141, 153, 174, 0.14), transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(32px, 5.4vw, 58px);
  margin-top: 20px;
  max-width: 900px;
}
.page-hero .lead { margin-top: 22px; max-width: 640px; }
.page-hero-emblem {
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(320px, 36vw, 560px);
  opacity: 0.07;
  pointer-events: none;
}
.crumbs {
  display: flex;
  gap: 10px;
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 14px;
}
.crumbs a:hover { color: var(--text); }

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding-block: 22px;
  background: var(--bg-2);
}
.marquee-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.6vw, 30px);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(216, 220, 228, 0.34);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 56px;
}
.marquee-track span i {
  font-style: normal;
  -webkit-text-stroke: 0;
  background: var(--metal-grad-soft);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 0.62em;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 28px);
}
.svc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.4s, box-shadow 0.5s var(--ease);
}
.svc-card:hover {
  transform: translateY(-8px);
  border-color: var(--line-strong);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}
.svc-card-media { aspect-ratio: 16 / 11; overflow: hidden; }
.svc-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.svc-card:hover .svc-card-media img { transform: scale(1.06); }
.svc-card-body { padding: 26px 26px 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.svc-card-body h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 20px;
  letter-spacing: 0.05em;
}
.svc-card-body p { color: var(--text-2); font-size: 15px; flex: 1; }
.svc-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.price-tag {
  font-family: var(--font-data);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--text);
}
.price-tag small { color: var(--text-3); font-weight: 500; font-size: 11.5px; letter-spacing: 0.14em; display: block; }

/* ---------- Segmented toggle (Mobile / Shop) ---------- */
.seg {
  position: relative;
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  padding: 5px;
  min-width: min(420px, 100%);
}
.seg-thumb {
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 5px;
  width: calc(50% - 5px);
  background: var(--metal-grad);
  background-size: 200% auto;
  border-radius: 999px;
  transition: transform 0.45s var(--ease);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 4px 14px rgba(0, 0, 0, 0.4);
}
.seg[data-active="1"] .seg-thumb { transform: translateX(calc(100% + 0px)); }
.seg button {
  position: relative;
  z-index: 1;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.03em;
  color: var(--text-2);
  transition: color 0.35s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
}
.seg button svg { width: 17px; height: 17px; }
.seg button.is-active { color: #0a0a0c; }

/* Mode panels */
.mode-panels { position: relative; }
.mode-panel { display: none; }
.mode-panel.is-active { display: grid; }

.mode-split {
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.mode-media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}
.mode-media img { width: 100%; height: 100%; object-fit: cover; }
.mode-copy h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(22px, 2.6vw, 30px);
  margin-bottom: 16px;
}
.mode-copy > p { color: var(--text-2); margin-bottom: 22px; }
.check-list { display: grid; gap: 13px; margin-bottom: 28px; }
.check-list li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  color: var(--text-2);
  font-size: 15.5px;
}
.check-list li strong { color: var(--text); font-weight: 600; }
.check-list svg { width: 20px; height: 20px; flex: none; margin-top: 2px; }

/* ---------- Split (about teaser etc.) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.split--rev { grid-template-columns: 1.1fr 1fr; }
.portrait-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-strong);
}
.portrait-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), inset 0 -90px 90px -40px rgba(4, 4, 6, 0.85);
  pointer-events: none;
}
.portrait-frame img { width: 100%; filter: grayscale(0.85) contrast(1.04); transition: filter 0.6s var(--ease); }
.portrait-frame:hover img { filter: grayscale(0.2) contrast(1.02); }
.portrait-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(8, 8, 11, 0.72);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line-strong);
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver);
}

.sig {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.sig-name {
  font-family: var(--font-display);
  font-size: 19px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.sig-role {
  font-family: var(--font-data);
  font-size: 11.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-3);
}

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}
.stat {
  padding: clamp(28px, 4vw, 46px) clamp(20px, 3vw, 38px);
  border-left: 1px solid var(--line);
  text-align: center;
}
.stat:first-child { border-left: 0; }
.stat-num {
  font-family: var(--font-data);
  font-weight: 700;
  font-size: clamp(34px, 4.6vw, 56px);
  letter-spacing: 0.01em;
  background: var(--metal-grad);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.stat-label {
  margin-top: 12px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
}

/* ---------- Reviews ---------- */
.review-rail-wrap { position: relative; }
.review-rail {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 18px;
  scrollbar-width: none;
}
.review-rail::-webkit-scrollbar { display: none; }
.review-card {
  flex: 0 0 min(400px, 86vw);
  scroll-snap-align: start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.4s, transform 0.5s var(--ease);
}
.review-card:hover { border-color: var(--line-strong); transform: translateY(-4px); }
.stars { display: flex; gap: 4px; }
.stars svg { width: 17px; height: 17px; fill: #e8eaf0; }
.stars svg.dim { fill: rgba(232, 234, 240, 0.25); }
.review-card blockquote { color: var(--text-2); font-size: 15.5px; flex: 1; }
.review-meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 16px; border-top: 1px solid var(--line); }
.review-name { font-weight: 600; font-size: 15px; }
.review-sub { color: var(--text-3); font-size: 12.5px; margin-top: 2px; }
.chip {
  font-family: var(--font-data);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--silver);
  border: 1px solid var(--line-strong);
  padding: 6px 13px;
  border-radius: 999px;
  white-space: nowrap;
}
.rail-nav { display: flex; gap: 12px; }
.rail-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease);
}
.rail-btn:hover { background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.4); transform: translateY(-2px); }
.rail-btn svg { width: 18px; height: 18px; }
.rail-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: clamp(36px, 5vw, 56px); }
.rail-head .section-head { margin-bottom: 0; }

/* Review grid page */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review-grid .review-card { flex: none; }
.filter-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 38px; }
.filter-btn {
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-2);
  border: 1px solid var(--line);
  padding: 10px 20px;
  border-radius: 999px;
  transition: all 0.3s var(--ease);
}
.filter-btn:hover { border-color: var(--line-strong); color: var(--text); }
.filter-btn.is-active {
  background: var(--metal-grad);
  color: #0a0a0c;
  border-color: transparent;
  font-weight: 700;
}
.rating-summary {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
  padding: 16px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.rating-big {
  font-family: var(--font-data);
  font-weight: 700;
  font-size: 42px;
  line-height: 1;
  background: var(--metal-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Instagram strip ---------- */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.ig-tile {
  position: relative;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.ig-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease), opacity 0.4s;
}
.ig-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 8, 0.45);
  opacity: 0;
  transition: opacity 0.4s;
}
.ig-tile svg {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 26px;
  height: 26px;
  z-index: 2;
  opacity: 0;
  transform: scale(0.6);
  transition: all 0.4s var(--ease);
}
.ig-tile:hover img { transform: scale(1.07); }
.ig-tile:hover::after, .ig-tile:hover svg { opacity: 1; }
.ig-tile:hover svg { transform: scale(1); }

/* ---------- Map / visit ---------- */
.map-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 7;
  background: var(--surface);
}
.map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) invert(0.9) hue-rotate(180deg) brightness(0.92) contrast(1.06);
}
.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 22px;
}
.info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}
.info-card h4 {
  font-family: var(--font-data);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 12px;
}
.info-card p, .info-card li { color: var(--text-2); font-size: 15px; }
.info-card a:hover { color: var(--text); }
.hours-row { display: flex; justify-content: space-between; gap: 14px; padding-block: 5px; }
.hours-row span:last-child { color: var(--text); font-family: var(--font-data); font-size: 13.5px; }

/* ---------- Comparison table ---------- */
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}
.compare-table th, .compare-table td {
  padding: 20px 24px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  vertical-align: top;
}
.compare-table thead th {
  background: var(--surface-2);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 15px;
}
.compare-table thead th:first-child { width: 22%; }
.compare-table tbody th {
  font-family: var(--font-data);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-3);
}
.compare-table td { color: var(--text-2); }
.compare-table td strong { display: block; margin-bottom: 4px; }
.compare-table tbody tr:last-child th, .compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-table tbody tr:nth-child(odd) { background: rgba(255, 255, 255, 0.015); }

/* ---------- Price tables (services) ---------- */
.svc-block {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
  padding-block: clamp(56px, 8vw, 96px);
  border-top: 1px solid var(--line);
}
.svc-block:first-of-type { border-top: 0; }
.svc-block--rev .svc-sticky { order: 2; }
.svc-sticky { position: sticky; top: calc(var(--header-h) + 24px); }
.svc-sticky .svc-img {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  margin-bottom: 24px;
}
.svc-num {
  font-family: var(--font-data);
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--text-3);
}
.svc-block h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(26px, 3.4vw, 38px);
  margin: 14px 0 16px;
}
.svc-block .svc-desc { color: var(--text-2); margin-bottom: 28px; }
.svc-time {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-data);
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 28px;
}
.svc-time svg { width: 16px; height: 16px; }

.price-table { display: grid; gap: 12px; margin-bottom: 30px; }
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 19px 24px;
  transition: border-color 0.3s, transform 0.4s var(--ease);
}
.price-row:hover { border-color: var(--line-strong); transform: translateX(6px); }
.price-row .pr-name { font-weight: 600; font-size: 15.5px; }
.price-row .pr-note { color: var(--text-3); font-size: 13px; margin-top: 3px; }
.price-row .pr-price {
  font-family: var(--font-data);
  font-weight: 700;
  font-size: 19px;
  white-space: nowrap;
  background: var(--metal-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.fine-print { color: var(--text-3); font-size: 13px; margin-bottom: 28px; }

/* ---------- Accordion ---------- */
.accordion { border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 4px;
  text-align: left;
  font-weight: 600;
  font-size: clamp(15.5px, 1.6vw, 17.5px);
  transition: color 0.3s;
}
.acc-btn:hover { color: var(--silver); }
.acc-icon {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  flex: none;
  position: relative;
  transition: transform 0.4s var(--ease), background 0.3s;
}
.acc-icon::before, .acc-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1.5px;
  background: var(--text);
  transform: translate(-50%, -50%);
  transition: transform 0.4s var(--ease);
}
.acc-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.acc-item.is-open .acc-icon { transform: rotate(45deg); background: rgba(255, 255, 255, 0.06); }
.acc-panel { overflow: hidden; height: 0; }
.acc-panel-inner { padding: 0 4px 26px; color: var(--text-2); max-width: 760px; }

/* ---------- Timeline (about) ---------- */
.timeline { position: relative; max-width: 860px; margin-inline: auto; padding-left: clamp(34px, 5vw, 56px); }
.timeline-rail {
  position: absolute;
  left: 8px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: var(--line);
}
.timeline-rail i {
  position: absolute;
  inset: 0;
  background: var(--metal-grad-soft);
  transform: scaleY(0);
  transform-origin: top;
  display: block;
}
.tl-item { position: relative; padding-bottom: clamp(44px, 6vw, 64px); }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: '';
  position: absolute;
  left: calc(-1 * clamp(34px, 5vw, 56px) + 3.5px);
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--metal-grad);
  box-shadow: 0 0 0 5px rgba(201, 206, 216, 0.08);
}
.tl-year {
  font-family: var(--font-data);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--silver);
}
.tl-item h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(19px, 2.2vw, 24px);
  margin: 10px 0 10px;
}
.tl-item p { color: var(--text-2); max-width: 640px; }

/* ---------- Values grid ---------- */
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  background: var(--surface);
  transition: transform 0.5s var(--ease), border-color 0.4s;
}
.value-card:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.value-card .v-num {
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--text-3);
}
.value-card h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 18px;
  margin: 14px 0 10px;
}
.value-card p { color: var(--text-2); font-size: 14.5px; }

/* ---------- Forms ---------- */
.field { display: grid; gap: 9px; }
.field label {
  font-family: var(--font-data);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-3);
}
.field label .req { color: var(--silver); }
.field input, .field select, .field textarea {
  background: #0d0d11;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 15px 18px;
  font-size: 15.5px;
  color: var(--text);
  transition: border-color 0.3s, box-shadow 0.3s;
  width: 100%;
  min-height: 52px;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: rgba(220, 224, 232, 0.55);
  box-shadow: 0 0 0 4px rgba(201, 206, 216, 0.1);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a8aeb9' stroke-width='1.6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
}
.field .err {
  display: none;
  color: var(--error);
  font-size: 13px;
}
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--error); }
.field.has-error .err { display: block; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-grid .span-2 { grid-column: span 2; }
input::placeholder, textarea::placeholder { color: #5b6069; }
input[type="date"] { color-scheme: dark; }

/* ---------- Booking wizard ---------- */
.wizard-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.wizard {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(26px, 4vw, 44px);
  overflow: hidden;
}
.wizard-progress { display: flex; align-items: center; gap: 0; margin-bottom: 38px; }
.wp-step { display: flex; align-items: center; flex: 1; }
.wp-step:last-child { flex: 0; }
.wp-dot {
  width: 38px;
  height: 38px;
  flex: none;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  font-family: var(--font-data);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-3);
  transition: all 0.4s var(--ease);
  position: relative;
  z-index: 1;
  background: var(--surface);
}
.wp-line { height: 1px; flex: 1; background: var(--line); position: relative; overflow: hidden; }
.wp-line i { position: absolute; inset: 0; background: var(--metal-grad-soft); transform: scaleX(0); transform-origin: left; transition: transform 0.5s var(--ease); display: block; }
.wp-step.is-done .wp-line i, .wp-step.is-active .wp-line i { transform: scaleX(1); }
.wp-step.is-active .wp-dot, .wp-step.is-done .wp-dot {
  background: var(--metal-grad);
  color: #0a0a0c;
  border-color: transparent;
}
.wizard-step { display: none; }
.wizard-step.is-active { display: block; }
.wizard-step h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(20px, 2.4vw, 26px);
  margin-bottom: 8px;
}
.wizard-step .ws-sub { color: var(--text-3); font-size: 14.5px; margin-bottom: 28px; }

.opt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.opt-card { position: relative; }
.opt-card input { position: absolute; opacity: 0; inset: 0; pointer-events: none; }
.opt-card label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 22px;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  background: #0d0d11;
  height: 100%;
}
.opt-card label:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.opt-card input:checked + label {
  border-color: rgba(232, 234, 240, 0.75);
  background: rgba(232, 234, 240, 0.05);
  box-shadow: 0 0 0 1px rgba(232, 234, 240, 0.4), 0 12px 30px rgba(0, 0, 0, 0.35);
}
.opt-card input:focus-visible + label { outline: 2px solid #c9ced8; outline-offset: 3px; }
.opt-card .oc-title { font-weight: 600; font-size: 15.5px; display: flex; align-items: center; gap: 10px; }
.opt-card .oc-title svg { width: 19px; height: 19px; flex: none; }
.opt-card .oc-sub { color: var(--text-3); font-size: 13px; }
.opt-card .oc-price { font-family: var(--font-data); font-size: 13px; color: var(--silver); letter-spacing: 0.06em; }

.slot-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.slot { position: relative; }
.slot input { position: absolute; opacity: 0; inset: 0; pointer-events: none; }
.slot label {
  display: inline-block;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 20px;
  font-family: var(--font-data);
  font-size: 13.5px;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  color: var(--text-2);
}
.slot label:hover { border-color: var(--line-strong); color: var(--text); }
.slot input:checked + label { background: var(--metal-grad); color: #0a0a0c; border-color: transparent; font-weight: 700; }
.slot input:focus-visible + label { outline: 2px solid #c9ced8; outline-offset: 3px; }

.wizard-nav { display: flex; justify-content: space-between; gap: 16px; margin-top: 36px; }
.wizard-msg { margin-top: 18px; font-size: 14px; color: var(--error); display: none; }

.summary-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  position: sticky;
  top: calc(var(--header-h) + 24px);
}
.summary-card h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 17px;
  letter-spacing: 0.08em;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 6px;
}
.sum-row { display: flex; justify-content: space-between; gap: 16px; padding-block: 11px; border-bottom: 1px dashed var(--line); font-size: 14.5px; }
.sum-row dt { color: var(--text-3); }
.sum-row dd { color: var(--text); text-align: right; font-weight: 500; }
.summary-note { margin-top: 18px; color: var(--text-3); font-size: 13px; }
.summary-call { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); font-size: 14.5px; color: var(--text-2); }
.summary-call a { color: var(--text); font-weight: 600; }
.summary-call a:hover { color: var(--silver); }

.success-panel { text-align: center; padding: 30px 10px; }
.success-ring {
  width: 92px;
  height: 92px;
  margin: 0 auto 26px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  background: rgba(232, 234, 240, 0.04);
}
.success-ring svg { width: 38px; height: 38px; }
.success-ring path { stroke-dasharray: 60; stroke-dashoffset: 60; }
.success-panel h2 { font-family: var(--font-display); text-transform: uppercase; font-size: 26px; margin-bottom: 12px; }
.success-panel p { color: var(--text-2); max-width: 420px; margin-inline: auto; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  text-align: center;
  padding-block: clamp(86px, 12vw, 150px);
  overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(70% 130% at 50% 120%, rgba(141, 153, 174, 0.16), transparent 60%),
    var(--bg-2);
}
.cta-band-emblem {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(420px, 56vw, 820px);
  opacity: 0.05;
  pointer-events: none;
}
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(30px, 5vw, 56px);
  margin-top: 20px;
}
.cta-band p { color: var(--text-2); margin-top: 18px; max-width: 520px; margin-inline: auto; }
.cta-band .hero-cta { margin-top: 38px; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); background: #050507; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(32px, 5vw, 64px);
  padding-block: clamp(56px, 8vw, 90px);
}
.footer-brand img { width: 188px; }
.footer-tag {
  margin-top: 20px;
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-3);
  line-height: 2;
}
.socials { display: flex; gap: 12px; margin-top: 22px; }
.socials a {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}
.socials a:hover { background: rgba(255, 255, 255, 0.07); transform: translateY(-3px); border-color: rgba(255, 255, 255, 0.4); }
.socials svg { width: 18px; height: 18px; }
.footer-col h4 {
  font-family: var(--font-data);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 20px;
}
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: var(--text-2); font-size: 15px; transition: color 0.3s; }
.footer-col a:hover { color: var(--text); }
.footer-col p { color: var(--text-2); font-size: 15px; margin-bottom: 12px; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-block: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  align-items: center;
  justify-content: space-between;
  color: var(--text-3);
  font-size: 13px;
}

/* ---------- Reveal initial states are set in JS (progressive enhancement) ---------- */

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: 0; }
  .stat:nth-child(n + 3) { border-top: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  :root { --header-h: 72px; }
  .site-nav {
    position: fixed;
    inset: 0;
    background: rgba(4, 4, 7, 0.96);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    display: grid;
    place-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.45s var(--ease);
  }
  body.nav-open .site-nav { opacity: 1; pointer-events: auto; }
  .site-nav ul { flex-direction: column; align-items: center; gap: 8px; text-align: center; }
  .site-nav a {
    font-family: var(--font-display);
    font-size: clamp(26px, 7vw, 38px);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text);
    padding: 10px 16px;
    display: inline-block;
  }
  .site-nav a::after { bottom: 6px; }
  .nav-toggle { display: block; }
  .header-actions .btn { display: none; }
  body.nav-open .header-actions .btn { display: none; }

  .mode-split, .split, .split--rev, .svc-block, .wizard-layout { grid-template-columns: 1fr; }
  .svc-block--rev .svc-sticky { order: 0; }
  .svc-sticky { position: static; }
  .summary-card { position: static; order: 2; }
  .mode-media { order: 0; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .span-2 { grid-column: span 1; }
  .opt-grid { grid-template-columns: 1fr; }
  .compare-wrap { overflow-x: auto; }
  .compare-table { min-width: 640px; }
  .map-wrap { aspect-ratio: 4 / 3; }
  .info-cards { grid-template-columns: 1fr; }
  .rail-head { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 900px) {
  /* Portrait: the 16:9 logo film becomes a cinematic band below the
     header, with the copy centered in clean black beneath it. Static
     flow = zero overlap at any viewport height. */
  .hero { height: auto; min-height: 100svh; }
  .hero-stage {
    background: #000;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    padding-top: var(--header-h);
  }
  .hero-media {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 16 / 9;
    flex: none;
  }
  .hero-vignette {
    background:
      linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent 20%),
      linear-gradient(to top, #000 2%, transparent 24%);
  }
  .hero-copy {
    position: static;
    margin-block: auto;
    padding: 30px var(--gutter) 64px;
  }
  .scroll-cue { display: none; }
}

@media (max-width: 640px) {
  body { font-size: 15.5px; }
  .eyebrow { font-size: 11px; letter-spacing: 0.22em; gap: 10px; }
  .eyebrow::before, .eyebrow--center::after { width: 22px; }
  .card-grid { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .ig-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .brand-emblem { width: 42px; }
  .brand-word { font-size: 17px; }
  .hero-cta .btn { width: 100%; max-width: 360px; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .marquee-track { animation: none; }
  .cursor-dot, .cursor-ring { display: none; }
}
