/* ==========================================================================
   Compass Car Hire — Design System
   Brand: #004A7F (marine blue, from logo) · #404040 (charcoal, from logo)
   Secondary: Maltese limestone gold, used sparingly.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand */
  --brand:        #004A7F;
  --brand-700:    #003a64;
  --brand-600:    #005b9b;
  --brand-400:    #2f7fb4;
  --brand-200:    #9cc4dd;
  --brand-50:     #eef5fa;

  /* Deep navy field */
  --navy-950:     #021420;
  --navy-900:     #04202f;
  --navy-800:     #062d42;
  --navy-700:     #0a3a54;

  /* Neutrals */
  --charcoal:     #404040;
  --ink:          #12212b;
  --ink-2:        #4a5964;
  --ink-3:        #5f6a71;   /* >= 4.7:1 on every light surface */
  --ivory:        #fbf9f6;
  --sand:         #f1ece4;
  --sand-2:       #e4ddd1;
  --white:        #ffffff;

  /* Accent. The bright golds are for dark surfaces; on light backgrounds the
     deeper bronzes carry the same warmth while clearing WCAG AA. */
  --gold:         #c19a4b;
  --gold-light:   #dcbc78;
  --gold-soft:    #f0e3c9;
  --gold-deep:    #a37f33;   /* >= 3:1 on light — large display text */
  --gold-ink:     #7f6120;   /* >= 4.9:1 on light — small text */

  /* Lines & shadow */
  --line:         rgba(18, 33, 43, .11);
  --line-strong:  rgba(18, 33, 43, .2);
  --line-light:   rgba(255, 255, 255, .14);

  --shadow-sm:    0 1px 2px rgba(4, 32, 47, .06), 0 2px 8px rgba(4, 32, 47, .05);
  --shadow-md:    0 2px 4px rgba(4, 32, 47, .05), 0 10px 26px -6px rgba(4, 32, 47, .12);
  --shadow-lg:    0 4px 8px rgba(4, 32, 47, .05), 0 24px 60px -12px rgba(4, 32, 47, .22);
  --shadow-xl:    0 40px 90px -24px rgba(2, 20, 32, .45);

  /* Type */
  --font-display: "Fraunces", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --font-sans:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Rhythm */
  --topbar-h:     42px;
  --container:    1220px;
  --gutter:       clamp(1.25rem, 4vw, 2.5rem);
  --section-y:    clamp(4.5rem, 9vw, 8.5rem);
  --radius-sm:    6px;
  --radius:       12px;
  --radius-lg:    20px;

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

/* --------------------------------------------------------------------------
   2. Reset
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

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

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern" 1, "liga" 1;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}

::selection { background: var(--brand); color: #fff; }

/* --------------------------------------------------------------------------
   3. Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.015em;
  font-variation-settings: "SOFT" 0, "WONK" 0, "opsz" 40;
  color: var(--ink);
  text-wrap: balance;
}

.display {
  font-size: clamp(2.9rem, 6.6vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -.028em;
}

h1 { font-size: clamp(2.5rem, 5.4vw, 4.25rem); }
h2 { font-size: clamp(2rem, 3.9vw, 3.15rem); }
h3 { font-size: clamp(1.3rem, 1.9vw, 1.6rem); letter-spacing: -.01em; }
h4 { font-size: 1.1rem; letter-spacing: -.005em; }

p { text-wrap: pretty; }

.lead {
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
  line-height: 1.7;
  color: var(--ink-2);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 1.15rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex: none;
}
.eyebrow--center::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex: none;
}

.gold-word { color: var(--gold-deep); font-style: italic; }
.on-dark .gold-word { color: var(--gold-light); }
.italic-serif { font-style: italic; font-variation-settings: "SOFT" 40, "WONK" 1, "opsz" 40; }

/* Dark surfaces */
.on-dark, .on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4 { color: var(--white); }
.on-dark .lead { color: rgba(255, 255, 255, .74); }
.on-dark .eyebrow { color: var(--gold-light); }

/* --------------------------------------------------------------------------
   4. Layout
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: 880px; }

.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: clamp(3rem, 6vw, 5.5rem); }
.section--flush-b { padding-bottom: 0; }
.section--sand { background: var(--sand); }
.section--dark { background: var(--navy-900); color: rgba(255, 255, 255, .74); }
.section--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 420px at 12% -10%, rgba(0, 74, 127, .55), transparent 70%),
    radial-gradient(700px 380px at 92% 108%, rgba(193, 154, 75, .1), transparent 70%);
  pointer-events: none;
}
.section--dark > * { position: relative; z-index: 1; }

.section-head { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head p { margin-top: 1.15rem; }

.section-head--split {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem 3rem;
  align-items: end;
}
@media (max-width: 780px) {
  .section-head--split { grid-template-columns: 1fr; align-items: start; }
}

.grid { display: grid; gap: clamp(1.25rem, 2.2vw, 1.9rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }

.hairline { height: 1px; background: var(--line); border: 0; }

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  --btn-bg: var(--brand);
  --btn-fg: #fff;
  --btn-bd: var(--brand);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  padding: 1rem 1.75rem;
  border: 1px solid var(--btn-bd);
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  overflow: hidden;
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out),
              background-color .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.btn > * { position: relative; z-index: 1; }
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, .22), transparent 80%);
  transform: translateX(-120%);
  transition: transform .8s var(--ease-out);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:hover::after { transform: translateX(120%); }
.btn:active { transform: translateY(0); }

.btn__icon { transition: transform .4s var(--ease-out); }
.btn:hover .btn__icon { transform: translateX(4px); }

.btn--gold  { --btn-bg: var(--gold); --btn-bd: var(--gold); --btn-fg: var(--navy-950); }
.btn--gold:hover { --btn-bg: var(--gold-light); --btn-bd: var(--gold-light); }

.btn--light { --btn-bg: #fff; --btn-bd: #fff; --btn-fg: var(--navy-900); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-bd: var(--line-strong);
  --btn-fg: var(--ink);
}
.btn--ghost:hover { --btn-bd: var(--brand); --btn-fg: var(--brand); }

.btn--ghost-light {
  --btn-bg: transparent;
  --btn-bd: rgba(255, 255, 255, .3);
  --btn-fg: #fff;
}
.btn--ghost-light:hover { --btn-bg: rgba(255, 255, 255, .1); --btn-bd: rgba(255, 255, 255, .55); }

.btn--sm { padding: .72rem 1.3rem; font-size: .78rem; }
.btn--block { width: 100%; }

/* Text link with animated rule */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brand);
  padding-bottom: .35rem;
  background-image: linear-gradient(var(--gold), var(--gold));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 1px;
  transition: color .3s var(--ease);
}
.link-arrow svg { transition: transform .4s var(--ease-out); }
.link-arrow:hover { color: var(--gold-ink); }
.link-arrow:hover svg { transform: translateX(5px); }
.on-dark .link-arrow { color: var(--gold-light); }

/* --------------------------------------------------------------------------
   6. Logo
   -------------------------------------------------------------------------- */
.logo { display: inline-flex; align-items: center; gap: .8rem; }
.logo__mark { width: 40px; height: 40px; flex: none; transition: transform .8s var(--ease-out); }
.logo:hover .logo__mark { transform: rotate(45deg); }
.logo__type { display: flex; flex-direction: column; line-height: 1; }
.logo__name {
  font-family: var(--font-sans);
  font-size: 1.42rem;
  font-weight: 700;
  letter-spacing: -.028em;
  color: var(--charcoal);
  transition: color .35s var(--ease);
}
.logo__sub {
  display: block;
  margin-top: .28rem;
  padding-top: .28rem;
  border-top: 1px solid var(--brand-200);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .17em;
  text-transform: lowercase;
  color: var(--brand);
  transition: color .35s var(--ease), border-color .35s var(--ease);
}
.logo--light .logo__name { color: #fff; }
.logo--light .logo__sub { color: var(--brand-200); border-color: rgba(255, 255, 255, .28); }

/* --------------------------------------------------------------------------
   7. Header
   -------------------------------------------------------------------------- */
.topbar {
  background: var(--navy-950);
  color: rgba(255, 255, 255, .68);
  font-size: .78rem;
  letter-spacing: .02em;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 42px;
  padding-block: .35rem;
}
.topbar__list { display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: .5rem; }
.topbar__item a { display: inline-block; padding-block: .3rem; }
.topbar__item svg { color: var(--gold); flex: none; }
.topbar a:hover { color: #fff; }
.topbar__stars { color: var(--gold); letter-spacing: .12em; }
@media (max-width: 900px) { .topbar__hide-sm { display: none; } }
@media (max-width: 560px) {
  .topbar { display: none; }
  :root { --topbar-h: 0px; }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 249, 246, .82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background-color .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.site-header.is-stuck {
  background: rgba(251, 249, 246, .95);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px -20px rgba(4, 32, 47, .5);
}

/* Transparent header over hero.
   Sits below the top bar until the page scrolls, then snaps flush to the viewport. */
.site-header--overlay {
  position: fixed;
  top: var(--topbar-h, 42px);
  right: 0;
  left: 0;
  background: transparent;
  transition: top .4s var(--ease), background-color .4s var(--ease),
              border-color .4s var(--ease), box-shadow .4s var(--ease);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: rgba(255, 255, 255, .12);
}
.site-header--overlay .logo__name { color: #fff; }
.site-header--overlay .logo__sub { color: var(--brand-200); border-color: rgba(255, 255, 255, .3); }
.site-header--overlay .nav__link { color: rgba(255, 255, 255, .82); }
.site-header--overlay .nav__link:hover,
.site-header--overlay .nav__link[aria-current="page"] { color: #fff; }
.site-header--overlay .nav-toggle span { background: #fff; }
.site-header--overlay .header__phone { color: rgba(255, 255, 255, .82); }
.site-header--overlay .header__phone:hover { color: #fff; }

.site-header--overlay.is-stuck {
  top: 0;
  background: rgba(4, 32, 47, .9);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-bottom-color: rgba(255, 255, 255, .1);
  box-shadow: 0 10px 40px -24px rgba(0, 0, 0, .8);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 82px;
}
.site-header.is-stuck .header__inner { min-height: 70px; transition: min-height .4s var(--ease); }

.nav { display: flex; align-items: center; gap: clamp(1.4rem, 2.6vw, 2.6rem); }
.nav__link {
  position: relative;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding-block: .4rem;
  transition: color .3s var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .45s var(--ease-out);
}
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--brand); }
.nav__link:hover::after, .nav__link[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }

.header__actions { display: flex; align-items: center; gap: 1.25rem; }
.header__phone {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding-block: .3rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink);
  transition: color .3s var(--ease);
}
.header__phone svg { color: var(--gold); }
.header__phone:hover { color: var(--brand); }

@media (max-width: 1060px) { .header__phone span { display: none; } }
@media (max-width: 940px) { .nav--desktop, .header__actions .btn { display: none; } }

/* Mobile nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .4s var(--ease-out), opacity .25s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
@media (max-width: 940px) { .nav-toggle { display: flex; } }

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--navy-950);
  padding: 7rem var(--gutter) 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .45s var(--ease), transform .45s var(--ease-out), visibility .45s;
  overflow-y: auto;
}
.mobile-nav.is-open { opacity: 1; visibility: visible; transform: none; }
.mobile-nav__list { display: flex; flex-direction: column; }
.mobile-nav__list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: #fff;
  transition: color .3s var(--ease), padding-left .35s var(--ease-out);
}
.mobile-nav__list a:hover { color: var(--gold-light); padding-left: .5rem; }
.mobile-nav__list a span { font-family: var(--font-sans); font-size: .75rem; color: var(--brand-200); letter-spacing: .1em; }
.mobile-nav__foot { display: flex; flex-direction: column; gap: .6rem; color: rgba(255, 255, 255, .6); font-size: .9rem; }
.mobile-nav__foot a { color: rgba(255, 255, 255, .8); padding-block: .35rem; }
body.nav-open { overflow: hidden; }

/* --------------------------------------------------------------------------
   8. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: min(100svh, 940px);
  display: flex;
  align-items: flex-end;
  padding-top: clamp(9rem, 18vh, 13rem);
  padding-bottom: clamp(3rem, 7vh, 5rem);
  background: var(--navy-950);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -3;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
  opacity: .5;
  filter: saturate(75%) contrast(105%) brightness(.82);
  transform: scale(1.08);
  animation: heroDrift 26s var(--ease) infinite alternate;
}
@keyframes heroDrift {
  from { transform: scale(1.08) translate3d(0, 0, 0); }
  to   { transform: scale(1.16) translate3d(-1.5%, -1.5%, 0); }
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(2, 20, 32, .92) 0%, rgba(2, 20, 32, .5) 34%, rgba(2, 20, 32, .78) 74%, rgba(2, 20, 32, .97) 100%),
    linear-gradient(100deg, rgba(0, 74, 127, .55) 0%, transparent 62%);
}
.hero__grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .5;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero__inner {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: end;
}
@media (max-width: 1040px) { .hero__inner { grid-template-columns: 1fr; } }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}
.hero__eyebrow::before { content: ""; width: 40px; height: 1px; background: var(--gold); }

.hero h1 { color: #fff; margin-bottom: 1.6rem; }
.hero h1 em {
  font-style: italic;
  font-variation-settings: "SOFT" 60, "WONK" 1, "opsz" 60;
  color: var(--gold-light);
}
.hero__text {
  max-width: 34rem;
  font-size: clamp(1.02rem, 1.3vw, 1.15rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, .76);
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.35rem; }

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.75rem;
  margin-top: 2.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, .14);
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .82rem;
  color: rgba(255, 255, 255, .72);
}
.hero__badge svg { color: var(--gold); flex: none; }

/* Enquiry card */
.enquiry {
  background: rgba(251, 249, 246, .97);
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 2.4vw, 2rem);
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(10px);
}
.enquiry__head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 1.4rem; }
.enquiry__head h2 { font-size: 1.5rem; }
.enquiry__head span { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3); }
.enquiry__grid { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.enquiry__grid .field--full { grid-column: 1 / -1; }
.enquiry__note {
  margin-top: 1.1rem;
  font-size: .78rem;
  line-height: 1.6;
  color: var(--ink-3);
  text-align: center;
}

/* Form fields */
.field { display: flex; flex-direction: column; gap: .45rem; }
.field label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: .82rem .95rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
  font-size: .92rem;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.field textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5l5-5' stroke='%2377848d' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.4rem; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(0, 74, 127, .12);
}
.field input::placeholder, .field textarea::placeholder { color: #a9b3ba; }

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  font-size: .64rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .42);
}
.hero__scroll i {
  display: block;
  width: 1px;
  height: 42px;
  background: linear-gradient(rgba(255, 255, 255, .5), transparent);
  animation: scrollPulse 2.4s var(--ease) infinite;
}
@keyframes scrollPulse { 0%, 100% { opacity: .25; transform: scaleY(.6); } 50% { opacity: 1; transform: scaleY(1); } }
@media (max-width: 1040px) { .hero__scroll { display: none; } }

/* --------------------------------------------------------------------------
   9. Marquee / trust strip
   -------------------------------------------------------------------------- */
.strip {
  background: var(--navy-950);
  border-top: 1px solid rgba(255, 255, 255, .07);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  overflow: hidden;
  padding-block: 1.05rem;
}
.strip__track {
  display: flex;
  width: max-content;
  gap: 3.5rem;
  animation: marquee 42s linear infinite;
}
.strip:hover .strip__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.strip__item {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  white-space: nowrap;
}
.strip__item::after { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); margin-left: 2.6rem; }

/* --------------------------------------------------------------------------
   10. Stats
   -------------------------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
.stat {
  padding: clamp(1.75rem, 3vw, 2.6rem) clamp(1rem, 2vw, 2rem);
  border-left: 1px solid var(--line);
  text-align: center;
}
.stat:first-child { border-left: 0; }
@media (max-width: 780px) {
  .stat { border-left: 0; border-top: 1px solid var(--line); }
  .stat:first-child { border-top: 0; }
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--brand);
}
.stat__num sup { font-size: .45em; vertical-align: super; color: var(--gold); }
.stat__label {
  margin-top: .85rem;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.on-dark .stat { border-color: rgba(255, 255, 255, .12); }
.on-dark .stat__num { color: #fff; }
.on-dark .stat__label { color: rgba(255, 255, 255, .55); }

/* --------------------------------------------------------------------------
   11. Vehicle cards
   -------------------------------------------------------------------------- */
.car-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .55s var(--ease-out), box-shadow .55s var(--ease-out), border-color .4s var(--ease);
}
.car-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(0, 74, 127, .35); }

/* Flat white stage. Vehicle cut-outs are white-backed, and JPEG noise in those
   near-white areas would show as a visible box against any tint — so the tone
   lives in a soft "floor" pool underneath the car instead of in the backdrop. */
.car-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  padding: 1.5rem 1.25rem .75rem;
  background: #fff;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.car-card__media::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6%;
  width: 78%;
  height: 26%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(0, 74, 127, .16), transparent 78%);
  filter: blur(6px);
}
.car-card__media img {
  position: relative;
  width: 100%;
  max-height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform .7s var(--ease-out);
}
.car-card:hover .car-card__media img { transform: scale(1.06) translateY(-2px); }
.car-card__tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  padding: .35rem .75rem;
  border-radius: 999px;
  background: rgba(4, 32, 47, .9);
  color: #fff;
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.car-card__tag--gold { background: var(--gold); color: var(--navy-950); }

.car-card__body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.car-card__cat {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-ink);
  margin-bottom: .5rem;
}
.car-card__title { font-size: 1.35rem; }
.car-card__desc { margin-top: .6rem; font-size: .9rem; line-height: 1.62; color: var(--ink-2); }

.spec-list {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
.spec {
  display: inline-flex;
  align-items: center;
  gap: .42rem;
  padding: .34rem .68rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--ivory);
  font-size: .74rem;
  font-weight: 500;
  color: var(--ink-2);
}
.spec svg { color: var(--brand); flex: none; }

.car-card__foot {
  margin-top: auto;
  padding-top: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.car-card__price { font-size: .78rem; color: var(--ink-3); line-height: 1.4; }
.car-card__price strong { display: block; font-family: var(--font-display); font-size: 1.25rem; color: var(--ink); }

/* --------------------------------------------------------------------------
   12. Feature list
   -------------------------------------------------------------------------- */
.feature {
  position: relative;
  padding: clamp(1.75rem, 2.6vw, 2.4rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out), border-color .4s var(--ease);
}
.feature::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .6s var(--ease-out);
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(0, 74, 127, .28); }
.feature:hover::before { transform: scaleX(1); }
.feature__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--brand-50);
  color: var(--brand);
  margin-bottom: 1.3rem;
}
.feature h3 { font-size: 1.22rem; }
.feature p { margin-top: .65rem; font-size: .92rem; line-height: 1.68; color: var(--ink-2); }

.on-dark .feature { background: rgba(255, 255, 255, .04); border-color: rgba(255, 255, 255, .12); }
.on-dark .feature:hover { background: rgba(255, 255, 255, .07); border-color: rgba(255, 255, 255, .22); }
.on-dark .feature__icon { background: rgba(255, 255, 255, .08); color: var(--gold-light); }
.on-dark .feature p { color: rgba(255, 255, 255, .68); }

/* Numbered steps */
.steps { counter-reset: step; display: grid; gap: 0; }
.step {
  counter-increment: step;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(1.25rem, 3vw, 3rem);
  align-items: start;
  padding: clamp(1.75rem, 3vw, 2.5rem) 0;
  border-top: 1px solid var(--line-light);
  transition: padding-left .5s var(--ease-out);
}
.step:last-child { border-bottom: 1px solid var(--line-light); }
.step:hover { padding-left: .6rem; }
.step__num {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: .1em;
  color: var(--gold);
  padding-top: .35rem;
  min-width: 2.5rem;
}
.step__num::before { content: "0" counter(step); }
.step h3 { font-size: clamp(1.4rem, 2.4vw, 1.85rem); color: #fff; }
.step p { margin-top: .7rem; max-width: 46rem; color: rgba(255, 255, 255, .66); font-size: .96rem; }
.step__aside { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(255, 255, 255, .38); padding-top: .5rem; white-space: nowrap; }
@media (max-width: 760px) { .step { grid-template-columns: auto 1fr; } .step__aside { display: none; } }

/* --------------------------------------------------------------------------
   13. Split feature (image + text)
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.split__media { position: relative; }
.split__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
/* Offset outline, shifted down/right so it reads as a deliberate L-shaped frame
   rather than a stray rectangle peeking out from behind the photograph. */
.split__media--framed::after {
  content: "";
  position: absolute;
  inset: 22px -22px -22px 22px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  z-index: 0;
}
@media (max-width: 560px) {
  .split__media--framed::after { inset: 14px -14px -14px 14px; }
}

/* Plaque overlapping the foot of a photograph */
.plaque {
  position: absolute;
  z-index: 2;
  left: clamp(-1.5rem, -2vw, -1rem);
  bottom: clamp(-1.75rem, -3vw, -1.25rem);
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  background: var(--navy-950);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.plaque__num {
  font-family: var(--font-display);
  font-size: 2.1rem;
  line-height: 1;
  color: var(--gold-light);
}
.plaque__text {
  font-size: .78rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, .72);
  max-width: 15ch;
}
@media (max-width: 560px) {
  .plaque { left: 0; bottom: -1rem; padding: .85rem 1.05rem; gap: .8rem; }
  .plaque__num { font-size: 1.6rem; }
  .plaque__text { font-size: .72rem; }
}
.split__stack { display: grid; gap: 1.25rem; }
.split__stack img { border-radius: var(--radius); box-shadow: var(--shadow-md); }

.tick-list { display: grid; gap: .95rem; margin-top: 2rem; }
.tick-list li { display: flex; gap: .85rem; align-items: flex-start; font-size: .95rem; color: var(--ink-2); }
.tick-list svg { flex: none; color: var(--brand); margin-top: .3rem; }
.on-dark .tick-list li { color: rgba(255, 255, 255, .72); }
.on-dark .tick-list svg { color: var(--gold-light); }

/* --------------------------------------------------------------------------
   14. Reviews
   -------------------------------------------------------------------------- */
.rating-summary {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1.4rem 1.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.rating-summary__score { font-family: var(--font-display); font-size: 2.4rem; line-height: 1; color: var(--brand); }
.stars { display: inline-flex; gap: .15rem; color: var(--gold); }
.rating-summary .stars { color: var(--gold-ink); }
.rating-summary__meta { font-size: .82rem; color: var(--ink-3); }

.review-rail {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1.5rem;
  margin-inline: calc(var(--gutter) * -1);
  padding-inline: var(--gutter);
  scrollbar-width: thin;
  scrollbar-color: var(--brand-200) transparent;
}
.review-rail::-webkit-scrollbar { height: 4px; }
.review-rail::-webkit-scrollbar-thumb { background: var(--brand-200); border-radius: 4px; }
.review-rail::-webkit-scrollbar-track { background: var(--line); }

.review {
  flex: 0 0 min(400px, 82vw);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.review:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review__quote {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--gold-soft);
  margin-bottom: -.6rem;
}
.review p { font-size: .95rem; line-height: 1.72; color: var(--ink-2); }
.review__foot { margin-top: auto; padding-top: 1.5rem; display: flex; align-items: center; gap: .85rem; }
.review__avatar {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--brand-50);
  color: var(--brand);
  font-size: .82rem;
  font-weight: 700;
  flex: none;
}
.review__name { font-size: .9rem; font-weight: 600; }
.review__src { font-size: .74rem; color: var(--ink-3); }

/* --------------------------------------------------------------------------
   15. Accordion
   -------------------------------------------------------------------------- */
.accordion { border-top: 1px solid var(--line); }
.accordion__item { border-bottom: 1px solid var(--line); }
.accordion__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  padding: 1.5rem 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 1.6vw, 1.3rem);
  color: var(--ink);
  transition: color .3s var(--ease);
}
.accordion__btn:hover { color: var(--brand); }
.accordion__icon { position: relative; flex: none; width: 20px; height: 20px; }
.accordion__icon::before, .accordion__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--brand);
  transition: transform .45s var(--ease-out), opacity .3s var(--ease);
}
.accordion__icon::before { width: 15px; height: 1.5px; transform: translate(-50%, -50%); }
.accordion__icon::after  { width: 1.5px; height: 15px; transform: translate(-50%, -50%); }
.accordion__btn[aria-expanded="true"] { color: var(--brand); }
.accordion__btn[aria-expanded="true"] .accordion__icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.accordion__panel { overflow: hidden; height: 0; transition: height .45s var(--ease-out); }
.accordion__panel > div { padding-bottom: 1.6rem; }
.accordion__panel p { max-width: 62ch; color: var(--ink-2); font-size: .96rem; line-height: 1.75; }
.accordion__panel p + p { margin-top: .85rem; }

/* --------------------------------------------------------------------------
   16. Page hero (inner pages)
   -------------------------------------------------------------------------- */
.page-hero {
  position: relative;
  background: var(--navy-900);
  padding-block: clamp(3.5rem, 8vw, 6rem) clamp(3rem, 6vw, 5rem);
  overflow: hidden;
  isolation: isolate;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(800px 400px at 8% 0%, rgba(0, 74, 127, .6), transparent 68%),
    radial-gradient(600px 380px at 96% 110%, rgba(193, 154, 75, .14), transparent 70%);
}
.page-hero__inner { max-width: 720px; }
.page-hero h1 { color: #fff; }
.page-hero p { margin-top: 1.35rem; font-size: clamp(1rem, 1.3vw, 1.15rem); line-height: 1.72; color: rgba(255, 255, 255, .72); }

.breadcrumb { display: flex; align-items: center; gap: .6rem; font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255, 255, 255, .45); margin-bottom: 1.5rem; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: var(--gold); }

/* --------------------------------------------------------------------------
   17. CTA band
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  background: var(--navy-950);
  overflow: hidden;
  isolation: isolate;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(760px 420px at 78% 12%, rgba(0, 74, 127, .7), transparent 66%),
    radial-gradient(520px 320px at 12% 96%, rgba(193, 154, 75, .16), transparent 70%);
}
.cta-band__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2.5rem 4rem;
  align-items: center;
  padding-block: clamp(3.5rem, 7vw, 6rem);
}
@media (max-width: 860px) { .cta-band__inner { grid-template-columns: 1fr; } }
.cta-band h2 { color: #fff; max-width: 18ch; }
.cta-band p { margin-top: 1.1rem; max-width: 46ch; color: rgba(255, 255, 255, .7); }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* --------------------------------------------------------------------------
   18. Contact
   -------------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-item { display: flex; gap: 1.15rem; padding-block: 1.35rem; border-bottom: 1px solid var(--line); }
.contact-item:first-of-type { border-top: 1px solid var(--line); }
.contact-item__icon { display: grid; place-items: center; width: 42px; height: 42px; flex: none; border-radius: 50%; background: var(--brand-50); color: var(--brand); }
.contact-item__label { font-size: .7rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3); margin-bottom: .3rem; }
.contact-item__value { font-size: 1.02rem; line-height: 1.55; }
.contact-item__value a { display: inline-block; padding-block: .22rem; }
.contact-item__value a:hover { color: var(--brand); }

.form-card {
  padding: clamp(1.75rem, 3vw, 2.75rem);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-grid .field--full { grid-column: 1 / -1; }
@media (max-width: 560px) { .form-grid, .enquiry__grid { grid-template-columns: 1fr; } }

.form-note { margin-top: 1.1rem; font-size: .78rem; line-height: 1.6; color: var(--ink-3); }
.form-status { margin-top: 1rem; font-size: .88rem; font-weight: 500; color: var(--brand); display: none; }
.form-status.is-visible { display: block; }

.map-frame {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--sand);
  line-height: 0;
}
.map-frame iframe { width: 100%; height: 420px; border: 0; filter: grayscale(28%) contrast(102%); }

/* --------------------------------------------------------------------------
   19. Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--navy-950); color: rgba(255, 255, 255, .6); font-size: .9rem; }
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-block: clamp(3.5rem, 6vw, 5rem) 3rem;
}
@media (max-width: 940px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__top { grid-template-columns: 1fr; } }
.footer__intro p { margin-top: 1.4rem; max-width: 32ch; line-height: 1.72; color: rgba(255, 255, 255, .55); }
.footer__title {
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.35rem;
}
/* padding-block keeps every footer link at or above the 24px minimum target */
.footer__list { display: grid; gap: .3rem; }
.footer__list a {
  display: inline-block;
  padding-block: .3rem;
  transition: color .3s var(--ease), padding-left .35s var(--ease-out);
}
.footer__list a:hover { color: #fff; padding-left: .3rem; }
.footer__contact { display: grid; gap: .45rem; }
.footer__contact a { display: inline-block; padding-block: .38rem; }
.footer__contact a:hover { color: #fff; }
.footer__socials { display: flex; gap: .7rem; margin-top: 1.6rem; }
.footer__socials a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  transition: background-color .35s var(--ease), border-color .35s var(--ease), color .35s var(--ease), transform .45s var(--ease-out);
}
.footer__socials a:hover { background: var(--brand); border-color: var(--brand); color: #fff; transform: translateY(-3px); }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
  padding-block: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .8rem;
  color: rgba(255, 255, 255, .45);
}
.footer__legal { display: flex; flex-wrap: wrap; gap: .4rem 1.5rem; }
.footer__legal a { display: inline-block; padding-block: .25rem; }
.footer__legal a:hover { color: #fff; }

/* Floating call button (mobile).
   Icon-only so it obscures as little body copy as possible while scrolling. */
.float-call {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  display: none;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  box-shadow: 0 10px 26px -6px rgba(0, 74, 127, .65), 0 0 0 6px rgba(251, 249, 246, .55);
  transition: transform .4s var(--ease-out), background-color .3s var(--ease);
}
.float-call:active { transform: scale(.94); }
.float-call svg { width: 21px; height: 21px; }
.float-call span { display: none; }
@media (max-width: 640px) { .float-call { display: grid; } }

/* --------------------------------------------------------------------------
   20. Scroll reveal
   -------------------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* Utilities */
.text-center { text-align: center; }
.mt-lg { margin-top: clamp(2.5rem, 5vw, 4rem); }
.mt-md { margin-top: 2rem; }
.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-link {
  position: absolute; left: 1rem; top: -100px; z-index: 200;
  padding: .8rem 1.25rem; background: var(--brand); color: #fff; border-radius: 0 0 8px 8px;
  font-size: .85rem; transition: top .3s var(--ease);
}
.skip-link:focus { top: 0; }
