/* LA Groundbreakers — Luxury Dark Theme */
:root {
  --gold: #A9855C;
  --gold-2: #c9a06f;
  --gold-soft: rgba(169, 133, 92, 0.16);
  --gold-line: rgba(169, 133, 92, 0.28);
  --bg: #000;
  --bg-2: #060708;
  --bg-3: #0c0d10;
  --bg-card: #0a0b0d;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: #ffffff;
  --text-dim: rgba(255, 255, 255, 0.62);
  --text-mute: rgba(255, 255, 255, 0.42);
  --display: "Instrument Serif", "Cormorant Garamond", serif;
  --serif: "Instrument Serif", "Cormorant Garamond", serif;
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;
  --body: "Barlow", "Inter", "Helvetica Neue", Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --container: 1280px;
  --radius: 2px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.65;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold-2); }

/* Typography — Instrument Serif display heads, italic accents, Inter body */
h1, h2 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.028em;
  color: var(--text);
  margin: 0 0 .5em;
  line-height: 0.98;
  text-wrap: balance;
}
h3, h4 {
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--text);
  margin: 0 0 .5em;
  line-height: 1.2;
  text-wrap: balance;
}
h1 { font-size: clamp(54px, 7.2vw, 104px); }
h2 { font-size: clamp(40px, 5.6vw, 76px); }
h3 { font-size: clamp(22px, 1.9vw, 28px); font-family: var(--display); font-weight: 400; line-height: 1.1; letter-spacing: -0.015em; }
h4 { font-size: 13px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; }

h1 em, h2 em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: -0.028em;
}
h3 em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.faded { color: rgba(255, 255, 255, 0.55); }

p { margin: 0 0 1rem; color: var(--text-dim); text-wrap: pretty; font-family: var(--body); font-size: 15px; line-height: 1.65; }
p strong { color: var(--text); font-weight: 600; }

/* Blur-up reveal animation (word by word) */
@keyframes lagbBlurUp {
  0% { filter: blur(10px); opacity: 0; transform: translateY(28px); }
  60% { filter: blur(3px); opacity: 0.6; transform: translateY(-2px); }
  100% { filter: blur(0); opacity: 1; transform: translateY(0); }
}
.blur-in {
  display: inline-block;
  opacity: 0;
}
.blur-in.in {
  animation: lagbBlurUp 0.9s cubic-bezier(.2,.7,.2,1) forwards;
}
.blur-in.in.w { animation-delay: calc(var(--i, 0) * 90ms); }

@keyframes lagbFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; }
.fade-up.in { animation: lagbFadeUp 0.8s cubic-bezier(.2,.7,.2,1) forwards; animation-delay: var(--delay, 0ms); }

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 1.5rem;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold);
}

/* Liquid-glass utility */
.liquid-glass {
  background: rgba(255, 255, 255, 0.01);
  background-blend-mode: luminosity;
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  backdrop-filter: blur(14px) saturate(160%);
  border: none;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.10);
  position: relative;
  overflow: hidden;
}
.liquid-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0.15) 20%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 0) 60%,
    rgba(255, 255, 255, 0.15) 80%,
    rgba(255, 255, 255, 0.45) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

/* Layout */
.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
@media (max-width: 720px) { .container { padding: 0 20px; } }

section { padding: clamp(80px, 11vw, 160px) 0; position: relative; background: #000; }
section + section { border-top: 1px solid rgba(255, 255, 255, 0.04); }

.section-head { max-width: 880px; margin-bottom: clamp(56px, 7vw, 96px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head.center .eyebrow::after {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold);
  margin-left: 12px;
}
.section-head h2 { line-height: 0.98; }
.section-head h2 + .lead { margin-top: 24px; }

.lead { font-size: 18px; color: rgba(255, 255, 255, 0.62); max-width: 60ch; line-height: 1.55; font-family: var(--body); }

/* Statement section — Blacklane "Step in. Breathe out." pattern */
.statement {
  position: relative;
  padding: clamp(96px, 14vw, 180px) 0;
  text-align: center;
  background: #000;
  overflow: hidden;
}
.statement::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(169,133,92,0.10) 0%, transparent 50%),
    radial-gradient(ellipse at 30% 80%, rgba(169,133,92,0.05), transparent 50%);
  pointer-events: none;
}
.statement > .container { position: relative; }
.statement .eyebrow { justify-content: center; margin-bottom: 28px; }
.statement .eyebrow::before { display: none; }
.statement .eyebrow::after {
  content: ""; width: 24px; height: 1px; background: var(--gold); margin-left: 12px;
}
.statement h2 {
  font-size: clamp(48px, 7.5vw, 104px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
  max-width: 18ch;
  margin-inline: auto;
}
.statement .lead {
  font-size: clamp(18px, 1.6vw, 22px);
  max-width: 56ch;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.45;
}

/* Buttons — white pill primary, liquid-glass ghost */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  text-transform: none;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}
.btn-primary {
  background: #ffffff;
  color: #000000;
}
.btn-primary:hover {
  transform: scale(1.03);
  box-shadow: 0 0 32px 4px rgba(255, 255, 255, 0.22);
  background: #ffffff;
  color: #000000;
}
.btn-primary:active { transform: scale(0.97); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.01);
  background-blend-mode: luminosity;
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  backdrop-filter: blur(14px) saturate(160%);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  overflow: hidden;
}
.btn-ghost::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0.15) 20%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 0) 60%,
    rgba(255, 255, 255, 0.15) 80%,
    rgba(255, 255, 255, 0.45) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.btn-ghost:hover { color: #ffffff; }
.btn .arrow { display: inline-block; transition: transform .25s ease; font-weight: 400; }
.btn:hover .arrow { transform: translateX(3px); }

.btn-pill-sm {
  padding: 10px 18px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
}

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 80;
  background: transparent;
  border-bottom: none;
  transition: background .25s ease, padding .25s ease;
}
.site-header.scrolled {
  background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 100%);
}
.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 24px 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.site-header.scrolled .header-inner { padding-top: 16px; padding-bottom: 16px; }
@media (max-width: 720px) { .header-inner { padding: 18px 20px; } }

.brand { display: flex; align-items: center; gap: 12px; justify-self: start; }
.brand-logo {
  display: block;
  height: 44px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
}
.site-header.scrolled .brand-logo { height: 38px; }
.brand-logo-sm { height: 36px; }
.brand-logo-footer { height: 64px; max-width: 320px; margin-bottom: 12px; }
@media (max-width: 720px) {
  .brand-logo { height: 32px; max-width: 180px; }
  .site-header.scrolled .brand-logo { height: 30px; }
}
.brand-mark {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1;
}
.brand-mark .accent { color: var(--gold); }
.brand-sub {
  font-size: 9px;
  letter-spacing: 0.32em;
  color: var(--text-mute);
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}

/* Pill nav — glass without clipping (so dropdowns can escape) */
.nav {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 6px;
  border-radius: 999px;
  justify-self: center;
  position: relative;
}
.glass-pill {
  background: rgba(255, 255, 255, 0.01);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  backdrop-filter: blur(14px) saturate(160%);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.10);
}
.glass-pill::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0.15) 20%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 0) 60%,
    rgba(255, 255, 255, 0.15) 80%,
    rgba(255, 255, 255, 0.45) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.nav-item { position: relative; display: flex; }
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 999px;
  transition: color .2s ease, background .2s ease;
}
.nav-link:hover { color: #fff; background: rgba(255, 255, 255, 0.06); }
.nav-link.active { color: #fff; background: rgba(255, 255, 255, 0.08); }
.nav-link .caret { font-size: 8px; opacity: .6; }

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 240px;
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transition: all .2s ease;
  border-radius: 18px;
  background: rgba(10, 10, 12, 0.92);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  backdrop-filter: blur(20px) saturate(160%);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.10),
    0 30px 60px rgba(0, 0, 0, 0.5);
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: block;
  padding: 10px 14px;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
}
.dropdown a:hover { background: rgba(255, 255, 255, 0.08); color: #fff; }

.header-cta { display: flex; gap: 12px; align-items: center; justify-self: end; }
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  padding: 9px 16px;
  border-radius: 999px;
  transition: color .2s ease, background .2s ease;
}
.header-phone:hover { color: #fff; background: rgba(255, 255, 255, 0.06); }
.header-phone .ico { color: var(--gold); }
.header-cta .btn-pill-sm { padding: 10px 18px; }

.hamburger {
  display: none;
  background: rgba(255, 255, 255, 0.01);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  backdrop-filter: blur(14px) saturate(160%);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.10);
  color: var(--text);
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  border: none;
}
.hamburger::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(180deg, rgba(255,255,255,0.45), rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.45));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.hamburger span {
  display: block;
  width: 16px;
  height: 1px;
  background: var(--text);
  position: relative;
}
.hamburger span::before,
.hamburger span::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: var(--text);
}
.hamburger span::before { top: -5px; }
.hamburger span::after { top: 5px; }

@media (max-width: 1080px) {
  .nav, .header-cta .btn, .header-phone { display: none; }
  .header-inner { grid-template-columns: auto 1fr; }
  .hamburger { display: inline-flex; justify-self: end; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 90;
  padding: 28px 24px 100px;
  overflow-y: auto;
  transform: translateY(-100%);
  transition: transform .35s cubic-bezier(.7,.0,.3,1);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}
.mobile-close {
  width: 44px; height: 44px;
  background: rgba(255, 255, 255, 0.04);
  border: none;
  color: var(--text);
  font-size: 18px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}
.mobile-section { margin-bottom: 8px; }
.mobile-section > a, .mobile-section > .mobile-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 18px 0;
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--text);
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.mobile-toggle .plus { color: rgba(255,255,255,0.6); font-size: 16px; transition: transform .25s ease; }
.mobile-toggle.open .plus { transform: rotate(45deg); color: var(--gold); }
.mobile-sub {
  display: none;
  padding: 6px 0 14px;
}
.mobile-sub.open { display: block; }
.mobile-sub a {
  display: block;
  padding: 10px 0 10px 16px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  margin-left: 4px;
}
.mobile-cta {
  margin-top: 32px;
  display: grid;
  gap: 12px;
}
.mobile-cta .btn { width: 100%; padding: 16px; }

/* Sticky mobile bottom bar */
.mobile-bottom {
  display: none;
  position: fixed;
  bottom: 12px; left: 12px; right: 12px;
  z-index: 70;
  padding: 6px;
  gap: 6px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  backdrop-filter: blur(20px) saturate(160%);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.1),
    0 10px 30px rgba(0, 0, 0, 0.6);
}
.mobile-bottom .btn { flex: 1; padding: 12px 12px; font-size: 12px; border-radius: 999px; }
@media (max-width: 720px) {
  .mobile-bottom { display: flex; }
  body { padding-bottom: 84px; }
}

/* Hero — cinematic two-line treatment */
.hero {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  overflow: hidden;
  border-top: none;
  text-align: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("hero.jpg?v=2");
  background-size: cover;
  background-position: center 60%;
  background-repeat: no-repeat;
  transform: scale(1.06);
  transform-origin: center;
  z-index: -2;
  filter: saturate(108%) contrast(102%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center 40%, rgba(0,0,0,0.20) 0%, rgba(0,0,0,0.45) 60%, rgba(0,0,0,0.65) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 35%, rgba(0,0,0,0.30) 75%, rgba(0,0,0,0.55) 100%);
  z-index: -1;
}
.hero-inner {
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(54px, 7.6vw, 108px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 0;
  text-wrap: balance;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}
.hero h1 .line { display: block; }
.hero h1 .line-2 {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: -0.025em;
}
.hero-cta {
  display: inline-flex;
  gap: 12px;
  margin: 48px 0 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-tag {
  max-width: 620px;
  margin: 0 auto;
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.6;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
}
.hero-tag .faded { color: rgba(255, 255, 255, 0.6); }
.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}
.hero-trust .ico { color: var(--gold); font-size: 12px; }

/* Cards & grids */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 32px;
  border-radius: 24px;
  transition: all .3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
.card:hover {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-3px);
}
.card h3 { margin-bottom: 14px; }
.card .num {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
  text-transform: uppercase;
}
.card p { color: rgba(255, 255, 255, 0.6); font-size: 14px; line-height: 1.6; flex: 1; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.06em;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  align-self: flex-start;
}
.card-link::after {
  content: "→";
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--gold);
  font-size: 14px;
  transition: transform .3s ease, background .3s ease, color .3s ease;
}
.card:hover .card-link::after { transform: translateX(4px); background: var(--gold); color: #000; }

/* Service / Fleet cards — image-first editorial */
.service-card, .fleet-card {
  padding: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  transition: all .35s cubic-bezier(.2,.7,.2,1);
  display: flex;
  flex-direction: column;
}
.service-card:hover, .fleet-card:hover {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.045);
  transform: translateY(-4px);
}
.service-card .ph, .fleet-card .ph {
  position: relative;
  background: #0d0e12;
  overflow: hidden;
  margin: 10px 10px 0;
  border-radius: 18px;
  flex-shrink: 0;
}
.service-card .ph { aspect-ratio: 16 / 11; }
.fleet-card .ph   { aspect-ratio: 16 / 11; }
.service-card .ph img, .fleet-card .ph img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(.2,.7,.2,1);
  display: block;
}
.service-card:hover .ph img, .fleet-card:hover .ph img { transform: scale(1.05); }
.service-card .ph::after, .fleet-card .ph::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}
.service-card .ph .lbl, .fleet-card .ph .lbl {
  position: absolute;
  left: 18px;
  bottom: 16px;
  color: rgba(255, 255, 255, 0.95);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  z-index: 1;
}
.service-card .body, .fleet-card .body {
  padding: 26px 28px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-card h3, .fleet-card h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(22px, 1.9vw, 28px);
  letter-spacing: -0.015em;
  line-height: 1.05;
  margin-bottom: 12px;
}
.service-card .body p, .fleet-card .body p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 0;
  flex: 1;
}
.fleet-card .capacity {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}
.service-card .card-link, .fleet-card .card-link {
  margin-top: 22px;
  align-self: flex-start;
}
.service-card .num { padding: 0; }

/* Standalone image figures */
.figure-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #0d0e12;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.figure-image img { width: 100%; height: 100%; display: block; object-fit: cover; }
.figure-image.ar-4-3 { aspect-ratio: 4 / 3; }
.figure-image.ar-3-2 { aspect-ratio: 3 / 2; }
.figure-image.ar-16-9 { aspect-ratio: 16 / 9; }
.figure-image.ar-1 { aspect-ratio: 1 / 1; }

/* Feature inline (numbered features) */
.feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.feature:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
.feature .num {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--gold);
  font-weight: 500;
  text-transform: uppercase;
}
.feature h3 {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  text-transform: none;
}
.feature p { margin: 0; color: rgba(255, 255, 255, 0.62); font-size: 15px; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .feature-grid { grid-template-columns: 1fr; } }
.feature-cell {
  position: relative;
  padding: 36px 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.015);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  backdrop-filter: blur(14px) saturate(160%);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: transform .3s ease, background .3s ease;
}
.feature-cell::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.2px;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.30) 0%,
    rgba(255, 255, 255, 0.10) 25%,
    rgba(255, 255, 255, 0) 50%,
    rgba(255, 255, 255, 0) 70%,
    rgba(255, 255, 255, 0.12) 90%,
    rgba(255, 255, 255, 0.30) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.feature-cell:hover { background: rgba(255, 255, 255, 0.03); transform: translateY(-2px); }
.feature-cell .icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(169, 133, 92, 0.12);
  border: 1px solid rgba(169, 133, 92, 0.45);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 22px;
}
.feature-cell h4 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 22px;
  text-transform: none;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
  color: #fff;
  line-height: 1.1;
}
.feature-cell p { font-size: 14px; color: rgba(255, 255, 255, 0.58); margin: 0; line-height: 1.55; }

/* Quote form */
.quote-section {
  background: #000;
  position: relative;
  overflow: hidden;
}
.quote-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 40%, rgba(169,133,92,0.10), transparent 55%);
  pointer-events: none;
}
.quote-section > .container { position: relative; z-index: 1; }
.quote-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) { .quote-wrap { grid-template-columns: 1fr; gap: 48px; } }
.quote-form {
  position: relative;
  background: rgba(255, 255, 255, 0.015);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  backdrop-filter: blur(16px) saturate(160%);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 44px;
  overflow: hidden;
}
.quote-form::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.2px;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.30) 0%,
    rgba(255, 255, 255, 0.10) 25%,
    rgba(255, 255, 255, 0) 50%,
    rgba(255, 255, 255, 0.10) 80%,
    rgba(255, 255, 255, 0.30) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.quote-form > * { position: relative; }
@media (max-width: 580px) { .quote-form { padding: 28px; border-radius: 20px; } }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 580px) { .form-grid { grid-template-columns: 1fr; } .form-grid .full { grid-column: auto; } }

.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}
.field label .req { color: var(--gold); }
.field input,
.field select,
.field textarea {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 14px 16px;
  font-family: var(--body);
  font-size: 15px;
  font-weight: 400;
  outline: none;
  transition: border-color .2s ease, background .2s ease;
  border-radius: 12px;
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: rgba(169, 133, 92, 0.6); background: rgba(255, 255, 255, 0.05); }
.field input::placeholder, .field textarea::placeholder { color: rgba(255, 255, 255, 0.3); }
.field textarea { resize: vertical; min-height: 100px; }
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%); background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%; background-size: 6px 6px; background-repeat: no-repeat; padding-right: 36px; }
.form-foot { margin-top: 28px; }
.form-foot .btn { width: 100%; padding: 16px; }
.form-note { margin-top: 16px; font-size: 12px; color: rgba(255, 255, 255, 0.4); text-align: center; font-family: var(--body); }

/* Area tiles */
.area-group { margin-bottom: 48px; }
.area-group h4 {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.area-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
@media (max-width: 900px) { .area-tiles { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .area-tiles { grid-template-columns: 1fr; } }
.area-tile {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-radius: 999px;
  color: #fff;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.005em;
  transition: all .25s ease;
  background: rgba(255, 255, 255, 0.015);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  backdrop-filter: blur(14px) saturate(160%);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.area-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.2px;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.30),
    rgba(255, 255, 255, 0.05) 50%,
    rgba(255, 255, 255, 0.20));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.area-tile:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  transform: translateY(-1px);
}
.area-tile .ar {
  color: var(--gold);
  opacity: .7;
  font-size: 14px;
  transition: transform .25s ease, opacity .25s ease;
}
.area-tile:hover .ar { transform: translateX(4px); opacity: 1; }

/* FAQ */
.faq {
  position: relative;
  background: rgba(255, 255, 255, 0.012);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  backdrop-filter: blur(12px) saturate(160%);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.06);
  border-radius: 28px;
  overflow: hidden;
  padding: 0 32px;
}
.faq::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.2px;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.25) 0%,
    rgba(255, 255, 255, 0.08) 30%,
    rgba(255, 255, 255, 0) 50%,
    rgba(255, 255, 255, 0.08) 80%,
    rgba(255, 255, 255, 0.25) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.faq-item { border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  background: transparent;
  border: none;
  color: #fff;
  text-align: left;
  padding: 28px 0;
  cursor: pointer;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.2;
  transition: color .2s ease;
}
.faq-q:hover { color: var(--gold); }
.faq-q .plus {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: transform .25s ease, background .25s ease, color .25s ease;
  font-weight: 300;
  font-size: 20px;
}
.faq-item.open .faq-q .plus { transform: rotate(45deg); background: var(--gold); color: #000; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-a-inner { padding: 0 0 28px; max-width: 80ch; }
.faq-a-inner p { color: rgba(255, 255, 255, 0.62); margin: 0; line-height: 1.65; }
.faq-item.open .faq-a { max-height: 600px; }

/* Reviews */
.review-card {
  position: relative;
  background: rgba(255, 255, 255, 0.015);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  backdrop-filter: blur(14px) saturate(160%);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform .3s ease, background .3s ease;
  overflow: hidden;
}
.review-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.2px;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.30) 0%,
    rgba(255, 255, 255, 0.10) 25%,
    rgba(255, 255, 255, 0) 50%,
    rgba(255, 255, 255, 0) 70%,
    rgba(255, 255, 255, 0.12) 90%,
    rgba(255, 255, 255, 0.30) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.review-card:hover { background: rgba(255, 255, 255, 0.03); transform: translateY(-3px); }
.review-card .stars { color: var(--gold); letter-spacing: 3px; font-size: 14px; }
.review-card .review {
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.35;
  color: #fff;
  font-style: italic;
  margin: 0;
  letter-spacing: -0.005em;
}
.review-card .who {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.review-card .who strong { color: #fff; font-weight: 500; }

/* Final CTA strip */
.cta-strip {
  position: relative;
  background: #000;
  padding: clamp(80px, 11vw, 140px) 0;
  text-align: center;
  overflow: hidden;
}
.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(169,133,92,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 30%, rgba(169,133,92,0.08), transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(169,133,92,0.06), transparent 50%);
  z-index: 0;
}
.cta-strip > .container { position: relative; z-index: 1; }
.cta-strip h2 {
  font-size: clamp(34px, 4.6vw, 56px);
  margin-bottom: 18px;
  text-wrap: balance;
}
.cta-strip h2 em { font-family: var(--display); font-style: italic; color: rgba(255, 255, 255, 0.65); }
.cta-strip p { font-size: 17px; margin-bottom: 36px; color: rgba(255, 255, 255, 0.62); max-width: 56ch; margin-inline: auto; }
.cta-strip .actions { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* Footer */
.site-footer {
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 56px 0 24px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand-link { display: inline-block; }
.brand-logo-footer { height: 56px; max-width: 300px; margin: 0; }
@media (max-width: 720px) { .brand-logo-footer { height: 44px; } }
.footer-tag {
  font-family: var(--display);
  font-size: 20px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  max-width: 320px;
  text-align: right;
}
.footer-tag em {
  font-style: italic;
  color: var(--gold);
}
@media (max-width: 720px) { .footer-tag { text-align: left; font-size: 17px; } }

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  align-items: start;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px 20px; } }

.footer-col h5 {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  margin: 0 0 18px;
  padding: 0;
  border: none;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col li { margin: 0; }
.footer-col li.plain { color: rgba(255, 255, 255, 0.55); font-size: 12px; font-family: var(--body); }
.footer-col li.plain.accent { color: var(--gold); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500; margin-top: 4px; }
.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-family: var(--body);
  transition: color .2s ease;
}
.footer-col a:hover { color: var(--gold); }
.footer-col .more { color: rgba(255, 255, 255, 0.5); font-style: italic; font-family: var(--display); font-size: 14px; }
.footer-col .more:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  font-size: 10px;
  font-family: var(--sans);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}
.footer-bottom .legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom a { color: rgba(255, 255, 255, 0.42); }
.footer-bottom a:hover { color: var(--gold); }

/* Page hero (inner pages) — full bleed cinematic */
.page-hero {
  position: relative;
  isolation: isolate;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  padding: 180px 0 80px;
  overflow: hidden;
  background: #000;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-img, url("hero.jpg?v=2"));
  background-size: cover;
  background-position: var(--hero-pos, center 55%);
  background-repeat: no-repeat;
  transform: scale(1.04);
  z-index: -2;
  filter: saturate(105%) contrast(102%);
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center 40%, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.35) 60%, rgba(0,0,0,0.62) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.15) 30%, rgba(0,0,0,0.25) 70%, rgba(0,0,0,0.78) 100%);
  z-index: -1;
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.025em;
  font-size: clamp(48px, 6.4vw, 92px);
  line-height: 1.02;
  margin-bottom: 22px;
  text-wrap: balance;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}
.page-hero h1 em {
  font-family: var(--display);
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
  letter-spacing: -0.025em;
}
.page-hero .lead {
  font-size: 17px;
  max-width: 64ch;
  color: rgba(255, 255, 255, 0.82);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
}
.crumbs {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 28px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.crumbs a { color: rgba(255, 255, 255, 0.55); }
.crumbs a:hover { color: #fff; }
.crumbs .sep { color: var(--gold); opacity: .6; }

/* Vehicle spec table */
.spec-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.015);
}
.spec-table th, .spec-table td {
  padding: 20px 22px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.spec-table th {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  background: rgba(255, 255, 255, 0.02);
}
.spec-table td { color: rgba(255, 255, 255, 0.65); font-family: var(--body); }
.spec-table td:first-child { color: #fff; font-weight: 500; }
.spec-table tr:last-child td { border-bottom: none; }
.spec-table tr:hover td { background: rgba(255, 255, 255, 0.02); }
@media (max-width: 720px) {
  .spec-table thead { display: none; }
  .spec-table, .spec-table tbody, .spec-table tr, .spec-table td { display: block; width: 100%; }
  .spec-table tr { border-bottom: 1px solid var(--line); padding: 16px 0; }
  .spec-table td { padding: 6px 16px; border: none; }
  .spec-table td:first-child { font-size: 1.05rem; margin-bottom: 4px; }
  .spec-table td::before { content: attr(data-label); display: block; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 2px; }
  .spec-table td:first-child::before { display: none; }
}

/* Prose blocks */
.prose { max-width: 76ch; }
.prose h2 { margin-top: 2.2em; }
.prose h3 {
  margin-top: 2em;
  font-family: var(--sans);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--gold);
  font-weight: 500;
}
.prose p { color: rgba(255, 255, 255, 0.65); font-size: 16px; line-height: 1.7; }
.prose ul { padding: 0; margin: 0 0 1.5em; list-style: none; }
.prose ul li {
  position: relative;
  padding: 14px 0 14px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.55;
}
.prose ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 23px;
  width: 14px;
  height: 1px;
  background: var(--gold);
}
.prose ul li strong { color: #fff; font-weight: 500; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; gap: 40px; } }

.route-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  font-size: 15px;
  color: var(--text-dim);
  line-height: 2;
}
.route-list .r {
  padding: 6px 14px;
  border: 1px solid var(--line);
  margin-right: 8px;
  margin-bottom: 8px;
  transition: all .2s ease;
}
.route-list .r:hover { border-color: var(--gold-line); color: var(--text); }

/* Tag chips for neighborhoods inline */
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; }
.tag {
  display: inline-flex;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--body);
  font-size: 13px;
  letter-spacing: 0;
  background: rgba(255, 255, 255, 0.02);
  transition: all .2s ease;
}
.tag:hover { border-color: rgba(255, 255, 255, 0.22); color: #fff; background: rgba(255, 255, 255, 0.05); }

.route-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}
.route-list .r {
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  transition: all .2s ease;
  font-family: var(--body);
  white-space: nowrap;
}
.route-list .r:hover { border-color: rgba(255, 255, 255, 0.18); color: #fff; }

/* Contact cards */
.contact-card {
  position: relative;
  background: rgba(255, 255, 255, 0.015);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  backdrop-filter: blur(14px) saturate(160%);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px;
  text-align: left;
  overflow: hidden;
  transition: transform .3s ease, background .3s ease;
}
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.2px;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.30) 0%,
    rgba(255, 255, 255, 0.10) 25%,
    rgba(255, 255, 255, 0) 50%,
    rgba(255, 255, 255, 0) 70%,
    rgba(255, 255, 255, 0.12) 90%,
    rgba(255, 255, 255, 0.30) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.contact-card:hover { background: rgba(255, 255, 255, 0.03); transform: translateY(-3px); }
.contact-card .ic {
  width: 48px; height: 48px;
  border-radius: 999px;
  background: rgba(169, 133, 92, 0.12);
  border: 1px solid rgba(169, 133, 92, 0.45);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 24px;
  font-size: 18px;
}
.contact-card h4 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 22px;
  text-transform: none;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
  line-height: 1.1;
}
.contact-card p { margin: 0; color: rgba(255, 255, 255, 0.6); }
.contact-card .big {
  color: #fff;
  font-family: var(--display);
  font-style: italic;
  font-size: 24px;
  line-height: 1.3;
}
.contact-card .big a { color: #fff; }
.contact-card .big a:hover { color: var(--gold); }

/* Map */
.map-frame {
  aspect-ratio: 16/7;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(169,133,92,0.05), transparent 60%),
    repeating-linear-gradient(45deg, #0c0d10 0px, #0c0d10 24px, #0e0f12 24px, #0e0f12 48px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Utility */
.split-divider {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 24px 0;
}
.split-divider::before, .split-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}
.split-divider span {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.24em;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  text-transform: uppercase;
}

/* Animations */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .8s ease, transform .8s ease;
  }
  .reveal.in {
    opacity: 1;
    transform: translateY(0);
  }
}
