/* MotorInc — All American Service & Repair */

:root {
  --bg: #ffffff;
  --bg-2: #f5f3f0;
  --bg-3: #ebe7e1;
  --ink: #262220;
  --ink-dim: #4a463e;
  --ink-mute: #8a847a;
  --line: #e4dfd7;
  --red: #851d2c;
  --red-deep: #661523;
  --blue: #2db5e8;
  --steel: #8a847a;
  --accent: var(--red);
  /* Dark media chrome — overlays that sit on photos/video, kept dark on purpose */
  --glass-dark: rgba(12,12,12,0.62);
  --glass-dark-strong: rgba(12,12,12,0.8);
  /* Text that sits on dark media chrome (overlays, lightbox) */
  --on-dark: #f4f0e9;
  --on-dark-mute: rgba(244,240,233,0.6);

  --f-display: 'Bebas Neue', 'Oswald', Impact, sans-serif;
  --f-body: 'Archivo', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --f-mono: 'JetBrains Mono', 'IBM Plex Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body {
  background:
    radial-gradient(1100px 560px at 82% -12%, rgba(133,29,44,0.05), transparent 62%),
    var(--bg);
}

/* Optional grain overlay */
body.grain::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 200;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' seed='3'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.7 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

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

/* Layout */
.wrap { width: min(1440px, 92vw); margin: 0 auto; }
section { position: relative; }

/* ───────── NAV ───────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  background: rgba(255,255,255,0.62);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.nav.scrolled { border-bottom-color: var(--line); background: rgba(255,255,255,0.9); }

.nav__brand {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--f-display); letter-spacing: 0.06em;
  font-size: 22px;
}
.nav__brand img {
  width: 40px; height: 40px; border-radius: 6px;
  object-fit: cover;
}
.nav__brand span em { color: var(--accent); font-style: normal; }

.nav__links {
  display: flex; gap: 28px;
  font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav__links a {
  position: relative; padding: 6px 0;
  color: var(--ink-dim);
  transition: color .2s ease;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--accent);
  transition: right .3s ease;
}
.nav__links a:hover::after { right: 0; }
.nav__links a.is-active { color: var(--accent); }
.nav__links a.is-active::after { right: 0; }

.nav__cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; border: 1px solid var(--ink);
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.nav__cta:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

@media (max-width: 880px) {
  .nav { padding: 14px 18px; }
  .nav__links { display: none; }
}

/* ───────── HERO ───────── */
.hero {
  min-height: 100vh;
  padding: 140px 0 60px;
  position: relative;
  overflow: hidden;
}

/* Hand-drawn red swoosh under the nav */
.hero__swoosh {
  position: absolute;
  top: 70px;
  left: 18%;
  right: 18%;
  height: 50px;
  z-index: 1;
  pointer-events: none;
}
.hero__swoosh svg { width: 100%; height: 100%; overflow: visible; }
.hero__swoosh path {
  fill: none;
  stroke: var(--accent);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  animation: swooshDraw 1.4s cubic-bezier(.6,.05,.2,1) 0.4s forwards;
  filter: drop-shadow(0 1px 6px rgba(133,29,44,0.22));
}
@keyframes swooshDraw {
  to { stroke-dashoffset: 0; }
}

/* ───────── Title — dynamic reveal + ambient motion ───────── */
.hero__title { position: relative; }

/* sparks canvas anchored around "Iron." word */
.hero__sparks {
  position: absolute;
  pointer-events: none;
  z-index: 4;
  /* sized + positioned via JS to track the .out word */
}
.hero__title .row {
  display: block;
  position: relative;
  overflow: hidden;
  padding: 0.04em 0;
  animation: rowMaskIn 1.1s cubic-bezier(.18,.8,.2,1) backwards;
}
.hero__title .row > .inner {
  display: inline-block;
  animation: rowSlideIn 1.1s cubic-bezier(.18,.8,.2,1) backwards;
  will-change: transform;
}
.hero__title .row:nth-child(1),
.hero__title .row:nth-child(1) > .inner { animation-delay: 0.10s; }
.hero__title .row:nth-child(2),
.hero__title .row:nth-child(2) > .inner { animation-delay: 0.22s; }
.hero__title .row:nth-child(3),
.hero__title .row:nth-child(3) > .inner { animation-delay: 0.40s; }
.hero__title .row:nth-child(4),
.hero__title .row:nth-child(4) > .inner { animation-delay: 0.55s; }

@keyframes rowMaskIn {
  from { clip-path: inset(0 100% 0 0); }
  to   { clip-path: inset(0 0 0 0); }
}
@keyframes rowSlideIn {
  from { transform: translate3d(8%, 30%, 0) skewY(4deg); opacity: 0; filter: blur(6px); }
  to   { transform: none; opacity: 1; filter: none; }
}

/* the red word "Hands." gets a heat-glow loop after entry */
.hero__title .red {
  text-shadow: 0 0 0 transparent;
  animation: redHeat 4.2s ease-in-out 1.4s infinite;
}
@keyframes redHeat {
  0%, 100% { text-shadow: 0 0 0 transparent; }
  50% { text-shadow: 0 6px 30px rgba(133,29,44,0.24); }
}

/* outline word draws itself as if etched */
.hero__title .out {
  position: relative;
  animation: outlinePulse 5s ease-in-out 1.6s infinite;
}
@keyframes outlinePulse {
  0%, 100% { -webkit-text-stroke-color: var(--ink); }
  50% { -webkit-text-stroke-color: var(--accent); }
}

/* big ambient stripe drifting behind the title */
.hero__title-bg {
  position: absolute; inset: -10% -20% -10% -20%;
  z-index: 0; pointer-events: none;
  overflow: hidden;
}
.hero__title-bg::before {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(115deg,
      transparent 0, transparent 80px,
      rgba(20,18,14,0.035) 80px, rgba(20,18,14,0.035) 82px,
      transparent 82px, transparent 200px);
  animation: stripeDrift 28s linear infinite;
}
@keyframes stripeDrift {
  from { transform: translateX(0); }
  to   { transform: translateX(-200px); }
}

/* Underline tracks the actual "Romanian" word width, not the viewport. */
.hero__title .row.shift { position: relative; }
.hero__title .row.shift > .inner::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.015em;
  width: 0; height: 0.06em;
  background: var(--accent);
  animation: underscore 1.2s cubic-bezier(.6,.05,.2,1) 1.1s forwards;
}
@keyframes underscore {
  to { width: 100%; }
}

.hero__title .row > .inner { position: relative; }
/* spec callouts that fly in next to the title */
.hero__title-spec {
  position: absolute;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-dim);
  opacity: 0;
  animation: specIn 0.6s ease-out forwards;
  white-space: nowrap;
  display: flex; align-items: center; gap: 8px;
}
.hero__title-spec::before {
  content: ""; width: 28px; height: 1px; background: var(--accent);
}
.hero__title-spec.s1 { top: calc(0.84em + 28px); right: 0; animation-delay: 1.3s; }
.hero__title-spec.s2 { bottom: -0.9em; left: 26vw; animation-delay: 1.55s; }

@keyframes specIn {
  from { opacity: 0; transform: translateX(-12px); }
  to   { opacity: 1; transform: none; }
}

/* live cursor blink at end of last word */
.hero__title .red .caret {
  display: inline-block;
  width: 0.08em; height: 0.85em;
  background: var(--accent);
  margin-left: 0.06em;
  vertical-align: -0.05em;
  animation: caretBlink 1s steps(1) infinite;
}
@keyframes caretBlink {
  50% { opacity: 0; }
}

@media (max-width: 880px) {
  .hero__title-spec { display: none; }
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  align-items: start;
}
.hero__main { min-width: 0; }

/* Compact horizontal stats below CTAs */
.hero__stats {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.hero__stats .stat {
  padding: 18px 22px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 8px;
}
.hero__stats .stat:first-child { padding-left: 0; }
.hero__stats .stat:last-child { padding-right: 0; border-right: 0; }
.hero__stats .stat strong {
  font-family: var(--f-display);
  font-size: 26px; line-height: 1;
  color: var(--ink); letter-spacing: 0.01em;
}

/* ── 9:16 shop reel ── */
.hero__reel {
  position: relative;
  aspect-ratio: 9 / 16;
  width: 100%;
  max-width: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0c0c0c;
  box-shadow:
    0 24px 60px rgba(20,18,14,0.22),
    0 0 0 1px rgba(20,18,14,0.06);
  isolation: isolate;
  margin-top: 12px;
}
.hero__reel-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(1.05);
  z-index: 1;
}
/* subtle vignette + scanline feel */
.hero__reel-frame {
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.35) 0%, transparent 18%, transparent 78%, rgba(0,0,0,0.55) 100%),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 3px);
  mix-blend-mode: normal;
}
.hero__reel-frame::after {
  content: "";
  position: absolute; inset: 0;
  box-shadow: inset 0 0 60px rgba(0,0,0,0.5);
}
.hero__reel-tag {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 10px;
  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(245,241,234,0.15);
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--on-dark);
}
.hero__reel-tag .rec {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  animation: recPulse 1.2s ease-in-out infinite;
}
@keyframes recPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.hero__reel-meta {
  position: absolute; bottom: 12px; left: 14px; right: 14px; z-index: 3;
  display: flex; justify-content: space-between; gap: 8px;
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(245,241,234,0.7);
}

@media (max-width: 980px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero__reel {
    max-width: 280px;
    margin: 0 auto;
  }
  .hero__stats {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 40px;
  }
  .hero__stats .stat { padding: 14px 16px; }
  .hero__stats .stat:nth-child(2n) { border-right: 0; padding-right: 0; }
  .hero__stats .stat:nth-child(2n+1) { padding-left: 0; }
  .hero__stats .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}
.hero__eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ink-dim);
  margin-bottom: 28px;
}
.hero__eyebrow .dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; box-shadow: 0 0 12px var(--accent); }
.hero__eyebrow .pulse {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e; box-shadow: 0 0 12px #22c55e;
  animation: pulse 1.6s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  70% { transform: scale(2.4); opacity: 0; }
  100% { transform: scale(1); opacity: 0; }
}

.hero__title {
  font-family: var(--f-display);
  font-size: clamp(72px, 14vw, 220px);
  line-height: 0.84;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.hero__title .out {
  -webkit-text-stroke: 1.5px var(--ink);
  color: transparent;
}
.hero__title .red { color: var(--accent); }
.hero__title .row { display: block; }
.hero__title .row.shift { padding-left: 8vw; }

.hero__sub {
  margin-top: 28px;
  max-width: 380px;
  color: var(--ink-dim);
  font-size: 16px;
  line-height: 1.55;
}
.hero__ctas { margin-top: 28px; display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 22px;
  font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all .25s ease;
}
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--ink); color: var(--bg); transform: translateY(-2px); }
.btn--ghost { border: 1px solid var(--line); color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink); }
.btn .arrow { transition: transform .25s ease; }
.btn:hover .arrow { transform: translateX(4px); }

.hero__visual-LEGACY-REMOVED {
  position: relative;
  border: 1px solid var(--line);
  aspect-ratio: 21/9;
  background:
    repeating-linear-gradient(45deg, #1a1815 0, #1a1815 12px, #161412 12px, #161412 24px);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-mono); color: var(--ink-mute); font-size: 12px;
  letter-spacing: 0.2em; text-transform: uppercase;
  overflow: hidden;
}
.hero__visual::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 80% at 80% 100%, rgba(230,57,70,0.25), transparent 60%),
    radial-gradient(40% 80% at 20% 0%, rgba(45,181,232,0.15), transparent 60%);
  pointer-events: none;
}
.hero__visual .label {
  position: relative; z-index: 1;
  text-align: center;
}
.hero__visual .label b { display: block; font-family: var(--f-display); font-size: 56px; color: var(--ink); letter-spacing: 0.02em; }

.hero__corner {
  position: absolute; left: 32px; bottom: 110px;
  font-family: var(--f-mono); font-size: 11px; color: var(--ink-mute);
  letter-spacing: 0.2em; text-transform: uppercase; text-align: left;
  line-height: 1.6;
  z-index: 2;
}
.hero__corner span { display: block; }
.hero__corner .coord { color: var(--ink-dim); }

@media (max-width: 980px) {
  .hero__corner { display: none; }
  .hero__title .row.shift { padding-left: 0; }
}

/* Marquee */
.marquee {
  background: var(--bg-2);
  overflow: hidden;
  margin-top: 60px;
  padding: 22px 0;
}
.marquee__track {
  display: flex; gap: 60px;
  white-space: nowrap;
  animation: scroll 38s linear infinite;
  font-family: var(--f-display);
  font-size: 56px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

@media (max-width: 768px) {
  .marquee__track { animation-duration: 16s !important; font-size: 38px; gap: 36px; }
  .marquee__track .star { font-size: 20px; }
}
.marquee__track span { display: inline-flex; align-items: center; gap: 60px; }
.marquee__track .star { color: var(--accent); font-size: 28px; }
.marquee__track em { color: var(--ink); font-style: normal; }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ───────── Section header ───────── */
.section-head {
  padding: 100px 0 40px;
  display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 30px;
}

@media (max-width: 700px) {
  .section-head {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "title meta";
    align-items: end;
    gap: 24px 18px;
    padding: 70px 0 36px;
  }
  .section-head__num { grid-area: num; }
  .section-head__title { grid-area: title; }
  .section-head__meta { grid-area: meta; max-width: 42vw; }
}
.section-head__num {
  font-family: var(--f-mono); font-size: 13px; color: var(--ink-mute);
  letter-spacing: 0.2em;
}
.section-head__title {
  font-family: var(--f-display);
  font-size: clamp(56px, 9vw, 140px);
  line-height: 0.85;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.section-head__title em { color: var(--accent); font-style: normal; }
.section-head__meta {
  font-family: var(--f-mono); font-size: 11px; color: var(--ink-dim);
  letter-spacing: 0.18em; text-transform: uppercase; text-align: right;
  line-height: 1.7;
}

/* ───────── SERVICES ───────── */
.services {
  padding-bottom: 80px;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 56px; row-gap: 52px;
  margin-top: 44px;
}
.svc {
  padding: 20px 0 0;
  position: relative;
  cursor: default;
}
.svc:hover .svc__num { color: var(--ink-dim); }
.svc__num { font-family: var(--f-mono); font-size: 11px; color: var(--ink-mute); letter-spacing: 0.18em; }
.svc__title {
  font-family: var(--f-display);
  font-size: 38px; line-height: 1; text-transform: uppercase;
}
.svc__desc { color: var(--ink-dim); font-size: 14px; line-height: 1.55; margin-top: 14px; }
.svc__tags { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-family: var(--f-mono); font-size: 10px; padding: 5px 10px;
  background: var(--bg-2); color: var(--ink-dim);
  letter-spacing: 0.12em; text-transform: uppercase;
}
.svc__bar {
  position: absolute; left: 0; top: 0; height: 3px; width: 0;
  background: var(--accent); transition: width .35s ease;
}
.svc:hover .svc__bar { width: 100%; }

@media (max-width: 1100px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); column-gap: 40px; row-gap: 44px; }
}
@media (max-width: 680px) {
  .services__grid { grid-template-columns: 1fr; row-gap: 40px; }
}

/* ───────── PROJECTS ───────── */
.projects { padding-bottom: 80px; }
.proj-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.proj {
  position: relative;
  transition: transform .35s ease;
}
.proj:hover { transform: translateY(-4px); }
.proj__media {
  aspect-ratio: 4/3;
  background:
    repeating-linear-gradient(135deg, #efece6 0, #efece6 10px, #e7e3dc 10px, #e7e3dc 20px);
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.proj__media::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 80% at 50% 100%, rgba(133,29,44,0.10), transparent 70%);
}
.proj__media .ph {
  position: relative; z-index: 1;
  font-family: var(--f-mono); color: var(--ink-mute); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase; text-align: center;
  line-height: 1.6;
}
.proj__media .ph b {
  display: block; font-family: var(--f-display); color: var(--ink);
  font-size: 44px; letter-spacing: 0.02em; line-height: 1; margin-bottom: 8px;
}
.proj__body { padding: 18px 0 0; }
.proj__head {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 14px; margin-bottom: 4px;
}
.proj__head .badge {
  flex: none;
  font-family: var(--f-mono); font-size: 11px; color: var(--accent);
  letter-spacing: 0.16em; text-transform: uppercase;
}
.proj__name {
  font-family: var(--f-display);
  font-size: 30px; line-height: 1; text-transform: uppercase; letter-spacing: 0.01em;
}
.proj__blurb { color: var(--ink-dim); font-size: 13px; line-height: 1.55; margin-top: 10px; }

.proj.size-lg { grid-column: span 8; }
.proj.size-md { grid-column: span 4; }
.proj.size-sm { grid-column: span 4; }
.proj.size-wide { grid-column: span 6; }

@media (max-width: 1100px) {
  .proj.size-lg, .proj.size-md, .proj.size-sm, .proj.size-wide { grid-column: span 6; }
}
@media (max-width: 700px) {
  .proj.size-lg, .proj.size-md, .proj.size-sm, .proj.size-wide { grid-column: span 12; }
}

/* ───────── FOR SALE ───────── */
.forsale { padding-bottom: 80px; }
.forsale__list {
  display: flex; flex-direction: column;
  gap: 88px;
  margin-top: 50px;
}
.fs-row {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  gap: 56px;
  align-items: center;
}
.fs-row:nth-child(even) { grid-template-columns: 1fr 1.12fr; }
.fs-row:nth-child(even) .fs-row__media { order: 2; }

.fs-row__media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-2);
}
.fs-row__media .gal { position: relative; width: 100%; height: 100%; }

.fs-videobtn {
  position: absolute; left: 14px; bottom: 14px; z-index: 4;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 15px 9px 11px;
  background: var(--glass-dark-strong);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--on-dark);
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.fs-videobtn:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.fs-videobtn__play {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--accent); color: #fff; font-size: 9px; padding-left: 1px;
  transition: background .2s ease, color .2s ease;
}
.fs-videobtn:hover .fs-videobtn__play { background: #fff; color: var(--accent); }

.fs-row__head { margin-bottom: 18px; }
.fs-row__status {
  display: inline-block;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 12px;
}
.fs-row__name {
  font-family: var(--f-display);
  font-size: clamp(40px, 4.4vw, 62px); line-height: 0.92;
  text-transform: uppercase; letter-spacing: 0.005em;
}
.fs-row__model {
  font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-mute); margin-top: 8px;
}
.fs-row__blurb { color: var(--ink-dim); font-size: 15px; line-height: 1.6; max-width: 54ch; }

.fs-specs {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 22px 28px;
  margin-top: 28px;
}
.fs-spec h4 {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink-mute); margin-bottom: 11px;
}
.fs-spec ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.fs-spec li {
  position: relative; padding-left: 16px;
  color: var(--ink-dim); font-size: 13.5px; line-height: 1.42;
}
.fs-spec li::before {
  content: ""; position: absolute; left: 0; top: 0.58em;
  width: 7px; height: 1px; background: var(--accent);
}
.fs-row__actions { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }
.fs-row__actions .arrow { font-size: 9px; }

@media (max-width: 900px) {
  .fs-row, .fs-row:nth-child(even) { grid-template-columns: 1fr; gap: 26px; }
  .fs-row:nth-child(even) .fs-row__media { order: 0; }
  .forsale__list { gap: 64px; }
}

/* ── Video modal ── */
.vlb {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.92);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  display: flex; align-items: center; justify-content: center;
  padding: 4vw;
}
.vlb__inner { position: relative; display: flex; }
.vlb__inner video {
  max-width: 92vw; max-height: 86vh;
  width: auto; height: auto; display: block;
  background: #000;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.vlb__close {
  position: fixed; top: 22px; right: 22px;
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(20,20,20,0.55);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  color: #fff; font-size: 26px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 10001;
  transition: background .2s ease, border-color .2s ease;
}
.vlb__close:hover { background: var(--accent); border-color: var(--accent); }
@media (max-width: 600px) {
  .vlb__close { top: 14px; right: 14px; }
}

/* ── Bike gallery (in proj__media) ── */
.proj__media { overflow: hidden; }
.proj__media .gal { position: relative; width: 100%; height: 100%; }
.proj__media::after { display: none; }

.gal__track {
  position: absolute; inset: 0;
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}
.gal__track::-webkit-scrollbar { display: none; }

.gal__slide {
  flex: 0 0 100%;
  width: 100%; height: 100%;
  padding: 0; margin: 0; border: 0;
  background: var(--bg-3);
  scroll-snap-align: start;
  cursor: zoom-in;
  position: relative;
  overflow: hidden;
}
.gal__slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.18,.8,.2,1), filter .3s ease;
  filter: saturate(1.05) contrast(1.04);
}
.gal__slide:hover img { transform: scale(1.04); }

.gal__nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(10,10,10,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  font-family: var(--f-mono);
  font-size: 14px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: background .2s ease, border-color .2s ease, opacity .2s ease, transform .2s ease;
  opacity: 0;
}
.gal:hover .gal__nav,
.gal__nav:focus-visible { opacity: 1; }
.gal__nav:hover { background: var(--accent); border-color: var(--accent); }
.gal__nav:disabled { opacity: 0 !important; pointer-events: none; }
.gal__nav--prev { left: 12px; }
.gal__nav--next { right: 12px; }

.gal__count {
  position: absolute;
  right: 12px; bottom: 12px;
  z-index: 3;
  display: inline-flex; align-items: center; gap: 4px;
  padding: 5px 9px;
  background: rgba(10,10,10,0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.12);
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: 0.14em;
  color: var(--on-dark);
  font-variant-numeric: tabular-nums;
}
.gal__count-sep { color: var(--on-dark-mute); }

.gal__code {
  position: absolute;
  left: 12px; top: 12px;
  z-index: 3;
  padding: 5px 9px;
  background: rgba(10,10,10,0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: 0.14em;
  color: var(--ink-dim);
  border: 1px solid rgba(255,255,255,0.10);
}

/* ── Lightbox ── */
.lb {
  position: fixed; inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex; align-items: center; justify-content: center;
  animation: lbFadeIn 0.2s ease;
}
@keyframes lbFadeIn { from { opacity: 0; } to { opacity: 1; } }

.lb__stage {
  position: relative;
  width: min(92vw, 1500px);
  height: min(88vh, 1000px);
  display: flex; align-items: center; justify-content: center;
}
.lb__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  user-select: none;
}

.lb__nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 56px; height: 56px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(20,20,20,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  font-family: var(--f-mono); font-size: 22px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 10001;
  transition: background .2s ease, border-color .2s ease;
}
.lb__nav:hover { background: var(--accent); border-color: var(--accent); }
.lb__nav--prev { left: 28px; }
.lb__nav--next { right: 28px; }

.lb__close {
  position: absolute;
  top: 22px; right: 22px;
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(20,20,20,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  font-size: 26px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 10001;
  transition: background .2s ease, border-color .2s ease;
}
.lb__close:hover { background: var(--accent); border-color: var(--accent); }

.lb__meta {
  position: absolute;
  left: 0; right: 0; bottom: 22px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  padding: 0 28px;
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
  z-index: 10000;
  pointer-events: none;
}
.lb__caption { color: var(--on-dark); }
.lb__count { color: var(--on-dark-mute); font-variant-numeric: tabular-nums; }
.lb__count-sep { color: var(--on-dark-mute); }

@media (max-width: 700px) {
  .lb__nav { width: 44px; height: 44px; font-size: 18px; }
  .lb__nav--prev { left: 10px; }
  .lb__nav--next { right: 10px; }
  .lb__meta { padding: 0 14px; font-size: 10px; bottom: 14px; flex-direction: column; align-items: flex-start; gap: 6px; }
  .gal__nav { opacity: 1; }
}

/* ───────── ABOUT ───────── */
.about { padding-bottom: 80px; }

/* full-bleed cinematic shop banner */
.shop-floor {
  position: relative;
  width: 100vw;
  margin: 50px calc(50% - 50vw) 0;
  background: #0a0a0a;
  overflow: hidden;
  isolation: isolate;
}
.shop-floor__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 78vh;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.78) contrast(1.06) brightness(0.94);
}

/* Two-halves split for slide-in effect — each half is a 50% slice of the
   same source image, positioned so they meet at center to reconstitute it. */
.shop-floor__split {
  position: relative;
  width: 100%;
  aspect-ratio: 2041 / 955;
  max-height: 78vh;
  display: flex;
  overflow: hidden;
  background: #0a0a0a;
}
.shop-floor__half {
  flex: 0 0 50%;
  height: 100%;
  background-image: var(--shop-floor-image, url("assets/shop-floor.webp"));
  background-size: 200% 100%;
  background-repeat: no-repeat;
  filter: saturate(0.78) contrast(1.06) brightness(0.94);
  /* Start off-screen on initial render; rest position is translate(0) */
  transform: translateX(0);
  transition: transform 1.6s cubic-bezier(.18, .82, .22, 1);
  will-change: transform;
}
.shop-floor.is-static .shop-floor__half {
  transition: none;
  transform: translateX(0) !important;
}
.shop-floor__half--left {
  background-position: 0% 50%;
}
.shop-floor__half--right {
  background-position: 100% 50%;
}
/* Pre-animation state — only applied when the figure is NOT yet in view */
.shop-floor:not(.is-in-view) .shop-floor__half--left {
  transform: translateX(-105%);
}
.shop-floor:not(.is-in-view) .shop-floor__half--right {
  transform: translateX(105%);
}
@media (prefers-reduced-motion: reduce) {
  .shop-floor__half { transition: none; transform: translateX(0) !important; }
}
.shop-floor::before,
.shop-floor::after {
  content: "";
  position: absolute; left: 0; right: 0;
  height: 44px;
  pointer-events: none;
  z-index: 1;
}
.shop-floor::before {
  top: 0;
  background: linear-gradient(to bottom, var(--bg) 0%, rgba(10,10,10,0) 100%);
}
.shop-floor::after {
  bottom: 0;
  background: linear-gradient(to top, var(--bg) 0%, rgba(10,10,10,0) 100%);
}
.shop-floor__tick { display: none; }
.shop-floor__cap {
  position: absolute;
  left: 6vw; bottom: 28px;
  z-index: 2;
  display: flex; align-items: center; gap: 10px;
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--on-dark);
  background: rgba(10,10,10,0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 8px 14px;
  border-left: 2px solid var(--accent);
}
.shop-floor__cap-dot { color: var(--on-dark-mute); }
.shop-floor__coord {
  position: absolute;
  right: 6vw; bottom: 28px;
  z-index: 2;
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.18em;
  color: var(--on-dark-mute);
  background: rgba(10,10,10,0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 8px 12px;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 700px) {
  .shop-floor { margin-top: 30px; }
  .shop-floor__img { max-height: 60vh; }
  .shop-floor__cap, .shop-floor__coord {
    font-size: 9px; padding: 6px 10px; letter-spacing: 0.16em;
    bottom: 14px;
  }
  .shop-floor__cap { left: 14px; gap: 6px; }
  .shop-floor__coord { right: 14px; }
  .shop-floor__tick { left: 14px; height: 24px; }
  .shop-floor::before, .shop-floor::after { height: 28px; }
}
.about__intro {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px;
  padding: 60px 0 20px;
}
.about__lead {
  font-family: var(--f-display);
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 0.95; text-transform: uppercase;
  letter-spacing: -0.005em;
}
.about__lead em { color: var(--accent); font-style: normal; }
.about__copy { color: var(--ink-dim); font-size: 16px; line-height: 1.65; }
.about__copy p + p { margin-top: 16px; }

.team {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding-top: 60px;
}
.member {
  border-right: 1px solid var(--line);
  padding: 0 24px 24px;
  position: relative;
}
.member:first-child { padding-left: 0; }
.member:last-child { border-right: 0; padding-right: 0; }
.member__photo {
  aspect-ratio: 3/4;
  background:
    repeating-linear-gradient(45deg, #efece6 0, #efece6 8px, #e7e3dc 8px, #e7e3dc 16px);
  position: relative; overflow: hidden;
  margin-bottom: 18px;
}
.member__photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.6));
}
.member__photo .badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-family: var(--f-mono); font-size: 10px; padding: 4px 8px;
  background: var(--accent); color: #fff;
  letter-spacing: 0.16em; text-transform: uppercase;
}
.member__photo .ph {
  position: absolute; inset: 0; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-size: 60px; color: var(--ink-mute);
  letter-spacing: 0.05em;
}
.member__name {
  font-family: var(--f-display); font-size: 30px; line-height: 1;
  text-transform: uppercase; letter-spacing: 0.01em;
}
.member__role { font-family: var(--f-mono); font-size: 11px; color: var(--ink-mute); letter-spacing: 0.16em; text-transform: uppercase; margin-top: 6px; }
.member__bio { color: var(--ink-dim); font-size: 13px; line-height: 1.55; margin-top: 12px; }
.member__years {
  position: absolute; top: 0; right: 24px;
  font-family: var(--f-display); font-size: 64px;
  color: transparent; -webkit-text-stroke: 1px var(--line);
  line-height: 1;
}
.member:last-child .member__years { right: 0; }

@media (max-width: 1100px) { .team { grid-template-columns: repeat(2, 1fr); }
  .member { border-bottom: 1px solid var(--line); padding: 0 18px 24px; margin-bottom: 24px; }
  .member:nth-child(2) { border-right: 0; padding-right: 0; }
  .member:nth-child(3) { padding-left: 0; }
}
@media (max-width: 600px) { .team { grid-template-columns: 1fr; }
  .member { border-right: 0; padding: 0 0 24px; }
}

/* ───────── CONTACT ───────── */
.contact { padding-bottom: 80px; }
.contact__grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 0;
  border: 1px solid var(--line);
  margin-top: 50px;
  background: var(--bg-2);
}
.contact__info { padding: 50px; display: flex; flex-direction: column; gap: 36px; border-right: 1px solid var(--line); min-width: 0; }
.info-block h4 {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ink-mute); margin-bottom: 10px;
}
.info-block p, .info-block a {
  font-family: var(--f-display); font-size: 28px; line-height: 1.05;
  text-transform: uppercase; letter-spacing: 0.01em;
}
.info-block a:hover { color: var(--accent); }

/* Address link to Google Maps — clickable but visually a plain text block.
   Also nukes the iOS data-detector dotted underline if it ever sneaks through. */
.address-link,
.address-link:visited,
a[x-apple-data-detectors] {
  text-decoration: none !important;
  color: inherit !important;
  -webkit-text-decoration: none !important;
}
.address-link { display: block; }
.address-link:hover { color: var(--accent) !important; }
.info-block .small { font-family: var(--f-body); font-size: 14px; color: var(--ink-dim); text-transform: none; letter-spacing: 0; line-height: 1.6; margin-top: 6px; }

.info-block h4 { display: flex; align-items: center; gap: 8px; }
.info-block__pill {
  font-family: var(--f-mono);
  font-size: 9px; letter-spacing: 0.18em;
  padding: 2px 6px;
  background: var(--accent); color: #fff;
  border-radius: 2px;
}

.wa-cta {
  display: flex !important;
  width: 100%;
  min-width: 0;
  align-items: center; gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: var(--bg-3);
  font-family: var(--f-body) !important;
  font-size: 15px !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  line-height: 1.3 !important;
  color: var(--ink) !important;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.wa-cta:hover {
  color: var(--ink) !important;
  border-color: var(--accent);
  background: rgba(133, 29, 44, 0.06);
}
.wa-cta__icon {
  flex: 0 0 auto;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: #25D366;
  border-radius: 50%;
}
.wa-cta__icon svg { width: 22px; height: 22px; fill: #fff; }
.wa-cta__body { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.wa-cta__body strong {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
}
.wa-cta__sub {
  font-size: 13px;
  color: var(--ink-dim);
}
.wa-cta__arrow {
  font-family: var(--f-mono);
  font-size: 18px;
  color: var(--ink-mute);
  transition: transform .2s ease, color .2s ease;
}
.wa-cta:hover .wa-cta__arrow { transform: translateX(4px); color: var(--accent); }

.socials { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 6px; }
.social {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-dim);
  transition: all .2s ease;
}
.social:hover { border-color: var(--accent); color: var(--ink); background: rgba(133,29,44,0.08); }
.social svg { width: 14px; height: 14px; fill: currentColor; }

.contact__map {
  position: relative;
  min-height: 480px;
  overflow: hidden;
}
.contact__map iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: 0;
}
.contact__map .pin {
  position: absolute; top: 24px; right: 24px; z-index: 3;
  background: var(--bg); padding: 14px 18px; border: 1px solid var(--line);
  font-family: var(--f-mono); font-size: 11px; color: var(--ink-dim);
  letter-spacing: 0.14em; text-transform: uppercase; line-height: 1.6;
}
.contact__map .pin b { display: block; font-family: var(--f-display); font-size: 22px; color: var(--ink); letter-spacing: 0.02em; }
.contact__map .pin em { color: var(--accent); font-style: normal; }

@media (max-width: 980px) {
  .contact__grid { grid-template-columns: 1fr; }
  .contact__info { border-right: 0; border-bottom: 1px solid var(--line); padding: 32px; }
  .contact__map { min-height: 360px; }
}

@media (max-width: 600px) {
  .contact__info { padding: 24px 20px; gap: 28px; }
  .wa-cta { padding: 12px 12px; gap: 10px; }
  .wa-cta__icon { width: 32px; height: 32px; }
  .wa-cta__icon svg { width: 18px; height: 18px; }
  .wa-cta__body strong { font-size: 11px; }
  .wa-cta__sub { font-size: 12px; line-height: 1.4; }
  .wa-cta__arrow { font-size: 16px; }
  .social { padding: 9px 12px; font-size: 11px; flex: 1 1 auto; justify-content: center; }
}

/* ───────── FOOTER ───────── */
.footer {
  border-top: 1px solid var(--line);
  padding: 36px 0;
  font-family: var(--f-mono); font-size: 11px; color: var(--ink-mute);
  letter-spacing: 0.16em; text-transform: uppercase;
}
.footer > .wrap {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 30px; align-items: center;
}
.footer__brand { display: flex; align-items: center; gap: 12px; color: var(--ink-dim); }
.footer__brand img { width: 28px; height: 28px; border-radius: 4px; object-fit: cover; }
.footer__center { text-align: center; }
.footer__right {
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}
.footer__link {
  color: var(--ink-dim);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color .2s ease;
}
.footer__link:hover,
.footer__link:focus-visible { color: var(--accent); }

/* ───────── PRIVACY MODAL ───────── */
.privacy-modal {
  position: fixed;
  inset: 0;
  z-index: 10020;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 4vw, 52px);
  background: rgba(20, 18, 16, 0.72);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.privacy-modal__dialog {
  position: relative;
  width: min(1080px, 100%);
  max-height: min(86vh, 940px);
  overflow: auto;
  background: var(--bg);
  border: 1px solid var(--line);
  box-shadow: 0 30px 90px rgba(0,0,0,0.26);
}
.privacy-modal__close {
  position: sticky;
  top: 0;
  margin-left: auto;
  width: 46px;
  height: 46px;
  border: 0;
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}
.privacy-modal__close:hover,
.privacy-modal__close:focus-visible {
  background: var(--accent);
  color: #fff;
}
.privacy-modal__header {
  padding: 0 42px 26px;
  border-bottom: 1px solid var(--line);
}
.privacy-modal__header span {
  display: block;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.privacy-modal__header h2 {
  font-family: var(--f-display);
  font-size: clamp(38px, 7vw, 74px);
  line-height: 0.95;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0;
}
.privacy-modal__header p {
  margin-top: 12px;
  color: var(--ink-mute);
  font-size: 14px;
}
.privacy-modal__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.privacy-block {
  padding: 34px 42px 42px;
}
.privacy-block + .privacy-block {
  border-left: 1px solid var(--line);
}
.privacy-block h3 {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.privacy-block p {
  color: var(--ink-dim);
  font-size: 14px;
  line-height: 1.68;
  margin: 0;
}
.privacy-block p + p { margin-top: 16px; }

@media (max-width: 700px) {
  .footer > .wrap { grid-template-columns: 1fr; text-align: center; }
  .footer__right, .footer__center { text-align: center; }
  .footer__brand { justify-content: center; }
  .footer__right { justify-content: center; flex-direction: column; gap: 10px; }
  .privacy-modal { padding: 12px; }
  .privacy-modal__dialog { max-height: 90vh; }
  .privacy-modal__header { padding: 0 22px 22px; }
  .privacy-modal__body { grid-template-columns: 1fr; }
  .privacy-block { padding: 26px 22px; }
  .privacy-block + .privacy-block {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }

/* Selection */
::selection { background: var(--accent); color: #fff; }
