/* ═══════════════════════════════════════════════════════════════
   Voyages Pour Nous – Maquette 3 – Styles V1
   Base: maquette aesthetics · Brand update · New components
   ═══════════════════════════════════════════════════════════════ */

:root {
  --primary: #3FB9D8;
  --primary-strong: #0A6F8A;
  --navy: #0C3D52;
  --accent: #D96932;
  --accent-strong: #C45A28;
  --text: #0C3D52;
  --muted: #5B6B7A;
  --bg-soft: #F4FAFC;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(12, 61, 82, 0.09);
  --shadow-sm: 0 4px 14px rgba(12, 61, 82, 0.07);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

body.with-mobile-bar {
  padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

/* ── Typography ───────────────────────────────────────────────── */
h1, h2, h3, h4 { line-height: 1.2; margin: 0; }

h1 { font-size: clamp(2rem, 5vw, 3.6rem); margin-bottom: 16px; }

h1, h2 { color: var(--navy); }

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary-strong);
  margin: 0 0 8px;
}

/* ── Header / Nav ─────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid #dce9f0;
  backdrop-filter: blur(10px);
}

.nav {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand img {
  height: 72px;
  width: auto;
  max-height: 72px;
  object-fit: contain;
  display: block;
}

.menu {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
  font-size: 0.9rem;
}

.menu > a,
.nav-item > .nav-sub-toggle {
  color: var(--navy);
  padding: 8px 12px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.menu > a:hover,
.menu > a.active {
  color: var(--primary-strong);
  background: var(--bg-soft);
}

.menu > a.active { font-weight: 700; }

/* Dropdown nav items */
.nav-item {
  position: relative;
}

.nav-sub-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-sub-toggle:hover { color: var(--primary-strong); background: var(--bg-soft); }

.nav-sub-toggle svg {
  width: 14px; height: 14px;
  transition: transform 0.25s;
  flex-shrink: 0;
}

.nav-item--has-sub:hover .nav-sub-toggle svg {
  transform: rotate(180deg);
}

.nav-sub {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border: 1px solid #dce9f0;
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(12, 61, 82, 0.14);
  min-width: 220px;
  padding: 8px 0;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 200;
}

/* Pont invisible : évite la fermeture au survol (trou de 8px sous le trigger) */
.nav-sub::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}

/* Desktop: hover only — never keep open because a child page is active */
.nav-item--has-sub:hover .nav-sub {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* After clicking a sublink, keep panel closed despite lingering :hover */
.nav-item--has-sub.is-closed .nav-sub {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translateY(-8px) !important;
}

.nav-item--has-sub.is-closed .nav-sub-toggle svg {
  transform: none;
}

.nav-item--has-sub.is-current > .nav-sub-toggle {
  color: var(--primary-strong);
  font-weight: 700;
}

.nav-sub li a {
  display: block;
  padding: 10px 18px;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
}

.nav-sub li a:hover {
  background: var(--bg-soft);
  color: var(--primary-strong);
}

/* ── Mobile nav toggle ────────────────────────────────────────── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid #dce9f0;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(12, 61, 82, 0.45);
}

body.nav-lock { overflow: hidden; }

.menu .nav-cta-mobile { display: none; }

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
  border: none;
  border-radius: 999px;
  padding: 13px 24px;
  font-size: 0.92rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 20px rgba(217, 105, 50, 0.35);
}

.btn-primary:hover { background: var(--accent-strong); }

.btn-secondary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 20px rgba(63, 185, 216, 0.3);
}

.btn-secondary:hover { background: var(--primary-strong); }

.btn-outline {
  background: rgba(255, 255, 255, 0.18);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  color: #fff;
}

.btn-outline:hover { background: rgba(255, 255, 255, 0.28); }

.btn-ghost {
  background: transparent;
  color: var(--primary-strong);
  border: 1px solid #c8dde8;
}

.btn-ghost:hover { background: var(--bg-soft); border-color: var(--primary); }

.btn-sm { padding: 10px 18px; font-size: 0.83rem; }

.btn.full { width: 100%; min-height: 48px; }

.btn-wa {
  background: #25D366;
  color: #fff;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
}

.btn-wa:hover { background: #1fb855; }

.text-link { color: var(--primary-strong); font-weight: 600; }
.text-link:hover { text-decoration: underline; }

/* ── Sections ─────────────────────────────────────────────────── */
.section { padding: 80px 0; }
.section-soft { background: var(--bg-soft); }
.section-navy { background: var(--navy); color: #fff; }

.section-head {
  margin-bottom: 32px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.section-head h2 { font-size: clamp(1.6rem, 4vw, 2.3rem); }

/* ── Hero – photo full-bleed ──────────────────────────────────── */
.hero--photo {
  min-height: 78vh;
  background-size: cover;
  background-position: center;
  color: #fff;
  display: flex;
  align-items: center;
  position: relative;
}

.hero--photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(12, 61, 82, 0.78) 0%, rgba(10, 111, 138, 0.45) 60%, rgba(12, 61, 82, 0.2) 100%);
  pointer-events: none;
}

.hero--photo .container { position: relative; z-index: 1; }

.hero-content {
  padding: 80px 0;
  max-width: 720px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 8px;
  opacity: 0.88;
}

.hero-text {
  font-size: 1.12rem;
  max-width: 64ch;
  margin-bottom: 28px;
  opacity: 0.92;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ── Trust badges ─────────────────────────────────────────────── */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  padding: 32px 0;
  background: var(--white);
  border-bottom: 1px solid #e4eef4;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-soft);
  border: 1px solid #d4e8f0;
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}

.trust-badge svg, .trust-badge .tb-icon {
  width: 20px; height: 20px;
  color: var(--primary-strong);
  flex-shrink: 0;
}

/* ── Intent grid ──────────────────────────────────────────────── */
.intent-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.intent-card {
  background: #fff;
  border: 1.5px solid #d8eaf2;
  border-radius: var(--radius);
  padding: 22px 16px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  color: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.intent-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(63, 185, 216, 0.18);
  transform: translateY(-3px);
}

.intent-card .ic-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--primary-strong);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.intent-card .ic-label {
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.3;
}

/* ── Category grid ────────────────────────────────────────────── */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.category-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.category-card:hover img { transform: scale(1.05); }

.category-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(12, 61, 82, 0.82) 0%, rgba(12, 61, 82, 0.1) 55%, transparent 100%);
}

.category-card-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  padding: 20px;
  color: #fff;
}

.category-card-title h3 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.category-card-title p {
  font-size: 0.82rem;
  opacity: 0.85;
  margin: 0;
}

/* ── Offer card rich ──────────────────────────────────────────── */
.offer-card-rich {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  grid-template-columns: 280px 1fr;
  transition: box-shadow 0.2s, transform 0.2s;
  margin-bottom: 16px;
}

.offer-card-rich:hover {
  box-shadow: 0 16px 40px rgba(12, 61, 82, 0.14);
  transform: translateY(-2px);
}

.offer-card-rich img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
}

.offer-card-rich-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.offer-meta-list {
  list-style: none;
  margin: 8px 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
}

.offer-meta-list li {
  font-size: 0.83rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.offer-meta-list li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

/* ── Why grid ─────────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.why-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid #d8eaf2;
  padding: 24px;
}

.why-card .wc-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
}

/* ── Steps 3 ──────────────────────────────────────────────────── */
.steps-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

.steps-3::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(50% / 3);
  right: calc(50% / 3);
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 0;
}

.step-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 6px 16px rgba(63, 185, 216, 0.3);
}

.step-item h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.step-item p { font-size: 0.88rem; color: var(--muted); margin: 0; }

/* ── FAQ accordion ────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 8px; }

.faq-list details {
  background: #fff;
  border: 1px solid #d8eaf2;
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-list summary {
  padding: 18px 22px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  user-select: none;
  transition: background 0.15s;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  flex-shrink: 0;
  margin-left: 12px;
  transition: transform 0.25s;
}

.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details[open] summary { background: var(--bg-soft); }

.faq-list details[open] summary + * {
  padding: 0 22px 18px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ── Mobile bar (fixed bottom) ────────────────────────────────── */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  background: #fff;
  border-top: 1px solid #d8eaf2;
  box-shadow: 0 -4px 20px rgba(12, 61, 82, 0.1);
  min-height: 72px;
  padding-bottom: env(safe-area-inset-bottom, 0px);
  grid-template-columns: repeat(3, 1fr);
}

.mobile-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 10px;
  border-right: 1px solid #e8edf4;
  transition: background 0.15s;
}

.mobile-bar-item:last-child { border-right: none; }
.mobile-bar-item:hover, .mobile-bar-item:active { background: var(--bg-soft); }

.mobile-bar-item svg { width: 22px; height: 22px; }

.mobile-bar-item.wa { color: #25D366; }
.mobile-bar-item.devis { color: var(--accent); }

/* ── Badges ───────────────────────────────────────────────────── */
.badge {
  display: inline-block;
  width: fit-content;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  background: var(--primary);
  border-radius: 999px;
  padding: 5px 10px;
  font-weight: 700;
}

.badge-promo { background: var(--accent); }
.badge-new { background: var(--primary-strong); }
.badge-sold { background: #6b7280; }

/* ── Price ────────────────────────────────────────────────────── */
.price-wrap { display: flex; align-items: baseline; gap: 10px; margin: 6px 0; }

.price {
  color: var(--accent-strong);
  font-weight: 800;
  font-size: 1.6rem;
}

.old-price { color: #9aa3af; text-decoration: line-through; font-size: 1rem; }
.price-note { font-size: 0.8rem; color: var(--muted); font-weight: 500; }

/* ── Offer tags ───────────────────────────────────────────────── */
.offer-tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 8px 0; }

.tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: #e6f5fa;
  color: var(--primary-strong);
  border-radius: 999px;
  padding: 4px 10px;
  font-weight: 700;
}

/* ── Page hero (interior pages) ───────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #e2f4fa, #f4fcff);
  padding: 52px 0 44px;
  border-bottom: 1px solid #d4eaf4;
}

.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin: 8px 0 12px; }
.page-hero p { max-width: 64ch; color: var(--muted); margin: 0; }

.breadcrumb { font-size: 0.82rem; color: var(--muted); margin-bottom: 8px; }
.breadcrumb a { color: var(--primary-strong); }

/* ── Cards grid ───────────────────────────────────────────────── */
.cards-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.card-body { padding: 18px; }
.card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.card p { margin: 0; color: var(--muted); }

.destination img { aspect-ratio: 16/11; object-fit: cover; }

/* ── Offer cards (catalog list) ───────────────────────────────── */
.offer-card {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 18px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 14px;
  padding: 14px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.offer-card:hover {
  box-shadow: 0 16px 40px rgba(12, 61, 82, 0.12);
  transform: translateY(-2px);
}

.offer-card img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  object-fit: cover;
  border-radius: 10px;
}

.offer-card-body h3 { margin: 0 0 8px; font-size: 1.1rem; }
.offer-card-body h3 a:hover { color: var(--primary-strong); }

.offer-card-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  min-width: 160px;
}

.availability { font-size: 0.8rem; font-weight: 600; color: #16a34a; }
.availability.limited { color: var(--accent-strong); }

/* ── Offer detail ─────────────────────────────────────────────── */
.offer-detail-hero {
  position: relative;
  min-height: 420px;
  background-size: cover;
  background-position: center;
}

.offer-detail-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 61, 82, 0.12), rgba(12, 61, 82, 0.72));
}

.offer-detail-hero .container {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 48px 0 56px;
}

.offer-detail-hero .breadcrumb a { color: #b8e0f0; }
.offer-detail-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin: 8px 0 12px; color: #fff; }

.offer-detail-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
  padding: 40px 0 80px;
  align-items: start;
}

.offer-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 10px;
  margin-bottom: 24px;
}

.offer-gallery img { border-radius: 12px; width: 100%; height: 100%; object-fit: cover; min-height: 220px; }
.offer-gallery-side { display: grid; gap: 10px; }

.offer-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.meta-item { background: var(--bg-soft); border-radius: 12px; padding: 14px; }
.meta-item span { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); margin-bottom: 4px; }
.meta-item strong { font-size: 0.93rem; }

.offer-content h2 { font-size: 1.3rem; margin: 24px 0 10px; }
.offer-content p, .offer-content li { color: var(--muted); }
.offer-content ul { padding-left: 20px; }

.offer-sidebar {
  position: sticky;
  top: 90px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.offer-sidebar .price { font-size: 1.9rem; }
.sidebar-actions { display: flex; flex-direction: column; gap: 8px; }
.sidebar-actions .btn { width: 100%; }
.sidebar-note { font-size: 0.8rem; color: var(--muted); margin: 0; padding-top: 8px; border-top: 1px solid #e8edf2; }

/* Include / non-include grids */
.include-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 16px 0;
}

.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  padding: 7px 0;
  border-bottom: 1px solid #f0f4f7;
  font-size: 0.88rem;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.check-list li::before {
  content: '✓';
  color: #16a34a;
  font-weight: 700;
  flex-shrink: 0;
}

.check-list.no li::before { content: '✗'; color: var(--accent); }
.check-list li:last-child { border-bottom: none; }

.confirm-box {
  background: linear-gradient(135deg, #e8f8f0, #f0faff);
  border: 1.5px solid #a8e0c8;
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  display: none;
}

.confirm-box.visible { display: block; }
.confirm-box .confirm-ref { font-size: 1.6rem; font-weight: 800; color: var(--navy); }

/* Thank-you page (layout=confirm) */
.vpn-confirm {
  position: relative;
  padding: 56px 0 72px;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(63, 185, 216, 0.22), transparent 60%),
    linear-gradient(180deg, var(--bg-soft) 0%, #fff 70%);
  overflow: hidden;
}

.vpn-confirm__inner {
  max-width: 640px;
  margin: 0 auto;
}

.confirm-box.vpn-confirm__box.is-page {
  display: block;
  padding: clamp(28px, 5vw, 44px) clamp(20px, 4vw, 40px);
  box-shadow: var(--shadow);
  border-color: rgba(63, 185, 216, 0.35);
  background: linear-gradient(160deg, #ffffff 0%, #f0fafc 55%, #e8f8f0 100%);
}

.vpn-confirm__check {
  width: 88px;
  height: 88px;
  margin: 0 auto 20px;
}

.vpn-confirm__check-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.vpn-confirm__ring {
  fill: none;
  stroke: var(--primary);
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-dasharray: 201;
  stroke-dashoffset: 201;
  transform-origin: center;
}

.vpn-confirm__tick {
  fill: none;
  stroke: var(--primary-strong);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
}

.vpn-confirm.is-ready .vpn-confirm__ring {
  animation: confirm-check-draw 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.vpn-confirm.is-ready .vpn-confirm__tick {
  animation: confirm-check-draw 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards;
}

.vpn-confirm.is-ready .vpn-confirm__check {
  animation: confirm-check-pop 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

.vpn-confirm__eyebrow {
  margin: 0 0 6px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-strong);
}

.vpn-confirm__title {
  margin: 0 0 10px;
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
}

.vpn-confirm__lead {
  margin: 0 auto 22px;
  max-width: 42ch;
  color: var(--muted);
  font-size: 1.02rem;
}

.vpn-confirm__ref-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin: 0 0 18px;
  padding: 14px 28px;
  border-radius: 999px;
  background: rgba(12, 61, 82, 0.06);
  border: 1px solid rgba(63, 185, 216, 0.35);
}

.vpn-confirm__ref-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.vpn-confirm__ref.confirm-ref {
  margin: 0;
  font-size: clamp(1.45rem, 3.5vw, 1.85rem);
  letter-spacing: 0.04em;
}

.vpn-confirm__delay {
  margin: 0 0 28px;
  color: var(--text);
  font-size: 0.95rem;
}

.vpn-confirm__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 16px;
}

.vpn-confirm__home {
  margin: 0;
  font-size: 0.92rem;
}

.vpn-confirm__rise {
  opacity: 0;
  transform: translateY(14px);
}

.vpn-confirm.is-ready .vpn-confirm__rise {
  animation: confirm-rise 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.vpn-confirm.is-ready .vpn-confirm__ref-wrap.vpn-confirm__rise {
  animation:
    confirm-rise 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.64s forwards,
    confirm-ref-pulse 0.9s ease-out 1.15s both;
}

.vpn-confirm.is-ready .vpn-confirm__eyebrow { animation-delay: 0.4s; }
.vpn-confirm.is-ready .vpn-confirm__title { animation-delay: 0.48s; }
.vpn-confirm.is-ready .vpn-confirm__lead { animation-delay: 0.56s; }
.vpn-confirm.is-ready .vpn-confirm__delay { animation-delay: 0.72s; }
.vpn-confirm.is-ready .vpn-confirm__actions { animation-delay: 0.8s; }
.vpn-confirm.is-ready .vpn-confirm__home { animation-delay: 0.88s; }

@keyframes confirm-check-draw {
  to { stroke-dashoffset: 0; }
}

@keyframes confirm-check-pop {
  0% { transform: scale(0.72); opacity: 0.4; }
  70% { transform: scale(1.06); }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes confirm-rise {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes confirm-ref-pulse {
  0% { box-shadow: 0 0 0 0 rgba(63, 185, 216, 0.45); }
  100% { box-shadow: 0 0 0 14px rgba(63, 185, 216, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .vpn-confirm__rise {
    opacity: 1;
    transform: none;
  }

  .vpn-confirm.is-ready .vpn-confirm__ring,
  .vpn-confirm.is-ready .vpn-confirm__tick,
  .vpn-confirm.is-ready .vpn-confirm__check,
  .vpn-confirm.is-ready .vpn-confirm__rise,
  .vpn-confirm.is-ready .vpn-confirm__ref-wrap.vpn-confirm__rise {
    animation: none;
  }

  .vpn-confirm__ring,
  .vpn-confirm__tick {
    stroke-dashoffset: 0;
  }
}

@media (max-width: 640px) {
  .vpn-confirm { padding: 36px 0 56px; }
  .vpn-confirm__check { width: 72px; height: 72px; }
  .vpn-confirm__actions { flex-direction: column; align-items: stretch; }
  .vpn-confirm__actions .btn { width: 100%; }
}

/* Cabin prices table */
.cabin-prices {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0;
  font-size: 0.9rem;
}

.cabin-prices th {
  background: var(--navy);
  color: #fff;
  padding: 10px 14px;
  text-align: left;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cabin-prices td { padding: 10px 14px; border-bottom: 1px solid #e4eef4; }
.cabin-prices tr:last-child td { border-bottom: none; }
.cabin-prices tr:nth-child(even) td { background: #f7fbfd; }
.cabin-prices .price-cell { font-weight: 700; color: var(--accent-strong); }

.table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 12px 0 8px;
  border-radius: var(--radius);
  border: 1px solid #d8eaf2;
}

.table-scroll .cabin-prices {
  margin: 0;
  border: none;
  min-width: 560px;
}

.cruise-map {
  margin: 20px 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #d8eaf2;
  background: var(--bg-soft);
}

.cruise-map svg { width: 100%; height: auto; display: block; }

.cruise-map-note {
  margin: 0;
  padding: 8px 14px 12px;
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
}

.conditions-box {
  margin-top: 24px;
  padding: 16px 18px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  border: 1px solid #d8eaf2;
}

.filters-panel details > summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: var(--navy);
  font-size: 1.05rem;
  padding: 4px 0 12px;
}

.filters-panel details > summary::-webkit-details-marker { display: none; }

.filters-panel details > summary::after {
  content: '▾';
  float: right;
  color: var(--primary);
}

.filters-panel details[open] > summary::after { content: '▴'; }

/* Legal list */
.legal-list { list-style: none; padding: 0; }
.legal-list li { padding: 8px 0; border-bottom: 1px solid #e4eef4; font-size: 0.9rem; }
.legal-list li:last-child { border-bottom: none; }

/* ── CTA band ─────────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--navy), var(--primary-strong));
  color: #fff;
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-band h2 { color: #fff; font-size: clamp(1.4rem, 3vw, 2rem); }
.cta-band p { margin: 8px 0 0; opacity: 0.88; }

/* ── Agency teaser ────────────────────────────────────────────── */
.agency-teaser {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}

.agency-teaser-media img {
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow);
}

/* ── Agency page ──────────────────────────────────────────────── */
.agency-page-grid { display: grid; gap: 24px; }

.agency-block {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 28px;
}

.agency-block h2 { font-size: 1.45rem; margin-bottom: 12px; }

.agency-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }

.value-card { background: var(--bg-soft); border-radius: 12px; padding: 18px; }
.value-card h3 { font-size: 0.95rem; margin-bottom: 8px; }

.specialties-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }

.specialty-card { border: 1px solid #d8eaf2; border-radius: 12px; padding: 18px; background: #fff; }
.specialty-card strong { display: block; margin-bottom: 6px; color: var(--primary-strong); }

.partners-row { display: flex; flex-wrap: wrap; gap: 10px; }

.partner-pill {
  background: var(--bg-soft);
  border: 1px solid #d4e8f0;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}

.agency-list { margin: 18px 0 0; padding-left: 20px; color: var(--text); }
.agency-list li { margin-bottom: 8px; }

/* ── Contact ──────────────────────────────────────────────────── */
.contact-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: start;
}

.contact-details {
  margin-top: 20px;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid #d8eaf2;
}

.contact-details a { color: var(--primary-strong); }

.form-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }

.form-tab {
  border: 1.5px solid #d4e8f0;
  background: #fff;
  color: var(--muted);
  border-radius: 999px;
  padding: 10px 18px;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.form-tab.active, .form-tab:hover { border-color: var(--primary); color: var(--primary-strong); background: var(--bg-soft); }

.contact-forms { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 26px; }

.contact-form { display: none; flex-direction: column; gap: 14px; }
.contact-form.active { display: flex; }

.rdv-provider-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0 12px;
}

.rdv-provider-btn {
  border: 1.5px solid #d4e8f0;
  background: #fff;
  color: var(--navy, #0c3d52);
  border-radius: 999px;
  padding: 8px 14px;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}

.rdv-provider-btn.is-active,
.rdv-provider-btn:hover {
  border-color: var(--primary, #0a9ab5);
  color: var(--primary-strong, #087a90);
  background: var(--bg-soft, #e8f6f9);
}

.rdv-embed {
  margin: 0 0 8px;
}

.rdv-embed__label {
  margin: 0 0 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy, #0c3d52);
}

.rdv-embed__frame {
  width: 100%;
  min-height: 620px;
  border: 1px solid #d4e8f0;
  border-radius: 12px;
  background: #f8fafc;
}

.rdv-form-title {
  margin: 12px 0 0;
  font-size: 1.05rem;
  color: var(--navy, #0c3d52);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-note { margin: 0; padding: 12px 14px; background: var(--bg-soft); border-radius: 10px; color: var(--muted); font-size: 0.88rem; }

/* ── Forms ────────────────────────────────────────────────────── */
label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
}

input, select, textarea {
  border: 1.5px solid #d4e8f0;
  border-radius: 10px;
  padding: 11px 14px;
  font: inherit;
  font-size: 0.92rem;
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(63, 185, 216, 0.15);
}

textarea { resize: vertical; min-height: 100px; }

.text-muted { color: var(--muted); }

/* ── Catalog layout ───────────────────────────────────────────── */
.catalog-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  align-items: start;
}

.filters-panel {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 22px;
  position: sticky;
  top: 90px;
}

.filters-panel h2 { font-size: 1.05rem; margin-bottom: 16px; }
.filters-panel label { margin-bottom: 12px; }
.filters-actions { display: flex; flex-direction: column; gap: 8px; margin-top: 10px; }

.offers-results-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.cruise-filter[hidden] { display: none; }

/* Client-side catalogue filters: .offer-card { display:grid } must not override [hidden] */
.offer-card[hidden],
.offer-card.is-hidden {
  display: none !important;
}
#offers-catalog[hidden] {
  display: none !important;
}

/* ── Testimonials ─────────────────────────────────────────────── */
.testimonials { display: grid; gap: 16px; grid-template-columns: repeat(3, 1fr); }

blockquote {
  margin: 0;
  background: #fff;
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow-sm);
  padding: 22px;
  color: var(--text);
  font-weight: 500;
  font-size: 0.94rem;
}

cite {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-style: normal;
  font-size: 0.85rem;
}

/* ── Review page ──────────────────────────────────────────────── */
.review-page { padding: 48px 0 96px; }
.review-toolbar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.review-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 14px; margin-bottom: 28px; }

.stat-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 18px; text-align: center; }
.stat-card.highlight { border-top: 4px solid var(--accent); }
.stat-value { font-size: 1.8rem; font-weight: 800; color: var(--primary-strong); }
.stat-value.orange { color: var(--accent-strong); }
.stat-value.text-success { color: #16a34a; }
.stat-label { font-size: 0.82rem; color: var(--muted); margin-top: 4px; }

.review-screen { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); margin-bottom: 16px; overflow: hidden; border-left: 4px solid var(--accent); }
.review-screen-header { padding: 16px 20px; display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; background: #fef3ec; border-bottom: 1px solid rgba(217, 105, 50, 0.15); }
.review-path { font-size: 0.78rem; color: var(--muted); }
.review-screen-actions { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.review-screen-body { padding: 0 20px 16px; }

.review-comment { padding: 12px 0; border-bottom: 1px solid #e8edf2; font-size: 0.9rem; }
.review-comment:last-child { border-bottom: none; }
.review-comment.resolved { opacity: 0.65; }
.review-comment-meta { font-size: 0.76rem; color: var(--muted); margin-bottom: 4px; }
.review-empty { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 28px; }
.review-empty-title { font-weight: 700; margin: 0 0 8px; }
.text-success { color: #16a34a; }

/* ── Footer ───────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  color: #d0e8f4;
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1.3fr;
  gap: 28px;
  padding-bottom: 48px;
}

.footer-brand {}

.footer-logo {
  max-height: 52px;
  width: auto;
  margin-bottom: 14px;
  background: #fff;
  border-radius: 8px;
  padding: 6px 10px;
}

.site-footer h4 { color: #fff; margin-bottom: 12px; font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.06em; }
.site-footer p { margin: 0 0 6px; font-size: 0.88rem; }
.site-footer a { color: #7ec8e0; transition: color 0.15s; }
.site-footer a:hover { color: #fff; }

.footer-social { display: flex; gap: 8px; margin-top: 14px; }

.vpn-newsletter-signup {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.vpn-newsletter-signup h4 {
  margin-bottom: 8px;
}

.vpn-newsletter-signup__note {
  margin: 0 0 10px;
  font-size: 0.82rem;
  opacity: 0.9;
}

.vpn-newsletter-signup__row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.vpn-newsletter-signup__row input[type="email"] {
  flex: 1 1 160px;
  min-width: 0;
  border: 0;
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 0.88rem;
}

.vpn-newsletter-signup__consent {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 0.78rem;
  line-height: 1.35;
  margin: 0;
}

.vpn-newsletter-signup__consent input {
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 18px 0;
}

.copyright { font-size: 0.82rem; color: #7a9db0; margin: 0; }
.copyright a { color: #7a9db0; }
.copyright a:hover { color: #fff; }

/* ── Support / why cards etc. ─────────────────────────────────── */
.support-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }

.support-card { background: #fff; border: 1px solid #d8eaf2; border-radius: var(--radius); padding: 18px; }
.support-card p { margin: 10px 0 0; color: var(--muted); }

/* Offers grid on home */
.offers-grid .offer {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 100%;
}

.offer-meta, .offer-desc { margin: 0; color: var(--muted); font-size: 0.9rem; }

.offer-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; }

/* ── Écheancier ───────────────────────────────────────────────── */
.echeancier-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.echeancier-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 28px; }

/* ── Search block (home) ──────────────────────────────────────── */
.search-block {
  margin-top: -56px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
  position: relative;
  z-index: 2;
}

.search-block h2 { margin-bottom: 18px; font-size: 1.45rem; }
.search-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }

/* ── Reachout teaser (receptif) ───────────────────────────────── */
.receptif-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.receptif-soon-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.empty-state {
  text-align: center;
  padding: 48px 24px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid #d8eaf2;
}

.empty-state h3 {
  color: var(--navy);
  margin: 0 0 8px;
}

.empty-state p {
  color: var(--muted);
  margin: 0 0 20px;
}

/* ── Éléments divers ──────────────────────────────────────────── */
.section-head-center { text-align: center; flex-direction: column; align-items: center; }

.btn-wa-float {
  position: fixed;
  bottom: 28px;
  right: 20px;
  z-index: 140;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  transition: transform 0.2s;
}

.btn-wa-float:hover { transform: scale(1.1); }
.btn-wa-float svg { width: 28px; height: 28px; }

/* ══════════════════════════════════════════════════════════════
   Responsive
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: span 3; }
  .intent-grid { grid-template-columns: repeat(3, 1fr); }

  .nav-toggle { display: flex; }
  .nav-cta { display: none !important; }

  .menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 90vw);
    height: 100vh;
    height: 100dvh;
    padding: 80px 0 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    box-shadow: -8px 0 32px rgba(12, 61, 82, 0.14);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 95;
    overflow-y: auto;
  }

  .nav-open .menu { transform: translateX(0); }

  .menu > a {
    padding: 14px 20px;
    border-bottom: 1px solid #e8edf2;
    font-size: 0.95rem;
  }

  .menu .nav-cta-mobile {
    display: flex;
    margin: 16px 20px 0;
    width: calc(100% - 40px);
    justify-content: center;
  }

  .nav-item { flex-direction: column; }

  .nav-sub-toggle {
    padding: 14px 20px;
    border-radius: 0;
    border-bottom: 1px solid #e8edf2;
    width: 100%;
    justify-content: space-between;
    font-size: 0.95rem;
  }

  .nav-sub {
    position: static;
    box-shadow: none;
    border: none;
    border-radius: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    background: var(--bg-soft);
    padding: 4px 0;
    display: none;
  }

  .nav-item--has-sub.open .nav-sub { display: block; }

  .nav-item--has-sub.open .nav-sub-toggle svg {
    transform: rotate(180deg);
  }

  .nav-item--has-sub.is-closed .nav-sub {
    display: none !important;
  }

  .nav-sub li a {
    padding: 11px 20px 11px 32px;
    border-bottom: 1px solid #edf2f5;
  }

  .agency-teaser,
  .catalog-layout,
  .offer-detail-layout,
  .contact-section,
  .receptif-teaser { grid-template-columns: 1fr; }

  .offer-detail-layout {
    display: flex;
    flex-direction: column;
  }

  .offer-sidebar {
    order: -1;
    position: static;
    margin-bottom: 8px;
  }

  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials { grid-template-columns: 1fr 1fr; }

  .offer-card {
    grid-template-columns: 140px 1fr;
    grid-template-areas: "img body" "side side";
  }
  .offer-card > img { grid-area: img; min-height: 110px; }
  .offer-card-body { grid-area: body; }
  .offer-card-side {
    grid-area: side;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-width: 0;
    padding-top: 12px;
    border-top: 1px solid #eceff3;
  }

  .offer-card-rich {
    grid-template-columns: 1fr;
  }

  .offer-card-rich img {
    width: 100%;
    height: 200px;
    max-height: 220px;
  }

  .agency-values, .specialties-grid, .offer-meta-grid { grid-template-columns: 1fr 1fr; }
  .filters-panel, .offer-sidebar { position: static; }

  .mobile-bar { display: grid; }
  .btn-wa-float { display: none; }

  .section { padding: 60px 0; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  .hero-content { padding: 52px 0 60px; }
  .hero-text { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }

  .cards-grid { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .intent-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-3 { grid-template-columns: 1fr; }
  .steps-3::before { display: none; }
  .echeancier-grid { grid-template-columns: 1fr; }
  .include-grid { grid-template-columns: 1fr; }

  .cta-band { flex-direction: column; align-items: stretch; text-align: center; padding: 28px 24px; }
  .cta-band .hero-actions { flex-direction: column; align-items: stretch; }
  .cta-band .hero-actions .btn { width: 100%; }

  .offer-detail-hero { min-height: 300px; }
  .offer-detail-layout { padding: 28px 0 60px; }

  .page-hero { padding: 36px 0 28px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
}

@media (max-width: 640px) {
  .container { width: min(1140px, 96%); }
  .nav { min-height: 76px; gap: 12px; }
  .brand img { height: 58px; max-height: 58px; }

  .search-grid, .support-grid, .agency-values, .specialties-grid, .offer-meta-grid, .offer-gallery, .form-row { grid-template-columns: 1fr; }

  .category-grid { grid-template-columns: 1fr; }
  .intent-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .specialties-grid { grid-template-columns: 1fr 1fr; }

  .offer-card { grid-template-columns: 1fr; grid-template-areas: "img" "body" "side"; padding: 12px; }
  .offer-card > img { min-height: 180px; max-height: 220px; grid-area: img; }
  .offer-card-side { flex-direction: column; align-items: stretch; gap: 10px; }
  .offer-card-side .btn { width: 100%; }

  .offer-card-rich img { height: 180px; }

  .hero--photo { min-height: 85svh; }

  .search-block { margin-top: -24px; padding: 18px 16px; }
  .section { padding: 44px 0; }
  .section-head h2 { font-size: 1.45rem; }

  .offer-actions { flex-direction: column; align-items: stretch; }
  .offer-actions .btn { width: 100%; }

  .price { font-size: 1.35rem; }
  .price-wrap { flex-wrap: wrap; }

  .form-tabs { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 4px; }
  .form-tab { flex-shrink: 0; white-space: nowrap; }

  .contact-forms { padding: 18px 14px; }
  .agency-block { padding: 20px 16px; }
  .sidebar-actions .btn { width: 100%; }
  .btn-sm { padding: 11px 16px; }

  input, select, textarea { font-size: 16px; }

  .cabin-prices { font-size: 0.8rem; }
  .cabin-prices th, .cabin-prices td { padding: 8px 10px; }
}

@media (max-width: 480px) {
  .intent-grid { grid-template-columns: 1fr; }
}

@media (max-width: 380px) {
  .menu { width: 100vw; }
  h1 { font-size: 1.75rem; }
  .category-grid { grid-template-columns: 1fr; }
  .intent-grid { grid-template-columns: 1fr; }
}
