@import url("../fonts/fonts.css");

/* =========================================================================
   Lave Auto Avenues — brand stylesheet
   Colours and type sampled directly from the InDesign posters:
     charcoal #221F1F · blue #53A4DA · white
     display script = Blacksword  -> Great Vibes (web substitute)
     text/prices    = Gilroy      -> Poppins     (web substitute)
   ========================================================================= */

:root {
  --ink: #221f1f;
  --ink-2: #2a2727;
  --ink-3: #343030;
  --blue: #53a4da;
  --blue-bright: #67ddff;
  --blue-deep: #247bb5;
  --white: #fff;
  --muted: #b6b1b1;
  --muted-2: #949090; /* lightest grey that still clears WCAG AA (4.5:1) on the panels */
  --line: rgba(83, 164, 218, 0.28);
  --line-soft: rgba(255, 255, 255, 0.1);
  --good: #4caf7d;
  --bad: #e05a5a;

  --font: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
  --script: "Great Vibes", "Brush Script MT", cursive;

  --r: 28px;
  --r-sm: 16px;
  --wrap: 1180px;
  --pad: clamp(20px, 5vw, 40px);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* <picture> only exists to offer a WebP source; it should never become a box
   of its own inside a flex/grid container — the <img> is the real item. */
picture {
  display: contents;
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  color: var(--blue-bright);
}

:focus-visible {
  outline: 3px solid var(--blue-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--blue);
  color: var(--ink);
  padding: 12px 20px;
  font-weight: 700;
  z-index: 200;
}

.skip:focus {
  left: 12px;
  top: 12px;
}

/* visually hidden, but read by screen readers (never receives focus) */
.vh {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* ---------- shared type ---------- */

.script {
  font-family: var(--script);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.01em;
}

.section-head {
  text-align: center;
  margin-bottom: clamp(32px, 5vw, 56px);
}

.section-head .script {
  font-size: clamp(2.6rem, 6vw, 4rem);
  margin: 0;
  color: var(--white);
}

/* the tapered swash rule under script headings on the posters */
.swash {
  width: min(280px, 60%);
  height: 10px;
  margin: 2px auto 0;
  display: block;
  color: var(--white);
  opacity: 0.85;
}

.section-head p {
  color: var(--muted);
  max-width: 62ch;
  margin: 14px auto 0;
  font-size: 1.02rem;
}

.eyebrow {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 10px;
}

.price {
  font-weight: 800;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.from {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

section {
  padding: clamp(56px, 8vw, 104px) 0;
  position: relative;
}

section + section {
  border-top: 1px solid rgba(255, 255, 255, 0.055);
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease,
    color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex: none;
}

.btn-primary {
  background: var(--blue);
  color: #10242f;
  box-shadow: 0 8px 30px -10px rgba(83, 164, 218, 0.9);
}

.btn-primary:hover {
  background: var(--blue-bright);
  color: #10242f;
  transform: translateY(-2px);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--white);
  background: rgba(255, 255, 255, 0.03);
}

.btn-ghost:hover {
  border-color: var(--blue);
  color: var(--white);
  background: rgba(83, 164, 218, 0.12);
  transform: translateY(-2px);
}

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(34, 31, 31, 0.82);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.site-header.is-stuck {
  border-bottom-color: rgba(255, 255, 255, 0.09);
  background: rgba(34, 31, 31, 0.95);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 74px;
}

.brand {
  flex: none;
  display: block;
  line-height: 0;
}

.brand img {
  width: clamp(150px, 20vw, 208px);
}

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav a {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 9px 13px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: none;
}

.lang {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.lang a,
.lang span {
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  color: var(--muted);
  line-height: 1;
}

.lang [aria-current="true"] {
  background: var(--blue);
  color: #10242f;
}

.lang a:hover {
  color: var(--white);
  background: rgba(83, 164, 218, 0.16);
}

.header-tools .btn {
  padding: 11px 20px;
  font-size: 0.9rem;
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}

.burger svg {
  width: 22px;
  height: 22px;
}

.burger .x {
  display: none;
}

.burger[aria-expanded="true"] .x {
  display: block;
}

.burger[aria-expanded="true"] .bars {
  display: none;
}

/* ---------- hero ---------- */

.hero {
  padding: clamp(48px, 8vw, 92px) 0 clamp(56px, 8vw, 96px);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -40% 0 auto;
  height: 780px;
  background: radial-gradient(
    58% 52% at 50% 42%,
    rgba(83, 164, 218, 0.2) 0%,
    rgba(83, 164, 218, 0.06) 42%,
    transparent 72%
  );
  pointer-events: none;
}

.hero .wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.hero-script {
  font-size: clamp(3rem, 8vw, 5.2rem);
  margin: 0 0 -4px;
  color: var(--white);
}

.hero h1 {
  font-size: clamp(1.9rem, 4.4vw, 3.05rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 14px 0 0;
}

.hero h1 em {
  font-style: normal;
  color: var(--blue);
}

.hero-lede {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 54ch;
  margin: 18px 0 0;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  font-size: 0.9rem;
  color: var(--muted);
}

.hero-facts b {
  color: var(--white);
  font-weight: 700;
}

/* rating badge */
.rating {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 18px 11px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(83, 164, 218, 0.07);
  font-size: 0.9rem;
}

.rating-score {
  font-weight: 800;
  font-size: 1.15rem;
  line-height: 1;
}

.stars {
  display: inline-flex;
  gap: 2px;
  color: var(--blue);
}

.stars svg {
  width: 15px;
  height: 15px;
}

.rating small {
  color: var(--muted);
  display: block;
  font-size: 0.75rem;
  line-height: 1.3;
}

/* open / closed pill */
.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.85rem;
}

.status .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--muted-2);
  flex: none;
}

.status.open .dot {
  background: var(--good);
  box-shadow: 0 0 0 4px rgba(76, 175, 125, 0.2);
}

.status.closed .dot {
  background: var(--bad);
  box-shadow: 0 0 0 4px rgba(224, 90, 90, 0.18);
}

.hero-figure {
  position: relative;
}

.hero-figure img {
  width: 100%;
  border-radius: var(--r);
  border: 1px solid var(--line);
  box-shadow: 0 30px 70px -30px #000;
}

.hero-figure figcaption {
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--muted-2);
  text-align: center;
}

/* Grid/flex items default to min-width:auto, so a wide child (the map iframe,
   a long e-mail address, the price table) can push the track past the viewport.
   Letting them shrink is what keeps narrow phones free of sideways scroll. */
.tiers > *,
.vehicles > *,
.addons > *,
.review-grid > *,
.info-cols > *,
.contact-grid > *,
.footer-grid > * {
  min-width: 0;
}

/* ---------- cards / panels ---------- */

.panel {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.045),
    rgba(255, 255, 255, 0.012)
  );
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: clamp(24px, 3.4vw, 36px);
}

/* ---------- packages ---------- */

.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: start;
}

.tier {
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.tier:hover {
  transform: translateY(-4px);
  border-color: var(--blue);
  box-shadow: 0 26px 60px -34px rgba(83, 164, 218, 0.75);
}

.tier.featured {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px rgba(83, 164, 218, 0.35),
    0 24px 60px -34px rgba(83, 164, 218, 0.8);
}

.tier-flag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #10242f;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 15px;
  border-radius: 999px;
  white-space: nowrap;
}

.tier-stars {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 10px;
  min-height: 30px;
}

.tier-stars img {
  width: 27px;
  height: 27px;
}

.tier h3 {
  font-family: var(--script);
  font-weight: 400;
  font-size: clamp(2.2rem, 3.6vw, 2.7rem);
  line-height: 1.05;
  margin: 0;
  text-align: center;
}

.tier .swash {
  width: 74%;
  margin-bottom: 16px;
}

.tier-price {
  text-align: center;
  margin-bottom: 22px;
}

.tier-price .price {
  font-size: clamp(2.1rem, 3.6vw, 2.6rem);
  display: block;
  line-height: 1.1;
}

.feat {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 9px;
  font-size: 0.92rem;
  flex: 1;
}

.feat li {
  display: grid;
  grid-template-columns: 21px 1fr;
  gap: 11px;
  align-items: start;
  line-height: 1.45;
}

.feat svg {
  width: 21px;
  height: 21px;
  margin-top: 1px;
}

/* Included / not-included marks. Kept unscoped so the package cards and the
   comparison table read the same way. */
.yes {
  color: var(--good);
}

.no {
  color: var(--bad);
}

.feat li.off {
  color: var(--muted-2);
}

.tier .btn {
  width: 100%;
}

.note {
  text-align: center;
  color: var(--muted);
  font-size: 0.88rem;
  margin: 26px auto 0;
  max-width: 70ch;
}

/* ---------- vehicle surcharges ---------- */

.vehicles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.veh {
  text-align: center;
  padding: 30px 22px 26px;
  display: flex;
  flex-direction: column;
}

/* flex: 1 lets the illustration area absorb the extra height that the
   two-vehicle card adds, so all three cards keep their text and prices on the
   same baseline instead of leaving a hole under the shorter ones. */
.veh-art {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 86px;
  margin-bottom: 16px;
}

.veh-art img {
  height: auto;
  max-height: 78px;
  width: auto;
  opacity: 0.94;
}

/* The middle card carries two illustrations: the 3-row SUV above, the pickup
   below. Both are matched on width rather than height — that is the scale they
   were drawn at, so the pickup reads as the longer, lower vehicle it is. */
.veh-art.stacked {
  flex-direction: column;
  gap: 12px;
}

.veh-art.stacked img {
  max-height: none;
  width: 172px;
}

.veh h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 4px;
}

.veh p {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 0 0 14px;
  min-height: 2.6em;
}

.veh .price {
  font-size: 1.7rem;
  color: var(--blue);
}

.veh .price.est {
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* ---------- add-on grid ---------- */

.addons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(232px, 1fr));
  gap: 16px;
}

/* This section leans harder on the brand blue than the rest of the page: a blue
   wash on the card, a blue service label, and the price on a tag. */
#services {
  position: relative;
  isolation: isolate;
}

#services::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(
    62% 46% at 50% 34%,
    rgba(83, 164, 218, 0.13) 0%,
    rgba(83, 164, 218, 0.04) 46%,
    transparent 74%
  );
  pointer-events: none;
}

.addon {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 22px 20px 26px;
  background: linear-gradient(
    160deg,
    rgba(83, 164, 218, 0.1),
    rgba(83, 164, 218, 0.02) 58%,
    rgba(255, 255, 255, 0.015)
  );
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

/* thin blue spine down the left edge */
.addon::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(
    180deg,
    var(--blue) 0%,
    rgba(83, 164, 218, 0.15) 100%
  );
}

.addon:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 20px 44px -26px rgba(83, 164, 218, 0.85);
}

.addon h3 {
  font-family: var(--script);
  font-weight: 400;
  font-size: 1.85rem;
  line-height: 1.1;
  margin: 0;
}

.addon .sub {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}

/* The price sits on a little tag: a notch cut into the left edge and a punched
   hole, so it reads as a paper price label pinned to the card. */
.addon .price {
  align-self: flex-start;
  position: relative;
  margin-top: auto;
  margin-left: -20px;
  padding: 9px 18px 9px 30px;
  font-size: 1.32rem;
  line-height: 1.15;
  color: #0f2432;
  background: var(--blue);
  clip-path: polygon(14px 0, 100% 0, 100% 100%, 14px 100%, 0 50%);
  transition: background 0.2s ease;
}

.addon:hover .price {
  background: var(--blue-bright);
}

/* the punched hole in the tag */
.addon .price::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 50%;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-radius: 50%;
  background: #17323f;
}

/* De-emphasised by size, not by opacity — fading it dropped the contrast
   against the blue tag to 3.2:1, under the 4.5:1 minimum. */
.addon .price .unit {
  font-size: 0.78rem;
  font-weight: 700;
  color: #17323f;
}

/* ---------- comparison table ---------- */

.table-scroll {
  overflow-x: auto;
  border-radius: var(--r);
  border: 1px solid var(--line);
  -webkit-overflow-scrolling: touch;
}

table.compare {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
  font-size: 0.93rem;
}

table.compare th,
table.compare td {
  padding: 14px 16px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

table.compare thead th {
  background: rgba(83, 164, 218, 0.1);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

table.compare tbody th {
  text-align: left;
  font-weight: 500;
  color: var(--white);
  min-width: 250px;
}

table.compare tbody tr:last-child th,
table.compare tbody tr:last-child td {
  border-bottom: 0;
}

table.compare tbody tr:hover td,
table.compare tbody tr:hover th {
  background: rgba(255, 255, 255, 0.035);
}

table.compare svg {
  width: 21px;
  height: 21px;
  vertical-align: middle;
}

table.compare tfoot td {
  background: rgba(255, 255, 255, 0.03);
  font-weight: 800;
  border-bottom: 0;
}

/* ---------- reviews ---------- */

.reviews-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 34px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(272px, 1fr));
  gap: 18px;
}

.review {
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.review .stars svg {
  width: 17px;
  height: 17px;
}

.review blockquote {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.6;
}

.review cite {
  font-style: normal;
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: auto;
}

.review cite b {
  color: var(--white);
  font-weight: 600;
  display: block;
}

/* ---------- visit / info ---------- */

.info-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.info-cols h3 {
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 18px;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
  counter-reset: s;
}

.steps li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 14px;
  align-items: start;
  font-size: 0.95rem;
}

.steps li::before {
  counter-increment: s;
  content: counter(s);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(83, 164, 218, 0.12);
  color: var(--blue);
  font-weight: 800;
  font-size: 0.85rem;
  display: grid;
  place-items: center;
}

.notices {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
  font-size: 0.93rem;
  color: var(--muted);
}

.notices b {
  color: var(--blue);
  display: block;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

/* ---------- contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 22px;
  align-items: stretch;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.contact-line {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  align-items: start;
}

.contact-line .ico {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(83, 164, 218, 0.1);
  color: var(--blue);
  display: grid;
  place-items: center;
}

.contact-line .ico svg {
  width: 20px;
  height: 20px;
}

.contact-line h3 {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 3px;
}

.contact-line p,
.contact-line a {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--white);
}

.contact-line a:hover {
  color: var(--blue);
}

.hours {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.93rem;
}

.hours th,
.hours td {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hours th {
  text-align: left;
  font-weight: 500;
  color: var(--muted);
}

.hours td {
  text-align: right;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.hours tr:last-child th,
.hours tr:last-child td {
  border-bottom: 0;
}

.hours tr.today th,
.hours tr.today td {
  color: var(--white);
  font-weight: 700;
}

.hours tr.today th::after {
  content: "•";
  color: var(--blue);
  margin-left: 8px;
}

.map {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 420px;
  display: flex;
  background: var(--ink-2);
}

.map iframe {
  width: 100%;
  max-width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
  filter: grayscale(0.35) contrast(1.05);
}

/* ---------- footer ---------- */

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 54px 0 34px;
  background: #1c1a1a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 34px;
}

.footer-grid img {
  width: 210px;
  margin-bottom: 16px;
}

.footer-grid p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0 0 10px;
  max-width: 40ch;
}

.footer-grid h3 {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 14px;
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
  font-size: 0.9rem;
}

.footer-grid ul a {
  color: var(--muted);
}

.footer-grid ul a:hover {
  color: var(--white);
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.socials a {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--white);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.socials a:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #10242f;
  transform: translateY(-2px);
}

.socials svg {
  width: 19px;
  height: 19px;
}

.legal {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--muted-2);
}

/* ---------- sticky mobile call bar ---------- */

.callbar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(28, 26, 26, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  gap: 10px;
}

.callbar .btn {
  flex: 1;
  padding: 13px 14px;
}

/* ---------- reveal on scroll ---------- */
/* Gated behind .js so that if the script fails to load the content is simply
   visible, rather than permanently invisible. */

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js .reveal.in {
  opacity: 1;
  transform: none;
}

/* ---------- responsive ---------- */

@media (max-width: 1000px) {
  .hero .wrap {
    grid-template-columns: 1fr;
  }

  .hero-figure {
    max-width: 480px;
    margin-inline: auto;
  }

  .tiers,
  .vehicles {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
  }

  .contact-grid,
  .info-cols {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 860px) {
  .burger {
    display: flex;
  }

  .header-tools .btn span {
    display: none;
  }

  .header-tools .btn {
    padding: 11px 13px;
  }

  .nav {
    position: fixed;
    inset: 74px 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: #1c1a1a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px var(--pad) 22px;
    margin: 0;
    transform: translateY(-140%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 24px 50px -20px #000;
    max-height: calc(100dvh - 74px);
    overflow-y: auto;
  }

  .nav.open {
    transform: none;
  }

  .nav a {
    padding: 13px 14px;
    font-size: 1rem;
    border-radius: var(--r-sm);
  }

  .callbar {
    display: flex;
  }

  body {
    padding-bottom: 74px;
  }
}

/* below ~440px the logo + phone + language + burger no longer fit side by side */
@media (max-width: 440px) {
  .site-header .wrap {
    gap: 10px;
  }

  .brand img {
    width: 132px;
  }

  .header-tools {
    gap: 8px;
  }

  .lang a,
  .lang span {
    min-height: 40px;
    padding: 0 10px;
  }

  .header-tools .btn {
    padding: 11px;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .legal {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .veh-art img {
    max-height: 62px;
  }

  .veh-art.stacked img {
    width: 150px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header,
  .callbar,
  .map,
  .hero-figure,
  .socials {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
    padding: 0;
  }

  .panel,
  .addon,
  .table-scroll {
    border-color: #999;
  }
}
