/* ==========================================================================
   Auto Rentals Malta — design system
   Brand sampled from the logo: indigo #3B4090 · orange #F18520

   The two brand colours are given separate jobs so they never fight:
     orange  = action   (primary buttons, the accent word, live markers)
     indigo  = information (kickers, tags, links, quiet chrome)
   Dark surfaces are near-black with indigo only as a low-alpha ambient glow,
   which is what keeps orange from ever sitting on a field of blue.
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  /* brand */
  --brand:      #3b4090;
  --brand-lift: #4e55be;
  --brand-soft: #9aa0ec;
  --brand-deep: #22265c;

  --accent:      #f18520;
  --accent-lift: #ff9e45;
  --accent-deep: #c96a12;

  /* ink — near-black with a faint navy cast */
  --ink-950: #070810;
  --ink-900: #0b0d16;
  --ink-850: #101324;
  --ink-800: #171b31;
  --ink-700: #212643;
  --ink-600: #2e3457;

  /* paper — cool neutrals, no warm cast */
  --paper:   #ffffff;
  --paper-2: #f5f6fa;
  --paper-3: #ebedf5;
  --line:    #e2e5ef;
  --line-2:  #eef0f6;

  /* text on paper */
  --text:   #101320;
  --text-2: #545b70;
  --text-3: #878da2;

  /* text on ink */
  --inv:   #ffffff;
  --inv-2: rgba(255, 255, 255, 0.7);
  --inv-3: rgba(255, 255, 255, 0.46);
  --hair:  rgba(255, 255, 255, 0.12);
  --hair-2: rgba(255, 255, 255, 0.07);

  /* type */
  --f-display: "Inter Tight", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --f-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* metrics */
  --shell: 1240px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 30px;
  --head-h: 74px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --sh-1: 0 1px 2px rgba(16, 19, 32, 0.05), 0 4px 12px rgba(16, 19, 32, 0.05);
  --sh-2: 0 2px 6px rgba(16, 19, 32, 0.06), 0 14px 34px rgba(16, 19, 32, 0.08);
  --sh-3: 0 6px 18px rgba(16, 19, 32, 0.08), 0 32px 64px rgba(16, 19, 32, 0.13);
  --sh-accent: 0 10px 28px rgba(241, 133, 32, 0.32);
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--head-h) + 16px);
}

body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-synthesis-weight: none;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; padding: 0; }

::selection { background: var(--accent); color: #fff; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- 3. Typography ---------- */
.display {
  font-family: var(--f-display);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

h1.display { font-size: clamp(2.55rem, 5.4vw, 4.35rem); letter-spacing: -0.042em; }
h2.display { font-size: clamp(1.95rem, 3.7vw, 3rem); letter-spacing: -0.038em; }
h3.display { font-size: clamp(1.35rem, 2.1vw, 1.8rem); line-height: 1.16; }

/* Kicker. Modest tracking — wide letterspacing is what made this read dated. */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--f-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
}
.eyebrow::before {
  content: "";
  width: 20px;
  height: 1.5px;
  border-radius: 2px;
  background: currentColor;
  flex: none;
}
.eyebrow.is-centered { justify-content: center; }
.eyebrow.is-centered::after {
  content: "";
  width: 20px;
  height: 1.5px;
  border-radius: 2px;
  background: currentColor;
  flex: none;
}

/* pill kicker — used in the hero and on dark bands */
.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.42rem 1rem 0.42rem 0.75rem;
  border-radius: 100px;
  border: 1px solid var(--hair);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.005em;
  text-transform: none;
  color: var(--inv-2);
}
.eyebrow-pill::before, .eyebrow-pill::after { display: none; }
.eyebrow-pill .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(241, 133, 32, 0.7);
  animation: ping 2.6s var(--ease) infinite;
  flex: none;
}
@keyframes ping {
  0%   { box-shadow: 0 0 0 0 rgba(241, 133, 32, 0.6); }
  70%  { box-shadow: 0 0 0 9px rgba(241, 133, 32, 0); }
  100% { box-shadow: 0 0 0 0 rgba(241, 133, 32, 0); }
}

.lede {
  font-size: clamp(1.02rem, 1.2vw, 1.13rem);
  line-height: 1.68;
  color: var(--text-2);
  max-width: 56ch;
  text-wrap: pretty;
}

.gold { color: var(--accent); }

/* ---------- 4. Layout ---------- */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.shell-wide { max-width: 1520px; }

.section { position: relative; padding-block: clamp(4.25rem, 8vw, 7.5rem); }
.section-tight { padding-block: clamp(3rem, 5vw, 4.5rem); }
.section-tint { background: var(--paper-2); }

/* Dark bands. Near-black base; the indigo only ever arrives as ambient light. */
.section-dark {
  background: var(--ink-900);
  color: var(--inv);
  isolation: isolate;
}
.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(72% 60% at 18% 0%, rgba(59, 64, 144, 0.32), transparent 64%);
  pointer-events: none;
}
.section-dark .lede { color: var(--inv-2); }
.section-dark .eyebrow { color: var(--brand-soft); }

/* `.on-paper` predates the light-by-default flip; kept so existing markup
   still reads as an explicit "this band is light". */
.on-paper { background: var(--paper); color: var(--text); }

.s-head { max-width: 60ch; margin-bottom: clamp(2.25rem, 4.5vw, 3.5rem); }
.s-head > * + * { margin-top: 1.1rem; }
.s-head.is-centered { margin-inline: auto; text-align: center; }
.s-head.is-centered .lede { margin-inline: auto; }

.s-head-split {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.75rem 2.5rem;
  margin-bottom: clamp(2.25rem, 4.5vw, 3.5rem);
}
.s-head-split .s-head { margin-bottom: 0; }

/* ---------- 5. Buttons ---------- */
.btn {
  --btn-h: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  height: var(--btn-h);
  padding-inline: 1.5rem;
  border-radius: 100px;
  background: var(--accent);
  color: #fff;
  font-family: var(--f-display);
  font-size: 0.925rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  white-space: nowrap;
  box-shadow: var(--sh-accent), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease),
              background-color 0.3s var(--ease), color 0.3s var(--ease),
              border-color 0.3s var(--ease);
}
.btn svg { width: 1.1em; height: 1.1em; flex: none; transition: transform 0.3s var(--ease); }
.btn:hover {
  background: var(--accent-lift);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(241, 133, 32, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.26);
}
.btn:hover svg { transform: translateX(3px); }
.btn:active { transform: translateY(0); }

.btn-lg { --btn-h: 55px; padding-inline: 1.85rem; font-size: 0.98rem; }
.btn-sm { --btn-h: 41px; padding-inline: 1.15rem; font-size: 0.86rem; }
.btn-block { width: 100%; }

/* ghost — transparent, inherits the surface it sits on */
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: none;
}
.btn-ghost:hover {
  background: var(--paper-2);
  border-color: #c9cede;
  color: var(--text);
  box-shadow: none;
}
.section-dark .btn-ghost, .hero .btn-ghost, .page-hero .btn-ghost, .cta-band .btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--hair);
  color: var(--inv);
  backdrop-filter: blur(8px);
}
.section-dark .btn-ghost:hover, .hero .btn-ghost:hover,
.page-hero .btn-ghost:hover, .cta-band .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--inv);
}

/* ink — the quiet secondary on light bands */
.btn-ink {
  background: var(--ink-850);
  color: #fff;
  box-shadow: 0 8px 22px rgba(16, 19, 36, 0.22);
}
.btn-ink:hover { background: var(--ink-700); box-shadow: 0 14px 32px rgba(16, 19, 36, 0.28); }

/* text link with a sliding arrow */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--f-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--brand);
}
.arrow-link svg { width: 1.1em; height: 1.1em; transition: transform 0.35s var(--ease); }
.arrow-link:hover svg { transform: translateX(4px); }
.section-dark .arrow-link, .svc .arrow-link { color: var(--accent-lift); }
.arrow-link.on-dark-paper { color: var(--brand); }

/* ---------- 6. Header ---------- */
.topbar {
  background: var(--ink-950);
  color: var(--inv-2);
  font-size: 0.79rem;
  position: relative;
  z-index: 60;
}
.topbar .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 40px;
}
.topbar-items { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.topbar a { display: inline-flex; align-items: center; gap: 0.42rem; transition: color 0.25s var(--ease); }
.topbar a:hover { color: var(--accent-lift); }
.topbar svg { width: 13px; height: 13px; opacity: 0.6; flex: none; }
.topbar-note { display: inline-flex; align-items: center; gap: 0.5rem; }
.pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #3ddc84;
  box-shadow: 0 0 0 0 rgba(61, 220, 132, 0.7);
  animation: pulse 2.4s infinite;
  flex: none;
}
@keyframes pulse {
  70%  { box-shadow: 0 0 0 8px rgba(61, 220, 132, 0); }
  100% { box-shadow: 0 0 0 0 rgba(61, 220, 132, 0); }
}
@media (max-width: 880px) { .topbar-hide-sm { display: none; } }
/* below this the two groups can no longer share a line; the floating
   WhatsApp button covers the same call to action */
@media (max-width: 620px) { .topbar-note { display: none; } }

/* Transparent over the hero, then resolves to white glass once you scroll. */
.site-head {
  position: sticky;
  top: 0;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.4s var(--ease), border-color 0.4s var(--ease),
              box-shadow 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}
.site-head .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--head-h);
}
/* The wordmark is white-and-orange artwork with no dark variant, so the bar
   resolves to dark glass rather than white — inverting the logo would turn
   the orange half blue. */
.site-head.is-stuck {
  background: rgba(11, 13, 22, 0.82);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom-color: var(--hair-2);
  box-shadow: 0 10px 30px rgba(7, 8, 16, 0.28);
}

.brand { display: flex; align-items: center; flex: none; }
.brand img { height: 28px; width: auto; }

.nav { display: flex; align-items: center; gap: 0.15rem; }
.nav a {
  position: relative;
  padding: 0.5rem 0.85rem;
  border-radius: 100px;
  font-family: var(--f-display);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--inv-2);
  transition: color 0.25s var(--ease), background-color 0.25s var(--ease);
}
.nav a:hover { color: var(--inv); background: rgba(255, 255, 255, 0.09); }
.nav a[aria-current="page"] { color: var(--inv); }
.nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0.85rem; right: 0.85rem; bottom: 0.22rem;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
}
.head-cta { display: flex; align-items: center; gap: 0.75rem; flex: none; }

.burger {
  display: none;
  width: 42px; height: 42px;
  border-radius: 12px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--hair);
  transition: border-color 0.3s var(--ease);
}
.burger span {
  display: block;
  width: 17px; height: 1.6px;
  border-radius: 2px;
  background: var(--inv);
  position: relative;
  transition: background-color 0.2s var(--ease);
}
.burger span::before, .burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 17px; height: 1.6px;
  border-radius: 2px;
  background: inherit;
  transition: transform 0.4s var(--ease-out), top 0.3s var(--ease);
}
.burger span::before { top: -5.5px; }
.burger span::after { top: 5.5px; }
body.nav-open .burger span { background: transparent; }
body.nav-open .burger span::before { top: 0; transform: rotate(45deg); background: var(--inv); }
body.nav-open .burger span::after { top: 0; transform: rotate(-45deg); background: var(--inv); }

@media (max-width: 1040px) {
  .burger { display: flex; }
  .head-cta .btn { display: none; }
  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(340px, 84vw);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 6rem 1.75rem 2rem;
    background: var(--ink-850);
    border-left: 1px solid var(--hair);
    transform: translateX(102%);
    transition: transform 0.5s var(--ease-out);
    overflow-y: auto;
  }
  body.nav-open .nav { transform: translateX(0); }
  .nav a {
    padding: 0.95rem 0.25rem;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--hair-2);
    border-radius: 0;
  }
  .nav a:hover { background: transparent; }
  .nav a[aria-current="page"]::after { left: 0.25rem; right: auto; width: 22px; bottom: 0.6rem; }
  .nav .btn { margin-top: 1.5rem; }
  .nav-scrim {
    position: fixed;
    inset: 0;
    z-index: 45;
    background: rgba(7, 8, 16, 0.62);
    backdrop-filter: blur(3px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease);
  }
  body.nav-open .nav-scrim { opacity: 1; pointer-events: auto; }
  body.nav-open { overflow: hidden; }
}
@media (min-width: 1041px) { .nav .btn { display: none; } }

/* ---------- 7. Hero ----------
   Near-black stage, one vehicle at full size, brand light kept to a
   low-alpha wash so the orange CTA never lands on a blue field. */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink-900);
  color: var(--inv);
  margin-top: calc(var(--head-h) * -1);
  padding-top: var(--head-h);
}
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 8, 16, 0.5) 0%, transparent 26%, transparent 72%, var(--ink-950) 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(76% 68% at 46% 34%, #000 18%, transparent 76%);
  mask-image: radial-gradient(76% 68% at 46% 34%, #000 18%, transparent 76%);
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  will-change: transform;
}
.hero-glow-a {
  width: 58vw; height: 58vw;
  max-width: 780px; max-height: 780px;
  top: -20%; right: -8%;
  background: radial-gradient(circle, rgba(59, 64, 144, 0.62), transparent 66%);
  animation: drift 24s ease-in-out infinite alternate;
}
.hero-glow-b {
  width: 42vw; height: 42vw;
  max-width: 560px; max-height: 560px;
  bottom: -22%; left: -12%;
  background: radial-gradient(circle, rgba(78, 85, 190, 0.28), transparent 68%);
  animation: drift 30s ease-in-out infinite alternate-reverse;
}
@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(-5%, 6%, 0) scale(1.12); }
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3.5rem);
  padding-block: clamp(3rem, 7vh, 5rem) 0;
}
.hero-inner > * { min-width: 0; }
.hero-copy { max-width: 33rem; }
.hero-copy .eyebrow-pill { margin-bottom: 1.5rem; }
.hero h1 { margin-bottom: 1.35rem; }
.hero .lede { color: var(--inv-2); max-width: 40ch; margin-bottom: 2.1rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }

/* google rating, sat directly under the buttons. The score drives the star row
   through --rating: a filled copy of the five stars is laid over a dimmed copy
   and clipped to that width, so 4.8 reads as four and a bit rather than five. */
.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.85rem;
  font-size: 0.85rem;
  color: var(--inv-2);
  text-decoration: none;
}
.hero-rating:hover .rate-text strong { text-decoration: underline; text-underline-offset: 3px; }
.hero-rating .g-mark { width: 16px; height: 16px; flex: none; }

.rate-stars { position: relative; flex: none; line-height: 0; }
.rate-stars > span { display: flex; gap: 0.1rem; }
.rate-stars svg { width: 14px; height: 14px; flex: none; }
.rate-track { color: rgba(255, 255, 255, 0.2); }
.rate-fill {
  position: absolute;
  inset: 0;
  width: var(--rating, 100%);
  overflow: hidden;
  color: #ffb020;
}
.rate-text { white-space: nowrap; }
.rate-text strong { color: var(--inv); font-weight: 600; }

/* three plain proof points beneath the buttons, sized to hold a single line
   across the copy column. Each item is nowrap so a point never breaks
   mid-phrase; the row itself may still wrap as a last resort on narrow copy. */
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.15rem;
  margin-top: 1.7rem;
}
.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.83rem;
  font-weight: 500;
  white-space: nowrap;
  color: var(--inv-2);
}
.hero-points svg { width: 14px; height: 14px; color: var(--accent-lift); flex: none; }

/* ---- the vehicles ----
   The trio is staged as if it had just pulled up: a road plane recedes behind
   them with its lane marks running toward the viewer and a few light streaks
   pass across at speed. */
.hero-visual { position: relative; }
.hero-stage {
  position: relative;
  display: grid;
  place-items: center;
  margin-right: calc(var(--gutter) * -1);
  isolation: isolate;
}

/* the receding tarmac: horizontal lane marks scroll toward the camera while
   the converging verticals stay put, which is what sells the perspective */
.hero-road {
  position: absolute;
  z-index: 0;
  left: 50%; bottom: 2%;
  width: 155%; height: 66%;
  transform: translateX(-50%) perspective(320px) rotateX(66deg);
  transform-origin: 50% 100%;
  background-image:
    repeating-linear-gradient(to bottom, rgba(154, 160, 236, 0.42) 0 2px, transparent 2px 54px),
    repeating-linear-gradient(to right, rgba(78, 85, 190, 0.3) 0 1px, transparent 1px 78px);
  background-size: 100% 54px, 78px 100%;
  -webkit-mask-image: radial-gradient(ellipse 58% 82% at 50% 92%, #000 8%, transparent 72%);
  mask-image: radial-gradient(ellipse 58% 82% at 50% 92%, #000 8%, transparent 72%);
  animation: roadRun 3.4s linear infinite;
}
@keyframes roadRun {
  from { background-position: 0 0, 0 0; }
  to   { background-position: 0 54px, 0 0; }
}

/* Each `i` spans the full stage and carries the dash on its ::before, so the
   210%-of-self travel below clears the frame at any stage width. */
.hero-streaks {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 16%, #000 84%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 16%, #000 84%, transparent);
}
.hero-streaks i {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  animation: streak 6s linear infinite;
  will-change: transform;
}
.hero-streaks i::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--len, 32%);
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(to left, transparent, var(--streak, rgba(154, 160, 236, 0.9)), transparent);
}
.hero-streaks i:nth-child(1) { top: 20%; --len: 36%; animation-duration: 5.2s; }
.hero-streaks i:nth-child(2) { top: 37%; --len: 20%; animation-duration: 7s; animation-delay: 1.7s; opacity: 0.55; }
.hero-streaks i:nth-child(3) { top: 63%; --len: 44%; animation-duration: 6.2s; animation-delay: 3.4s; --streak: rgba(241, 133, 32, 0.72); }
.hero-streaks i:nth-child(4) { top: 79%; --len: 24%; animation-duration: 8.4s; animation-delay: 2.3s; opacity: 0.45; }
@keyframes streak {
  0%        { transform: translate3d(105%, 0, 0); opacity: 0; }
  10%       { opacity: 1; }
  60%       { opacity: 1; }
  72%, 100% { transform: translate3d(-105%, 0, 0); opacity: 0; }
}

.hero-car-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 780px;
  animation: heroRollIn 1.15s var(--ease-out) both, heroDolly 11s ease-in-out 1.15s infinite;
}
.hero-car {
  display: block;
  width: 100%;
  height: auto;
  /* the render carries its own soft contact shadow; this one only lifts the
     group off the road lines running underneath */
  filter: drop-shadow(0 18px 26px rgba(4, 5, 12, 0.72));
}
@keyframes heroRollIn {
  from { opacity: 0; transform: translate3d(9%, 0, 0) scale(1.035); }
  to   { opacity: 1; transform: none; }
}
@keyframes heroDolly {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50%      { transform: translate3d(-1.4%, 0, 0) scale(1.014); }
}

.hero-pool {
  position: absolute;
  left: 50%; bottom: 6%;
  width: 88%; height: 62px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(78, 85, 190, 0.52), rgba(59, 64, 144, 0.24) 45%, transparent 72%);
  filter: blur(26px);
}

/* ---- stats strip across the base of the hero ---- */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: clamp(2.5rem, 5vh, 4rem);
  padding-block: 1.75rem clamp(4rem, 8vw, 6.5rem);
  border-top: 1px solid var(--hair-2);
}
.hero-stats .stat-n {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(1.7rem, 2.6vw, 2.25rem);
  line-height: 1;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  color: var(--inv);
}
.hero-stats .stat-l {
  font-size: 0.78rem;
  color: var(--inv-3);
  margin-top: 0.5rem;
  letter-spacing: 0;
  text-transform: none;
}

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: minmax(0, 1fr); gap: 0.5rem; }
  .hero-copy { max-width: 38rem; }
  .hero-visual { order: 2; }
  .hero-stage { margin-inline: 0; margin-top: 1.5rem; }
  /* stacked, the road plane is shallower than the stage is wide, so it is
     pulled in and the streaks thinned out to stop them reading as clutter */
  .hero-road { width: 130%; height: 78%; }
  .hero-streaks i:nth-child(2), .hero-streaks i:nth-child(4) { display: none; }
}
@media (max-width: 620px) {
  .hero-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 1.6rem; }
  /* the badge is a single nowrap line, so on the narrowest phones the review
     count is allowed to drop under the stars rather than overflow the gutter */
  .hero-rating { flex-wrap: wrap; gap: 0.4rem 0.5rem; }
}

/* ---------- 8. Booking bar ----------
   A light card straddling the seam between the dark hero and the page. */
.book-bar {
  position: relative;
  z-index: 5;
  margin-top: clamp(-4.5rem, -6vw, -3.25rem);
}
.book-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-3);
  padding: 0.85rem;
}
.book-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  gap: 0.25rem;
  align-items: stretch;
}
/* A <select> is sized by its longest option, which is wide enough here to
   push the whole grid past the viewport. min-width:0 lets the track win. */
.field {
  position: relative;
  display: grid;
  gap: 0.2rem;
  min-width: 0;
  padding: 0.7rem 1rem;
  border-radius: var(--r-sm);
  transition: background-color 0.3s var(--ease);
}
.field + .field::before {
  content: "";
  position: absolute;
  left: -0.13rem;
  top: 24%; bottom: 24%;
  width: 1px;
  background: var(--line);
}
.field:hover, .field:focus-within { background: var(--paper-2); }
.field:hover::before, .field:focus-within::before { opacity: 0; }
.field label {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-3);
}
.field label svg { width: 13px; height: 13px; color: var(--brand); }
.field input, .field select {
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  padding: 0;
  outline: none;
  appearance: none;
  cursor: pointer;
  font-family: var(--f-display);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}
.field.has-caret::after {
  content: "";
  position: absolute;
  right: 1rem; bottom: 1.05rem;
  width: 6px; height: 6px;
  border-right: 1.6px solid var(--text-3);
  border-bottom: 1.6px solid var(--text-3);
  transform: rotate(45deg);
  pointer-events: none;
}
.book-grid .btn { align-self: stretch; height: auto; padding-inline: 1.6rem; }

@media (max-width: 1100px) {
  .book-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.35rem; }
  .book-grid .btn { grid-column: 1 / -1; margin-top: 0.35rem; padding-block: 0.95rem; }
  .field + .field::before { display: none; }
  .field { background: var(--paper-2); }
}
@media (max-width: 560px) {
  .book-grid { grid-template-columns: 1fr; }
  .book-bar { margin-top: -2.5rem; }
}

/* ---------- 9. Brand marquee ---------- */
.brand-band {
  background: var(--paper);
  border-bottom: 1px solid var(--line-2);
  padding-block: clamp(2.5rem, 4.5vw, 3.5rem);
}
.brand-band .cap {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-3);
  margin-bottom: 1.75rem;
}
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}
.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: clamp(2.5rem, 5.5vw, 4.5rem);
  animation: slide 44s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes slide { to { transform: translateX(-50%); } }
/* logos run from tall roundels to wide wordmarks — cap both axes so the
   strip reads as one optical weight */
.marquee img {
  width: auto; height: auto;
  max-height: clamp(24px, 2.2vw, 30px);
  max-width: clamp(78px, 7.5vw, 104px);
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.4;
  transition: opacity 0.35s var(--ease), filter 0.35s var(--ease);
}
.marquee img:hover { filter: none; opacity: 1; }

/* ---------- 10. Fleet ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.05rem;
  border-radius: 100px;
  border: 1px solid var(--line);
  font-family: var(--f-display);
  font-size: 0.885rem;
  font-weight: 600;
  color: var(--text-2);
  white-space: nowrap;
  transition: color 0.28s var(--ease), background-color 0.28s var(--ease),
              border-color 0.28s var(--ease);
}
.chip:hover { color: var(--text); background: var(--paper-2); }
.chip[aria-pressed="true"] {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.chip .n {
  display: inline-grid;
  place-items: center;
  min-width: 20px; height: 20px;
  padding-inline: 5px;
  border-radius: 100px;
  background: rgba(16, 19, 32, 0.07);
  font-size: 0.72rem;
  font-variant-numeric: tabular-nums;
  transition: background-color 0.28s var(--ease);
}
.chip[aria-pressed="true"] .n { background: rgba(255, 255, 255, 0.22); }

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(288px, 1fr));
  gap: clamp(1rem, 1.6vw, 1.4rem);
}

.car {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out),
              border-color 0.45s var(--ease-out);
}
.car:hover { transform: translateY(-5px); border-color: transparent; box-shadow: var(--sh-3); }

/* Every PNG is pre-normalised to a shared scale and ground line, so a fixed
   box plus object-fit is all the sizing the card needs. */
.car-media {
  position: relative;
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  padding: 1.1rem 1rem 0.5rem;
  background: linear-gradient(168deg, var(--paper-2), var(--paper-3));
  overflow: hidden;
}
.car-media::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 11%;
  width: 58%; height: 14px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(16, 19, 32, 0.22), transparent 70%);
  filter: blur(9px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}
.car-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.55s var(--ease-out);
}
.car:hover .car-media img { transform: translateY(-4px) scale(1.04); }
.car:hover .car-media::after { opacity: 0.55; transform: translateX(-50%) scale(1.08); }

.car-tag {
  position: absolute;
  top: 0.85rem; left: 0.85rem;
  z-index: 2;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
  font-family: var(--f-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--text-2);
}
.car-tag.is-electric { color: #0d7a4a; border-color: rgba(13, 122, 74, 0.22); }
.car-tag.is-executive {
  background: var(--brand);
  border-color: transparent;
  color: #fff;
}

.car-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.8rem;
  padding: 1.1rem 1.25rem 1.25rem;
  border-top: 1px solid var(--line-2);
}
.car-name {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.16rem;
  letter-spacing: -0.028em;
  line-height: 1.15;
  color: var(--text);
}
.car-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.95rem;
  margin-top: -0.3rem;
  font-size: 0.815rem;
  color: var(--text-2);
}
.car-specs li { display: inline-flex; align-items: center; gap: 0.32rem; }
.car-specs svg { width: 14px; height: 14px; color: var(--text-3); flex: none; }

.car-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line-2);
}
.car-feats { font-size: 0.76rem; color: var(--text-3); }
.car-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--f-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand);
  white-space: nowrap;
}
.car-cta svg { width: 1em; height: 1em; transition: transform 0.35s var(--ease); }
.car:hover .car-cta svg { transform: translateX(4px); }
.car-cta::after { content: ""; position: absolute; inset: 0; }

.empty-state {
  grid-column: 1 / -1;
  padding: 4rem 1rem;
  text-align: center;
  color: var(--text-3);
}

/* ---------- 11. Feature grid ----------
   Hairline-divided cells rather than floating cards — quieter, and it
   stops three boxes competing for the same attention. */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.feat {
  position: relative;
  padding: clamp(1.75rem, 2.4vw, 2.3rem);
  background: var(--paper);
  transition: background-color 0.4s var(--ease);
}
.feat:hover { background: var(--paper-2); }
.feat-ico {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 13px;
  background: rgba(59, 64, 144, 0.08);
  border: 1px solid rgba(59, 64, 144, 0.16);
  color: var(--brand);
  margin-bottom: 1.25rem;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease);
}
.feat-ico svg { width: 22px; height: 22px; }
.feat:hover .feat-ico { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(59, 64, 144, 0.18); }
.feat h3 {
  font-family: var(--f-display);
  font-size: 1.14rem;
  font-weight: 600;
  letter-spacing: -0.024em;
  margin-bottom: 0.55rem;
}
.feat p { font-size: 0.925rem; line-height: 1.66; color: var(--text-2); }
.feat-num {
  position: absolute;
  top: 1.15rem; right: 1.5rem;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 2.6rem;
  line-height: 1;
  letter-spacing: -0.045em;
  color: rgba(16, 19, 32, 0.06);
  pointer-events: none;
}

.section-dark .feat-grid { background: var(--hair-2); border-color: var(--hair-2); }
.section-dark .feat { background: var(--ink-850); }
.section-dark .feat:hover { background: var(--ink-800); }
.section-dark .feat p { color: var(--inv-2); }
.section-dark .feat-num { color: rgba(255, 255, 255, 0.05); }
.section-dark .feat-ico {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--hair);
  color: var(--accent-lift);
}

/* ---------- 12. Split / editorial ---------- */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
  gap: clamp(2rem, 4.5vw, 4.25rem);
  align-items: center;
}
.split-copy > * + * { margin-top: 1.25rem; }
.split-copy .btn, .split-copy .arrow-link { margin-top: 1.75rem; }

.frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--sh-2);
}
.frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease-out); }
.frame:hover img { transform: scale(1.04); }
.frame-tall { aspect-ratio: 3 / 4; }
.frame-wide { aspect-ratio: 3 / 2; }

.frame-badge {
  position: absolute;
  right: clamp(-0.5rem, 1vw, 1.25rem);
  bottom: 1.25rem;
  z-index: 2;
  padding: 1.1rem 1.5rem;
  border-radius: var(--r-md);
  background: var(--accent);
  color: #fff;
  text-align: center;
  box-shadow: 0 16px 36px rgba(241, 133, 32, 0.34);
}
.frame-badge .n {
  display: block;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.9rem;
  line-height: 1;
  letter-spacing: -0.04em;
}
.frame-badge .l {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  opacity: 0.92;
}

.tick-list { display: grid; gap: 0.75rem; }
.tick-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.95rem;
  color: var(--text-2);
}
.section-dark .tick-list li { color: var(--inv-2); }
.tick-list svg {
  width: 18px; height: 18px;
  flex: none;
  margin-top: 0.22rem;
  color: var(--accent);
}

/* ---------- 13. Services ---------- */
/* Explicit column counts — auto-fit left the fourth card orphaned on its
   own row at desktop widths. */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.4vw, 1.25rem);
}
@media (max-width: 1180px) { .svc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px)  { .svc-grid { grid-template-columns: 1fr; } }
.svc {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 370px;
  padding: 1.75rem;
  border-radius: var(--r-lg);
  overflow: hidden;
  isolation: isolate;
  color: #fff;
}
.svc img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}
.svc::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(7, 8, 16, 0.1) 22%, rgba(7, 8, 16, 0.72) 62%, rgba(7, 8, 16, 0.95) 100%);
  transition: background 0.5s var(--ease);
}
.svc:hover img { transform: scale(1.06); }
.svc:hover::after {
  background: linear-gradient(180deg, rgba(34, 38, 92, 0.2) 18%, rgba(7, 8, 16, 0.8) 58%, rgba(7, 8, 16, 0.97) 100%);
}
.svc h3 {
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.028em;
  margin-bottom: 0.5rem;
}
.svc p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.74);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.6s var(--ease-out), opacity 0.45s var(--ease), margin-top 0.6s var(--ease-out);
}
.svc:hover p, .svc:focus-within p { max-height: 10rem; opacity: 1; margin-top: 0.2rem; }
.svc .arrow-link { margin-top: 1rem; }
.svc-num {
  position: absolute;
  top: 1.4rem; left: 1.75rem;
  font-family: var(--f-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.55);
}
@media (hover: none) {
  .svc p { max-height: 10rem; opacity: 1; margin-top: 0.2rem; }
}

/* ---------- 14. Testimonials ---------- */
/* A swipe rail with the bars hidden — the cards themselves are the affordance,
   with the right-hand one deliberately part-cut so more is clearly to come.
   overflow-y is pinned to hidden because a non-visible overflow-x otherwise
   computes overflow-y to auto and the hover lift trips a vertical bar; the
   block padding (offset by the negative margin) gives that lift its room. */
.quote-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(min(86vw, 386px), 1fr);
  gap: 1.1rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  padding-block: 10px 18px;
  margin-top: -10px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.quote-rail::-webkit-scrollbar { display: none; }

.quote {
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding: 1.75rem;
  border-radius: var(--r-lg);
  background: var(--paper);
  border: 1px solid var(--line);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out),
              border-color 0.4s var(--ease);
}
.quote:hover { transform: translateY(-4px); border-color: transparent; box-shadow: var(--sh-2); }
.stars { display: flex; gap: 0.15rem; color: #ffb020; }
.stars svg { width: 15px; height: 15px; }
.quote p { flex: 1; font-size: 0.95rem; line-height: 1.72; color: var(--text-2); }
.quote-by {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line-2);
}
.avatar {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  flex: none;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-family: var(--f-display);
  font-size: 0.85rem;
  font-weight: 600;
}
.quote-by .who { font-family: var(--f-display); font-size: 0.92rem; font-weight: 600; line-height: 1.3; }
.quote-by .role { font-size: 0.78rem; color: var(--text-3); }

.section-dark .quote { background: var(--ink-850); border-color: var(--hair-2); }
.section-dark .quote:hover { border-color: var(--hair); box-shadow: none; }
.section-dark .quote p { color: var(--inv-2); }
.section-dark .quote-by { border-top-color: var(--hair-2); }
.section-dark .quote-by .role { color: var(--inv-3); }

/* ---------- 15. CTA band ---------- */
.cta-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--r-xl);
  padding: clamp(2.75rem, 5.5vw, 4.5rem);
  text-align: center;
  background: var(--ink-900);
  color: var(--inv);
}
.cta-band::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(58% 90% at 82% 8%, rgba(241, 133, 32, 0.22), transparent 62%),
    radial-gradient(62% 96% at 12% 96%, rgba(59, 64, 144, 0.5), transparent 64%);
}
.cta-band .display { margin-bottom: 1rem; }
.cta-band .lede { color: var(--inv-2); margin-inline: auto; margin-bottom: 2.1rem; }
.cta-band .eyebrow { color: var(--accent-lift); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }

/* ---------- 16. Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--inv);
  background: var(--ink-900);
  margin-top: calc(var(--head-h) * -1);
  padding-block: calc(var(--head-h) + clamp(3.5rem, 9vh, 6rem)) clamp(3.25rem, 7vh, 5rem);
}
.page-hero img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 55%;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(7, 8, 16, 0.88) 0%, rgba(7, 8, 16, 0.62) 48%, var(--ink-900) 100%);
}
.page-hero .eyebrow { color: var(--accent-lift); margin-bottom: 1.15rem; }
.page-hero .lede { color: var(--inv-2); margin-top: 1.25rem; }

.crumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--inv-3);
  margin-bottom: 1.4rem;
}
.crumbs a:hover { color: var(--accent-lift); }
.crumbs span { opacity: 0.5; }

/* ---------- 17. Forms ---------- */
.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--sh-1);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
  gap: 1rem;
}
.form-row { display: grid; gap: 0.4rem; min-width: 0; }
.form-row.is-full { grid-column: 1 / -1; }
.form-row input, .form-row select, .form-row textarea { min-width: 0; }
.form-row label {
  font-family: var(--f-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-2);
}
.form-row label .req { color: var(--accent); }
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  padding: 0.8rem 0.95rem;
  border-radius: var(--r-sm);
  background: var(--paper-2);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 0.94rem;
  appearance: none;
  transition: border-color 0.25s var(--ease), background-color 0.25s var(--ease),
              box-shadow 0.25s var(--ease);
}
.form-row select { cursor: pointer; }
.form-row textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none;
  background: var(--paper);
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(59, 64, 144, 0.12);
}
.form-row input::placeholder, .form-row textarea::placeholder { color: var(--text-3); }
.form-note { font-size: 0.84rem; color: var(--text-3); }
.form-msg {
  display: none;
  padding: 0.85rem 1.1rem;
  border-radius: var(--r-sm);
  background: rgba(13, 122, 74, 0.08);
  border: 1px solid rgba(13, 122, 74, 0.28);
  color: #0d7a4a;
  font-size: 0.9rem;
}
.form-msg.is-on { display: block; }

.section-dark .form-card { background: var(--ink-850); border-color: var(--hair-2); box-shadow: none; }
.section-dark .form-row label { color: var(--inv-2); }
.section-dark .form-row input,
.section-dark .form-row select,
.section-dark .form-row textarea {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--hair);
  color: var(--inv);
}
.section-dark .form-row select option { background: var(--ink-800); }
.section-dark .form-row input:focus,
.section-dark .form-row select:focus,
.section-dark .form-row textarea:focus {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(241, 133, 32, 0.16);
}
.section-dark .form-row input::placeholder,
.section-dark .form-row textarea::placeholder { color: var(--inv-3); }
.section-dark .form-row input::-webkit-calendar-picker-indicator { filter: invert(1); opacity: 0.5; }
.section-dark .form-note { color: var(--inv-3); }

/* ---------- 18. Contact ---------- */
.info-list { display: grid; gap: 1.25rem; }
.info-item { display: flex; gap: 0.9rem; align-items: flex-start; }
.info-ico {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  flex: none;
  border-radius: 12px;
  background: rgba(59, 64, 144, 0.08);
  border: 1px solid rgba(59, 64, 144, 0.16);
  color: var(--brand);
}
.info-ico svg { width: 18px; height: 18px; }
.info-item .k { font-size: 0.78rem; color: var(--text-3); margin-bottom: 0.2rem; }
.info-item .v { font-size: 1rem; line-height: 1.5; }
.info-item .v a:hover { color: var(--brand); }

.section-dark .info-ico {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--hair);
  color: var(--accent-lift);
}
.section-dark .info-item .k { color: var(--inv-3); }
.section-dark .info-item .v a:hover { color: var(--accent-lift); }

.map-frame {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 10;
  background: var(--paper-2);
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }

/* ---------- 19. Discover cards ---------- */
.disc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 288px), 1fr));
  gap: clamp(0.9rem, 1.5vw, 1.4rem);
}
.disc {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out),
              border-color 0.4s var(--ease);
}
.disc:hover { transform: translateY(-5px); border-color: transparent; box-shadow: var(--sh-2); }
.disc .pic { aspect-ratio: 3 / 2; overflow: hidden; }
.disc .pic img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease-out); }
.disc:hover .pic img { transform: scale(1.06); }
.disc .txt { padding: 1.4rem 1.5rem 1.6rem; }
.disc h3 {
  font-family: var(--f-display);
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: -0.024em;
  margin-bottom: 0.5rem;
}
.disc p { font-size: 0.91rem; line-height: 1.66; color: var(--text-2); }

.section-dark .disc { background: var(--ink-850); border-color: var(--hair-2); }
.section-dark .disc:hover { border-color: var(--hair); box-shadow: none; }
.section-dark .disc p { color: var(--inv-2); }

/* ---------- 20. Footer ---------- */
.site-foot {
  background: var(--ink-950);
  color: var(--inv);
  padding-block: clamp(3.25rem, 5.5vw, 4.5rem) 0;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 3.25rem);
  padding-bottom: 3rem;
}
@media (max-width: 900px) { .foot-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .foot-grid { grid-template-columns: 1fr; } }

.foot-brand img { height: 28px; margin-bottom: 1.25rem; }
.foot-brand p { font-size: 0.9rem; line-height: 1.7; color: var(--inv-3); max-width: 34ch; }
.foot-h {
  font-family: var(--f-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--inv);
  margin-bottom: 1.1rem;
}
.foot-list { display: grid; gap: 0.65rem; font-size: 0.9rem; color: var(--inv-3); }
.foot-list a { transition: color 0.25s var(--ease); }
.foot-list a:hover { color: var(--accent-lift); }

.socials { display: flex; gap: 0.55rem; margin-top: 1.5rem; }
.socials a {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--hair);
  color: var(--inv-2);
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease),
              border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.socials a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}
.socials svg { width: 16px; height: 16px; }

.foot-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.5rem;
  border-top: 1px solid var(--hair-2);
  font-size: 0.82rem;
  color: var(--inv-3);
}
.foot-bar a:hover { color: var(--accent-lift); }

/* ---------- 21. Floating WhatsApp ---------- */
.wa {
  position: fixed;
  right: clamp(1rem, 2.5vw, 1.6rem);
  bottom: clamp(1rem, 2.5vw, 1.6rem);
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.2rem 0.75rem 0.9rem;
  border-radius: 100px;
  background: #25d366;
  color: #04300f;
  font-family: var(--f-display);
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.42);
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.55s var(--ease-out), opacity 0.45s var(--ease), box-shadow 0.35s var(--ease);
}
.wa.is-on { transform: translateY(0); opacity: 1; }
.wa:hover { box-shadow: 0 18px 44px rgba(37, 211, 102, 0.58); }
.wa svg { width: 20px; height: 20px; flex: none; }
@media (max-width: 620px) {
  .wa { padding: 0.85rem; gap: 0; }
  .wa .wa-t { display: none; }
}

/* ---------- 22. Reveal on scroll ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  transition-delay: var(--d, 0ms);
}
[data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; }
}

/* ---------- 23. Utilities ---------- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.skip {
  position: absolute;
  top: -60px; left: 1rem;
  z-index: 100;
  padding: 0.7rem 1.2rem;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  background: var(--accent);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  transition: top 0.3s var(--ease);
}
.skip:focus { top: 0; }

.stack-sm > * + * { margin-top: 0.75rem; }
.stack > * + * { margin-top: 1.25rem; }
.stack-lg > * + * { margin-top: 2rem; }
.center { text-align: center; }
.mt-lg { margin-top: clamp(2.25rem, 4.5vw, 3.5rem); }
.rule { height: 1px; border: 0; background: var(--line); }
.section-dark .rule { background: var(--hair-2); }
