:root {
  --color-cream: #f6f1e8;
  --color-sand: #d9bc7a;
  --color-sand-soft: #efe2c6;
  --color-green: #123d35;
  --color-green-soft: #1f5a4c;
  --color-green-dark: #0d2d26;
  --color-ink: #1f2b28;
  --color-muted: #65716d;
  --color-white: #ffffff;
  --color-line: #e5dac9;
  --shadow: 0 18px 42px rgba(31, 43, 40, 0.12);
  --shadow-sm: 0 6px 20px rgba(31, 43, 40, 0.07);
  --radius: 8px;
  --radius-lg: 14px;
  --max: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--color-ink);
  background: #fffdf8;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a { color: inherit; }

/* ─── HEADER ─────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(18, 61, 53, 0.97);
  border-bottom: 1px solid rgba(217, 188, 122, 0.22);
  backdrop-filter: blur(12px);
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.nav-wrap {
  width: min(1640px, calc(100% - 48px));
  margin: 0 auto;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 260px;
  min-width: 220px;
  height: 58px;
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  flex-shrink: 0;
}

.brand img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  object-position: center;
}

.main-nav {
  display: none;
  align-items: center;
  gap: 4px;
  font-size: 0.88rem;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-sand);
}

/* ─── DROPDOWN "NOS SALLES" ──────────────────────── */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 34px;
  padding: 7px 11px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: none;
  border: none;
  font-weight: 700;
  font-size: inherit;
  font-family: inherit;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-dropdown-trigger::after {
  content: "▾";
  font-size: 0.75em;
  opacity: 0.7;
  transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-trigger,
.nav-dropdown:focus-within .nav-dropdown-trigger {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-sand);
}

.nav-dropdown:hover .nav-dropdown-trigger::after,
.nav-dropdown:focus-within .nav-dropdown-trigger::after {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-green);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 8px;
  min-width: 230px;
  display: none;
  flex-direction: column;
  gap: 2px;
  z-index: 200;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

/* Pont invisible qui comble le gap entre le bouton et le menu */
/* Empêche le hover de se couper quand la souris traverse l'espace */
.nav-dropdown-menu::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  height: 10px;
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid rgba(255, 255, 255, 0.15);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  display: flex;
}

.nav-dropdown.is-open .nav-dropdown-trigger {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-sand);
}

.nav-dropdown.is-open .nav-dropdown-trigger::after {
  transform: rotate(180deg);
}

.nav-dropdown-menu a {
  display: block;
  padding: 9px 14px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.12s ease, color 0.12s ease;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-sand);
}

/* ─── MOBILE : SOUS-MENU SALLES ──────────────────── */
.mobile-menu-label {
  display: block;
  padding: 10px 0 4px;
  color: var(--color-sand);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.mobile-menu a.mobile-sub {
  padding-left: 14px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--color-green);
  color: var(--color-white);
  text-decoration: none;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.16s ease, background 0.16s ease, border-color 0.16s ease;
  font-size: inherit;
  font-family: inherit;
}

.btn:hover {
  transform: translateY(-1px);
  background: var(--color-green-soft);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.44);
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

.btn.sand {
  background: var(--color-sand);
  color: #17221f;
  font-weight: 800;
}

.btn.sand:hover,
.nav-cta:hover {
  background: var(--color-sand-soft);
  color: #17221f;
  transform: translateY(-1px);
}

.btn.outline {
  background: transparent;
  color: var(--color-green);
  border-color: var(--color-green);
}

.btn.outline:hover {
  background: var(--color-green);
  color: var(--color-white);
}

.nav-cta {
  display: none;
  min-height: 44px;
  padding: 11px 17px;
  background: var(--color-sand);
  color: #17221f;
  font-weight: 800;
  white-space: nowrap;
  flex-shrink: 0;
}

.mobile-toggle {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  color: var(--color-white);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 800;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 88px;
  left: 0;
  right: 0;
  z-index: 19;
  max-height: calc(100dvh - 88px);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 24px 22px;
  background: var(--color-green);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.mobile-menu.is-open {
  display: grid;
  gap: 6px;
}

.mobile-menu a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  font-weight: 700;
}

/* ─── HERO ────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  color: var(--color-white);
  background-color: #17221f;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(100deg, rgba(11, 30, 25, 0.92) 0%, rgba(18, 61, 53, 0.6) 50%, rgba(18, 61, 53, 0.18) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, #fffdf8);
  pointer-events: none;
}

.hero--compact { min-height: 440px; }

.hero--mariage::before {
  background-image:
    linear-gradient(100deg, rgba(11, 30, 25, 0.92) 0%, rgba(40, 22, 30, 0.55) 50%, rgba(18, 61, 53, 0.15) 100%);
}

.hero--anniversaire::before {
  background-image:
    linear-gradient(100deg, rgba(11, 30, 25, 0.92) 0%, rgba(50, 30, 10, 0.5) 50%, rgba(18, 61, 53, 0.15) 100%);
}

.hero--seminaire::before {
  background-image:
    linear-gradient(110deg, rgba(8, 22, 18, 0.95) 0%, rgba(18, 61, 53, 0.72) 55%, rgba(18, 61, 53, 0.22) 100%);
}

.hero .container {
  position: relative;
  z-index: 1;
  padding: 80px 0 100px;
}

.hero-content { max-width: 780px; }

/* ─── TYPOGRAPHY ──────────────────────────────────── */

.eyebrow {
  margin: 0 0 14px;
  color: var(--color-sand);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.1rem, 4.8vw, 3.8rem); }

h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--color-green);
}

h3 {
  font-size: 1.15rem;
  color: var(--color-green);
}

p { margin: 0; }

.lead {
  margin-top: 18px;
  font-size: 1.1rem;
  max-width: 680px;
  line-height: 1.65;
  color: inherit;
  opacity: 0.92;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
  padding: 0;
  list-style: none;
}

.trust-list li {
  border: 1px solid rgba(217, 188, 122, 0.35);
  border-radius: 999px;
  background: rgba(18, 61, 53, 0.4);
  overflow: hidden;
}

.trust-list a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 7px 16px;
  font-weight: 700;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: background 0.16s ease, color 0.16s ease;
}

.trust-list a:hover,
.trust-list a:focus-visible {
  background: rgba(217, 188, 122, 0.18);
  color: var(--color-sand);
  outline: none;
}

/* ─── BREADCRUMB ──────────────────────────────────── */

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.84rem;
  color: var(--color-muted);
  margin-bottom: 36px;
}

.breadcrumb a {
  color: var(--color-muted);
  text-decoration: none;
  font-weight: 600;
}

.breadcrumb a:hover { color: var(--color-green); }

.breadcrumb .sep {
  color: var(--color-line);
  font-size: 0.9em;
}

/* ─── STAT BAND ───────────────────────────────────── */

.stat-band {
  padding: 40px 0;
  background: var(--color-cream);
  border-bottom: 1px solid var(--color-line);
}

.stat-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 64px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 5px;
}

.stat-number {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--color-green);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.88rem;
  color: var(--color-muted);
  font-weight: 600;
  max-width: 140px;
  line-height: 1.3;
}

/* ─── SECTIONS ────────────────────────────────────── */

.section { padding: 80px 0; }

.section.alt { background: var(--color-cream); }

.section-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 680px;
  margin-bottom: 40px;
}

.section-head p {
  color: var(--color-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

/* ─── GRID & CARDS ────────────────────────────────── */

.grid { display: grid; gap: 20px; }

.grid.cards { grid-template-columns: 1fr; }

.card {
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  position: relative;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(31, 43, 40, 0.1);
}

.card p {
  margin-top: 10px;
  color: var(--color-muted);
  line-height: 1.6;
}

.card a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 18px;
  color: var(--color-green);
  font-weight: 800;
  text-decoration: none;
  font-size: 0.95rem;
}

.card a::after { content: " →"; }

.card a:hover { color: var(--color-green-soft); }

.grid.cards > .card { border-top: 4px solid var(--color-sand); }

.card.card--green {
  background: var(--color-green);
  border-color: var(--color-green-dark);
}

.card.card--green h3 { color: var(--color-sand); }

.card.card--green p { color: rgba(255, 255, 255, 0.78); }

/* ─── FEATURE ─────────────────────────────────────── */

.feature {
  display: grid;
  gap: 48px;
  align-items: center;
}

.feature-media {
  margin: 0;
  overflow: hidden;
  min-height: 380px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.feature-media img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

/* ─── LISTS ───────────────────────────────────────── */

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  padding-left: 30px;
  position: relative;
  color: var(--color-ink);
  line-height: 1.55;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-sand);
}

/* ─── STEPS ───────────────────────────────────────── */

.steps { counter-reset: step; }

.step {
  position: relative;
  padding-left: 66px;
  border-top-color: var(--color-green) !important;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 20px;
  top: 24px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--color-green);
  color: var(--color-white);
  font-weight: 800;
  font-size: 0.9rem;
}

/* ─── TERRITORY ───────────────────────────────────── */

.territory-section {
  background: linear-gradient(135deg, var(--color-green-dark) 0%, var(--color-green) 100%);
  color: var(--color-white);
  padding: 80px 0;
}

.territory-section h2 { color: var(--color-white); }

.territory-section .section-head p { color: rgba(255, 255, 255, 0.7); }

.territory-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.territory-badge {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease;
  border: 1px solid;
}

.territory-section .territory-badge {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.9);
}

.territory-section a.territory-badge:hover {
  background: rgba(217, 188, 122, 0.18);
  border-color: var(--color-sand);
  color: var(--color-sand);
}

.territory-section .territory-badge.quiet {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  border-color: rgba(255, 255, 255, 0.1);
}

/* ─── FORM ────────────────────────────────────────── */

.form-panel {
  border-radius: var(--radius-lg);
  padding: 32px;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow);
}

.lead-form { display: grid; gap: 16px; }

.form-grid { display: grid; gap: 14px; }

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

label {
  display: grid;
  gap: 6px;
  font-weight: 700;
  font-size: 0.94rem;
  color: var(--color-ink);
}

input, select, textarea {
  width: 100%;
  border: 1.5px solid #d7d0c4;
  border-radius: var(--radius);
  padding: 12px 14px;
  font: inherit;
  color: var(--color-ink);
  background: #fffdf9;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  font-size: 0.97rem;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--color-green-soft);
  box-shadow: 0 0 0 3px rgba(31, 90, 76, 0.12);
}

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

.form-note {
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.lead-form button[disabled],
.lead-form input[type="submit"][disabled] {
  cursor: wait;
  opacity: 0.72;
}

.lead-popup {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.lead-popup.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lead-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 45, 38, 0.62);
  backdrop-filter: blur(4px);
}

.lead-popup-dialog {
  position: relative;
  width: min(440px, 100%);
  border-radius: var(--radius);
  background: var(--color-white);
  border: 1px solid var(--color-line);
  box-shadow: 0 24px 70px rgba(13, 45, 38, 0.24);
  padding: 30px;
  transform: translateY(10px) scale(0.98);
  transition: transform 0.18s ease;
}

.lead-popup.is-open .lead-popup-dialog {
  transform: none;
}

.lead-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-line);
  border-radius: 50%;
  background: #fffdf9;
  color: var(--color-ink);
  font: inherit;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.lead-popup-kicker {
  margin: 0 0 8px;
  color: var(--color-green-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead-popup.is-error .lead-popup-kicker {
  color: #9f2f28;
}

.lead-popup h2 {
  margin: 0 0 10px;
  color: var(--color-green);
  font-size: 1.6rem;
  line-height: 1.15;
}

.lead-popup p {
  margin: 0 0 22px;
  color: var(--color-muted);
}

/* ─── FAQ ─────────────────────────────────────────── */

.faq { display: grid; gap: 12px; }

details {
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.15s ease;
}

details[open] { box-shadow: 0 8px 28px rgba(31, 43, 40, 0.08); }

summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--color-green);
  font-size: 1.02rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

summary::after {
  content: "+";
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--color-sand);
  flex-shrink: 0;
}

details[open] summary::after { content: "−"; }

details p {
  margin-top: 12px;
  color: var(--color-muted);
  line-height: 1.65;
}

/* ─── CTA BAND ────────────────────────────────────── */

.cta-band {
  background: linear-gradient(135deg, #0d2d26, #1f5a4c);
  color: var(--color-white);
  padding: 72px 0;
  text-align: center;
}

.cta-band h2 { color: var(--color-white); max-width: 680px; margin: 0 auto; }

.cta-band p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.06rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.cta-band .cta-row { justify-content: center; margin-top: 32px; }

/* ─── LAYOUTS ─────────────────────────────────────── */

.content { max-width: 860px; }

.content h2 {
  margin-top: 42px;
  padding-top: 42px;
  border-top: 1px solid var(--color-line);
}

.content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.content p,
.content ul { margin-top: 16px; }

.content ul {
  padding-left: 22px;
  color: var(--color-muted);
  line-height: 1.7;
}

.content a {
  color: var(--color-green);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.split {
  display: grid;
  gap: 48px;
  align-items: start;
}

/* ─── TIP BOX ─────────────────────────────────────── */

.tip-box {
  background: var(--color-cream);
  border: 1px solid var(--color-sand-soft);
  border-left: 4px solid var(--color-sand);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-top: 22px;
}

.tip-box p {
  font-size: 0.97rem;
  color: var(--color-ink);
  margin: 0;
}

/* ─── FOOTER ──────────────────────────────────────── */

.site-footer {
  padding: 56px 0;
  background: #18241f;
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid { display: grid; gap: 28px; }

.footer-brand {
  color: var(--color-white);
  font-weight: 800;
  margin: 0 0 10px;
  font-size: 1.05rem;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.94rem;
  transition: color 0.14s ease;
}

.footer-links a:hover { color: var(--color-sand); }

.legal {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 14px;
  line-height: 1.55;
}

/* ─── SPECS ROW ───────────────────────────────────── */

.specs-row {
  display: flex;
  flex-wrap: wrap;
  background: var(--color-green);
}

.spec-item {
  flex: 1;
  min-width: 160px;
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.spec-item:last-child { border-right: none; }

.spec-number {
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--color-sand);
  line-height: 1;
  letter-spacing: -0.02em;
}

.spec-label {
  display: block;
  margin-top: 6px;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  line-height: 1.35;
}

/* ─── GALLERY ─────────────────────────────────────── */

.gallery-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 280px 280px;
}

.gallery-main {
  grid-row: 1 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.gallery-secondary {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── SPACES ──────────────────────────────────────── */

.spaces-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.space-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  position: relative;
  cursor: pointer;
}

.space-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(31, 43, 40, 0.14);
}

.space-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.space-card:hover img {
  transform: scale(1.04);
}

.space-card-body {
  padding: 18px 20px;
}

.space-card-body h3 {
  font-size: 1.05rem;
  margin: 0;
  transition: color 0.18s ease;
}

.space-card:hover .space-card-body h3 {
  color: var(--color-sand);
}

.space-card-body p {
  margin-top: 7px;
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.5;
}

/* ─── STRETCHED LINK ──────────────────────────────── */
/* Rend la carte entière cliquable via le lien principal */

/* Overlay couvrant toute la carte */
.space-card .card-link::after,
.card .card-link::after,
.card > a:last-child::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Hover : le titre et le lien réagissent au survol global de la carte */
.card:hover > a:last-child,
.card:hover .card-link,
.space-card:hover .card-link {
  color: var(--color-sand);
}

/* ─── TRAITEUR SECTION ────────────────────────────── */

.traiteur-section {
  background: linear-gradient(135deg, var(--color-green-dark) 0%, #1a4a3e 100%);
  color: var(--color-white);
  padding: 80px 0;
}

.traiteur-section h2 { color: var(--color-white); }

.traiteur-section .section-head p { color: rgba(255, 255, 255, 0.72); }

.traiteur-grid {
  display: grid;
  gap: 16px;
  margin-top: 40px;
}

.traiteur-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.traiteur-card h3 {
  color: var(--color-sand);
  font-size: 1.05rem;
}

.traiteur-card p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ─── QUOTE BLOCK ─────────────────────────────────── */

.quote-block {
  border-left: 4px solid var(--color-sand);
  padding: 20px 28px;
  background: var(--color-cream);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin: 32px 0;
}

.quote-block p {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-green);
  line-height: 1.5;
  font-style: italic;
}

/* ─── RESPONSIVE ──────────────────────────────────── */

@media (min-width: 760px) {
  .grid.cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature,
  .split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-grid .full { grid-column: 1 / -1; }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .traiteur-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .traiteur-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .grid.cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .split .form-panel,
  .split aside.form-panel {
    position: sticky;
    top: 98px;
  }
}

@media (min-width: 1080px) {
  .main-nav, .nav-cta { display: flex; }
  .mobile-toggle, .mobile-menu { display: none !important; }
}

@media (max-width: 1280px) {
  .brand { width: 225px; min-width: 190px; height: 52px; }
  .main-nav { gap: 2px; font-size: 0.84rem; }
  .main-nav a { padding-inline: 9px; }
  .nav-cta { padding-inline: 13px; font-size: 0.9rem; }
}

@media (max-width: 759px) {
  .brand { width: 172px; height: 42px; min-width: 0; }
  .nav-wrap { width: min(100% - 24px, 1640px); min-height: 72px; gap: 10px; }
  .mobile-menu { top: 72px; max-height: calc(100dvh - 72px); }
  .hero { min-height: 520px; }
  .hero--compact { min-height: 400px; }
  .section { padding: 60px 0; }
  .hero .container { padding: 54px 0 72px; }
  h1 { font-size: 2rem; }
  .lead { font-size: 1rem; line-height: 1.55; }
  .hero-actions, .cta-row { flex-direction: column; align-items: stretch; }
  .trust-list a { font-size: 0.85rem; }
  .form-panel { padding: 22px; }
  .feature-media,
  .feature-media img { min-height: 260px; }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .gallery-main,
  .gallery-secondary { min-height: 230px; }
  .territory-section { padding: 60px 0; }
  .cta-band { padding: 56px 0; }
  .stat-row { gap: 32px 40px; }
}

/* ─── SLIDER ──────────────────────────────────────── */

.slider-section {
  padding: 60px 0 0;
  background: var(--color-cream);
}

.slider-section .section-head {
  margin-bottom: 36px;
}

.slider {
  position: relative;
  overflow: hidden;
  background: #0b1e19;
}

.slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.slide {
  flex: 0 0 calc(100% / 3);
  position: relative;
  margin: 0;
  height: 420px;
  padding: 0 5px;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slide figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 40px 24px;
  background: linear-gradient(transparent, rgba(8, 20, 16, 0.75));
  color: rgba(255,255,255,0.88);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 1.3rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 2;
}

.slider-btn:hover {
  background: rgba(255,255,255,0.28);
  transform: translateY(-50%) scale(1.08);
}

.slider-prev { left: 20px; }
.slider-next { right: 20px; }

.slider-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.slider-dot.is-active {
  background: #fff;
  transform: scale(1.3);
}

@media (max-width: 760px) {
  .slide { flex: 0 0 100%; height: 280px; padding: 0; }
  .slide figcaption { padding: 16px 20px 14px; font-size: 0.85rem; }
  .slider-btn { width: 38px; height: 38px; font-size: 1rem; }
}

/* ─── AVIS ────────────────────────────────────────── */

.reviews-section { background: var(--color-white); }

.rating-summary {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-top: 12px;
  flex-wrap: wrap;
}
.rating-summary .stars {
  color: #d4a017;
  font-size: 1.3rem;
  letter-spacing: 2px;
}
.rating-score {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-dark);
}
.rating-count {
  font-size: 0.9rem;
  color: var(--color-muted);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.review-card {
  background: var(--color-cream);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 12px;
  padding: 28px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.review-stars {
  color: #d4a017;
  font-size: 1rem;
  letter-spacing: 2px;
}

.review-card p {
  font-size: 0.97rem;
  line-height: 1.65;
  color: var(--color-dark);
  flex: 1;
  margin: 0;
}

.review-card footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.review-card footer strong {
  font-size: 0.92rem;
  color: var(--color-dark);
}

.review-card footer span {
  font-size: 0.82rem;
  color: var(--color-muted);
}

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

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

/* ─── AVIS COUPLES – SECTION MISE EN AVANT ────────── */

.avis-aggregate {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 14px;
}

.avis-stars {
  color: #d4a017;
  font-size: 1.6rem;
  letter-spacing: 4px;
}

.avis-aggregate p {
  color: var(--color-muted);
  font-size: 0.85rem;
  margin: 0;
  text-align: center;
}

.section--avis .review-card {
  background: #fff;
  border: none;
  border-left: 4px solid var(--color-sand);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 32px 28px;
  position: relative;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.section--avis .review-card::before {
  content: "\201C";
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 4rem;
  line-height: 1;
  color: var(--color-sand);
  opacity: 0.25;
  font-family: Georgia, serif;
}

.section--avis .review-card p {
  font-size: 1.02rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--color-dark);
  padding-top: 16px;
}

.section--avis .review-card footer {
  border-top: 1px solid rgba(0,0,0,0.08);
}

.section--avis .review-card footer strong {
  color: var(--color-dark);
  font-size: 0.95rem;
}

.section--avis .review-card footer span {
  color: #d4a017;
  font-size: 0.82rem;
}

/* ─── MARIAGE – DÉROULÉ EN IMAGES ─────────────────── */

.journey-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.journey-step {
  text-align: center;
}

.journey-step-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  margin-bottom: 18px;
}

.journey-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: var(--color-sand);
  color: #fff;
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.journey-step h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.journey-step p {
  font-size: 0.88rem;
  color: var(--color-muted);
  line-height: 1.6;
  margin: 0;
}

/* ─── MARIAGE – ESPACES COMPARATIF ─────────────────── */

.venue-compare {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.venue-card {
  background: var(--color-cream);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.venue-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.venue-card:hover img {
  transform: scale(1.04);
}

.venue-card-body {
  padding: 22px;
}

.venue-card-body h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.venue-capacity {
  display: inline-block;
  background: var(--color-sand);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.venue-card-body p {
  font-size: 0.88rem;
  color: var(--color-muted);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 760px) {
  .journey-steps  { grid-template-columns: 1fr; }
  .venue-compare  { grid-template-columns: 1fr; }
}

/* ─── ANIMATIONS ──────────────────────────────────── */

.site-header {
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
}

@media (prefers-reduced-motion: no-preference) {

  /* Entrée hero — chaque enfant direct apparaît en décalé */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: none; }
  }

  .hero-content > * {
    opacity: 0;
    animation: fadeUp 0.65s ease forwards;
  }
  .hero-content > *:nth-child(1) { animation-delay: 0.08s; }
  .hero-content > *:nth-child(2) { animation-delay: 0.22s; }
  .hero-content > *:nth-child(3) { animation-delay: 0.36s; }
  .hero-content > *:nth-child(4) { animation-delay: 0.50s; }
  .hero-content > *:nth-child(5) { animation-delay: 0.64s; }

  /* Scroll-reveal */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
  .reveal-d1 { transition-delay: 0.10s; }
  .reveal-d2 { transition-delay: 0.20s; }
  .reveal-d3 { transition-delay: 0.30s; }
  .reveal-d4 { transition-delay: 0.40s; }

  /* Galerie — image principale plus lente */
  .gallery-main.reveal {
    transition-duration: 0.85s;
  }

  /* Cards hover plus prononcé */
  .card:hover,
  .space-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
  }
}
