:root {
  --bg-void: #0b0b0d;
  --bg-black: #000000;
  --bg-panel: #151517;
  --bg-panel-2: #1c1c1e;
  --gold: #d4af37;
  --gold-dim-bg: #1a1508;
  --amber: #f59e0b;
  --amber-dark: #d97706;
  --text: #ffffff;
  --text-muted: #9a9a9f;
  --text-faint: #6b6b70;
  --border: rgba(212, 175, 55, 0.18);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", -apple-system, sans-serif;
  --radius: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg-void);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  /* clip (not hidden) keeps position:sticky on the header working while
     guaranteeing the page can never scroll sideways on phones */
  overflow-x: clip;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: var(--bg-black);
  padding: 12px 20px;
  z-index: 1000;
  font-weight: 700;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 350, "GRAD" 0, "opsz" 24;
  font-size: 22px;
  line-height: 1;
}

/* ---------- Header ---------- */
/* Reserves the header's height before /partials/header.html finishes loading, so injecting
   it doesn't shift page layout (and any #anchor scroll position) after the initial paint. */
#site-header { min-height: 71px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 11, 13, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo { display: flex; align-items: center; gap: 8px; font-family: var(--font-display); }
.logo-icon { color: var(--gold); font-size: 26px; }
.logo-mark { color: var(--gold); font-size: 1.5rem; font-weight: 700; letter-spacing: 0.02em; }
.logo-word { font-size: 0.68rem; letter-spacing: 0.22em; color: var(--text-muted); font-family: var(--font-body); font-weight: 700; }

.main-nav { display: flex; gap: 28px; }
.main-nav a {
  font-size: 0.92rem;
  color: var(--text-muted);
  font-weight: 600;
  transition: color 0.2s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus-visible { color: var(--gold); }
.main-nav a.active { color: var(--gold); }
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.header-actions { display: flex; align-items: center; gap: 14px; }

.lang-select-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 7px 10px 7px 12px;
  border-radius: 999px;
  transition: border-color 0.2s;
}
.lang-select-wrap:hover, .lang-select-wrap:focus-within { border-color: var(--gold); }
.lang-select-wrap .material-symbols-outlined { font-size: 18px; color: var(--gold); }
.lang-select {
  background: transparent;
  border: none;
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  padding: 2px 0;
}
.lang-select:focus { outline: none; }
.lang-select option { background: var(--bg-panel); color: var(--text); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-burger span { width: 22px; height: 2px; background: var(--gold); display: block; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--amber-dark));
  color: var(--bg-black);
  box-shadow: 0 8px 24px -8px rgba(212, 175, 55, 0.55);
}
.btn-gold:hover, .btn-gold:focus-visible { box-shadow: 0 10px 30px -6px rgba(212, 175, 55, 0.75); transform: translateY(-1px); }
.btn-outline {
  border-color: var(--border);
  color: var(--text);
  background: rgba(255,255,255,0.02);
}
.btn-outline:hover, .btn-outline:focus-visible { border-color: var(--gold); color: var(--gold); }
.btn-small { padding: 9px 18px; font-size: 0.82rem; }
.btn-block { width: 100%; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 90px 24px 80px;
  overflow: hidden;
  text-align: center;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
/* The branded header photo is already dark/cinematic, so it runs near-full opacity with a
   light scrim; on narrow screens it centers on the van since the left side (baked-in
   wordmark) would otherwise be a mostly-empty dark slice. */
.hero-photo { width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: 0.92; }
@media (min-width: 861px) {
  .hero-photo { object-position: left center; }
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(212,175,55,0.10) 0%, rgba(212,175,55,0) 70%),
    linear-gradient(180deg, rgba(11,11,13,0.38) 0%, rgba(11,11,13,0.72) 58%, var(--bg-void) 100%);
}
.hero-inner { position: relative; z-index: 1; max-width: 860px; margin: 0 auto; }
.eyebrow {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  font-size: 1.05rem;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 22px;
}
.hero-sub { color: var(--text-muted); font-size: 1.1rem; max-width: 620px; margin: 0 auto 40px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ---------- Booking widget ---------- */
.booking-widget {
  background: var(--bg-panel);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 26px;
  text-align: left;
  box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.65);
  max-width: 900px;
  margin: 0 auto;
}
.booking-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 18px;
}
.booking-header .material-symbols-outlined { color: var(--gold); }

.trip-toggle {
  display: inline-flex;
  background: var(--bg-void);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px;
  margin-bottom: 20px;
}
.trip-toggle-btn {
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 9px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.trip-toggle-btn.active { background: var(--gold); color: var(--bg-black); }

.booking-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field[hidden] { display: none; }
.field-wide { grid-column: span 2; }
.field label { font-size: 0.78rem; font-weight: 700; color: var(--text-muted); }
.field-input {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-void);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0 12px;
}
.field-input .material-symbols-outlined { color: var(--gold); font-size: 20px; }
.field-input input, .field-input select {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  color: var(--text);
  padding: 12px 0;
  font-family: var(--font-body);
  font-size: 0.92rem;
}
.field-input input:focus, .field-input select:focus { outline: none; }
.field-input:focus-within { border-color: var(--gold); }
.field-input select option { background: var(--bg-panel); color: var(--text); }

.booking-widget .btn { margin-top: 22px; }
.calc-btn-row { display: flex; gap: 12px; }
.calc-btn-row .btn { flex: 1; margin-top: 22px; }
@media (max-width: 560px) {
  .calc-btn-row { flex-direction: column; }
}
.calc-result { min-height: 1.4em; color: var(--gold); font-weight: 700; margin: 14px 0 0; text-align: center; }

/* ---------- Page hero (sub-pages) ---------- */
.page-hero {
  position: relative;
  padding: 76px 24px 64px;
  overflow: hidden;
  text-align: center;
}
.page-hero .hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero .hero-photo { width: 100%; height: 100%; object-fit: cover; opacity: 0.4; }
.page-hero .hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,11,13,0.6) 0%, rgba(11,11,13,0.9) 60%, var(--bg-void) 100%);
}
.page-hero-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 600;
  margin: 0 0 16px;
}
.page-hero .lead { margin: 0 auto; text-align: center; }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--bg-panel); border-bottom: 1px solid var(--border); padding: 28px 24px; }
.trust-strip-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-item .material-symbols-outlined { color: var(--gold); font-size: 28px; }
.trust-item div { display: flex; flex-direction: column; }
.trust-item strong { font-size: 0.92rem; }
.trust-item span:last-child { color: var(--text-muted); font-size: 0.8rem; }

/* ---------- Sections ---------- */
.section { padding: 96px 24px; }
.section-alt { background: var(--bg-panel); }
.section-inner { max-width: var(--container); margin: 0 auto; }
.section-inner.narrow { max-width: 760px; }
.fine-print { color: var(--text-muted); font-size: 0.85rem; }
/* Legal pages (privacybeleid / algemene voorwaarden): long-form text rhythm */
.section-inner.narrow h2 { margin: 40px 0 14px; font-size: 1.35rem; }
.section-inner.narrow h2:first-child { margin-top: 0; }
.section-inner.narrow p { color: var(--text-muted); line-height: 1.7; margin: 0 0 14px; }
.section-inner.narrow ul { color: var(--text-muted); line-height: 1.7; margin: 0 0 14px; padding-left: 22px; }
.section-inner.narrow li { margin-bottom: 6px; }

.kicker {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 12px;
}
.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 600;
  margin: 0 0 20px;
}
.lead { color: var(--text-muted); font-size: 1.08rem; max-width: 60ch; }
.lead.centered { margin: 0 auto 48px; text-align: center; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.two-col.reverse { grid-template-columns: 1fr 1fr; }

.card-grid { display: grid; gap: 24px; margin-top: 44px; }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--gold); }
.card-center { text-align: center; }
.card-icon { color: var(--gold); margin-bottom: 16px; font-size: 30px; }
.card h3 { font-family: var(--font-display); font-size: 1.25rem; margin: 0 0 10px; font-weight: 600; }
.card p { color: var(--text-muted); font-size: 0.95rem; margin: 0 0 16px; }
.card a { color: var(--gold); font-weight: 700; font-size: 0.88rem; }
.card a:hover { text-decoration: underline; }

.feature-list { list-style: none; padding: 0; margin: 24px 0; display: grid; gap: 14px; }
.feature-list li { display: flex; align-items: center; gap: 12px; color: var(--text-muted); }
.feature-list .material-symbols-outlined { color: var(--gold); font-size: 20px; flex-shrink: 0; }

.chip-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.chip {
  background: var(--gold-dim-bg);
  border: 1px solid var(--border);
  color: var(--gold);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

.value-card {
  background: var(--bg-void);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}
.value-card h3 { font-family: var(--font-display); font-size: 1.4rem; margin: 0 0 20px; }

.fleet-card {
  background: var(--bg-void);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: left;
}
#business, #executive-van, #touringcar { scroll-margin-top: 96px; }
.fleet-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--gold-dim-bg);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-bottom: 18px;
}
.fleet-card h3 { font-family: var(--font-display); font-size: 1.1rem; margin: 0 0 8px; }
.fleet-card p { color: var(--text-muted); font-size: 0.9rem; margin: 0 0 14px; }
.fleet-card a { color: var(--gold); font-weight: 700; font-size: 0.85rem; }

.duration { color: var(--amber); font-weight: 700; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; margin: -6px 0 12px; }
.center-cta { text-align: center; margin-top: 40px; }

/* ---------- Section head row + link ---------- */
.section-head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
}
.link-arrow:hover { text-decoration: underline; }
.link-arrow .material-symbols-outlined { font-size: 18px; }

/* ---------- Photo cards (Diensten / Wagenpark teasers) ---------- */
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.photo-card {
  display: block;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.photo-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.photo-card img { width: 100%; height: 190px; object-fit: cover; }
.photo-card-body { padding: 24px; }
.photo-card-body h3 { font-family: var(--font-display); font-size: 1.2rem; margin: 0 0 8px; font-weight: 600; }
.photo-card-body p { color: var(--text-muted); font-size: 0.92rem; margin: 0; }
.fleet-sub { color: var(--gold); font-size: 0.82rem; font-weight: 700; margin: -4px 0 12px !important; }
.fleet-specs { display: flex; gap: 20px; margin-top: 14px; }
.fleet-specs span { display: flex; align-items: center; gap: 6px; color: var(--text-muted); font-size: 0.88rem; font-weight: 600; }
.fleet-specs .material-symbols-outlined { color: var(--gold); font-size: 18px; }

/* ---------- Populaire Ritten ---------- */
.ride-list { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-top: 40px; }
.ride-row {
  display: grid;
  grid-template-columns: auto 2fr 1.2fr 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.ride-row:last-child { border-bottom: none; }
.ride-row:hover { background: var(--bg-panel); }
.ride-icon { color: var(--gold); }
.ride-route { font-weight: 700; }
.ride-duration { color: var(--text-muted); font-size: 0.88rem; }
.ride-price { color: var(--gold); font-weight: 700; text-align: right; }
.ride-price-label { color: var(--text-faint); font-weight: 500; font-size: 0.8rem; margin-right: 4px; }
.ride-arrow { color: var(--text-faint); }
.ride-actions { display: flex; gap: 8px; }
.ride-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s;
}
.ride-action-btn .material-symbols-outlined { font-size: 18px; }
.ride-action-btn:hover, .ride-action-btn:focus-visible { border-color: var(--gold); color: var(--gold); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--gold-dim-bg), var(--bg-black));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 24px;
  text-align: center;
}
.cta-band-inner h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin: 0 0 14px; }
.cta-band-inner p { color: var(--text-muted); max-width: 560px; margin: 0 auto 32px; }
.cta-band .hero-actions { justify-content: center; }

/* ---------- FAQ ---------- */
.faq-list { margin-top: 36px; border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 700;
  padding: 22px 4px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question::after {
  content: "+";
  color: var(--gold);
  font-size: 1.4rem;
  transition: transform 0.2s;
}
.faq-question[aria-expanded="true"]::after { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: var(--text-muted);
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 4px;
  font-size: 0.95rem;
}
.faq-item.open .faq-answer { max-height: 220px; padding: 0 4px 22px; }

/* ---------- Contact ---------- */
.contact-methods { display: grid; gap: 14px; margin-top: 32px; }
.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  transition: border-color 0.2s;
}
.contact-method:hover { border-color: var(--gold); }
.contact-method .material-symbols-outlined { color: var(--gold); font-size: 26px; }
.contact-method strong { display: block; font-size: 0.85rem; }
.contact-method span span { color: var(--text-muted); font-size: 0.88rem; }

.quote-form {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.quote-form label { font-size: 0.82rem; font-weight: 700; color: var(--text-muted); margin-top: 12px; }
.quote-form input, .quote-form textarea {
  background: var(--bg-void);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 12px 14px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  resize: vertical;
}
.quote-form input:focus, .quote-form textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}
.quote-form button { margin-top: 22px; }
.form-status { min-height: 1.4em; color: var(--gold); font-weight: 700; margin: 14px 0 0; font-size: 0.9rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-black); border-top: 1px solid var(--border); padding: 64px 24px 0; }
.footer-inner { max-width: var(--container); margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; }
.footer-logo { margin-bottom: 14px; }
.footer-brand p { color: var(--text-faint); font-size: 0.88rem; max-width: 280px; margin: 0 0 18px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a, .footer-social button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.footer-social a:hover, .footer-social button:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h3 { font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text); margin: 0 0 18px; }
.footer-nav { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a { color: var(--text-muted); font-size: 0.88rem; }
.footer-nav a:hover { color: var(--gold); }
.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-contact span, .footer-contact a { display: flex; align-items: flex-start; gap: 10px; color: var(--text-muted); font-size: 0.88rem; }
.footer-contact a:hover { color: var(--gold); }
.footer-contact .material-symbols-outlined { color: var(--gold); font-size: 19px; flex-shrink: 0; }
.footer-legal-row {
  border-top: 1px solid var(--border);
  padding: 22px 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}
.footer-legal { color: var(--text-faint); font-size: 0.8rem; margin: 0; }
.footer-legal-links { display: flex; gap: 20px; }
.footer-legal-links a { color: var(--text-faint); font-size: 0.8rem; }
.footer-legal-links a:hover { color: var(--gold); }
.footer-photo-credits { padding: 0 24px 20px; }
.footer-photo-credits p { color: var(--text-faint); font-size: 0.72rem; margin: 0; }
.footer-photo-credits a { color: var(--text-faint); text-decoration: underline; }
.footer-photo-credits a:hover { color: var(--gold); }

/* ---------- Gold shimmer accents ----------
   Placed after every other rule that sets color/background on the elements it targets
   (logo-mark, eyebrow, buttons) so it reliably wins the cascade at equal specificity. */
@keyframes shine-sweep {
  0% { transform: translateX(-160%) skewX(-20deg); }
  55%, 100% { transform: translateX(220%) skewX(-20deg); }
}
.btn-shine { position: relative; overflow: hidden; }
.btn-shine::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 35%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.65), transparent);
  transform: translateX(-160%) skewX(-20deg);
  animation: shine-sweep 3.4s ease-in-out infinite;
  animation-delay: 1.2s;
  pointer-events: none;
}

@keyframes gold-shimmer-text {
  0% { background-position: 0% 0; }
  100% { background-position: -400% 0; }
}
.shine-gold {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold) 35%, #fff6d2 48%, var(--gold) 61%, var(--gold) 100%);
  background-size: 400% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gold-shimmer-text 5s linear infinite;
}

@keyframes border-glow-pulse {
  0%, 100% { box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(212, 175, 55, 0.4); }
  50% { box-shadow: 0 30px 80px -16px rgba(212, 175, 55, 0.35), 0 0 0 1px rgba(212, 175, 55, 0.9); }
}
.glow-pulse { animation: border-glow-pulse 3.6s ease-in-out infinite; }
/* Note: prefers-reduced-motion disables all animation/transition globally, see bottom of file. */

/* ---------- Language splash overlay ---------- */
body.lang-splash-open { overflow: hidden; }
.lang-splash {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: radial-gradient(ellipse 80% 60% at 50% 20%, rgba(212,175,55,0.12) 0%, rgba(212,175,55,0) 60%), var(--bg-void);
  animation: lang-splash-fade-in 0.35s ease;
}
.lang-splash.lang-splash-closing { animation: lang-splash-fade-out 0.3s ease forwards; }
@keyframes lang-splash-fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes lang-splash-fade-out { from { opacity: 1; } to { opacity: 0; } }

.lang-splash-inner { max-width: 560px; width: 100%; text-align: center; }
.lang-splash-icon { color: var(--gold); font-size: 40px; margin-bottom: 10px; }
.lang-splash-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0 0 28px;
}
.lang-splash-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.2vw, 2rem);
  font-weight: 600;
  color: var(--text);
  margin: 0 0 32px;
}
.lang-splash-sep { color: var(--gold); margin: 0 4px; }

.lang-splash-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.lang-splash-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 12px;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.lang-splash-btn:hover, .lang-splash-btn:focus-visible {
  border-color: var(--gold);
  background: var(--bg-panel-2);
  transform: translateY(-3px);
}
.lang-splash-code {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
}
.lang-splash-name { font-size: 0.82rem; color: var(--text-muted); }

@media (max-width: 560px) {
  .lang-splash-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Floating WhatsApp button ---------- */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 200;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px -8px rgba(0, 0, 0, 0.6), 0 0 0 3px rgba(212, 175, 55, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-float:hover, .whatsapp-float:focus-visible {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 14px 34px -8px rgba(0, 0, 0, 0.65), 0 0 0 3px var(--gold);
}
@media (max-width: 560px) {
  .whatsapp-float { right: 16px; bottom: 16px; width: 52px; height: 52px; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .main-nav { display: none; }
  .nav-burger { display: flex; }
  .card-grid-4, .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .two-col, .two-col.reverse { grid-template-columns: 1fr; }
  .two-col.reverse > *:first-child { order: 2; }
  .booking-grid { grid-template-columns: repeat(2, 1fr); }
  .field-wide { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .ride-row { grid-template-columns: auto 1fr auto; }
  .ride-duration { display: none; }
}
@media (max-width: 560px) {
  .card-grid-4, .card-grid-3 { grid-template-columns: 1fr; }
  .booking-grid { grid-template-columns: 1fr; }
  .field-wide { grid-column: span 1; }
  .hero { padding: 96px 20px 64px; }
  .section { padding: 64px 20px; }
  .booking-widget { padding: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .ride-row { grid-template-columns: auto 1fr auto; }
  .ride-price { display: none; }
}

/* Compact header on phones: the CTA button doesn't fit next to the language
   selector and burger, and would otherwise push the page wider than the screen. */
@media (max-width: 640px) {
  .header-actions { gap: 10px; }
  .header-actions .btn { display: none; }
  .header-inner { padding: 12px 16px; }
}

/* Mobile/tablet hero: the branded photo becomes a full-width banner above the
   content instead of a background slice (the section is far taller than the
   2:1 photo, so cover-cropping left almost nothing visible). */
@media (max-width: 860px) {
  .hero { padding-top: calc(min(54vw, 440px) + 12px); }
  .hero-bg { height: min(54vw, 440px); }
  .hero-photo { opacity: 1; }
  .hero-scrim {
    background: linear-gradient(180deg, rgba(11,11,13,0.05) 0%, rgba(11,11,13,0.18) 55%, var(--bg-void) 100%);
  }
}

/* Mobile nav open state */
.main-nav.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg-void);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px 28px;
  gap: 18px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
