/* ═══════════════════════════════════════════════════════════
   FLYBUZZ — Main stylesheet v2
   Mobile-first. No external dependencies.
   Fonts: Playfair Display (headings) · Outfit (body/UI)
   ═══════════════════════════════════════════════════════════ */

/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  /* Palette */
  --ink:        #0f0e0d;
  --ink-2:      #1c1b18;
  --ink-3:      #2a2926;
  --gold:       #b8903a;
  --gold-2:     #d4a94e;
  --gold-pale:  #f2e8cc;
  --gold-dim:   rgba(184,144,58,.12);
  --sand:       #f7f4ef;
  --sand-2:     #ece7dc;
  --white:      #ffffff;
  --text:       #1c1b18;
  --text-2:     #4d4a45;
  --muted:      #786e65;
  --border:     #e2dbd0;
  --border-2:   #d0c8bb;

  /* Typography */
  --font-head:  'Playfair Display', Georgia, serif;
  --font-body:  'Outfit', system-ui, sans-serif;

  /* Sizes */
  --container:  1200px;
  --gap:        clamp(1rem, 3vw, 2rem);
  --section:    clamp(4.5rem, 9vw, 7.5rem);
  --radius:     8px;
  --radius-lg:  14px;
  --radius-xl:  20px;

  /* Motion */
  --ease:       cubic-bezier(.25,.46,.45,.94);
  --ease-out:   cubic-bezier(.16,1,.3,1);
  --t-fast:     150ms;
  --t-base:     250ms;
  --t-slow:     400ms;
  --t-anim:     700ms;

  /* Shadows */
  --shadow-xs:  0 1px 3px rgba(0,0,0,.06);
  --shadow-sm:  0 2px 8px rgba(0,0,0,.08);
  --shadow-md:  0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:  0 8px 40px rgba(0,0,0,.14);
  --shadow-gold: 0 6px 24px rgba(184,144,58,.35);

  /* Legacy aliases (backward-compat for pages using old variable names) */
  --cream:      var(--sand);
  --cream-2:    var(--sand-2);
  --dark:       var(--ink);
  --dark-2:     var(--ink-2);
  --dark-3:     var(--ink-3);
  --text-muted: var(--muted);
  --text-light: rgba(255,255,255,.65);
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--sand);
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
address { font-style: normal; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font: inherit; }
iframe { border: none; display: block; }

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; font-weight: 700; color: var(--text); }
h1 { font-size: clamp(2.6rem, 6.5vw, 4.8rem); letter-spacing: -.02em; }
h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); letter-spacing: -.02em; }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.6rem); }
h4 { font-size: 1.05rem; font-family: var(--font-body); font-weight: 600; }
p  { color: var(--text-2); max-width: 60ch; }
em { font-style: italic; }
strong { font-weight: 600; color: var(--text); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}
.eyebrow.light { color: var(--gold-2); }
.eyebrow.light::before { background: var(--gold-2); }

/* legacy aliases */
.label        { display: inline-flex; align-items: center; gap: .6rem; font-size: .7rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.label--light { color: var(--gold-2); }
.label--light::before { background: var(--gold-2); }
.label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}
.section-label { display: inline-flex; align-items: center; gap: .6rem; font-size: .7rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}
.section-label.light { color: var(--gold-2); }
.section-label.light::before { background: var(--gold-2); }
.section-title { font-family: var(--font-head); }
.section-title.light { color: var(--white); }

/* ─── LAYOUT ─────────────────────────────────────────────── */
.container { width: min(100%, var(--container)); margin-inline: auto; padding-inline: var(--gap); }
.section { padding-block: var(--section); }
.bg-dark { background: var(--ink-2); }
.bg-ink  { background: var(--ink); }
.bg-sand { background: var(--sand); }
.bg-white { background: var(--white); }

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .7rem 1.6rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition:
    background var(--t-base) var(--ease),
    color      var(--t-base) var(--ease),
    border-color var(--t-base) var(--ease),
    box-shadow var(--t-base) var(--ease),
    transform  var(--t-fast) var(--ease);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.btn:active { transform: scale(.97); }

/* Primary — gold */
.btn-primary {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  font-weight: 700;
}
.btn-primary:hover {
  background: var(--gold-2);
  border-color: var(--gold-2);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

/* Ghost on dark backgrounds */
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.28);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.55);
  transform: translateY(-1px);
}

/* Outline on light backgrounds */
.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold-dim);
}

/* Dark outline */
.btn-dark {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.btn-dark:hover { background: var(--ink-3); }

/* WhatsApp button */
.btn-wa {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
  padding: .65rem 1.4rem;
}
.btn-wa:hover { background: #20bd5a; border-color: #20bd5a; box-shadow: 0 4px 16px rgba(37,211,102,.3); }
.btn-wa svg { flex-shrink: 0; }

/* Sizes */
.btn-lg { padding: .9rem 2.1rem; font-size: 1rem; }
.btn-sm { padding: .5rem 1.2rem; font-size: .82rem; }

/* ─── HEADER ─────────────────────────────────────────────── */
#header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: box-shadow var(--t-base) var(--ease);
}
#header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.35); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 68px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo svg, .nav-logo img { height: 36px; width: auto; }

/* Nav links */
.nav-links {
  display: none;
  align-items: center;
  gap: .25rem;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: .45rem .75rem;
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  border-radius: 6px;
  transition: color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.nav-active { color: var(--white); background: rgba(255,255,255,.06); }
.nav-links a.nav-active { color: var(--gold); background: var(--gold-dim); }

/* Phone link in nav */
.nav-phone {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .83rem;
  font-weight: 600;
  color: rgba(255,255,255,.65) !important;
  background: transparent !important;
  padding: .45rem .6rem !important;
}
.nav-phone:hover { color: var(--white) !important; }
.nav-phone svg { color: var(--gold); flex-shrink: 0; }

/* CTA wrap */
.nav-cta-wrap { margin-left: .5rem; }

/* Dropdown */
.nav-has-dropdown { position: relative; }
.nav-dropdown-btn {
  display: flex;
  align-items: center;
  gap: .3rem;
  padding: .45rem .75rem;
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  border-radius: 6px;
  cursor: pointer;
  border: none;
  background: none;
  transition: color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
  white-space: nowrap;
}
.nav-dropdown-btn:hover,
.nav-has-dropdown:hover .nav-dropdown-btn { color: var(--white); background: rgba(255,255,255,.06); }
.nav-dropdown-btn svg { transition: transform var(--t-base) var(--ease); }
.nav-has-dropdown:hover .nav-dropdown-btn svg,
.nav-has-dropdown.is-open .nav-dropdown-btn svg { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + .5rem);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: var(--ink-3);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: .4rem;
  list-style: none;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-6px);
  transition:
    opacity var(--t-base) var(--ease),
    transform var(--t-base) var(--ease),
    visibility var(--t-base);
}
.nav-has-dropdown:hover .nav-dropdown-menu,
.nav-has-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: .6rem 1rem;
  font-size: .85rem;
  color: rgba(255,255,255,.75);
  border-radius: var(--radius);
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.nav-dropdown-menu a:hover { background: rgba(255,255,255,.07); color: var(--gold); }

/* ─── BURGER ─────────────────────────────────────────────── */
.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  cursor: pointer;
  flex-shrink: 0;
  border-radius: 6px;
  transition: background var(--t-fast);
}
.burger:hover { background: rgba(255,255,255,.08); }
.burger span {
  display: block;
  height: 2px;
  background: rgba(255,255,255,.85);
  border-radius: 2px;
  transition: transform var(--t-base) var(--ease), opacity var(--t-base) var(--ease), width var(--t-base) var(--ease);
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; width: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── MOBILE MENU ────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 850;
  background: rgba(15,14,13,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 2rem 3rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--t-slow) var(--ease-out);
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu nav { display: flex; flex-direction: column; align-items: center; gap: .2rem; width: 100%; }
.mm-link {
  display: block;
  padding: .55rem 1.5rem;
  font-family: var(--font-head);
  font-size: clamp(2rem, 8vw, 2.8rem);
  font-weight: 400;
  letter-spacing: -.01em;
  color: rgba(255,255,255,.82);
  text-align: center;
  border-radius: var(--radius);
  border-left: none;
  transition: color var(--t-base) var(--ease);
}
.mm-link:hover, .mm-link.nav-active {
  color: var(--gold-2);
  background: transparent;
}
.mm-group-label {
  padding: 1.4rem 1rem .35rem;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
  text-align: center;
}
.mm-sub {
  font-size: clamp(1.2rem, 5vw, 1.6rem);
  color: rgba(255,255,255,.5);
}
.mm-sub:hover { color: var(--gold-2); }
.mm-btn { margin-top: 2rem; text-align: center; }
.mm-tel {
  display: block;
  text-align: center;
  margin-top: 1rem;
  padding: .6rem;
  font-size: .9rem;
  color: rgba(255,255,255,.35);
  font-weight: 500;
  letter-spacing: .04em;
}
.mm-tel:hover { color: var(--gold-2); }

/* ─── HERO — split screen ─────────────────────────────────── */
.hero {
  display: grid;
  min-height: calc(100svh - 68px);
  min-height: calc(100vh - 68px);
  position: relative;
  background: var(--ink);
}
/* Mobile: vehicle image fills below the text */
.hero__media { aspect-ratio: 16/9; overflow: hidden; position: relative; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
/* Mobile: single column, image is decorative background */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(15,14,13,.97) 0%,
    rgba(15,14,13,.93) 45%,
    rgba(15,14,13,.55) 70%,
    rgba(15,14,13,.2)  100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 8vw, 5rem) var(--gap);
  padding-bottom: clamp(3rem, 10vw, 6rem);
  max-width: 680px;
}
.hero__eyebrow {
  margin-bottom: 1.25rem;
  color: var(--gold-2);
  letter-spacing: .18em;
}
.hero__eyebrow::before { display: none; }
.hero__heading {
  font-size: clamp(3rem, 7.5vw, 5.2rem);
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -.025em;
  margin-bottom: 1.35rem;
}
.hero__heading em { color: var(--gold-2); font-style: italic; }
.hero__sub {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: rgba(255,255,255,.68);
  max-width: 40ch;
  line-height: 1.7;
  margin-bottom: 2.25rem;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 2.5rem;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  font-weight: 500;
  color: rgba(255,255,255,.55);
}
.hero__trust-item svg { color: var(--gold); flex-shrink: 0; }

/* ─── HERO STATS STRIP ──────────────────────────────────── */
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.hero__stats li {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  position: relative;
}
.hero__stats li + li::before {
  content: '';
  position: absolute;
  left: -1.15rem;
  top: 50%;
  transform: translateY(-50%);
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,.1);
}
.hero__stats strong {
  font-family: var(--font-head);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--gold-2);
  line-height: 1;
  letter-spacing: -.01em;
}
.hero__stats span {
  font-size: .76rem;
  font-weight: 500;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* Hero badge */
.hero__badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  background: rgba(15,14,13,.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(184,144,58,.35);
  border-radius: 100px;
  padding: .55rem 1.1rem;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--gold-2);
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}
.hero__badge svg { width: 14px; height: 14px; color: var(--gold-2); }

/* ─── STATS BAR ──────────────────────────────────────────── */
.stats-bar {
  background: var(--ink-2);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 3.5rem var(--gap);
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: center;
  position: relative;
}
.stats-bar__grid > * + * {
  border-left: 1px solid rgba(255,255,255,.07);
  padding-left: 1.5rem;
}
.stats-bar__num {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 5.5vw, 4rem);
  font-weight: 700;
  color: var(--gold-2);
  line-height: 1;
  margin-bottom: .5rem;
  letter-spacing: -.01em;
}
.stats-bar__label {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.38);
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ─── SECTION HEADER ─────────────────────────────────────── */
.section-header {
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.section-header h2 { margin-bottom: .5rem; }
.section-header p  { max-width: 52ch; }
.section-header.centered { text-align: center; }
.section-header.centered p { margin-inline: auto; }
.section-header.light h2 { color: var(--white); }
.section-header.light p  { color: rgba(255,255,255,.6); }

/* ─── SERVICE CARDS ──────────────────────────────────────── */
.services-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--t-base) var(--ease), transform var(--t-base) var(--ease), border-color var(--t-base);
  text-decoration: none;
  color: inherit;
}
.svc-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--border-2);
}
.svc-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.svc-card__icon svg { width: 22px; height: 22px; }
.svc-card__title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .5rem;
  line-height: 1.25;
}
.svc-card__desc {
  font-size: .88rem;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex: 1;
  max-width: none;
}
.svc-card__link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .02em;
  margin-top: auto;
  transition: gap var(--t-fast);
}
.svc-card:hover .svc-card__link { gap: .6rem; }

/* Bento featured card */
.svc-card--featured {
  background: var(--ink);
  border-color: transparent;
  color: var(--white);
}
.svc-card--featured .svc-card__icon { background: rgba(196,154,60,.15); }
.svc-card--featured .svc-card__title { color: var(--white); }
.svc-card--featured .svc-card__desc  { color: rgba(255,255,255,.6); max-width: none; }
.svc-card--featured:hover             { border-color: var(--gold); }

/* Service photo card (with image top) */
.svc-photo-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--t-base) var(--ease), transform var(--t-base) var(--ease);
}
.svc-photo-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.svc-photo-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.svc-photo-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.svc-photo-card:hover .svc-photo-card__img img { transform: scale(1.04); }
.svc-photo-card__body { padding: 1.5rem; }
.svc-photo-card__tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}
.svc-photo-card__title { font-size: 1.15rem; margin-bottom: .5rem; }
.svc-photo-card__desc  { font-size: .85rem; color: var(--text-2); max-width: none; line-height: 1.55; margin-bottom: 1rem; }

/* ─── SERVICES PREVIEW (homepage bento) ─────────────────── */
.services-preview {
  padding-block: var(--section);
  background: var(--ink-2);
}
.services-preview .section-header { margin-bottom: clamp(1.75rem, 4vw, 3rem); }
.services-preview .section-header h2 { color: var(--white); }
.services-preview .section-header p  { color: rgba(255,255,255,.55); }
.services-preview .section-footer .btn-outline {
  color: var(--gold-2);
  border-color: rgba(184,144,58,.4);
}
.services-preview .section-footer .btn-outline:hover {
  background: rgba(184,144,58,.08);
  border-color: var(--gold-2);
}

.bento {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
.bento__card {
  background: var(--ink-3);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: none;
  transition: box-shadow var(--t-base) var(--ease), transform var(--t-base) var(--ease), border-color var(--t-base);
  display: flex;
  flex-direction: column;
}
.bento__card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.35); transform: translateY(-3px); border-color: rgba(255,255,255,.12); }
.bento__img-wrap { aspect-ratio: 4/3; overflow: hidden; flex-shrink: 0; }
.bento__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.bento__card:hover .bento__img-wrap img { transform: scale(1.04); }
.bento__body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.bento__body h3 { font-size: 1.2rem; margin-bottom: .5rem; letter-spacing: -.01em; color: var(--white); }
.bento__body p  { font-size: .88rem; color: rgba(255,255,255,.5); flex: 1; margin-bottom: 1.1rem; max-width: none; line-height: 1.6; }
.bento__link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--gold-2);
  margin-top: auto;
  transition: gap var(--t-fast);
}
.bento__card:hover .bento__link { gap: .6rem; }

/* Featured card (first in bento) */
.bento__card--featured { background: var(--ink); border-color: rgba(184,144,58,.25); }
.bento__card--featured .bento__body h3 { color: var(--white); }
.bento__card--featured .bento__body p  { color: rgba(255,255,255,.55); }
.bento__card--featured .bento__link    { color: var(--gold-2); }
.bento__card--featured:hover {
  border-color: rgba(184,144,58,.55);
  box-shadow: 0 8px 40px rgba(0,0,0,.5), 0 0 0 1px rgba(184,144,58,.15);
}

.section-footer { margin-top: 2.5rem; text-align: center; }

/* ─── REVIEWS (homepage) ─────────────────────────────────── */
.reviews {
  padding-block: clamp(2.5rem, 5vw, 4rem);
  background: var(--ink-2);
  border-top: 1px solid rgba(255,255,255,.06);
}
.reviews__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gap);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}
.reviews__score {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold-2);
}
.reviews__score svg { color: var(--gold-2); }
.reviews__score span { font-family: var(--font-body); font-size: .88rem; color: rgba(255,255,255,.4); font-weight: 400; }
.reviews p { color: rgba(255,255,255,.55); font-size: .95rem; max-width: none; flex: 1; min-width: 160px; margin: 0; }

/* ─── diensten alternating blocks */
.service-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  padding-bottom: clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid var(--border);
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.service-block:last-child { border-bottom: none; margin-bottom: 0; }
.service-block__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 3/2;
}
.service-block__img img { width: 100%; height: 100%; object-fit: cover; }
.service-block__usps { display: flex; flex-direction: column; gap: .6rem; margin: 1.25rem 0 1.75rem; }
.service-block__usp  { display: flex; align-items: flex-start; gap: .6rem; font-size: .9rem; font-weight: 500; }
.service-block__usp svg { color: var(--gold); flex-shrink: 0; margin-top: .15em; }

/* ─── USP STRIP ──────────────────────────────────────────── */
.usps { padding-block: clamp(3.5rem, 7vw, 5.5rem); background: var(--white); }
.usps__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.usp {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding: 2rem 1.75rem;
  background: var(--sand);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease), border-color var(--t-base);
}
.usp:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,.09);
  border-color: rgba(184,144,58,.3);
}
.usp__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(184,144,58,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.usp__icon svg { width: 22px; height: 22px; color: var(--gold); }
/* when icon() SVG is placed directly (without wrapper) */
.usp > svg { color: var(--gold); flex-shrink: 0; width: 22px; height: 22px; }
.usp strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .3rem;
}
.usp p { font-size: .85rem; color: var(--muted); max-width: none; line-height: 1.55; }

/* ─── TRUST SECTION ──────────────────────────────────────── */
.trust-section {
  display: grid;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.trust-section__img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  position: relative;
}
.trust-section__img img { width: 100%; height: 100%; object-fit: cover; }
.trust-section__checks { display: flex; flex-direction: column; gap: .75rem; margin: 1.75rem 0 2rem; }
.trust-section__check  {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .95rem;
  font-weight: 500;
  color: var(--text);
}
.trust-section__check svg { color: var(--gold); flex-shrink: 0; }

/* ─── BUS ANIMATION ──────────────────────────────────────── */
.bus-arrive {
  background: var(--ink);
  overflow: hidden;
  display: none; /* shown at ≥768px */
  position: relative;
  height: 200px;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.bus-arrive__road {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 24px;
  background: var(--ink-2);
}
.bus-arrive__road::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 3px;
  margin-top: -1.5px;
  background: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,.12) 0,
    rgba(255,255,255,.12) 40px,
    transparent 40px,
    transparent 70px
  );
}
.bus-arrive__vehicle {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  height: 176px;
  display: flex;
  align-items: flex-end;
  padding-left: 5vw;
  transform: translateX(110%);
  opacity: .9;
  transition: transform var(--t-anim) var(--ease-out);
}
.bus-arrive__vehicle.is-visible { transform: translateX(0); }
.bus-arrive__vehicle img {
  height: 160px;
  width: auto;
  max-width: 640px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  filter: brightness(.9) contrast(1.05);
}
.bus-arrive__label {
  position: absolute;
  right: var(--gap);
  top: 50%;
  transform: translateY(-50%);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
  writing-mode: vertical-rl;
  opacity: 0;
  transition: opacity .5s var(--ease) .8s;
}
.bus-arrive__vehicle.is-visible ~ .bus-arrive__label { opacity: 1; }

/* ─── FEATURES GRID ──────────────────────────────────────── */
.features-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  padding: 1.25rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: box-shadow var(--t-base), border-color var(--t-base);
}
.feature-item:hover { box-shadow: var(--shadow-sm); border-color: var(--border-2); }
.feature-item__icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.feature-item__icon svg { width: 18px; height: 18px; }
.feature-item__title { font-size: .92rem; font-weight: 600; color: var(--text); line-height: 1.3; }
.feature-item__desc  { font-size: .82rem; color: var(--muted); max-width: none; margin-top: .2rem; line-height: 1.45; }

/* Dark feature variant */
.feature-item--dark {
  background: var(--ink-3);
  border-color: rgba(255,255,255,.08);
}
.feature-item--dark .feature-item__title { color: var(--white); }
.feature-item--dark .feature-item__desc  { color: rgba(255,255,255,.45); }
.feature-item--dark:hover { border-color: rgba(196,154,60,.3); }

/* ─── FAQ ────────────────────────────────────────────────── */
.faq { }
.faq__list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--border); }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.25rem 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  background: none;
  border: none;
  line-height: 1.4;
}
.faq__q:hover { color: var(--gold); }
.faq__q[aria-expanded="true"] { color: var(--gold); }
.faq__chevron {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--muted);
  transition: transform var(--t-base) var(--ease), color var(--t-base);
}
.faq__q[aria-expanded="true"] .faq__chevron { transform: rotate(180deg); color: var(--gold); }
.faq__answer-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--t-slow) var(--ease);
}
.faq__answer-wrap.is-open { grid-template-rows: 1fr; }
.faq__answer-inner { overflow: hidden; }
.faq__answer {
  padding-bottom: 1.25rem;
  font-size: .92rem;
  color: var(--text-2);
  line-height: 1.7;
  padding-left: 0;
  border-left: 3px solid var(--gold);
  padding-left: .85rem;
  max-width: 68ch;
}

/* Dark FAQ variant */
.faq--dark .faq__list { border-top-color: rgba(255,255,255,.1); }
.faq--dark .faq__item { border-bottom-color: rgba(255,255,255,.1); }
.faq--dark .faq__q    { color: rgba(255,255,255,.85); }
.faq--dark .faq__q:hover,
.faq--dark .faq__q[aria-expanded="true"] { color: var(--gold-2); }
.faq--dark .faq__chevron { color: rgba(255,255,255,.3); }
.faq--dark .faq__q[aria-expanded="true"] .faq__chevron { color: var(--gold-2); }
.faq--dark .faq__answer { color: rgba(255,255,255,.6); }

/* ─── AREA TEXT (local SEO) ──────────────────────────────── */
.area-section {
  padding-block: clamp(3rem, 6vw, 5rem);
  background: var(--sand-2);
  border-top: 1px solid var(--border);
}
.area-section h2 { margin-bottom: 1.25rem; }
.area-section p  { margin-bottom: 1rem; }
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.5rem;
}
.area-tag {
  display: inline-block;
  padding: .35rem .85rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 500;
  color: var(--text-2);
  transition: border-color var(--t-fast), color var(--t-fast);
}
.area-tag:hover { border-color: var(--gold); color: var(--gold); }

/* ─── CONTACT FORM ───────────────────────────────────────── */
.contact-grid {
  display: grid;
  gap: clamp(2.5rem, 6vw, 5rem);
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p { margin-bottom: 1.5rem; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: .75rem;
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--t-base), border-color var(--t-base);
}
.contact-item:hover { box-shadow: var(--shadow-sm); border-color: var(--gold); }
.contact-item__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.contact-item__icon svg { width: 18px; height: 18px; }
.contact-item__label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: .2rem; }
.contact-item__value { font-size: .95rem; font-weight: 600; color: var(--text); }
.contact-item__sub   { font-size: .8rem;  color: var(--muted); margin-top: .1rem; max-width: none; }

.contact-cta-row {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  margin-top: 1.5rem;
}
.map-embed { width: 100%; height: 240px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); margin-top: 1.5rem; }

/* Form */
.form-wrap  { }
.form-wrap h2 { margin-bottom: 1.5rem; }
.form-row   { display: grid; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: .02em;
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: .75rem 1rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .95rem;
  color: var(--text);
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast);
  -webkit-appearance: none;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-dim);
}
.form-group textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.honeypot { display: none !important; visibility: hidden; position: absolute; }
.form-alert {
  padding: .85rem 1.1rem;
  border-radius: var(--radius);
  font-size: .88rem;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}
.form-alert--success { background: #e8f8ee; color: #1a6b35; border: 1px solid #c3e8d0; }
.form-alert--error   { background: #fdf1f0; color: #9b1c1c; border: 1px solid #f5c6c6; }

/* ─── CTA BANNER ─────────────────────────────────────────── */
.cta-banner {
  background: var(--ink);
  padding: clamp(4rem, 9vw, 7rem) var(--gap);
  border-top: 1px solid rgba(184,144,58,.18);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse 80% 100% at 100% 50%, rgba(184,144,58,.06) 0%, transparent 65%);
  pointer-events: none;
}
.cta-banner__inner {
  max-width: var(--container);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: flex-start;
  position: relative;
}
.cta-banner__heading {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -.02em;
}
.cta-banner__heading em { color: var(--gold-2); font-style: italic; }
.cta-banner__sub { color: rgba(255,255,255,.55); margin-top: .75rem; max-width: 48ch; font-size: 1.05rem; line-height: 1.7; }
.cta-banner__btns { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ─── PAGE HERO (inner) ──────────────────────────────────── */
.page-hero {
  background: var(--ink);
  padding: clamp(3.5rem, 8vw, 6.5rem) var(--gap) clamp(3rem, 7vw, 5.5rem);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 90% at 90% 50%, rgba(184,144,58,.09) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(184,144,58,.04) 0%, transparent 55%);
  pointer-events: none;
}
.page-hero .container { position: relative; }
.page-hero h1 { color: var(--white); }
.page-hero-sub {
  margin-top: 1rem;
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,.58);
  max-width: 54ch;
  line-height: 1.7;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .3rem;
  margin-bottom: 1.5rem;
  font-size: .78rem;
  color: rgba(255,255,255,.35);
}
.breadcrumb a { color: rgba(255,255,255,.4); transition: color var(--t-fast); }
.breadcrumb a:hover { color: var(--gold-2); }
.breadcrumb span { color: rgba(255,255,255,.35); }

/* ─── RELATED PAGES ──────────────────────────────────────── */
.related-pages { padding-block: clamp(2.5rem, 5vw, 4rem); background: var(--sand-2); }
.related-pages h2 { font-size: 1.3rem; margin-bottom: 1.1rem; }
.related-pages ul { display: flex; flex-wrap: wrap; gap: .5rem; }
.related-pages li a {
  display: inline-block;
  padding: .45rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--text-2);
  transition: border-color var(--t-fast), color var(--t-fast), box-shadow var(--t-fast);
}
.related-pages li a:hover { border-color: var(--gold); color: var(--gold); box-shadow: var(--shadow-xs); }

/* ─── DB GENERIC PAGE ─────────────────────────────────────── */
.page-body { padding: var(--section) 0; }
.page-featured-img { margin-bottom: 2.5rem; border-radius: var(--radius-lg); overflow: hidden; }
.page-featured-img img { width: 100%; max-height: 500px; object-fit: cover; }
.prose { max-width: 72ch; }
.prose h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); margin: 2rem 0 .75rem; }
.prose h3 { font-size: clamp(1.05rem, 1.8vw, 1.35rem); margin: 1.75rem 0 .5rem; }
.prose p  { margin-bottom: 1.1rem; }
.prose ul, .prose ol { list-style: disc; padding-left: 1.5rem; margin-bottom: 1.1rem; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: .4rem; }
.prose strong { font-weight: 600; color: var(--text); }
.prose a  { color: var(--gold); text-decoration: underline; }
.prose a:hover { color: var(--gold-2); }
.prose blockquote { border-left: 3px solid var(--gold); padding: .75rem 1.25rem; margin: 1.5rem 0; background: var(--gold-pale); border-radius: 0 var(--radius) var(--radius) 0; font-style: italic; color: var(--text-2); }
.page-body-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.5rem; }
.page-body-empty { color: var(--muted); font-style: italic; }

/* ─── WAGENPARK / FLEET ──────────────────────────────────── */
.fleet-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
.fleet-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--t-base), transform var(--t-base);
}
.fleet-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.fleet-card__img { aspect-ratio: 16/9; overflow: hidden; }
.fleet-card__img img, .wagon-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.fleet-card:hover .wagon-img,
.fleet-card:hover .fleet-card__img img { transform: scale(1.04); }
.fleet-card__body  { padding: 1.5rem; }
.fleet-card__head  { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: .5rem; }
.fleet-card__title { font-family: var(--font-head); font-size: 1.15rem; }
.fleet-card__cap   { background: var(--gold); color: var(--ink); font-size: .72rem; font-weight: 700; padding: .25rem .7rem; border-radius: 100px; white-space: nowrap; margin-left: .5rem; }
.fleet-card__desc  { font-size: .85rem; color: var(--text-2); margin-bottom: 1.25rem; max-width: none; }
.fleet-card__specs { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; }
.fleet-card__spec  { display: flex; align-items: center; gap: .4rem; font-size: .78rem; color: var(--text-2); }
.fleet-card__spec svg { color: var(--gold); flex-shrink: 0; width: 14px; height: 14px; }
.fleet-card__no-img {
  width: 100%; height: 100%;
  background: var(--ink-3);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.3); font-size: .85rem;
}
.fleet-callout {
  margin-top: 3rem;
  background: var(--ink); color: var(--white);
  border-radius: var(--radius-lg); padding: 2rem 2.25rem;
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 1.5rem;
}
.fleet-callout h3 { color: var(--white); margin-bottom: .35rem; }
.fleet-callout p  { color: rgba(255,255,255,.6); max-width: none; margin: 0; font-size: .9rem; }

/* ─── REVIEWS ────────────────────────────────────────────── */
.reviews-bar {
  background: var(--ink-2);
  padding: 2.5rem var(--gap);
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.06);
}
.reviews-bar__score {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: .35rem;
}
.reviews-bar__score svg { color: var(--gold); }
.reviews-bar p { color: rgba(255,255,255,.55); font-size: .9rem; margin-bottom: 1rem; max-width: none; }

/* ─── OVER ONS ───────────────────────────────────────────── */
.over-ons-grid { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.stats-chips   { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-block: clamp(2.5rem, 5vw, 4rem); }
.stats-chip    { background: var(--sand-2); border-radius: var(--radius); padding: 1.5rem 1rem; text-align: center; }
.stats-chip strong { display: block; font-family: var(--font-head); font-size: 2.2rem; color: var(--gold); line-height: 1; }
.stats-chip span   { display: block; font-size: .8rem; font-weight: 600; margin-top: .4rem; }
.stats-chip small  { display: block; font-size: .75rem; color: var(--muted); margin-top: .2rem; max-width: none; }
.values-grid { display: grid; gap: .75rem; }
.value-item  { display: flex; gap: .85rem; align-items: flex-start; padding: 1rem; background: var(--sand-2); border-radius: var(--radius); }
.value-item__icon { color: var(--gold); flex-shrink: 0; margin-top: .1rem; }
.value-item strong { display: block; font-size: .92rem; margin-bottom: .2rem; }
.value-item p { font-size: .82rem; color: var(--text-2); max-width: none; line-height: 1.5; }

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  padding-top: clamp(3rem, 7vw, 5.5rem);
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}
.footer-brand p { font-size: .85rem; color: rgba(255,255,255,.45); margin-top: 1rem; max-width: 28ch; line-height: 1.65; }
address.footer-address { font-size: .85rem; color: rgba(255,255,255,.35); margin-top: 1rem; line-height: 1.9; }
address.footer-address a { color: rgba(255,255,255,.45); transition: color var(--t-fast); }
address.footer-address a:hover { color: var(--gold); }

.footer-col h3 { font-family: var(--font-body); font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .3rem; }
.footer-col li a { font-size: .85rem; color: rgba(255,255,255,.45); transition: color var(--t-fast); padding: .1rem 0; }
.footer-col li a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 1.25rem var(--gap);
  display: flex;
  flex-direction: column;
  gap: .5rem;
  align-items: center;
  text-align: center;
  font-size: .78rem;
  color: rgba(255,255,255,.25);
}
.footer-bottom a { color: rgba(255,255,255,.3); transition: color var(--t-fast); }
.footer-bottom a:hover { color: var(--gold); }
.footer-bottom-links { display: flex; gap: 1rem; }

/* ─── WA FLOAT ───────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 800;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.25), 0 0 0 0 rgba(37,211,102,.4);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base);
  animation: wa-pulse 2.5s ease-out infinite;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(0,0,0,.3); animation: none; }
.wa-float svg { color: #fff; }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(0,0,0,.25), 0 0 0 0 rgba(37,211,102,.4); }
  60%       { box-shadow: 0 4px 20px rgba(0,0,0,.25), 0 0 0 12px rgba(37,211,102,0); }
}

/* ─── LANDING PAGE ───────────────────────────────────────── */
.landing-hero-img {
  aspect-ratio: 16/7;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  box-shadow: var(--shadow-lg);
}
.landing-hero-img img { width: 100%; height: 100%; object-fit: cover; }

/* ─── REVEAL ANIMATIONS ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity  var(--t-slow) var(--ease),
    transform var(--t-slow) var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

/* Stagger siblings */
.reveal-group > *:nth-child(1) { transition-delay: 0ms; }
.reveal-group > *:nth-child(2) { transition-delay: 80ms; }
.reveal-group > *:nth-child(3) { transition-delay: 160ms; }
.reveal-group > *:nth-child(4) { transition-delay: 240ms; }
.reveal-group > *:nth-child(5) { transition-delay: 320ms; }

/* ─── 404 ────────────────────────────────────────────────── */
.not-found {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--section) var(--gap);
}
.not-found h1 { font-size: 7rem; color: var(--gold); opacity: .25; line-height: 1; }
.not-found h2 { margin: .5rem 0 1rem; }
.not-found p  { margin-bottom: 2rem; }

/* ─── FORM LAYOUT ALIASES (offerte.php uses these names) ─── */
.form-block { padding-block: var(--section); }
.form-grid  { display: grid; gap: clamp(2.5rem, 6vw, 5rem); }
.form-info  { }
.form-info h2 { margin-bottom: 1rem; }
.form-info > p { margin-bottom: 1.5rem; color: var(--text-2); }
.form-info-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: .75rem;
}
.form-info-row svg { color: var(--gold); flex-shrink: 0; margin-top: .1rem; }
.form-info-row strong { display: block; font-size: .88rem; margin-bottom: .15rem; }
.form-info-row a { color: var(--text-2); transition: color var(--t-fast); }
.form-info-row a:hover { color: var(--gold); }
@media (min-width: 768px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
}

/* ─── UTILITIES ──────────────────────────────────────────── */
.visually-hidden { position: absolute; width: 1px; height: 1px; clip: rect(0,0,0,0); overflow: hidden; white-space: nowrap; }
.order-1 { order: 1; }
.order-2 { order: 2; }
.text-gold   { color: var(--gold); }
.text-white  { color: var(--white); }
.text-muted  { color: var(--muted); }
.text-center { text-align: center; }
.mt-auto { margin-top: auto; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (min-width: 480px) {
  .usps__grid      { grid-template-columns: 1fr 1fr; }
  .fleet-grid      { grid-template-columns: 1fr 1fr; }
  .features-grid   { grid-template-columns: 1fr 1fr; }
  .form-row        { grid-template-columns: 1fr 1fr; }
  .bento           { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 600px) {
  .usps__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 768px) {
  .nav-links       { display: flex; }
  .burger          { display: none; }
  .bus-arrive      { display: block; }
  .hero            {
    grid-template-columns: 55fr 45fr;
    min-height: calc(100svh - 68px);
    min-height: calc(100vh - 68px);
  }
  .hero__bg        { display: none; }
  .hero__content   { background: var(--ink); padding: clamp(3rem,6vw,5rem) clamp(2rem,5vw,4rem); max-width: none; }
  .hero__media     { position: relative; overflow: hidden; aspect-ratio: unset; }
  .hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
  .hero__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--ink) 0%, transparent 25%);
  }

  .bento           { grid-template-columns: 2fr 1fr; }
  .bento__card--featured { grid-row: span 2; }
  .bento__card--featured .bento__img-wrap { aspect-ratio: unset; flex: 1; min-height: 240px; }

  .services-grid   { grid-template-columns: repeat(3, 1fr); }
  .usps__grid      { grid-template-columns: repeat(3, 1fr); }
  .trust-section   { grid-template-columns: 1fr 1fr; }
  .over-ons-grid   { grid-template-columns: 1fr 1fr; }
  .values-grid     { grid-template-columns: 1fr 1fr; }
  .contact-grid    { grid-template-columns: 1fr 1fr; }
  .footer-grid     { grid-template-columns: 1.6fr repeat(3, 1fr); }
  .footer-bottom   { flex-direction: row; justify-content: space-between; text-align: left; }
  .service-block   { grid-template-columns: 1fr 1fr; }
  .cta-banner__inner { flex-direction: row; align-items: center; justify-content: space-between; gap: 3rem; }
  .reviews__inner  { flex-wrap: nowrap; }
}

@media (min-width: 1024px) {
  .features-grid   { grid-template-columns: repeat(3, 1fr); }
  .fleet-grid      { grid-template-columns: repeat(3, 1fr); }
  .contact-cta-row { flex-direction: row; }
  .map-embed       { height: 280px; }
  .bento           { grid-template-columns: 2fr 1fr 1fr; }
}

/* ─── PREFERS REDUCED MOTION ─────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .bus-arrive__vehicle { transform: translateX(0) !important; }
  .wa-float { animation: none; }
}
