/*
  Drift Automotive — Performance Garage
  ─────────────────────────────────────────────────────────────────
  A custom build using only real photographs from the workshop.
  Typography:
    Bricolage Grotesque (variable, optical-size + width) — display
    Fraunces (variable, ital + opsz) — italic editorial accents
    Inter — body
    JetBrains Mono — data, kickers, captions
  Palette:
    bone   #F2EBDC
    paper  #E9E1CE
    ink    #0E0D0A
    smoke  #14130F
    coal   #1B1915
    line   rgba(14,13,10,0.14)
    line-d rgba(242,235,220,0.16)
    red    #D4271F  (signage red)
    rust   #A53A2A
    wa     #25D366
*/

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

:root {
  --bone:    #F2EBDC;
  --paper:   #E9E1CE;
  --paper-2: #DED5BD;
  --ink:     #0E0D0A;
  --smoke:   #14130F;
  --coal:    #1B1915;
  --line:    rgba(14, 13, 10, 0.14);
  --line-d:  rgba(242, 235, 220, 0.16);
  --line-dd: rgba(242, 235, 220, 0.32);
  --muted:   rgba(14, 13, 10, 0.55);
  --muted-d: rgba(242, 235, 220, 0.62);
  --red:     #D4271F;
  --red-d:   #B81E18;
  --rust:    #A53A2A;
  --wa:      #25D366;

  --serif: 'Fraunces', 'Times New Roman', serif;
  --display: 'Bricolage Grotesque', system-ui, -apple-system, sans-serif;
  --sans: 'Inter', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;

  --pad: clamp(20px, 4.6vw, 64px);
  --gap: clamp(24px, 4vw, 56px);
  --container: 1360px;

  --tx: 240ms cubic-bezier(0.32, 0.72, 0.16, 1);
  --tx-mid: 480ms cubic-bezier(0.22, 1, 0.36, 1);
  --tx-slow: 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: auto;
  background: var(--bone);
  overflow-x: clip; /* hard stop on any horizontal overflow */
}

body {
  background: var(--bone);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "kern", "liga";
  overflow-x: clip;
  width: 100%;
  max-width: 100vw;
}
main, section, header, footer { max-width: 100vw; overflow-x: clip; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: 0; background: none; color: inherit; font-family: inherit; }
em { font-style: italic; }
::selection { background: var(--red); color: var(--bone); }

.serif-it {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-variation-settings: "opsz" 144;
  letter-spacing: -0.5px;
}

/* ════════════════════════════════════════════════════════════════════
   NAV
═════════════════════════════════════════════════════════════════════ */
.nav {
  position: fixed; inset: 0 0 auto 0;
  z-index: 80;
  padding: 14px var(--pad);
  background: transparent;
  transition: background var(--tx-mid), border-bottom-color var(--tx-mid);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(14, 13, 10, 0.84);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line-d);
}
.nav.scrolled .nav__brand,
.nav.scrolled .nav__menu a,
.nav.scrolled .nav__phone {
  color: var(--bone);
}

.nav__row {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--gap);
  color: var(--bone);
}
.nav__menu {
  margin: 0 auto;
}

.nav__brand {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  color: var(--bone);
  transition: color var(--tx-mid);
}
.nav__logo {
  width: 100px;
  height: 24px;
  flex-shrink: 0;
}
.nav__sub {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.8px;
  color: var(--bone);
  opacity: 0.7;
  white-space: nowrap;
}

.nav__menu {
  display: flex;
  justify-content: center;
  gap: 28px;
}
.nav__menu a {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  color: var(--bone);
  position: relative;
  padding: 6px 0;
  transition: color var(--tx);
}
.nav__menu a::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--red);
  transition: width var(--tx-mid);
}
.nav__menu a:hover { color: var(--bone); }
.nav__menu a:hover::after { width: 100%; }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--bone);
}
.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--bone);
  transition: color var(--tx);
}
.nav__phone .ph-icon { color: var(--red); display: inline-flex; }
.nav__phone:hover { color: var(--red); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--bone);
  padding: 10px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: background var(--tx), transform var(--tx);
}
.nav__cta:hover {
  background: var(--red-d);
  transform: translateY(-1px);
}

.nav__menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
}
.nav__menu-btn span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--bone);
}

/* ════════════════════════════════════════════════════════════════════
   MOBILE NAV
═════════════════════════════════════════════════════════════════════ */
.mob-nav {
  position: fixed; inset: 0;
  z-index: 200;
  background: var(--ink);
  color: var(--bone);
  padding: 64px var(--pad) 32px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 460ms cubic-bezier(0.76, 0, 0.24, 1);
  overflow-y: auto;
}
.mob-nav.open { transform: translateX(0); }
.mob-nav__close {
  position: absolute; top: 18px; right: 18px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: var(--bone);
}
.mob-nav__list {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin-bottom: 24px;
}
.mob-nav__list li a {
  display: flex;
  align-items: baseline;
  gap: 22px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-d);
  font-family: var(--display);
  font-size: clamp(28px, 7vw, 44px);
  font-weight: 600;
  font-variation-settings: "opsz" 24;
  letter-spacing: -1px;
  color: var(--bone);
}
.mob-nav__list span {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--red);
  letter-spacing: 1.4px;
  min-width: 28px;
}
.mob-nav__foot {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mob-nav__cta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--line-dd);
}
.mob-nav__cta--phone { background: var(--red); border-color: var(--red); }
.mob-nav__cta--wa { background: var(--wa); color: #062E14; border-color: var(--wa); }
.mob-nav__cta span {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  opacity: 0.85;
}
.mob-nav__cta strong {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.4px;
}

/* ════════════════════════════════════════════════════════════════════
   COMMON
═════════════════════════════════════════════════════════════════════ */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.7;
  margin-bottom: 28px;
}
.kicker-line {
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--red);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: all var(--tx);
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn--ghost-light {
  background: rgba(14, 13, 10, 0.55);
  color: var(--bone);
  border-color: rgba(242, 235, 220, 0.7);
  backdrop-filter: blur(10px);
  font-weight: 700;
  letter-spacing: 0.4px;
}
.btn--ghost-light:hover {
  background: var(--bone);
  color: var(--ink);
  border-color: var(--bone);
}
.btn--solid-red {
  background: var(--red);
  color: var(--bone);
  box-shadow: 0 6px 20px rgba(212, 39, 31, 0.3);
}
.btn--solid-red:hover {
  background: var(--red-d);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(212, 39, 31, 0.45);
}

.dim { opacity: 0.42; }
.ul-red {
  background-image: linear-gradient(to right, var(--red), var(--red));
  background-position: 0 88%;
  background-size: 100% 4px;
  background-repeat: no-repeat;
}
.hl {
  color: var(--red);
}

/* ════════════════════════════════════════════════════════════════════
   01 · HERO
═════════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100dvh;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero__plate {
  position: absolute;
  inset: 0;
  margin: 0;
  z-index: 0;
}
.hero__plate img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 65%;
  transform: scale(1.04);
}
.hero__caption {
  position: absolute;
  right: var(--pad);
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.4px;
  color: var(--bone);
  opacity: 0.6;
  z-index: 3;
}
.caption__hash { color: var(--red); font-weight: 700; }

.hero__overlay {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(95deg, rgba(14,13,10,0.92) 0%, rgba(14,13,10,0.78) 30%, rgba(14,13,10,0.4) 55%, rgba(14,13,10,0.0) 100%),
    linear-gradient(180deg, rgba(14,13,10,0.78) 0%, rgba(14,13,10,0.4) 22%, rgba(14,13,10,0.4) 60%, rgba(14,13,10,0.96) 100%);
  padding: 120px var(--pad) 56px;
}
@media (max-width: 760px) {
  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(14,13,10,0.78) 0%, rgba(14,13,10,0.5) 25%, rgba(14,13,10,0.7) 70%, rgba(14,13,10,0.96) 100%);
  }
}

.hero__copy {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  color: var(--bone);
}

.hero__location {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.8px;
  color: var(--bone);
  background: rgba(14, 13, 10, 0.5);
  border: 1px solid rgba(242, 235, 220, 0.18);
  backdrop-filter: blur(8px);
  padding: 7px 12px;
  border-radius: 100px;
  margin-bottom: 32px;
}
.location-pulse {
  width: 7px; height: 7px;
  background: var(--red);
  border-radius: 50%;
  position: relative;
}
.location-pulse::before {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--red);
  opacity: 0.6;
  animation: pulseRing 2.4s ease-out infinite;
}
@keyframes pulseRing {
  0% { transform: scale(0.6); opacity: 0.8; }
  100% { transform: scale(2.4); opacity: 0; }
}
.hero__location .dot { opacity: 0.4; }

.hero__title {
  font-family: var(--display);
  font-size: clamp(36px, 6.4vw, 92px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -2.5px;
  font-variation-settings: "opsz" 48, "wdth" 100;
  color: var(--bone);
  max-width: 1100px;
  margin-bottom: 56px;
}
.hero__title .line {
  display: block;
}
.hero__title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  letter-spacing: -1.5px;
}
.hero__title .hl {
  color: var(--red);
}

.hero__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line-dd);
}
.hero__since {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.since-num {
  font-family: var(--display);
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 700;
  letter-spacing: -3px;
  line-height: 0.85;
  font-variation-settings: "opsz" 48;
  color: var(--bone);
}
.since-line {
  display: flex;
  flex-direction: column;
}
.since-line strong {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--bone);
}
.since-line em {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--bone);
  opacity: 0.7;
}
.hero__actions {
  display: flex;
  gap: 12px;
}

/* ════════════════════════════════════════════════════════════════════
   02 · ABOUT
═════════════════════════════════════════════════════════════════════ */
.about {
  background: var(--bone);
  padding: clamp(80px, 12vh, 140px) var(--pad);
}
.about__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: var(--gap);
  align-items: start;
}

.about__h {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -1.4px;
  font-variation-settings: "opsz" 36;
  color: var(--ink);
  max-width: 800px;
}

.about__aside {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
}

.about__lede {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 18px;
  max-width: 480px;
}
.about__lede em { font-style: italic; }
.about__lede strong { font-weight: 600; }

.about__lede--alt {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  border-left: 1px solid var(--line);
  padding-left: 16px;
}
.figure-num {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  color: var(--red);
  display: block;
  margin-bottom: 4px;
}

.about__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  margin-top: 12px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  align-self: flex-start;
  transition: color var(--tx), gap var(--tx);
}
.about__cta:hover { color: var(--red); border-bottom-color: var(--red); gap: 22px; }

/* About numbers */
.about__numbers {
  max-width: var(--container);
  margin: clamp(72px, 9vw, 120px) auto 0;
  padding-top: 36px;
  border-top: 1px solid var(--ink);
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: end;
}
.num-block {
  padding: 0 12px;
}
.num-block:first-child { padding-left: 0; }
.num-block:last-child { padding-right: 0; }
.num-rule {
  width: 1px;
  align-self: stretch;
  background: var(--line);
}
.num {
  display: block;
  font-family: var(--display);
  font-size: clamp(56px, 8vw, 112px);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -3.5px;
  font-variation-settings: "opsz" 48;
  color: var(--ink);
  font-style: normal;
}
.num sup { font-size: 0.4em; vertical-align: super; }
.num .star { color: #C7951F; font-size: 0.7em; }
.num-lbl {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--ink);
  margin-top: 14px;
  line-height: 1.5;
}
.num-lbl i {
  font-style: normal;
  opacity: 0.55;
  font-size: 10px;
}

/* ════════════════════════════════════════════════════════════════════
   02·5 · MEET SALEEM — founder spread
═════════════════════════════════════════════════════════════════════ */
.meet {
  background: var(--bone);
  padding: 0 var(--pad) clamp(80px, 12vh, 140px);
  border-top: 1px solid var(--line);
  padding-top: clamp(80px, 12vh, 140px);
}
.meet__inner {
  max-width: var(--container);
  margin: 0 auto;
}
.meet__head {
  margin-bottom: clamp(48px, 6vw, 88px);
  max-width: 920px;
}
.meet__h {
  font-family: var(--display);
  font-size: clamp(34px, 5vw, 80px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -2px;
  font-variation-settings: "opsz" 48;
  color: var(--ink);
}
.meet__h em { color: var(--red); }

.meet__grid {
  display: grid;
  grid-template-columns: 4fr 5fr 4fr;
  gap: clamp(20px, 3vw, 36px);
  align-items: end;
}

.meet__fig {
  margin: 0;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: var(--paper-2);
}
.meet__fig img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}
.meet__fig:hover img { transform: scale(1.03); }
.meet__fig--1 {
  aspect-ratio: 4/5;
}
.meet__fig--1 img {
  object-position: 50% 30%; /* favor Saleem's face area on the Ducati shot */
}
.meet__fig--2 {
  aspect-ratio: 4/5;
  margin-bottom: 80px;
}
.meet__fig--2 img {
  object-position: 70% 35%; /* keep Saleem's face in frame on the GT-R shot */
}
.meet__fig.img-missing {
  background:
    repeating-linear-gradient(45deg, var(--paper-2) 0 12px, var(--paper-3) 12px 13px);
}
.meet__fig.img-missing::after {
  content: 'Saleem photo · save to assets/images/real/';
  position: absolute;
  inset: 50% 16px auto 16px;
  transform: translateY(-50%);
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  letter-spacing: 0.5px;
}

.meet__fig figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 24px 16px 14px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 1.2px;
  color: var(--bone);
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.78) 100%);
  z-index: 2;
}
.meet__cap-num { color: var(--red); font-weight: 700; }

.meet__words {
  display: flex;
  flex-direction: column;
  padding: 0 8px clamp(20px, 3vw, 40px);
}
.meet__lede {
  font-family: var(--serif);
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.45;
  letter-spacing: -0.5px;
  color: var(--ink);
  margin-bottom: 24px;
}
.meet__lede em { font-style: italic; color: var(--red); }
.meet__lede .dropcap {
  float: left;
  font-family: var(--serif);
  font-style: italic;
  font-size: 4em;
  line-height: 0.8;
  padding: 0.05em 0.12em 0 0;
  color: var(--red);
  font-weight: 500;
}
.meet__body {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 18px;
}
.meet__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 16px;
  color: var(--red);
  border-bottom: 1px solid var(--red);
  padding-bottom: 4px;
  align-self: flex-start;
  transition: gap var(--tx);
}
.meet__cta:hover { gap: 22px; }

/* ════════════════════════════════════════════════════════════════════
   03 · WALL
═════════════════════════════════════════════════════════════════════ */
.wall {
  position: relative;
  background: var(--smoke);
  color: var(--bone);
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  align-items: stretch;
  min-height: 80vh;
}
.wall .kicker { color: var(--bone); }
.wall__photo {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}
.wall__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

.wall__copy {
  padding: clamp(60px, 8vh, 120px) clamp(28px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--smoke);
}

.wall__h {
  font-family: var(--display);
  font-size: clamp(34px, 4.4vw, 64px);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -1.6px;
  font-variation-settings: "opsz" 36;
  color: var(--bone);
  margin-bottom: 22px;
}
.wall__h .serif-it { color: var(--red); }
.wall__sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.6;
  color: var(--bone);
  opacity: 0.75;
  margin-bottom: 36px;
  max-width: 480px;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line-d);
  border-left: 1px solid var(--line-d);
}
.brand-grid li {
  padding: 14px 16px;
  border-right: 1px solid var(--line-d);
  border-bottom: 1px solid var(--line-d);
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: rgba(0,0,0,0.04);
  transition: background var(--tx);
}
.brand-grid li:hover { background: rgba(212,39,31,0.06); }
.brand-grid strong {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--bone);
}
.brand-grid span {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.2px;
  color: var(--bone);
  opacity: 0.55;
  text-transform: uppercase;
}

/* ════════════════════════════════════════════════════════════════════
   04 · WORK / Chapters
═════════════════════════════════════════════════════════════════════ */
.work {
  background: var(--bone);
  padding: clamp(80px, 12vh, 140px) var(--pad);
}
.work__head {
  max-width: var(--container);
  margin: 0 auto clamp(64px, 8vw, 100px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: end;
}
.work__h {
  font-family: var(--display);
  font-size: clamp(36px, 5.4vw, 84px);
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: -2.5px;
  font-variation-settings: "opsz" 48;
  color: var(--ink);
  max-width: 800px;
}
.work__h em { color: var(--red); }
.work__sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  opacity: 0.7;
  max-width: 460px;
  justify-self: end;
}

.chapters {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--ink);
}

.chapter {
  border-bottom: 1px solid var(--line);
  position: relative;
}
.chapter__link {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: var(--gap);
  align-items: center;
  padding: clamp(36px, 5vw, 72px) 0;
  color: var(--ink);
  transition: padding-left var(--tx-mid), padding-right var(--tx-mid);
}
.chapter:nth-child(even) .chapter__link {
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
}
.chapter:nth-child(even) .chapter__fig { order: 2; }
.chapter:nth-child(even) .chapter__txt { order: 1; }

.chapter__link:hover { padding-left: 8px; padding-right: 8px; }

.chapter__fig {
  margin: 0;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--paper-2);
  position: relative;
}
.chapter__fig img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}
.chapter__link:hover .chapter__fig img {
  transform: scale(1.03);
}

.chapter__txt {
  position: relative;
}
.chapter__num {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.6px;
  color: var(--red);
  margin-bottom: 16px;
  display: inline-block;
}
.chapter__h {
  font-family: var(--display);
  font-size: clamp(28px, 3.4vw, 48px);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -1.4px;
  font-variation-settings: "opsz" 36;
  color: var(--ink);
  margin-bottom: 16px;
}
.chapter__txt p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  opacity: 0.75;
  margin-bottom: 20px;
  max-width: 560px;
}
.chapter__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 24px;
  padding: 14px 0;
  border-top: 1px dashed var(--line);
  border-bottom: 1px dashed var(--line);
  margin-bottom: 18px;
}
.chapter__list li {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.3px;
  color: var(--ink);
  padding-left: 14px;
  position: relative;
  line-height: 1.6;
}
.chapter__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 1px;
  background: var(--red);
}
.chapter__cta {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  font-weight: 500;
  color: var(--red);
  display: inline-block;
  border-bottom: 1px solid var(--red);
  padding-bottom: 2px;
}

/* ════════════════════════════════════════════════════════════════════
   05 · PROCESS
═════════════════════════════════════════════════════════════════════ */
.process {
  background: var(--coal);
  color: var(--bone);
  padding: clamp(80px, 12vh, 140px) var(--pad);
}
.process .kicker { color: var(--bone); opacity: 0.7; }

.process__head {
  max-width: var(--container);
  margin: 0 auto clamp(48px, 6vw, 80px);
}
.process__h {
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 96px);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -3px;
  font-variation-settings: "opsz" 48;
  color: var(--bone);
  max-width: 900px;
}
.process__h em { color: var(--red); font-weight: 400; }

.steps {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dd);
  border-left: 1px solid var(--line-d);
}
.step {
  padding: clamp(28px, 3vw, 44px);
  border-right: 1px solid var(--line-d);
  border-bottom: 1px solid var(--line-d);
  display: flex;
  flex-direction: column;
}
.step__hd {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 28px;
}
.step__no {
  font-family: var(--display);
  font-size: 64px;
  font-weight: 700;
  font-variation-settings: "opsz" 48;
  letter-spacing: -2px;
  line-height: 1;
  color: var(--red);
}
.step__time {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.2px;
  color: var(--bone);
  opacity: 0.55;
  text-transform: uppercase;
  text-align: right;
  max-width: 140px;
}
.step h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.5px;
  font-variation-settings: "opsz" 24;
  margin-bottom: 12px;
  color: var(--bone);
}
.step p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  line-height: 1.6;
  color: var(--bone);
  opacity: 0.72;
}

/* ════════════════════════════════════════════════════════════════════
   06 · ARCHIVE
═════════════════════════════════════════════════════════════════════ */
.archive {
  background: var(--bone);
  padding: clamp(80px, 12vh, 140px) var(--pad);
}
.archive__head {
  max-width: var(--container);
  margin: 0 auto clamp(48px, 6vw, 80px);
}
.archive__h {
  font-family: var(--display);
  font-size: clamp(36px, 5.4vw, 84px);
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: -2.5px;
  font-variation-settings: "opsz" 48;
  color: var(--ink);
}
.archive__h em { color: var(--red); }
.archive__sub {
  margin-top: 18px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--ink);
  opacity: 0.7;
}
.archive__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}
.ar-item {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--paper-2);
}
.ar-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1000ms cubic-bezier(0.22, 1, 0.36, 1);
}
.ar-item:hover img { transform: scale(1.05); }
.ar-item figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 16px 14px;
  background: linear-gradient(180deg, transparent 0%, rgba(14,13,10,0.92) 100%);
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--tx-mid), transform var(--tx-mid);
}
.ar-item:hover figcaption { opacity: 1; transform: translateY(0); }
.ar-num {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.4px;
  color: var(--red);
}
.ar-meta {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--bone);
}

.ar-item--01 { grid-column: span 7; grid-row: span 2; }
.ar-item--02 { grid-column: span 5; grid-row: span 2; }
.ar-item--03 { grid-column: span 4; grid-row: span 2; }
.ar-item--04 { grid-column: span 4; grid-row: span 2; }
.ar-item--05 { grid-column: span 4; grid-row: span 2; }
.ar-item--06 { grid-column: span 12; grid-row: span 2; }

.archive__cta {
  max-width: var(--container);
  margin: 36px auto 0;
}
.archive__cta a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  transition: color var(--tx), gap var(--tx);
}
.archive__cta a:hover { color: var(--red); border-bottom-color: var(--red); gap: 22px; }

/* ════════════════════════════════════════════════════════════════════
   07 · VOICES (testimonials)
═════════════════════════════════════════════════════════════════════ */
.voices {
  background: var(--smoke);
  color: var(--bone);
  padding: clamp(80px, 12vh, 140px) var(--pad);
}
.voices .kicker { color: var(--bone); opacity: 0.7; }
.voices__head {
  max-width: var(--container);
  margin: 0 auto clamp(48px, 6vw, 80px);
}
.voices__h {
  font-family: var(--display);
  font-size: clamp(34px, 5vw, 76px);
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: -2px;
  font-variation-settings: "opsz" 48;
  color: var(--bone);
}
.voices__h .rating {
  font-weight: 700;
  color: var(--red);
}
.rating sup { font-size: 0.4em; color: #C7951F; vertical-align: super; }

.voices__row {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}
.quote {
  padding: 32px 28px;
  border: 1px solid var(--line-d);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  background: rgba(14,13,10,0.4);
  transition: border-color var(--tx), transform var(--tx);
}
.quote:hover { border-color: rgba(212,39,31,0.5); transform: translateY(-4px); }
.quote--feat { background: rgba(212,39,31,0.05); border-color: rgba(212,39,31,0.36); }
.quote p {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.5;
  color: var(--bone);
  letter-spacing: -0.3px;
  flex: 1;
}
.quote footer {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 18px;
  border-top: 1px solid var(--line-d);
}
.quote footer strong {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  color: var(--bone);
  letter-spacing: -0.2px;
}
.quote footer span {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.6px;
  color: var(--bone);
  opacity: 0.55;
}

.voices__google {
  max-width: var(--container);
  margin: 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border: 1px solid var(--line-dd);
  border-radius: 100px;
  background: rgba(14,13,10,0.4);
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--bone);
  transition: border-color var(--tx), background var(--tx);
}
.voices__google:hover {
  border-color: var(--red);
  background: rgba(212,39,31,0.08);
}
.voices__google svg:last-child { opacity: 0.55; }

/* ════════════════════════════════════════════════════════════════════
   08 · VISIT
═════════════════════════════════════════════════════════════════════ */
.visit {
  background: var(--ink);
  color: var(--bone);
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  align-items: stretch;
  min-height: 100vh;
}
.visit__sign {
  margin: 0;
  position: relative;
  overflow: hidden;
  min-height: 480px;
}
.visit__sign img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.visit__sign figcaption {
  position: absolute;
  bottom: 18px; left: 22px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.4px;
  color: var(--bone);
  opacity: 0.6;
}

.visit__panels {
  padding: clamp(48px, 6vw, 88px) clamp(28px, 4vw, 60px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.panel {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 56px 20px 22px;
  border: 1px solid var(--line-d);
  border-radius: 4px;
  background: rgba(242,235,220,0.02);
  color: var(--bone);
  transition: all var(--tx);
}
.panel--head {
  border: 0;
  padding: 0 0 16px;
  background: none;
  margin-bottom: 14px;
}
.panel--head .kicker { color: var(--bone); opacity: 0.75; }
.visit__h {
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -1.6px;
  font-variation-settings: "opsz" 36;
  color: var(--bone);
}

a.panel:hover { background: rgba(212,39,31,0.06); border-color: rgba(212,39,31,0.4); }

.panel__lbl {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.4px;
  color: var(--bone);
  opacity: 0.55;
  text-transform: uppercase;
}
.panel__lbl i {
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--red);
}
.panel__strong {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.5px;
  color: var(--bone);
}
.panel__num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.4px;
  color: var(--bone);
  opacity: 0.65;
  line-height: 1.5;
}
.panel__arrow {
  position: absolute;
  right: 18px;
  top: 22px;
  color: var(--bone);
  opacity: 0.4;
  transition: transform var(--tx), opacity var(--tx);
}
a.panel:hover .panel__arrow {
  opacity: 1;
  color: var(--red);
  transform: translate(2px, -2px);
}

.panel--wa { border-color: rgba(37,211,102,0.32); background: rgba(37,211,102,0.04); }
.panel--wa:hover { background: rgba(37,211,102,0.10); border-color: var(--wa); }
.panel--wa:hover .panel__arrow { color: var(--wa); }
.panel--wa .panel__lbl i { background: var(--wa); }

/* ════════════════════════════════════════════════════════════════════
   FOOTER
═════════════════════════════════════════════════════════════════════ */
.foot {
  background: #060604;
  color: var(--bone);
  padding: clamp(60px, 8vh, 96px) var(--pad) 28px;
}
.foot__top {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(32px, 5vw, 80px);
  padding-bottom: 36px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line-d);
}
.foot__brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--bone);
}
.foot__logo {
  width: 180px; height: 36px;
}
.foot__brand span {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.6px;
  color: var(--bone);
  opacity: 0.55;
}
.foot__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.foot-col h4 {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.6px;
  color: var(--red);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.foot-col p {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.85;
  color: var(--bone);
  opacity: 0.75;
}
.foot-col a { transition: color var(--tx); }
.foot-col a:hover { color: var(--red); }

.foot__bottom {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--bone);
  opacity: 0.55;
  flex-wrap: wrap;
  gap: 8px;
}
.foot__bottom strong { font-weight: 600; opacity: 1; color: var(--bone); }
.foot__bottom a { color: var(--red); border-bottom: 1px solid currentColor; opacity: 1; }

/* ════════════════════════════════════════════════════════════════════
   MOBILE STICKY BAR
═════════════════════════════════════════════════════════════════════ */
.mob-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 70;
  padding: 10px 12px;
  background: rgba(14,13,10,0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line-d);
  gap: 8px;
}
.mob-bar__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 8px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}
.mob-bar__btn--call {
  background: rgba(242,235,220,0.08);
  color: var(--bone);
  border: 1px solid var(--line-d);
}
.mob-bar__btn--wa { background: var(--wa); color: #062E14; flex: 2; }
.mob-bar__btn--visit { background: var(--red); color: var(--bone); }

/* ════════════════════════════════════════════════════════════════════
   REDUCED MOTION
═════════════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ════════════════════════════════════════════════════════════════════
   RESPONSIVE
═════════════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .nav__menu { display: none; }
  .nav__phone { display: none; }
  .nav__menu-btn { display: flex; }
  .about__inner { grid-template-columns: 1fr; gap: 36px; }
  .about__aside { position: static; }
  .meet__grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .meet__words {
    grid-column: span 2;
    order: 3;
    padding: 16px 0;
    max-width: 720px;
  }
  .meet__fig--2 { margin-bottom: 0; }

  /* Stop aspect-ratio from blowing past the viewport */
  .wall__photo {
    aspect-ratio: auto;
    height: clamp(280px, 60vw, 480px);
    min-height: 0;
    width: 100%;
  }
  .visit__sign {
    aspect-ratio: auto;
    height: clamp(280px, 60vw, 460px);
    min-height: 0;
    width: 100%;
  }
  .work__head { grid-template-columns: 1fr; gap: 20px; }
  .work__sub { justify-self: start; }
  .wall { grid-template-columns: 1fr; }
  .wall__photo { aspect-ratio: 16/10; min-height: 320px; }
  .visit { grid-template-columns: 1fr; }
  .visit__sign { aspect-ratio: 16/9; min-height: 320px; }
  .voices__row { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .archive__grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 180px;
  }
  .ar-item--01 { grid-column: span 6; grid-row: span 2; }
  .ar-item--02, .ar-item--03, .ar-item--04, .ar-item--05 { grid-column: span 3; grid-row: span 2; }
  .ar-item--06 { grid-column: span 6; grid-row: span 2; }
  .foot__top { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  /* ─── NAV ─── */
  .nav { padding: 12px 18px; }
  .nav__row { gap: 12px; justify-content: space-between; }
  .nav__sub { display: none; }
  .nav__cta { display: none; }
  .nav__brand { gap: 0; flex-shrink: 1; min-width: 0; }
  .nav__logo { width: 84px; height: 22px; }
  .nav__actions {
    gap: 0;
    margin-left: 0;
    justify-content: flex-end;
  }
  .nav__menu-btn {
    padding: 10px;
    margin-right: -10px; /* visually flush to the right */
  }

  /* ─── HERO ─── */
  .hero__overlay {
    padding: 92px 20px 76px;
    background:
      linear-gradient(180deg, rgba(14,13,10,0.86) 0%, rgba(14,13,10,0.55) 28%, rgba(14,13,10,0.7) 65%, rgba(14,13,10,0.96) 100%);
  }
  .hero__location {
    flex-wrap: wrap;
    font-size: 9.5px;
    letter-spacing: 1.2px;
    padding: 6px 10px;
    margin-bottom: 22px;
  }
  .hero__title {
    font-size: clamp(36px, 9vw, 50px);
    line-height: 1.0;
    letter-spacing: -1.4px;
    margin-bottom: 36px;
  }
  .hero__title em {
    letter-spacing: -1px;
  }
  .hero__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding-top: 18px;
  }
  .hero__since { gap: 14px; }
  .since-num { font-size: 56px; letter-spacing: -2px; }
  .since-line strong { font-size: 10px; }
  .since-line em { font-size: 13px; }
  .hero__actions {
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }
  .hero__actions .btn {
    width: 100%;
    justify-content: center;
    padding: 16px 20px;
    font-size: 15px;
  }
  .hero__caption {
    right: auto; left: 20px; bottom: 70px;
    max-width: calc(100% - 40px);
    flex-wrap: wrap;
    gap: 8px;
    font-size: 9.5px;
    letter-spacing: 1.2px;
  }

  /* ─── ABOUT ─── */
  .about { padding: 64px 20px; }
  .about__h { font-size: clamp(26px, 7vw, 38px); letter-spacing: -1px; line-height: 1.18; }
  .about__lede { font-size: 17px; max-width: 100%; }
  .about__lede--alt { font-size: 13px; padding-left: 14px; }
  .about__numbers {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-top: 56px;
    padding-top: 28px;
  }
  .about__numbers .num-rule { display: none; }
  .num-block {
    padding: 22px 12px;
    border-bottom: 1px solid var(--line);
  }
  .num-block:nth-child(odd) { border-right: 1px solid var(--line); }
  .num-block:nth-child(3), .num-block:nth-child(4) { border-bottom: 0; }
  .num { font-size: 56px; letter-spacing: -2.4px; }
  .num-lbl { font-size: 10.5px; margin-top: 10px; }

  /* ─── MEET (founder) ─── */
  .meet { padding: 72px 20px; }
  .meet__head { margin-bottom: 40px; }
  .meet__h { font-size: clamp(28px, 7.4vw, 40px); line-height: 1.1; letter-spacing: -1.2px; }
  .meet__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .meet__words {
    grid-column: span 1;
    order: 2;
    padding: 8px 0 4px;
    max-width: 100%;
  }
  .meet__fig--1 { order: 1; aspect-ratio: 4/5; }
  .meet__fig--2 { order: 3; aspect-ratio: 6/5; margin-bottom: 0; }
  .meet__lede { font-size: 19px; line-height: 1.5; }
  .meet__lede .dropcap { font-size: 3.4em; }
  .meet__body { font-size: 14.5px; }
  .meet__cta { font-size: 15px; }

  /* ─── WALL ─── */
  .wall { display: block; min-height: auto; }
  .wall__photo {
    aspect-ratio: auto;
    height: 56vw;
    max-height: 360px;
    min-height: 240px;
    width: 100%;
  }
  .wall__copy { padding: 56px 20px; }
  .wall__h { font-size: clamp(28px, 7vw, 40px); letter-spacing: -1.1px; line-height: 1.12; }
  .wall__sub { font-size: 16px; margin-bottom: 28px; }
  .brand-grid { grid-template-columns: 1fr 1fr; }
  .brand-grid li { padding: 12px 14px; }
  .brand-grid strong { font-size: 16px; }

  /* ─── WORK / chapters ─── */
  .work { padding: 64px 20px; }
  .work__head { grid-template-columns: 1fr; margin-bottom: 40px; gap: 16px; }
  .work__h { font-size: clamp(30px, 8vw, 44px); letter-spacing: -1.4px; line-height: 1.04; }
  .work__sub { font-size: 16px; justify-self: start; }
  .chapter__link {
    grid-template-columns: 1fr !important;
    gap: 22px;
    padding: 32px 0;
  }
  .chapter__list { grid-template-columns: 1fr; gap: 6px; }
  .chapter:nth-child(even) .chapter__fig { order: 1; }
  .chapter:nth-child(even) .chapter__txt { order: 2; }
  .chapter__link:hover { padding-left: 0; padding-right: 0; }
  .chapter__h { font-size: clamp(24px, 6.4vw, 32px); letter-spacing: -0.8px; line-height: 1.1; margin-bottom: 12px; }
  .chapter__txt p { font-size: 16px; }

  /* ─── PROCESS ─── */
  .process { padding: 64px 20px; }
  .process__h { font-size: clamp(34px, 9vw, 52px); letter-spacing: -1.6px; }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: 0; padding: 28px 22px; }
  .step__no { font-size: 56px; }
  .step h3 { font-size: 20px; }
  .step p { font-size: 14.5px; }

  /* ─── ARCHIVE ─── */
  .archive { padding: 64px 20px; }
  .archive__h { font-size: clamp(30px, 8vw, 44px); letter-spacing: -1.4px; line-height: 1.04; }
  .archive__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 12px;
  }
  .ar-item {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
    height: 220px;
  }
  .ar-item figcaption { opacity: 1; transform: translateY(0); padding: 24px 14px 12px; }

  /* ─── VOICES ─── */
  .voices { padding: 64px 20px; }
  .voices__h { font-size: clamp(28px, 7vw, 42px); letter-spacing: -1.2px; line-height: 1.1; }
  .voices__row { grid-template-columns: 1fr; gap: 14px; }
  .quote { padding: 24px 22px; gap: 22px; }
  .quote p { font-size: 17px; line-height: 1.5; }
  .voices__google { padding: 12px 16px; font-size: 14px; }

  /* ─── VISIT ─── */
  .visit { display: block; min-height: auto; }
  .visit__sign {
    aspect-ratio: auto;
    height: 50vw;
    min-height: 220px;
    max-height: 340px;
    width: 100%;
  }
  .visit__panels { padding: 56px 20px; gap: 12px; }
  .visit__h { font-size: clamp(28px, 7vw, 42px); letter-spacing: -1.2px; line-height: 1.12; }
  .panel { padding: 18px 50px 18px 18px; }
  .panel--head { padding: 0 0 12px; }
  .panel__strong { font-size: 19px; letter-spacing: -0.3px; }
  .panel__num { font-size: 11.5px; }
  .panel__arrow { right: 16px; top: 18px; }

  /* ─── FOOTER ─── */
  .foot { padding: 48px 20px 24px; }
  .foot__cols { grid-template-columns: 1fr 1fr; gap: 24px 16px; }
  .foot__bottom { flex-direction: column; gap: 10px; }

  /* ─── MOBILE STICKY BAR ─── */
  .mob-bar { display: flex; }
  body { padding-bottom: 70px; }
}

@media (max-width: 460px) {
  .foot__cols { grid-template-columns: 1fr; }
  .hero__title { letter-spacing: -1.4px; }
}

/* ════════════════════════════════════════════════════════════════════
   PREMIUM LAYER — loader · cursor · ticker · establishing band
   (appended; new selectors only — fail-open, no existing rules touched)
═════════════════════════════════════════════════════════════════════ */

/* ─── INTRO LOADER ─── */
html.is-loading, body.is-loading { overflow: hidden; height: 100%; }
.loader {
  position: fixed; inset: 0;
  z-index: 9999;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(0);
  transition: transform 900ms cubic-bezier(0.76, 0, 0.24, 1);
  will-change: transform;
}
.loader.done { transform: translateY(-100%); }
.loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 0 24px;
  width: min(420px, 80vw);
}
.loader__mark {
  width: clamp(150px, 38vw, 220px);
  height: auto;
  color: var(--bone);
  opacity: 0;
  transform: translateY(10px);
  animation: loaderMark 700ms cubic-bezier(0.22,1,0.36,1) 120ms forwards;
}
@keyframes loaderMark { to { opacity: 1; transform: none; } }
.loader__sub {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  color: rgba(242,235,220,0.5);
  opacity: 0;
  animation: loaderMark 700ms cubic-bezier(0.22,1,0.36,1) 320ms forwards;
}
.loader__bar {
  position: relative;
  width: 100%;
  height: 2px;
  background: rgba(242,235,220,0.14);
  overflow: hidden;
  margin-top: 6px;
}
.loader__fill {
  position: absolute; inset: 0 100% 0 0;
  background: var(--red);
  transition: right 200ms linear;
}
.loader__pct {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgba(242,235,220,0.7);
}

/* ─── CUSTOM CURSOR (fine-pointer only) ─── */
.cursor { display: none; }
@media (hover: hover) and (pointer: fine) {
  .cursor {
    display: flex;
    position: fixed;
    top: 0; left: 0;
    width: 12px; height: 12px;
    border: 1.5px solid var(--red);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9000;
    transform: translate(-50%, -50%);
    align-items: center;
    justify-content: center;
    transition: width 260ms cubic-bezier(0.22,1,0.36,1),
                height 260ms cubic-bezier(0.22,1,0.36,1),
                background-color 260ms ease, border-color 260ms ease, opacity 200ms ease;
    opacity: 0;
  }
  .cursor.active { opacity: 1; }
  .cursor.grow {
    width: 76px; height: 76px;
    background: var(--red);
    border-color: var(--red);
  }
  .cursor__txt {
    font-family: var(--mono);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.4px;
    color: var(--bone);
    text-transform: uppercase;
    opacity: 0;
    transform: scale(0.6);
    transition: opacity 200ms ease, transform 200ms ease;
    white-space: nowrap;
  }
  .cursor.grow .cursor__txt { opacity: 1; transform: scale(1); }
}

/* ─── BRAND TICKER / MARQUEE ─── */
.ticker {
  background: var(--ink);
  border-top: 1px solid rgba(242,235,220,0.1);
  border-bottom: 1px solid rgba(242,235,220,0.1);
  overflow: hidden;
  padding: 18px 0;
  position: relative;
  display: flex;
}
.ticker::before, .ticker::after {
  content: '';
  position: absolute; top: 0; bottom: 0;
  width: 12%;
  z-index: 2; pointer-events: none;
}
.ticker::before { left: 0; background: linear-gradient(90deg, var(--ink), transparent); }
.ticker::after { right: 0; background: linear-gradient(270deg, var(--ink), transparent); }
.ticker__track {
  display: flex;
  flex-shrink: 0;
  min-width: 100%;
  width: max-content;
  animation: tickerScroll 42s linear infinite;
  will-change: transform;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__set {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-right: 18px;
  flex-shrink: 0;
}
.ticker__set em {
  font-family: var(--mono);
  font-style: normal;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--red);
  padding: 4px 12px;
  border: 1px solid rgba(212,39,31,0.5);
  border-radius: 100px;
  white-space: nowrap;
}
.ticker__set b {
  font-family: var(--display);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 600;
  letter-spacing: -0.4px;
  font-variation-settings: "opsz" 24;
  color: var(--bone);
  white-space: nowrap;
}
.ticker__set i {
  color: var(--red);
  font-style: normal;
  font-size: 14px;
  opacity: 0.8;
}
@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── HERO LINE MASK-REVEAL ─── */
.hero__title .line { display: block; overflow: hidden; padding-bottom: 0.02em; }
.hero__title .line__in { display: block; will-change: transform; }

/* ─── ESTABLISHING BAND ─── */
.band {
  position: relative;
  height: clamp(420px, 78vh, 720px);
  overflow: hidden;
  background: var(--ink);
  display: flex;
  align-items: flex-end;
}
.band__media { position: absolute; inset: 0; z-index: 0; }
.band__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
.band::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(14,13,10,0.45) 0%, rgba(14,13,10,0.0) 30%, rgba(14,13,10,0.1) 55%, rgba(14,13,10,0.9) 100%);
}
.band__overlay {
  position: relative; z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad) clamp(40px, 6vh, 72px);
  color: var(--bone);
}
.band__eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.4px;
  color: rgba(242,235,220,0.7);
  margin-bottom: 16px;
}
.band__line {
  font-family: var(--display);
  font-size: clamp(28px, 4.6vw, 64px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -1.6px;
  font-variation-settings: "opsz" 40;
  color: var(--bone);
  max-width: 900px;
  margin-bottom: 14px;
}
.band__line em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--red);
  font-variation-settings: "opsz" 144;
}
.band__coords {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.4px;
  color: rgba(242,235,220,0.62);
}

/* ─── SPOTLIGHT HOVER on dark panels & quotes ─── */
.panel, .quote { position: relative; }
@media (hover: hover) and (pointer: fine) {
  a.panel::before, .quote::before {
    content: '';
    position: absolute; inset: 0;
    border-radius: inherit;
    background: radial-gradient(180px circle at var(--mx, 50%) var(--my, 50%), rgba(212,39,31,0.10), transparent 70%);
    opacity: 0;
    transition: opacity 300ms ease;
    pointer-events: none;
  }
  a.panel:hover::before, .quote:hover::before { opacity: 1; }
}

/* ─── TICKER + BAND MOBILE ─── */
@media (max-width: 760px) {
  .ticker { padding: 14px 0; }
  .ticker__track { animation-duration: 30s; }
  .ticker__set { gap: 14px; padding-right: 14px; }
  .ticker__set em { font-size: 10px; letter-spacing: 1.8px; padding: 3px 9px; }
  .band { height: clamp(360px, 66vh, 520px); }
  .band__overlay { padding-bottom: 36px; }
}

/* ─── REDUCED MOTION for premium layer ─── */
@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; }
  .loader__mark, .loader__sub { animation: none; opacity: 1; transform: none; }
  .loader { transition: none; }
}
