/* =====================================================================
   Quattro Automotive — "a showroom at night"
   Palette
     --ink      #0e0f11   asphalt ground
     --ink-2    #16181b   raised surface
     --ink-3    #1f2226   hairline surface
     --bone     #ece7dd   primary text
     --ash      #9a958b   secondary text
     --cognac   #c0905f   accent (leather, timber floor)
   Type
     Bodoni Moda  display, italic emphasis
     Jost         body, labels, UI
   ===================================================================== */

:root {
  --ink: #0e0f11;
  --ink-2: #16181b;
  --ink-3: #1f2226;
  --bone: #ece7dd;
  --bone-dim: #c9c3b8;
  --ash: #9a958b;
  --cognac: #c0905f;
  --cognac-soft: rgba(192, 144, 95, 0.18);
  --line: rgba(236, 231, 221, 0.12);
  --line-strong: rgba(236, 231, 221, 0.28);

  --display: "Bodoni Moda", "Didot", "Bodoni 72", Georgia, "Times New Roman", serif;
  --sans: "Jost", "Futura", "Avenir Next", "Helvetica Neue", Arial, sans-serif;

  --wrap: 1280px;
  --gutter: clamp(20px, 5vw, 72px);
  --ease: cubic-bezier(.22, .61, .36, 1);
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* film grain, hides the softness of small photographs */
body::after {
  content: "";
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none;
  z-index: 60;
  opacity: .055;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 240px 240px;
  animation: grain 1.2s steps(6) infinite;
}
@keyframes grain {
  0% { transform: translate(0,0); } 20% { transform: translate(-3%,2%); }
  40% { transform: translate(2%,-4%); } 60% { transform: translate(-4%,-1%); }
  80% { transform: translate(3%,3%); } 100% { transform: translate(0,0); }
}
@media (prefers-reduced-motion: reduce) { body::after { animation: none; } }
@media (max-width: 860px), (hover: none) {
  body::after { animation: none; inset: 0; width: 100%; height: 100%; opacity: .045; }
  .hero-amb { filter: blur(48px) saturate(1.35) brightness(.5); width: 120%; height: 90%; left: 0; top: 0; transform: none; }
  .hero-amb.is-active { opacity: .5; }
  .hero-hex .hex-core { animation: none; filter: none; }
}

img { max-width: 100%; display: block; }
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
:focus-visible { outline: 2px solid var(--cognac); outline-offset: 4px; }

.skip { position: absolute; left: -999px; top: 8px; background: var(--bone); color: var(--ink); padding: 8px 14px; z-index: 200; }
.skip:focus { left: 8px; }

.wrap { width: min(var(--wrap), 100% - 2 * var(--gutter)); margin-inline: auto; }

/* ---------- typography ---------- */
.eyebrow {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ash);
  margin: 0 0 18px;
  display: flex; align-items: center; gap: 10px;
}
.hex-mini { width: 12px; height: 12px; fill: none; stroke: var(--cognac); stroke-width: 1.4; }

.display {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(34px, 4.2vw, 60px);
  line-height: 1.08;
  letter-spacing: -.01em;
  margin: 0;
  text-wrap: balance;
  color: var(--bone);
}
.display em, .hero-title em, h3 em { font-style: italic; font-weight: 400; color: var(--cognac); }
.amp { font-family: var(--display); font-style: italic; font-weight: 400; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

/* ---------- buttons & links ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 52px; padding: 0 30px;
  font-family: var(--sans); font-weight: 400; font-size: 13px;
  letter-spacing: .18em; text-transform: uppercase;
  border: 1px solid var(--bone);
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}
.btn-solid { background: var(--bone); color: var(--ink); }
.btn-solid:hover { background: var(--cognac); border-color: var(--cognac); color: var(--ink); }
.btn-ghost { background: transparent; color: var(--bone); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--bone); }
.btn-wide { width: 100%; }

.textlink {
  display: inline-block; margin-top: 26px;
  font-size: 13px; letter-spacing: .18em; text-transform: uppercase; font-weight: 400;
  color: var(--bone);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--cognac);
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.textlink::after { content: "  →"; white-space: pre; color: var(--cognac); }
.textlink:hover { color: var(--cognac); }

/* ---------- nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px var(--gutter);
  transition: background .5s var(--ease), padding .5s var(--ease), border-color .5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(14, 15, 17, .82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  padding-block: 14px;
  border-bottom-color: var(--line);
}
.brand { display: flex; align-items: center; gap: 14px; }
.hex { width: 42px; height: 42px; fill: none; stroke: var(--bone); stroke-width: 1.8; filter: drop-shadow(0 0 8px rgba(236,231,221,.28)); flex: 0 0 auto; }
.hex path:last-child { stroke: var(--cognac); fill: rgba(192,144,95,.28); }
.brand:hover .hex path:last-child { fill: var(--cognac); transition: fill .3s; }
.brand-word {
  font-family: var(--sans); font-weight: 500; font-size: 20px; letter-spacing: .3em; text-transform: uppercase; color: var(--bone);
  display: flex; flex-direction: column; line-height: 1.05; gap: 3px;
  text-shadow: 0 1px 12px rgba(0,0,0,.6);
}
.brand-word em { font-style: normal; font-weight: 400; font-size: 10px; letter-spacing: .36em; color: var(--bone-dim); }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; font-weight: 400; color: var(--bone-dim); position: relative; transition: color .3s; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 1px; background: var(--cognac); transition: right .35s var(--ease); }
.nav-links a:hover { color: var(--bone); }
.nav-links a:hover::after { right: 0; }
.nav-cta { border: 1px solid var(--line-strong); padding: 10px 18px; color: var(--bone) !important; }
.nav-cta::after { display: none; }
.nav-cta:hover { border-color: var(--cognac); }
.burger { display: none; width: 40px; height: 40px; flex-direction: column; justify-content: center; gap: 7px; align-items: center; }
.burger span { width: 24px; height: 1px; background: var(--bone); transition: transform .3s var(--ease); }
.burger[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.burger[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
.mobile-menu {
  position: fixed; inset: 0; z-index: 90; background: var(--ink);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 110px var(--gutter) max(28px, env(safe-area-inset-bottom)); overflow-y: auto;
}
.mobile-links { display: flex; flex-direction: column; gap: 22px; }
.mobile-links a { font-family: var(--display); font-size: clamp(34px, 9vw, 44px); line-height: 1; border-bottom: 1px solid var(--line); padding-bottom: 14px; }
.mobile-foot { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding-top: 32px; }
.mobile-foot p { grid-column: 1 / -1; margin: 12px 0 0; font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--ash); line-height: 1.9; }
@media (max-width: 860px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .hex { width: 36px; height: 36px; }
  .brand-word { font-size: 17px; }
}

/* ---------- hero ---------- */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  padding: clamp(120px, 15vh, 170px) var(--gutter) 0;
  min-height: 80svh; display: flex; flex-direction: column; justify-content: space-between;
}

/* ambient wash: the active photograph, dissolved into colour behind the frame */
.hero-ambient { position: absolute; inset: 0; z-index: -3; overflow: hidden; }
.hero-amb {
  position: absolute; left: 34%; top: -25%; width: 80%; height: 150%; object-fit: cover;
  filter: blur(90px) saturate(1.35) brightness(.5);
  opacity: 0; transform: scale(1.25);
  transition: opacity 1.8s var(--ease);
}
.hero-amb.is-active { opacity: .72; }
.hero-ambient::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, var(--ink) 0%, var(--ink) 22%, rgba(14,15,17,.55) 55%, rgba(14,15,17,.25) 100%),
    linear-gradient(180deg, rgba(14,15,17,.7) 0%, rgba(14,15,17,0) 30%, rgba(14,15,17,0) 60%, var(--ink) 100%);
}

/* honeycomb: the showroom's ceiling lights, drawn faint behind the photograph */
.hero-hex {
  position: absolute; z-index: -2; pointer-events: none;
  width: clamp(420px, 44vw, 720px); height: auto;
  right: -6%; top: -14%;
  fill: none; stroke-width: 1;
}
.hero-hex .hex-ring { stroke: rgba(236,231,221,.07); }
.hero-hex .hex-core { stroke: rgba(236,231,221,.16); filter: drop-shadow(0 0 10px rgba(236,231,221,.25)); }
@keyframes hexbreathe { 0%,100% { opacity: .75; } 50% { opacity: 1; } }
.hero-hex .hex-core { animation: hexbreathe 6s ease-in-out infinite; }

/* vertical side label in the gutter on wide screens */
.hero-side {
  position: absolute; left: 22px; top: 50%; margin: 0; z-index: 1;
  transform: rotate(-90deg) translateX(-50%); transform-origin: left top;
  font-size: 10px; letter-spacing: .32em; text-transform: uppercase; color: var(--ash);
  white-space: nowrap; display: none;
}
@media (min-width: 1400px) { .hero-side { display: block; } }

.hero-inner {
  width: min(var(--wrap), 100%); margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(36px, 6vw, 110px); align-items: center;
  padding-bottom: clamp(56px, 7vw, 96px);
}
.hero-eyebrow { color: var(--bone-dim); }
.hero-title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(50px, 7.4vw, 112px);
  line-height: .94; letter-spacing: -.02em;
  margin: 0 0 34px; max-width: 11ch;
  text-wrap: balance;
  text-shadow: 0 2px 40px rgba(0,0,0,.5);
}
.hero-title em { position: relative; }
.hero-strap {
  display: flex; flex-wrap: wrap; align-items: center; gap: 6px 14px;
  font-size: clamp(11px, 1vw, 13px); letter-spacing: .26em; text-transform: uppercase; font-weight: 400;
  color: var(--bone); margin: 0 0 40px;
  padding-top: 24px; border-top: 1px solid var(--line-strong);
}
.hero-strap i { font-style: normal; color: var(--cognac); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* photographs, shown at or below native size so they stay sharp */
.hero-visual { display: grid; gap: 18px; justify-items: end; }
.hero-stack { position: relative; width: 100%; max-width: 620px; padding: 0 0 52px 0; }
.hero-frame {
  position: relative; aspect-ratio: 4 / 3; width: 100%;
  background: var(--ink-2);
  box-shadow: 0 50px 90px -30px rgba(0,0,0,.85), 0 0 0 1px var(--line);
}
.hero-frame::before {
  content: ""; position: absolute; inset: -16px -16px 16px 16px; border: 1px solid var(--line); z-index: -1; pointer-events: none;
}
.hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center;
  opacity: 0; transition: opacity 1.4s var(--ease);
}
.hero-img.is-active { opacity: 1; }
.hero-inset {
  position: absolute; left: -64px; bottom: 0; width: 46%; margin: 0;
  border: 6px solid var(--ink); background: var(--ink);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.9);
}
.hero-inset img { width: 100%; height: auto; aspect-ratio: 1217 / 717; object-fit: cover; }
.hero-inset figcaption {
  position: absolute; left: 0; bottom: 0; padding: 22px 12px 8px; right: 0;
  font-size: 10px; letter-spacing: .24em; text-transform: uppercase; color: var(--bone);
  background: linear-gradient(180deg, rgba(14,15,17,0), rgba(14,15,17,.8));
}
.hero-frame-foot { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; width: 100%; max-width: 620px; }
.hero-caption { margin: 0; font-family: var(--display); font-style: italic; font-size: 19px; color: var(--bone-dim); display: flex; align-items: baseline; gap: 14px; }
.hero-caption small { font-family: var(--sans); font-style: normal; font-size: 11px; letter-spacing: .2em; color: var(--ash); font-variant-numeric: tabular-nums; white-space: nowrap; }
.hero-caption small b { font-weight: 400; color: var(--cognac); }
.hero-dots { display: flex; gap: 4px; }
.hero-dots button { width: 36px; height: 24px; padding: 0; position: relative; }
.hero-dots button::before { content: ""; position: absolute; left: 3px; right: 3px; top: 11px; height: 2px; background: var(--line-strong); transition: background .4s; }
.hero-dots button.is-active::before { background: var(--cognac); }

.hero-foot {
  width: min(var(--wrap), 100%); margin: 0 auto;
  display: flex; align-items: center; gap: 36px;
  padding: 18px 0 22px; border-top: 1px solid var(--line);
}
.scroll-cue { display: flex; align-items: center; gap: 14px; font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: var(--ash); white-space: nowrap; flex: 0 0 auto; }
.scroll-cue i { display: block; width: 56px; height: 1px; background: var(--ash); position: relative; overflow: hidden; }
.scroll-cue i::after { content: ""; position: absolute; inset: 0; background: var(--cognac); transform: translateX(-100%); animation: cue 2.4s var(--ease) infinite; }
@keyframes cue { 0% { transform: translateX(-100%);} 60% { transform: translateX(100%);} 100% { transform: translateX(100%);} }

/* marques ticker */
.marquee {
  flex: 1 1 auto; min-width: 0; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track { display: flex; width: max-content; animation: ticker 48s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: var(--ash); white-space: nowrap;
  padding-right: 44px; position: relative;
}
.marquee-track span::after { content: ""; position: absolute; right: 18px; top: 50%; width: 5px; height: 5px; background: var(--cognac); transform: translateY(-50%) rotate(45deg); opacity: .7; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* load sequence */
.unlocked .hero-text > * { animation: rise 1.1s var(--ease) both; }
.unlocked .hero-text > :nth-child(2) { animation-delay: .12s; }
.unlocked .hero-text > :nth-child(3) { animation-delay: .28s; }
.unlocked .hero-text > :nth-child(4) { animation-delay: .42s; }
.unlocked .hero-frame { animation: unveil 1.4s var(--ease) both; animation-delay: .2s; }
.unlocked .hero-inset { animation: rise 1.1s var(--ease) both; animation-delay: .9s; }
.unlocked .hero-frame-foot, .unlocked .hero-foot { animation: rise 1.1s var(--ease) both; animation-delay: 1s; }
@keyframes rise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@keyframes unveil { from { clip-path: inset(0 100% 0 0); } to { clip-path: inset(0); } }
@media (prefers-reduced-motion: reduce) {
  .unlocked .hero-text > *, .unlocked .hero-frame, .unlocked .hero-inset, .unlocked .hero-frame-foot, .unlocked .hero-foot { animation: none; }
  .scroll-cue i::after, .marquee-track, .hero-hex .hex-core { animation: none; }
}

/* ---------- reveal on scroll ---------- */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- about ---------- */
.about { padding: clamp(90px, 12vw, 160px) 0 clamp(70px, 9vw, 120px); }
.grid-about {
  display: grid; grid-template-columns: 7fr 5fr; column-gap: clamp(32px, 6vw, 96px); row-gap: 56px;
  grid-template-areas: "lead fig" "copy fig" "facts facts";
  align-items: start;
}
.about-lead { grid-area: lead; }
.about-fig { grid-area: fig; margin: 0; position: sticky; top: 110px; }
.about-fig img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 60% center; filter: saturate(.9); }
.about-fig figcaption, .chapter-fig figcaption { margin-top: 14px; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--ash); }
.about-copy { grid-area: copy; max-width: 62ch; color: var(--bone-dim); font-size: 18px; }
.about-belief { font-family: var(--display); font-style: italic; font-size: 25px; line-height: 1.35; color: var(--bone); padding-top: 12px; }
.facts {
  grid-area: facts; list-style: none; margin: 24px 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.facts li { padding: 34px 28px 30px 0; border-right: 1px solid var(--line); display: flex; flex-direction: column; gap: 10px; }
.facts li + li { padding-left: 28px; }
.facts li:last-child { border-right: 0; }
.facts strong { font-family: var(--display); font-weight: 400; font-size: clamp(40px, 4.5vw, 64px); line-height: 1; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.facts strong span { font-size: .42em; color: var(--cognac); font-style: italic; margin-left: 2px; }
.fact-label { font-size: 13px; letter-spacing: .06em; color: var(--ash); max-width: 20ch; }

/* ---------- services ---------- */
.services { padding: clamp(40px, 6vw, 80px) 0 0; }
.services-head { padding-bottom: clamp(48px, 6vw, 90px); display: grid; grid-template-columns: 7fr 5fr; gap: 40px; align-items: end; }
.services-head .eyebrow { grid-column: 1 / -1; }
.services-intro { color: var(--ash); max-width: 42ch; margin: 0; }

.chapter { border-top: 1px solid var(--line); padding: clamp(56px, 7vw, 110px) 0; }
.chapter-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 7vw, 120px); align-items: center; }
.chapter-flip .chapter-fig { order: 2; }
.chapter-fig { margin: 0; }
.chapter-fig img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  filter: saturate(.9) contrast(1.03);
  transition: transform 1.4s var(--ease), filter .8s var(--ease);
}
.chapter-fig { overflow: hidden; }
.chapter-fig:hover img { transform: scale(1.03); filter: saturate(1) contrast(1.03); }
.chapter-body h3 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(34px, 3.6vw, 54px); line-height: 1.04; letter-spacing: -.01em;
  margin: 0 0 20px; text-wrap: balance;
}
.chapter-body .tagline {
  font-family: var(--display); font-style: italic; font-size: 24px; line-height: 1.3; color: var(--cognac);
  margin-bottom: 24px;
}
.chapter-body p:not(.tagline):not(.eyebrow) { color: var(--bone-dim); max-width: 58ch; }
.chapter-body .closing { color: var(--bone); font-weight: 400; }

/* ---------- showroom ---------- */
.showroom { padding: clamp(80px, 10vw, 150px) 0; border-top: 1px solid var(--line); background: var(--ink-2); }
.showroom-head { display: grid; grid-template-columns: 7fr 5fr; gap: 40px; align-items: end; margin-bottom: 52px; }
.showroom-note { color: var(--ash); max-width: 40ch; margin: 0; justify-self: end; }
.strip-wrap { position: relative; }
.strip {
  display: flex; gap: 18px;
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-left: var(--gutter);
  padding: 0 var(--gutter) 24px;
  scrollbar-width: none;
  cursor: grab;
}
.strip::-webkit-scrollbar { display: none; }
.strip.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.tile {
  flex: 0 0 auto; width: min(360px, 78vw); margin: 0; scroll-snap-align: start;
  position: relative; overflow: hidden; background: var(--ink-3);
}
.tile-wide { width: min(520px, 88vw); }
.tile img {
  width: 100%; height: 300px; object-fit: cover;
  filter: saturate(.88);
  transition: transform 1.2s var(--ease), filter .6s var(--ease);
}
.tile:hover img { transform: scale(1.05); filter: saturate(1); }
.tile figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 18px 16px;
  background: linear-gradient(180deg, rgba(14,15,17,0), rgba(14,15,17,.85));
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
}
.tile b { font-family: var(--display); font-weight: 400; font-size: 20px; letter-spacing: 0; }
.tile span { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--cognac); }
.strip-controls { display: flex; gap: 10px; justify-content: flex-end; padding: 10px var(--gutter) 0; }
.strip-btn { width: 52px; height: 52px; border: 1px solid var(--line-strong); font-size: 18px; transition: border-color .3s, background .3s; }
.strip-btn:hover { border-color: var(--cognac); background: var(--cognac-soft); }

/* ---------- motorsport band ---------- */
.band { position: relative; min-height: 78vh; display: flex; align-items: center; isolation: isolate; overflow: hidden; }
@media (max-width: 640px) {
  .band { min-height: 0; }
  .band-img { object-position: 70% center; }
  .band-shade { background: linear-gradient(180deg, rgba(14,15,17,.92) 0%, rgba(14,15,17,.86) 55%, rgba(14,15,17,.7) 100%); }
  .band-inner { padding: 64px 0; }
  .band .eyebrow { letter-spacing: .16em; }
}
.band-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; filter: saturate(.8) contrast(1.1); }
.band-shade { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(14,15,17,.9) 0%, rgba(14,15,17,.6) 55%, rgba(14,15,17,.25) 100%); }
.band-inner { padding: clamp(80px, 12vw, 160px) 0; max-width: 720px; }
.band-title { margin-bottom: 26px; }
.band-copy { color: var(--bone-dim); max-width: 48ch; margin-bottom: 36px; font-size: 18px; }

/* ---------- contact ---------- */
.contact { padding: clamp(90px, 12vw, 160px) 0; border-top: 1px solid var(--line); }
.contact-grid { display: grid; grid-template-columns: 6fr 6fr; gap: clamp(40px, 8vw, 120px); align-items: start; }
.contact-copy { color: var(--ash); max-width: 46ch; margin: 26px 0 40px; }
.contact-details { margin: 0; display: grid; gap: 22px; }
.contact-details div { display: grid; grid-template-columns: 110px 1fr; gap: 16px; padding-top: 18px; border-top: 1px solid var(--line); }
.contact-details dt { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--ash); padding-top: 4px; }
.contact-details dd { margin: 0; font-size: 18px; }
.contact-details a:hover { color: var(--cognac); }

.form { display: grid; gap: 22px; padding: 40px; background: var(--ink-2); border: 1px solid var(--line); }
.field { display: grid; gap: 8px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field label { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--ash); }
.field input, .field select, .field textarea {
  width: 100%; background: transparent; border: 0; border-bottom: 1px solid var(--line-strong);
  color: var(--bone); font: inherit; font-weight: 300; padding: 10px 0; border-radius: 0;
  transition: border-color .3s;
}
.field textarea { resize: vertical; min-height: 120px; }
.field select { appearance: none; -webkit-appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--ash) 50%), linear-gradient(135deg, var(--ash) 50%, transparent 50%); background-position: calc(100% - 12px) 55%, calc(100% - 7px) 55%; background-size: 5px 5px; background-repeat: no-repeat; }
.field select option { background: var(--ink-2); color: var(--bone); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-bottom-color: var(--cognac); }
.field input::placeholder, .field textarea::placeholder { color: rgba(154,149,139,.55); }
.field.is-invalid input, .field.is-invalid textarea { border-bottom-color: #c0625a; }
.form-note { margin: 0; font-size: 14px; color: var(--ash); min-height: 1.4em; }
.form-note.is-ok { color: var(--cognac); }
.form-note.is-err { color: #d08a83; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form.is-sent .field, .form.is-sent #f-submit { display: none; }
.form-sent { display: none; text-align: center; padding: 24px 0 8px; }
.form.is-sent .form-sent { display: block; }
.form-sent h4 { font-family: var(--display); font-weight: 400; font-size: 34px; margin: 0 0 12px; }
.form-sent h4 em { font-style: italic; color: var(--cognac); }
.form-sent p { color: var(--ash); max-width: 40ch; margin: 0 auto; }
.form-sent .textlink { margin-top: 22px; }
#f-submit[disabled] { opacity: .6; cursor: progress; }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--line); background: var(--ink-2); padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 4fr 5fr 3fr; gap: 40px; padding-bottom: 48px; align-items: start; }
.footer-brand { display: flex; gap: 16px; align-items: flex-start; }
.footer-brand .hex { filter: none; }
.footer-brand p { margin: 0; font-weight: 400; letter-spacing: .2em; text-transform: uppercase; font-size: 13px; line-height: 1.7; }
.footer-brand span { font-weight: 300; color: var(--ash); font-size: 11px; letter-spacing: .16em; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 32px; }
.footer-links a { font-size: 14px; color: var(--bone-dim); transition: color .3s; }
.footer-links a:hover { color: var(--cognac); }
.footer-strap { margin: 0; font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--ash); line-height: 2; }
.footer-base { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding: 22px 0 28px; border-top: 1px solid var(--line); font-size: 12px; color: var(--ash); letter-spacing: .04em; }
.footer-base a:hover { color: var(--cognac); }

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 150; background: rgba(14,15,17,.94);
  display: flex; align-items: center; justify-content: center;
  padding: 60px var(--gutter);
}
.lightbox figure { margin: 0; max-width: min(1100px, 100%); }
.lightbox img { max-height: 76vh; width: auto; max-width: 100%; margin: 0 auto; }
.lightbox figcaption { margin-top: 16px; text-align: center; font-family: var(--display); font-size: 22px; }
.lb-close { position: absolute; top: max(12px, env(safe-area-inset-top)); right: var(--gutter); font-size: 34px; line-height: 1; width: 52px; height: 52px; }
@media (max-width: 640px) { .lightbox { padding: 60px 16px 40px; } .lightbox figcaption { font-size: 18px; } .lb-hint { display: block; } }
.lb-hint { display: none; margin: 6px 0 0; text-align: center; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--ash); }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border: 1px solid var(--line-strong); font-size: 18px; }
.lb-nav:hover { border-color: var(--cognac); }
.lb-prev { left: var(--gutter); }
.lb-next { right: var(--gutter); }

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .grid-about { grid-template-columns: 1fr; grid-template-areas: "lead" "fig" "copy" "facts"; }
  .about-fig { position: static; }
  .about-fig img { aspect-ratio: 4 / 3; }
  .facts { grid-template-columns: 1fr 1fr; }
  .facts li:nth-child(2) { border-right: 0; }
  .facts li:nth-child(3) { padding-left: 0; border-top: 1px solid var(--line); }
  .facts li:nth-child(4) { border-top: 1px solid var(--line); }
  .hero { min-height: 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { justify-items: start; }
  .hero-stack { max-width: 640px; padding: 0 0 44px 0; }
  .hero-inset { left: auto; right: -12px; bottom: 0; width: 42%; }
  .hero-hex { right: -30%; top: -8%; width: 80vw; opacity: .7; }
  .services-head, .showroom-head { grid-template-columns: 1fr; }
  .showroom-note { justify-self: start; }
  .chapter-grid { grid-template-columns: 1fr; gap: 36px; }
  .chapter-flip .chapter-fig { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .about { padding: 64px 0 48px; }
  .grid-about { row-gap: 36px; }
  .about-copy { font-size: 17px; }
  .about-belief { font-size: 22px; }
  .services-head { padding-bottom: 40px; }
  .chapter { padding: 48px 0; }
  .chapter-grid { gap: 24px; }
  .chapter-body h3 { font-size: 34px; }
  .chapter-body .tagline { font-size: 21px; }
  .chapter-fig figcaption, .about-fig figcaption { margin-top: 10px; }
  .showroom { padding: 56px 0; }
  .showroom-head { margin-bottom: 32px; }
  .contact { padding: 64px 0; }
  .contact-grid { gap: 40px; }
  .footer { padding-top: 44px; }
  .footer-grid { gap: 28px; padding-bottom: 32px; }
  .display { font-size: clamp(32px, 9vw, 40px); }
  .textlink { margin-top: 18px; }
  .hero { padding-top: 110px; }
  .hero-title { max-width: none; font-size: clamp(46px, 13vw, 60px); }
  .hero-frame::before { display: none; }
  .hero-stack { padding-bottom: 36px; }
  .hero-inset { width: 46%; right: 0; border-width: 4px; }
  .hero-foot { gap: 20px; }
  .scroll-cue span { display: none; }
  .hero-eyebrow { font-size: 11px; letter-spacing: .16em; }
  .hero-actions .btn { flex: 1 1 100%; }
  .hero-frame-foot { flex-wrap: wrap; gap: 12px; }
  .hero-caption { font-size: 17px; gap: 10px; width: 100%; }
  .hero-dots button { width: 28px; }
  .facts { grid-template-columns: 1fr 1fr; margin-top: 8px; }
  .facts li { padding: 22px 16px 20px 0; gap: 6px; }
  .facts li + li { padding-left: 16px; }
  .facts li:nth-child(3) { padding-left: 0; }
  .facts strong { font-size: 38px; }
  .fact-label { font-size: 12px; }
  .field-row { grid-template-columns: 1fr; }
  .form { padding: 26px; }
  .contact-details div { grid-template-columns: 1fr; gap: 6px; }
  .tile img { height: 240px; }
  .lb-nav { display: none; }
}

/* ---------- coming soon gate ---------- */
.gated { overflow: hidden; }
.gated body { overflow: hidden; height: 100vh; }
.gate {
  position: fixed; inset: 0; z-index: 300; background: var(--ink); color: var(--bone);
  display: flex; align-items: center; justify-content: center; padding: 40px var(--gutter);
  overflow: hidden; isolation: isolate;
  transition: opacity .9s var(--ease), visibility 0s linear .9s;
}
.gate.is-open { opacity: 0; visibility: hidden; pointer-events: none; }
.gate-glow {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(55% 45% at 72% 30%, rgba(192,144,95,.16), transparent 70%),
    radial-gradient(45% 40% at 15% 85%, rgba(236,231,221,.05), transparent 70%);
}
.gate-hex {
  position: absolute; z-index: -1; right: -8vw; top: -10vh; width: clamp(360px, 46vw, 760px); height: auto;
  fill: none; stroke: rgba(236,231,221,.12); stroke-width: 1; filter: drop-shadow(0 0 10px rgba(236,231,221,.2));
  animation: hexbreathe 6s ease-in-out infinite;
}
.gate-inner { width: min(680px, 100%); }
.gate-brand { display: flex; align-items: center; gap: 14px; margin-bottom: clamp(40px, 8vh, 80px); }
.gate-eyebrow { color: var(--bone-dim); }
.gate-title {
  font-family: var(--display); font-weight: 400; font-size: clamp(56px, 11vw, 128px); line-height: .92; letter-spacing: -.02em;
  margin: 0 0 28px;
}
.gate-title em { font-style: italic; color: var(--cognac); }
.gate-strap {
  display: flex; flex-wrap: wrap; gap: 6px 12px; margin: 0 0 26px; padding-top: 22px; border-top: 1px solid var(--line-strong);
  font-size: 11px; letter-spacing: .26em; text-transform: uppercase; font-weight: 400;
}
.gate-strap i, .gate-contact i { font-style: normal; color: var(--cognac); }
.gate-copy { color: var(--ash); max-width: 52ch; margin: 0 0 32px; }
.gate-form { display: grid; gap: 10px; max-width: 460px; }
.gate-label { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--ash); }
.gate-row { display: flex; gap: 12px; }
.gate-row input {
  flex: 1 1 auto; min-width: 0; background: transparent; border: 0; border-bottom: 1px solid var(--line-strong); border-radius: 0;
  color: var(--bone); font: inherit; font-size: 18px; letter-spacing: .12em; padding: 10px 0; transition: border-color .3s;
}
.gate-row input:focus { outline: none; border-bottom-color: var(--cognac); }
.gate-row .btn { flex: 0 0 auto; }
.gate-note { margin: 0; min-height: 1.5em; font-size: 14px; color: var(--ash); }
.gate-form.is-wrong .gate-row input { border-bottom-color: #c0625a; }
.gate-form.is-wrong { animation: shake .45s var(--ease); }
@keyframes shake { 0%,100% { transform: none; } 20% { transform: translateX(-6px); } 40% { transform: translateX(6px); } 60% { transform: translateX(-4px); } 80% { transform: translateX(4px); } }
.gate-contact { display: flex; flex-wrap: wrap; gap: 8px 14px; margin: 40px 0 0; font-size: 14px; color: var(--bone-dim); }
.gate-contact a:hover { color: var(--cognac); }
.js .gate-inner > * { animation: rise 1s var(--ease) both; }
.js .gate-inner > :nth-child(2) { animation-delay: .1s; }
.js .gate-inner > :nth-child(3) { animation-delay: .2s; }
.js .gate-inner > :nth-child(4) { animation-delay: .3s; }
.js .gate-inner > :nth-child(5) { animation-delay: .4s; }
.js .gate-inner > :nth-child(6) { animation-delay: .5s; }
.js .gate-inner > :nth-child(7) { animation-delay: .6s; }
@media (prefers-reduced-motion: reduce) { .js .gate-inner > *, .gate-hex, .gate-form.is-wrong { animation: none; } }
@media (max-width: 640px) {
  .gate { align-items: flex-start; padding-top: 32px; overflow-y: auto; }
  .gate-brand { margin-bottom: 40px; }
  .gate-row { flex-direction: column; }
  .gate-row .btn { width: 100%; }
}
