/* ══════════════════════════════════════════════════════════════
   Oynx Detail Crew — Global Styles ("Onyx Gloss")
   Jet-black premium · chrome headings · gloss-teal accent
   Loaded by index.html
══════════════════════════════════════════════════════════════ */

:root {
  /* Onyx blacks */
  --onyx: #0a0a0d;
  --onyx-deep: #050506;
  --carbon: #0f0f13;
  --panel: #121218;
  --panel-up: #17171e;

  /* Gloss accent — clean-water teal */
  --gloss: #3fe0cf;
  --gloss-hot: #6ef2e3;
  --gloss-deep: #1da895;
  --gloss-glow: rgba(63, 224, 207, 0.16);
  --gloss-pale: rgba(63, 224, 207, 0.055);

  /* Chrome / silver text */
  --chrome: #f2f5f8;
  --silver: #c8ced6;
  --steel: #9aa2ad;
  --ash: #868e99;   /* min 4.5:1 on all page + panel backgrounds */
  --graphite: #33363e;

  --border: rgba(200, 206, 214, 0.08);
  --border-bright: rgba(200, 206, 214, 0.16);
  --border-gloss: rgba(63, 224, 207, 0.28);

  --font-display: 'Space Grotesk', 'DM Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'DM Mono', monospace;

  --radius: 12px;
  --radius-lg: 20px;
  --radius-full: 999px;
  --section-pad: clamp(76px, 9vw, 136px);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.4, 0, 0.2, 1);
  --sweep: cubic-bezier(0.77, 0, 0.175, 1);
}

/* ══════════════════════════════════════════════════════════════
   Foundation + reset
══════════════════════════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--onyx);
  color: var(--silver);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--gloss); outline-offset: 3px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 2000;
  background: var(--gloss); color: var(--onyx-deep);
  padding: 0.6rem 1.2rem; border-radius: 0 0 var(--radius) 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

/* Ambient water-bead field — canvas sits above body bg, below all content.
   Sections use translucent backgrounds so the field reads through faintly. */
#bead-field {
  position: fixed; inset: 0;
  width: 100%; height: 100%;
  z-index: -1;
  pointer-events: none;
}

/* Film grain */
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9999; mix-blend-mode: overlay;
}

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

/* ══════════════════════════════════════════════════════════════
   Chrome text treatment (display headings)
══════════════════════════════════════════════════════════════ */
.chrome-text {
  background: linear-gradient(180deg, #ffffff 0%, #e8edf2 38%, #a9b2bd 52%, #d7dde4 66%, #8f98a3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.gloss-text { color: var(--gloss); }

/* ══════════════════════════════════════════════════════════════
   Nav
══════════════════════════════════════════════════════════════ */
nav.odc-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.35rem clamp(1.25rem, 5vw, 3.5rem);
  transition: background 0.5s var(--ease-out), padding 0.5s var(--ease-out), border-color 0.5s var(--ease-out);
  border-bottom: 1px solid transparent;
}
nav.odc-nav.scrolled {
  background: rgba(10, 10, 13, 0.82);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  padding: 0.8rem clamp(1.25rem, 5vw, 3.5rem);
  border-bottom-color: var(--border);
}
.nav-logo {
  display: flex; align-items: center; gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 0.98rem; font-weight: 700;
  color: var(--chrome);
  letter-spacing: 0.22em; text-transform: uppercase;
}
.nav-logo svg { width: 26px; height: 26px; flex-shrink: 0; }
.nav-logo .crew { color: var(--steel); font-weight: 500; }
.nav-links {
  display: flex; gap: 0.35rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--steel);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-full);
  transition: color 0.3s, background 0.3s;
}
.nav-links a:hover { color: var(--gloss-hot); background: var(--gloss-pale); }
.nav-cta {
  background: var(--gloss);
  color: var(--onyx-deep) !important;
  font-weight: 700 !important;
  padding: 0.55rem 1.2rem !important;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s !important;
  box-shadow: 0 2px 14px var(--gloss-glow);
}
.nav-cta:hover {
  background: var(--gloss-hot) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 22px var(--gloss-glow);
}
.hamburger {
  display: none; flex-direction: column; gap: 6px;
  padding: 4px; z-index: 1001;
}
.hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--chrome);
  transition: all 0.4s var(--ease-out);
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--onyx-deep);
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  gap: 1.15rem; padding: 5rem 1.5rem 2rem;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 999;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: var(--font-display); font-size: 1.55rem; font-weight: 600;
  color: var(--chrome); letter-spacing: 0.06em;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s var(--ease), color 0.3s;
}
.mobile-menu.open a { opacity: 1; transform: translateY(0); }
.mobile-menu.open a:nth-child(1) { transition-delay: 0.08s; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.14s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.20s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.26s; }
.mobile-menu.open a:nth-child(5) { transition-delay: 0.32s; }
.mobile-menu a:hover { color: var(--gloss-hot); }
.mobile-menu .menu-phone {
  font-family: var(--font-mono);
  font-size: 1rem; color: var(--gloss);
  margin-top: 1rem; letter-spacing: 0.08em;
}

/* ══════════════════════════════════════════════════════════════
   Sections + eyebrow + titles
══════════════════════════════════════════════════════════════ */
section {
  position: relative;
  padding: var(--section-pad) clamp(1.5rem, 5vw, 4rem);
  overflow: hidden;
}
.section-carbon { background: rgba(15, 15, 19, 0.82); }
.section-deep { background: rgba(5, 5, 6, 0.78); }
.section-glow::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 1000px 600px at 50% 0%, var(--gloss-pale), transparent 60%);
  pointer-events: none;
}
.section-inner {
  max-width: 1120px; margin: 0 auto;
  position: relative; z-index: 1;
}
.section-head { text-align: center; margin-bottom: 4rem; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-family: var(--font-display);
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gloss); margin-bottom: 1rem;
}
.eyebrow::before, .eyebrow::after {
  content: ''; width: 28px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gloss-deep));
}
.eyebrow::after { background: linear-gradient(90deg, var(--gloss-deep), transparent); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.4vw, 3.3rem);
  font-weight: 700; line-height: 1.08;
  letter-spacing: -0.015em;
  margin-bottom: 1rem;
}
.section-sub {
  color: var(--steel); font-size: 1.02rem;
  line-height: 1.7; max-width: 620px; margin: 0 auto;
}

/* ══════════════════════════════════════════════════════════════
   Buttons
══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 1rem 2rem; border-radius: var(--radius);
  position: relative; overflow: hidden;
  transition: all 0.4s var(--ease);
  white-space: nowrap;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
  transform: translateX(-101%);
  transition: transform 0.6s var(--ease);
}
.btn:hover::after { transform: translateX(101%); }
.btn:active { transform: scale(0.97); }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-gloss { background: var(--gloss); color: var(--onyx-deep); box-shadow: 0 4px 18px var(--gloss-glow); }
.btn-gloss:hover { background: var(--gloss-hot); transform: translateY(-2px); box-shadow: 0 10px 30px var(--gloss-glow); }
.btn-ghost { background: transparent; color: var(--silver); border: 1.5px solid var(--border-bright); }
.btn-ghost:hover { color: var(--chrome); border-color: var(--gloss); transform: translateY(-2px); }

/* ══════════════════════════════════════════════════════════════
   Hero
══════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100svh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 8rem clamp(1.5rem, 5vw, 4rem) 6rem;
  background:
    radial-gradient(ellipse 900px 480px at 50% 108%, var(--gloss-glow), transparent 62%),
    radial-gradient(ellipse 700px 380px at 82% -8%, rgba(200,206,214,0.07), transparent 60%),
    radial-gradient(ellipse 520px 300px at 12% 18%, rgba(63,224,207,0.05), transparent 65%),
    linear-gradient(180deg, rgba(5,5,6,0.88) 0%, rgba(10,10,13,0.8) 55%, rgba(15,15,19,0.85) 100%);
}
.hero-inner { max-width: 980px; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gloss);
  border: 1px solid var(--border-gloss);
  background: var(--gloss-pale);
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-full);
  margin-bottom: 2rem;
}
.hero-badge .pulse-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gloss);
  box-shadow: 0 0 10px var(--gloss);
  animation: pulse-dot 2.6s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 6px var(--gloss); opacity: 0.75; }
  50%      { box-shadow: 0 0 14px var(--gloss); opacity: 1; }
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9.5vw, 6.8rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.hero h1 .line { display: block; }
.hero-sub {
  color: var(--steel);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  max-width: 560px; margin: 0 auto 2.8rem;
  line-height: 1.75;
}
.hero-sub strong { color: var(--silver); font-weight: 500; }
.hero-ctas {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  margin-bottom: 3.2rem;
}
.hero-stats {
  display: flex; gap: clamp(1.5rem, 4vw, 3.5rem);
  justify-content: center; flex-wrap: wrap;
}
.hero-stat {
  font-family: var(--font-display);
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ash);
  display: flex; align-items: center; gap: 0.55rem;
}
.hero-stat svg { width: 15px; height: 15px; color: var(--gloss-deep); }

/* ══════════════════════════════════════════════════════════════
   Services grid
══════════════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}
.service-card {
  position: relative;
  background: linear-gradient(160deg, var(--panel-up) 0%, var(--panel) 60%, var(--carbon) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.1rem 1.9rem;
  overflow: hidden;
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
  display: flex; flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.14), transparent);
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-gloss);
  box-shadow: 0 18px 44px rgba(0,0,0,0.5), 0 0 0 1px var(--gloss-pale);
}
.service-icon {
  width: 46px; height: 46px;
  border-radius: var(--radius);
  background: var(--gloss-pale);
  border: 1px solid var(--border-gloss);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.4rem;
  transition: background 0.4s, box-shadow 0.4s;
}
.service-icon svg { width: 22px; height: 22px; color: var(--gloss); }
.service-card:hover .service-icon {
  background: rgba(63,224,207,0.12);
  box-shadow: 0 0 24px var(--gloss-glow);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.22rem; font-weight: 700;
  color: var(--chrome);
  letter-spacing: -0.01em;
  margin-bottom: 0.35rem;
}
.service-from {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--gloss);
  letter-spacing: 0.04em;
  margin-bottom: 1.1rem;
}
.service-includes { flex: 1; }
.service-includes li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.92rem;
  color: var(--steel);
  margin-bottom: 0.42rem;
  line-height: 1.55;
}
.service-includes li::before {
  content: '';
  position: absolute; left: 0; top: 0.58em;
  width: 7px; height: 7px;
  border-radius: 2px;
  background: var(--gloss-deep);
  transform: rotate(45deg);
}
.service-link {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gloss);
  display: inline-flex; align-items: center; gap: 0.45rem;
  min-height: 44px; padding: 0.5rem 0.25rem 0.5rem 0;
  align-self: flex-start;
  transition: gap 0.3s var(--ease), color 0.3s;
}
.service-link:hover { gap: 0.8rem; color: var(--gloss-hot); }
.service-link svg { width: 14px; height: 14px; }

/* ══════════════════════════════════════════════════════════════
   Constellation stage — the sky above the pricing matrix.
   The bead field assembles the hovered vehicle's outline here.
══════════════════════════════════════════════════════════════ */
.constellation-stage {
  position: relative;
  height: clamp(170px, 26vh, 260px);
  margin-bottom: 1.6rem;
  display: flex; align-items: flex-end; justify-content: center;
}
.stage-hint {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ash);
  padding-bottom: 0.4rem;
  transition: opacity 0.5s var(--ease);
}
.constellation-stage.formed .stage-hint { opacity: 0; }
.hint-coarse { display: none; }
@media (hover: none) {
  .hint-fine { display: none; }
  .hint-coarse { display: inline; }
}
.stage-label {
  position: absolute;
  left: 50%; bottom: 0.2rem;
  transform: translateX(-50%) translateY(6px);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.45em; text-transform: uppercase;
  color: var(--gloss);
  text-shadow: 0 0 18px var(--gloss-glow);
  opacity: 0;
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  pointer-events: none;
}
.constellation-stage.formed .stage-label { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ══════════════════════════════════════════════════════════════
   Pricing matrix
══════════════════════════════════════════════════════════════ */
.price-matrix-wrap {
  background: linear-gradient(170deg, rgba(23,23,30,0.85) 0%, rgba(18,18,24,0.8) 70%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.price-matrix {
  width: 100%;
  border-collapse: collapse;
}
.price-matrix thead th {
  padding: 1.1rem 1rem;
  border-bottom: 1px solid var(--border-bright);
  text-align: center;
}
.price-matrix .pm-corner { text-align: left; padding-left: 1.8rem; }
.pm-corner-label {
  font-family: var(--font-display);
  font-size: 0.66rem; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ash);
}
.pm-vehicle {
  display: inline-flex; flex-direction: column; align-items: center; gap: 0.35rem;
  font-family: var(--font-display);
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--silver);
  padding: 0.5rem 1.1rem;
  min-height: 44px;
  border-radius: var(--radius);
  transition: color 0.3s, background 0.3s, transform 0.3s var(--ease);
}
.pm-vehicle svg { width: 34px; height: 18px; color: var(--gloss-deep); transition: color 0.3s, transform 0.3s var(--ease); }
.pm-vehicle:hover, .pm-vehicle:focus-visible {
  color: var(--gloss-hot);
  background: var(--gloss-pale);
  transform: translateY(-2px);
}
.pm-vehicle:hover svg, .pm-vehicle:focus-visible svg { color: var(--gloss); transform: scale(1.08); }
.price-matrix tbody tr { border-bottom: 1px solid var(--border); }
.price-matrix tbody tr:last-child { border-bottom: none; }
.price-matrix tbody tr:hover { background: rgba(63,224,207,0.025); }
.pm-service {
  text-align: left;
  padding: 1.15rem 1rem 1.15rem 1.8rem;
  font-family: var(--font-display);
  font-size: 0.98rem; font-weight: 600;
  color: var(--chrome);
  max-width: 340px;
}
.pm-service small {
  display: block;
  font-family: var(--font-body); font-weight: 300;
  font-size: 0.78rem; color: var(--steel);
  letter-spacing: 0.01em; margin-top: 0.2rem;
  line-height: 1.5;
}
.pm-service sup { color: var(--gloss); font-weight: 500; }
.pm-sub .pm-service { padding-top: 0.4rem; }
.pm-price {
  font-family: var(--font-mono);
  font-size: 1.12rem;
  color: var(--chrome);
  text-align: center;
  padding: 1.15rem 1rem;
  transition: background 0.3s, color 0.3s;
}
.pm-price .from {
  font-size: 0.64rem; color: var(--ash);
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-right: 0.35rem;
}
.pm-price .span-note {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem; color: var(--ash);
  letter-spacing: 0.06em; margin-top: 0.15rem;
}
.pm-price .cell-note {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem; color: var(--ash);
  margin-top: 0.15rem;
}
.pm-sub .pm-price.pm-span { color: var(--gloss); }
.pm-addons-row { background: rgba(5,5,6,0.35); }
.pm-addons-label {
  font-size: 0.72rem !important;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ash) !important;
}
.pm-addons { text-align: left; padding: 0.9rem 1rem; }
.pm-addons .addon-chip { margin-right: 0.5rem; }
.addon-chip {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--steel);
  border: 1px solid var(--border-bright);
  background: var(--carbon);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  transition: color 0.3s, border-color 0.3s;
}
.addon-chip:hover { color: var(--gloss); border-color: var(--border-gloss); }
.addon-chip strong { color: var(--gloss); font-weight: 500; }
.pm-featured {
  background:
    radial-gradient(ellipse 420px 120px at 50% 50%, rgba(63,224,207,0.06), transparent 75%);
  border-top: 1px solid var(--border-gloss) !important;
}
.pm-featured .pm-price { color: var(--gloss-hot); }
.featured-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--onyx-deep);
  background: var(--gloss);
  padding: 0.28rem 0.7rem;
  border-radius: var(--radius-full);
  margin-left: 0.7rem;
  vertical-align: middle;
}
.pm-footnote {
  margin-top: 0.9rem;
  font-size: 0.78rem; color: var(--ash);
  font-style: italic;
  text-align: center;
}
.pm-footnote + .pm-footnote { margin-top: 0.3rem; }
.pm-footnote sup { color: var(--gloss); font-style: normal; }

/* Column highlight while a vehicle is hovered/formed */
.price-matrix.hl-sedan [data-vehicle="sedan"],
.price-matrix.hl-suv [data-vehicle="suv"],
.price-matrix.hl-truck [data-vehicle="truck"] { background: var(--gloss-pale); }
.price-matrix.hl-sedan td[data-vehicle="sedan"],
.price-matrix.hl-suv td[data-vehicle="suv"],
.price-matrix.hl-truck td[data-vehicle="truck"] { color: var(--gloss-hot); }
.pricing-footnote {
  text-align: center;
  margin-top: 2.6rem;
  font-size: 0.85rem;
  color: var(--ash);
}
.pricing-footnote a { color: var(--gloss); transition: color 0.3s; }
.pricing-footnote a:hover { color: var(--gloss-hot); }

/* ══════════════════════════════════════════════════════════════
   Mobile-service callout
══════════════════════════════════════════════════════════════ */
.mobile-note {
  max-width: 860px; margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.6rem;
  align-items: center;
  background:
    radial-gradient(ellipse 420px 200px at 0% 50%, rgba(63,224,207,0.07), transparent 70%),
    linear-gradient(160deg, var(--panel-up), var(--panel));
  border: 1px solid var(--border-gloss);
  border-radius: var(--radius-lg);
  padding: 2rem 2.2rem;
}
.mobile-note-icons { display: flex; gap: 0.7rem; }
.mobile-note-icons .icon-tile {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  background: var(--gloss-pale);
  border: 1px solid var(--border-gloss);
  display: flex; align-items: center; justify-content: center;
}
.mobile-note-icons svg { width: 24px; height: 24px; color: var(--gloss); }
.mobile-note h3 {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 700;
  color: var(--chrome);
  margin-bottom: 0.3rem;
}
.mobile-note p { font-size: 0.94rem; color: var(--steel); }
.mobile-note p strong { color: var(--silver); font-weight: 500; }

/* ══════════════════════════════════════════════════════════════
   Booking / contact
══════════════════════════════════════════════════════════════ */
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.booking-direct h2 { margin-bottom: 1rem; text-align: left; }
.booking-direct .eyebrow::before { display: none; }
.booking-direct .lede {
  color: var(--steel); font-size: 1rem;
  margin-bottom: 2.2rem; max-width: 420px;
}
.phone-display {
  font-family: var(--font-mono);
  font-size: clamp(1.6rem, 3.4vw, 2.3rem);
  color: var(--chrome);
  letter-spacing: 0.03em;
  display: inline-flex; align-items: center; gap: 0.8rem;
  margin-bottom: 1.8rem;
  transition: color 0.3s;
}
.phone-display:hover { color: var(--gloss-hot); }
.phone-display svg { width: 26px; height: 26px; color: var(--gloss); }
.booking-ctas { display: flex; gap: 0.9rem; flex-wrap: wrap; margin-bottom: 2.4rem; }
.booking-owner {
  display: flex; align-items: center; gap: 1rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--border);
}
.owner-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--gloss-deep), var(--gloss));
  color: var(--onyx-deep);
  font-family: var(--font-display); font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.booking-owner .who {
  font-family: var(--font-display);
  font-size: 0.95rem; font-weight: 600; color: var(--chrome);
}
.booking-owner .role {
  font-size: 0.78rem; color: var(--ash);
  letter-spacing: 0.14em; text-transform: uppercase;
}

/* Quote form */
.quote-form {
  background: linear-gradient(165deg, var(--panel-up), var(--panel) 75%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.2rem 2rem;
}
.quote-form h3 {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 700;
  color: var(--chrome);
  margin-bottom: 0.3rem;
}
.quote-form .form-sub { font-size: 0.86rem; color: var(--ash); margin-bottom: 1.6rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.form-field { display: flex; flex-direction: column; gap: 0.35rem; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-family: var(--font-display);
  font-size: 0.64rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ash);
}
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--onyx);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
  color: var(--chrome);
  font-size: 0.94rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  width: 100%;
}
.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239aa2ad' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.4rem;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--ash); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--gloss);
  box-shadow: 0 0 0 3px var(--gloss-pale);
}
.form-hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; pointer-events: none; }
.quote-form .btn { width: 100%; margin-top: 1.1rem; }
#qf-status { margin-top: 0.9rem; font-size: 0.86rem; min-height: 1.3em; }

/* ══════════════════════════════════════════════════════════════
   Team
══════════════════════════════════════════════════════════════ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.team-card {
  background: linear-gradient(160deg, var(--panel-up), var(--panel) 70%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.8rem;
  text-align: center;
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease);
}
.team-card:hover { transform: translateY(-4px); border-color: var(--border-gloss); }
.team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  margin: 0 auto 1.2rem;
  background: linear-gradient(140deg, var(--graphite), var(--carbon));
  border: 1px solid var(--border-bright);
  color: var(--gloss);
  font-family: var(--font-display); font-weight: 700; font-size: 1.35rem;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.4s, box-shadow 0.4s;
}
.team-card:hover .team-avatar {
  border-color: var(--border-gloss);
  box-shadow: 0 0 28px var(--gloss-glow);
}
.team-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 700;
  color: var(--chrome);
  margin-bottom: 0.25rem;
}
.team-card .role {
  font-family: var(--font-display);
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gloss);
}
.team-statement {
  max-width: 640px; margin: 0 auto;
  text-align: center;
  font-size: 1.05rem;
  color: var(--steel);
  line-height: 1.85;
}
.team-statement strong { color: var(--silver); font-weight: 500; }

/* ══════════════════════════════════════════════════════════════
   Footer
══════════════════════════════════════════════════════════════ */
footer {
  padding: 4rem clamp(1.5rem, 5vw, 4rem) 3rem;
  background: var(--onyx-deep);
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer-inner { max-width: 760px; margin: 0 auto; }
.footer-mark {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--chrome);
  margin-bottom: 0.55rem;
  display: flex; align-items: center; justify-content: center; gap: 0.7rem;
}
.footer-mark svg { width: 22px; height: 22px; }
.footer-tag { font-size: 0.85rem; color: var(--ash); margin-bottom: 1.2rem; }
.footer-phone {
  font-family: var(--font-mono);
  font-size: 0.95rem; color: var(--gloss);
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 0.4rem 1rem;
  margin-bottom: 1.2rem;
  transition: color 0.3s;
}
.footer-phone:hover { color: var(--gloss-hot); }
.footer-build {
  font-size: 0.75rem; color: var(--ash);
  padding-top: 1.4rem; border-top: 1px solid var(--border);
}
.footer-build a { color: var(--steel); transition: color 0.3s; }
.footer-build a:hover { color: var(--gloss); }

/* ══════════════════════════════════════════════════════════════
   Responsive
══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .booking-grid { grid-template-columns: 1fr; }
  .mobile-note { grid-template-columns: 1fr; text-align: center; }
  .mobile-note-icons { justify-content: center; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .form-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 7rem; }
  .hero-ctas .btn { width: 100%; }
  .booking-ctas { flex-direction: column; }
  .booking-ctas .btn { width: 100%; }

  /* Pricing matrix compresses */
  .constellation-stage { height: clamp(140px, 20vh, 180px); }
  .pm-service { padding: 0.9rem 0.5rem 0.9rem 0.9rem; font-size: 0.84rem; max-width: none; }
  .pm-service small { font-size: 0.68rem; }
  .pm-price { padding: 0.9rem 0.35rem; font-size: 0.92rem; }
  .pm-price .from { display: block; margin: 0 0 0.1rem; }
  .price-matrix .pm-corner { padding-left: 0.9rem; }
  .pm-vehicle { padding: 0.35rem 0.4rem; font-size: 0.66rem; letter-spacing: 0.08em; }
  .pm-vehicle svg { width: 28px; height: 15px; }
  .pm-addons { padding: 0.7rem 0.5rem; }
  .pm-addons .addon-chip { margin-bottom: 0.35rem; }
  .featured-tag { display: block; margin: 0.3rem 0 0; width: fit-content; }
}
