/* ============================================================
   LUXE RIDE CALIFORNIA — Design System (static build)
   Direction: electric luxury / quiet power. Editorial-tech.
   Ported 1:1 from the original React design tokens.
   ============================================================ */

/* ---- Self-hosted fonts (latin) — no render-blocking third-party request ---- */
@font-face { font-family: "Cormorant Garamond"; font-style: normal; font-weight: 400; font-display: swap; src: url("../fonts/cormorant-400.woff2") format("woff2"); }
@font-face { font-family: "Cormorant Garamond"; font-style: normal; font-weight: 500; font-display: swap; src: url("../fonts/cormorant-500.woff2") format("woff2"); }
@font-face { font-family: "Cormorant Garamond"; font-style: normal; font-weight: 600; font-display: swap; src: url("../fonts/cormorant-600.woff2") format("woff2"); }
@font-face { font-family: "Cormorant Garamond"; font-style: normal; font-weight: 700; font-display: swap; src: url("../fonts/cormorant-700.woff2") format("woff2"); }
@font-face { font-family: "Cormorant Garamond"; font-style: italic; font-weight: 400; font-display: swap; src: url("../fonts/cormorant-400i.woff2") format("woff2"); }
@font-face { font-family: "Cormorant Garamond"; font-style: italic; font-weight: 500; font-display: swap; src: url("../fonts/cormorant-500i.woff2") format("woff2"); }
@font-face { font-family: "Cormorant Garamond"; font-style: italic; font-weight: 600; font-display: swap; src: url("../fonts/cormorant-600i.woff2") format("woff2"); }
@font-face { font-family: "Hanken Grotesk"; font-style: normal; font-weight: 300; font-display: swap; src: url("../fonts/hanken-300.woff2") format("woff2"); }
@font-face { font-family: "Hanken Grotesk"; font-style: normal; font-weight: 400; font-display: swap; src: url("../fonts/hanken-400.woff2") format("woff2"); }
@font-face { font-family: "Hanken Grotesk"; font-style: normal; font-weight: 500; font-display: swap; src: url("../fonts/hanken-500.woff2") format("woff2"); }
@font-face { font-family: "Hanken Grotesk"; font-style: normal; font-weight: 600; font-display: swap; src: url("../fonts/hanken-600.woff2") format("woff2"); }
@font-face { font-family: "Hanken Grotesk"; font-style: normal; font-weight: 700; font-display: swap; src: url("../fonts/hanken-700.woff2") format("woff2"); }
@font-face { font-family: "Space Mono"; font-style: normal; font-weight: 400; font-display: swap; src: url("../fonts/spacemono-400.woff2") format("woff2"); }
@font-face { font-family: "Space Mono"; font-style: normal; font-weight: 700; font-display: swap; src: url("../fonts/spacemono-700.woff2") format("woff2"); }

/* ---- Metric-matched fallbacks (kill font-swap CLS on the hero H1 etc.) ----
   size-adjust derived from real x-heights: Cormorant 0.386 / Georgia ~0.481;
   Hanken 0.493 / Arial ~0.519. ascent/descent = webfont typo metrics / size-adjust. */
@font-face { font-family: "Cormorant Fallback"; src: local("Georgia"), local("Times New Roman"); size-adjust: 80%; ascent-override: 115.5%; descent-override: 35.9%; line-gap-override: 0%; }
@font-face { font-family: "Hanken Fallback"; src: local("Arial"), local("Helvetica"); size-adjust: 95%; ascent-override: 105.3%; descent-override: 31.9%; line-gap-override: 0%; }

:root {
  /* Color */
  --obsidian: #0a0b0e;
  --obsidian-2: #0d0f13;
  --graphite: #15171c;
  --graphite-2: #1b1e25;
  --hairline: #2a3038;
  --hairline-soft: #1f242b;
  --platinum: #e8e6e1;
  --platinum-dim: #c4c2bd;
  --mist: #8a8f99;
  --mist-dim: #5e636d;
  --champagne: #c2a878;
  --champagne-bright: #d9bd8a;
  --champagne-glow: rgba(194, 168, 120, 0.14);

  /* Type */
  --display: "Cormorant Garamond", "Cormorant Fallback", Georgia, serif;
  --body: "Hanken Grotesk", "Hanken Fallback", system-ui, sans-serif;
  --mono: "Space Mono", ui-monospace, monospace;

  /* Scale */
  --step--1: clamp(0.78rem, 0.74rem + 0.2vw, 0.86rem);
  --step-0: clamp(1rem, 0.96rem + 0.2vw, 1.1rem);
  --step-1: clamp(1.3rem, 1.2rem + 0.5vw, 1.6rem);
  --step-2: clamp(1.8rem, 1.5rem + 1.4vw, 2.6rem);
  --step-3: clamp(2.6rem, 2rem + 3vw, 4.2rem);
  --step-4: clamp(3.4rem, 2.2rem + 6vw, 7rem);
  --step-5: clamp(3.2rem, 1rem + 6.6vw, 6.6rem);

  /* Space */
  --gutter: clamp(1.25rem, 0.8rem + 2.2vw, 3rem);
  --section-y: clamp(5rem, 3rem + 9vw, 20px);
  --maxw: 1340px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-slow: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  background: var(--obsidian);
  color: var(--platinum);
  font-family: var(--body);
  font-size: var(--step-0);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

::selection {
  background: var(--champagne);
  color: var(--obsidian);
}

/* ---------- Layout primitives ---------- */
.shell {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: var(--section-y);
  position: relative;
}

.section--bordered {
  border-top: 1px solid var(--hairline-soft);
}

/* Anchored deep-link targets clear the fixed navbar */
[id] {
  scroll-margin-top: 104px;
}

/* ---------- Accessibility helpers ---------- */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translate(-50%, -120%);
  z-index: 400;
  background: var(--champagne);
  color: var(--obsidian);
  font-family: var(--mono);
  font-size: var(--step--1);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 4px 4px;
  transition: transform 0.3s var(--ease);
}
.skip-link:focus {
  transform: translate(-50%, 0);
  outline: none;
}

/* ---------- Type roles ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: var(--step--1);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--champagne);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before {
  content: "";
  width: 1.6rem;
  height: 1px;
  background: var(--champagne);
  opacity: 0.6;
}

.display {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.005em;
  color: var(--platinum);
}

.display-italic {
  font-style: italic;
  font-weight: 500;
  color: var(--champagne-bright);
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.005em;
}

.lead {
  color: var(--platinum-dim);
  font-size: var(--step-1);
  font-weight: 300;
  line-height: 1.45;
  max-width: 46ch;
}

.muted {
  color: var(--mist);
}

.label {
  font-family: var(--mono);
  font-size: var(--step--1);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mist);
}

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  font-family: var(--mono);
  font-size: var(--step--1);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: var(--pad-y) 1.8rem;
  border: 1px solid var(--champagne);
  color: var(--obsidian);
  background: var(--champagne);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  transition: color 0.5s var(--ease), background 0.5s var(--ease),
    border-color 0.5s var(--ease);
}
.btn .btn__arrow {
  transition: transform 0.5s var(--ease);
}
.btn:hover {
  background: var(--champagne-bright);
}
.btn:hover .btn__arrow {
  transform: translateX(4px);
}
.btn--ghost {
  background: transparent;
  color: var(--platinum);
  border-color: var(--hairline);
}
.btn--ghost:hover {
  background: transparent;
  border-color: var(--champagne);
  color: var(--champagne-bright);
}

.linkline {
  font-family: var(--mono);
  font-size: var(--step--1);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--platinum);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--hairline);
  transition: color 0.4s var(--ease), border-color 0.4s var(--ease);
}
.linkline:hover {
  color: var(--champagne-bright);
  border-color: var(--champagne);
}

/* ---------- Itinerary line (signature) ---------- */
.thread {
  position: absolute;
  left: var(--gutter);
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--hairline) 8%,
    var(--hairline) 92%,
    transparent
  );
  pointer-events: none;
  z-index: 0;
}
.thread__node {
  position: absolute;
  left: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--champagne);
  box-shadow: 0 0 0 4px var(--obsidian), 0 0 14px 2px var(--champagne-glow);
}

/* ---------- Focus + motion accessibility ---------- */
:focus-visible {
  outline: 2px solid var(--champagne-bright);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

.divider {
  height: 1px;
  background: var(--hairline-soft);
  border: 0;
}

/* ---------- Scroll progress hairline ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--champagne), var(--champagne-bright));
  z-index: 300;
}

/* ============================================================
   REVEAL ON SCROLL (progressive enhancement)
   Hidden state only applies when JS is active (html.js), so the
   page is fully visible/crawlable without JavaScript.
   ============================================================ */
.js .reveal {
  opacity: 0;
  transform: translateY(var(--reveal-y, 28px));
  transition: opacity 0.9s var(--ease-slow), transform 0.9s var(--ease-slow);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}
.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .js .reveal {
    transform: none;
  }
}

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.5s var(--ease), backdrop-filter 0.5s var(--ease),
    border-color 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav--scrolled {
  background: rgba(10, 11, 14, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--hairline-soft);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  gap: 2rem;
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.nav__mark {
  color: var(--champagne);
  font-size: 0.7rem;
  transform: translateY(-1px);
}
.nav__name {
  font-family: var(--display);
  font-size: 1.18rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.nav__name em {
  font-style: italic;
  color: var(--mist);
  font-weight: 400;
}

.nav__links {
  display: flex;
  gap: 2.4rem;
  margin-left: auto;
  margin-right: auto;
}
.nav__item {
  position: relative;
}
.nav__link {
  font-family: var(--mono);
  font-size: var(--step--1);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--platinum-dim);
  position: relative;
  padding-block: 0.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  transition: color 0.35s var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--champagne);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.nav__link:hover,
.nav__link.is-active {
  color: var(--champagne-bright);
}
.nav__link:hover::after,
.nav__link.is-active::after {
  transform: scaleX(1);
}
.nav__caret {
  font-size: 0.7em;
  font-style: normal;
  transition: transform 0.35s var(--ease), color 0.35s var(--ease);
  transform: translateY(1px);
}
.nav__item:hover .nav__caret,
.nav__item:focus-within .nav__caret {
  transform: translateY(1px) rotate(180deg);
  color: var(--champagne-bright);
}

/* ---------- desktop dropdown ---------- */
.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 8px);
  padding-top: 18px; /* hover bridge */
  min-width: 280px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s var(--ease), transform 0.32s var(--ease);
  z-index: 50;
}
.nav__item:hover .nav__dropdown,
.nav__item:focus-within .nav__dropdown {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}
.nav__dropdown-inner {
  background: rgba(13, 15, 19, 0.92);
  backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  padding: 0.6rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  max-height: calc(100svh - 120px);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: var(--hairline) transparent;
}
.nav__dropdown-inner::-webkit-scrollbar {
  width: 6px;
}
.nav__dropdown-inner::-webkit-scrollbar-thumb {
  background: var(--hairline);
  border-radius: 3px;
}
.nav__dd-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.7rem 0.9rem;
  border-radius: 3px;
  color: var(--platinum-dim);
  font-size: var(--step--1);
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.nav__dd-link span {
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: 0;
}
.nav__dd-meta {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mist-dim);
  font-style: normal;
  white-space: nowrap;
}
.nav__dd-link:hover {
  background: var(--champagne-glow);
  color: var(--champagne-bright);
}
.nav__dd-link:hover .nav__dd-meta {
  color: var(--champagne);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav__phone {
  font-family: var(--mono);
  font-size: var(--step--1);
  letter-spacing: 0.08em;
  color: var(--platinum-dim);
  transition: color 0.35s var(--ease);
}
.nav__phone:hover {
  color: var(--champagne-bright);
}
.nav__cta {
  --pad-y: 0.7rem;
}

/* burger */
.nav__burger {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.nav__burger span {
  width: 22px;
  height: 1.5px;
  background: var(--platinum);
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
}
.nav__burger.is-open span:first-child {
  transform: translateY(4px) rotate(45deg);
}
.nav__burger.is-open span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* drawer */
.nav__drawer {
  position: fixed;
  inset: 84px 0 0 0;
  background: var(--obsidian-2);
  border-top: 1px solid var(--hairline-soft);
  padding: var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.nav__drawer.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.nav__drawer-scroll {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* mobile accordion */
.nav__acc {
  border-bottom: 1px solid var(--hairline-soft);
}
.nav__acc-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--display);
  font-size: var(--step-2);
  font-weight: 600;
  color: var(--platinum);
  padding-block: 1rem;
  text-align: left;
}
.nav__acc-icon {
  font-family: var(--mono);
  font-size: 1.4rem;
  color: var(--champagne);
  font-style: normal;
}
.nav__acc-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease);
}
.nav__acc.is-open .nav__acc-panel {
  grid-template-rows: 1fr;
}
.nav__acc-inner {
  min-height: 0;
  overflow: hidden;
}
.nav__acc.is-open .nav__acc-inner {
  padding-bottom: 0.8rem;
}
.nav__acc .nav__dd-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
  color: var(--platinum-dim);
}
.nav__acc .nav__dd-link span {
  font-family: var(--display);
  font-size: 1.25rem;
}
.nav__acc .nav__dd-meta {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mist-dim);
  font-style: normal;
}

.nav__drawer-foot {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 2rem;
}

@media (max-width: 900px) {
  .nav__links,
  .nav__actions {
    display: none;
  }
  .nav__burger {
    display: flex;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--hairline-soft);
  background: var(--obsidian-2);
  padding-top: clamp(4rem, 2rem + 6vw, 7rem);
  padding-bottom: 2.5rem;
}

.footer__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.6rem;
  padding-bottom: clamp(3.5rem, 2rem + 5vw, 6rem);
  border-bottom: 1px solid var(--hairline-soft);
}
.footer__headline {
  font-size: var(--step-3);
  line-height: 1.02;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1.2fr;
  gap: 2.5rem;
  padding-block: clamp(3rem, 2rem + 3vw, 4.5rem);
}
.footer__logo {
  font-family: var(--display);
  font-size: 1.4rem;
}
.footer__logo em {
  font-style: italic;
  color: var(--mist);
}
.footer__blurb {
  margin-top: 1rem;
  max-width: 32ch;
  font-size: var(--step--1);
  line-height: 1.6;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.footer__col .label {
  margin-bottom: 0.4rem;
}
.footer__col a,
.footer__col span:not(.label) {
  font-size: var(--step--1);
  color: var(--platinum-dim);
  transition: color 0.35s var(--ease);
}
.footer__col a:hover {
  color: var(--champagne-bright);
}

.footer__social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding-top: 2rem;
  border-top: 1px solid var(--hairline-soft);
}
.footer__social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer__social-link {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--hairline-soft);
  border-radius: 50%;
  color: var(--platinum-dim);
  transition: color 0.35s var(--ease), border-color 0.35s var(--ease),
    transform 0.35s var(--ease);
}
.footer__social-link:hover {
  color: var(--champagne-bright);
  border-color: var(--champagne);
  transform: translateY(-2px);
}

.footer__base {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--hairline-soft);
}

@media (max-width: 820px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media (max-width: 520px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   SHARED SECTION HEADS
   ============================================================ */
.sechead {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 60ch;
}
.sechead--center {
  align-items: center;
  text-align: center;
  margin-inline: auto;
}
.sechead__title {
  font-size: var(--step-3);
  line-height: 1.02;
}
.sechead__sub {
  margin-top: 0.4rem;
}

/* ============================================================
   HERO (home)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: calc(84px + 1.5rem);
  padding-bottom: clamp(2rem, 1.2rem + 2vw, 3.5rem);
  overflow: hidden;
  background: var(--obsidian);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 82%;
  filter: saturate(0.95) contrast(1.03) brightness(0.9);
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      100deg,
      rgba(10, 11, 14, 0.92) 0%,
      rgba(10, 11, 14, 0.74) 30%,
      rgba(10, 11, 14, 0.4) 52%,
      rgba(10, 11, 14, 0.1) 74%,
      transparent 100%
    ),
    linear-gradient(
      to top,
      var(--obsidian) 0%,
      rgba(10, 11, 14, 0.45) 20%,
      transparent 50%
    ),
    linear-gradient(
      to bottom,
      rgba(10, 11, 14, 0.5) 0%,
      transparent 16%
    );
  pointer-events: none;
}

.hero__sweep {
  position: absolute;
  inset: -30% -10% auto -10%;
  height: 130%;
  background: radial-gradient(
    60% 50% at 72% 30%,
    var(--champagne-glow),
    transparent 70%
  );
  mix-blend-mode: screen;
  animation: sweep 14s var(--ease-slow) infinite alternate;
  z-index: 1;
}
@keyframes sweep {
  0% {
    transform: translateX(-12%) translateY(-4%);
    opacity: 0.5;
  }
  100% {
    transform: translateX(12%) translateY(4%);
    opacity: 0.85;
  }
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero__eyebrow {
  margin-bottom: clamp(1rem, 0.6rem + 1.4vw, 1.8rem);
}
.hero__title {
  font-size: var(--step-5);
  line-height: 0.98;
  font-weight: 600;
  margin-bottom: clamp(1rem, 0.7rem + 1vw, 1.5rem);
  text-shadow: 0 2px 40px rgba(10, 11, 14, 0.55);
  max-width: 20ch;
}
.hero__brandline {
  font-family: var(--mono);
  font-size: var(--step--1);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: clamp(1.4rem, 0.8rem + 1.6vw, 2.2rem);
}

.hero__foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
  max-width: 980px;
}
.hero__lead {
  font-size: var(--step-1);
  max-width: 40ch;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(3rem, 2rem + 4vw, 6rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  z-index: 2;
}
.hero__scroll .label {
  writing-mode: vertical-rl;
  letter-spacing: 0.3em;
}
.hero__scroll-line {
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, var(--champagne), transparent);
  animation: scrollpulse 2.4s var(--ease) infinite;
  transform-origin: top;
}
@keyframes scrollpulse {
  0%,
  100% {
    transform: scaleY(0.4);
    opacity: 0.4;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

/* hero load-in animations (JS-gated so content shows without JS) */
.js .hero__eyebrow,
.js .hero__foot {
  opacity: 0;
  animation: heroFade 0.8s var(--ease-slow) forwards;
}
.js .hero__foot {
  animation-delay: 0.45s;
}
.js .hero__line {
  overflow: hidden;
}
.js .hero__word {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  animation: heroWord 1s var(--ease-slow) forwards;
  animation-delay: var(--word-delay, 0.25s);
}
@keyframes heroFade {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes heroWord {
  to {
    transform: none;
    opacity: 1;
  }
}
.hero__word {
  display: inline-block;
}
.hero__line {
  display: block;
}

@media (max-width: 900px) {
  .hero__media img {
    object-position: 80% 68%;
  }
  .hero__scrim {
    background:
      linear-gradient(
        180deg,
        rgba(10, 11, 14, 0.7) 0%,
        rgba(10, 11, 14, 0.5) 40%,
        rgba(10, 11, 14, 0.82) 100%
      );
  }
  .hero__scroll {
    display: none;
  }
}

@media (max-width: 600px) {
  .hero__title {
    font-size: clamp(2.9rem, 12vw, 4.6rem);
    line-height: 1;
  }
  .hero {
    align-items: center;
  }
}

@media (min-width: 700px) and (max-height: 760px) {
  .hero {
    padding-top: calc(80px + 0.5rem);
  }
  .hero__title {
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    margin-bottom: 0.9rem;
  }
  .hero__eyebrow {
    margin-bottom: 0.9rem;
  }
  .hero__brandline {
    margin-bottom: 1.1rem;
  }
  .hero__lead {
    font-size: var(--step-0);
  }
  .hero__foot {
    gap: 1.5rem;
  }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  border-block: 1px solid var(--hairline-soft);
  background: var(--obsidian-2);
  overflow: hidden;
  padding-block: 1.4rem;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 38s linear infinite;
}
.marquee__row {
  display: flex;
  align-items: center;
}
.marquee__item {
  font-family: var(--display);
  font-size: var(--step-2);
  font-style: italic;
  color: var(--platinum-dim);
  display: inline-flex;
  align-items: center;
  gap: 1.6rem;
  padding-inline: 1.6rem;
  white-space: nowrap;
}
.marquee__item i {
  color: var(--champagne);
  font-size: 0.6em;
  font-style: normal;
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* ============================================================
   STATEMENT
   ============================================================ */
.statement__inner {
  position: relative;
  z-index: 1;
  padding-left: clamp(0px, 4vw, 80px);
}
.statement__text {
  font-size: var(--step-2);
  font-weight: 400;
  line-height: 1.28;
  max-width: 34ch;
  margin-top: 1.6rem;
}
.statement__text .display-italic {
  white-space: nowrap;
}

/* ============================================================
   FLEET PREVIEW (home)
   ============================================================ */
.fleet-preview__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 1.5rem + 3vw, 4rem);
  flex-wrap: wrap;
}
.fleet-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.fcard {
  border: 1px solid var(--hairline-soft);
  background: linear-gradient(180deg, var(--graphite), var(--obsidian-2));
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.5s var(--ease), transform 0.5s var(--ease);
}
.fcard:hover {
  border-color: var(--champagne);
  transform: translateY(-4px);
}
.fcard__link {
  display: block;
  color: inherit;
}
.fcard__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--graphite-2);
}
.fcard__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.03) brightness(0.94);
  transition: transform 0.8s var(--ease);
}
.fcard:hover .fcard__media img {
  transform: scale(1.05);
}
.fcard__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--obsidian-2) 3%, transparent 48%),
    radial-gradient(130% 90% at 50% 25%, transparent 55%, rgba(10, 11, 14, 0.5));
  pointer-events: none;
}
.fcard__body {
  padding: 1.6rem 2rem 2rem;
  border-top: 1px solid var(--hairline-soft);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.fcard__name {
  font-size: var(--step-2);
  line-height: 1;
}
.fcard__meta {
  font-size: var(--step--1);
}
.fcard__specs {
  display: flex;
  gap: 1.2rem;
  margin-top: 1rem;
  font-family: var(--mono);
  font-size: var(--step--1);
  color: var(--platinum-dim);
  flex-wrap: wrap;
}
.fcard__specs span {
  position: relative;
  padding-left: 1rem;
}
.fcard__specs span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  background: var(--champagne);
  border-radius: 50%;
  transform: translateY(-50%);
}

/* ============================================================
   SERVICES PREVIEW (home)
   ============================================================ */
.services-preview .sechead {
  margin-bottom: clamp(2.5rem, 1.5rem + 3vw, 4rem);
}
.svc-list {
  border-top: 1px solid var(--hairline-soft);
}
.svc-row {
  display: grid;
  grid-template-columns: 80px 1.4fr 2fr 60px;
  gap: 2rem;
  align-items: baseline;
  padding-block: clamp(1.6rem, 1rem + 1.5vw, 2.4rem);
  border-bottom: 1px solid var(--hairline-soft);
  transition: background 0.5s var(--ease);
}
.svc-row:hover {
  background: linear-gradient(90deg, var(--champagne-glow), transparent 60%);
}
.svc-row__no {
  color: var(--champagne);
}
.svc-row__title {
  font-size: var(--step-2);
  line-height: 1.05;
}
.svc-row__body {
  font-size: var(--step-0);
  max-width: 52ch;
}
.svc-row__more {
  justify-self: end;
  font-size: 1.6rem;
  color: var(--mist);
  transition: color 0.4s var(--ease), transform 0.4s var(--ease);
}
.svc-row:hover .svc-row__more {
  color: var(--champagne-bright);
  transform: translateX(6px);
}

@media (max-width: 820px) {
  .fleet-preview__grid {
    grid-template-columns: 1fr;
    max-width: 460px;
  }
  .svc-row {
    grid-template-columns: 50px 1fr;
    gap: 0.6rem 1.5rem;
  }
  .svc-row__body {
    grid-column: 2;
  }
  .svc-row__more {
    display: none;
  }
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
  border-top: 1px solid var(--hairline-soft);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 2rem 1.6rem;
  border-left: 1px solid var(--hairline-soft);
}
.stat__k {
  font-size: var(--step-3);
  color: var(--platinum);
  line-height: 1;
}
@media (max-width: 720px) {
  .stats__grid {
    grid-template-columns: 1fr 1fr;
  }
}
/* Long stat values (e.g. "24 / 7 · 365", "Palo Alto") need the full width
   on small phones, so stack to a single column. */
@media (max-width: 520px) {
  .stats__grid {
    grid-template-columns: 1fr;
  }
  .stat {
    padding: 1.6rem 1.2rem;
  }
}

/* ============================================================
   CHAUFFEURS (home)
   ============================================================ */
.chauffeurs {
  border-top: 1px solid var(--hairline-soft);
}
.chauffeurs__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 1rem + 5vw, 6rem);
  align-items: center;
}
.chauffeurs__title {
  font-size: var(--step-3);
  line-height: 1.05;
  margin-top: 1rem;
}
.chauffeurs__body {
  margin-top: 1.4rem;
  max-width: 48ch;
}
.creds {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.cred {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.4rem 1.6rem;
  border: 1px solid var(--hairline-soft);
  border-radius: 4px;
}
.cred__mark {
  color: var(--champagne);
  font-size: 1rem;
  line-height: 1.5;
}
.cred__k {
  font-family: var(--display);
  font-size: var(--step-1);
}
.cred__v {
  margin-top: 0.3rem;
  font-size: var(--step--1);
  line-height: 1.55;
}
@media (max-width: 820px) {
  .chauffeurs__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   INNER PAGES (Fleet / Services / About / Contact)
   ============================================================ */
.pagehero {
  padding-top: calc(84px + clamp(4rem, 2rem + 6vw, 8rem));
  padding-bottom: clamp(2.5rem, 1.5rem + 3vw, 4.5rem);
  position: relative;
  border-bottom: 1px solid var(--hairline-soft);
  overflow: hidden;
}
.pagehero::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 100%;
  background: radial-gradient(50% 60% at 80% 0%, var(--champagne-glow), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.pagehero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  max-width: 100%;
}
.pagehero__title {
  font-size: var(--step-4);
  line-height: 0.98;
  font-size: 82px;
}
.pagehero__sub {
  font-size: var(--step-1);
}
.pagehero__index {
  position: absolute;
  right: var(--gutter);
  top: calc(84px + 2rem);
  font-family: var(--mono);
  font-size: var(--step--1);
  color: var(--mist-dim);
  letter-spacing: 0.2em;
  z-index: 1;
}

/* ---------------- FLEET ---------------- */
.fleet-list {
  display: flex;
  flex-direction: column;
}
.vrow {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 1rem + 4vw, 5rem);
  align-items: center;
  padding-block: clamp(3rem, 2rem + 4vw, 6rem);
  border-bottom: 1px solid var(--hairline-soft);
}
.vrow:nth-child(even) .vrow__media {
  order: 2;
}
.vrow__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid var(--hairline-soft);
  border-radius: 4px;
  background: var(--graphite-2);
}
.vrow__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.03) brightness(0.96);
  transition: transform 0.9s var(--ease);
}
.vrow:hover .vrow__media img {
  transform: scale(1.04);
}
.vrow__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10, 11, 14, 0.5), transparent 42%),
    radial-gradient(130% 100% at 50% 50%, transparent 58%, rgba(10, 11, 14, 0.45));
  pointer-events: none;
}
.vrow__tag {
  position: absolute;
  top: 1.1rem;
  left: 1.1rem;
  z-index: 2;
  background: rgba(10, 11, 14, 0.6);
  backdrop-filter: blur(8px);
  padding: 0.45rem 0.75rem;
  border-radius: 2px;
  color: var(--champagne);
}
.vrow__head {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
}
.vrow__name {
  font-size: var(--step-3);
  line-height: 1;
}
.vrow__year {
  font-family: var(--mono);
  color: var(--champagne);
  font-size: var(--step-0);
}
.vrow__type {
  margin-top: 0.6rem;
}
.vrow__note {
  margin-top: 1.4rem;
  max-width: 46ch;
  color: var(--platinum-dim);
}
.specgrid {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 2rem 2.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--hairline-soft);
  width: fit-content;
}
.spec__k {
  display: block;
  font-family: var(--display);
  font-size: var(--step-2);
  line-height: 1;
}
.spec__v {
  display: block;
  margin-top: 0.4rem;
}
.vrow__cta {
  margin-top: 2rem;
}

@media (max-width: 820px) {
  .vrow {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
  .vrow:nth-child(even) .vrow__media {
    order: 0;
  }
}

/* ---------------- SERVICES (detail) ---------------- */
.svc-detail {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.svc-card {
  border: 1px solid var(--hairline-soft);
  border-radius: 4px;
  padding: clamp(2rem, 1.4rem + 2vw, 3.2rem);
  background: linear-gradient(180deg, var(--graphite), var(--obsidian-2));
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  transition: border-color 0.5s var(--ease), transform 0.5s var(--ease);
}
.svc-card:hover {
  border-color: var(--champagne);
  transform: translateY(-4px);
}
.svc-card__no {
  font-family: var(--display);
  font-size: var(--step-3);
  color: var(--hairline);
  line-height: 1;
}
.svc-card__title {
  font-size: var(--step-2);
}
.svc-card__points {
  list-style: none;
  margin-top: 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.svc-card__points li {
  font-family: var(--mono);
  font-size: var(--step--1);
  letter-spacing: 0.06em;
  color: var(--platinum-dim);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.svc-card__points li::before {
  content: "→";
  color: var(--champagne);
}
@media (max-width: 720px) {
  .svc-detail {
    grid-template-columns: 1fr;
  }
}

/* process steps */
.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: clamp(2.5rem, 1.5rem + 3vw, 4rem);
}
.pstep {
  border-top: 1px solid var(--champagne);
  padding-top: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.pstep__no {
  color: var(--champagne);
}
.pstep__title {
  font-size: var(--step-1);
}
.process__cta {
  margin-top: clamp(2.5rem, 1.5rem + 3vw, 4rem);
}
@media (max-width: 720px) {
  .process {
    grid-template-columns: 1fr;
  }
}

/* ---------------- FAQ (accordion) ---------------- */
.faq {
  margin-top: clamp(2rem, 1.4rem + 2vw, 3.5rem);
  border-top: 1px solid var(--hairline-soft);
  max-width: 80ch;
}
.faq__item {
  border-bottom: 1px solid var(--hairline-soft);
}
.faq__q {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem 0;
  font-family: var(--display);
  font-size: var(--step-1);
  color: var(--platinum);
  transition: color 0.4s var(--ease);
}
.faq__q::-webkit-details-marker {
  display: none;
}
.faq__item:hover .faq__q,
.faq__item[open] .faq__q {
  color: var(--champagne-bright);
}
.faq__icon {
  flex: none;
  font-family: var(--mono);
  font-style: normal;
  color: var(--champagne);
  transition: transform 0.4s var(--ease);
}
.faq__item[open] .faq__icon {
  transform: rotate(45deg);
}
.faq__a {
  padding: 0 0 1.6rem;
  max-width: 68ch;
  line-height: 1.6;
}

/* ---------------- ABOUT ---------------- */
.about-lede {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 1rem + 4vw, 5rem);
  align-items: start;
}
.about-lede__big {
  font-family: var(--display);
  font-size: var(--step-2);
  line-height: 1.25;
  font-weight: 400;
}
.about-lede__big .display-italic {
  font-size: 1em;
}
.about-cols {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: clamp(2.5rem, 1.5rem + 3vw, 4rem);
}
.value {
  padding: 2rem;
  border: 1px solid var(--hairline-soft);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.value__mark {
  color: var(--champagne);
  font-size: 1.2rem;
}
.value__title {
  font-size: var(--step-1);
}
@media (max-width: 820px) {
  .about-lede,
  .values {
    grid-template-columns: 1fr;
  }
}

/* ---------------- CONTACT ---------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: clamp(2.5rem, 1.5rem + 4vw, 6rem);
  align-items: start;
}
.form {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.field label {
  font-family: var(--mono);
  font-size: var(--step--1);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mist);
}
.field input,
.field select,
.field textarea {
  font: inherit;
  color: var(--platinum);
  background: var(--obsidian-2);
  border: 1px solid var(--hairline);
  border-radius: 3px;
  padding: 0.95rem 1.1rem;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--champagne);
  background: var(--graphite);
}
.field textarea {
  resize: vertical;
  min-height: 120px;
}
.field--row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}
.form__submit {
  align-self: flex-start;
  margin-top: 0.5rem;
}
.form__note {
  font-size: var(--step--1);
}

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  border-left: 1px solid var(--hairline-soft);
  padding-left: clamp(1.5rem, 1rem + 2vw, 3rem);
}
.contact-block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.contact-block a,
.contact-block span:not(.label) {
  font-size: var(--step-1);
  font-family: var(--display);
}
.contact-block a:hover {
  color: var(--champagne-bright);
}

.thanks {
  border: 1px solid var(--champagne);
  border-radius: 4px;
  padding: clamp(2rem, 1.4rem + 3vw, 3.5rem);
  background: linear-gradient(180deg, var(--graphite), var(--obsidian-2));
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}
.thanks__title {
  font-size: var(--step-2);
}

@media (max-width: 820px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-aside {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid var(--hairline-soft);
    padding-top: 2rem;
  }
}
@media (max-width: 520px) {
  .field--row {
    grid-template-columns: 1fr;
  }
}

/* ---------------- 404 ---------------- */
.notfound {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: calc(84px + 2rem);
  padding-bottom: 4rem;
}
.notfound__inner {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  align-items: flex-start;
  max-width: 60ch;
}
.notfound__code {
  font-family: var(--mono);
  color: var(--champagne);
  letter-spacing: 0.3em;
}
.notfound__title {
  font-size: var(--step-4);
  line-height: 1;
}
.notfound__links {
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

/* ---------- Legal / privacy prose ---------- */
.legal {
  max-width: 68ch;
  margin: 0 auto;
}
.legal__updated {
  display: block;
  color: var(--champagne);
  margin-bottom: 2rem;
}
.legal__lede {
  font-size: var(--step-1);
  line-height: 1.5;
  color: var(--platinum);
  margin-bottom: 2.5rem;
}
.legal__h {
  font-size: var(--step-1);
  color: var(--platinum);
  margin: 2.75rem 0 0.85rem;
}
.legal__h3 {
  font-size: var(--step-0);
  color: var(--champagne-bright);
  letter-spacing: 0.01em;
  margin: 1.5rem 0 0.4rem;
}
.legal p {
  color: var(--platinum-dim);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.legal strong {
  color: var(--platinum);
  font-weight: 600;
}
.legal__list {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
}
.legal__list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.55rem;
  color: var(--platinum-dim);
  line-height: 1.7;
}
.legal__list li::before {
  content: "\25C6";
  position: absolute;
  left: 0;
  top: 0.15em;
  font-size: 0.7em;
  color: var(--champagne);
}
.legal a {
  color: var(--champagne-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 0.3s var(--ease);
}
.legal a:hover {
  color: var(--platinum);
}
.legal__contact {
  color: var(--platinum-dim);
  line-height: 1.95;
}

/* Footer legal link */
.footer__legal a {
  font-family: var(--mono);
  font-size: var(--step--1);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--platinum-dim);
  transition: color 0.3s var(--ease);
}
.footer__legal a:hover {
  color: var(--champagne-bright);
}

/* ---------- Hourly rate card (services) ---------- */
.ratecard {
  margin-top: 1.25rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--hairline-soft);
}
.ratecard__head {
  display: block;
  color: var(--champagne);
  margin-bottom: 0.75rem;
}
.ratecard__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ratecard__list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--hairline-soft);
}
.ratecard__list li:last-child {
  border-bottom: 0;
}
.ratecard__tier {
  color: var(--platinum-dim);
}
.ratecard__price {
  font-family: var(--mono);
  color: var(--platinum);
  white-space: nowrap;
}
.ratecard__price em {
  font-style: normal;
  font-size: 0.82em;
  color: var(--platinum-dim);
}
.ratecard__note {
  margin-top: 0.85rem;
  font-size: 0.85em;
}
