/* =========================================================
   SHRI RAM TRAVELS — Cinematic corporate luxury
   Palette: deep midnight charcoal + warm 24k gold + ivory
   Typography: Fraunces (display, italic accents) + Manrope (body)
   ========================================================= */

:root {
  --ink:        #0a0d14;
  --ink-2:      #0e1320;
  --ink-3:      #141a28;
  --surface:    #161c2b;
  --surface-2:  #1c2336;
  --line:       #2a3144;
  --line-2:     #3a4258;

  --gold:       #d4a857;
  --gold-bright:#e8c574;
  --gold-deep:  #a8823f;
  --saffron:    #d96f3a;

  --ivory:      #f4ede0;
  --cream:      #e9e1d2;
  --muted:      #9a9382;
  --muted-2:    #6b6657;

  --serif:  "Fraunces", "Cormorant Garamond", Georgia, serif;
  --sans:   "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --max:    1280px;
  --pad-x:  clamp(20px, 5vw, 64px);

  --radius: 14px;
  --radius-lg: 20px;

  --ease:   cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

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

.italic { font-family: var(--serif); font-style: italic; font-weight: 400; }

/* ---------- grain overlay ---------- */
.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 60;
  opacity: .07;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .55 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px var(--pad-x);
  transition: background .4s var(--ease), backdrop-filter .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(10, 13, 20, 0.78);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: rgba(212, 168, 87, 0.12);
}

.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--serif);
}
.brand-mark {
  display: inline-block;
  width: 42px; height: 42px;
  flex: 0 0 42px;
  filter: drop-shadow(0 6px 14px rgba(212,168,87,.18));
  transition: transform .5s var(--ease), filter .5s var(--ease);
}
.brand-mark svg { display: block; width: 100%; height: 100%; }
.brand:hover .brand-mark {
  transform: rotate(-4deg) scale(1.04);
  filter: drop-shadow(0 8px 18px rgba(212,168,87,.32));
}
.brand-mark-lg { width: 56px; height: 56px; flex: 0 0 56px; }

.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -.005em;
  color: var(--ivory);
}
.brand-name em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-bright);
  margin-left: 2px;
}
.brand-sub  {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
  font-family: var(--sans);
  font-weight: 500;
}

.nav-links {
  display: flex; gap: 28px; justify-content: center;
}
.nav-links a {
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cream);
  position: relative;
  padding: 6px 0;
  transition: color .3s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  height: 1px; width: 0;
  background: var(--gold);
  transition: width .35s var(--ease);
}
.nav-links a:hover { color: var(--gold-bright); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; letter-spacing: 1.2px;
  padding: 10px 16px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  color: var(--ivory);
  transition: all .3s var(--ease);
}
.nav-cta:hover { border-color: var(--gold); color: var(--gold-bright); }
.nav-cta .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(212,168,87,.7);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(212,168,87,.7); }
  70% { box-shadow: 0 0 0 9px rgba(212,168,87,0); }
  100% { box-shadow: 0 0 0 0 rgba(212,168,87,0); }
}

.nav-toggle {
  display: none;
  background: none; border: none;
  width: 40px; height: 40px;
  flex-direction: column; gap: 5px;
  align-items: center; justify-content: center;
  cursor: pointer;
}
.nav-toggle span {
  width: 22px; height: 1.5px; background: var(--cream);
  transition: all .3s var(--ease);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px var(--pad-x) 80px;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute; inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 90% 60% at 50% 100%, rgba(212,168,87,.18), transparent 60%),
    radial-gradient(ellipse 60% 45% at 80% 20%, rgba(217,111,58,.08), transparent 60%),
    linear-gradient(180deg, #06080d 0%, #0a0d14 50%, #0e1320 100%);
}

/* perspective road */
.road-perspective {
  position: absolute;
  left: 50%;
  bottom: -10%;
  width: 220%;
  height: 70%;
  transform: translateX(-50%) perspective(800px) rotateX(72deg);
  background-image:
    linear-gradient(90deg, transparent 49.7%, rgba(212,168,87,.35) 49.7%, rgba(212,168,87,.35) 50.3%, transparent 50.3%),
    linear-gradient(0deg, rgba(212,168,87,.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,168,87,.05) 1px, transparent 1px);
  background-size: 100% 100%, 100% 60px, 80px 100%;
  mask-image: linear-gradient(180deg, transparent 0%, #000 25%, #000 75%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 25%, #000 75%, transparent 100%);
  animation: roadMove 4s linear infinite;
  opacity: .65;
}
@keyframes roadMove {
  from { background-position: 0 0, 0 0, 0 0; }
  to   { background-position: 0 0, 0 60px, 0 0; }
}

/* headlight streaks */
.streak {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  filter: blur(.4px);
  opacity: 0;
  animation: streak 6s var(--ease) infinite;
}
.streak-1 { top: 22%; width: 40%; left: -40%; animation-delay: 0s; }
.streak-2 { top: 38%; width: 55%; left: -55%; animation-delay: 1.6s; }
.streak-3 { top: 58%; width: 30%; left: -30%; animation-delay: 3.2s; height: 2px; }
.streak-4 { top: 76%; width: 50%; left: -50%; animation-delay: 4.4s; }
@keyframes streak {
  0%   { transform: translateX(0);     opacity: 0;   }
  10%  { opacity: .9; }
  60%  { opacity: .7; }
  100% { transform: translateX(220vw); opacity: 0;   }
}

.vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, transparent 40%, rgba(6,8,13,.85) 100%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  position: relative;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  font-weight: 500;
}
.hero-eyebrow .rule {
  width: 56px; height: 1px; background: var(--gold);
  display: inline-block;
}

.hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 6.4vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.022em;
  margin: 0 0 38px;
  color: var(--ivory);
  font-variation-settings: "opsz" 144, "SOFT" 50;
  max-width: 16ch;
}
.hero-title .line {
  display: block;
  overflow: hidden;
  padding-bottom: .08em;
}
.hero-title .word {
  display: inline-block;
  transform: translateY(105%);
}
.no-anim .hero-title .word { transform: none; }
.hero-title .word.italic {
  color: var(--gold-bright);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.hero-tagline {
  font-size: clamp(15px, 1.4vw, 19px);
  max-width: 580px;
  color: var(--cream);
  opacity: .85;
  margin: 0 0 48px;
  line-height: 1.55;
}

.hero-ctas {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 80px;
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .35s var(--ease);
  font-family: var(--sans);
  position: relative;
  overflow: hidden;
}
.btn-gold {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: var(--ink);
  box-shadow: 0 12px 30px -12px rgba(212,168,87,.55);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -10px rgba(212,168,87,.7);
}
.btn-ghost {
  border-color: var(--line-2);
  color: var(--ivory);
  background: rgba(255,255,255,.02);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
  background: rgba(212,168,87,.06);
}

.hero-meta {
  display: flex; gap: 56px; flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(212,168,87,.18);
  max-width: 720px;
}
.hero-meta > div {
  display: flex; flex-direction: column; gap: 6px;
}
.hero-meta .num {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--gold-bright);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.005em;
  white-space: nowrap;
}
.hero-meta span:not(.num) {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  animation: floatY 2.4s var(--ease) infinite;
}
@keyframes floatY {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* =========================================================
   SECTION SHARED
   ========================================================= */
section { padding: 140px var(--pad-x); position: relative; }

.section-head {
  max-width: var(--max);
  margin: 0 auto 80px;
}
.section-head.center { text-align: center; }
.section-head.center .kicker { justify-content: center; }
.kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 600;
}
.kicker::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
  color: var(--ivory);
  max-width: 18ch;
}
.section-head.center .section-title { margin-left: auto; margin-right: auto; }
.section-lede {
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--cream);
  opacity: .8;
  max-width: 56ch;
  margin: 0;
  line-height: 1.6;
}

/* reveal default — only hides if JS-driven reveal is enabled (.js-reveal on body) */
.js-reveal .reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.js-reveal .reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   ABOUT — STATS
   ========================================================= */
.about {
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(212,168,87,.06), transparent 60%),
    var(--ink);
}
.stats {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,.015), transparent);
  overflow: hidden;
}
.stat {
  padding: 48px 36px 40px;
  border-right: 1px solid var(--line);
  position: relative;
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 400;
  color: var(--gold-bright);
  line-height: 1;
  letter-spacing: -.03em;
}
.stat-suffix {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin: 14px 0 22px;
  font-weight: 600;
}
.stat p {
  font-size: 14px;
  color: var(--cream);
  opacity: .8;
  margin: 0;
  line-height: 1.55;
}

/* =========================================================
   SERVICES — editorial numbered list
   ========================================================= */
.services {
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.service-list {
  max-width: var(--max);
  margin: 0 auto;
  display: flex; flex-direction: column;
  gap: 0;
}
.service {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
  align-items: start;
  padding: 56px 0;
  border-top: 1px solid var(--line);
  position: relative;
  transition: padding .5s var(--ease), background .5s var(--ease);
}
.service:last-child { border-bottom: 1px solid var(--line); }
.service:hover {
  background: linear-gradient(90deg, rgba(212,168,87,.04), transparent 60%);
}
.service-num {
  font-family: var(--serif);
  font-size: clamp(60px, 8vw, 120px);
  font-weight: 300;
  line-height: 1;
  color: var(--gold);
  font-style: italic;
  letter-spacing: -.04em;
  font-variation-settings: "opsz" 144;
  transition: color .3s var(--ease), transform .5s var(--ease);
}
.service:hover .service-num {
  color: var(--gold-bright);
  transform: translateX(8px);
}
.service-body h3 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -.015em;
  margin: 6px 0 16px;
  color: var(--ivory);
}
.service-body p {
  font-size: 16px;
  color: var(--cream);
  opacity: .82;
  margin: 0 0 22px;
  max-width: 60ch;
  line-height: 1.65;
}
.service-tags {
  list-style: none;
  display: flex; flex-wrap: wrap; gap: 8px;
  padding: 0; margin: 0;
}
.service-tags li {
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
  transition: all .3s var(--ease);
}
.service:hover .service-tags li {
  border-color: rgba(212,168,87,.4);
  color: var(--cream);
}

/* =========================================================
   FLEET
   ========================================================= */
.fleet {
  background:
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(212,168,87,.06), transparent 60%),
    var(--ink);
}
.fleet-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.car {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255,255,255,.02), transparent 50%),
    rgba(20, 26, 40, 0.5);
  transition: transform .5s var(--ease), border-color .5s var(--ease), box-shadow .5s var(--ease);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.car::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 60% at 50% 0%, rgba(212,168,87,.08), transparent 70%);
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
  z-index: 1;
}
.car:hover {
  transform: translateY(-4px);
  border-color: rgba(212,168,87,.5);
  box-shadow: 0 24px 60px -24px rgba(212,168,87,.25);
}
.car:hover::before { opacity: 1; }

.car-media {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(212,168,87,.08), transparent 70%),
    linear-gradient(180deg, #0d121d, #161c2b);
  border-bottom: 1px solid var(--line);
}
.car-media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 55%, rgba(10,13,20,.55) 100%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(10,13,20,.4), transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.car-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s var(--ease), filter .6s var(--ease);
  filter: saturate(.92) contrast(1.02);
}
.car:hover .car-media img {
  transform: scale(1.06);
  filter: saturate(1.05) contrast(1.05);
}

.car-body {
  padding: 26px 26px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
  z-index: 2;
}

.car-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  padding: 5px 10px;
  border: 1px solid rgba(212,168,87,.3);
  border-radius: 4px;
  background: rgba(212,168,87,.05);
}
.car-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -.015em;
  line-height: 1.15;
  margin: 14px 0 10px;
  color: var(--ivory);
}
.car-desc {
  font-size: 14px;
  color: var(--cream);
  opacity: .8;
  margin: 0 0 22px;
  line-height: 1.6;
  flex: 1;
}
.car-foot {
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--muted);
  display: flex; gap: 8px; flex-wrap: wrap;
}
.dot-sep { opacity: .5; }

/* =========================================================
   CLIENTS
   ========================================================= */
.clients {
  background: var(--ink-2);
  border-top: 1px solid var(--line);
}
.marquee {
  max-width: 100%;
  overflow: hidden;
  margin: 0 calc(var(--pad-x) * -1) 80px;
  padding: 30px 0;
  border-top: 1px solid rgba(212,168,87,.2);
  border-bottom: 1px solid rgba(212,168,87,.2);
  position: relative;
}
.marquee::before, .marquee::after {
  content: "";
  position: absolute; top: 0; bottom: 0; width: 12vw;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0;  background: linear-gradient(90deg, var(--ink-2), transparent); }
.marquee::after  { right: 0; background: linear-gradient(270deg, var(--ink-2), transparent); }

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 64px;
  white-space: nowrap;
  animation: marquee 42s linear infinite;
  padding-right: 64px;
}
.marquee-track .diamond {
  color: var(--gold);
  font-size: 12px;
  opacity: .6;
  transform: translateY(-1px);
}
.marquee-track .logo-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 78px;
  width: 200px;
  padding: 14px 22px;
  background: var(--ivory);
  border-radius: 10px;
  flex-shrink: 0;
  box-shadow: 0 8px 24px -12px rgba(0,0,0,.55);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.marquee-track .logo-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -10px rgba(212,168,87,.35);
}
.marquee-track .logo-item img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.client-cards {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.client-card {
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(20, 26, 40, 0.4);
  transition: all .4s var(--ease);
  display: flex;
  flex-direction: column;
}
.client-card:hover {
  border-color: rgba(212,168,87,.4);
  transform: translateY(-3px);
}
.client-logo {
  height: 76px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  margin-bottom: 22px;
  background: var(--ivory);
  border-radius: 10px;
}
.client-logo img {
  max-height: 100%;
  max-width: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.client-tag {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
}
.client-card h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  margin: 0 0 10px;
  color: var(--ivory);
}
.client-card p {
  font-size: 13px;
  color: var(--cream);
  opacity: .75;
  margin: 0;
  line-height: 1.55;
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact {
  background:
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(212,168,87,.07), transparent 60%),
    var(--ink);
}
.contact-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: stretch;
}
.contact-info {
  display: flex; flex-direction: column;
  gap: 32px;
}
.info-block {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.info-block:first-child { border-top: none; padding-top: 0; }
.info-label {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 600;
}
.info-block p {
  font-size: 17px;
  margin: 0;
  color: var(--cream);
  line-height: 1.6;
  font-family: var(--serif);
  font-weight: 300;
  letter-spacing: -.005em;
}
.link-gold {
  position: relative;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 100% 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: color .3s var(--ease);
}
.link-gold:hover { color: var(--gold-bright); }

.contact-ctas {
  display: flex; gap: 12px; flex-wrap: wrap; margin-top: 12px;
}

.contact-map {
  display: flex; flex-direction: column; gap: 14px;
}
.map-frame {
  position: relative;
  flex: 1;
  min-height: 460px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.map-frame iframe {
  width: 100%; height: 100%;
  position: absolute; inset: 0;
  border: 0;
  filter: grayscale(.6) contrast(.9) brightness(.75);
}
.map-tint {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,13,20,.25), rgba(10,13,20,.05) 40%, rgba(10,13,20,.55)),
    radial-gradient(ellipse 40% 30% at 50% 50%, transparent 30%, rgba(212,168,87,.08) 90%);
  pointer-events: none;
}
.map-caption {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  text-align: right;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  padding: 60px var(--pad-x) 36px;
  background: var(--ink);
  border-top: 1px solid var(--line);
}
.footer-top {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.footer-brand {
  display: flex; align-items: center; gap: 16px;
}
.footer-name {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ivory);
  font-weight: 500;
  letter-spacing: -.005em;
}
.footer-name em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-bright);
  margin-left: 3px;
}
.footer-sub {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}
.footer-est {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 10px;
  font-weight: 600;
  font-family: var(--sans);
}
.footer-nav { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-nav a {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream);
  opacity: .7;
  transition: all .3s var(--ease);
}
.footer-nav a:hover { color: var(--gold-bright); opacity: 1; }

.footer-rule {
  max-width: var(--max);
  height: 1px;
  margin: 36px auto 24px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .5px;
}

/* floating WA */
.fab-whatsapp {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  z-index: 55;
  box-shadow: 0 12px 32px -10px rgba(37, 211, 102, .55), 0 0 0 0 rgba(37, 211, 102, .55);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  animation: pulseWA 3s var(--ease) infinite;
}
.fab-whatsapp:hover { transform: scale(1.06) translateY(-2px); }
@keyframes pulseWA {
  0%   { box-shadow: 0 12px 32px -10px rgba(37, 211, 102, .55), 0 0 0 0   rgba(37, 211, 102, .45); }
  70%  { box-shadow: 0 12px 32px -10px rgba(37, 211, 102, .55), 0 0 0 18px rgba(37, 211, 102, 0);   }
  100% { box-shadow: 0 12px 32px -10px rgba(37, 211, 102, .55), 0 0 0 0   rgba(37, 211, 102, 0);   }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .client-cards { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .map-frame { min-height: 380px; }
  .service { grid-template-columns: 120px 1fr; gap: 32px; }
}

@media (max-width: 720px) {
  section { padding: 90px var(--pad-x); }
  .nav { grid-template-columns: 1fr auto; gap: 12px; padding: 14px var(--pad-x); }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav.menu-open .nav-links {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(10, 13, 20, 0.96);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
    padding: 12px var(--pad-x) 24px;
  }
  .nav.menu-open .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero { padding: 120px var(--pad-x) 60px; min-height: 92vh; }
  .hero-meta { gap: 28px; }
  .hero-meta > div { flex: 1 1 40%; }

  .stats { grid-template-columns: 1fr; }
  .stat { border-right: none !important; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: none; }

  .service { grid-template-columns: 1fr; gap: 12px; padding: 40px 0; }
  .service-num { font-size: 64px; }

  .fleet-grid { grid-template-columns: 1fr; }
  .client-cards { grid-template-columns: 1fr; }
  .marquee-track { font-size: 28px; gap: 24px; }

  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .road-perspective, .streak, .fab-whatsapp { animation: none; }
  .marquee-track { animation: none; transform: translateX(-15%); }
}
