/* ============================================================
   CK AUTOMOTIVE — TAMPA, FL
   Design system: charcoal / oxide / brass — "the livery stripe"
   Type: Anton (display) · Barlow (text) · IBM Plex Mono (spec)
   ============================================================ */

/* ---------- Fonts (self-hosted) ---------- */
@font-face {
  font-family: 'Anton';
  src: url('assets/fonts/Anton-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('assets/fonts/Barlow-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('assets/fonts/Barlow-400i.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('assets/fonts/Barlow-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('assets/fonts/Barlow-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'IBM Plex Mono';
  src: url('assets/fonts/IBMPlexMono-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'IBM Plex Mono';
  src: url('assets/fonts/IBMPlexMono-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --ink: #131312;
  --carbon: #1a1918;
  --steel: #2d2d2d;
  --smoke: #f2efe9;
  --bone: #e6e2d8;
  --oxide: #71322B;
  --oxide-deep: #5c2823;
  --brass: #c9bc53;
  --rover: #152019;
  --uber: #0a0a0a;

  --line-dark: rgba(242, 239, 233, 0.16);
  --line-light: rgba(19, 19, 18, 0.18);
  --txt-dim-dark: rgba(242, 239, 233, 0.72);
  --txt-dim-light: rgba(19, 19, 18, 0.72);

  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-text: 'Barlow', 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'IBM Plex Mono', 'SF Mono', Menlo, monospace;

  --container: 1400px;
  --gutter: clamp(1.25rem, 4vw, 3.5rem);
  --sec-pad: clamp(5rem, 11vw, 9.5rem);
  --header-h: 5.75rem;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --focus: var(--brass);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  background: var(--ink);
  color: var(--smoke);
  font-family: var(--font-text);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img, picture, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; }
h1, h2, h3 { line-height: 1.05; overflow-wrap: break-word; }
address { font-style: normal; }
ul, ol { padding: 0; }

::selection { background: var(--brass); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

html.menu-locked, html.menu-locked body { overflow: hidden; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.skip-link {
  position: fixed;
  top: 0.75rem; left: 0.75rem;
  z-index: 200;
  padding: 0.7em 1.2em;
  background: var(--brass);
  color: var(--ink);
  font: 600 0.9rem var(--font-text);
  text-decoration: none;
  transform: translateY(-300%);
}
.skip-link:focus { transform: none; }

/* ---------- Shared atoms ---------- */
.container {
  width: min(100% - 2 * var(--gutter), var(--container));
  margin-inline: auto;
}

.mono {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  line-height: 1.7;
}

/* The livery stripe — brass over oxide, the mark of the building itself */
.stripe {
  height: 8px;
  background:
    linear-gradient(to bottom, var(--brass) 0 3px, transparent 3px),
    var(--oxide);
}

/* Section label: index number + rule line */
.seclabel {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--txt-dim-light);
}
.seclabel span {
  border: 1px solid currentColor;
  padding: 0.1em 0.55em 0.05em;
  font-weight: 500;
}
.seclabel::after {
  content: "";
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: 0.35;
}
.seclabel--light { color: rgba(242, 239, 233, 0.6); }

/* Image frame with alignment ticks */
.frame {
  position: relative;
  margin: 0;
}
.frame > picture, .frame > a > picture { overflow: hidden; display: block; }
.frame img {
  width: 100%;
  height: auto;
  filter: saturate(0.94) contrast(1.03);
}
.frame::before, .frame::after {
  content: "";
  position: absolute;
  width: 14px; height: 14px;
  border: 1px solid currentColor;
  opacity: 0.55;
  pointer-events: none;
}
.frame::before { top: -7px; left: -7px; border-width: 1px 0 0 1px; }
.frame::after { bottom: -7px; right: -7px; border-width: 0 1px 1px 0; }
.frame figcaption {
  margin-top: 0.7rem;
  opacity: 0.55;
  font-size: 0.7rem;
}

/* Parallax frames crop their travel */
[data-parallax] > picture, [data-parallax] > a > picture { overflow: hidden; }
[data-parallax] img {
  transform: translateY(var(--py, 0)) scale(1.1);
  will-change: transform;
}

/* Buttons — sharp, mechanical, no pills */
.btn {
  display: inline-block;
  position: relative;
  isolation: isolate;
  padding: 0.95em 1.9em;
  border: 1px solid transparent;
  font: 600 0.85rem var(--font-text);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transition: color 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}
.btn:hover::before, .btn:focus-visible::before { transform: scaleX(1); }

.btn--brass { background: var(--brass); color: var(--ink); }
.btn--brass::before { background: var(--ink); }
.btn--brass:hover, .btn--brass:focus-visible { color: var(--brass); border-color: var(--brass); }

.btn--ghost { border-color: var(--line-dark); color: var(--smoke); background: transparent; }
.btn--ghost::before { background: var(--smoke); }
.btn--ghost:hover, .btn--ghost:focus-visible { color: var(--ink); border-color: var(--smoke); }

.btn--smoke { background: var(--smoke); color: var(--ink); }
.btn--smoke::before { background: var(--brass); }
.btn--smoke:hover, .btn--smoke:focus-visible { color: var(--ink); }

/* Ruler texture — measurement ticks */
.ruler {
  height: 14px;
  margin-top: 1.25rem;
  background: repeating-linear-gradient(
    to right,
    rgba(242, 239, 233, 0.4) 0 1px,
    transparent 1px 9px
  );
  -webkit-mask-image: linear-gradient(to right, #000 60%, transparent);
          mask-image: linear-gradient(to right, #000 60%, transparent);
}

/* ---------- Scroll progress ---------- */
.progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 130;
  pointer-events: none;
}
.progress span {
  display: block;
  height: 100%;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 120;
  background: transparent;
  transition: background 0.35s ease;
}
.header__inner {
  width: min(100% - 2 * var(--gutter), var(--container));
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  padding-block: 1.15rem;
  transition: padding 0.35s ease;
}
.header.is-scrolled { background: rgba(19, 19, 18, 0.96); }
.header.is-scrolled .header__inner { padding-block: 0.6rem; }

.stripe--header {
  height: 5px;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.header.is-scrolled .stripe--header { opacity: 1; }

.header__brand img {
  height: 44px;
  width: auto;
  transition: height 0.35s ease;
}
.header.is-scrolled .header__brand img { height: 38px; }

.header__nav { margin-left: auto; }
.header__nav ul {
  display: flex;
  gap: clamp(1.1rem, 2vw, 1.9rem);
  list-style: none;
}
.header__nav a {
  position: relative;
  color: rgba(242, 239, 233, 0.85);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  padding-block: 0.35rem;
  transition: color 0.25s ease;
}
.header__nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.header__nav a:hover, .header__nav a.is-active { color: var(--smoke); }
.header__nav a:hover::after, .header__nav a.is-active::after { transform: scaleX(1); }

.header__actions {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 2vw, 1.5rem);
}
.header__nav + .header__actions { margin-left: 0; }
.header__tel {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: rgba(242, 239, 233, 0.85);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.25s ease;
}
.header__tel:hover { color: var(--brass); }
.header__cta { padding: 0.7em 1.25em; font-size: 0.78rem; white-space: nowrap; }

/* Burger */
.burger {
  display: none;
  position: relative;
  width: 44px; height: 44px;
  background: none;
  border: 1px solid var(--line-dark);
  cursor: pointer;
  flex-shrink: 0;
}
.burger__line {
  position: absolute;
  left: 11px; right: 11px;
  height: 2px;
  background: var(--smoke);
  transition: transform 0.35s var(--ease-out), top 0.35s var(--ease-out);
}
.burger__line:nth-child(1) { top: 17px; }
.burger__line:nth-child(2) { top: 25px; }
.burger.is-open .burger__line:nth-child(1) { top: 21px; transform: rotate(45deg); }
.burger.is-open .burger__line:nth-child(2) { top: 21px; transform: rotate(-45deg); }

/* ---------- Mobile menu ---------- */
.menu {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: var(--ink);
  display: flex;
}
.menu[hidden] { display: none; }
.menu {
  flex-direction: column;
  justify-content: space-between;
  padding: calc(var(--header-h) + 1.5rem) var(--gutter) 0;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.menu.is-open { opacity: 1; }
.menu__nav ol { list-style: none; }
.menu__nav li {
  border-bottom: 1px solid var(--line-dark);
  transform: translateY(24px);
  opacity: 0;
  transition: transform 0.5s var(--ease-out), opacity 0.5s ease;
}
.menu.is-open .menu__nav li { transform: none; opacity: 1; }
.menu.is-open .menu__nav li:nth-child(2) { transition-delay: 0.05s; }
.menu.is-open .menu__nav li:nth-child(3) { transition-delay: 0.1s; }
.menu.is-open .menu__nav li:nth-child(4) { transition-delay: 0.15s; }
.menu.is-open .menu__nav li:nth-child(5) { transition-delay: 0.2s; }
.menu.is-open .menu__nav li:nth-child(6) { transition-delay: 0.25s; }
.menu__nav a {
  display: flex;
  align-items: baseline;
  gap: 1.1rem;
  padding: 0.9rem 0.25rem;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 7.5vh, 3.1rem);
  text-transform: uppercase;
  letter-spacing: 0.015em;
  color: var(--smoke);
  text-decoration: none;
}
.menu__nav a:active, .menu__nav a:hover { color: var(--brass); }
.menu__nav a span {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--brass);
  letter-spacing: 0.1em;
}
.menu__foot { padding-block: 1.75rem; }
.menu__tel {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--brass);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.menu__foot .mono { margin-top: 0.9rem; color: var(--txt-dim-dark); }
.menu > .stripe { margin-inline: calc(-1 * var(--gutter)); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(1.5rem, 4vh, 3.5rem));
  padding-bottom: 0;
  background:
    repeating-linear-gradient(90deg, rgba(242, 239, 233, 0.012) 0 1px, transparent 1px 90px),
    radial-gradient(120% 60% at 80% 0%, rgba(113, 50, 43, 0.16), transparent 60%),
    var(--ink);
}
.hero__inner {
  position: relative;
  width: min(100% - 2 * var(--gutter), var(--container));
  margin-inline: auto;
}

.hero__topline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--line-dark);
  color: var(--txt-dim-dark);
}

.hero__title {
  margin-top: clamp(1.5rem, 4vh, 3rem);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3.1rem, 11.5vw, 10.8rem);
  line-height: 0.95;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}
.hero__line {
  display: block;
  overflow: hidden;
  padding-block: 0.04em;
}
.hero__line > span {
  display: block;
  transform: translateY(112%);
}
html.js.is-loaded .hero__line > span,
html.no-anim .hero__line > span { transform: none; }
html.js .hero__line > span {
  transition: transform 0.9s var(--ease-out);
}
html.js .hero__line:nth-child(2) > span { transition-delay: 0.12s; }
.hero__title em {
  font-style: normal;
  color: var(--brass);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
  margin-top: clamp(1.75rem, 4vh, 3.25rem);
}
.hero__copy p {
  max-width: 46ch;
  color: var(--txt-dim-dark);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.75rem;
}
.hero__facts {
  list-style: none;
  color: var(--txt-dim-dark);
}
.hero__facts li {
  display: flex;
  gap: 1.1rem;
  padding-block: 0.55rem;
  border-top: 1px solid var(--line-dark);
  white-space: nowrap;
}
.hero__facts li span { color: var(--brass); }

.hero__media {
  position: relative;
  margin-top: clamp(2.25rem, 6vh, 4.5rem);
  padding-bottom: clamp(3rem, 7vh, 5rem);
  color: var(--smoke);
}
.hero__media-frame {
  clip-path: inset(0 0 100% 0);
}
html.js.is-loaded .hero__media-frame,
html.no-anim .hero__media-frame,
html:not(.js) .hero__media-frame { clip-path: inset(0); }
html.js .hero__media-frame {
  transition: clip-path 1.1s 0.35s var(--ease-out);
}
.hero__media figcaption {
  margin-top: 0.7rem;
  color: var(--txt-dim-dark);
  opacity: 1;
  font-size: 0.7rem;
}
.hero__coords {
  position: absolute;
  top: 0;
  right: calc(-1 * clamp(1rem, 2.5vw, 2.5rem));
  writing-mode: vertical-rl;
  color: rgba(242, 239, 233, 0.4);
  font-size: 0.68rem;
}

.hero__scrollcue {
  position: absolute;
  left: 1.1rem;
  bottom: calc(clamp(3rem, 7vh, 5rem) + 4.4rem);
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--smoke);
  text-decoration: none;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7);
}
.hero__scrollcue span {
  width: 44px;
  height: 1px;
  background: var(--brass);
  transform-origin: left;
  animation: cue 2.4s var(--ease-out) infinite;
}
@keyframes cue {
  0% { transform: scaleX(0); }
  45% { transform: scaleX(1); }
  100% { transform: scaleX(0); transform-origin: right; }
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker {
  overflow: hidden;
  background: var(--oxide);
  border-top: 3px solid var(--brass);
  border-bottom: 1px solid rgba(0, 0, 0, 0.35);
}
.ticker__track {
  display: flex;
  width: max-content;
  animation: ticker 42s linear infinite;
}
.ticker__group {
  display: flex;
  white-space: nowrap;
  padding-block: 0.85rem;
  color: var(--smoke);
  font-size: 0.8rem;
}
.ticker__group span { display: inline-block; }
.ticker__group span::after {
  content: "+";
  display: inline-block;
  margin-inline: 1.6rem;
  color: var(--brass);
}
@keyframes ticker {
  to { transform: translateX(-50%); }
}

/* ============================================================
   MANIFESTO
   ============================================================ */
.manifesto {
  --focus: var(--oxide);
  background: var(--smoke);
  color: var(--ink);
  padding-block: var(--sec-pad);
}
.manifesto .seclabel { color: var(--txt-dim-light); }

.manifesto__statement {
  max-width: 34ch;
  font-family: var(--font-text);
  font-weight: 500;
  font-size: clamp(1.55rem, 3.6vw, 3.1rem);
  line-height: 1.28;
  letter-spacing: -0.01em;
}
.manifesto__statement .hl {
  font-weight: 600;
  background: linear-gradient(var(--brass), var(--brass)) no-repeat left 88% / 0% 0.16em;
  transition: background-size 0.7s var(--ease-out);
}
.manifesto__statement.in-view .hl { background-size: 100% 0.16em; }
.manifesto__statement.in-view .hl:nth-of-type(1) { transition-delay: 0.15s; }
.manifesto__statement.in-view .hl:nth-of-type(2) { transition-delay: 0.45s; }
.manifesto__statement.in-view .hl:nth-of-type(3) { transition-delay: 0.75s; }

.manifesto__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 6vw, 6rem);
  margin-top: clamp(3rem, 7vw, 5.5rem);
  align-items: start;
}
.manifesto__copy p {
  max-width: 52ch;
  color: var(--txt-dim-light);
}
.manifesto__copy p + p { margin-top: 1.1rem; font-weight: 500; color: var(--ink); }

.manifesto__way {
  border: 1px solid var(--line-light);
  padding: 1.6rem 1.75rem 1.75rem;
}
.manifesto__way-title {
  color: var(--oxide);
  font-weight: 500;
  margin-bottom: 1rem;
}
.manifesto__way ol {
  list-style: none;
  color: var(--ink);
}
.manifesto__way li {
  display: flex;
  gap: 1.1rem;
  padding-block: 0.65rem;
  border-top: 1px solid var(--line-light);
}
.manifesto__way li span { color: var(--oxide); }

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  background: var(--ink);
  padding-block: var(--sec-pad);
}

.services__head {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
  margin-bottom: clamp(3rem, 7vw, 5.5rem);
}
.services__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.7rem, 6.5vw, 6rem);
  text-transform: uppercase;
  line-height: 0.98;
}
.services__intro {
  max-width: 40ch;
  color: var(--txt-dim-dark);
}

.services__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.7fr);
  gap: clamp(2rem, 5vw, 5.5rem);
  align-items: start;
}
.services__readout-sticky {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
}
.services__readout-num {
  font-family: var(--font-display);
  font-size: clamp(7rem, 12vw, 12rem);
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 2px var(--brass);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
@supports not (-webkit-text-stroke: 2px #000) {
  .services__readout-num { color: var(--brass); }
}
.services__readout-num.is-swap { opacity: 0; transform: translateY(10px); }
.services__readout-name {
  margin-top: 1rem;
  color: var(--txt-dim-dark);
  transition: opacity 0.25s ease;
}
.services__readout-name.is-swap { opacity: 0; }

.services__list { border-bottom: 1px solid var(--line-dark); }

.svc { border-top: 1px solid var(--line-dark); }
.svc__head { line-height: 1; }
.svc__toggle {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: baseline;
  gap: clamp(1rem, 2.5vw, 1.75rem);
  width: 100%;
  padding: clamp(1.15rem, 2.5vw, 1.6rem) 0.25rem;
  background: none;
  border: 0;
  color: inherit;
  text-align: left;
  cursor: pointer;
}
.svc__num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  color: var(--txt-dim-dark);
  transition: color 0.3s ease;
}
.svc__name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.35rem, 3vw, 2.4rem);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  transition: color 0.3s ease, transform 0.35s var(--ease-out);
}
.svc__toggle:hover .svc__name { color: var(--brass); transform: translateX(8px); }
.svc.is-open .svc__num { color: var(--brass); }
.svc.is-open .svc__name { color: var(--brass); }
.svc__tag {
  color: rgba(242, 239, 233, 0.45);
  white-space: nowrap;
}
.svc__cross {
  position: relative;
  width: 15px; height: 15px;
  align-self: center;
  transition: transform 0.35s var(--ease-out);
}
.svc__cross::before, .svc__cross::after {
  content: "";
  position: absolute;
  background: var(--smoke);
}
.svc__cross::before { left: 0; right: 0; top: 7px; height: 1.5px; }
.svc__cross::after { top: 0; bottom: 0; left: 7px; width: 1.5px; }
.svc.is-open .svc__cross { transform: rotate(45deg); }

.svc__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s var(--ease-out);
}
.svc.is-open .svc__panel { grid-template-rows: 1fr; }
.svc__body { overflow: hidden; }
.svc__body p {
  max-width: 54ch;
  color: var(--txt-dim-dark);
  margin-left: clamp(0rem, 6vw, 4.1rem);
}
.svc__note {
  margin-top: 0.8rem;
  padding-bottom: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--brass) !important;
}
.svc__note a { color: inherit; text-underline-offset: 3px; }

/* Editorial image strip */
.services__strip {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.05fr) minmax(0, 0.7fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: end;
  margin-top: clamp(4rem, 9vw, 7.5rem);
}
.services__strip .frame { color: var(--smoke); }
.services__strip-note { padding-bottom: 1.5rem; }
.services__strip-note .mono { color: var(--brass); margin-bottom: 0.8rem; }
.services__strip-note p:last-child { color: var(--txt-dim-dark); max-width: 26ch; }

/* ============================================================
   LAND ROVER
   ============================================================ */
.rover {
  background:
    radial-gradient(90% 70% at 15% 100%, rgba(201, 188, 83, 0.05), transparent 60%),
    var(--rover);
  padding-block: var(--sec-pad);
}
.rover__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.rover__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3rem, 7vw, 6.5rem);
  text-transform: uppercase;
  line-height: 0.98;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}
.rover__text p { max-width: 50ch; color: var(--txt-dim-dark); }
.rover__tag {
  border: 1px solid rgba(242, 239, 233, 0.28);
  padding: 1.2rem 1.4rem;
  margin-block: 1.9rem;
  position: relative;
}
.rover__tag::before {
  content: "";
  position: absolute;
  top: -1px; left: 1.4rem;
  width: 3rem; height: 3px;
  background: var(--brass);
}
.rover__tag-title {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.rover__tag p:last-child { font-size: 0.95rem; }
.rover__kicker {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.3vw, 1.9rem);
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--smoke) !important;
  letter-spacing: 0.02em;
}
.rover__allmakes { margin-top: 1.6rem; color: rgba(242, 239, 233, 0.55) !important; }
.rover__allmakes a { color: inherit; text-underline-offset: 3px; }
.rover__allmakes a:hover { color: var(--brass); }

.rover__media { color: var(--smoke); }
.rover__inset {
  width: 50%;
  margin-top: -20%;
  margin-left: auto;
  margin-right: 0;
  padding: 0.55rem 0.55rem 0;
  background: var(--rover);
  position: relative;
  z-index: 2;
}
.rover__inset figcaption { padding: 0 0.2rem 0.55rem; }

/* ============================================================
   UBER
   ============================================================ */
.uber {
  position: relative;
  background: var(--uber);
  padding-block: var(--sec-pad);
}
.uber::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 7px;
  background: repeating-linear-gradient(
    -45deg,
    var(--brass) 0 14px,
    transparent 14px 30px
  );
  opacity: 0.85;
}
.uber__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.uber__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 6.5vw, 5.6rem);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 1.6rem;
}
.uber__title em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--smoke);
}
@supports not (-webkit-text-stroke: 1.5px #000) {
  .uber__title em { color: var(--brass); }
}
.uber__text p { max-width: 54ch; color: var(--txt-dim-dark); }
.uber__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}
.uber__check {
  list-style: none;
  color: var(--smoke);
}
.uber__check li {
  display: flex;
  gap: 0.9rem;
  padding-block: 0.85rem;
  border-top: 1px solid var(--line-dark);
}
.uber__check li:last-child { border-bottom: 1px solid var(--line-dark); }
.uber__check li::before {
  content: "✓";
  color: var(--brass);
  font-weight: 500;
}

/* ============================================================
   REVIEW
   ============================================================ */
.review {
  --focus: var(--oxide);
  background: var(--smoke);
  color: var(--ink);
  padding-block: var(--sec-pad);
}
.review__quote {
  margin-left: auto;
  max-width: 62ch;
}
.review__stars {
  display: flex;
  gap: 0.45rem;
  margin-bottom: 1.75rem;
}
.review__stars svg {
  width: 21px; height: 21px;
  fill: var(--oxide);
}
.review__quote blockquote p {
  font-size: clamp(1.5rem, 3.2vw, 2.7rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.3;
  letter-spacing: -0.005em;
}
.review__quote figcaption {
  margin-top: 1.75rem;
  color: var(--txt-dim-light);
}
.review__note {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  padding-top: 1.1rem;
  border-top: 1px solid var(--line-light);
  color: var(--txt-dim-light);
  font-weight: 500;
  max-width: 34ch;
}

/* ============================================================
   THE CK STANDARD
   ============================================================ */
.standard {
  background: var(--carbon);
  padding-block: var(--sec-pad);
}
.standard__head {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.standard__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.7rem, 6.5vw, 6rem);
  text-transform: uppercase;
  line-height: 0.98;
}
.standard__intro { max-width: 38ch; color: var(--txt-dim-dark); }

.standard__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(2rem, 6vw, 6rem);
}
.standard__list li {
  display: flex;
  gap: 1.4rem;
  padding-block: 1.6rem;
  border-top: 1px solid var(--line-dark);
}
.standard__index {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem; height: 2.4rem;
  border: 1px solid var(--brass);
  color: var(--brass);
  font-weight: 500;
}
.standard__list h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.standard__list p { color: var(--txt-dim-dark); font-size: 0.98rem; max-width: 44ch; }

/* ============================================================
   LOCATION
   ============================================================ */
.location {
  --focus: var(--oxide);
  background: var(--smoke);
  color: var(--ink);
  padding-block: var(--sec-pad);
}
.location .seclabel { color: var(--txt-dim-light); }
.location__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.location__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.8rem, 6.5vw, 6rem);
  text-transform: uppercase;
  line-height: 0.98;
  margin-bottom: 1.5rem;
}
.location__info > p { max-width: 46ch; color: var(--txt-dim-light); }

.location__data {
  margin-block: 2.25rem;
  display: grid;
  gap: 1.4rem;
}
.location__data dt {
  color: var(--oxide);
  font-weight: 500;
  margin-bottom: 0.35rem;
}
.location__data dd {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 500;
}
.location__data dd a { color: inherit; text-decoration-color: var(--oxide); text-underline-offset: 4px; }
.location__data dd a:hover { color: var(--oxide); }
.location__hours-row {
  display: flex;
  justify-content: space-between;
  max-width: 21rem;
  padding-block: 0.3rem;
  border-bottom: 1px dashed rgba(19, 19, 18, 0.3);
}
.location__hours-row--closed { color: var(--txt-dim-light); }

.location__map { color: var(--ink); }
.location__map a { display: block; position: relative; }
.location__map img { filter: grayscale(1) contrast(1.04); transition: filter 0.4s ease; }
.location__map a:hover img { filter: grayscale(0.35) contrast(1.02); }
.location__pin {
  position: absolute;
  left: 45.5%; top: 53%;
  width: 14px; height: 14px;
  background: var(--oxide);
  border: 2px solid var(--smoke);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(113, 50, 43, 0.45);
  animation: pin 2.6s ease-out infinite;
}
@keyframes pin {
  0% { box-shadow: 0 0 0 0 rgba(113, 50, 43, 0.45); }
  70% { box-shadow: 0 0 0 18px rgba(113, 50, 43, 0); }
  100% { box-shadow: 0 0 0 0 rgba(113, 50, 43, 0); }
}

/* ============================================================
   SCHEDULE / FINAL CTA
   ============================================================ */
.schedule {
  background:
    radial-gradient(100% 80% at 100% 0%, rgba(0, 0, 0, 0.22), transparent 55%),
    var(--oxide);
  color: var(--smoke);
  padding-block: var(--sec-pad);
}
.schedule .seclabel { color: rgba(242, 239, 233, 0.65); }
.schedule__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3.4rem, 10vw, 9.5rem);
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.schedule__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: start;
}
.schedule__call-label, .schedule__form-label {
  color: rgba(242, 239, 233, 0.65);
  margin-bottom: 1.25rem;
}
.schedule__tel {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  line-height: 1;
  color: var(--smoke);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}
.schedule__tel:hover { color: var(--brass); }
.schedule__call-note {
  margin-top: 1.5rem;
  max-width: 34ch;
  color: rgba(242, 239, 233, 0.85);
}
.schedule__call-note a { color: var(--smoke); text-underline-offset: 3px; }

.schedule__form .field { margin-bottom: 1.4rem; }
.schedule__form label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(242, 239, 233, 0.8);
  margin-bottom: 0.3rem;
}
.schedule__form label .mono { color: rgba(242, 239, 233, 0.5); font-size: inherit; }
.schedule__form input,
.schedule__form select,
.schedule__form textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(242, 239, 233, 0.45);
  color: var(--smoke);
  padding: 0.55rem 0.1rem;
  border-radius: 0;
  transition: border-color 0.3s ease;
}
.schedule__form input:focus-visible,
.schedule__form select:focus-visible,
.schedule__form textarea:focus-visible {
  outline: none;
  border-bottom: 2px solid var(--brass);
  padding-bottom: calc(0.55rem - 1px);
}
.schedule__form ::placeholder { color: rgba(242, 239, 233, 0.45); opacity: 1; }
.schedule__form textarea { resize: vertical; min-height: 4.5rem; }
.schedule__form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23f2efe9' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.2rem center;
  padding-right: 1.8rem;
}
.schedule__form select option { color: var(--ink); background: var(--smoke); }
.schedule__form input:-webkit-autofill,
.schedule__form textarea:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px var(--oxide) inset;
  -webkit-text-fill-color: var(--smoke);
  transition: background-color 9999s;
}

.field-error {
  color: var(--smoke);
  border-left: 3px solid var(--brass);
  padding: 0.4rem 0 0.4rem 1rem;
  margin-bottom: 1.2rem;
}
.schedule__submit { margin-top: 0.4rem; }
.schedule__form-note {
  margin-top: 1.4rem;
  padding: 1.1rem 1.25rem;
  background: rgba(0, 0, 0, 0.22);
  color: rgba(242, 239, 233, 0.92);
  text-transform: none;
  letter-spacing: 0.04em;
}
.schedule__form-note a { color: var(--smoke); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); }
.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.55fr) minmax(0, 0.8fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  padding-block: clamp(3rem, 6vw, 4.5rem) clamp(2rem, 4vw, 3rem);
}
.footer__brand img { height: 56px; width: auto; margin-bottom: 1.25rem; }
.footer__brand p {
  max-width: 40ch;
  color: var(--txt-dim-dark);
  font-size: 0.95rem;
}
.footer__napa { margin-top: 1rem; color: rgba(242, 239, 233, 0.45) !important; }
.footer__heading {
  color: var(--brass);
  font-weight: 500;
  margin-bottom: 1rem;
}
.footer__nav ul, .footer__links {
  list-style: none;
  display: grid;
  gap: 0.45rem;
}
.footer__nav a, .footer__links a, .footer__contact address a {
  color: rgba(242, 239, 233, 0.82);
  text-decoration: none;
  transition: color 0.25s ease;
}
.footer__nav a:hover, .footer__links a:hover, .footer__contact address a:hover { color: var(--brass); }
.footer__contact address p + p { margin-top: 0.6rem; }
.footer__contact address .mono { color: var(--txt-dim-dark); }
.footer__links { margin-top: 1.1rem; }
.footer__links a { font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.07em; text-transform: uppercase; }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-block: 1.4rem;
  border-top: 1px solid var(--line-dark);
  color: rgba(242, 239, 233, 0.45);
}

/* ============================================================
   SCROLL REVEALS
   ============================================================ */
html.js .reveal-io {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s ease, transform 0.8s var(--ease-out);
}
html.js .reveal-io.in-view { opacity: 1; transform: none; }
html.js .standard__list li:nth-child(even).reveal-io { transition-delay: 0.08s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .header__nav { display: none; }
  .header__actions { margin-left: auto; }
  .burger { display: block; }

  .services__layout { grid-template-columns: minmax(0, 1fr); }
  .services__readout { display: none; }
}

@media (max-width: 900px) {
  :root { --header-h: 4.9rem; }

  .hero__grid { grid-template-columns: minmax(0, 1fr); }
  .hero__facts { max-width: 26rem; }
  .hero__coords { display: none; }

  .manifesto__grid,
  .rover__grid,
  .uber__grid,
  .location__grid,
  .schedule__grid { grid-template-columns: minmax(0, 1fr); }

  .services__head, .standard__head { grid-template-columns: minmax(0, 1fr); align-items: start; }

  .services__strip {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
  .services__strip-note { grid-column: 1 / -1; padding-bottom: 0; }

  .standard__list { grid-template-columns: minmax(0, 1fr); }

  .rover__media { order: -1; }
  .rover__inset { margin-top: -14%; }

  .footer__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  body { font-size: 1rem; }

  .header__cta { display: none; }

  .hero__topline-right { display: none; }
  .hero__scrollcue { display: none; }
  .hero__facts li { white-space: normal; }

  .svc__toggle { grid-template-columns: auto minmax(0, 1fr) auto; }
  .svc__tag { display: none; }
  .svc__body p { margin-left: 0; }

  .services__strip { grid-template-columns: minmax(0, 1fr); align-items: start; }

  .rover__inset { width: 64%; }

  .schedule__tel { font-size: clamp(2.4rem, 11vw, 3.2rem); }

  .footer__grid { grid-template-columns: minmax(0, 1fr); }
  .footer__bottom { justify-content: center; text-align: center; }
}

@media (max-width: 420px) {
  :root { --gutter: 1.1rem; }
  .header__tel { display: none; }
  .hero__title { font-size: clamp(2.7rem, 14.5vw, 3.4rem); }
  .menu__nav a { font-size: clamp(1.7rem, 6.5vh, 2.4rem); }
}

@media (min-width: 1800px) {
  :root { --container: 1560px; }
  body { font-size: 1.125rem; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
  }
  .ticker__track { animation: none; }
  .hero__scrollcue span { animation: none; transform: none; }
  .location__pin { animation: none; }
  [data-parallax] img { transform: none; }
  html.js .reveal-io { opacity: 1; transform: none; }
  .hero__line > span { transform: none !important; }
  .hero__media-frame { clip-path: inset(0) !important; }
}
