/* ============================================================
   KARUU TRANSPORT — Design Tokens
   ============================================================ */
:root {
  --navy-950: #060f22;
  --navy-900: #0a1830;
  --navy-850: #0e1e3c;
  --navy-700: #1a3562;
  --navy-500: #2f5590;

  --white: #ffffff;
  --paper: #f6f4ee;
  --paper-alt: #eeebe1;
  --ink: #0a1830;
  --ink-soft: rgba(10, 24, 48, 0.66);
  --ink-faint: rgba(10, 24, 48, 0.4);

  --gold: #dd9f42;
  --gold-light: #f2c778;
  --gold-ink: #4a3413;

  --line-on-white: rgba(10, 24, 48, 0.13);
  --line-on-navy: rgba(255, 255, 255, 0.16);
  --on-navy-soft: rgba(255, 255, 255, 0.68);

  --font-display: "Fraunces", "Iowan Old Style", serif;
  --font-body: "Lato", -apple-system, sans-serif;

  --container: 1280px;
  --edge: clamp(1.5rem, 5vw, 5rem);

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

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
h1, h2, h3, h4, p { margin: 0; }
a { color: inherit; text-decoration: none; }
ol, ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; background: none; border: none; cursor: pointer; }
section[id] { scroll-margin-top: 88px; }

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

/* ============================================================
   SHARED
   ============================================================ */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
  display: block;
}
.eyebrow--light { color: var(--gold-light); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1rem 1.7rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), background 0.3s ease;
}
.btn svg { transition: transform 0.4s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn--gold {
  background: var(--gold-light);
  color: var(--gold-ink);
  box-shadow: 0 14px 30px -16px rgba(10, 24, 48, 0.4);
}
.btn--gold:hover { transform: translateY(-3px); background: var(--white); }
.btn--small { padding: 0.85rem 1.4rem; font-size: 0.88rem; }

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   NAV
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0.9rem 0;
  background: rgba(6, 15, 34, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px -18px rgba(0,0,0,0.5);
  transition: padding 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.site-nav.is-scrolled {
  padding: 0.65rem 0;
  box-shadow: 0 10px 30px -18px rgba(0,0,0,0.6);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--edge);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1.5rem;
}
.nav-logo {
  grid-column: 1;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.nav-logo-mark {
  height: 40px;
  width: 40px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.35));
}
.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
  color: var(--white);
  line-height: 1.1;
  display: flex;
  flex-direction: column;
}
.nav-logo-text em {
  font-style: normal;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.nav-links {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.2rem;
}
.nav-links a:not(.nav-cta) {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--on-navy-soft);
  position: relative;
  transition: color 0.3s ease;
}
.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--gold-light);
  transition: width 0.35s var(--ease);
}
.nav-links a:not(.nav-cta):hover { color: var(--white); }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  grid-column: 3;
  background: var(--gold-light);
  color: var(--gold-ink);
  padding: 0.65rem 1.3rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  transition: transform 0.35s var(--ease), background 0.3s ease;
}
.nav-cta:hover { transform: translateY(-2px); background: var(--white); }
.nav-cta--mobile { display: none; }

.nav-toggle {
  grid-column: 4;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  margin: -10px -10px -10px 0;
  padding: 0;
  border-radius: 10px;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--white);
  transition: transform 0.35s var(--ease), opacity 0.3s ease;
}

/* ---- Nav dropdown (Services) ---- */
.nav-item {
  display: flex;
  align-items: center;
  position: relative;
}
.nav-caret-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  color: inherit;
}
.nav-caret {
  margin-left: 5px;
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}
.nav-item:hover .nav-caret,
.nav-item:focus-within .nav-caret { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 14px;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s;
  z-index: 60;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.nav-dropdown-panel {
  background: var(--white);
  border-radius: 14px;
  padding: 0.6rem;
  box-shadow: 0 30px 55px -22px rgba(10, 24, 48, 0.45);
  transform: translateY(6px);
  transition: transform 0.25s var(--ease);
}
.nav-item:hover .nav-dropdown-panel,
.nav-item:focus-within .nav-dropdown-panel {
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 0.65rem 0.9rem;
  border-radius: 9px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--navy-900) !important;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-dropdown a::after { display: none; }
.nav-dropdown a:hover { background: var(--paper-alt); color: var(--gold-ink) !important; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  background: var(--navy-950);
  color: var(--white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 9rem var(--edge) 6rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  filter: contrast(1.04) brightness(0.94) saturate(0.98);
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.8s var(--ease);
}
.hero-bg img.is-active {
  opacity: 1;
  animation: hero-kenburns 9s ease-out forwards;
}
@keyframes hero-kenburns {
  from { transform: scale(1.06); }
  to { transform: scale(1.14); }
}
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(75deg, rgba(6,15,34,0.85) 0%, rgba(6,15,34,0.62) 38%, rgba(6,15,34,0.4) 62%, rgba(6,15,34,0.2) 100%),
    linear-gradient(to top, rgba(6,15,34,0.55) 0%, rgba(6,15,34,0.05) 40%, rgba(6,15,34,0.2) 100%);
}
.hero-inner {
  position: relative;
  z-index: 3;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}
.hero-copy { max-width: 50rem; }
.hero-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  line-height: 1.06;
  letter-spacing: -0.01em;
  margin-bottom: 1.6rem;
  text-shadow: 0 4px 30px rgba(0,0,0,0.35);
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
}
.hero-blurb {
  max-width: 42rem;
  font-size: 1.08rem;
  font-weight: 300;
  color: var(--on-navy-soft);
  margin-bottom: 2.5rem;
}
/* ============================================================
   ABOUT
   ============================================================ */
.about { position: relative; padding-top: 7rem; }
.about-top {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--edge) 2rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 4.5rem;
}
.about-lead { max-width: 34rem; }
.about-visual {
  position: relative;
  margin: 0;
}
.about-visual::before {
  content: "";
  position: absolute;
  top: -1.4rem;
  right: -1.4rem;
  width: 100%;
  height: 100%;
  border: 2px solid var(--gold);
  border-radius: 20px;
  z-index: 0;
}
.about-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3.1;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 34px 60px -26px rgba(10,24,48,0.4);
}
.about-lead h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 3.6vw, 3rem);
  color: var(--navy-900);
  margin-bottom: 1.6rem;
}
.about-dropcap {
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 2.2rem;
}
.about-dropcap::first-letter {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 600;
  float: left;
  line-height: 0.85;
  padding: 0.05em 0.09em 0 0;
  color: var(--gold);
}
.about-lead > p:not(.about-dropcap) {
  font-size: 1.02rem;
  color: var(--ink-soft);
  margin-bottom: 2.2rem;
}

.about-band {
  position: relative;
  background:
    linear-gradient(120deg, rgba(6,15,34,0.78) 0%, rgba(6,15,34,0.62) 55%, rgba(6,15,34,0.74) 100%),
    url("../images/2148959735.jpg") center 30% / cover no-repeat;
  color: var(--white);
  padding: 4.5rem var(--edge) 5rem;
  margin-top: 4rem;
}
.about-band-inner {
  max-width: var(--container);
  margin: 0 auto;
}
.about-band h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 3.6vw, 3rem);
  text-align: center;
  margin-bottom: 2.2rem;
}
.about-band-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 3.5rem;
  margin-bottom: 2.6rem;
}
.about-band-grid p { color: var(--on-navy-soft); font-size: 1rem; }

/* ============================================================
   FLEET / TICKETS
   ============================================================ */
.fleet { padding: 7rem 0 6rem; }
.fleet-head {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--edge);
  margin-bottom: 3rem;
}
.fleet-head h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 3.6vw, 3rem);
  color: var(--navy-900);
  margin-bottom: 0.9rem;
}
.fleet-intro { max-width: 34rem; color: var(--ink-soft); font-size: 1.02rem; }

.vehicle-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--edge);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.vehicle-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 40px -28px rgba(10,24,48,0.28);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.vehicle-card:hover { transform: translateY(-6px); box-shadow: 0 28px 50px -22px rgba(10,24,48,0.3); }
.vehicle-photo {
  position: relative;
  aspect-ratio: 4 / 2.7;
  background: radial-gradient(circle at 35% 30%, #eceae2, #d9d6cb 85%);
}
.vehicle-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.vehicle-card:hover .vehicle-photo img { transform: scale(1.05); }
.vehicle-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,15,34,0.75) 0%, rgba(6,15,34,0.15) 45%, transparent 70%);
}
.vehicle-name {
  position: absolute;
  left: 1.2rem;
  bottom: 0.9rem;
  z-index: 1;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
}
.vehicle-stats {
  padding: 0.9rem 1.2rem;
  display: flex;
  justify-content: center;
}
.vehicle-stat {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  color: var(--navy-900);
  font-size: 0.95rem;
}
.vehicle-stat-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--paper-alt);
  color: var(--navy-700);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  background: var(--navy-950);
  padding: 7rem 0;
}
.services-head {
  max-width: 34rem;
  margin: 0 auto 3.5rem;
  padding: 0 var(--edge);
  text-align: center;
}
.services-head h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 3.6vw, 3rem);
  color: var(--white);
}
.services-underline {
  display: block;
  width: 56px;
  height: 3px;
  margin: 1.1rem auto 1.5rem;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 3px;
}
.services-head p { color: var(--on-navy-soft); font-size: 1.02rem; }

.services-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--edge);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.service-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px -28px rgba(10,24,48,0.25);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  padding-bottom: 1.6rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 28px 50px -22px rgba(10,24,48,0.28); }
.service-photo { height: 15rem; flex-shrink: 0; background: radial-gradient(circle at 35% 30%, #eceae2, #d9d6cb 85%); }
.service-photo img { width: 100%; height: 100%; object-fit: cover; }
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--navy-900);
  margin: 1.3rem 1.4rem 0.6rem;
  min-height: 2.9rem;
}
.service-card p {
  color: var(--ink-soft);
  font-size: 0.9rem;
  margin: 0 1.4rem;
  min-height: 4.35rem;
}
.service-cta {
  margin: 1.4rem 1.4rem 0;
  align-self: flex-start;
  padding: 0.55rem 1.05rem;
  font-size: 0.78rem;
}
.service-cta svg { width: 12px; height: 12px; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why { background: var(--paper); padding: 7rem 0; }
.why-head {
  max-width: 34rem;
  margin: 0 auto 4.5rem;
  padding: 0 var(--edge);
  text-align: center;
}
.why-head h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 3.6vw, 3rem);
  color: var(--navy-900);
}

.why-ring {
  max-width: 76rem;
  margin: 0 auto;
  padding: 0 var(--edge);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: 3rem;
  row-gap: 2.5rem;
}
.why-row {
  display: flex;
  flex-direction: column;
  gap: 2.75rem;
}
.why-reason { text-align: center; padding: 0 0.5rem; }
.why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px dashed var(--gold);
  background: var(--white);
  color: var(--gold);
  margin-bottom: 1.1rem;
  box-shadow: 0 16px 30px -22px rgba(10,24,48,0.3);
}
.why-reason h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy-900);
  margin-bottom: 0.5rem;
}
.why-reason p {
  font-size: 0.86rem;
  color: var(--ink-soft);
  max-width: 15.5rem;
  margin: 0 auto;
}

.why-hub {
  position: relative;
  width: 15.5rem;
  height: 15.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--navy-950);
  color: var(--white);
  border-radius: 50%;
  padding: 1.5rem;
  box-shadow: 0 30px 60px -28px rgba(10,24,48,0.45);
  z-index: 2;
}
.why-hub::before {
  content: "";
  position: absolute;
  inset: -5.5rem;
  border: 2px dashed var(--gold);
  border-radius: 50%;
  z-index: -1;
}
.why-hub-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--gold-light);
  margin-bottom: 1rem;
}
.why-hub h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}
.why-hub p { font-size: 0.92rem; color: var(--on-navy-soft); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  position: relative;
  background: var(--navy-950);
  color: var(--white);
  padding-top: 4.5rem;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 2rem var(--edge) 4rem;
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 0.9fr 0.9fr;
  gap: 3rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}
.footer-logo img { height: 56px; width: 56px; object-fit: contain; }
.footer-logo span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--white);
  line-height: 1.1;
  display: flex;
  flex-direction: column;
}
.footer-logo span em {
  font-style: normal;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.footer-brand p { color: var(--on-navy-soft); font-size: 0.94rem; max-width: 24rem; }
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 0.85rem; }
.footer-links h4, .footer-contact h4, .footer-cta h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--gold-light);
  margin-bottom: 0.6rem;
}
.footer-links a, .footer-contact a {
  color: var(--on-navy-soft);
  font-size: 0.94rem;
  width: fit-content;
  border-bottom: 1px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.footer-links a:hover, .footer-contact a:hover { color: var(--white); border-color: var(--gold-light); }
.footer-map {
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line-on-navy);
  filter: grayscale(0.25) contrast(1.05);
  align-self: start;
}
.footer-map iframe { display: block; }

.footer-bottom {
  border-top: 1px solid var(--line-on-navy);
  padding: 1.6rem var(--edge);
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
  font-size: 0.82rem;
  color: var(--on-navy-soft);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-top { grid-template-columns: 1fr; gap: 3rem; }
  .about-lead { max-width: none; }
  .about-visual { max-width: 30rem; }
  .vehicle-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav-inner { gap: 0.8rem; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: calc(100svh - 100%);
    overflow-y: auto;
    background: var(--navy-950);
    border-top: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 40px -20px rgba(0,0,0,0.5);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 0.25rem 0 1.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  }
  .nav-links.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-links > a:not(.nav-cta) {
    font-size: 1.05rem;
    display: block;
    width: 100%;
    padding: 1.05rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .nav-links a:not(.nav-cta)::after { display: none; }
  .nav-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .nav-item > a {
    flex: 1 1 0%;
    min-width: 0;
    font-size: 1.05rem;
    display: block;
    padding: 1.05rem 1.5rem;
  }
  .nav-caret-btn { width: 48px; height: 48px; flex-shrink: 0; color: var(--on-navy-soft); }
  .nav-caret { display: block; margin-left: 0; }
  .nav-item.is-open .nav-caret { transform: rotate(180deg); }
  .nav-dropdown {
    order: 3;
    position: static;
    transform: none;
    width: 100%;
    min-width: 0;
    min-height: 0;
    max-width: none;
    padding: 0;
    margin: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.25s ease;
  }
  .nav-item.is-open .nav-dropdown { grid-template-rows: 1fr; }
  .nav-dropdown-panel {
    overflow: hidden;
    min-height: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    transform: none;
  }
  .nav-dropdown a {
    color: var(--on-navy-soft) !important;
    font-size: 0.96rem;
    padding: 0.85rem 1.5rem 0.85rem 2.4rem;
  }
  .nav-dropdown a:hover { background: rgba(255,255,255,0.05); color: var(--white) !important; }
  .nav-cta--desktop { display: none; }
  .nav-cta--mobile { display: flex; justify-content: center; margin: 1.4rem 1.5rem 0; }
  .nav-toggle { display: flex; }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero { padding-top: 7.5rem; }
  .hero-bg img { object-position: 62% 55%; }
  .hero-scrim {
    background:
      linear-gradient(to top, rgba(6,15,34,0.8) 0%, rgba(6,15,34,0.35) 55%, rgba(6,15,34,0.2) 100%),
      linear-gradient(rgba(6,15,34,0.35), rgba(6,15,34,0.35));
  }
  .about-band-grid { grid-template-columns: 1fr; gap: 1.4rem; }

  .vehicle-grid { grid-template-columns: 1fr; }

  .services-grid { grid-template-columns: 1fr; }

  .why-ring { grid-template-columns: 1fr; gap: 2.2rem; }
  .why-row { gap: 2.2rem; }
  .why-hub { width: auto; height: auto; max-width: 25rem; margin: 0 auto; border-radius: 24px; }
  .why-hub::before { display: none; }

  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; }
}

/* ============================================================
   INTERIOR PAGES — shared components
   ============================================================ */

/* ---- Page hero band ---- */
.page-hero {
  position: relative;
  background: var(--navy-950);
  color: var(--white);
  padding: 10rem var(--edge) 4.5rem;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0; left: 0;
  width: 100%;
  border-top: 2px dashed rgba(242, 199, 120, 0.45);
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--on-navy-soft);
  margin-bottom: 1.4rem;
}
.breadcrumb a { color: var(--on-navy-soft); transition: color 0.3s ease; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span[aria-hidden] { color: var(--gold); }
.breadcrumb .is-current { color: var(--gold-light); }
.breadcrumb-pin { color: var(--gold-light); flex-shrink: 0; }

/* ---- Road divider (section break) ---- */
.road-divider {
  display: flex;
  align-items: center;
  max-width: 30rem;
  margin: -2rem auto 2rem;
  padding: 0 var(--edge);
  position: relative;
  z-index: 1;
}
.road-divider::before,
.road-divider::after {
  content: "";
  flex: 1;
  height: 0;
  border-top: 2px dashed var(--line-on-white);
}
.road-divider-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  margin: 0 1rem;
  border-radius: 50%;
  border: 2px dashed var(--gold);
  background: var(--white);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 30px -22px rgba(10, 24, 48, 0.3);
}

/* ---- Drive CTA (button micro-interaction, interior pages only) ---- */
.btn--drive { position: relative; overflow: hidden; }
.btn--drive::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, rgba(10,24,48,0.16) 0 10px, transparent 10px 20px);
  transform: translateX(-100%);
  transition: transform 0.5s var(--ease);
}
.btn--drive:hover::before { transform: translateX(0); }
.btn--drive span, .btn--drive svg { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  max-width: 40rem;
}
.page-hero-lede {
  margin-top: 1.1rem;
  max-width: 38rem;
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--on-navy-soft);
}

/* ---- Prose (About / legal / FAQ intro) ---- */
.page-content { max-width: var(--container); margin: 0 auto; padding: 6rem var(--edge); }
.page-content--narrow { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.page-content.about-body { padding-top: 1.2rem; }
.prose { max-width: 42rem; }
.prose.prose--wide { max-width: 52rem; }
.prose.prose--full { max-width: none; }
.prose h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  color: var(--navy-900);
  margin: 2.6rem 0 1rem;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--navy-900);
  margin: 2rem 0 0.8rem;
}
.prose p { font-size: 1.02rem; color: var(--ink-soft); margin-bottom: 1.3rem; }
.prose ul { margin: 0 0 1.3rem; padding-left: 1.3rem; }
.prose ul li {
  list-style: none;
  position: relative;
  padding-left: 1.3rem;
  color: var(--ink-soft);
  font-size: 1.02rem;
  margin-bottom: 0.7rem;
}
.prose ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}
.prose figure { margin: 2.4rem 0; }
.prose figure img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 30px 55px -28px rgba(10,24,48,0.35);
}
/* ---- About page quote band ---- */
/* ---- Services hub intro on paper ---- */
.services-intro { background: var(--paper); padding: 6rem var(--edge) 0; }
.services-intro-inner { max-width: 42rem; margin: 0 auto; text-align: center; }
.services-intro-inner h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  color: var(--navy-900);
  margin-bottom: 1rem;
}
.services-intro-inner p { color: var(--ink-soft); font-size: 1.02rem; }

/* ---- Service page banner image ---- */
.service-banner {
  margin: 0 0 2.2rem;
}
.service-banner img {
  width: 100%;
  height: 22rem;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 30px 60px -28px rgba(10, 24, 48, 0.35);
}

/* ---- Service detail layout (sidebar) ---- */
.service-detail {
  max-width: var(--container);
  margin: 0 auto;
  padding: 5.5rem var(--edge) 6.5rem;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3.5rem;
  align-items: start;
}
.service-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  position: sticky;
  top: 110px;
}
.service-final-cta { margin-top: 1rem; }

/* ---- Form card ---- */
.form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 24px 48px -28px rgba(10,24,48,0.28);
}
.form-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--navy-900);
  margin-bottom: 0.4rem;
}
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--line-on-white);
  border-radius: 8px;
  padding: 0.75rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--ink);
  background: var(--paper);
  transition: border-color 0.3s ease, background 0.3s ease;
}
.form-group textarea { resize: vertical; min-height: 6rem; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
.form-submit {
  width: 100%;
  justify-content: center;
  border: none;
}
/* ---- Sidebar info cards ---- */
.sidebar-card {
  background: var(--paper-alt);
  border-radius: 16px;
  padding: 1.8rem;
}
.sidebar-card h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy-900);
  margin-bottom: 1rem;
}
.sidebar-card a,
.sidebar-card p {
  display: block;
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin-bottom: 0.7rem;
  border-bottom: 1px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.sidebar-card a:hover { color: var(--navy-900); border-color: var(--gold); }
.sidebar-card a:last-child, .sidebar-card p:last-child { margin-bottom: 0; }

/* ---- FAQ (accordion) ---- */
.faq-list { max-width: 46rem; margin: 0 auto; }
.faq-item { border-top: 2px dashed var(--line-on-white); padding: 1.9rem 0; }
.faq-item:first-child { border-top: none; padding-top: 0; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--navy-900);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ""; }
.faq-caret { flex-shrink: 0; transition: transform 0.3s ease; color: var(--gold); }
.faq-item[open] .faq-caret { transform: rotate(180deg); }
.faq-item .faq-answer { padding-top: 0.8rem; }
.faq-item p { color: var(--ink-soft); font-size: 0.98rem; }
.faq-cta { text-align: center; margin-top: 3rem; }

/* ---- Contact page ---- */
.contact-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 5.5rem var(--edge) 6.5rem;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3.5rem;
  align-items: start;
}
.contact-intro p { font-size: 1.02rem; color: var(--ink-soft); margin-bottom: 1.3rem; }
.contact-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}
.contact-detail {
  background: var(--paper-alt);
  border-radius: 14px;
  padding: 1.4rem 1.5rem;
}
.contact-detail h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy-900);
  margin-bottom: 0.5rem;
}
.contact-detail a, .contact-detail span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.92rem;
}
.contact-detail a:hover { color: var(--navy-900); }
.contact-map {
  margin-top: 2.5rem;
  height: 260px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line-on-white);
}
.contact-map iframe { display: block; }

/* ---- Footer link states on interior pages ---- */
.footer-bottom a {
  color: inherit;
  border-bottom: 1px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.footer-bottom a:hover { color: var(--white); border-color: var(--gold-light); }

@media (max-width: 1024px) {
  .service-detail { grid-template-columns: 1fr; }
  .service-sidebar { position: static; max-width: 30rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-details { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .page-hero { padding: 8.5rem var(--edge) 4rem; }
  .page-content { padding: 4rem var(--edge); }
  .contact-details { grid-template-columns: 1fr; }
  .service-banner img { height: 14rem; }
  .road-divider { max-width: 100%; }
}

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