/* ==========================================================================
   Design tokens — Folafemz Global brand palette
   --------------------------------------------------------------------------
   Sampled directly from the company logo:
     navy  #0C1627  (49.8% of the logo artwork — the base)
     navy  #132239  · #1A2A44  (its lighter panel tones)
     gold  #A98447  · #B99655  (the metallic letterforms)

   Screen adaptation. The logo's gold is a metal gradient; a flat web colour has
   to be split in two so both ends stay legible:
     --gold-deep  on light surfaces (text, tabs)   6.2:1 on white  — WCAG AA
     --amber      on navy surfaces (buttons, rules) 8.3:1 on navy  — WCAG AAA
   Every pairing in this file was contrast-checked; see the note above each token.

   Type    : Archivo (display) · Public Sans (body) · Roboto Mono (rates)
   Signature: the "tariff plate" — a number-plate strip carrying every rate.
   ========================================================================== */

:root {
  /* Navy family — straight from the logo background */
  --asphalt: #0c1627;        /* base dark surface        18.1:1 with white  */
  --asphalt-2: #132239;      /* raised dark surface                        */
  --asphalt-3: #1a2a44;      /* hairlines and hovers on dark               */

  --slate: #3a4453;
  --muted: #667186;
  --paper: #f5f3ef;          /* warm off-white, sits under the gold        */
  --white: #ffffff;

  /* Gold family. --green keeps its name so existing rules stay valid, but it
     now carries the deep gold used for text and tabs on light backgrounds. */
  --green: #7a5c15;          /* deep gold, text on light  6.2:1 on white   */
  --green-dark: #5c4510;     /* its hover state                            */
  --green-tint: #f6f0e1;     /* pale gold wash                             */

  --amber: #d4a94e;          /* bright gold, CTAs on navy 8.3:1 on navy    */
  --amber-dark: #bd9440;     /* CTA hover                                  */
  --gold-soft: #c6a052;      /* decorative rules and dots                  */

  --line: #dcd8ce;
  --line-dark: #22314c;      /* navy-toned border on dark surfaces         */

  --shell: min(1240px, 100% - 3rem);
  --radius: 3px;
  --shadow: 0 1px 2px rgba(12, 22, 39, .06), 0 12px 28px -18px rgba(12, 22, 39, .35);

  --step-eyebrow: .6875rem;
  --step-body: 1rem;
  --step-lead: clamp(1.0625rem, .98rem + .4vw, 1.25rem);
  --step-h3: clamp(1.125rem, 1.05rem + .35vw, 1.375rem);
  --step-h2: clamp(1.75rem, 1.35rem + 1.6vw, 2.75rem);
  --step-h1: clamp(2.25rem, 1.5rem + 3.2vw, 4rem);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--asphalt);
  font-family: "Public Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: var(--step-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

h1, h2, h3, h4, h5 {
  font-family: "Archivo", ui-sans-serif, system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.08;
  margin: 0 0 .5em;
  text-wrap: balance;
}

h1 { font-size: var(--step-h1); }
h2 { font-size: var(--step-h2); }
h3 { font-size: var(--step-h3); letter-spacing: -.01em; }

p { margin: 0 0 1em; }

.shell { width: var(--shell); margin-inline: auto; }

.section { padding: clamp(3.5rem, 7vw, 6.5rem) 0; }
.section--tight { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.section--dark { background: var(--asphalt); color: var(--paper); }
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--edge { border-top: 1px solid var(--line); }

.lead { font-size: var(--step-lead); color: var(--slate); max-width: 62ch; }
.section--dark .lead { color: #b4bece; }

/* --------------------------------------------------------------------------
   Signature: the tariff plate
   -------------------------------------------------------------------------- */

.plate {
  display: inline-flex;
  align-items: stretch;
  border: 1.5px solid var(--asphalt);
  border-radius: var(--radius);
  background: var(--white);
  font-family: "Roboto Mono", ui-monospace, "SFMono-Regular", monospace;
  font-size: .8125rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  overflow: hidden;
  line-height: 1;
}

.plate__tab {
  background: var(--green);
  color: var(--white);
  padding: .5rem .55rem;
  font-size: .625rem;
  letter-spacing: .12em;
  display: flex;
  align-items: center;
  font-weight: 700;
}

.plate__value { padding: .5rem .7rem; display: flex; align-items: center; font-weight: 700; color: var(--asphalt); }
.plate--muted .plate__value { color: var(--muted); font-weight: 500; }
.plate--dark { border-color: rgba(255, 255, 255, .3); background: transparent; }
.plate--dark .plate__value { color: var(--white); }

/* Eyebrow labels reuse the plate language without the box. */
.eyebrow {
  font-family: "Roboto Mono", ui-monospace, monospace;
  font-size: var(--step-eyebrow);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: "";
  width: 1.75rem;
  height: 2px;
  background: var(--amber);
  flex: none;
}

.section--dark .eyebrow { color: var(--amber); }
.section--dark .eyebrow::before { background: var(--gold-soft); }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1.4rem;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: .9375rem;
  letter-spacing: -.005em;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, background-color .15s ease, color .15s ease, border-color .15s ease;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--asphalt); color: var(--white); }
.btn--primary:hover { background: var(--asphalt-2); }

.btn--amber { background: var(--amber); color: var(--asphalt); }
.btn--amber:hover { background: var(--amber-dark); }

.btn--ghost { border-color: var(--asphalt); color: var(--asphalt); background: transparent; }
.btn--ghost:hover { background: var(--asphalt); color: var(--white); }

.btn--onDark { border-color: rgba(255, 255, 255, .45); color: var(--white); background: transparent; }
.btn--onDark:hover { background: var(--white); color: var(--asphalt); border-color: var(--white); }

.btn--block { width: 100%; }
.btn--sm { padding: .6rem 1rem; font-size: .875rem; }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(12, 22, 39, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-dark);
  color: var(--white);
}

.header__bar { display: flex; align-items: center; gap: 1.5rem; height: 68px; }

.brand { display: flex; align-items: center; gap: .625rem; text-decoration: none; color: var(--white); font-family: "Archivo", sans-serif; font-weight: 800; font-size: 1.0625rem; letter-spacing: -.02em; }
.brand__mark { width: 30px; height: 30px; border-radius: var(--radius); background: var(--green); display: grid; place-items: center; font-family: "Roboto Mono", monospace; font-size: .8125rem; font-weight: 700; }
.brand img { height: 34px; width: auto; }

.nav { margin-left: auto; display: flex; align-items: center; gap: 1.75rem; }
.nav a { text-decoration: none; font-size: .9375rem; font-weight: 500; color: #c9d0dd; transition: color .15s ease; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--white); }

.nav__group { position: relative; }
.nav__toggle { background: none; border: 0; color: #c9d0dd; font: inherit; font-size: .9375rem; cursor: pointer; padding: 0; display: flex; align-items: center; gap: .3rem; }
.nav__toggle:hover { color: var(--white); }

.nav__menu {
  position: absolute;
  top: calc(100% + 1rem);
  left: -1rem;
  min-width: 230px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: .5rem;
  box-shadow: var(--shadow);
  display: none;
}

.nav__group[data-open="true"] .nav__menu { display: block; }
.nav__menu a { display: block; padding: .55rem .75rem; border-radius: var(--radius); color: var(--slate); font-size: .9375rem; }
.nav__menu a:hover { background: var(--green-tint); color: var(--green-dark); }

.header__cta { display: flex; gap: .625rem; align-items: center; }

.burger { display: none; background: none; border: 1.5px solid rgba(255, 255, 255, .35); border-radius: var(--radius); color: var(--white); width: 42px; height: 38px; cursor: pointer; margin-left: auto; }
.burger span { display: block; width: 18px; height: 1.5px; background: currentColor; margin: 3.5px auto; }

.mobileNav { display: none; border-top: 1px solid var(--line-dark); padding: 1rem 0 1.5rem; }
.mobileNav[data-open="true"] { display: block; }
.mobileNav a { display: block; padding: .7rem 0; color: #c9d0dd; text-decoration: none; border-bottom: 1px solid var(--line-dark); }
.mobileNav .btn { margin-top: 1rem; }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero { position: relative; background: var(--asphalt); color: var(--white); overflow: hidden; }
.hero__media { position: absolute; inset: 0; }
.hero__media video, .hero__media img { width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(105deg, rgba(12, 22, 39, .92) 8%, rgba(12, 22, 39, .58) 55%, rgba(12, 22, 39, .8)); }

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(3rem, 6vw, 5rem);
}

.hero h1 { color: var(--white); max-width: 15ch; }
.hero__sub { font-size: var(--step-lead); color: #bfc8d8; max-width: 48ch; margin-bottom: 1.75rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2rem; }
.hero__plates { display: flex; flex-wrap: wrap; gap: .5rem; }

/* Dispatch card — the booking form lives in the hero */
.dispatch {
  background: var(--white);
  color: var(--asphalt);
  border-radius: var(--radius);
  border-top: 4px solid var(--amber);
  padding: 1.5rem;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .7);
}

.dispatch__head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 1.125rem; }
.dispatch__head h2 { font-size: 1.25rem; margin: 0; }
.dispatch__head span { font-family: "Roboto Mono", monospace; font-size: .6875rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */

.field { margin-bottom: .875rem; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }

.field label,
.label {
  display: block;
  font-family: "Roboto Mono", monospace;
  font-size: .6875rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .35rem;
  font-weight: 500;
}

input[type="text"], input[type="tel"], input[type="email"], input[type="date"],
input[type="number"], input[type="password"], input[type="search"], select, textarea {
  width: 100%;
  padding: .7rem .8rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  font: inherit;
  font-size: .9375rem;
  color: var(--asphalt);
  transition: border-color .15s ease, box-shadow .15s ease;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(122, 92, 21, .16);
}

textarea { min-height: 110px; resize: vertical; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.formNote { font-size: .8125rem; color: var(--muted); margin-top: .75rem; }

.errors { background: #fdecea; border-left: 3px solid #c0392b; padding: .75rem 1rem; border-radius: var(--radius); margin-bottom: 1rem; font-size: .875rem; }
.errors ul { margin: 0; padding-left: 1.1rem; }

/* --------------------------------------------------------------------------
   Fleet
   -------------------------------------------------------------------------- */

.sectionHead { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 1.5rem; margin-bottom: 2.5rem; }
.sectionHead > div { max-width: 60ch; }

.filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }

.filter {
  background: transparent;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: .5rem .9rem;
  font-family: "Roboto Mono", monospace;
  font-size: .75rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--slate);
  cursor: pointer;
  transition: all .15s ease;
}

.filter:hover { border-color: var(--asphalt); }
.filter[aria-pressed="true"] { background: var(--asphalt); border-color: var(--asphalt); color: var(--white); }

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #c8c2b4; }

.card__media { aspect-ratio: 4 / 3; background: #eae6dd; position: relative; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__media--empty { display: grid; place-items: center; color: #b3ac9c; font-family: "Roboto Mono", monospace; font-size: .6875rem; letter-spacing: .12em; text-transform: uppercase; }
.card__tag { position: absolute; top: .625rem; left: .625rem; }

.card__body { padding: 1.125rem; display: flex; flex-direction: column; gap: .75rem; flex: 1; }
.card__body h3 { margin: 0; font-size: 1.0625rem; }
.card__meta { font-family: "Roboto Mono", monospace; font-size: .6875rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.card__rates { display: flex; flex-wrap: wrap; gap: .4rem; }
.card__foot { margin-top: auto; padding-top: .25rem; }

/* --------------------------------------------------------------------------
   Stats
   -------------------------------------------------------------------------- */

.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); border-radius: var(--radius); overflow: hidden; }
.stat { background: var(--asphalt-2); padding: 1.5rem 1.25rem; }
.stat__value { font-family: "Archivo", sans-serif; font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; letter-spacing: -.03em; color: var(--white); line-height: 1; }
.stat__label { font-family: "Roboto Mono", monospace; font-size: .6875rem; letter-spacing: .12em; text-transform: uppercase; color: #8d97ab; margin-top: .5rem; }

.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.checklist li { display: flex; gap: .6rem; align-items: flex-start; font-size: .9375rem; }
.checklist li::before { content: "✓"; color: var(--amber); font-weight: 700; flex: none; }

/* --------------------------------------------------------------------------
   Cities
   -------------------------------------------------------------------------- */

.cityCard { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; display: flex; flex-direction: column; gap: .9rem; }
.cityCard__top { display: flex; align-items: start; justify-content: space-between; gap: 1rem; }
.cityCard h3 { margin: 0; }
.cityCard__state { font-family: "Roboto Mono", monospace; font-size: .6875rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.cityCard ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .4rem; font-size: .9375rem; color: var(--slate); }
.cityCard ul li::before { content: "—"; color: var(--green); margin-right: .5rem; }
.cityCard__links { margin-top: auto; padding-top: .5rem; display: flex; gap: .5rem; flex-wrap: wrap; }

/* --------------------------------------------------------------------------
   Reviews
   -------------------------------------------------------------------------- */

.reviews { display: flex; gap: 1.25rem; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 1rem; scrollbar-width: thin; }
.review { scroll-snap-align: start; flex: 0 0 min(380px, 82vw); background: var(--asphalt-2); border: 1px solid var(--line-dark); border-radius: var(--radius); padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.review__stars { color: var(--amber); letter-spacing: .1em; font-size: .875rem; }
.review__quote { color: #d2d8e4; font-size: .9375rem; margin: 0; }
.review__who { display: flex; align-items: center; gap: .75rem; margin-top: auto; }
.review__avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--green); color: var(--white); display: grid; place-items: center; font-family: "Roboto Mono", monospace; font-size: .8125rem; font-weight: 700; flex: none; }
.review__name { font-weight: 600; color: var(--white); font-size: .9375rem; line-height: 1.3; }
.review__role { font-size: .8125rem; color: #8d97ab; }

.carouselNav { display: flex; gap: .5rem; }
.carouselNav button { width: 40px; height: 40px; border: 1.5px solid rgba(255, 255, 255, .35); background: transparent; color: var(--white); border-radius: var(--radius); cursor: pointer; font-size: 1rem; }
.carouselNav button:hover { background: var(--white); color: var(--asphalt); }

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */

.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; background: none; border: 0; text-align: left; padding: 1.25rem 2.5rem 1.25rem 0; font-family: "Archivo", sans-serif; font-weight: 700; font-size: 1.0625rem; color: var(--asphalt); cursor: pointer; position: relative; }
.faq__q::after { content: "+"; position: absolute; right: .25rem; top: 50%; transform: translateY(-50%); font-size: 1.25rem; color: var(--green); font-weight: 500; }
.faq__item[data-open="true"] .faq__q::after { content: "–"; }
.faq__a { display: none; padding: 0 3rem 1.5rem 0; color: var(--slate); max-width: 76ch; }
.faq__item[data-open="true"] .faq__a { display: block; }

/* --------------------------------------------------------------------------
   Contact + footer
   -------------------------------------------------------------------------- */

.contactCard { background: var(--asphalt-2); border: 1px solid var(--line-dark); border-radius: var(--radius); padding: 1.5rem; }
.contactCard h3 { font-size: 1.0625rem; margin-bottom: .35rem; }
.contactCard p { color: #8d97ab; font-size: .875rem; margin-bottom: .75rem; }
.contactCard a { color: var(--amber); text-decoration: none; font-weight: 600; word-break: break-word; }
.contactCard a:hover { text-decoration: underline; }

.footer { background: var(--asphalt); color: #96a0b3; padding: clamp(3rem, 6vw, 4.5rem) 0 2rem; border-top: 1px solid var(--line-dark); }
.footer__grid { display: grid; grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr)); gap: 2.5rem; margin-bottom: 3rem; }
.footer h4 { font-family: "Roboto Mono", monospace; font-size: .6875rem; letter-spacing: .16em; text-transform: uppercase; color: var(--white); font-weight: 700; margin-bottom: 1rem; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.footer a { color: #96a0b3; text-decoration: none; font-size: .9375rem; }
.footer a:hover { color: var(--white); }
.footer__bottom { border-top: 1px solid var(--line-dark); padding-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: .8125rem; }
.social { display: flex; gap: .5rem; margin-top: 1rem; }
.social a { width: 36px; height: 36px; border: 1px solid var(--line-dark); border-radius: var(--radius); display: grid; place-items: center; font-family: "Roboto Mono", monospace; font-size: .75rem; }
.social a:hover { background: var(--green); border-color: var(--green); color: var(--white); }

/* Floating WhatsApp */
.floatChat {
  position: fixed; right: 1rem; bottom: 1rem; z-index: 70;
  background: #25d366; color: #0a1424; border-radius: 999px;
  padding: .8rem 1.15rem; font-family: "Archivo", sans-serif; font-weight: 700; font-size: .875rem;
  text-decoration: none; box-shadow: 0 10px 30px -10px rgba(0, 0, 0, .5);
  display: inline-flex; align-items: center; gap: .5rem;
}
.floatChat:hover { transform: translateY(-2px); }

/* --------------------------------------------------------------------------
   Modal
   -------------------------------------------------------------------------- */

.modal { position: fixed; inset: 0; z-index: 90; display: none; align-items: center; justify-content: center; padding: 1rem; }
.modal[data-open="true"] { display: flex; }
.modal__scrim { position: absolute; inset: 0; background: rgba(12, 22, 39, .72); }
.modal__panel { position: relative; background: var(--white); border-radius: var(--radius); border-top: 4px solid var(--amber); width: min(520px, 100%); max-height: 90vh; overflow-y: auto; padding: 1.75rem; }
.modal__close { position: absolute; top: .75rem; right: .75rem; background: none; border: 0; font-size: 1.5rem; line-height: 1; color: var(--muted); cursor: pointer; }

/* --------------------------------------------------------------------------
   Directory / interior pages
   -------------------------------------------------------------------------- */

.pageHead { background: var(--asphalt); color: var(--white); padding: clamp(2.5rem, 6vw, 4.5rem) 0; }
.pageHead h1 { color: var(--white); max-width: 20ch; }
.pageHead .lead { color: #b4bece; }

.crumbs { font-family: "Roboto Mono", monospace; font-size: .6875rem; letter-spacing: .1em; text-transform: uppercase; color: #8d97ab; margin-bottom: 1.25rem; }
.crumbs a { color: #b4bece; text-decoration: none; }
.crumbs a:hover { color: var(--white); }

.dirBlock { padding: 2rem 0; border-bottom: 1px solid var(--line); }
.dirBlock:last-child { border-bottom: 0; }
.dirArea { padding: 1.25rem 0; border-top: 1px dashed var(--line); }
.dirArea h3 { font-size: 1.0625rem; margin-bottom: .75rem; }
.dirLinks { display: flex; flex-wrap: wrap; gap: .4rem; }
.dirLinks a {
  font-size: .8125rem; text-decoration: none; color: var(--slate);
  border: 1px solid var(--line); border-radius: var(--radius); padding: .35rem .65rem; background: var(--white);
}
.dirLinks a:hover { border-color: var(--green); color: var(--green-dark); background: var(--green-tint); }

.split { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.sticky { position: sticky; top: 92px; }

.panel { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; }
.panel--dark { background: var(--asphalt-2); border-color: var(--line-dark); color: #bfc8d8; }
.panel--dark h3 { color: var(--white); }

/* Long-form article body */
.prose { max-width: 72ch; font-size: 1.0625rem; color: var(--slate); }
.prose h2 { font-size: 1.625rem; margin-top: 2.25rem; color: var(--asphalt); }
.prose h3 { font-size: 1.25rem; margin-top: 1.75rem; color: var(--asphalt); }
.prose ul, .prose ol { padding-left: 1.25rem; margin-bottom: 1.25rem; }
.prose li { margin-bottom: .4rem; }
.prose a { color: var(--green-dark); text-decoration: underline; text-underline-offset: 2px; }
.prose img { border-radius: var(--radius); margin: 1.5rem 0; }
.prose blockquote { border-left: 3px solid var(--amber); padding-left: 1.25rem; margin-left: 0; font-style: italic; }

/* Blog */
.postCard__cat { font-family: "Roboto Mono", monospace; font-size: .6875rem; letter-spacing: .1em; text-transform: uppercase; color: var(--green); font-weight: 700; }
.postCard__meta { font-family: "Roboto Mono", monospace; font-size: .6875rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.postCard p { font-size: .9375rem; color: var(--slate); margin: 0; }

.featured { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
.featured img { aspect-ratio: 16 / 10; object-fit: cover; border-radius: var(--radius); width: 100%; }

.pagination { display: flex; gap: .35rem; flex-wrap: wrap; margin-top: 2.5rem; font-size: .875rem; }
.pagination a, .pagination span { padding: .5rem .8rem; border: 1px solid var(--line); border-radius: var(--radius); text-decoration: none; background: var(--white); }
.pagination .active span, .pagination span[aria-current] { background: var(--asphalt); color: var(--white); border-color: var(--asphalt); }

.flash { background: var(--green-tint); border-left: 3px solid var(--green); padding: .875rem 1.125rem; border-radius: var(--radius); margin-bottom: 1.5rem; font-size: .9375rem; }

.emptyState { text-align: center; padding: 3.5rem 1rem; border: 1px dashed var(--line); border-radius: var(--radius); color: var(--muted); }

/* --------------------------------------------------------------------------
   Reveal on scroll
   -------------------------------------------------------------------------- */

.reveal { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

:focus-visible { outline: 2px solid var(--amber); outline-offset: 2px; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1000px) {
  .hero__inner { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .sticky { position: static; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  :root { --shell: min(1240px, 100% - 2rem); }
  .nav, .header__cta { display: none; }
  .burger { display: block; }
  .sectionHead { align-items: start; }
}

@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .field--row { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .floatChat span { display: none; }
}

/* ==========================================================================
   Motion system
   --------------------------------------------------------------------------
   One easing curve and three durations, applied consistently. Everything here
   is decoration: the site is fully usable with all of it switched off, and the
   reduced-motion block at the bottom of this file does exactly that.
   ========================================================================== */

:root {
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --t-fast: .18s;
  --t-mid: .42s;
  --t-slow: .8s;
}

/* --------------------------------------------------------------------------
   Scroll reveal — directional variants with stagger
   -------------------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition: opacity var(--t-mid) var(--ease-out), transform var(--t-mid) var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal--left  { transform: translate3d(-24px, 0, 0); }
.reveal--right { transform: translate3d(24px, 0, 0); }
.reveal--scale { transform: scale(.96); }
.reveal--fade  { transform: none; }

.reveal.is-visible { opacity: 1; transform: none; will-change: auto; }

/* Children cascade in sequence rather than the whole block landing at once. */
.stagger > * {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition: opacity var(--t-mid) var(--ease-out), transform var(--t-mid) var(--ease-out);
}

.stagger.is-visible > * { opacity: 1; transform: none; }
.stagger.is-visible > *:nth-child(1) { transition-delay: 0ms; }
.stagger.is-visible > *:nth-child(2) { transition-delay: 60ms; }
.stagger.is-visible > *:nth-child(3) { transition-delay: 120ms; }
.stagger.is-visible > *:nth-child(4) { transition-delay: 180ms; }
.stagger.is-visible > *:nth-child(5) { transition-delay: 240ms; }
.stagger.is-visible > *:nth-child(6) { transition-delay: 300ms; }
.stagger.is-visible > *:nth-child(7) { transition-delay: 360ms; }
.stagger.is-visible > *:nth-child(8) { transition-delay: 420ms; }
.stagger.is-visible > *:nth-child(n+9) { transition-delay: 480ms; }

/* --------------------------------------------------------------------------
   Hero entrance + slow drift on the backdrop
   -------------------------------------------------------------------------- */

@keyframes riseIn {
  from { opacity: 0; transform: translate3d(0, 22px, 0); }
  to   { opacity: 1; transform: none; }
}

@keyframes kenBurns {
  from { transform: scale(1) translate3d(0, 0, 0); }
  to   { transform: scale(1.12) translate3d(0, -1.5%, 0); }
}

@keyframes sheen {
  from { transform: translateX(-120%) skewX(-18deg); }
  to   { transform: translateX(320%) skewX(-18deg); }
}

.hero__media img,
.hero__media video {
  animation: kenBurns 22s var(--ease) forwards alternate infinite;
}

.hero .eyebrow,
.hero h1,
.hero__sub,
.hero__actions,
.hero__plates,
.hero .dispatch {
  animation: riseIn .7s var(--ease-out) both;
}

.hero .eyebrow    { animation-delay: .05s; }
.hero h1          { animation-delay: .13s; }
.hero__sub        { animation-delay: .21s; }
.hero__actions    { animation-delay: .29s; }
.hero__plates     { animation-delay: .37s; }
.hero .dispatch   { animation-delay: .3s; }

/* --------------------------------------------------------------------------
   Header — condenses once the page scrolls
   -------------------------------------------------------------------------- */

.header {
  transition: height var(--t-mid) var(--ease), background-color var(--t-mid) var(--ease),
              box-shadow var(--t-mid) var(--ease);
}

.header__bar { transition: height var(--t-mid) var(--ease); }

.header.is-scrolled {
  background: rgba(12, 22, 39, .98);
  box-shadow: 0 10px 30px -18px rgba(0, 0, 0, .9);
}

.header.is-scrolled .header__bar { height: 58px; }
.header.is-scrolled .brand img { height: 28px; }

/* Reading-progress hairline pinned under the header */
.progress {
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 2px;
  width: 100%;
  transform: scaleX(var(--progress, 0));
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--green), var(--amber));
  pointer-events: none;
}

/* Dropdowns fade rather than snap */
.nav__menu {
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--t-fast) var(--ease), transform var(--t-fast) var(--ease), visibility var(--t-fast);
}

.nav__group[data-open="true"] .nav__menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.nav a::after {
  content: "";
  display: block;
  height: 1.5px;
  width: 0;
  background: var(--amber);
  transition: width var(--t-fast) var(--ease);
}

.nav a:hover::after,
.nav a[aria-current="page"]::after { width: 100%; }

/* --------------------------------------------------------------------------
   Buttons — light sweep on hover
   -------------------------------------------------------------------------- */

.btn { position: relative; overflow: hidden; isolation: isolate; }

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .28), transparent);
  transform: translateX(-120%) skewX(-18deg);
}

.btn:hover::after { animation: sheen .7s var(--ease) forwards; }
.btn:hover { transform: translateY(-2px); }
.btn--amber:hover { box-shadow: 0 10px 24px -12px rgba(212, 169, 78, .85); }

/* --------------------------------------------------------------------------
   Cards — image pushes in, content lifts
   -------------------------------------------------------------------------- */

.card { transition: transform var(--t-mid) var(--ease), box-shadow var(--t-mid) var(--ease), border-color var(--t-mid) var(--ease); }
.card__media { overflow: hidden; }
.card__media img { transition: transform var(--t-slow) var(--ease); }

.card:hover { transform: translateY(-6px); }
.card:hover .card__media img { transform: scale(1.07); }

.cityCard, .postCard { transition: transform var(--t-mid) var(--ease), box-shadow var(--t-mid) var(--ease), border-color var(--t-mid) var(--ease); }
.cityCard:hover, .postCard:hover { transform: translateY(-5px); box-shadow: var(--shadow); }

.postCard__media { overflow: hidden; }
.postCard__media img { transition: transform var(--t-slow) var(--ease); }
.postCard:hover .postCard__media img { transform: scale(1.06); }

/* Fleet filter — cards fade out instead of vanishing */
.card[hidden] { display: none; }

.card.is-filtering {
  opacity: 0;
  transform: scale(.97);
  transition: opacity var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}

.filter { transition: background-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease); }
.filter:hover { transform: translateY(-1px); }

/* --------------------------------------------------------------------------
   Stats — counters animate up on entry
   -------------------------------------------------------------------------- */

.stat__value { font-variant-numeric: tabular-nums; }

/* --------------------------------------------------------------------------
   FAQ — height animates via grid rather than a max-height guess
   -------------------------------------------------------------------------- */

/* Padding lives on the inner element so a collapsed answer has zero height. */
.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  padding: 0;
  transition: grid-template-rows var(--t-mid) var(--ease);
}

.faq__aInner {
  overflow: hidden;
  min-height: 0;
  padding-right: 3rem;
  color: var(--slate);
  max-width: 76ch;
}

.faq__item[data-open="true"] .faq__a { grid-template-rows: 1fr; }
.faq__item[data-open="true"] .faq__aInner { padding-bottom: 1.5rem; }

.faq__q::after { transition: transform var(--t-mid) var(--ease); }
.faq__item[data-open="true"] .faq__q::after { transform: translateY(-50%) rotate(135deg); }

/* --------------------------------------------------------------------------
   Reviews carousel — snap + progress dots
   -------------------------------------------------------------------------- */

.reviews {
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.reviews::-webkit-scrollbar { display: none; }
.review { scroll-snap-align: start; }

.carouselDots { display: flex; gap: .4rem; justify-content: center; margin-top: 1.75rem; }

.carouselDots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .3);
  cursor: pointer;
  transition: background-color var(--t-fast) var(--ease), width var(--t-fast) var(--ease);
}

.carouselDots button[aria-current="true"] { background: var(--amber); width: 20px; border-radius: 4px; }

/* --------------------------------------------------------------------------
   Back to top
   -------------------------------------------------------------------------- */

.toTop {
  position: fixed;
  right: 1.25rem;
  bottom: 5.5rem;
  z-index: 55;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  background: rgba(12, 22, 39, .9);
  color: var(--white);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--t-mid) var(--ease), transform var(--t-mid) var(--ease), visibility var(--t-mid);
}

.toTop.is-visible { opacity: 1; visibility: visible; transform: none; }
.toTop:hover { background: var(--green); border-color: var(--green); }

.floatChat { transition: transform var(--t-mid) var(--ease), box-shadow var(--t-mid) var(--ease); }
.floatChat:hover { transform: translateY(-3px) scale(1.02); }

/* --------------------------------------------------------------------------
   Forms — clearer focus, gentler validation feedback
   -------------------------------------------------------------------------- */

.input, .select, .textarea {
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), background-color var(--t-fast) var(--ease);
}

.input:focus, .select:focus, .textarea:focus {
  box-shadow: 0 0 0 3px rgba(122, 92, 21, .18);
}

/* --------------------------------------------------------------------------
   Modal
   -------------------------------------------------------------------------- */

/* `display` cannot transition, so the modal stays flex and toggles visibility. */
.modal {
  display: flex;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-mid) var(--ease), visibility var(--t-mid);
}

.modal[data-open="true"] { opacity: 1; visibility: visible; }
.modal[data-open="false"] { opacity: 0; visibility: hidden; }

.modal__scrim { transition: opacity var(--t-mid) var(--ease); }
.modal__panel { transition: transform var(--t-mid) var(--ease-out), opacity var(--t-mid) var(--ease-out); }
.modal[data-open="false"] .modal__panel { transform: translateY(16px) scale(.98); opacity: 0; }
.modal[data-open="true"] .modal__panel { transform: none; opacity: 1; }

/* ==========================================================================
   Reduced motion — the whole system above collapses to plain, instant states
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .stagger > * { opacity: 1 !important; transform: none !important; }

  .hero__media img,
  .hero__media video { animation: none !important; }

  .card:hover,
  .cityCard:hover,
  .postCard:hover,
  .btn:hover,
  .floatChat:hover { transform: none !important; }

  .card:hover .card__media img,
  .postCard:hover .postCard__media img { transform: none !important; }

  .reviews { scroll-behavior: auto !important; }
}

/* --------------------------------------------------------------------------
   Brand lockup — logo mark beside the live company name
   -------------------------------------------------------------------------- */

.brand__logo {
  height: 30px;
  width: auto;
  border-radius: 2px;
  flex: none;
  transition: height var(--t-mid) var(--ease);
}

.header.is-scrolled .brand__logo { height: 26px; }

/* The company name is long, so it steps down rather than wrapping the bar. */
.brand__name {
  font-size: .9375rem;
  line-height: 1.1;
  max-width: 15ch;
}

@media (max-width: 600px) {
  .brand__name { font-size: .8125rem; max-width: 11ch; }
  .brand__logo { height: 26px; }
}

.footer .brand__logo { height: 34px; }
