/* ============================================
   Traslado Disneyland Paris — Luxury chauffeur landing
   Palette: navy + warm gold + cream
   ============================================ */

:root {
  --navy: #0a1628;
  --navy-2: #122139;
  --navy-3: #1c3055;
  --gold: #c9a961;
  --gold-2: #b08f49;
  --gold-soft: #e8d9a8;
  --cream: #faf7f2;
  --cream-2: #f1ebe0;
  --ink: #0e1525;
  --muted: #6b7280;
  --line: rgba(10, 22, 40, 0.1);
  --line-light: rgba(255, 255, 255, 0.12);
  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --shadow-sm: 0 1px 2px rgba(10, 22, 40, 0.04), 0 1px 3px rgba(10, 22, 40, 0.06);
  --shadow-md: 0 6px 24px -8px rgba(10, 22, 40, 0.18);
  --shadow-lg: 0 24px 60px -20px rgba(10, 22, 40, 0.35);
  --radius: 4px;
  --radius-lg: 8px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; letter-spacing: -0.01em; line-height: 1.15; margin: 0; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Eyebrow */
.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow-dark { color: var(--gold-2); }
.eyebrow-light { color: var(--gold); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all .25s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 8px 24px -8px rgba(201, 169, 97, 0.5);
}
.btn-primary:hover {
  background: var(--gold-2);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -8px rgba(201, 169, 97, 0.6);
}
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-2); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.3);
}
.btn-ghost:hover { background: rgba(255,255,255,.08); border-color: var(--gold); color: var(--gold); }
.btn-ghost-light {
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,.25);
}
.btn-ghost-light:hover { background: rgba(255,255,255,.1); }
.btn-outline {
  background: transparent; color: var(--navy);
  border: 1px solid var(--navy);
}
.btn-block { display: flex; width: 100%; }
.btn-sm { padding: 10px 18px; font-size: 12px; }

/* ============== HEADER ============== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 22, 40, 0.72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .3s ease;
}
.site-header.scrolled {
  background: rgba(10, 22, 40, 0.95);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}

.brand { display: flex; align-items: center; gap: 12px; color: #fff; }
.brand-mark {
  display: grid; place-items: center;
  width: 38px; height: 38px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  border-radius: 2px;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
}
.brand-tagline {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-top: 3px;
}

.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,.82);
  position: relative;
  padding: 6px 0;
}
.main-nav a:hover { color: var(--gold); }
.main-nav a.nav-cta {
  padding: 10px 20px;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: var(--radius);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.1em;
}
.main-nav a.nav-cta:hover { background: var(--gold); color: var(--navy); }

.header-actions { display: flex; align-items: center; gap: 16px; }
.lang-switcher { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,.5); font-size: 12px; }
.lang-switcher button {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,.5);
  padding: 4px 4px;
  transition: color .2s;
}
.lang-switcher button.active, .lang-switcher button:hover { color: var(--gold); }

.menu-toggle { display: none; flex-direction: column; gap: 4px; padding: 6px; }
.menu-toggle span { width: 22px; height: 1.5px; background: #fff; transition: all .3s; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* ============== HERO ============== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  padding-top: 76px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(201, 169, 97, 0.18), transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(28, 48, 85, 0.6), transparent 50%),
    linear-gradient(135deg, #0a1628 0%, #122139 50%, #0a1628 100%);
  background-image:
    linear-gradient(135deg, rgba(10,22,40,.78) 0%, rgba(10,22,40,.55) 50%, rgba(10,22,40,.85) 100%),
    url("images/hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, transparent 70%, var(--navy) 100%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 60px;
  padding-bottom: 80px;
  max-width: 880px;
}
.hero-title {
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0 0 24px;
}
.hero-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 1px;
  background: var(--gold);
  margin: 32px 0 0;
}
.hero-sub {
  font-size: clamp(16px, 1.5vw, 19px);
  color: rgba(255,255,255,.82);
  max-width: 640px;
  margin: 0 0 40px;
  line-height: 1.55;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 14px; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 8px 28px;
  font-size: 13px;
  color: rgba(255,255,255,.7);
  letter-spacing: 0.04em;
}
.hero-trust li { display: flex; align-items: center; gap: 10px; }
.dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}


/* ============== SECTIONS ============== */
.section { padding: 110px 0; position: relative; }
.section-light { background: #fff; color: var(--ink); }
.section-cream { background: var(--cream); color: var(--ink); }
.section-dark { background: var(--navy); color: rgba(255,255,255,.92); }
.section-dark h2 { color: #fff; }

.section-head { max-width: 720px; margin: 0 0 64px; }
.section-head h2 {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 16px;
}
.section-head p {
  font-size: 17px;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}
.section-dark .section-head p { color: rgba(255,255,255,.65); }

/* ============== BENEFITS ============== */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.benefit {
  padding: 36px 28px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: all .3s ease;
}
.benefit:hover {
  transform: translateY(-4px);
  border-color: var(--gold-soft);
  box-shadow: var(--shadow-md);
}
.benefit-icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  color: var(--gold-2);
  margin-bottom: 22px;
}
.benefit-icon svg { width: 36px; height: 36px; }
.benefit h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.benefit p {
  color: var(--muted);
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

/* ============== FLEET ============== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.fleet-card {
  background: var(--navy-2);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .3s;
}
.fleet-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.fleet-image {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  background-color: var(--navy-3);
  position: relative;
}
.fleet-image::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,22,40,.4));
}
.fleet-tesla {
  background-image:
    linear-gradient(135deg, rgba(10,22,40,.2), rgba(10,22,40,.5)),
    url("images/tesla.jpg");
}
.fleet-van {
  background-image:
    linear-gradient(135deg, rgba(10,22,40,.2), rgba(10,22,40,.5)),
    url("images/van.jpg");
}
.fleet-byd {
  background-image:
    linear-gradient(135deg, rgba(10,22,40,.2), rgba(10,22,40,.5)),
    url("images/byd.jpg");
}
.fleet-staria {
  background-image:
    linear-gradient(135deg, rgba(10,22,40,.2), rgba(10,22,40,.5)),
    url("images/hyundai.jpg");
}
.fleet-body { padding: 32px 32px 36px; }
.fleet-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.fleet-body h3 {
  font-size: 30px;
  color: #fff;
  margin-bottom: 18px;
}
.fleet-specs {
  display: flex; flex-wrap: wrap; gap: 24px;
  padding: 18px 0;
  margin: 0 0 18px;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.fleet-specs li { font-size: 13px; color: rgba(255,255,255,.65); }
.fleet-specs strong { color: var(--gold); font-weight: 600; margin-right: 6px; font-family: var(--serif); font-size: 18px; }
.fleet-body p { color: rgba(255,255,255,.72); margin: 0; }

/* ============== PRICING ============== */
.pricing-sub {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  color: var(--navy);
  margin: 44px 0 14px;
}
.pricing-sub:first-of-type { margin-top: 28px; }
.pricing-table-wrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  box-shadow: var(--shadow-sm);
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
}
.pricing-table th, .pricing-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  white-space: nowrap;
}
.pricing-table thead th {
  background: var(--navy);
  color: #fff;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 18px;
}
.pricing-table th + th,
.pricing-table td + td {
  text-align: right;
  font-family: var(--serif);
  font-size: 17px;
  color: var(--navy);
  font-weight: 500;
}
.pricing-table thead th + th {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--gold);
  font-weight: 600;
}
.pricing-table thead th + th span { color: rgba(255,255,255,.55); margin-right: 4px; font-weight: 400; }
.pricing-table tbody tr:hover { background: var(--cream); }
.pricing-table tbody tr:last-child td { border-bottom: 0; }
.pricing-table-2col td + td { font-family: var(--sans); font-size: 14px; color: var(--ink); font-weight: 400; }
.pricing-table-2col td + td + td { font-family: var(--serif); font-size: 17px; color: var(--navy); font-weight: 500; }
.route-sub {
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
}

.pricing-notes {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-top: 40px;
}
@media (max-width: 1000px) { .pricing-notes { grid-template-columns: repeat(2, 1fr); } }
.note {
  padding: 24px;
  border-left: 2px solid var(--gold);
  background: var(--cream);
}
.note h4 {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 8px;
}
.note p { margin: 0; color: var(--ink); font-size: 14px; line-height: 1.55; }

/* ============== EXCURSIONS ============== */
.excursions { gap: 22px; }
.excursion-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.excursion-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.excursion-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--navy);
  font-weight: 500;
  margin: 0 0 8px;
}
.excursion-desc {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 16px;
  line-height: 1.55;
}
.excursion-prices {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  display: grid;
  gap: 6px;
}
.excursion-prices li {
  font-size: 14px;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(10,22,40,.08);
}
.excursion-prices li:last-child { border-bottom: 0; }
.excursion-prices strong {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--navy);
  white-space: nowrap;
}
.excursion-note {
  font-size: 12px;
  color: var(--muted);
  margin: auto 0 0;
  font-style: italic;
}
.exc-note {
  text-align: center;
  margin: 40px auto 0;
  color: var(--muted);
  font-size: 14px;
  max-width: 640px;
  line-height: 1.6;
}

/* ============== ABOUT ============== */
.about {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}
.hero-reply {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 38px;
  padding: 8px 16px;
  background: rgba(201, 169, 97, 0.12);
  border: 1px solid rgba(201, 169, 97, 0.28);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold-soft);
  letter-spacing: 0.03em;
}
.hero-reply svg { color: var(--gold); flex-shrink: 0; }

.about-figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-image {
  aspect-ratio: 4 / 5;
  background-image:
    linear-gradient(135deg, rgba(10,22,40,.15), rgba(10,22,40,.4)),
    url("images/about.jpg");
  background-size: cover;
  background-position: center;
  background-color: var(--navy-3);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about-caption {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(14,21,37,.65);
}
.about-image::before {
  content: "";
  position: absolute;
  top: -16px; left: -16px;
  right: 16px; bottom: 16px;
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.about-text h2 {
  font-size: clamp(30px, 3.4vw, 44px);
  margin-bottom: 22px;
}
.about-text p {
  color: var(--muted);
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.7;
}
.about-credentials {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 12px;
}
.about-credentials li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px;
}
.check {
  display: grid; place-items: center;
  width: 22px; height: 22px;
  background: var(--gold-soft);
  color: var(--gold-2);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ============== INCLUDED ============== */
.grid-6 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.included-item {
  display: flex; align-items: center; gap: 16px;
  padding: 22px 24px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  background: rgba(255,255,255,.02);
  transition: all .25s;
}
.included-item:hover {
  border-color: var(--gold);
  background: rgba(201, 169, 97, 0.05);
}
.included-item .ic {
  width: 36px; height: 36px;
  background: var(--gold);
  flex-shrink: 0;
  position: relative;
  border-radius: 2px;
  display: grid; place-items: center;
}
.included-item .ic::after {
  content: "✓";
  color: var(--navy);
  font-weight: 700;
  font-size: 18px;
}
.included-item span { font-size: 15px; }

/* ============== TESTIMONIALS ============== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial {
  padding: 36px 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: all .3s;
  position: relative;
}
.testimonial:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.testimonial::before {
  content: "“";
  position: absolute;
  top: -24px; left: 24px;
  font-family: var(--serif);
  font-size: 96px;
  line-height: 1;
  color: var(--gold);
}
.stars { color: var(--gold); letter-spacing: 4px; margin-bottom: 16px; font-size: 16px; }
.testimonial blockquote {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.45;
  color: var(--ink);
}
.testimonial footer { font-size: 13px; padding-top: 16px; border-top: 1px solid var(--line); }
.testimonial footer strong { display: block; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.testimonial footer span { color: var(--muted); }

/* ============== FAQ ============== */
.faq-container { max-width: 880px; }
.faq { display: flex; flex-direction: column; gap: 0; }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  transition: all .2s;
}
.faq details[open] { padding-bottom: 26px; }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--navy);
  padding-right: 40px;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 300;
  color: var(--gold);
  transition: transform .3s;
}
.faq details[open] summary::after {
  content: "−";
  transform: translateY(-50%) rotate(180deg);
}
.faq summary:hover { color: var(--gold-2); }
.faq details p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  max-width: 720px;
}

/* ============== CONTACT ============== */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 {
  font-size: clamp(32px, 3.6vw, 48px);
  margin-bottom: 18px;
}
.contact-info > p {
  color: rgba(255,255,255,.7);
  font-size: 17px;
  margin: 0 0 36px;
  line-height: 1.55;
}
.contact-list {
  display: flex; flex-direction: column; gap: 18px;
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.contact-list li { display: grid; grid-template-columns: 110px 1fr; gap: 16px; align-items: baseline; }
.contact-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact-link {
  font-family: var(--serif);
  font-size: 20px;
  color: #fff;
  transition: color .2s;
}
.contact-link:hover { color: var(--gold); }
.contact-list span:not(.contact-label) { color: rgba(255,255,255,.85); }

/* Booking form */
.booking-form {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.1);
  padding: 40px;
  border-radius: var(--radius-lg);
}
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.booking-form h3 {
  font-size: 28px;
  color: #fff;
  margin-bottom: 6px;
}
.form-sub { color: rgba(255,255,255,.6); margin: 0 0 28px; font-size: 14px; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 18px;
  margin-bottom: 28px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field-full { grid-column: 1 / -1; }
.field span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(10,22,40,.5);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  color: #fff;
  font-family: var(--sans);
  font-size: 15px;
  transition: all .2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(10,22,40,.7);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23c9a961' stroke-width='1.5' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.field-checkbox {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,.75);
  line-height: 1.5;
}
.field-checkbox input { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--gold); flex-shrink: 0; }
.form-status {
  margin: 14px 0 0;
  font-size: 13px;
  min-height: 18px;
}
.form-status.ok { color: var(--gold); }
.form-status.err { color: #ff8a8a; }

/* ============== FOOTER ============== */
.site-footer {
  background: #06101f;
  color: rgba(255,255,255,.7);
  padding: 72px 0 24px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.brand-footer { color: #fff; margin-bottom: 18px; }
.footer-tag { margin: 0; line-height: 1.6; color: rgba(255,255,255,.6); max-width: 320px; }
.site-footer h4 {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.site-footer ul { display: flex; flex-direction: column; gap: 10px; }
.site-footer a { color: rgba(255,255,255,.65); }
.site-footer a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
  font-size: 12px;
  color: rgba(255,255,255,.4);
}

/* ============== FLOATING WHATSAPP ============== */
.wa-chat {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.floating-wa {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 8px;
  background: #fff;
  color: var(--navy);
  border: none;
  border-radius: 999px;
  box-shadow: 0 8px 28px rgba(10,22,40,.22);
  font-family: inherit;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}
.floating-wa:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(10,22,40,.3); }
.floating-wa-label { font-size: 14px; font-weight: 600; white-space: nowrap; }
.floating-wa-icon { color: #25D366; flex-shrink: 0; }

.wa-avatar { position: relative; width: 40px; height: 40px; flex-shrink: 0; }
.wa-avatar-img {
  display: block;
  width: 100%; height: 100%;
  border-radius: 50%;
  overflow: hidden;
}
.wa-avatar-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.75);
  transform-origin: center top;
}
.wa-dot {
  position: absolute;
  bottom: 0; right: 0;
  width: 11px; height: 11px;
  background: #25D366;
  border: 2px solid #fff;
  border-radius: 50%;
}
.wa-dot::after {
  content: "";
  position: absolute; inset: -2px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: waPulse 2s ease-out infinite;
}
@keyframes waPulse {
  0% { transform: scale(.55); opacity: .85; }
  100% { transform: scale(1.9); opacity: 0; }
}

.wa-pop {
  position: relative;
  width: 286px;
  padding: 16px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 14px 40px rgba(10,22,40,.28);
  animation: waPopIn .3s ease-out;
}
.wa-pop[hidden] { display: none; }
@keyframes waPopIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.wa-pop-close {
  position: absolute;
  top: 6px; right: 8px;
  width: 26px; height: 26px;
  border: none;
  background: transparent;
  color: rgba(14,21,37,.4);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.wa-pop-close:hover { color: var(--navy); }
.wa-pop-head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.wa-pop-id { display: flex; flex-direction: column; line-height: 1.3; }
.wa-pop-id strong { font-size: 14px; color: var(--navy); }
.wa-pop-status { font-size: 12px; font-weight: 600; color: #1a8a4f; }
.wa-pop-msg {
  margin: 0 0 12px;
  padding: 10px 14px;
  background: var(--cream-2);
  border-radius: 4px 14px 14px 14px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--navy);
}
.wa-pop-form { display: flex; align-items: center; gap: 8px; }
.wa-pop-input {
  flex: 1;
  min-width: 0;
  padding: 9px 14px;
  border: 1px solid rgba(14,21,37,.15);
  border-radius: 999px;
  font-family: inherit;
  font-size: 13px;
  color: var(--navy);
}
.wa-pop-input:focus { outline: none; border-color: #25D366; }
.wa-pop-send {
  flex-shrink: 0;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background .2s;
}
.wa-pop-send:hover { background: #1da851; }

@media (max-width: 600px) {
  .wa-chat { bottom: 16px; right: 16px; }
  .wa-pop { width: 264px; }
}

/* ============== COOKIE BANNER ============== */
.cookie {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 95;
  background: var(--navy);
  border-top: 1px solid var(--gold);
  color: #fff;
  padding: 18px 0;
  transform: translateY(0);
  transition: transform .3s;
}
.cookie[hidden] { display: none; }
.cookie-inner {
  display: flex; gap: 24px; align-items: center; justify-content: space-between;
}
.cookie p { margin: 0; font-size: 13px; color: rgba(255,255,255,.85); max-width: 720px; }
.cookie-more { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; margin-left: 6px; white-space: nowrap; }
.cookie-more:hover { color: var(--gold-soft); }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ============== RESPONSIVE ============== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-6 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about, .contact { grid-template-columns: 1fr; gap: 48px; }
  .about-image { max-width: 480px; aspect-ratio: 5/4; }
  .pricing-notes { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .section-head { margin-bottom: 44px; }
  .main-nav {
    position: fixed;
    top: 76px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--navy);
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    transform: translateY(-120%);
    transition: transform .3s;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.06); font-size: 15px; }
  .main-nav a.nav-cta { margin-top: 12px; text-align: center; border-bottom: 1px solid var(--gold); }
  .menu-toggle { display: flex; }
  .brand-tagline { display: none; }
  .grid-4, .grid-3, .grid-2, .grid-6 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .cookie-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; }
  .pricing-table th, .pricing-table td { padding: 14px 16px; font-size: 14px; }
  .pricing-table th:nth-child(2), .pricing-table td:nth-child(2),
  .pricing-table th:nth-child(3), .pricing-table td:nth-child(3) { font-size: 17px; }
  .hero-content { padding-top: 40px; padding-bottom: 60px; }
  .booking-form { padding: 28px 22px; }
  .contact-list li { grid-template-columns: 1fr; gap: 4px; }
}

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

/* ===========================
   Reviews carousel + lightbox
   =========================== */
.reviews-carousel-wrap { position: relative; }
.reviews-carousel {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 6px 4px 18px;
  -webkit-overflow-scrolling: touch;
}
.reviews-carousel::-webkit-scrollbar { display: none; }
.review-card {
  flex: 0 0 300px;
  aspect-ratio: 1 / 1;
  scroll-snap-align: start;
  background: var(--cream-2);
  border: 1px solid rgba(14,21,37,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: zoom-in;
  padding: 0;
  position: relative;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.review-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10,22,40,0.12);
  border-color: var(--gold);
}
.review-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.reviews-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(14,21,37,0.12);
  box-shadow: 0 4px 12px rgba(10,22,40,0.12);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  color: var(--navy);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s, border-color .2s;
}
.reviews-nav:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.reviews-nav-prev { left: -22px; }
.reviews-nav-next { right: -22px; }

@media (max-width: 720px) {
  .review-card { flex-basis: 78vw; max-width: 320px; }
  .reviews-nav { display: none; }
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,22,40,0.94);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  cursor: zoom-out;
}
.lightbox[hidden] { display: none; }
.lightbox-img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 70px rgba(0,0,0,0.55);
  cursor: default;
}
.lightbox-close,
.lightbox-nav {
  position: fixed;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background .2s;
}
.lightbox-close:hover,
.lightbox-nav:hover { background: rgba(255,255,255,0.2); }
.lightbox-close { top: 20px; right: 20px; }
.lightbox-nav-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-nav-next { right: 20px; top: 50%; transform: translateY(-50%); }

@media (max-width: 600px) {
  .lightbox-nav { width: 40px; height: 40px; font-size: 24px; }
  .lightbox-nav-prev { left: 8px; }
  .lightbox-nav-next { right: 8px; }
}

/* ===========================
   Legal pages (mentions légales, confidentialité, cookies)
   =========================== */
.legal-page { background: var(--cream); color: var(--ink); min-height: 100vh; display: flex; flex-direction: column; }

.legal-header { background: var(--navy); padding: 16px 0; }
.legal-header .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.legal-header .brand { color: #fff; text-decoration: none; }
.legal-header .brand-name { color: #fff; }
.legal-back { color: rgba(255,255,255,.7); text-decoration: none; font-size: 14px; white-space: nowrap; }
.legal-back:hover { color: var(--gold); }

.legal-content { flex: 1; max-width: 760px; width: 100%; margin: 0 auto; padding: 56px 24px 80px; line-height: 1.7; }
.legal-content h1 { font-size: 38px; margin: 0 0 8px; color: var(--navy); }
.legal-content .legal-meta { color: rgba(14,21,37,.55); font-size: 13px; margin: 0 0 36px; }
.legal-content h2 { font-size: 22px; margin: 36px 0 12px; color: var(--navy); }
.legal-content h3 { font-size: 17px; margin: 24px 0 8px; color: var(--navy); font-weight: 600; font-family: var(--sans, 'Inter', sans-serif); }
.legal-content p, .legal-content li { font-size: 15px; color: rgba(14,21,37,.85); }
.legal-content p { margin: 0 0 14px; }
.legal-content ul { margin: 12px 0 16px; padding-left: 22px; }
.legal-content ul li { margin-bottom: 6px; }
.legal-content ul ul { margin-top: 6px; }
.legal-content a { color: var(--gold-2); text-decoration: underline; text-underline-offset: 2px; }
.legal-content a:hover { color: var(--navy); }
.legal-content strong { color: var(--navy); }
.legal-content code { background: rgba(14,21,37,.06); padding: 2px 6px; border-radius: 3px; font-size: 13px; }

.legal-content table { width: 100%; border-collapse: collapse; margin: 16px 0 24px; font-size: 14px; }
.legal-content table th, .legal-content table td { padding: 10px 12px; text-align: left; vertical-align: top; border-bottom: 1px solid rgba(14,21,37,.1); }
.legal-content table th { font-weight: 600; background: rgba(14,21,37,.05); color: var(--navy); }

.legal-content .placeholder {
  display: inline-block;
  background: #fff4c2;
  color: #6b5300;
  padding: 1px 8px;
  border-radius: 3px;
  font-size: 13px;
  font-style: italic;
  font-weight: 500;
}

.legal-footer { background: var(--navy); color: rgba(255,255,255,.55); padding: 22px 0; font-size: 13px; }
.legal-footer .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.legal-footer p { margin: 0; }
.legal-footer a { color: rgba(255,255,255,.7); text-decoration: none; }
.legal-footer a:hover { color: var(--gold); }
.legal-footer .sep { margin: 0 8px; color: rgba(255,255,255,.3); }

@media (max-width: 600px) {
  .legal-header .container { flex-direction: row; }
  .legal-header .brand-tagline { display: none; }
  .legal-content { padding: 32px 18px 60px; }
  .legal-content h1 { font-size: 30px; }
  .legal-content h2 { font-size: 19px; }
  .legal-footer .container { flex-direction: column; text-align: center; }
}