/* Self-hosted fonts — Fraunces + DM Sans (replaces Google Fonts: privacy/GDPR + perf).
   woff2 in /fonts/; preload the critical faces in <head>. */
@font-face { font-family: 'Fraunces'; font-style: normal; font-weight: 400; font-display: swap; src: url(/fonts/fraunces-400.woff2) format('woff2'); }
@font-face { font-family: 'Fraunces'; font-style: italic; font-weight: 400; font-display: swap; src: url(/fonts/fraunces-400-italic.woff2) format('woff2'); }
@font-face { font-family: 'Fraunces'; font-style: normal; font-weight: 700; font-display: swap; src: url(/fonts/fraunces-700.woff2) format('woff2'); }
@font-face { font-family: 'Fraunces'; font-style: normal; font-weight: 900; font-display: swap; src: url(/fonts/fraunces-900.woff2) format('woff2'); }
@font-face { font-family: 'DM Sans'; font-style: normal; font-weight: 300; font-display: swap; src: url(/fonts/dmsans-300.woff2) format('woff2'); }
@font-face { font-family: 'DM Sans'; font-style: normal; font-weight: 400; font-display: swap; src: url(/fonts/dmsans-400.woff2) format('woff2'); }
@font-face { font-family: 'DM Sans'; font-style: normal; font-weight: 500; font-display: swap; src: url(/fonts/dmsans-500.woff2) format('woff2'); }
@font-face { font-family: 'DM Sans'; font-style: normal; font-weight: 600; font-display: swap; src: url(/fonts/dmsans-600.woff2) format('woff2'); }

/* ==========================================================================
   Limo Service Roma — Design System
   Brand-led palette: primary #C4973B (gold — use ONLY on dark surfaces; it does
   NOT clear AA as small text on cream/photos, so keep gold text to dark sections,
   buttons use gold bg + --earth text), primary-dark #0D0D1A.
   Replace primary swatches if shifting aesthetic; keep contrast ratios.
   ========================================================================== */

:root {
  /* Palette — brand */
  --primary: #C4973B;
  --primary-dark: #0D0D1A;
  --primary-surface: #F6EFE1;     /* tinted panel background */

  /* Neutral system */
  --cream: #F5F0E8;
  --cream-dark: #EDE7DB;
  --linen: #FAF7F2;
  --earth: #2C2418;
  --earth-mid: #4A3D2E;
  /* Two-token stone — no single warm-gray clears AA on BOTH cream and earth. */
  --stone: #74684F;        /* 4.78:1 on --cream — use for body labels, small captions, meta on cream/cream-dark */
  --stone-light: #B5A998;  /* 6.58:1 on --earth — use for footer body text, hint copy on dark sections */
  --white: #FFFCF7;

  /* Optional accent — assign a contrasting warm tone if your aesthetic needs one.
     Defaults below are WCAG AA-compliant on cream/cream-dark/dark; if you change
     them per brief, target ≥4.5:1 on cream (small text) and ≥5:1 for accent-on-dark. */
  --accent: #8E5527;          /* default terracotta — AA on cream (5.15:1) and cream-dark (4.89:1) */
  --accent-dark: #6F4220;     /* deeper terracotta for hover/active — AAA on cream (7.4:1) */
  --accent-on-dark: #D4956A;  /* lighter terracotta for eyebrows on dark sections (5.5:1 on #2C2418 / #0D1110) */

  /* Typography — change per aesthetic direction (NEVER Inter/Roboto/Arial) */
  --font-display: 'Fraunces', 'Georgia', serif;
  --font-body: 'DM Sans', 'Helvetica Neue', sans-serif;

  /* Sizes */
  --container: 1120px;
  --container-narrow: 720px;
  --radius: 6px;
  --radius-lg: 12px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(44, 36, 24, 0.08);
  --shadow-md: 0 4px 12px rgba(44, 36, 24, 0.1);
  --shadow-lg: 0 8px 24px rgba(44, 36, 24, 0.12);
}

/* Reset & Base */
*, *::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: 16px;
  line-height: 1.7;
  color: var(--earth);
  background: var(--linen);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary-dark); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--earth);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }

/* Layout */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-alt { padding: 5rem 0; background: var(--cream-dark); }
.section-dark { padding: 5rem 0; background: var(--earth); color: var(--cream); }
.section-dark h2, .section-dark h3 { color: var(--cream); }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-header p { color: var(--stone); font-size: 1.1rem; margin-top: 0.5rem; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 500; font-size: 0.95rem;
  text-decoration: none; cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

/* Gold is the primary action colour (brand cohesion); WhatsApp teal is the one
   sanctioned exception. Terracotta retired from buttons. */
.btn-primary { background: var(--primary); color: var(--earth); border-color: var(--primary); }
.btn-primary:hover {
  background: #d4a84a; border-color: #d4a84a; color: var(--earth);
  transform: translateY(-1px); box-shadow: var(--shadow-md);
}

.btn-outline { background: transparent; color: var(--earth); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--earth); }

.btn-ghost { background: transparent; color: var(--earth); border-color: var(--stone-light); }
.btn-ghost:hover { border-color: var(--earth); color: var(--earth); }

.btn-whatsapp { background: #075E54; color: #fff; border-color: #075E54; }  /* WhatsApp accessible dark teal — white text passes WCAG AA (7.5:1); brand-compliant variant of the iconic green */
.btn-whatsapp:hover {
  background: #20BD5A; border-color: #20BD5A; color: #fff;
  transform: translateY(-1px);
}

.btn-lg { padding: 1rem 2.2rem; font-size: 1.05rem; }

/* Header & Nav */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cream-dark);
}

.header-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}

.site-logo {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 800;
  color: var(--earth); text-decoration: none;
  display: flex; align-items: center; gap: 0.7rem;
}

.site-logo:hover { color: var(--primary-dark); }

/* Icon system — sprite referenced via <use>, recoloured via currentColor.
   Swap #brand in images/icons.svg per client; add utility icons at the same
   24-grid / 1.75-stroke standard (design_audit.py checks this cohesion). */
.logo-mark { width: 44px; height: 20px; color: var(--primary); flex: 0 0 auto; }
/* Logo lockup: mark + refined wordmark + gold kicker */
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name { font-family: var(--font-display); font-weight: 700; font-size: 1.32rem; color: var(--cream); letter-spacing: 0.005em; }
.logo-kicker { font-family: var(--font-body); font-size: 0.6rem; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase; color: var(--primary); margin-top: 4px; }
.ico { width: 1.4rem; height: 1.4rem; color: var(--primary); flex: 0 0 auto; vertical-align: middle; }
.ico-sm { width: 1rem; height: 1rem; }

.nav-links { display: flex; align-items: center; gap: 1.8rem; list-style: none; }

.nav-links a {
  font-size: 0.9rem; font-weight: 500;
  color: var(--earth-mid); text-decoration: none;
  position: relative; transition: color 0.2s;
}

.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--primary);
  transition: width 0.25s ease;
}

.nav-links a:hover { color: var(--primary-dark); }
.nav-links a:hover::after { width: 100%; }

.nav-links .nav-cta {
  padding: 0.5rem 1.2rem;
  background: var(--accent); color: var(--white);
  border-radius: var(--radius); font-weight: 600;
}
.nav-links .nav-cta::after { display: none; }
.nav-links .nav-cta:hover { background: var(--accent-dark); color: var(--white); }

.lang-switch {
  font-size: 0.8rem; font-weight: 600;
  color: var(--stone);
  border: 1px solid var(--stone-light);
  padding: 0.25rem 0.6rem; border-radius: 3px;
  text-decoration: none;
}
.lang-switch:hover { color: var(--earth); border-color: var(--earth); }

/* Hero */
.hero {
  position: relative; min-height: 72vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
  background: var(--earth);
  padding: 5.5rem 0 3rem;
}

.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.55;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(44, 36, 24, 0.3) 0%, rgba(44, 36, 24, 0.6) 100%);
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 700px; padding: 2rem;
}

.hero-content h1 {
  color: var(--cream);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900; letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.hero-content p {
  color: var(--cream-dark);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  margin-bottom: 2rem; line-height: 1.6;
}

.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Editorial accents — eyebrow, olive rule */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--primary-dark);
  position: relative; padding: 0 1.4rem;
}
.eyebrow::before, .eyebrow::after {
  content: ''; position: absolute; top: 50%;
  width: 0.9rem; height: 1px; background: var(--primary);
}
.eyebrow::before { left: 0; }
.eyebrow::after { right: 0; }

.olive-rule {
  display: block; width: 72px; height: 1px;
  background: var(--primary); margin: 1.5rem auto 0;
  position: relative;
}
.olive-rule::after {
  content: ''; position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 6px; height: 6px;
  background: var(--primary); border-radius: 50%;
}

/* Footer */
.site-footer {
  background: var(--earth);
  color: var(--stone-light);
  padding: 3rem 0 1.5rem;
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto; padding: 0 1.5rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 700;
  color: var(--cream); margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid var(--earth-mid);
  padding-top: 1.5rem; margin-top: 2rem;
  font-size: 0.8rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
}

.footer-bottom a { color: var(--stone-light); }
.footer-bottom a:hover { color: var(--cream); }

/* Honeypot — invisible to humans, auto-filled by bots */
.honeypot-field {
  position: absolute;
  left: -10000px; top: auto;
  width: 1px; height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* Forms */
.form-section {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.form-group { display: flex; flex-direction: column; margin-bottom: 1rem; }

.form-group label {
  font-size: 0.85rem; font-weight: 500;
  color: var(--earth-mid);
  margin-bottom: 0.3rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--earth);
  background: var(--linen);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 2px solid var(--primary);
  outline-offset: 1px;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(196, 151, 59, 0.12);
}

.form-error {
  background: #FEF2F2; color: #B91C1C;
  padding: 0.8rem 1rem;
  border-radius: var(--radius);
  margin-bottom: 1rem; font-size: 0.9rem;
}

/* Scroll fade-in */
.fade-in {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible { opacity: 1; transform: translateY(0); }

noscript ~ .fade-in,
html:not(.js-loaded) .fade-in { opacity: 1; transform: none; }

/* Isla Studio web design standards */
:root { color-scheme: light; }

a, button, input[type="submit"], .btn { touch-action: manipulation; }

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

/* Responsive */
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--linen);
    flex-direction: column;
    padding: 1.5rem; gap: 1rem;
    border-bottom: 1px solid var(--cream-dark);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }

  .hero { min-height: 70vh; }
  .hero-content h1 { font-size: clamp(1.8rem, 7vw, 2.8rem); }

  .section { padding: 3rem 0; }

  .footer-bottom { flex-direction: column; text-align: center; }

  /* Mobile audit lesson (Castelbio 2026-05-31):
     If you add any 7-column grid with aspect-ratio:1/1 + min-height, override min-height
     here. At 375 viewport with 24px container padding + component padding + gaps, each
     cell of a 7-col grid has ≈40px available. min-height >50 = overflow.
     Standard override pattern:
     .cell { min-height: 36px; max-height: 56px; }
     .grid { gap: 0.2rem; }
  */
}

/* a11y: 44x44 hamburger tap target */
.nav-toggle { min-width: 44px; min-height: 44px; }

/* ==========================================================================
   Editorial Midnight — Theme Overrides
   Dark header + gold accents on dark sections; cream body sections use base.
   ========================================================================== */

/* Dark header */
.site-header {
  background: rgba(13, 13, 26, 0.97);
  border-bottom: 1px solid rgba(196, 151, 59, 0.2);
}

.site-logo { color: var(--cream); }
.logo-mark { color: var(--primary); }
.site-logo:hover { color: var(--primary); }

.nav-links a { color: var(--stone-light); }
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { background: var(--primary); }

.nav-links .nav-cta {
  background: var(--primary); color: var(--earth);
  border-color: var(--primary); font-weight: 700;
}
.nav-links .nav-cta:hover { background: #d4a84a; border-color: #d4a84a; color: var(--earth); }
.nav-links .nav-cta::after { display: none; }

/* Mobile toggle on dark header */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--cream); }

/* Language switcher group */
.lang-group {
  display: flex; align-items: center; gap: 0.3rem;
  margin-left: 0.5rem; padding-left: 1rem;
  border-left: 1px solid rgba(196, 151, 59, 0.25);
}
.lang-switch { color: var(--stone-light); border-color: rgba(181,169,152,0.3); }
.lang-switch:hover { color: var(--cream); border-color: var(--cream); }

/* Active language: gold + no pointer */
html.lang-it .nav-lang-it,
html.lang-en .nav-lang-en,
html.lang-de .nav-lang-de {
  color: var(--primary);
  border-color: var(--primary);
  pointer-events: none;
  cursor: default;
}

/* Hero eyebrow on dark/photo: cream text (gold failed AA over the photo), gold dashes kept */
.hero-eyebrow { color: var(--cream); text-shadow: 0 1px 6px rgba(13, 13, 26, 0.7); }
.hero-eyebrow::before, .hero-eyebrow::after { background: var(--primary); }

/* Inner-page hero */
.page-hero {
  position: relative; min-height: 40vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: var(--primary-dark);
}
.page-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(13,13,26,0.88) 0%, rgba(13,13,26,0.6) 100%);
}

/* Buttons for dark sections */
.btn-gold {
  background: var(--primary); color: var(--earth);
  border-color: var(--primary); font-weight: 700;
}
.btn-gold:hover {
  background: #d4a84a; border-color: #d4a84a; color: var(--earth);
  transform: translateY(-1px); box-shadow: 0 4px 16px rgba(196,151,59,0.35);
}
.btn-outline-cream {
  background: transparent; color: var(--cream);
  border-color: rgba(245,240,232,0.5); font-weight: 600;
}
.btn-outline-cream:hover {
  background: rgba(245,240,232,0.1); border-color: var(--cream); color: var(--cream);
}

/* Dark brand section */
.section-brand { padding: 5rem 0; background: var(--primary-dark); color: var(--cream-dark); }
.section-brand h2 { color: var(--cream); }
.section-brand p { color: var(--cream-dark); }

/* Trust strip */
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; background: rgba(196,151,59,0.15);
  border-radius: var(--radius); overflow: hidden; margin-top: 2rem;
}
.trust-item {
  background: rgba(13,13,26,0.6); padding: 2rem 1.5rem; text-align: center;
  transition: background 0.25s;
}
.trust-item:hover { background: rgba(196,151,59,0.08); }
.trust-number {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900; color: var(--primary); line-height: 1; display: block;
  font-variant-numeric: tabular-nums;
}
.trust-label {
  font-size: 0.82rem; font-weight: 700; color: var(--cream);
  text-transform: uppercase; letter-spacing: 0.12em;
  display: block; margin-top: 0.5rem;
}
.trust-desc { font-size: 0.78rem; color: var(--stone-light); margin-top: 0.4rem; }

/* Service cards */
.card-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem; margin-top: 1rem;
}
.card {
  background: var(--white); border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg); padding: 2rem 1.75rem;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: var(--primary); }
.card-link { display: block; text-decoration: none; color: inherit; }
.card-icon {
  width: 52px; height: 52px; background: var(--primary-surface);
  border-radius: var(--radius); display: flex; align-items: center;
  justify-content: center; margin-bottom: 1.25rem; color: var(--primary);
}
.card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; color: var(--earth); }
.card p { font-size: 0.9rem; color: var(--earth-mid); line-height: 1.65; }
.card-arrow {
  display: inline-flex; align-items: center; gap: 0.3rem;
  margin-top: 1rem; font-size: 0.85rem; font-weight: 600; color: var(--primary);
  transition: gap 0.2s;
}
.card-link:hover .card-arrow { gap: 0.6rem; }
.card-arrow { color: var(--primary-dark); }  /* gold failed AA on white cards */

/* Fleet preview (home) */
.fleet-preview-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center; margin-top: 2rem;
}
.fleet-preview-text h2 { margin-bottom: 1rem; }
.fleet-preview-text p { color: var(--earth-mid); margin-bottom: 1.5rem; }
.fleet-model-chip {
  display: inline-block; padding: 0.25rem 0.7rem;
  background: rgba(196,151,59,0.14); border: 1px solid rgba(196,151,59,0.4);
  border-radius: 20px; font-size: 0.78rem; font-weight: 600;
  color: var(--earth); margin: 0.2rem 0.2rem 0.2rem 0;
  font-family: inherit; -webkit-appearance: none; appearance: none;
  cursor: pointer; transition: background .25s, border-color .25s, color .25s;
}
/* Fleet preview rendered as a dark band — text + chips read on midnight */
.section-fleet-preview .fleet-preview-text p { color: var(--cream-dark); }
.section-fleet-preview .fleet-model-chip { background: rgba(196,151,59,0.18); border-color: rgba(196,151,59,0.55); color: var(--cream); }
.section-fleet-preview .fleet-model-chip:hover { background: rgba(196,151,59,0.34); }
.section-fleet-preview .fleet-model-chip[aria-pressed="true"] { background: var(--primary); border-color: var(--primary); color: var(--earth); }
/* Fleet gallery — crossfading car shots on a white card */
.fleet-preview-image { position: relative; aspect-ratio: 5 / 3; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); background: #fff; }
.fleet-shot { position: absolute; inset: 0; opacity: 0; transition: opacity .55s ease; }
.fleet-shot.is-active { opacity: 1; }
.fleet-shot img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Routes mini list */
.routes-mini {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem; margin-top: 2rem;
}
.route-mini-item {
  background: var(--white); border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg); padding: 1.25rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.route-mini-item:hover { box-shadow: var(--shadow-md); border-color: var(--primary); }
.route-mini-ends { font-size: 0.9rem; color: var(--earth-mid); }
.route-mini-ends strong { display: block; color: var(--earth); font-weight: 600; font-size: 1rem; }
.route-mini-price {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 900;
  color: var(--primary); white-space: nowrap; font-variant-numeric: tabular-nums;
}

/* Reviews */
.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; margin-top: 2rem;
}
.review-card {
  background: var(--white); border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg); padding: 1.75rem;
  display: flex; flex-direction: column;
}
.review-stars { color: var(--primary); font-size: 1rem; letter-spacing: 0.05em; margin-bottom: 0.75rem; }
.review-text { font-size: 0.95rem; color: var(--earth-mid); line-height: 1.7; flex: 1; }
.review-text em { color: var(--earth); font-style: normal; font-weight: 600; }
.review-author { font-weight: 700; color: var(--earth); margin-top: 1rem; font-size: 0.9rem; }
.review-source { font-size: 0.8rem; color: var(--stone); margin-top: 0.25rem; }

/* CTA section */
.section-cta { padding: 5rem 0; }
.cta-headline { font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--cream); margin-bottom: 1rem; }
.cta-sub {
  color: var(--cream-dark); font-size: 1.1rem; margin-bottom: 2rem;
  max-width: 540px; margin-left: auto; margin-right: auto;
}

/* Floating WhatsApp */
.float-whatsapp {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 200;
  width: 56px; height: 56px; background: #075E54; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3); text-decoration: none;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}
.float-whatsapp svg { width: 30px; height: 30px; }
.float-whatsapp:hover { background: #128C7E; transform: scale(1.12); box-shadow: 0 6px 24px rgba(0,0,0,0.35); }

/* Footer columns */
.footer-top { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-bottom: 2rem; }
.footer-brand-col p { color: var(--stone-light); font-size: 0.9rem; line-height: 1.65; margin-top: 0.75rem; }
.footer-contact-info { margin-top: 1rem; }
.footer-contact-info a { color: var(--stone-light); transition: color 0.2s; }
.footer-contact-info a:hover { color: var(--cream); }
.footer-nav-col strong {
  display: block; color: var(--cream); font-size: 0.82rem;
  text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 1rem;
}
.footer-nav-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-nav-col a { color: var(--stone-light); font-size: 0.9rem; transition: color 0.2s; }
.footer-nav-col a:hover { color: var(--cream); }

/* How-it-works steps */
.steps-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem; margin-top: 1rem;
}
.step-item { padding-top: 1rem; }
.step-number {
  font-family: var(--font-display); font-size: 3rem; font-weight: 900;
  color: var(--primary); opacity: 0.3; line-height: 1; margin-bottom: 0.5rem;
}
.step-item h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.step-item p { font-size: 0.9rem; color: var(--earth-mid); }

/* Included checklist */
.included-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.75rem 2rem; list-style: none; margin-top: 2rem;
}
.included-item {
  display: flex; align-items: flex-start; gap: 0.75rem;
  color: var(--cream-dark); font-size: 0.95rem; padding: 0.5rem 0;
}
.included-check { flex: 0 0 20px; margin-top: 2px; }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; align-items: start; }
.contact-quick { display: flex; flex-direction: column; gap: 2rem; }
.contact-method-label {
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--stone); margin-bottom: 0.75rem;
}
.contact-detail-label {
  font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--stone);
}
.contact-details p { font-size: 0.95rem; }
.contact-details a { color: var(--earth-mid); }
.contact-details a:hover { color: var(--primary); }

/* Form layout */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.form-success {
  background: #f0fdf4; border: 1px solid #86efac;
  border-radius: var(--radius); padding: 1.5rem; text-align: center;
}
.form-success h3 { color: #166534; margin-bottom: 0.5rem; }
.form-success p { color: #15803d; }

/* Container-narrow  */
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 1.5rem; }

/* Tour cards */
.tour-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}
.tour-card {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md);
  background: var(--white); display: flex; flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}
.tour-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.tour-card-header {
  position: relative; min-height: 220px;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem;
}
.tour-badge {
  position: absolute; top: 1rem; right: 1rem;
  background: rgba(196,151,59,0.92); color: var(--earth);
  font-size: 0.78rem; font-weight: 700; padding: 0.3rem 0.75rem;
  border-radius: 20px; text-transform: uppercase; letter-spacing: 0.1em;
}
.tour-card-title {
  font-size: 1.3rem; color: var(--cream); font-weight: 700;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.tour-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.tour-card-body p { font-size: 0.9rem; color: var(--earth-mid); margin-bottom: 1rem; flex: 1; }
.tour-includes { list-style: none; margin: 0 0 1.25rem; display: flex; flex-direction: column; gap: 0.4rem; }
.tour-includes li {
  font-size: 0.85rem; color: var(--stone); padding-left: 1.2em; position: relative;
}
.tour-includes li::before { content: '→'; position: absolute; left: 0; color: var(--primary); }

/* Fleet cards */
.fleet-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.fleet-card {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md);
  background: var(--white); border: 1px solid var(--cream-dark);
  transition: box-shadow 0.25s, transform 0.25s;
}
.fleet-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.fleet-card-featured { border-color: var(--primary); }
.fleet-card-image { position: relative; overflow: hidden; }
.fleet-card-image img { width: 100%; height: 240px; object-fit: cover; transition: transform 0.4s; }
.fleet-card:hover .fleet-card-image img { transform: scale(1.03); }
.fleet-card-image .fleet-model-chip { position: absolute; top: 1rem; left: 1rem; }
/* chips over a photo need a solid pill (gold-tint-on-photo failed AA); S-Class gold chip excluded */
.fleet-card-image .fleet-model-chip:not(.fleet-chip-gold) { background: rgba(13,13,26,0.72); border-color: rgba(196,151,59,0.5); color: var(--cream); }
.fleet-chip-gold { background: var(--primary); border-color: var(--primary); color: var(--earth); }
.fleet-card-body { padding: 1.5rem; }
.fleet-card-body h2 { font-size: 1.2rem; margin-bottom: 0.75rem; }
.fleet-card-body p { font-size: 0.9rem; color: var(--earth-mid); margin-bottom: 1.25rem; }
.fleet-specs {
  display: flex; gap: 1rem; flex-wrap: wrap;
  border-top: 1px solid var(--cream-dark); padding-top: 1rem;
}
.fleet-spec-item { display: flex; align-items: center; gap: 0.4rem; font-size: 0.83rem; color: var(--earth-mid); }
.fleet-spec-item svg { color: var(--primary); flex: 0 0 18px; }

/* Pricing tables */
.price-table-wrap { overflow-x: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); margin-top: 1.5rem; }
.price-table { width: 100%; border-collapse: collapse; background: var(--white); font-size: 0.95rem; }
.price-table thead { background: var(--primary-dark); }
.price-table th {
  padding: 1rem 1.25rem; text-align: left;
  font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--cream);
}
.price-table th:not(:first-child) { text-align: center; }
.price-table td { padding: 0.9rem 1.25rem; border-bottom: 1px solid var(--cream-dark); color: var(--earth-mid); }
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:nth-child(even) td { background: var(--linen); }
.price-cell { text-align: center; font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--earth); font-variant-numeric: tabular-nums; }
/* Featured S-Class column: keep the cream tint, but digits stay full-contrast
   black (gold-on-cream failed WCAG AA). Emphasis carried by tint + gold header. */
.price-featured { background: rgba(196,151,59,0.10) !important; color: var(--earth) !important; font-size: 1.2rem !important; font-weight: 800 !important; }
.price-table thead th:nth-child(3) { color: var(--primary); }
.price-note { margin-top: 1rem; font-size: 0.85rem; color: var(--stone); text-align: center; line-height: 1.6; }

/* Responsive overrides */
@media (max-width: 900px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-preview-grid { grid-template-columns: 1fr; }
  .fleet-preview-image { order: -1; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links { background: var(--primary-dark); border-bottom-color: rgba(196,151,59,0.15); }
  .nav-links a { color: var(--stone-light); }
  .lang-group { border-left: none; padding-left: 0; }
  .card-grid { grid-template-columns: 1fr; }
  .routes-mini { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .tour-grid { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .included-grid { grid-template-columns: 1fr; }
  .section-brand { padding: 3.5rem 0; }
  .float-whatsapp { bottom: 1.25rem; right: 1.25rem; }
}

@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item { padding: 1.25rem 0.75rem; }
  .trust-number { font-size: 2rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
}

/* ==========================================================================
   Conversion features — quote widget, arrival band, why-us, FAQ, polish
   ========================================================================== */

/* Hero quote widget */
.quote-widget {
  display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: flex-end;
  background: rgba(13, 13, 26, 0.55);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(196, 151, 59, 0.4);
  border-radius: var(--radius-lg);
  padding: 1.25rem; margin: 2rem auto 0; max-width: 680px; text-align: left;
}
.quote-field { flex: 1 1 150px; display: flex; flex-direction: column; min-width: 0; }
.quote-field-sm { flex: 1 1 96px; }
.quote-field label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.09em;
  text-transform: uppercase; color: var(--cream); margin-bottom: 0.3rem;
}
.quote-field input, .quote-field select {
  padding: 0.6rem 0.7rem; border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: var(--white); color: var(--earth);
  font-family: var(--font-body); font-size: 0.9rem; width: 100%;
}
.quote-field input:focus, .quote-field select:focus {
  outline: 2px solid var(--primary); outline-offset: 1px; border-color: var(--primary);
}
.quote-submit { flex: 1 1 100%; justify-content: center; margin-top: 0.1rem; }
.quote-or { flex: 1 1 100%; font-size: 0.82rem; color: var(--cream-dark); text-align: center; margin-top: 0.15rem; }
.quote-or a { color: var(--primary); }
.quote-or a:hover { color: var(--cream); }

/* Airport-arrival trust band */
.arrival-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; margin-top: 1rem; }
.arrival-item { text-align: center; padding: 0 0.5rem; }
.arrival-icon {
  width: 76px; height: 76px; border-radius: 50%;
  background: var(--primary-surface); color: var(--primary);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem;
}
.arrival-item h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.arrival-item p { color: var(--earth-mid); font-size: 0.92rem; line-height: 1.65; }

/* Why-us grid */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 1rem; }
.why-item {
  text-align: center; padding: 2rem 1.25rem;
  border: 1px solid var(--cream-dark); border-radius: var(--radius-lg); background: var(--white);
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.why-item:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--primary); }
.why-icon {
  width: 62px; height: 62px; border-radius: 50%;
  background: var(--primary-surface); color: var(--primary);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1.1rem;
}
.why-item h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.why-item p { font-size: 0.88rem; color: var(--earth-mid); line-height: 1.6; }

/* FAQ accordion (native <details>) */
.faq-list { margin-top: 1rem; }
.faq-item { border-bottom: 1px solid var(--cream-dark); }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 1.15rem 0;
  font-family: var(--font-display); font-size: 1.08rem; font-weight: 600; color: var(--earth);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--primary-dark); }
.faq-item summary:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; border-radius: 3px; }
.faq-chevron {
  width: 10px; height: 10px; flex: 0 0 auto; margin-right: 0.3rem;
  border-right: 2px solid var(--primary); border-bottom: 2px solid var(--primary);
  transform: rotate(45deg); transition: transform 0.25s;
}
.faq-item[open] .faq-chevron { transform: rotate(-135deg); }
.faq-answer { padding: 0 0 1.2rem; color: var(--earth-mid); font-size: 0.95rem; line-height: 1.7; max-width: 62ch; }

/* Footer trust row */
.footer-trust {
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.5rem; align-items: center; justify-content: center;
  border-top: 1px solid var(--earth-mid); margin-top: 1.5rem; padding-top: 1.25rem;
  font-size: 0.8rem; color: var(--stone-light); text-align: center;
}
.footer-trust .pay { display: inline-flex; gap: 0.4rem; align-items: center; }
.footer-trust .pay svg { opacity: 0.85; }

/* Hero load orchestration (CSS-only, one coordinated entrance) */
@media (prefers-reduced-motion: no-preference) {
  html.js-loaded .hero-content > * { animation: heroIn 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) backwards; }
  html.js-loaded .hero-content > .hero-eyebrow { animation-delay: 0.05s; }
  html.js-loaded .hero-content > h1 { animation-delay: 0.16s; }
  html.js-loaded .hero-content > p { animation-delay: 0.30s; }
  html.js-loaded .hero-content > .quote-widget { animation-delay: 0.44s; }
}
@keyframes heroIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

/* Legal prose (privacy policy) */
.legal-prose { color: var(--earth-mid); }
.legal-prose h2 { font-size: 1.25rem; margin: 2.2rem 0 0.6rem; color: var(--earth); }
.legal-prose p { color: var(--earth-mid); margin-bottom: 0.5rem; line-height: 1.8; }
.legal-prose ul { margin: 0.5rem 0 0.5rem 1.3rem; color: var(--earth-mid); line-height: 1.8; }
.legal-prose li { margin-bottom: 0.4rem; }
.legal-prose a { color: var(--primary-dark); text-decoration: underline; }
.legal-prose a:hover { color: var(--primary); }
.legal-updated { font-size: 0.85rem; color: var(--stone); margin-bottom: 1.5rem; }

/* Skip link — off-screen until focused */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 300;
  background: var(--primary-dark); color: var(--cream);
  padding: 0.7rem 1.2rem; border-radius: 0 0 var(--radius) 0;
  font-weight: 600; font-size: 0.9rem;
}
.skip-link:focus { left: 0; }

/* Mobile hero: lighter image variant (perf — desktop hero is 346KB) */
@media (max-width: 768px) {
  /* Dezoom the wide hero on portrait phones: show the whole scene (chauffeur + car)
     instead of a hard center crop. The dark .hero base fills above/below the band. */
  .hero-bg { background-image: url('/images/hero-mobile.webp?v=9d10edfe') !important; background-size: contain; background-position: center 30%; background-repeat: no-repeat; opacity: 0.82; }
}

/* Global keyboard focus ring (consistent 2px gold) */
a:focus-visible, button:focus-visible, .btn:focus-visible,
summary:focus-visible, .lang-switch:focus-visible, input:focus-visible, select:focus-visible {
  outline: 2px solid var(--primary); outline-offset: 2px; border-radius: 3px;
}

/* Responsive — new components */
@media (max-width: 900px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .arrival-grid { grid-template-columns: 1fr; gap: 2rem; max-width: 440px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 560px) {
  .why-grid { grid-template-columns: 1fr; }
  .quote-field { flex: 1 1 100%; }
  .quote-field-sm { flex: 1 1 calc(50% - 0.4rem); }
  .quote-widget { padding: 1rem; }
}
