/* ============================================
   AUTOLUX — Luxury Taxi Brussels
   Design System
============================================ */

:root {
  --burgundy: #7A1E1E;
  --burgundy-dark: #5C1515;
  --burgundy-deep: #3D0E0E;
  --cream: #F8F6F3;
  --cream-warm: #F3EFEA;
  --beige: #EDE7E3;
  --beige-dark: #DDD3CB;
  --charcoal: #1A1A1A;
  --charcoal-soft: #2A2A2A;
  --ink: #0E0E0E;
  --gold: #C9A961;
  --gold-soft: #D8BE7E;
  --muted: #6B6260;
  --border: rgba(26, 26, 26, 0.08);

  --font-serif: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --shadow-sm: 0 2px 8px rgba(26, 26, 26, 0.04);
  --shadow-md: 0 8px 30px rgba(26, 26, 26, 0.08);
  --shadow-lg: 0 24px 60px rgba(26, 26, 26, 0.12);
  --shadow-burgundy: 0 16px 40px rgba(122, 30, 30, 0.25);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --max: 1280px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
}

/* ============================================
   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-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }

::selection { background: var(--burgundy); color: var(--cream); }

/* ============================================
   TYPOGRAPHY
============================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ink);
}
h1 { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 400; }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.85rem); }
h4 { font-size: 1.25rem; font-weight: 500; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 1.25rem;
  position: relative;
  padding-left: 2.25rem;
}
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 1.75rem; height: 1px;
  background: var(--burgundy);
}
.eyebrow.light { color: var(--gold); }
.eyebrow.light::before { background: var(--gold); }

.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--muted);
  max-width: 60ch;
  line-height: 1.7;
}

/* ============================================
   LAYOUT
============================================ */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section {
  padding: clamp(4rem, 9vw, 8rem) 0;
}
.section--tight { padding: clamp(3rem, 6vw, 5rem) 0; }
.section--dark {
  background: var(--charcoal);
  color: var(--cream);
}
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--cream); }
.section--burgundy {
  background: linear-gradient(135deg, var(--burgundy-deep) 0%, var(--burgundy) 100%);
  color: var(--cream);
}
.section--burgundy h1, .section--burgundy h2, .section--burgundy h3 { color: var(--cream); }

.section-head {
  max-width: 720px;
  margin: 0 auto clamp(3rem, 5vw, 4.5rem);
  text-align: center;
}
.section-head--left {
  text-align: left;
  margin-left: 0;
}

/* ============================================
   HEADER / NAV — transparent on hero, solid on scroll
============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  margin: 0;
  z-index: 100;
  /* Internal breathing space — logo never touches the viewport edge */
  padding: 0.85rem 0 0.65rem;
  /* Respect iOS notch / Dynamic Island safe area */
  padding-top: max(0.85rem, env(safe-area-inset-top));
  background: transparent;
  color: var(--cream);
  border-bottom: 1px solid transparent;
  transition:
    background 0.5s var(--ease),
    backdrop-filter 0.5s var(--ease),
    -webkit-backdrop-filter 0.5s var(--ease),
    box-shadow 0.5s var(--ease),
    border-color 0.5s var(--ease),
    padding 0.4s var(--ease);
}
/* Subtle top gradient behind the nav — improves contrast without a visible bar */
.nav::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 140%;
  background: linear-gradient(180deg, rgba(8, 8, 10, 0.45) 0%, rgba(8, 8, 10, 0.12) 60%, rgba(8, 8, 10, 0) 100%);
  pointer-events: none;
  z-index: -1;
  opacity: 1;
  transition: opacity 0.4s var(--ease);
}
.nav.scrolled::before { opacity: 0; }
/* Glassmorphism scroll state — warm cream glass, burgundy-compatible */
.nav.scrolled {
  background: rgba(245, 239, 230, 0.62);
  backdrop-filter: blur(16px) saturate(150%) brightness(1.04);
  -webkit-backdrop-filter: blur(16px) saturate(150%) brightness(1.04);
  border-bottom: 1px solid rgba(255, 240, 220, 0.25);
  box-shadow:
    0 10px 30px rgba(40, 20, 10, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  padding: 0.55rem 0 0.4rem;
  padding-top: max(0.55rem, env(safe-area-inset-top));
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* LOGO — adaptive (white on dark / black on light) */
.logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 90px;
  flex-shrink: 0;
  line-height: 0;
  transition: opacity 0.3s var(--ease);
}
.logo img {
  height: 100%;
  width: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
  transition: opacity 0.4s var(--ease), transform 0.3s var(--ease);
}
.logo .logo-dark {
  position: absolute;
  inset: 0 auto 0 0;
  opacity: 0;
  pointer-events: none;
}
.logo:hover { opacity: 0.92; }
.logo:hover img { transform: scale(1.02); }

/* Default (transparent nav over dark hero) → white logo */
.nav .logo .logo-light { opacity: 1; }
.nav .logo .logo-dark  { opacity: 0; }

/* Scrolled (cream glass nav) → black logo */
.nav.scrolled .logo { height: 56px; }
.nav.scrolled .logo .logo-light { opacity: 0; }
.nav.scrolled .logo .logo-dark  { opacity: 1; }

/* Inner pages without dark hero — show black logo immediately */
body:not(.has-dark-hero) .nav:not(.scrolled) .logo .logo-light { opacity: 0; }
body:not(.has-dark-hero) .nav:not(.scrolled) .logo .logo-dark  { opacity: 1; }
body:not(.has-dark-hero) .nav:not(.scrolled) .nav-link { color: var(--charcoal); }
body:not(.has-dark-hero) .nav:not(.scrolled) .nav-link:hover { color: var(--burgundy); }
body:not(.has-dark-hero) .nav:not(.scrolled) .nav-toggle { color: var(--charcoal); }
body:not(.has-dark-hero) .nav:not(.scrolled)::before { opacity: 0; }

/* Footer (light) → black logo statically */
.footer .logo { height: 110px; }
.footer .logo .logo-light { display: none; }
.footer .logo .logo-dark  { position: static; opacity: 1; }
.footer .logo img { filter: none !important; }

@media (max-width: 720px) {
  .logo { height: 50px; }
  .nav.scrolled .logo { height: 42px; }
  .footer .logo { height: 78px; }
  /* More breathing on mobile — keep logo away from notch / status bar */
  .nav {
    padding: 1.25rem 0 0.85rem;
    padding-top: max(1.25rem, calc(env(safe-area-inset-top) + 0.6rem));
  }
  .nav.scrolled {
    padding: 0.85rem 0 0.6rem;
    padding-top: max(0.85rem, calc(env(safe-area-inset-top) + 0.4rem));
  }
}

/* NAV LINKS */
.nav-links {
  display: flex;
  gap: 2.25rem;
  align-items: center;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(248, 246, 243, 0.8);
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.25s var(--ease);
}
.nav-link:hover { color: var(--cream); }
.nav.scrolled .nav-link { color: var(--charcoal); }
.nav.scrolled .nav-link:hover { color: var(--burgundy); }
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width 0.3s var(--ease);
}
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav.scrolled .nav-link.active { color: var(--burgundy); }

/* NAV CTA */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: var(--burgundy);
  color: var(--cream) !important;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 4px;
  transition: all 0.3s var(--ease);
  box-shadow: 0 4px 14px rgba(122, 30, 30, 0.3);
}
.nav-cta:hover {
  background: var(--burgundy-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-burgundy);
}
.nav-cta::after { display: none; }

/* TOGGLE */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  position: relative;
  color: var(--cream);
  transition: color 0.3s var(--ease);
}
.nav.scrolled .nav-toggle { color: var(--charcoal); }
.nav-toggle span {
  position: absolute;
  left: 10px; right: 10px;
  height: 1.5px;
  background: currentColor;
  transition: all 0.3s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.nav-toggle.open span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

/* ============================================
   BUTTONS
============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 1.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn--primary {
  background: var(--burgundy);
  color: var(--cream);
  box-shadow: 0 4px 20px rgba(122, 30, 30, 0.25);
}
.btn--primary:hover {
  background: var(--burgundy-dark);
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-burgundy);
}
.btn--primary:active { transform: translateY(0) scale(0.99); }

.btn--ghost {
  background: rgba(248, 246, 243, 0.06);
  color: var(--cream);
  border: 1px solid rgba(248, 246, 243, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.btn--ghost:hover {
  background: rgba(248, 246, 243, 0.14);
  border-color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
}
.btn--dark {
  background: var(--charcoal);
  color: var(--cream);
}
.btn--dark:hover { background: var(--ink); transform: translateY(-2px) scale(1.02); }

.btn--outline {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
}
.btn--outline:hover { background: var(--charcoal); color: var(--cream); transform: translateY(-2px); }

.btn--gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn--gold:hover { background: var(--gold); color: var(--ink); }

.btn svg { width: 16px; height: 16px; }

/* ============================================
   HERO — ultra-minimal centered editorial
   (no image — ambient depth via gradients + grain)
============================================ */
.hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(620px, 88vh, 780px);
  display: flex;
  align-items: center;
  isolation: isolate;
  /* Single unified warm cream — same tone across the whole hero, matches stats below */
  background: var(--cream-warm);
  color: var(--charcoal);
}
.hero::before { display: none; }
/* Background image layers — two stacked, crossfade between them */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-size: cover;
  background-position: 58% center;
  transform: scale(1.02);
  /* Subtle lift — the new image is already bright and premium */
  filter: contrast(1.04) saturate(1.05);
  will-change: opacity;
}
.hero-bg-1 {
  /* Bottom layer — always visible underneath */
  opacity: 1;
}
.hero-bg-2 {
  /* Top layer — crossfades in and out over image 1 */
  opacity: 0;
  animation: heroCrossfade 14s ease-in-out 2s infinite;
  z-index: -2;
}
@keyframes heroCrossfade {
  0%, 6%    { opacity: 0; }  /* hold on image 1 */
  20%, 50%  { opacity: 1; }  /* fade in & hold image 2 (~4.2s) */
  64%, 100% { opacity: 0; }  /* fade out & hold image 1 (~5s) */
}
@media (prefers-reduced-motion: reduce) {
  .hero-bg-2 { animation: none; }
}

/* Cinematic overlay — single layer above both images for consistency */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    /* Cinematic left→right gradient — stronger on the left for text clarity,
       softer on the right so the car + airport stay luminous and visible. */
    linear-gradient(96deg,
      rgba(0, 0, 0, 0.62)  0%,
      rgba(0, 0, 0, 0.55) 16%,
      rgba(0, 0, 0, 0.42) 34%,
      rgba(0, 0, 0, 0.3)  52%,
      rgba(0, 0, 0, 0.2)  72%,
      rgba(0, 0, 0, 0.12) 100%),
    /* Soft vertical breathing — nav legibility + footer handoff */
    linear-gradient(180deg,
      rgba(0, 0, 0, 0.38) 0%,
      rgba(0, 0, 0, 0) 22%,
      rgba(0, 0, 0, 0) 72%,
      rgba(0, 0, 0, 0.55) 100%);
}
.hero-overlay::after {
  /* Warm atmosphere lift — preserves the golden street light glow */
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 82% 70%, rgba(122, 30, 30, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse at 72% 18%, rgba(201, 169, 97, 0.1) 0%, transparent 50%);
  pointer-events: none;
}
.hero-grain { display: none; }
.hero-bg, .hero-overlay { display: none; }

.hero-inner {
  padding: clamp(4.5rem, 8vw, 7rem) 0 clamp(3rem, 5vw, 4.5rem);
  width: 100%;
  position: relative;
  z-index: 2;
  position: relative;
}
/* Immersive split — text floats left, image bleeds from center to viewport edge */
.hero-grid {
  position: relative;
  display: block;
  width: 100%;
}
.hero-main {
  position: relative;
  z-index: 3;
  max-width: 580px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

/* Eyebrow — minimal & discreet */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.35rem 0.85rem;
  background: rgba(122, 30, 30, 0.04);
  border: 1px solid rgba(122, 30, 30, 0.14);
  border-radius: 100px;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--burgundy);
  font-weight: 600;
  margin-bottom: 2.25rem;
}
.hero-eyebrow::before {
  content: "";
  width: 5px; height: 5px;
  background: var(--burgundy);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(122, 30, 30, 0.1);
}

/* Title — luxury editorial, fixed 2-line composition */
.hero-title {
  font-size: clamp(1.95rem, 4vw, 3.3rem);
  line-height: 1.06;
  letter-spacing: -0.022em;
  max-width: 28ch;
  color: var(--ink);
  margin: 0 0 1.6rem;
  font-weight: 400;
}
.hero-title br { display: block; }
.hero-title em {
  font-style: italic;
  color: var(--burgundy);
  font-weight: 400;
}

.hero-sub {
  font-size: clamp(0.98rem, 1.15vw, 1.08rem);
  line-height: 1.7;
  max-width: 50ch;
  color: var(--muted);
  margin: 0 0 2.5rem;
  text-wrap: pretty;
}
.hero-ctas {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}
/* Refined primary CTA */
.hero-ctas .btn--primary {
  padding: 1rem 1.85rem;
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  box-shadow: 0 8px 24px rgba(122, 30, 30, 0.22);
}
.hero-ctas .btn--primary:hover {
  box-shadow: 0 16px 36px rgba(122, 30, 30, 0.3);
}
/* Refined secondary CTA — elegant thin border */
.hero-ctas .btn--outline {
  padding: 1rem 1.55rem;
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  border-width: 1px;
  border-color: rgba(26, 26, 26, 0.16);
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: none;
}
.hero-ctas .btn--outline:hover {
  border-color: var(--charcoal);
  background: rgba(255, 255, 255, 0.8);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
}
.hero-ctas .btn--outline svg { width: 14px; height: 14px; }

/* Trust indicators row */
.hero-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem 1.25rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  max-width: 580px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.2;
}
.trust-icon {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  background: var(--cream);
  border: 1px solid var(--border);
  color: var(--burgundy);
  border-radius: 8px;
  flex-shrink: 0;
}
.trust-icon svg { width: 16px; height: 16px; }

/* Visual — extends well beyond hero edges so mask fades are clipped off-screen */
.hero-visual {
  position: absolute;
  top: -20%;
  bottom: -20%;
  right: calc(50% - 50vw);
  width: calc(50vw + 22%);
  z-index: 1;
  pointer-events: none;
  background: transparent;
}
.hero-visual-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: transparent;
}

.hero-visual-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 45% 50%;
  display: block;
  /* Soft left fade (where text sits) + soft vertical fade (top/bottom edges).
     Combined via intersect = seamless integration on all 4 sides. */
  -webkit-mask-image:
    linear-gradient(95deg, transparent 0%, rgba(0,0,0,0.18) 8%, rgba(0,0,0,0.55) 18%, #000 36%, #000 100%),
    linear-gradient(180deg, rgba(0,0,0,0.35) 0%, #000 16%, #000 84%, rgba(0,0,0,0.35) 100%);
  mask-image:
    linear-gradient(95deg, transparent 0%, rgba(0,0,0,0.18) 8%, rgba(0,0,0,0.55) 18%, #000 36%, #000 100%),
    linear-gradient(180deg, rgba(0,0,0,0.35) 0%, #000 16%, #000 84%, rgba(0,0,0,0.35) 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
  animation: heroFloat 11s ease-in-out infinite;
  transition: transform 1.2s var(--ease);
}
.hero:hover .hero-visual-wrap img { transform: scale(1.02); }

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-5px); }
}

@media (max-width: 960px) {
  .hero { min-height: auto; }
  .hero-main {
    max-width: 640px;
    margin: 0 auto;
    align-items: center;
    text-align: center;
  }
  .hero-title { margin-left: auto; margin-right: auto; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  /* Image back into flow, below text */
  .hero-visual {
    position: relative;
    top: auto; right: auto; bottom: auto;
    width: 100%;
    max-width: 680px;
    margin: 2.5rem auto 0;
    aspect-ratio: 16 / 11;
  }
  .hero-visual::before { inset: 12% 0 -2% 0; }
  .hero-visual-wrap img {
    object-position: 50% 50%;
    -webkit-mask-image: radial-gradient(ellipse 110% 105% at 50% 50%, #000 55%, transparent 95%);
    mask-image: radial-gradient(ellipse 110% 105% at 50% 50%, #000 55%, transparent 95%);
  }
}

@media (max-width: 720px) {
  .hero { min-height: clamp(620px, 80vh, 760px); }
}
@media (max-width: 720px) {
  .hero-trust { grid-template-columns: repeat(2, 1fr); }
}

/* Stop the deprecated dark-hero rules from interfering */
.hero-side, .hero-phone, .hero-app, .hero-badge, .hero-contact, .hero-scroll { display: none !important; }

/* Page hero (inner pages) — bright premium */
.page-hero {
  position: relative;
  padding: 11rem 0 5rem;
  background: linear-gradient(180deg, var(--cream-warm) 0%, var(--cream) 100%);
  color: var(--charcoal);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 0%, rgba(122, 30, 30, 0.06), transparent 50%),
    radial-gradient(ellipse at 85% 100%, rgba(201, 169, 97, 0.05), transparent 55%);
}
.page-hero .eyebrow { color: var(--burgundy); }
.page-hero .eyebrow::before { background: var(--burgundy); }
.page-hero h1 { color: var(--ink); max-width: 18ch; }
.page-hero .lead { color: var(--muted); margin-top: 1.25rem; }
.page-hero-inner { position: relative; z-index: 2; }

.crumbs {
  display: flex;
  gap: 0.6rem;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 2rem;
}
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--burgundy); }
.crumbs span:not([class]) { color: var(--muted); opacity: 0.5; }

/* ============================================
   GRID SYSTEMS — strict column rules
============================================ */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

@media (max-width: 960px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ============================================
   SERVICE CARDS
============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
@media (max-width: 960px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  position: relative;
  background: var(--cream);
  padding: 2.75rem 2.25rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  min-height: 420px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(122,30,30,0) 0%, rgba(122,30,30,0.03) 100%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.1);
  border-color: rgba(122, 30, 30, 0.2);
}
.service-card:hover::before { opacity: 1; }
.service-num {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  color: var(--burgundy);
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}
.service-icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: var(--beige);
  color: var(--burgundy);
  border-radius: 4px;
  margin-bottom: 2rem;
  transition: all 0.4s var(--ease);
}
.service-card:hover .service-icon {
  background: var(--burgundy);
  color: var(--cream);
  transform: rotate(-4deg) scale(1.05);
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { margin-bottom: 1rem; }
.service-card p { color: var(--muted); line-height: 1.7; margin-bottom: 2rem; flex-grow: 1; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--burgundy);
  transition: gap 0.3s var(--ease);
}
.service-link:hover { gap: 0.9rem; }
.service-link svg { width: 14px; height: 14px; transition: transform 0.3s var(--ease); }
.service-card:hover .service-link svg { transform: translateX(4px); }

/* ============================================
   GUARANTEES
============================================ */
.guarantees {
  background: var(--cream-warm);
}
.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (max-width: 960px) { .guarantees-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .guarantees-grid { grid-template-columns: 1fr; } }

.guarantee {
  text-align: left;
  padding: 2rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.guarantee:hover {
  transform: translateY(-5px);
  border-color: rgba(122, 30, 30, 0.2);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.09);
}
.guarantee-icon {
  width: 44px; height: 44px;
  color: var(--burgundy);
  margin-bottom: 1.25rem;
}
.guarantee-icon svg { width: 100%; height: 100%; }
.guarantee h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.guarantee p { font-size: 0.92rem; color: var(--muted); line-height: 1.6; }

/* ============================================
   STATS STRIP
============================================ */
.stats {
  background: var(--cream-warm);
  color: var(--ink);
  padding: 4.5rem 0;
  border-top: none;
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  text-align: center;
}
@media (max-width: 960px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; } }
@media (max-width: 520px) { .stats-grid { grid-template-columns: 1fr; gap: 2rem; } }
.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--burgundy);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================
   SPLIT — image + content
============================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.split--reverse .split-media { order: 2; }
.split-media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--charcoal);
}
.split-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.split-media:hover img { transform: scale(1.04); }
.split-media-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(14,14,14,0.7);
  backdrop-filter: blur(10px);
  color: var(--cream);
  padding: 1.1rem 1.25rem;
  border-radius: 4px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.split-media-caption svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }

/* ============================================
   CTA BLOCK
============================================ */
.cta-block {
  background: linear-gradient(135deg, var(--burgundy-deep) 0%, var(--burgundy) 100%);
  color: var(--cream);
  text-align: center;
  padding: clamp(4rem, 8vw, 6.5rem) var(--gutter);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cta-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 100%, rgba(201,169,97,0.12), transparent 50%),
    radial-gradient(ellipse at 80% 0%, rgba(248,246,243,0.06), transparent 50%);
  z-index: -1;
}
.cta-block h2 {
  color: var(--cream);
  max-width: 20ch;
  margin: 0 auto 1rem;
}
.cta-block p { color: rgba(248,246,243,0.8); max-width: 55ch; margin: 0 auto 2.5rem; }
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   SERVICES LAYOUT — sticky sidebar + anchored sections
============================================ */
.services-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: flex-start;
}
.services-sidebar {
  position: sticky;
  top: 140px;
}
.services-sidebar-title {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
  padding-left: 1.25rem;
  font-weight: 500;
}
.services-sidebar nav {
  display: flex;
  flex-direction: column;
}
.services-sidebar a {
  padding: 0.85rem 1.25rem;
  border-left: 2px solid var(--border);
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.4;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.services-sidebar a:hover {
  color: var(--charcoal);
  border-left-color: var(--burgundy);
  background: rgba(122, 30, 30, 0.03);
}
.services-sidebar a.active {
  color: var(--burgundy);
  border-left-color: var(--burgundy);
  font-weight: 500;
  background: rgba(122, 30, 30, 0.05);
}

.services-content > section[id] {
  padding: 0 0 clamp(3rem, 6vw, 5rem);
  margin-bottom: clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid var(--border);
  scroll-margin-top: 140px;
}
.services-content > section[id]:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.services-content h2 { margin-bottom: 1.5rem; }
.services-content .lead { margin-bottom: 2rem; }

@media (max-width: 960px) {
  .services-layout { grid-template-columns: 1fr; gap: 2rem; }
  .services-sidebar {
    position: sticky;
    top: 60px;
    background: var(--cream);
    margin: 0 calc(-1 * var(--gutter));
    padding: 0.75rem var(--gutter);
    border-bottom: 1px solid var(--border);
    z-index: 10;
  }
  .services-sidebar-title { display: none; }
  .services-sidebar nav {
    flex-direction: row;
    overflow-x: auto;
    gap: 0.25rem;
    scrollbar-width: none;
  }
  .services-sidebar nav::-webkit-scrollbar { display: none; }
  .services-sidebar a {
    border-left: none;
    border-bottom: 2px solid transparent;
    padding: 0.6rem 0.9rem;
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 0.88rem;
  }
  .services-sidebar a:hover,
  .services-sidebar a.active {
    background: transparent;
    border-left: none;
    border-bottom-color: var(--burgundy);
  }
}

/* ============================================
   TARIFFS
============================================ */
.tariff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (max-width: 780px) { .tariff-grid { grid-template-columns: 1fr; } }

.tariff-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.75rem 1.75rem 1.25rem;
  max-width: 820px;
  position: relative;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}
.tariff-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
  border-color: rgba(122,30,30,0.2);
}
.tariff-card--dark {
  background: linear-gradient(135deg, rgba(122, 30, 30, 0.04) 0%, var(--cream) 100%);
  color: var(--charcoal);
  border-color: rgba(122, 30, 30, 0.15);
  border-left: 3px solid var(--burgundy);
}
.tariff-card--dark h3 { color: var(--ink); }
.tariff-card--dark .tariff-row { border-color: var(--border); }
.tariff-card--dark .tariff-label { color: var(--muted); }
.tariff-card--dark .tariff-value { color: var(--burgundy); }

.tariff-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.tariff-card--dark .tariff-head { border-color: var(--border); }
.tariff-head h3 { font-size: 1.2rem; line-height: 1.25; }
.tariff-tag {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--burgundy);
  color: var(--burgundy);
  border-radius: 2px;
}
.tariff-card--dark .tariff-tag {
  border-color: var(--burgundy);
  color: var(--burgundy);
  background: rgba(122, 30, 30, 0.06);
}
.tariff-list { display: flex; flex-direction: column; gap: 0; }
.tariff-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px dashed var(--border);
}
.tariff-row:last-child { border-bottom: none; }
.tariff-label { color: var(--muted); font-size: 0.9rem; }
.tariff-value {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--burgundy);
  font-weight: 500;
  letter-spacing: -0.005em;
}

.info-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--beige);
  border-left: 3px solid var(--burgundy);
  border-radius: 2px;
  margin-top: 2rem;
  font-size: 0.9rem;
}
.info-bar svg { width: 20px; height: 20px; color: var(--burgundy); flex-shrink: 0; }

/* ============================================
   DISCOUNT CALLOUT
============================================ */
.discount-callout {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  overflow: hidden;
}
.discount-big {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 400;
  color: var(--burgundy);
  line-height: 1;
  letter-spacing: -0.03em;
}
.discount-big sup {
  font-size: 0.45em;
  vertical-align: super;
  color: var(--gold);
}
.discount-content h3 { margin-bottom: 0.75rem; }
.discount-content p { color: var(--muted); max-width: 50ch; }

/* ============================================
   PAYMENT METHODS
============================================ */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 780px) { .payment-grid { grid-template-columns: 1fr; } }

.payment {
  padding: 2rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.payment:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.08);
  border-color: rgba(122,30,30,0.2);
}
.payment-icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: var(--beige);
  color: var(--burgundy);
  border-radius: 4px;
  flex-shrink: 0;
}
.payment-icon svg { width: 22px; height: 22px; }
.payment h4 { font-family: var(--font-sans); font-size: 0.95rem; font-weight: 600; margin-bottom: 0.2rem; }
.payment p { font-size: 0.85rem; color: var(--muted); }

/* ============================================
   TIMELINE
============================================ */
.timeline {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding: 1rem 0;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--burgundy) 10%, var(--burgundy) 90%, transparent);
  transform: translateX(-50%);
}
.tl-item {
  position: relative;
  width: 50%;
  padding: 1rem 3rem;
  margin-bottom: 2rem;
}
.tl-item:nth-child(odd) {
  left: 0;
  text-align: right;
}
.tl-item:nth-child(even) {
  left: 50%;
  text-align: left;
}
.tl-dot {
  position: absolute;
  top: 2rem;
  width: 14px; height: 14px;
  background: var(--cream);
  border: 2px solid var(--burgundy);
  border-radius: 50%;
  z-index: 2;
  transition: all 0.4s var(--ease);
}
.tl-item:nth-child(odd) .tl-dot { right: -7px; }
.tl-item:nth-child(even) .tl-dot { left: -7px; }
.tl-item:hover .tl-dot { background: var(--burgundy); transform: scale(1.2); box-shadow: 0 0 0 6px rgba(122,30,30,0.1); }
.tl-year {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--burgundy);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.tl-text {
  font-size: 1rem;
  color: var(--charcoal);
  line-height: 1.5;
}

/* ============================================
   AVAILABILITY STRIP — single premium dispatch card
============================================ */
.avail-section {
  padding: clamp(1rem, 2vw, 1.75rem) 0 clamp(2.5rem, 4vw, 3.75rem);
}

.avail-strip {
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-warm) 100%);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.75rem 2.5rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  box-shadow: 0 16px 40px rgba(40, 20, 10, 0.06);
  position: relative;
  overflow: hidden;
}
.avail-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 0% 50%, rgba(122, 30, 30, 0.06) 0%, transparent 55%);
  pointer-events: none;
}

.avail-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  background: var(--burgundy);
  color: var(--cream);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.avail-icon::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(122, 30, 30, 0.25);
  animation: availPulse 2.4s ease-in-out infinite;
}
@keyframes availPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50%      { opacity: 0;   transform: scale(1.18); }
}
.avail-icon svg { width: 28px; height: 28px; }

.avail-text { position: relative; z-index: 1; }
.avail-text .label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--burgundy);
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.avail-text strong {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.1vw, 1.7rem);
  font-weight: 500;
  color: var(--ink);
  display: block;
  line-height: 1.2;
}
.avail-text p {
  font-size: 0.95rem;
  color: var(--muted);
  margin-top: 0.35rem;
  line-height: 1.55;
}

.avail-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.55rem;
  background: var(--ink);
  color: var(--cream);
  border-radius: 100px;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.avail-cta:hover {
  background: var(--burgundy);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(122, 30, 30, 0.25);
}
.avail-cta svg { width: 16px; height: 16px; }

@media (max-width: 720px) {
  .avail-strip {
    grid-template-columns: auto 1fr;
    padding: 1.4rem 1.4rem;
    gap: 1.1rem;
  }
  .avail-cta {
    grid-column: 1 / -1;
    justify-content: center;
    margin-top: 0.4rem;
  }
  .avail-icon { width: 52px; height: 52px; }
  .avail-icon svg { width: 22px; height: 22px; }
}

/* ============================================
   PRESTIGE — #1 in Europe
============================================ */
.prestige {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: center;
  max-width: 720px;
  padding: 1.6rem 2rem;
  background: linear-gradient(135deg, rgba(122, 30, 30, 0.04) 0%, var(--cream-warm) 100%);
  border: 1px solid rgba(122, 30, 30, 0.15);
  border-radius: 16px;
  margin: 2rem 0;
}
.prestige-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: var(--burgundy);
  color: var(--cream);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 6px rgba(122, 30, 30, 0.08);
}
.prestige-mark svg { width: 22px; height: 22px; }
.prestige-text .label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--burgundy);
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.prestige-text strong {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.25;
}

@media (max-width: 560px) {
  .prestige { padding: 1.25rem; gap: 1rem; }
  .prestige-mark { width: 44px; height: 44px; }
  .prestige-mark svg { width: 18px; height: 18px; }
  .prestige-text strong { font-size: 1.1rem; }
}

/* ============================================
   FAQ — premium accordion
============================================ */
.faq {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
  border-top: 1px solid var(--border);
}
.faq-list {
  max-width: 860px;
  margin: 0 auto;
}
.faq-item {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 0.85rem;
  overflow: hidden;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.faq-item:hover {
  border-color: rgba(122, 30, 30, 0.18);
}
.faq-item.open {
  border-color: rgba(122, 30, 30, 0.22);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.05);
}

.faq-q {
  width: 100%;
  padding: 1.4rem 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 500;
  color: var(--ink);
  text-align: left;
  background: transparent;
  border: none;
  transition: color 0.25s var(--ease), padding 0.25s var(--ease);
}
.faq-q:hover { color: var(--burgundy); }
.faq-item.open .faq-q { color: var(--burgundy); }

.faq-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  position: relative;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--cream-warm);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--charcoal);
  left: 50%;
  top: 50%;
  transition: transform 0.35s var(--ease), background 0.3s var(--ease);
}
.faq-icon::before { width: 11px; height: 1.5px; transform: translate(-50%, -50%); }
.faq-icon::after  { width: 1.5px; height: 11px; transform: translate(-50%, -50%); }
.faq-item.open .faq-icon {
  background: var(--burgundy);
  border-color: var(--burgundy);
}
.faq-item.open .faq-icon::before,
.faq-item.open .faq-icon::after { background: var(--cream); }
.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }

/* Animated reveal — grid-template-rows trick (no jank) */
.faq-a-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s var(--ease);
}
.faq-item.open .faq-a-wrap { grid-template-rows: 1fr; }
.faq-a-wrap > div {
  overflow: hidden;
  min-height: 0;
}
.faq-a {
  padding: 0 1.5rem 1.6rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
}
.faq-a p { margin-bottom: 0.75rem; }
.faq-a p:last-child { margin-bottom: 0; }
.faq-a a {
  color: var(--burgundy);
  border-bottom: 1px solid currentColor;
  transition: opacity 0.25s var(--ease);
}
.faq-a a:hover { opacity: 0.75; }
.faq-a ul {
  list-style: none;
  padding: 0;
  margin: 0.6rem 0;
}
.faq-a ul li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.45rem;
}
.faq-a ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  background: var(--burgundy);
  border-radius: 50%;
}
.faq-a strong { color: var(--ink); font-weight: 600; }

@media (max-width: 640px) {
  .faq-q { padding: 1.15rem 1.15rem; gap: 1rem; }
  .faq-a { padding: 0 1.15rem 1.25rem; }
}

/* ============================================
   TEAM / ÉQUIPE
============================================ */
.team-block { margin-top: 3rem; }
.team-block + .team-block { margin-top: 4rem; }
.team-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--burgundy);
  font-weight: 600;
  margin-bottom: 1.25rem;
  position: relative;
  padding-left: 2.25rem;
  display: inline-block;
}
.team-label::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 1.75rem; height: 1px;
  background: var(--burgundy);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 960px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .team-grid { grid-template-columns: 1fr; } }

.team-grid--single {
  grid-template-columns: minmax(0, 480px);
}

.team-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem 1.75rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.08);
  border-color: rgba(122, 30, 30, 0.2);
}
.team-card .name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.4rem;
  line-height: 1.25;
}
.team-card .role {
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.team-card .initials {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(122, 30, 30, 0.08), rgba(122, 30, 30, 0.04));
  color: var(--burgundy);
  border: 1px solid rgba(122, 30, 30, 0.15);
  border-radius: 50%;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
}

/* ============================================
   NEWS / ACTUALITÉS
============================================ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
@media (max-width: 960px) { .news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .news-grid { grid-template-columns: 1fr; } }

.news-card {
  background: var(--cream);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.1);
  border-color: rgba(122, 30, 30, 0.2);
}
.news-body { flex: 1; display: flex; flex-direction: column; }
.news-card p { flex-grow: 1; }
.news-read {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--burgundy);
  transition: gap 0.3s var(--ease);
}
.news-read:hover { gap: 0.9rem; }
.news-read svg { width: 14px; height: 14px; transition: transform 0.3s var(--ease); }
.news-card:hover .news-read svg { transform: translateX(4px); }
.news-media {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--beige);
}
.news-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.news-card:hover .news-media img { transform: scale(1.08); }
.news-body { padding: 1.75rem; }
.news-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.news-meta .tag { color: var(--burgundy); }
.news-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  transition: color 0.25s var(--ease);
}
.news-card:hover h3 { color: var(--burgundy); }
.news-card p { color: var(--muted); font-size: 0.95rem; line-height: 1.7; }

/* ============================================
   JOBS / BENEFITS
============================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 960px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .benefits-grid { grid-template-columns: 1fr; } }

.benefit {
  padding: 2rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.benefit:hover {
  transform: translateY(-5px);
  border-color: rgba(122,30,30,0.2);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.09);
}
.benefit-check {
  width: 32px; height: 32px;
  background: var(--burgundy);
  color: var(--cream);
  display: grid; place-items: center;
  border-radius: 50%;
  flex-shrink: 0;
}
.benefit-check svg { width: 14px; height: 14px; }
.benefit p { color: var(--charcoal); font-weight: 500; }

.profile-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 620px;
  margin: 0 auto;
}
.profile-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.profile-item:last-child { border-bottom: none; }
.profile-num {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--burgundy);
  min-width: 48px;
}
.profile-item p { font-size: 1.05rem; }

/* ============================================
   CONTACT
============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-item {
  display: flex;
  gap: 1.25rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.contact-item:last-child { border-bottom: none; padding-bottom: 0; }
.contact-icon {
  width: 44px; height: 44px;
  background: var(--beige);
  color: var(--burgundy);
  display: grid; place-items: center;
  border-radius: 4px;
  flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-item .label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}
.contact-item .value {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--ink);
  display: block;
  margin-bottom: 0.2rem;
  transition: color 0.25s var(--ease);
}
a.contact-link:hover .value { color: var(--burgundy); }

.contact-form {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 2.5rem;
  border-radius: var(--radius-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1.25rem; position: relative; }
.field label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 0.9rem 1rem;
  background: var(--cream-warm);
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.95rem;
  transition: all 0.3s var(--ease);
  font-family: var(--font-sans);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  background: var(--cream);
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(122, 30, 30, 0.1);
}
.field textarea { resize: vertical; min-height: 120px; }

.map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16/9;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; filter: grayscale(20%) contrast(1.05); }

/* ============================================
   RESERVATION — choice cards, forms, reassurance
============================================ */
.choice-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  max-width: 980px;
  margin: 0 auto;
}
.choice-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.25rem 2.25rem;
  text-align: left;
  cursor: pointer;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
  overflow: hidden;
  width: 100%;
  font: inherit;
  color: inherit;
}
.choice-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(122, 30, 30, 0.04) 0%, rgba(201, 169, 97, 0.02) 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.choice-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--burgundy);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s var(--ease);
}
.choice-card:hover {
  transform: translateY(-6px);
  border-color: rgba(122, 30, 30, 0.25);
  box-shadow: var(--shadow-lg);
}
.choice-card:hover::before { opacity: 1; }
.choice-card:hover::after { transform: scaleX(1); }
.choice-card.selected {
  border-color: var(--burgundy);
  background: var(--cream);
  box-shadow: var(--shadow-burgundy);
}
.choice-card.selected::after { transform: scaleX(1); }
.choice-card.selected::before { opacity: 1; }
.choice-card-num {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 1.5rem;
}
.choice-card-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--beige);
  color: var(--burgundy);
  display: grid; place-items: center;
  margin-bottom: 1.75rem;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), transform 0.4s var(--ease);
}
.choice-card-icon svg { width: 28px; height: 28px; stroke-width: 1.6; }
.choice-card:hover .choice-card-icon,
.choice-card.selected .choice-card-icon {
  background: var(--burgundy);
  color: var(--cream);
  transform: scale(1.05);
}
.choice-card h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.2vw, 2rem);
  margin-bottom: 0.75rem;
  color: var(--ink);
}
.choice-card p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  flex-grow: 1;
}
.choice-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--burgundy);
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  transition: gap 0.3s var(--ease), color 0.3s var(--ease);
}
.choice-card-cta svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.choice-card:hover .choice-card-cta { gap: 0.9rem; }
.choice-card:hover .choice-card-cta svg { transform: translateX(4px); }
.choice-card.selected .choice-card-cta::after {
  content: "Sélectionné";
  margin-left: auto;
  font-size: 0.7rem;
  color: var(--burgundy);
  letter-spacing: 0.15em;
}

/* Reservation form wrapper — appears below cards */
.reservation-form-wrap {
  max-width: 880px;
  margin: 4rem auto 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
  pointer-events: none;
  display: none;
}
.reservation-form-wrap.active {
  display: block;
  pointer-events: auto;
}
.reservation-form-wrap.in {
  opacity: 1;
  transform: translateY(0);
}

.reservation-form {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3.25rem);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.reservation-form::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--burgundy) 0%, var(--burgundy-dark) 50%, var(--gold) 100%);
}
.reservation-form-head {
  margin-bottom: 2.25rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--border);
}
.reservation-form-head .eyebrow { margin-bottom: 0.85rem; }
.reservation-form-head h2 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  margin-bottom: 0.85rem;
}
.reservation-form-head p {
  color: var(--muted);
  font-size: 1rem;
  max-width: 56ch;
}

.form-section {
  margin-bottom: 2rem;
}
.form-section:last-of-type { margin-bottom: 1rem; }
.form-section-title {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 1.25rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.form-section-title svg {
  width: 14px; height: 14px;
  stroke-width: 2;
}
.field--full { grid-column: 1 / -1; }
.field textarea { min-height: 110px; }
.field input::placeholder,
.field textarea::placeholder { color: rgba(107, 98, 96, 0.55); }

/* Required asterisk */
.field label .req {
  color: var(--burgundy);
  margin-left: 0.2rem;
}

/* Helper text */
.field-help {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Conditional fields — accueil personnalisé */
.conditional-block {
  display: none;
  margin-top: 1.5rem;
  padding: 1.75rem;
  background: var(--cream-warm);
  border: 1px dashed rgba(122, 30, 30, 0.25);
  border-radius: var(--radius-md);
  animation: condFade 0.45s var(--ease-out);
}
.conditional-block.active { display: block; }
.conditional-block .form-section-title {
  margin-top: 0;
  border-bottom-color: rgba(122, 30, 30, 0.15);
}
@keyframes condFade {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Submit area */
.form-submit {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}
.form-submit .btn {
  width: 100%;
  justify-content: center;
  padding: 1.1rem 2rem;
  font-size: 0.95rem;
}
.form-disclaimer {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Success state */
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.form-success::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--burgundy) 0%, var(--gold) 100%);
}
.form-success.active { display: block; animation: successFade 0.6s var(--ease-out); }
.form-success-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--beige);
  color: var(--burgundy);
  display: grid; place-items: center;
  margin: 0 auto 1.5rem;
}
.form-success-icon svg { width: 32px; height: 32px; stroke-width: 1.8; }
.form-success h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}
.form-success p {
  color: var(--muted);
  max-width: 48ch;
  margin: 0 auto;
  line-height: 1.7;
}
.form-success-back {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--burgundy);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--burgundy);
  transition: gap 0.3s var(--ease);
}
.form-success-back:hover { gap: 0.9rem; }
@keyframes successFade {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Reassurance grid (next to / under forms) */
.reassurance {
  max-width: 980px;
  margin: 3rem auto 0;
}
.reassurance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.reassurance-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.25rem 0.5rem;
}
.reassurance-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--beige);
  color: var(--burgundy);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.reassurance-icon svg { width: 16px; height: 16px; stroke-width: 2; }
.reassurance-item strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 0.2rem;
}
.reassurance-item span {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.4;
}

/* Devis CTA inside reservation page */
.devis-promo {
  max-width: 980px;
  margin: 3rem auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 2.5rem;
  background: linear-gradient(135deg, var(--cream-warm) 0%, var(--beige) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.devis-promo-text { flex: 1; }
.devis-promo-text .eyebrow { margin-bottom: 0.5rem; }
.devis-promo-text h3 {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  margin-bottom: 0.4rem;
}
.devis-promo-text p {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 50ch;
}
.devis-promo .btn { flex-shrink: 0; }

/* Choose-step hero spacing */
.reservation-section {
  padding-top: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
}
.reservation-section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(2.5rem, 4vw, 3.5rem);
}
.reservation-section-head .eyebrow { margin-left: auto; margin-right: auto; }
.reservation-section-head h2 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  margin-bottom: 0.85rem;
}
.reservation-section-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

@media (max-width: 860px) {
  .choice-cards { grid-template-columns: 1fr; }
  .reassurance-grid { grid-template-columns: repeat(2, 1fr); }
  .devis-promo { flex-direction: column; text-align: center; padding: 2rem 1.5rem; gap: 1.5rem; }
  .devis-promo-text { text-align: center; }
  .devis-promo-text p { margin-left: auto; margin-right: auto; }
}
@media (max-width: 520px) {
  .reassurance-grid { grid-template-columns: 1fr; }
  .reservation-form { padding: 1.75rem 1.25rem; }
  .choice-card { padding: 2rem 1.5rem 1.75rem; }
}

/* ============================================
   FOOTER
============================================ */
/* FOOTER — bright luxury — light premium */
.footer {
  background: var(--cream);
  color: var(--charcoal);
  padding: 5rem 0 2rem;
  position: relative;
  border-top: 1px solid var(--border);
}
.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(122, 30, 30, 0.4), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.25rem;
  align-items: start;
}
.footer-grid > div { padding-top: 1.5rem; }
.footer-grid > div:first-child { padding-top: 0; }
.footer .logo { color: var(--ink); margin-bottom: 1.25rem; }
.footer-desc { color: var(--muted); font-size: 0.92rem; line-height: 1.7; max-width: 32ch; margin-bottom: 1.5rem; }
.footer h5 {
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links a {
  font-size: 0.92rem;
  color: var(--muted);
  transition: color 0.25s var(--ease);
}
.footer-links a:hover { color: var(--burgundy); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--muted);
}
.footer-bottom a:hover { color: var(--burgundy); }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--muted);
  transition: all 0.3s var(--ease);
}
.footer-social a:hover {
  background: var(--burgundy);
  border-color: var(--burgundy);
  color: var(--cream);
  transform: translateY(-2px);
}
.footer-social svg { width: 16px; height: 16px; }

/* ============================================
   APP SECTION — major home block
============================================ */
.app-section {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
  overflow: hidden;
}
.app-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
}
.app-content .eyebrow { margin-bottom: 1.5rem; }
.app-content h2 { margin-bottom: 1.25rem; max-width: 18ch; }
.app-content .lead { margin-bottom: 2.25rem; }

.app-bullets {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 2.75rem;
}
.app-bullet {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 1rem;
  color: var(--charcoal);
}
.app-bullet::before {
  content: "";
  width: 24px; height: 24px;
  flex-shrink: 0;
  background: var(--burgundy);
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / 14px no-repeat;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / 14px no-repeat;
  background-color: var(--burgundy);
  border-radius: 50%;
  position: relative;
}
.app-bullet span::before { content: ""; }

/* App store badges */
.app-badges {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}
.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 1.25rem;
  background: var(--ink);
  color: var(--cream);
  border-radius: 10px;
  min-width: 172px;
  height: 58px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}
.app-badge:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
  background: var(--charcoal);
}
.app-badge svg { flex-shrink: 0; width: 26px; height: 26px; }
.app-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.app-badge-text small {
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  opacity: 0.75;
}
.app-badge-text strong {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* Phone mockup — pure CSS/SVG, high-DPI safe */
.phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem 0;
}
.phone-wrap::before {
  content: "";
  position: absolute;
  width: 110%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(122, 30, 30, 0.1) 0%, transparent 65%);
  top: 20%;
  filter: blur(40px);
  z-index: 0;
}
.phone {
  position: relative;
  width: 280px;
  max-width: 78vw;
  aspect-ratio: 280 / 570;
  background: var(--ink);
  border-radius: 44px;
  padding: 10px;
  box-shadow:
    0 0 0 2px #333,
    0 40px 80px rgba(14, 14, 14, 0.3),
    0 20px 40px rgba(14, 14, 14, 0.2),
    inset 0 0 0 1px rgba(255,255,255,0.06);
  z-index: 1;
  transform: rotate(-3deg);
  transition: transform 0.6s var(--ease);
}
.phone:hover { transform: rotate(-1deg) translateY(-6px); }
.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, var(--cream) 0%, var(--beige) 100%);
  border-radius: 34px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 22px;
  background: var(--ink);
  border-radius: 100px;
  z-index: 5;
}
.phone-status {
  padding: 12px 22px 8px;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.phone-status .icons {
  display: flex; gap: 4px; align-items: center;
}
.phone-status .icons span {
  display: inline-block;
  width: 14px; height: 8px;
  background: var(--ink);
  border-radius: 2px;
}
.phone-header {
  padding: 1.25rem 1.25rem 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.phone-header-logo {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--ink);
}
.phone-header-logo .mark {
  width: 22px; height: 22px;
  background: var(--burgundy);
  color: var(--cream);
  border-radius: 4px;
  display: grid; place-items: center;
  font-size: 0.7rem;
  font-weight: 500;
}
.phone-avatar {
  width: 28px; height: 28px;
  background: var(--beige-dark);
  border-radius: 50%;
}
.phone-map {
  flex: 1;
  margin: 0.5rem 1rem;
  background:
    linear-gradient(135deg, #e8ddd3 0%, #d8cdc3 100%);
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  min-height: 180px;
}
/* map roads */
.phone-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 28%, rgba(248,246,243,0.9) 28%, rgba(248,246,243,0.9) 32%, transparent 32%),
    linear-gradient(180deg, transparent 55%, rgba(248,246,243,0.9) 55%, rgba(248,246,243,0.9) 58%, transparent 58%),
    linear-gradient(45deg, transparent 70%, rgba(248,246,243,0.7) 70%, rgba(248,246,243,0.7) 72%, transparent 72%);
}
.phone-pin {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px; height: 24px;
  background: var(--burgundy);
  border-radius: 50% 50% 50% 0;
  transform: translate(-50%, -100%) rotate(-45deg);
  box-shadow: 0 4px 12px rgba(122,30,30,0.5);
  z-index: 2;
}
.phone-pin::after {
  content: "";
  position: absolute;
  top: 6px; left: 6px;
  width: 12px; height: 12px;
  background: var(--cream);
  border-radius: 50%;
}
.phone-car {
  position: absolute;
  top: 62%;
  left: 28%;
  width: 26px; height: 26px;
  background: var(--ink);
  color: var(--gold);
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 2;
}
.phone-car svg { width: 14px; height: 14px; }
.phone-route {
  position: absolute;
  top: 48%; left: 28%;
  width: 30%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--burgundy) 0 6px, transparent 6px 10px);
  transform: rotate(35deg);
  transform-origin: left center;
  z-index: 1;
}
.phone-card {
  margin: 0.75rem 1rem 1rem;
  background: var(--cream);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.phone-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.phone-card-head .eta {
  color: var(--burgundy);
  font-weight: 600;
}
.phone-card-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--ink);
  font-weight: 500;
}
.phone-card-driver {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(26,26,26,0.08);
}
.phone-card-driver .av {
  width: 26px; height: 26px;
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
  border-radius: 50%;
}
.phone-card-driver .nm {
  font-size: 0.72rem;
  color: var(--ink);
  flex: 1;
}
.phone-card-driver .nm strong { display: block; font-weight: 600; font-size: 0.78rem; }
.phone-card-driver .nm span { color: var(--muted); font-size: 0.68rem; }
.phone-card-driver .plate {
  background: var(--beige);
  color: var(--ink);
  font-size: 0.65rem;
  padding: 3px 6px;
  border-radius: 3px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.phone-cta {
  margin: 0 1rem 1rem;
  height: 40px;
  background: var(--burgundy);
  color: var(--cream);
  border-radius: 100px;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  box-shadow: 0 6px 16px rgba(122,30,30,0.3);
}

@media (max-width: 960px) {
  .app-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .phone-wrap { order: -1; }
}

/* ============================================
   APP MINI REMINDER — small inline strip
============================================ */
.app-mini {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.75rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  flex-wrap: wrap;
  max-width: 820px;
  margin: 2rem auto 0;
}
.app-mini-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  background: var(--burgundy);
  color: var(--cream);
  border-radius: 9px;
  display: grid;
  place-items: center;
}
.app-mini-icon svg { width: 20px; height: 20px; }
.app-mini-text { flex: 1; min-width: 200px; }
.app-mini-text strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--ink);
  font-weight: 500;
}
.app-mini-text span {
  font-size: 0.88rem;
  color: var(--muted);
}
.app-mini-badges {
  display: flex;
  gap: 0.6rem;
}
.app-mini .app-badge {
  min-width: 130px;
  height: 44px;
  padding: 0.5rem 0.9rem;
}
.app-mini .app-badge svg { width: 20px; height: 20px; }
.app-mini .app-badge-text small { font-size: 0.55rem; }
.app-mini .app-badge-text strong { font-size: 0.82rem; }

@media (max-width: 640px) {
  .app-mini { padding: 1.25rem; }
  .app-mini-badges { width: 100%; justify-content: flex-start; }
}

/* ============================================
   APP BANNER — mobile sticky top, dismissable
============================================ */
.app-banner {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 105;
  background: var(--cream);
  color: var(--ink);
  padding: 0.6rem 1rem;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}
body.app-banner-open .app-banner { display: flex; }
body.app-banner-open .nav { top: 44px; }
body.app-banner-open { padding-top: 44px; }

.app-banner-icon {
  width: 30px; height: 30px;
  background: var(--burgundy);
  color: var(--cream);
  border-radius: 7px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.app-banner-icon svg { width: 16px; height: 16px; }
.app-banner-text {
  flex: 1;
  line-height: 1.25;
}
.app-banner-text strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
}
.app-banner-text span {
  display: block;
  font-size: 0.7rem;
  color: var(--muted);
}
.app-banner-action {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--burgundy);
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(122, 30, 30, 0.3);
  border-radius: 100px;
  white-space: nowrap;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.app-banner-action:hover { background: var(--burgundy); color: var(--cream); }
.app-banner-close {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  color: var(--muted);
  flex-shrink: 0;
}
.app-banner-close:hover { color: var(--ink); }
.app-banner-close svg { width: 14px; height: 14px; }

@media (min-width: 721px) {
  body.app-banner-open .app-banner { display: none; }
  body.app-banner-open .nav { top: 0; }
  body.app-banner-open { padding-top: 0; }
}

/* ============================================
   FOOTER APP BLOCK
============================================ */
.footer-app {
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem 2.5rem;
  margin-bottom: 3.5rem;
  background: linear-gradient(135deg, rgba(122, 30, 30, 0.06) 0%, var(--cream-warm) 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
}
.footer-app-text h4 {
  font-family: var(--font-serif);
  color: var(--ink);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.footer-app-text p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 62ch;
}
.footer-app-badges {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}
.footer-app .app-badge {
  background: var(--ink);
  color: var(--cream);
  min-width: 160px;
  height: 54px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}
.footer-app .app-badge:hover {
  background: var(--charcoal-soft);
  color: var(--cream);
}

@media (max-width: 720px) {
  .footer-app {
    grid-template-columns: 1fr;
    padding: 1.75rem;
    gap: 1.25rem;
    text-align: left;
  }
  .footer-app-badges { flex-wrap: wrap; }
  .footer-app .app-badge { min-width: 150px; height: 50px; flex: 1; }
}

/* ============================================
   FLOATING WHATSAPP
============================================ */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 95;
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 0;
  background: #25D366;
  border-radius: 100px;
  color: #FFFFFF;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35), 0 2px 8px rgba(0, 0, 0, 0.12);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s var(--ease), gap 0.35s var(--ease), padding 0.35s var(--ease);
  overflow: hidden;
  white-space: nowrap;
}
.wa-float-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  position: relative;
}
.wa-float-icon svg {
  width: 26px;
  height: 26px;
}
.wa-float-icon::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.45);
  animation: wa-pulse 2.6s var(--ease) infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(0.8); opacity: 0.6; }
  70%  { transform: scale(1.3); opacity: 0; }
  100% { transform: scale(1.3); opacity: 0; }
}
.wa-float-label {
  max-width: 0;
  opacity: 0;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: max-width 0.45s var(--ease), opacity 0.3s var(--ease), padding 0.35s var(--ease);
  padding: 0;
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.04);
  background: #1EBE5C;
  box-shadow: 0 20px 45px rgba(37, 211, 102, 0.5), 0 4px 12px rgba(0, 0, 0, 0.15);
  gap: 0.1rem;
  padding-right: 1.5rem;
}
.wa-float:hover .wa-float-label {
  max-width: 220px;
  opacity: 1;
}

@media (max-width: 720px) {
  .wa-float {
    right: 16px;
    bottom: 88px;
  }
  .wa-float-icon { width: 52px; height: 52px; }
  .wa-float-icon svg { width: 22px; height: 22px; }
  .wa-float-icon::after { display: none; }
  .wa-float-label { display: none; }
  .wa-float:hover { padding-right: 0; }
}

/* ============================================
   STICKY MOBILE CTA
============================================ */
.sticky-call {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 90;
  display: none;
}
.sticky-call a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1rem 1.5rem;
  background: var(--burgundy);
  color: var(--cream);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  border-radius: 100px;
  box-shadow: 0 10px 30px rgba(122, 30, 30, 0.4);
}
.sticky-call svg { width: 18px; height: 18px; }

/* ============================================
   UTILITIES & ANIMATIONS
============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 0.45s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 0.55s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 960px) {
  .split { grid-template-columns: 1fr; }
  .split--reverse .split-media { order: 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .discount-callout { grid-template-columns: 1fr; text-align: left; gap: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }

  .timeline::before { left: 18px; }
  .tl-item { width: 100%; left: 0 !important; padding: 0.5rem 0 0.5rem 3rem; text-align: left !important; margin-bottom: 1.5rem; }
  .tl-item .tl-dot { left: 11px !important; right: auto !important; top: 1.5rem; }
}

@media (max-width: 720px) {
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh; height: 100svh;
    width: min(85%, 360px);
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2rem;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.45s var(--ease);
    box-shadow: -30px 0 60px rgba(0,0,0,0.1);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links .nav-link { font-size: 1.1rem; color: var(--charcoal) !important; }
  .nav-toggle { display: block; z-index: 110; }
  .nav.on-hero:not(.scrolled) .nav-toggle { color: var(--cream); }
  .nav-cta { margin-top: 1rem; }

  .hero { min-height: auto; }
  .hero-inner { padding: 5rem 0 2.5rem; }
  .hero-ctas .btn { flex: 1; min-width: 140px; }

  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; text-align: left; }

  .sticky-call { display: block; }
  body { padding-bottom: 5.5rem; }

  .page-hero { padding: 8rem 0 4rem; }

  h1 { font-size: 2.4rem; }
  .hero-title { font-size: 2.6rem; }
}
