/* ───────── Tokens ───────── */
:root {
  --bg: #0b0a08;            /* warmer near-black */
  --bg-2: #0e0d0a;
  --surface: #131210;
  --surface-2: #161513;
  --border: #1d1b18;
  --border-2: #2a2723;
  --text: #ece8df;          /* warm cream */
  --text-dim: #908a7c;
  --text-mute: #5a5650;
  --ivory: #efe4cc;
  --gold: #b89329;          /* dialed-down — was bright gold */
  --gold-hot: #d4af37;
  --gold-deep: #6e5614;
  --gradient-gold: linear-gradient(180deg, #d6b961 0%, #b89329 60%, #6e5614 100%);
  --shadow-soft: 0 6px 24px rgba(0,0,0,.4);
  --shadow-gold: 0 6px 24px rgba(201,162,39,.22);
  --f-sans: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --f-display: 'Inter Tight', 'Inter', system-ui, sans-serif;
  --f-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  --r: 6px;
  --r-sm: 4px;
  --r-lg: 10px;
  --w-page: 1240px;
  --pad-x: clamp(20px, 4vw, 56px);
  --section-y: clamp(72px, 9vw, 132px);
  --t-fast: 160ms cubic-bezier(.2,.7,.3,1);
  --t-med: 280ms cubic-bezier(.2,.7,.3,1);
}

/* ───────── Reset / base ───────── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; background: var(--bg); }
/* Disable tap-highlight everywhere — we provide our own :active states. */
* { -webkit-tap-highlight-color: transparent; }
button, a { touch-action: manipulation; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
/* Subtle film-grain texture across the whole page for premium tactile feel */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: .035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' seed='3'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* Selection */
::selection { background: var(--gold); color: #000; }

/* Headings — Inter Tight Black for brutalist confidence */
h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.02;
  margin: 0;
}
h1 { font-size: clamp(2.5rem, 7.4vw, 6rem); font-weight: 900; letter-spacing: -0.04em; line-height: 0.96; }
h2 { font-size: clamp(1.85rem, 4.6vw, 3.5rem); font-weight: 800; letter-spacing: -0.035em; }
h3 { font-size: clamp(1.05rem, 1.3vw, 1.25rem); font-weight: 700; letter-spacing: -0.015em; line-height: 1.2; }
h4 { font-size: 0.95rem; font-weight: 700; letter-spacing: -0.005em; }
h5 {
  font-family: var(--f-mono);
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-dim);
  margin: 0;
}
p  { margin: 0; color: var(--text-dim); }

/* Tabular numerals across the whole site so prices align */
.mono, .pkg__price, .pkg-addons .price, .hero__trust strong, .mini__num,
.flat__row span:last-child, .hours li span:last-child {
  font-family: var(--f-mono);
  font-feature-settings: 'tnum' on, 'lnum' on;
}

.hl {
  font-style: italic;
  font-weight: 500;
  color: var(--ivory);
  margin-right: 0.06em;
}

/* ───────── Buttons — squared brutalist ───────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 4px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.93rem;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast), box-shadow var(--t-med), border-color var(--t-fast);
  white-space: nowrap;
  text-decoration: none;
}
.btn--lg { padding: 18px 28px; font-size: 1rem; }
.btn--gold {
  background: var(--gold);
  color: #0a0a0a;
}
.btn--gold:hover { background: var(--gold-hot); }
.btn--gold:active { background: var(--gold-deep); transform: translateY(0.5px); }
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-2);
}
.btn--ghost:hover { background: var(--surface); border-color: #444; }
.btn--ghost:active, .btn--ghost-mono:active { background: var(--surface-2); transform: translateY(0.5px); }
/* Subtle inline-style "link" button: mono caps + arrow, low chrome */
.btn--ghost-mono {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-2);
  font-family: var(--f-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 22px;
  font-weight: 500;
}
.btn--ghost-mono:hover { background: var(--surface); border-color: var(--ivory); color: var(--ivory); }

.link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text);
  font-family: var(--f-mono);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border-2);
  padding: 10px 0 6px;
  min-height: 36px;
  transition: color var(--t-fast), border-color var(--t-fast);
}
.link:hover { color: var(--ivory); border-color: var(--ivory); }

/* ───────── Eyebrow — mono label, brutalist ───────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--text-dim);
  font-family: var(--f-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.eyebrow__dot {
  width: 4px; height: 4px; border-radius: 999px; background: var(--gold);
  opacity: .85;
}

/* ───────── Nav ───────── */
.nav {
  position: relative;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 24px;
  /* iOS safe-area awareness — pushes nav content below the notch/status bar
     even though the nav itself scrolls away with the page. */
  padding: calc(14px + env(safe-area-inset-top, 0px)) var(--pad-x) 14px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
/* Fixed cap that fills the iOS safe-area at the top of the screen, so when
   the nav scrolls away the status bar still has a solid dark backdrop —
   not see-through page content. No-op on devices without a notch (env() = 0). */
html::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0;
  height: env(safe-area-inset-top, 0px);
  background: var(--bg);
  z-index: 60;
  pointer-events: none;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  color: var(--text);
}
.nav__logo {
  height: 42px;
  width: auto;
  display: block;
}
@media (max-width: 880px) { .nav__logo { height: 58px; } }
@media (max-width: 540px) { .nav__logo { height: 52px; } }
.nav__links {
  display: flex;
  gap: 28px;
  margin-left: 24px;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.nav__links a { transition: color var(--t-fast); }
.nav__links a:hover { color: var(--ivory); }
.nav__cta { margin-left: auto; }

.nav__menu {
  display: none;
  background: transparent;
  border: 1px solid var(--border-2);
  border-radius: 3px;
  width: 44px; height: 44px;
  padding: 0;
  position: relative;
  -webkit-appearance: none;
  appearance: none;
}
.nav__menu:active { background: var(--surface); }
.nav__menu span {
  display: block;
  position: absolute;
  left: 9px; right: 9px;
  height: 2px;
  background: var(--text);
  transition: transform var(--t-med), opacity var(--t-fast);
}
.nav__menu span:nth-child(1) { top: 15px; }
.nav__menu span:nth-child(2) { top: 21px; }
.nav__menu span:nth-child(3) { top: 27px; }
.nav__menu[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__menu[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__menu[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-mobile {
  position: relative;
  z-index: 49;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px var(--pad-x) calc(24px + env(safe-area-inset-bottom, 0px));
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.nav-mobile[hidden] { display: none; }
.nav-mobile a { color: var(--text); font-weight: 500; padding: 10px 0; font-size: 1.15rem; }
.nav-mobile__ig {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  color: var(--text-dim) !important;
  font-family: var(--f-mono);
  font-size: 0.86rem !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500 !important;
  padding: 14px 0 !important;
  border-top: 1px solid var(--border);
  margin-top: 6px;
}
.nav-mobile__cta {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  align-self: stretch;
}
.nav-mobile__cta .btn { flex: 1; min-height: 48px; }

@media (max-width: 880px) {
  /* Mobile: logo centered, burger right. 1fr/auto/1fr keeps logo truly centered
     regardless of burger width. */
  .nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
  }
  .nav__brand { grid-column: 2; justify-self: center; }
  .nav__links { display: none; }
  .nav__cta   { display: none; }
  .nav__menu  { display: block; grid-column: 3; justify-self: end; margin-left: 0; }
}

/* ───────── Hero — cinematic full-bleed photo, text overlaid ───────── */
.hero {
  position: relative;
  padding: 0;
  border-bottom: 1px solid var(--border);
  min-height: min(82svh, 760px);
  overflow: hidden;
}
.hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: var(--surface);
  overflow: hidden;
  z-index: 0;
}
.hero__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 55%;        /* bias slightly low so the cars + wheels stay in frame */
  display: block;
}
.hero__photo::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(11,10,8,.88) 0%, rgba(11,10,8,.55) 36%, rgba(11,10,8,.05) 62%, transparent 80%),
    linear-gradient(180deg, rgba(11,10,8,.35) 0%, transparent 30%, transparent 70%, rgba(11,10,8,.92) 100%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--w-page);
  margin: 0 auto;
  padding: clamp(56px, 7vw, 96px) var(--pad-x);
  min-height: min(82svh, 760px);
  display: flex;
  align-items: flex-end;
}
.hero__copy {
  max-width: 560px;
}
.hero__title {
  text-shadow: 0 2px 32px rgba(0,0,0,.5);
}
.hero__sub {
  color: rgba(245, 240, 230, .92);
  text-shadow: 0 1px 20px rgba(0,0,0,.6);
}
.hero__copy {
  display: flex;
  flex-direction: column;
  max-width: 580px;
}
.hero__title {
  margin: 18px 0 24px;
  max-width: 760px;
}
.hero__sub {
  font-size: clamp(0.96rem, 1.05vw, 1.08rem);
  color: rgba(245, 240, 230, .96);
  max-width: 540px;
  margin-bottom: 30px;
  line-height: 1.55;
  text-shadow: 0 1px 14px rgba(0,0,0,.7);
}
.hero__cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
/* Hero "Recent work" button — frosted glass at all viewports */
.hero__cta .btn--ghost-mono {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-color: rgba(255,255,255,.22);
  color: var(--ivory);
}
.hero__cta .btn--ghost-mono:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.36);
  color: var(--ivory);
}

@media (max-width: 900px) {
  /* Mobile: text pinned to TOP so cars stay clear in the lower frame */
  .hero { min-height: 86svh; }
  .hero__inner {
    min-height: 86svh;
    padding: clamp(32px, 6vw, 56px) var(--pad-x) clamp(200px, 40vw, 280px);
    align-items: flex-start;          /* TOP, not bottom */
  }
  .hero__photo img { object-position: 50% 62%; }   /* lift focus so cars sit lower-clean in frame, not cropped */
  .hero__photo::after {
    background:
      linear-gradient(180deg,
        rgba(11,10,8,.92) 0%,
        rgba(11,10,8,.72) 14%,
        rgba(11,10,8,.32) 32%,
        rgba(11,10,8,.05) 52%,
        rgba(11,10,8,.05) 68%,
        rgba(11,10,8,.55) 88%,
        rgba(11,10,8,.96) 100%);
  }
  .hero__copy { max-width: none; }
}
@media (max-width: 720px) {
  /* CTAs side-by-side instead of full-width stacked */
  .hero__cta { flex-direction: row; align-items: stretch; flex-wrap: nowrap; gap: 8px; }
  .hero__cta .btn { width: auto; min-width: 0; white-space: nowrap; }
  .hero__cta .btn--gold {
    flex: 1.6 1 0;
    padding: 14px 10px;
    font-size: 0.92rem;
    letter-spacing: -0.005em;
  }
  .hero__cta .btn--ghost-mono {
    flex: 1 1 0;
    padding: 14px 10px;
    font-size: 0.68rem;
  }
}

/* Mono trust line under hero */
.hero__trust {
  position: relative;
  z-index: 1;
  max-width: var(--w-page);
  width: 100%;
  margin: 0 auto;
  padding: 22px var(--pad-x);
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(11,10,8,.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  flex-wrap: wrap;
  gap: 6px 28px;
  align-items: center;
  list-style: none;
  font-family: var(--f-mono);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.hero__trust li { display: flex; align-items: center; gap: 6px; }
.hero__trust li + li::before {
  content: '/';
  color: var(--text-mute);
  margin-right: 28px;
}
.hero__trust strong {
  color: var(--ivory);
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 0.74rem;
}
.hero__trust a { display: inline-flex; align-items: center; gap: 6px; color: inherit; transition: color var(--t-fast); }
.hero__trust a:hover { color: var(--ivory); }
.hero__trust a:hover strong { color: var(--text); }
.nav__ig {
  display: inline-grid;
  place-items: center;
  color: var(--text-dim);
  transition: color var(--t-fast);
  margin-left: 4px;
}
.nav__ig svg { width: 16px; height: 16px; }
.nav__ig:hover { color: var(--ivory); }
@media (max-width: 720px) {
  .hero__trust {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    font-size: 0.72rem;
    padding: 12px var(--pad-x);
  }
  .hero__trust li { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.08); min-height: 44px; }
  .hero__trust li:last-child { border-bottom: 0; }
  .hero__trust li + li::before { display: none; }
  .hero__trust strong { font-size: 0.78rem; min-width: 88px; display: inline-block; }
  .hero__trust li a { padding: 4px 0; width: 100%; }
}

/* ───────── Sections ───────── */
.section {
  padding: var(--section-y) var(--pad-x);
  border-bottom: 1px solid var(--border);
}
.section--alt {
  background: var(--bg-2);
}
.section__head {
  max-width: 880px;
  margin: 0 auto clamp(40px, 5vw, 64px);
  text-align: center;
}
.section__head h2 { margin: 18px 0 14px; }
.section__head .eyebrow { justify-content: center; }
.section__head p { font-size: 1rem; max-width: 580px; margin: 14px auto 0; }
.section__head--left {
  max-width: var(--w-page);
  text-align: left;
}
.section__head--left .eyebrow { justify-content: flex-start; }
.section__head--left p { margin: 14px 0 0; }

.placeholder-note {
  margin-top: 14px !important;
  font-family: var(--f-mono);
  font-size: 0.72rem !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-deep) !important;
  display: inline-block;
}

/* ───────── Generic cards ───────── */
.cards {
  max-width: var(--w-page);
  margin: 0 auto;
  display: grid;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.cards--4 {
  grid-template-columns: repeat(4, 1fr);
  background: transparent;
  border: 0;
  gap: clamp(32px, 4vw, 56px);
}
@media (max-width: 900px) {
  .cards--3 { grid-template-columns: 1fr; }
  .cards--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .cards--4 { grid-template-columns: 1fr; }
}

.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px 28px;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.card:hover { border-color: var(--border-2); background: var(--surface-2); }
.card__icon {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  color: var(--text-dim);
  margin-bottom: 24px;
}
.card__icon svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: 12px; }
.card p  { margin-bottom: 22px; font-size: 0.94rem; line-height: 1.55; }

/* Mini benefit cards — brutalist huge numerals */
.mini {
  background: transparent;
  border-top: 1px solid var(--border-2);
  padding: 26px 0 0;
  text-align: left;
}
.mini__num {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(3rem, 5vw, 4.4rem);
  letter-spacing: -0.05em;
  color: var(--ivory);
  line-height: 0.92;
  margin-bottom: 18px;
  font-feature-settings: 'tnum' on, 'lnum' on;
}
.mini h4 { margin-bottom: 8px; font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; color: var(--text-dim); }
.mini p  { font-size: 0.95rem; line-height: 1.5; }

/* ───────── Process — numbered editorial steps ───────── */
.process__list {
  max-width: var(--w-page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}
.process__step {
  position: relative;
  padding: 36px 28px 36px 0;
  border-right: 1px solid var(--border);
}
.process__step:last-child { border-right: 0; padding-right: 0; }
.process__step:not(:last-child) { padding-right: clamp(20px, 3vw, 36px); }
.process__step + .process__step { padding-left: clamp(20px, 3vw, 36px); }
.process__num {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin-bottom: 22px;
}
.process__step h3 {
  font-size: 1.32rem;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.process__step p {
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--text-dim);
}
@media (max-width: 900px) {
  .process__list { grid-template-columns: 1fr 1fr; }
  .process__step { border-right: 0; padding: 30px 18px; border-bottom: 1px solid var(--border); }
  .process__step:nth-child(odd)  { border-right: 1px solid var(--border); padding-right: clamp(18px, 3vw, 24px); padding-left: 0; }
  .process__step:nth-child(even) { padding-left: clamp(18px, 3vw, 24px); }
  .process__step:nth-last-child(-n+2):not(:nth-last-child(1)) { border-bottom: 0; }
}
@media (max-width: 540px) {
  .process__list { grid-template-columns: 1fr; }
  .process__step,
  .process__step:nth-child(odd),
  .process__step:nth-child(even) {
    padding: 28px 0;
    border: 0; border-bottom: 1px solid var(--border);
  }
  .process__step:last-child { border-bottom: 0; }
}

/* ───────── Packages ───────── */
.pkg-grid {
  max-width: var(--w-page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.pkg-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1000px) {
  .pkg-grid,
  .pkg-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .pkg-grid,
  .pkg-grid--4 { grid-template-columns: 1fr; }
}

.pkg {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 26px 24px;
  transition: border-color var(--t-fast), background var(--t-fast);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.pkg:hover, .pkg:focus-visible {
  border-color: var(--border-2);
  background: var(--surface-2);
  outline: none;
}
.pkg__corner {
  position: absolute;
  top: 24px; right: 24px;
  font-family: var(--f-mono);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mute);
  transition: color var(--t-fast);
  white-space: nowrap;
}
@media (max-width: 540px) {
  .pkg__corner { top: 22px; right: 20px; font-size: 0.6rem; }
}
.pkg:hover .pkg__corner,
.pkg:focus-visible .pkg__corner { color: var(--ivory); }
.pkg__head { padding-right: 80px; }
.pkg__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
  margin-bottom: 16px;
}
.pkg__price {
  font-family: var(--f-mono);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ivory);
  font-feature-settings: 'tnum' on, 'lnum' on;
}
.pkg__price small { font-size: 0.65em; color: var(--text-mute); font-weight: 400; margin-left: 1px; }
.pkg p { margin-bottom: 16px; font-size: 0.94rem; }
.pkg__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.pkg__list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.88rem;
  color: var(--text-dim);
}
.pkg__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 1px;
  background: var(--text-mute);
}
.pkg--feature {
  background: var(--surface-2);
  border-color: var(--border-2);
}
.pkg__tag {
  position: absolute;
  top: 24px;
  right: 24px;
  background: transparent;
  color: var(--text-dim);
  font-family: var(--f-mono);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0;
  border-radius: 0;
}
.pkg--feature .pkg__corner { display: none; }
.pkg--feature .pkg__head { padding-right: 110px; }

.pkg-addons {
  max-width: var(--w-page);
  margin: 36px auto 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 28px 16px;
}
.pkg-addons h3 { font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 18px; font-weight: 500; }
.pkg-addons ul {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px 32px;
}
.pkg-addons li {
  padding: 0;
  border-bottom: 1px dashed var(--border);
  font-size: 0.95rem;
}
.pkg-addons li:last-child, .pkg-addons li:nth-last-child(2) { border-bottom: 0; }
.pkg-addons li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 13px 0;
  color: inherit;
  text-decoration: none;
  border-radius: 6px;
  transition: background var(--t-fast), color var(--t-fast);
  -webkit-tap-highlight-color: transparent;
}
.pkg-addons li a:hover, .pkg-addons li a:focus-visible {
  background: rgba(201,162,39,.05);
  padding-left: 10px; padding-right: 10px;
  margin-left: -10px; margin-right: -10px;
  outline: none;
}
.pkg-addons li a:hover span:first-child { color: var(--ivory); }
.pkg-addons .price { color: var(--ivory); font-family: var(--f-mono); font-weight: 500; font-feature-settings: 'tnum' on, 'lnum' on; }
.pkg-addons .price small { color: var(--text-mute); font-weight: 500; margin-left: 1px; }
.pkg-addons__hint {
  grid-column: 1 / -1;
  margin: 16px 0 6px !important;
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mute);
  text-align: center;
}
@media (max-width: 700px) { .pkg-addons ul { grid-template-columns: 1fr; } }

/* ───────── Flat glass ───────── */
.flat__inner {
  max-width: var(--w-page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}
.flat__copy h2 { margin: 18px 0 22px; }
.flat__copy p  { font-size: 1rem; max-width: 480px; margin-bottom: 22px; line-height: 1.6; }
.flat__list {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
  display: grid; gap: 10px;
}
.flat__list li {
  padding-left: 22px;
  position: relative;
  color: var(--text-dim);
  font-size: 0.96rem;
}
.flat__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 8px; height: 1px;
  background: var(--text-mute);
}
.flat__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 30px;
}
.flat__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.96rem;
}
.flat__row:last-of-type { border-bottom: 0; }
.flat__row span:first-child {
  font-family: var(--f-mono);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.flat__row span:last-child {
  color: var(--ivory);
  font-family: var(--f-mono);
  font-feature-settings: 'tnum' on, 'lnum' on;
  white-space: nowrap;
}
.flat__row span:first-child { flex: 1 1 auto; min-width: 0; }
.flat__note {
  margin-top: 18px !important;
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mute) !important;
}
@media (max-width: 880px) {
  .flat__inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ───────── Gallery ───────── */
.gallery {
  max-width: var(--w-page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  grid-auto-flow: dense;
}
@media (max-width: 900px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .gallery { grid-template-columns: repeat(2, 1fr); } }

.tile {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  transition: border-color var(--t-fast);
}
.tile:hover { border-color: var(--ivory); }

.tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--t-med);
}
.tile:hover img { transform: scale(1.04); }
.tile--placeholder {
  display: grid; place-items: center;
  background:
    repeating-linear-gradient(45deg, #1a1a1a 0 14px, #161616 14px 28px);
  color: var(--text-mute);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}

.gallery__cta { text-align: center; margin-top: 32px; }

/* ───────── FAQ — editorial Q&A ───────── */
.faq__list {
  max-width: var(--w-page);
  margin: 0 auto;
  border-top: 1px solid var(--border);
}
.faq__row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(24px, 4vw, 56px);
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.faq__row dt {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(1.05rem, 1.4vw, 1.32rem);
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--text);
}
.faq__row dd {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--text-dim);
}
@media (max-width: 720px) {
  .faq__row { grid-template-columns: 1fr; gap: 14px; padding: 26px 0; }
  .faq__row dt { font-size: 1.08rem; }
  .faq__row dd { font-size: 0.94rem; }
}

/* ───────── Customer car list (under gallery title) ───────── */
.gallery__cars {
  margin-top: 14px !important;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-family: var(--f-mono);
  font-size: 0.74rem !important;
  letter-spacing: 0.04em;
  color: var(--text-dim) !important;
  line-height: 1.6;
}

/* ───────── Reviews ───────── */
.reviews__grid {
  max-width: var(--w-page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
}
@media (max-width: 1000px) { .reviews__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px)  { .reviews__grid { grid-template-columns: 1fr; } }

.quote {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 26px 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.stars { color: var(--gold); letter-spacing: 2px; font-size: 0.9rem; }
.quote p { color: var(--text); font-size: 0.96rem; line-height: 1.55; font-family: var(--f-sans); }
.quote footer { color: var(--text-mute); font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; margin-top: auto; }
.quote--cta {
  background: var(--surface-2);
  border-color: var(--border-2);
  text-align: center;
  align-items: center;
  justify-content: center;
}
.quote--cta h3 { font-size: 1rem; font-weight: 700; color: var(--ivory); }
.quote--cta .btn { margin-top: 4px; }
.quote__note { font-size: 0.84rem; color: var(--text-mute); }
.quote__note a { color: var(--ivory); border-bottom: 1px solid transparent; }
.quote__note a:hover { border-color: var(--ivory); }

/* ───────── Contact ───────── */
.contact__inner {
  max-width: var(--w-page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact__copy h2 { margin: 16px 0 16px; }
.contact__copy p  { font-size: 1.05rem; max-width: 520px; margin-bottom: 24px; }
.contact__copy .btn { margin-bottom: 0; }
.contact__cta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.contact__list {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 10px;
}
.contact__list li, .contact__list a {
  display: flex; justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.94rem;
}
.contact__list a:hover { color: var(--ivory); }
.contact__list span:first-child {
  font-family: var(--f-mono);
  color: var(--text-dim);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 28px 24px;
  position: sticky; top: 96px;
}
.contact__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-family: var(--f-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.contact__chip::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 999px;
  background: var(--gold);
  opacity: .8;
}
.hours {
  list-style: none; margin: 0 0 18px; padding: 0;
  display: grid; gap: 6px;
}
.hours li {
  display: flex; justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}
.hours li:last-child { border-bottom: 0; }
.hours li span:first-child { font-family: var(--f-mono); font-size: 0.74rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-dim); }
.hours li span:last-child  { color: var(--ivory); font-family: var(--f-mono); font-feature-settings: 'tnum' on, 'lnum' on; }
.contact__small {
  margin-top: 18px !important;
  font-size: 0.84rem;
  color: var(--text-mute);
  line-height: 1.5;
}
@media (max-width: 880px) {
  .contact__inner { grid-template-columns: 1fr; }
  .contact__card  { position: static; }
}

/* ───────── Footer ───────── */
.footer { background: var(--bg-2); }
.footer__inner {
  max-width: var(--w-page);
  margin: 0 auto;
  padding: 56px var(--pad-x) 32px;
  display: grid;
  grid-template-columns: 1.2fr 1.4fr;
  gap: 36px;
}
.footer__brand {
  display: inline-flex; align-items: center;
  font-family: var(--f-display); font-weight: 700; font-size: 1.05rem;
}
.footer__logo {
  height: 64px;
  width: auto;
  display: block;
}
.footer__sm {
  color: var(--text-mute);
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 18px;
}
.footer__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 8px 14px 8px 11px;
  background: transparent;
  border: 1px solid var(--border-2);
  border-radius: 3px;
  font-family: var(--f-mono);
  font-size: 0.7rem;
  color: var(--ivory);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color var(--t-fast), color var(--t-fast);
}
.footer__badge:hover { border-color: var(--ivory); color: var(--ivory); }
.footer__badge svg { width: 13px; height: 13px; color: var(--text-dim); flex-shrink: 0; }
.footer__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.footer__cols h5 { margin-bottom: 16px; }
.footer__cols div { display: flex; flex-direction: column; gap: 4px; font-size: 0.9rem; color: var(--text-dim); }
.footer__cols a { transition: color var(--t-fast); padding: 8px 0; min-height: 36px; display: inline-flex; align-items: center; }
.footer__cols a:hover { color: var(--ivory); }
.footer__bar {
  border-top: 1px solid var(--border);
  padding: 18px var(--pad-x);
  display: flex; justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mute);
  max-width: var(--w-page);
  margin: 0 auto;
}
.footer__credit a {
  color: var(--text-dim);
  border-bottom: 1px solid transparent;
  transition: color var(--t-fast), border-color var(--t-fast);
}
.footer__credit a:hover {
  color: var(--ivory);
  border-bottom-color: var(--gold);
}
@media (max-width: 700px) {
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bar { flex-direction: column; gap: 6px; text-align: center; }
}


/* ───────── Flat-glass photo ───────── */
.flat__photo {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--surface);
  margin: 0;
  position: relative;
}
.flat__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.flat__photo figcaption {
  position: absolute;
  left: 16px; bottom: 14px;
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ivory);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.flat__photo figcaption::before {
  content: '';
  width: 18px; height: 1px; background: var(--ivory); opacity: .7;
}
.flat__photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.7) 100%);
  pointer-events: none;
}
.flat__right { display: flex; flex-direction: column; gap: 20px; }

/* ───────── Lightbox ───────── */
.lightbox {
  position: fixed; inset: 0;
  background: #000;
  display: grid; place-items: center;
  z-index: 200;
  padding: clamp(16px, 4vw, 32px);
}
.lightbox[hidden] { display: none; }
.lightbox__stage {
  display: grid;
  place-items: center;
  max-width: 96vw;
  max-height: 88vh;
}
.lightbox__stage img { max-width: 96vw; max-height: 88vh; border-radius: 4px; object-fit: contain; }
.lightbox__stage video {
  max-width: 96vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  border-radius: 4px;
  background: #000;
  display: block;
}
.lightbox__stage iframe {
  width: min(540px, 96vw);
  height: min(820px, 88vh);
  border: 0;
  border-radius: 4px;
  background: #fff;
}
.lightbox__close, .lightbox__nav {
  position: absolute;
  background: rgba(255,255,255,.05);
  color: var(--ivory);
  border: 0;
  border-radius: 999px;
  width: 40px; height: 40px;
  font-size: 1.2rem;
  display: grid; place-items: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background var(--t-fast);
}
.lightbox__close:hover, .lightbox__nav:hover,
.lightbox__close:active, .lightbox__nav:active { background: rgba(255,255,255,.14); }
.lightbox__close { top: calc(16px + env(safe-area-inset-top, 0px)); right: 16px; }
.lightbox__nav--prev { left: 14px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 14px; top: 50%; transform: translateY(-50%); }
@media (max-width: 720px) {
  .lightbox { padding: 12px; }
  .lightbox__close, .lightbox__nav { width: 36px; height: 36px; font-size: 1.1rem; }
  .lightbox__nav--prev { left: 10px; }
  .lightbox__nav--next { right: 10px; }
}

/* ───────── Video tile play overlay ───────── */
.tile__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.tile__play::after {
  content: '';
  width: 48px; height: 48px;
  border-radius: 999px;
  background: rgba(11,10,8,.55);
  border: 1px solid rgba(236,232,223,.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background var(--t-fast), border-color var(--t-fast);
}
.tile__play svg {
  position: absolute;
  width: 18px; height: 18px;
  color: var(--ivory);
  transform: translateX(1px);
  z-index: 1;
}
.tile:hover .tile__play::after { background: var(--ivory); border-color: var(--ivory); }
.tile:hover .tile__play svg { color: #0b0a08; }


/* ───────── Motion: reduce ───────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
