/* Riviera Parc — Design premium nature / guinguette chic */

:root {
  --forest: #0d4a33;
  --forest-deep: #133e2e;
  --forest-light: #1a6b4a;
  --gold: #d9b45c;
  --gold-light: #e8cc8a;
  --sand: #f5f0e8;
  --cream: #fffcf6;
  --text: #1a1a1a;
  --text-muted: #5c5c5c;
  --white: #ffffff;
  --error: #c0392b;
  --success: #27ae60;
  --warning: #e67e22;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(13, 74, 51, 0.08);
  --shadow-lg: 0 12px 48px rgba(13, 74, 51, 0.12);
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --font-script: "Dancing Script", cursive;
  --header-h: 100px;
  --sticky-h: 64px;
  --transition: 0.3s ease;
  --container-max: 1200px;
  --container-pad: 1.25rem;
}

@media (min-width: 1400px) {
  :root {
    --container-max: 1340px;
    --container-pad: 2rem;
  }
}

@media (min-width: 1600px) {
  :root {
    --container-max: 1480px;
    --container-pad: 2.5rem;
  }
}

@media (min-width: 1920px) {
  :root {
    --container-max: 1640px;
  }
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
}

#main {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

img { max-width: 100%; height: auto; display: block; }
.logo--header .logo__img,
.logo__img--footer {
  max-width: none;
}
a { color: var(--forest); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.25;
  color: var(--forest-deep);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.container--narrow { max-width: 800px; }

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: var(--forest);
  color: var(--white);
  border-radius: var(--radius);
}
.skip-link:focus { top: 1rem; }

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1210;
  height: var(--header-h);
  background: rgba(253, 251, 247, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(13, 74, 51, 0.07);
  transition: box-shadow var(--transition);
  overflow: visible;
}
.site-header.is-scrolled { box-shadow: 0 2px 20px rgba(13, 74, 51, 0.07); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 0.75rem;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.logo--header {
  flex: 1 1 auto;
  min-width: 0;
  padding: 2px 0;
  overflow: hidden;
}
.logo--header .logo__img {
  display: block;
  height: 56px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}
.logo:hover .logo__img {
  opacity: 0.92;
}
@media (min-width: 1200px) {
  :root { --header-h: 118px; }
  .logo--header .logo__img {
    height: 102px;
  }
  .header-inner {
    gap: 0.75rem;
  }
  .site-header {
    height: auto;
    min-height: var(--header-h);
  }
  .header-inner {
    min-height: var(--header-h);
    height: auto;
    padding: 0.35rem 0;
  }
  .nav-desktop ul {
    row-gap: 0.35rem;
  }
}
@media (min-width: 1280px) {
  :root { --header-h: 132px; }
  .logo--header .logo__img {
    height: 116px;
  }
}
@media (min-width: 1400px) {
  :root { --header-h: 148px; }
  .logo--header .logo__img {
    height: 128px;
  }
}
@media (max-width: 1199px) {
  :root {
    --header-h: 88px;
    --container-pad: 1.15rem;
  }
  .logo--header .logo__img {
    height: 52px;
    max-width: min(100%, 220px);
  }
  .header-cta { display: none; }
  .nav-desktop { display: none; }
  .burger {
    display: flex;
    flex-shrink: 0;
    margin-left: 0.25rem;
  }
}
.logo.logo--footer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: fit-content;
  padding: 0.55rem 0.85rem;
  background: var(--cream);
  border: 1px solid rgba(217, 180, 92, 0.45);
  border-radius: var(--radius);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
  overflow: visible;
  line-height: 0;
}
.logo.logo--footer .logo__img--footer {
  display: block;
  width: auto;
  height: 118px;
  max-width: unset;
  margin: 0 auto;
  object-fit: contain;
  object-position: center center;
}
@media (min-width: 992px) {
  .logo.logo--footer {
    max-width: fit-content;
  }
}

.nav-desktop { display: none; }
.nav-desktop ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.1rem;
  row-gap: 0.15rem;
  list-style: none;
  max-width: 100%;
}
.nav-desktop a {
  display: block;
  padding: 0.35rem 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--forest-deep);
  border-radius: 10px;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
}
.nav-desktop a:hover {
  background: rgba(13, 74, 51, 0.06);
  color: var(--forest-deep);
}
.nav-desktop a.is-active {
  background: rgba(0, 0, 0, 0.06);
  color: var(--forest-deep);
  font-weight: 600;
}

.header-cta {
  display: none;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}
.header-cta__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.header-cta__phone-icon {
  line-height: 1;
}
.header-cta .btn--outline {
  background: var(--white);
  border: 1.5px solid var(--forest);
  color: var(--forest-deep);
  font-weight: 600;
  padding: 0.45rem 0.75rem;
  font-size: 0.8125rem;
  white-space: nowrap;
}
.header-cta .btn--outline:hover {
  background: var(--forest);
  color: var(--white);
  transform: none;
}
.header-cta .btn--primary {
  padding: 0.55rem 1.35rem;
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: 0 3px 14px rgba(13, 74, 51, 0.22);
}
.header-cta .btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 18px rgba(13, 74, 51, 0.3);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-light) 100%);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(13, 74, 51, 0.25);
}
.btn--primary:hover { color: var(--white); box-shadow: 0 6px 24px rgba(13, 74, 51, 0.35); }

.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--forest-deep);
}
.btn--gold:hover { color: var(--forest-deep); }

.btn--outline {
  background: transparent;
  color: var(--forest);
  border: 2px solid var(--forest);
}
.btn--outline:hover { background: var(--forest); color: var(--white); }

.btn--ghost {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.25); color: var(--white); }

.btn--sm { padding: 0.5rem 1rem; font-size: 0.85rem; }
.btn--lg { padding: 1rem 2rem; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* Groupes de boutons — empilés sur mobile */
.btn-group,
.actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}
.btn-group--start { justify-content: flex-start; }
.btn-group--stack-sm { flex-direction: column; }
@media (max-width: 639px) {
  .btn-group,
  .actions-row {
    flex-direction: column;
    width: 100%;
  }
  .btn-group .btn,
  .actions-row .btn {
    width: 100%;
    margin: 0 !important;
  }
}

/* Burger */
.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--forest);
  transition: transform 0.3s, opacity 0.3s;
}
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.burger.is-open {
  background: var(--sand);
  border: 1px solid rgba(217, 180, 92, 0.55);
}

/* Mobile nav */
.nav-mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 1190;
  border: none;
  padding: 0;
  margin: 0;
  background: rgba(19, 62, 46, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.nav-mobile-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: var(--cream);
  padding: calc(var(--header-h) + 0.5rem) var(--container-pad) calc(1.25rem + env(safe-area-inset-bottom));
  transform: translateX(100%);
  transition: transform 0.35s ease;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.nav-mobile.is-open { transform: translateX(0); }

.nav-mobile ul { list-style: none; }
.nav-mobile li { border-bottom: 1px solid rgba(13, 74, 51, 0.08); }
.nav-mobile ul a {
  display: block;
  padding: 0.95rem 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
}
.nav-mobile ul a.is-active {
  color: var(--forest);
  font-weight: 700;
}

.nav-mobile__cta {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(13, 74, 51, 0.1);
}
.nav-mobile__cta .btn {
  min-height: 48px;
  font-size: 0.95rem;
}
.nav-mobile__cta .btn--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-light) 100%);
}
.nav-mobile__cta .btn--primary:hover {
  color: var(--white);
}
.nav-mobile__cta .btn--outline {
  color: var(--forest-deep);
  background: var(--white);
  border: 2px solid var(--forest);
}
.nav-mobile__cta .btn--outline:hover {
  color: var(--white);
  background: var(--forest);
}

body.is-menu-open {
  overflow: hidden;
}

body.is-menu-open .sticky-mobile,
body.is-menu-open .whatsapp-fab,
body.is-menu-open .back-to-top {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Sticky mobile bar */
.sticky-mobile {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  display: flex;
  gap: 0;
  background: var(--white);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.1);
  padding-bottom: env(safe-area-inset-bottom);
}
.sticky-mobile a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}
.sticky-mobile__call {
  background: var(--sand);
  color: var(--forest);
}
.sticky-mobile__book {
  background: var(--forest);
  color: var(--white);
}
.sticky-mobile__book:hover { color: var(--white); background: var(--forest-light); }

@media (min-width: 1200px) {
  .header-inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.5rem 0.75rem;
  }
  .logo {
    justify-self: start;
    flex: none;
    max-width: min(24vw, 220px);
  }
  .logo--header {
    overflow: visible;
  }
  .logo--header .logo__img {
    height: 102px;
    max-width: 100%;
  }
  .nav-desktop {
    display: block;
    justify-self: center;
    min-width: 0;
    width: 100%;
  }
  .header-cta {
    display: flex;
    justify-self: end;
  }
  .header-cta__phone-text {
    display: none;
  }
  .header-cta__phone {
    padding-left: 0.65rem;
    padding-right: 0.65rem;
  }
  .burger,
  .nav-mobile,
  .nav-mobile-overlay { display: none !important; }
  .sticky-mobile { display: none; }
  body { padding-bottom: 0 !important; }
}

@media (min-width: 1200px) and (max-width: 1279px) {
  .nav-desktop a {
    padding: 0.35rem 0.45rem;
    font-size: 0.78rem;
  }
  .nav-desktop ul {
    gap: 0.05rem;
    row-gap: 0.2rem;
  }
  .header-cta .btn--outline,
  .header-cta .btn--primary {
    padding: 0.45rem 0.7rem;
    font-size: 0.8rem;
  }
}

@media (min-width: 1100px) {
  .nav-desktop a {
    padding: 0.4rem 0.6rem;
    font-size: 0.85rem;
  }
  .nav-desktop ul {
    gap: 0.15rem;
  }
  .header-cta .btn--outline {
    font-size: 0.85rem;
    padding: 0.45rem 0.85rem;
  }
}

@media (min-width: 1280px) {
  .header-cta__phone-text {
    display: inline;
  }
  .logo {
    max-width: none;
  }
  .nav-desktop a {
    padding: 0.45rem 0.7rem;
    font-size: 0.875rem;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 3rem) 0 4rem;
  background: linear-gradient(135deg, var(--forest-deep) 0%, var(--forest) 50%, var(--forest-light) 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-bg-image, url("../img/galerie/p1016288.jpg")) center/cover no-repeat;
  opacity: 0.25;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13, 74, 51, 0.35) 0%, rgba(19, 62, 46, 0.88) 100%);
  pointer-events: none;
}
.hero--home::before {
  opacity: 0.35;
  background: linear-gradient(135deg, rgba(13, 74, 51, 0.92) 0%, rgba(26, 107, 74, 0.55) 100%);
}
.hero--home .hero__content { max-width: none; }
.hero--home .hero__text { max-width: none; }
.hero .container { position: relative; z-index: 1; }

.hero__content { max-width: 720px; color: var(--white); }
.hero__script {
  font-family: var(--font-script);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero__text {
  font-size: 1.15rem;
  opacity: 0.95;
  margin-bottom: 2rem;
  max-width: 560px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.hero__badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  opacity: 0.9;
}
.hero__badge strong { font-size: 1.25rem; color: var(--gold); }

.hero--page {
  min-height: 40vh;
  padding: calc(var(--header-h) + 2rem) 0 3rem;
}
.hero--page::before { opacity: 0.28; }
.hero--page::after {
  background: linear-gradient(to bottom, rgba(13, 74, 51, 0.45) 0%, rgba(19, 62, 46, 0.92) 100%);
}
.hero--page h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); }

/* Sections */
section { padding: 4rem 0; }
section:nth-child(even) { background: var(--sand); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}
.section-header__label {
  font-family: var(--font-script);
  font-size: 1.35rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}
.section-header p { color: var(--text-muted); font-size: 1.05rem; }

/* Cards grid */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .cards-grid--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 992px) { .cards-grid--4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  border: 1px solid rgba(13, 74, 51, 0.06);
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--forest), var(--gold));
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1;
}
.card:hover::before { opacity: 1; }
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card__img {
  aspect-ratio: 16/10;
  object-fit: cover;
  width: 100%;
}
.card__body { padding: 1.5rem; }
.card__body h3 { margin-bottom: 0.75rem; }
.card__body p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1rem; }
.card__link {
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* Features */
.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .features--3 { grid-template-columns: repeat(3, 1fr); } }

.feature {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.feature__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--sand) 0%, var(--cream) 100%);
  border-radius: 50%;
  font-size: 1.75rem;
}
.feature h3 { margin-bottom: 0.5rem; font-size: 1.15rem; }
.feature p { color: var(--text-muted); font-size: 0.95rem; }

/* Split section */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 992px) { .split { grid-template-columns: 1fr 1fr; } }
.split__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.split__img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* Bloc jeux & structures (gonflables, taureau…) */
.games-block__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .games-block__grid { grid-template-columns: repeat(2, 1fr); gap: 1.15rem; }
}
@media (min-width: 992px) {
  .games-block__grid {
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(180px, auto);
    gap: 1.25rem;
  }
  .games-block__item--featured {
    grid-column: span 7;
    grid-row: span 2;
  }
  .games-block__item:not(.games-block__item--featured) {
    grid-column: span 5;
  }
  .games-block__item:nth-child(4),
  .games-block__item:nth-child(5),
  .games-block__item:nth-child(6) {
    grid-column: span 4;
  }
}
.games-block__item {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--forest);
}
.games-block__item img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.games-block__item:hover img { transform: scale(1.04); }
.games-block__item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.25rem 1.35rem 1.35rem;
  background: linear-gradient(to top, rgba(13, 74, 51, 0.92) 0%, rgba(13, 74, 51, 0.55) 55%, transparent 100%);
  color: var(--white);
}
.games-block__item figcaption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}
.games-block__item figcaption span {
  display: block;
  font-size: 0.88rem;
  line-height: 1.45;
  opacity: 0.92;
}
.games-block__item--featured figcaption strong { font-size: 1.2rem; }

.games-block__grid--decor {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .games-block__grid--decor {
    grid-template-columns: repeat(2, 1fr);
  }
  .games-block__grid--decor .games-block__item--featured {
    grid-column: span 2;
  }
  .games-block__grid--decor .games-block__item:not(.games-block__item--featured) {
    grid-column: span 1;
  }
}

.decor-video {
  margin-bottom: 1.25rem;
}
.gallery-featured-video {
  margin-bottom: 1.5rem;
}
.gallery-featured-video[hidden] {
  display: none !important;
}
.decor-video__figure {
  min-height: 280px;
}
.decor-video__player {
  display: block;
  width: 100%;
  min-height: 220px;
  max-height: min(72vh, 560px);
  object-fit: cover;
  background: var(--forest);
}
@media (min-width: 768px) {
  .decor-video__player {
    min-height: 360px;
  }
}

/* Stats bar */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding: 2.5rem;
  background: var(--forest);
  border-radius: var(--radius-lg);
  color: var(--white);
}
@media (min-width: 768px) { .stats-bar { grid-template-columns: repeat(4, 1fr); } }
.stat { text-align: center; }
.stat__value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}
.stat__label { font-size: 0.85rem; opacity: 0.9; }

/* Forms */
.form-section {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}
@media (min-width: 768px) { .form-section { padding: 2.5rem; } }

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) { .form-grid--2 { grid-template-columns: repeat(2, 1fr); } }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group--full { grid-column: 1 / -1; }

.form-group label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--forest-deep);
}
.form-group label .required { color: var(--error); }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1.5px solid rgba(13, 74, 51, 0.15);
  border-radius: var(--radius);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(13, 74, 51, 0.1);
}
.form-group input.is-invalid,
.form-group select.is-invalid,
.form-group textarea.is-invalid {
  border-color: var(--error);
}
.form-group textarea { min-height: 120px; resize: vertical; }

.form-error {
  font-size: 0.8rem;
  color: var(--error);
  display: none;
}
.form-error.is-visible { display: block; }

.form-hint { font-size: 0.8rem; color: var(--text-muted); }

.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 640px) { .checkbox-grid { grid-template-columns: repeat(2, 1fr); } }

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  background: var(--sand);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s;
}
.checkbox-item:hover { background: rgba(217, 180, 92, 0.15); }
.checkbox-item input { width: 18px; height: 18px; accent-color: var(--forest); }

.form-steps {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.form-step {
  flex: 1;
  height: 4px;
  background: rgba(13, 74, 51, 0.15);
  border-radius: 2px;
  transition: background 0.3s;
}
.form-step.is-active,
.form-step.is-done { background: var(--forest); }

.form-panel { display: none; }
.form-panel.is-active { display: block; }

/* Summary */
.summary {
  background: var(--sand);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.summary dl {
  display: grid;
  gap: 0.75rem;
}
.summary dt {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.summary dd {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(13, 74, 51, 0.08);
}
.summary dd:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
  justify-content: flex-end;
}

.form-success,
.form-alert {
  padding: 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  display: none;
}
.form-success.is-visible,
.form-alert.is-visible { display: block; }
.form-success {
  background: rgba(39, 174, 96, 0.1);
  border: 1px solid var(--success);
  color: var(--success);
}
.form-alert {
  background: rgba(192, 57, 43, 0.1);
  border: 1px solid var(--error);
  color: var(--error);
}

/* Calendar */
.calendar-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
@media (min-width: 768px) { .calendar-wrap { padding: 2rem; } }

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.calendar-header h3 {
  font-size: 1.25rem;
  min-width: 180px;
  text-align: center;
}
.calendar-nav {
  width: 44px;
  height: 44px;
  border: none;
  background: var(--sand);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.25rem;
  color: var(--forest);
  transition: background 0.2s;
}
.calendar-nav:hover { background: var(--gold-light); }

.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.legend-dot--available { background: var(--success); }
.legend-dot--option { background: var(--warning); }
.legend-dot--booked { background: var(--error); }

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.calendar-weekday {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 0.5rem 0;
  text-transform: uppercase;
}
.calendar-day {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  border-radius: 8px;
  background: var(--cream);
  border: none;
  cursor: default;
  position: relative;
  min-height: 44px;
}
.calendar-day--empty { background: transparent; }
.calendar-day--past { opacity: 0.35; }
.calendar-day--available {
  background: rgba(39, 174, 96, 0.12);
  cursor: pointer;
  font-weight: 600;
}
.calendar-day--available:hover { background: rgba(39, 174, 96, 0.25); }
.calendar-day--option {
  background: rgba(230, 126, 34, 0.15);
  cursor: pointer;
}
.calendar-day--option:hover { background: rgba(230, 126, 34, 0.3); }
.calendar-day--booked {
  background: rgba(192, 57, 43, 0.12);
  text-decoration: line-through;
  opacity: 0.6;
}
.calendar-day--weekday {
  background: rgba(0, 0, 0, 0.04);
  color: var(--text-muted);
  opacity: 0.4;
  cursor: not-allowed;
}
.calendar-day--unavailable {
  background: rgba(0, 0, 0, 0.06);
  opacity: 0.5;
}
.calendar-notice {
  margin: -0.5rem 0 1.25rem;
  padding: 0.75rem 1rem;
  background: rgba(217, 180, 92, 0.12);
  border: 1px solid rgba(217, 180, 92, 0.35);
  border-radius: var(--radius);
  font-size: 0.9rem;
  text-align: center;
}
.calendar-wrap--compact {
  padding: 1rem;
  box-shadow: none;
  border: 1px solid rgba(13, 74, 51, 0.1);
}
.calendar-wrap--compact .calendar-day {
  min-height: 40px;
  font-size: 0.8rem;
}
.reservation-date-picker { margin-bottom: 0.75rem; }
.reservation-date-label {
  margin-top: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--sand);
  border-radius: var(--radius);
  font-size: 0.95rem;
}
.reservation-date-label__status--available { color: var(--success); }
.reservation-date-label__status--option { color: var(--warning); }
.reservation-date-label__status--booked,
.reservation-date-label__status--unavailable,
.reservation-date-label__status--weekday { color: var(--error); }
.legend-dot--weekday { background: #ccc; }
.calendar-loading {
  text-align: center;
  padding: 2rem;
  color: var(--text-muted);
}
.calendar-day.is-selected {
  outline: 2px solid var(--forest);
  outline-offset: 2px;
}
.calendar-day__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-top: 2px;
}

.calendar-detail {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: var(--sand);
  border-radius: var(--radius);
  display: none;
}
.calendar-detail.is-visible { display: block; }

/* Gallery */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.filter-btn {
  padding: 0.5rem 1.25rem;
  border: 1.5px solid rgba(13, 74, 51, 0.2);
  background: var(--white);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover,
.filter-btn.is-active {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}
@media (min-width: 992px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1400px) {
  .gallery-grid { grid-template-columns: repeat(5, 1fr); gap: 1.15rem; }
}
@media (min-width: 1920px) {
  .gallery-grid { grid-template-columns: repeat(6, 1fr); }
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.3s, transform 0.3s;
}
.gallery-item.is-hidden {
  display: none;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 74, 51, 0.7) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
@media (hover: none) {
  .gallery-item__overlay { opacity: 1; }
}
.gallery-item__label { color: var(--white); font-size: 0.85rem; font-weight: 600; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
}
.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 1.5rem;
  border-radius: 50%;
  cursor: pointer;
}

/* FAQ Accordion */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  color: var(--forest-deep);
  cursor: pointer;
  transition: background 0.2s;
}
.faq-question:hover { background: var(--sand); }
.faq-question::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.is-open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer__inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Devis simulator */
.devis-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  max-width: min(100%, 800px);
  margin: 0 auto;
  width: 100%;
}
.devis-result {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-light) 100%);
  border-radius: var(--radius);
  color: var(--white);
  text-align: center;
  display: none;
}
.devis-result.is-visible { display: block; }
.devis-result__price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
}
.devis-result__note { font-size: 0.85rem; opacity: 0.85; margin-top: 0.5rem; }

.reservation-estimate {
  padding: 1.25rem 1rem;
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-light) 100%);
  border-radius: var(--radius);
  color: var(--white);
  text-align: center;
}
.reservation-estimate__label {
  margin: 0;
  font-size: 0.85rem;
  opacity: 0.9;
}
.reservation-estimate__price {
  margin: 0.35rem 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
}
.reservation-estimate__breakdown {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 0.75rem;
}
.reservation-estimate__breakdown li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.reservation-estimate__breakdown li:last-child { border-bottom: none; }

.summary-breakdown {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
  font-size: 0.9rem;
}
.summary-breakdown li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--sand-dark, rgba(0, 0, 0, 0.08));
}
.summary-breakdown li:last-child { border-bottom: none; }

/* Pricing table */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.pricing-table th,
.pricing-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid rgba(13, 74, 51, 0.08);
}
.pricing-table th {
  background: var(--forest);
  color: var(--white);
  font-weight: 600;
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:hover td { background: var(--sand); }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--forest-deep) 0%, var(--forest) 100%);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 1rem; }
.cta-band p { opacity: 0.9; max-width: 560px; margin: 0 auto 2rem; }
.cta-band .btn--gold { margin: 0 0.5rem; }

/* Footer */
.site-footer {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  background: var(--forest-deep);
  color: rgba(255, 255, 255, 0.85);
  padding: 4rem 0 calc(2rem + env(safe-area-inset-bottom));
  clear: both;
  overflow-x: clip;
}
.site-footer > .container {
  width: 100%;
  max-width: var(--container-max);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-brand .logo.logo--footer {
  margin-bottom: 1rem;
  justify-self: start;
  align-self: start;
}
.footer-brand .logo__name { color: var(--white); font-size: 1.5rem; }
.footer-brand .logo__tagline { color: var(--gold); }
.footer-brand p { margin-top: 1rem; font-size: 0.95rem; opacity: 0.85; }

.footer-col .footer-col__title,
.footer-col h4 {
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.7;
  width: 100%;
}
.footer-bottom__copy {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: center;
}
.footer-credit a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}
.footer-credit a:hover { color: var(--gold); }
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
  .footer-bottom__copy { align-items: flex-start; }
  .footer-legal { justify-content: flex-end; }
}
.footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
.footer-legal a { color: rgba(255, 255, 255, 0.92); }
.footer-legal a:hover { color: var(--gold); }

/* Breadcrumb */
.breadcrumb {
  padding: 1rem 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--forest); }

/* Legal pages */
.legal-hero {
  background: linear-gradient(135deg, var(--forest-deep) 0%, var(--forest) 55%, var(--forest-light) 100%);
  color: var(--white);
  padding: calc(var(--header-h) + 1.25rem) 0 2rem;
}
.legal-hero h1 {
  color: var(--white);
  margin-bottom: 0.5rem;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
}
.legal-hero .breadcrumb {
  padding: 0 0 1rem;
  color: rgba(255, 255, 255, 0.72);
}
.legal-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
}
.legal-hero .breadcrumb a:hover {
  color: var(--gold-light);
}
.legal-meta {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}
.legal-meta time { font-style: normal; }

.legal-layout {
  display: grid;
  gap: 2rem;
  padding: 2rem 0 2.5rem;
  align-items: start;
}
@media (min-width: 992px) {
  .legal-layout {
    grid-template-columns: minmax(200px, 260px) minmax(0, 1fr);
    gap: 2.5rem;
    padding: 2.5rem 0 3rem;
  }
}

.legal-nav {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.15rem 1.25rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(13, 74, 51, 0.08);
}
@media (min-width: 992px) {
  .legal-nav {
    position: sticky;
    top: calc(var(--header-h) + 1rem);
    max-height: calc(100vh - var(--header-h) - 2rem);
    overflow-y: auto;
  }
}
.legal-nav__label {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--forest);
}
.legal-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.legal-nav__list a {
  display: block;
  padding: 0.45rem 0;
  font-size: 0.86rem;
  line-height: 1.35;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(13, 74, 51, 0.07);
  text-decoration: none;
  transition: color 0.2s;
}
.legal-nav__list li:last-child a { border-bottom: none; }
.legal-nav__list a:hover,
.legal-nav__list a.is-active {
  color: var(--forest);
  font-weight: 600;
}
@media (max-width: 991px) {
  .legal-nav__list {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.5rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.25rem;
    scroll-padding-inline: 0.25rem;
  }
  .legal-nav__list li { flex-shrink: 0; }
  .legal-nav__list a {
    border: 1px solid rgba(13, 74, 51, 0.12);
    border-radius: 999px;
    padding: 0.4rem 0.9rem;
    white-space: nowrap;
    background: var(--sand);
    border-bottom: 1px solid rgba(13, 74, 51, 0.12);
  }
}

.legal-content {
  max-width: none;
  margin: 0;
  padding: 1.5rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(13, 74, 51, 0.06);
}
@media (min-width: 768px) {
  .legal-content { padding: 2rem 2.25rem; }
}
.legal-content > p:first-child { margin-top: 0; }
.legal-content h1 { display: none; }
.legal-content h2 {
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  margin: 2rem 0 0.85rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(13, 74, 51, 0.1);
  scroll-margin-top: calc(var(--header-h) + 1rem);
  color: var(--forest-deep);
}
.legal-content h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.legal-content h3 {
  font-size: 1.05rem;
  margin: 1.25rem 0 0.65rem;
  color: var(--forest);
}
.legal-content ul,
.legal-content ol {
  margin: 0 0 1rem;
  padding-left: 1.35rem;
}
.legal-content li {
  margin-bottom: 0.45rem;
  line-height: 1.6;
}
.legal-content li::marker { color: var(--forest-light); }
.legal-content a {
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-content a:hover { color: var(--forest-light); }

.legal-info-card {
  margin: 1rem 0 1.25rem;
  padding: 1rem 1.15rem;
  background: linear-gradient(135deg, rgba(217, 180, 92, 0.14), rgba(13, 74, 51, 0.04));
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.95rem;
  line-height: 1.65;
}
.legal-info-card strong { color: var(--forest-deep); }

.legal-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1rem 0 1.25rem;
  border-radius: var(--radius);
  border: 1px solid rgba(13, 74, 51, 0.1);
}
.legal-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 0.9rem;
  background: var(--white);
}
.legal-table th,
.legal-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(13, 74, 51, 0.08);
}
.legal-table th {
  background: rgba(13, 74, 51, 0.06);
  font-weight: 600;
  color: var(--forest-deep);
}
.legal-table tr:last-child td { border-bottom: none; }

.legal-crosslinks {
  display: grid;
  gap: 1rem;
  padding-bottom: 3.5rem;
}
@media (min-width: 640px) {
  .legal-crosslinks { grid-template-columns: repeat(3, 1fr); }
}
.legal-crosslink-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.15rem 1.25rem;
  background: var(--white);
  border: 1px solid rgba(13, 74, 51, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.legal-crosslink-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: inherit;
}
.legal-crosslink-card.is-current {
  border-color: var(--forest);
  background: linear-gradient(180deg, var(--white) 0%, rgba(13, 74, 51, 0.04) 100%);
}
.legal-crosslink-card__label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--forest-light);
}
.legal-crosslink-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--forest-deep);
}
.legal-crosslink-card__desc {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 767px) {
  .legal-hero { padding-bottom: 1.5rem; }
  .legal-layout { padding: 1.5rem 0 2rem; }
  .legal-content { padding: 1.25rem 1rem; }
  .legal-table { font-size: 0.82rem; }
  .legal-table th,
  .legal-table td { padding: 0.6rem 0.75rem; }
}

/* Utilities */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Main offset for fixed header */
main { padding-top: var(--header-h); }
main.no-offset { padding-top: 0; }
/* Le hero remonte sous le header fixe (évite la bande crème + double marge sur mobile) */
main > .hero:first-child {
  margin-top: calc(-1 * var(--header-h));
}

/* Page content wrapper */
.page-content { padding: 3rem 0 4rem; }

/* Trust badges */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: var(--white);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: var(--shadow);
}

/* Bandeau confiance (accueil) */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid rgba(13, 74, 51, 0.08);
  padding: 1rem 0;
}
.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .trust-strip__inner { grid-template-columns: repeat(4, 1fr); gap: 1rem; }
}
.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--sand);
  border-radius: var(--radius);
  color: var(--forest-deep);
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
}
a.trust-strip__item:hover {
  background: rgba(13, 74, 51, 0.08);
  color: var(--forest-deep);
  transform: translateY(-1px);
}
.trust-strip__icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}
.trust-strip__item strong {
  display: block;
  font-size: 0.9rem;
  line-height: 1.3;
}
.trust-strip__item small {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 400;
}

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}
@media (max-width: 767px) {
  .table-wrap {
    margin-inline: calc(-1 * var(--container-pad));
    padding-inline: var(--container-pad);
    scroll-padding-inline: var(--container-pad);
  }
  .pricing-table { min-width: 280px; }
}

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

.contact-info__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.contact-info__badge {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--gold-light);
}
.contact-info__map {
  margin-top: 1.25rem;
  border-color: rgba(255, 255, 255, 0.35) !important;
  color: var(--white) !important;
}
.contact-info__map:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  color: var(--white) !important;
}

.faq-list--compact .faq-item { margin-bottom: 0.75rem; }

.devis-result__breakdown {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  text-align: left;
  font-size: 0.9rem;
}
.devis-result__breakdown li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.devis-result__breakdown li:last-child { border-bottom: none; }

.checkbox-item.is-pack-included {
  border-color: var(--gold);
  background: rgba(217, 180, 92, 0.12);
}
.checkbox-item .pack-hint {
  display: block;
  font-size: 0.75rem;
  color: var(--forest-light);
  font-weight: 500;
  margin-top: 0.15rem;
}

.reservation-fieldset {
  border: none;
  padding: 0;
  margin: 0;
}
.reservation-fieldset legend {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 0.65rem;
  padding: 0;
}
.pack-grid {
  display: grid;
  gap: 0.65rem;
}
@media (min-width: 640px) {
  .pack-grid { grid-template-columns: repeat(2, 1fr); }
}
.pack-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(13, 74, 51, 0.15);
  border-radius: var(--radius);
  background: var(--cream);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.pack-item:hover { background: rgba(217, 180, 92, 0.15); }
.pack-item:has(input:checked) {
  border-color: var(--gold);
  background: rgba(217, 180, 92, 0.12);
}
.pack-item input {
  width: 18px;
  height: 18px;
  margin-top: 0.2rem;
  accent-color: var(--forest);
  flex-shrink: 0;
}
.pack-item__body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  line-height: 1.35;
}
.pack-item__body strong { color: var(--forest); }
.pack-item__price {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
}
.pack-item__body small {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.upcoming-date--weekend {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--white) 0%, rgba(217, 180, 92, 0.12) 100%);
}

.page-404 {
  min-height: 60vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 4rem 0;
}
.page-404 h1 {
  font-size: clamp(4rem, 15vw, 7rem);
  color: var(--forest);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 0;
}
.page-404__title { margin-bottom: 1rem; }
.page-404__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.page-404__links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  max-width: 480px;
  margin: 2rem auto 0;
  text-align: left;
}
.page-404__links a {
  padding: 0.75rem 1rem;
  background: var(--sand);
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.9rem;
}
.page-404__links a:hover { background: rgba(13, 74, 51, 0.08); }

/* ── Animations & accessibilité ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none !important;
}

.btn.is-loading {
  position: relative;
  color: transparent !important;
  pointer-events: none;
}
.btn.is-loading::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Hero décoratif ── */
.hero__decor {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  pointer-events: none;
}
.hero__decor--1 {
  width: 400px; height: 400px;
  background: var(--gold);
  top: -100px; right: -100px;
}
.hero__decor--2 {
  width: 300px; height: 300px;
  background: var(--forest-light);
  bottom: -80px; left: -80px;
}

.hero__content { animation: fadeUp 0.9s ease both; }

/* ── Process / étapes ── */
.process {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  counter-reset: step;
}
@media (min-width: 768px) {
  .process { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}
.process__item {
  position: relative;
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(13, 74, 51, 0.06);
}
.process__item::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-light) 100%);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 50%;
}
.process__item h3 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.process__item p { color: var(--text-muted); font-size: 0.95rem; margin: 0; }

/* ── Témoignages ── */
.testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .testimonials { grid-template-columns: repeat(3, 1fr); } }

.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testimonial__stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }
.testimonial__text {
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  font-size: 0.95rem;
}
.testimonial__author { font-weight: 600; color: var(--forest-deep); font-size: 0.9rem; }
.testimonial__event { font-size: 0.8rem; color: var(--text-muted); }

/* ── Mini galerie accueil ── */
.preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 768px) { .preview-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; } }
.preview-grid a {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
}
.preview-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.preview-grid a:hover img { transform: scale(1.08); }
.preview-grid a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,74,51,0.5) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.preview-grid a:hover::after { opacity: 1; }

/* ── Contact layout ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 992px) { .contact-grid { grid-template-columns: 1fr 1.4fr; } }

.contact-info {
  background: linear-gradient(160deg, var(--forest-deep) 0%, var(--forest) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
}
.contact-info h2 { color: var(--white); margin-bottom: 1.5rem; }
.contact-info p { opacity: 0.9; margin-bottom: 0.75rem; }
.contact-info a { color: var(--gold-light); }
.contact-info a:hover { color: var(--white); }
.contact-info__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.contact-info__item:last-child { border-bottom: none; }
.contact-info__icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ── Section alt background ── */
.section--sand { background: var(--sand); }
.section--white { background: var(--white); }

/* ── Wave divider ── */
.wave-divider {
  display: block;
  width: 100%;
  line-height: 0;
  margin-top: -1px;
}
.wave-divider svg { width: 100%; height: 48px; }
.wave-divider--sand path { fill: var(--sand); }
.wave-divider--cream path { fill: var(--cream); }

/* ── Liste à puces stylée ── */
.list-check { list-style: none; margin: 1rem 0; }
.list-check li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.65rem;
  color: var(--text-muted);
}
.list-check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--forest);
  font-weight: 700;
}

/* ── Tag / badge ── */
.tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(217, 180, 92, 0.2);
  color: var(--forest-deep);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

/* ── Pricing cards ── */
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .pricing-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .pricing-cards { grid-template-columns: repeat(4, 1fr); } }

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
  text-align: center;
  border: 2px solid transparent;
  transition: border-color 0.3s, transform 0.3s;
}
.pricing-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.pricing-card--selectable {
  cursor: pointer;
  width: 100%;
  font: inherit;
  text-align: center;
  appearance: none;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.pricing-card--selectable.is-selected {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(217, 180, 92, 0.45);
  background: linear-gradient(180deg, var(--white) 0%, rgba(217, 180, 92, 0.12) 100%);
}
.pricing-card__select-hint {
  display: block;
  margin-top: auto;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--forest);
  opacity: 0.85;
}
.pricing-card__cta {
  padding: 0.85rem 1.25rem;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--forest);
  background: rgba(13, 74, 51, 0.06);
  border-top: 1px solid rgba(13, 74, 51, 0.1);
  transition: background 0.2s, color 0.2s;
}
.pricing-card--selectable:hover .pricing-card__cta {
  background: rgba(13, 74, 51, 0.1);
}
.pricing-card--selectable.is-selected .pricing-card__select-hint {
  opacity: 1;
  color: var(--white);
  background: var(--forest);
  border-top-color: var(--forest-deep);
}
.pricing-card--selectable.is-selected .pricing-card__cta::before {
  content: "✓ ";
}
.pricing-card--selectable:not(.pricing-card--on-demand) .pricing-card__cta {
  margin: 1rem -1.5rem 0;
  width: calc(100% + 3rem);
}
.pricing-card--selectable:not(.pricing-card--on-demand) .pricing-card__features {
  margin-bottom: 0;
}
.checkbox-item.is-disabled {
  opacity: 0.55;
  pointer-events: none;
}
.pricing-card--featured {
  border-color: var(--forest);
  background: linear-gradient(180deg, var(--white) 0%, rgba(13,74,51,0.04) 100%);
}
.pricing-cards--formules,
.pricing-cards--3 {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .pricing-cards--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
  .pricing-cards--formules { grid-template-columns: repeat(3, 1fr); }
  .pricing-cards--3 { grid-template-columns: repeat(3, 1fr); }
}

/* Grille décoration — 3 cartes centrées (évite le layout 4 colonnes) */
.section--decoration .section-header {
  max-width: 40rem;
}
.pricing-cards--decoration {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 1.25rem;
  max-width: 1080px;
  margin-inline: auto;
  width: 100%;
}
.pricing-card--decor {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex: 1 1 min(100%, 280px);
  max-width: 340px;
  padding: 1.75rem 1.35rem 1.35rem;
  text-align: center;
  border: 1px solid rgba(13, 74, 51, 0.1);
}
.pricing-card--decor:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
}
.pricing-card__icon-wrap--decor {
  width: 3.25rem;
  height: 3.25rem;
  font-size: 1.5rem;
  margin-bottom: 0.65rem;
  background: linear-gradient(135deg, rgba(217, 180, 92, 0.22), rgba(13, 74, 51, 0.06));
}
.pricing-card--decor h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  color: var(--forest-deep);
}
.pricing-card--decor .pricing-card__price--from {
  margin: 0 0 0.75rem;
}
.pricing-card--decor .pricing-card__price-value {
  font-size: 1.65rem;
}
.pricing-card__desc {
  flex: 1;
  margin: 0 0 1.15rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-muted);
}
.pricing-card__cta-link {
  margin-top: auto;
}
@media (min-width: 640px) and (max-width: 991px) {
  .pricing-card--decor {
    flex: 1 1 calc(50% - 0.625rem);
    max-width: none;
  }
  .pricing-card--decor:last-child:nth-child(3) {
    flex: 1 1 min(100%, 340px);
    max-width: 340px;
  }
}
@media (max-width: 639px) {
  .pricing-cards--decoration {
    flex-direction: column;
    align-items: stretch;
  }
  .pricing-card--decor {
    max-width: none;
  }
}
.pricing-card--formula ul { margin-top: 0.75rem; }
.pricing-card--riviera {
  border-color: var(--gold);
  background: linear-gradient(180deg, var(--white) 0%, rgba(212,175,55,0.08) 100%);
}
.pack-item--recommended {
  border-color: var(--forest);
}
.pack-item--riviera {
  border-color: var(--gold);
}
.reservation-fieldset.is-disabled,
#devis-animations-fieldset.is-disabled,
#devis-packs-fieldset.is-disabled,
#devis-machines-details.is-disabled {
  opacity: 0.55;
  pointer-events: none;
}
.pricing-card__price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--forest);
  margin: 0.5rem 0;
}
.pricing-card__price span { font-size: 0.9rem; font-weight: 400; color: var(--text-muted); }
.pricing-card ul,
.pricing-card__features {
  list-style: none;
  text-align: left;
  margin: 1.25rem 0 0;
  padding: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  flex: 1;
}
.pricing-card ul li,
.pricing-card__features li {
  padding: 0.45rem 0;
  padding-left: 1.35rem;
  position: relative;
  border-bottom: 1px solid rgba(13, 74, 51, 0.06);
  line-height: 1.45;
}
.pricing-card ul li:last-child,
.pricing-card__features li:last-child {
  border-bottom: none;
}
.pricing-card ul li::before,
.pricing-card__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--forest);
  font-weight: 700;
  font-size: 0.8rem;
}
.pricing-card__emoji {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.35rem;
}
.pricing-card__icon-wrap {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  line-height: 1;
  background: linear-gradient(135deg, rgba(217, 180, 92, 0.28), rgba(13, 74, 51, 0.07));
  border-radius: 50%;
  border: 1px solid rgba(217, 180, 92, 0.45);
}
.pricing-card__icon-wrap--featured {
  width: 3.25rem;
  height: 3.25rem;
  font-size: 1.6rem;
}
.pricing-card__price--from {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin: 0.65rem 0 0.25rem;
  line-height: 1.2;
}
.pricing-card__price-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
}
.pricing-card__price-value {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--forest);
}
.pricing-card__note {
  display: inline-block;
  margin: 0.35rem 0 0;
  padding: 0.25rem 0.65rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--forest-deep);
  background: rgba(217, 180, 92, 0.18);
  border-radius: 999px;
}
.pricing-card__price--range {
  font-size: 1.15rem;
  line-height: 1.35;
  font-weight: 700;
}
@media (min-width: 992px) {
  #gourmand-animation-packs { grid-template-columns: repeat(3, 1fr); }
}

.gourmand-on-demand {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(13, 74, 51, 0.12);
}
.gourmand-on-demand__header {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 1.5rem;
}
.gourmand-on-demand__header h3 {
  margin: 0.5rem 0 0.75rem;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  color: var(--forest-deep);
}
.gourmand-on-demand__header p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}
.pricing-cards--on-demand {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .pricing-cards--on-demand { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
  .pricing-cards--on-demand { grid-template-columns: repeat(3, 1fr); }
}
.pricing-card--on-demand {
  padding: 0;
  overflow: hidden;
  text-align: center;
  border-style: dashed;
  border-color: rgba(13, 74, 51, 0.22);
  background: var(--white);
}
.pricing-card--on-demand .pricing-card__top {
  padding: 1.5rem 1.35rem 0.25rem;
}
.pricing-card--on-demand h3 {
  margin: 0.35rem 0 0;
  font-size: 1.12rem;
  line-height: 1.3;
  color: var(--forest-deep);
}
.pricing-card--on-demand .pricing-card__features {
  margin: 0.85rem 0 0;
  padding: 1rem 1.35rem;
  background: rgba(245, 240, 232, 0.75);
  border-top: 1px solid rgba(13, 74, 51, 0.08);
}
.pricing-card--on-demand.is-selected {
  border-style: solid;
  border-color: var(--gold);
}
.pricing-card--on-demand.is-selected .pricing-card__features {
  background: rgba(217, 180, 92, 0.12);
}
.pricing-card__badge {
  display: inline-block;
  margin-bottom: 0.15rem;
  padding: 0.28rem 0.65rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--forest-deep);
  background: rgba(217, 180, 92, 0.22);
  border: 1px solid rgba(217, 180, 92, 0.45);
  border-radius: 999px;
}
.devis-animations-more {
  padding: 1rem 1rem 0.25rem;
  border-radius: var(--radius);
  background: rgba(217, 180, 92, 0.08);
  border: 1px dashed rgba(13, 74, 51, 0.2);
}
.devis-animations-more__title {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  color: var(--forest-deep);
}
.gourmand-on-demand__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* ── Responsive finitions ── */
@media (max-width: 767px) {
  :root {
    --sticky-h: 56px;
  }

  section { padding: 2.75rem 0; }
  .section-header { margin-bottom: 2rem; }
  .section-header p { font-size: 0.98rem; }

  .hero { min-height: auto; padding: calc(var(--header-h) + 2rem) 0 2.5rem; }
  .hero--home { min-height: auto; padding-bottom: 2.5rem; }
  .hero--page { min-height: auto; padding: calc(var(--header-h) + 1.5rem) 0 2rem; }
  .hero--home h1 {
    font-size: clamp(1.6rem, 6.5vw, 2.05rem);
    line-height: 1.2;
    overflow-wrap: break-word;
  }
  .hero__script { font-size: clamp(1.25rem, 5vw, 1.65rem); }
  .hero__text { font-size: 1rem; margin-bottom: 1.5rem; overflow-wrap: break-word; }
  .hero__actions { flex-direction: column; gap: 0.75rem; }
  .hero__actions .btn { width: 100%; }
  .hero__actions .btn--lg {
    padding: 0.9rem 1.25rem;
    font-size: 1rem;
  }
  .hero__badges { gap: 1rem; margin-top: 2rem; padding-top: 1.5rem; }
  .hero__visual-badge { left: 1rem; right: 1rem; bottom: 1rem; font-size: 0.85rem; }

  .trust-strip__inner { gap: 0.6rem; }
  .trust-strip__item { min-width: 0; }
  .trust-strip__item strong { font-size: 0.85rem; }

  .form-section { padding: 1.25rem 1rem; }
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px;
    min-height: 48px;
  }
  .form-group textarea { min-height: 120px; }
  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .form-actions .btn { width: 100%; }

  .stats-bar { grid-template-columns: repeat(2, 1fr); padding: 1.25rem; gap: 1rem; }
  .stat__value { font-size: 1.45rem; }

  .cta-band { padding: 2.5rem 0; }
  .cta-band .btn { display: block; width: 100%; margin: 0.35rem 0 !important; }

  .calendar-day { font-size: 0.72rem; min-height: 36px; padding: 0.2rem; }
  .calendar-header { flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
  .calendar-wrap { padding: 1.15rem; }

  h1 { font-size: clamp(1.65rem, 7vw, 1.85rem); }
  h2 { font-size: clamp(1.4rem, 5.5vw, 1.75rem); }

  .cards-grid { gap: 1.15rem; }
  .card__body { padding: 1.15rem; }

  .features { gap: 1rem; }
  .feature { padding: 1.25rem 1rem; }

  .split { gap: 1.5rem; }

  .process { gap: 1.25rem; }
  .process__item { padding: 1.5rem 1.15rem; }

  .pricing-cards,
  #gourmand-animation-packs,
  #gourmand-animation-more,
  .pricing-cards--on-demand,
  .pricing-cards--formules {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }
  .pricing-cards--decoration {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .pricing-card { padding: 1.35rem 1.15rem; }
  .pricing-card--on-demand .pricing-card__top { padding: 1.25rem 1.15rem 0.25rem; }
  .pricing-card--on-demand .pricing-card__features { padding: 0.85rem 1.15rem; }
  .pricing-card__price-value { font-size: 1.65rem; }

  .devis-card { padding: 1.25rem 1rem; border-radius: var(--radius); }
  .devis-result { padding: 1.15rem; }
  .devis-result__price { font-size: 2rem; word-break: break-word; }
  .devis-result__breakdown li,
  .reservation-estimate__breakdown li,
  .summary-breakdown li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }

  .pack-grid { grid-template-columns: 1fr; }
  .pack-item { padding: 0.75rem 0.85rem; min-height: 48px; }
  .pack-item__body small { font-size: 0.78rem; }

  .checkbox-grid { grid-template-columns: 1fr; gap: 0.5rem; }
  .checkbox-item { padding: 0.85rem; min-height: 48px; }

  .contact-info { padding: 1.75rem 1.25rem; }
  .contact-grid { gap: 1.75rem; }

  .gallery-filters {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.35rem;
    margin-inline: calc(-1 * var(--container-pad));
    padding-inline: var(--container-pad);
    scroll-padding-inline: var(--container-pad);
    scrollbar-width: none;
  }
  .gallery-filters::-webkit-scrollbar { display: none; }
  .filter-btn {
    flex-shrink: 0;
    padding: 0.55rem 1rem;
    font-size: 0.85rem;
    min-height: 44px;
  }

  .gallery-grid { gap: 0.5rem; }

  .formula-card { padding: 1.75rem 1.25rem; }
  .formula-card__header h2 { font-size: clamp(1.65rem, 6vw, 2rem); }

  .reassurance { grid-template-columns: 1fr; gap: 0.75rem; }
  .reassurance__item { padding: 0.85rem; }

  .testimonials { gap: 1rem; }
  .preview-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }

  .weekend-banner__inner { flex-direction: column; text-align: center; }
  .weekend-banner__inner p { flex: 0 0 auto; }
  .weekend-banner__inner .btn { width: 100%; }

  .breadcrumb-nav__list { padding-inline: var(--container-pad); font-size: 0.8rem; }

  .lightbox { padding: 1rem; padding-bottom: calc(1rem + env(safe-area-inset-bottom)); }
  .lightbox img { max-width: 100%; max-height: 78vh; }
  .lightbox__close {
    top: calc(0.75rem + env(safe-area-inset-top));
    right: 0.75rem;
    width: 44px;
    height: 44px;
  }

  .marquee { font-size: 0.85rem; }

  .gourmand-on-demand { margin-top: 2rem; padding-top: 1.5rem; }

  .reservation-detail summary { padding: 0.9rem 1rem; font-size: 0.95rem; }
  .reservation-detail .form-section { padding: 0 1rem 1rem; }
  .reservation-date-input { max-width: 100%; }

  .sticky-mobile a { padding: 0.85rem 0.5rem; font-size: 0.85rem; min-height: 52px; }

  .footer-grid { gap: 1.75rem; }
  .logo.logo--footer .logo__img--footer { height: 96px; }

  .calcom-embed { min-height: 22rem; }
  .map-section__actions { flex-direction: column; }
  .map-section__actions .btn { width: 100%; }

  .admin-header { flex-direction: column; align-items: stretch; }
  .admin-tabs { flex-direction: column; }
  .admin-reservation__head { flex-direction: column; gap: 0.35rem; }
}

@media (max-width: 479px) {
  .trust-strip__inner { grid-template-columns: 1fr; }
  .hero__badges {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .hero__badge { width: 100%; }
  .stats-bar { grid-template-columns: 1fr; }
  .preview-grid { grid-template-columns: 1fr; }
  .seo-zones { justify-content: flex-start; }
  .seo-zone { font-size: 0.8rem; padding: 0.45rem 0.9rem; }
}

@media (max-width: 374px) {
  :root {
    --header-h: 80px;
    --container-pad: 1rem;
  }
  .logo--header .logo__img { height: 46px; }
  .burger { width: 40px; height: 40px; }
}

@media (min-width: 768px) and (max-width: 991px) {
  .pricing-cards--formules { grid-template-columns: repeat(2, 1fr); }
  #gourmand-animation-packs { grid-template-columns: repeat(2, 1fr); }
  .pricing-cards--on-demand { grid-template-columns: repeat(2, 1fr); }
  .cards-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .hero__grid { gap: 2rem; }
  .contact-grid { gap: 2rem; }
  .devis-card { padding: 1.75rem; }
}

@media (max-width: 1199px) {
  .split__img { order: -1; }
  .hero--home {
    min-height: auto;
    padding-bottom: 2.5rem;
  }
  body.has-sticky {
    padding-bottom: calc(var(--sticky-h) + 4.5rem + env(safe-area-inset-bottom));
  }
  .site-footer {
    padding-bottom: calc(1.5rem + env(safe-area-inset-bottom));
  }
}

[data-weekend-banner] {
  display: block;
}

[data-weekend-banner]:not(:empty) {
  margin-top: var(--header-h);
}

/* ── Hero split (accueil) ── */
.hero--home {
  min-height: 90vh;
  padding-bottom: 5rem;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 1200px) {
  .hero--home { min-height: 88vh; }
  .hero__grid { grid-template-columns: 1.05fr 0.95fr; gap: 4rem; }
}
@media (min-width: 1400px) {
  .hero__grid { gap: 5rem; }
  .hero__visual { max-height: 640px; }
  .nav-desktop a {
    padding: 0.45rem 0.75rem;
    font-size: 0.9rem;
  }
}
@media (min-width: 1600px) {
  .hero__grid {
    grid-template-columns: 1.12fr 0.88fr;
    gap: 5.5rem;
  }
  .hero__visual { max-height: 720px; }
  .hero h1 { font-size: clamp(2.5rem, 3.2vw, 3.75rem); }
  .nav-desktop ul { gap: 0.35rem; }
}
.hero__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  max-height: 560px;
  background: var(--forest-deep);
}
@media (max-width: 1199px) {
  .hero__visual {
    display: block;
    max-height: 320px;
    aspect-ratio: 16/10;
  }
}
.hero__visual img,
.hero__visual svg,
.hero__visual-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
.hero__visual-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 252, 246, 0.95);
  backdrop-filter: blur(8px);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
  font-size: 0.9rem;
}
.hero__visual-badge strong {
  display: block;
  font-family: var(--font-display);
  color: var(--forest);
  font-size: 1.1rem;
}

/* ── Marquee confiance ── */
.marquee {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  contain: layout paint;
  background: var(--forest);
  color: rgba(255,255,255,0.9);
  padding: 0.85rem 0;
  border-top: 1px solid rgba(217,180,92,0.2);
  border-bottom: 1px solid rgba(217,180,92,0.2);
}
.marquee__track {
  display: flex;
  width: max-content;
  max-width: none;
  animation: marquee 35s linear infinite;
  will-change: transform;
  pointer-events: none;
}
.marquee__group {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-shrink: 0;
  padding-right: 3rem;
}
.marquee__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  font-size: 0.9rem;
  font-weight: 500;
}
.marquee__item::before {
  content: "✦";
  color: var(--gold);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Zones SEO locales ── */
.seo-zones {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}
.seo-zone {
  padding: 0.5rem 1.1rem;
  background: var(--white);
  border: 1px solid rgba(13,74,51,0.12);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--forest);
  transition: all 0.25s;
}
.seo-zone:hover {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}

/* ── WhatsApp FAB ── */
.whatsapp-fab {
  position: fixed;
  bottom: calc(5.5rem + env(safe-area-inset-bottom));
  right: 1.25rem;
  z-index: 997;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-fab:hover { color: var(--white); transform: scale(1.08); box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55); }
@media (max-width: 1199px) {
  .whatsapp-fab {
    right: 1rem;
    bottom: calc(4.75rem + env(safe-area-inset-bottom));
    width: 52px;
    height: 52px;
  }
  .back-to-top {
    bottom: calc(4.75rem + env(safe-area-inset-bottom));
    right: 4.25rem;
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
  }
}
@media (min-width: 1200px) {
  .whatsapp-fab { bottom: 1.75rem; }
}

/* ── Back to top ── */
.back-to-top {
  position: fixed;
  bottom: calc(1.25rem + env(safe-area-inset-bottom));
  right: 5.5rem;
  left: auto;
  z-index: 996;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  font-size: 1.25rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
  box-shadow: var(--shadow);
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (min-width: 1200px) {
  .back-to-top {
    bottom: 1.75rem;
    right: 5.75rem;
  }
}
.back-to-top:hover { background: var(--forest-light); }

/* ── Footer social ── */
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.footer-social__link {
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.85) !important;
  transition: all 0.2s;
}
.footer-social__link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--forest-deep) !important;
}

/* ── Mini FAQ accueil ── */
.mini-faq { max-width: 720px; margin: 0 auto; }

/* ── 404 ── */
.page-404 {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 0;
}
.page-404 h1 {
  font-size: clamp(4rem, 15vw, 8rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

/* ── Formule privatisation (carte premium) ── */
.formula-card {
  background: linear-gradient(160deg, var(--white) 0%, rgba(217, 180, 92, 0.08) 100%);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
@media (min-width: 768px) { .formula-card { padding: 3rem 2.5rem; } }
.formula-card__header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  color: var(--forest);
  margin: 0.5rem 0 1rem;
}
.formula-card__list {
  text-align: left;
  max-width: 520px;
  margin: 0 auto 2rem;
}
.formula-card--riviera {
  max-width: 800px;
  text-align: left;
}
.formula-card--riviera .formula-card__header {
  text-align: center;
}
.formula-card__subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin: 0;
}
.formula-card__intro {
  text-align: center;
  color: var(--forest);
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.formula-card__total {
  text-align: center;
  font-size: 1.15rem;
  margin: 0 0 1.5rem;
  color: var(--forest-deep);
}
.formula-card__total strong {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--forest);
}

/* ── Carte Google Maps ── */
.map-section {
  padding: 3.5rem 0;
}
.map-section--sand { background: var(--sand); }
.map-section--white { background: var(--white); }
.map-section__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 2rem;
}
.map-section__header h2 {
  margin-bottom: 0.75rem;
}
.map-section__address {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.map-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(13, 74, 51, 0.08);
  background: var(--sand);
  max-width: 960px;
  margin: 0 auto;
}
.map-embed iframe {
  display: block;
  width: 100%;
  min-height: 380px;
  height: 420px;
}
.contact-info__map-embed {
  margin-top: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(13, 74, 51, 0.1);
  box-shadow: var(--shadow-sm);
}
.contact-info__map-embed iframe {
  display: block;
  width: 100%;
  height: 160px;
  border: 0;
}
@media (max-width: 767px) {
  .map-embed iframe { min-height: 280px; height: 300px; }
  .map-section__actions .btn { width: 100%; }
}

/* ── Prochaines dates (accueil) ── */
.upcoming-dates {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  max-width: 720px;
  margin: 0 auto;
}
.upcoming-date {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.25rem;
  background: var(--white);
  border: 1px solid rgba(13, 74, 51, 0.12);
  border-radius: var(--radius-md);
  font-weight: 600;
  color: var(--forest-deep);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.upcoming-date:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.legend-dot--unavailable { background: #bbb; }

.calendar-day--unavailable {
  background: rgba(0, 0, 0, 0.04);
  color: var(--text-muted);
  cursor: default;
}
.calendar-day--today {
  box-shadow: inset 0 0 0 2px var(--gold);
}
.calendar-day__num { position: relative; z-index: 1; }
.calendar-loading {
  text-align: center;
  padding: 3rem;
  color: var(--text-muted);
}
.calendar-detail__box {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}
.calendar-detail__date { margin: 0; }
.calendar-detail__status { margin: 0; font-size: 0.95rem; }

/* Fil d'Ariane */
.breadcrumb-nav {
  padding: 0.75rem 0 0;
  background: var(--cream);
}
.breadcrumb-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  list-style: none;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 0 1.25rem;
}
.breadcrumb-nav__list li:not(:last-child)::after {
  content: "›";
  margin-left: 0.35rem;
  color: var(--gold);
}
.breadcrumb-nav a { color: var(--forest); font-weight: 500; }

/* Bandeau week-end */
.weekend-banner {
  background: linear-gradient(90deg, var(--forest-deep) 0%, var(--forest) 100%);
  color: var(--white);
  padding: 0.75rem 0;
  position: relative;
  z-index: 2;
}
.weekend-banner__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  justify-content: center;
  text-align: center;
}
.weekend-banner__inner p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  flex: 1 1 200px;
}
.weekend-banner__icon { font-size: 1.15rem; flex-shrink: 0; }

@media (max-width: 767px) {
  .weekend-banner { padding: 0.65rem 0; }
  .weekend-banner__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0.6rem;
  }
  .weekend-banner__inner p {
    flex: 0 0 auto;
    font-size: 0.85rem;
  }
  .weekend-banner__inner .btn {
    width: 100%;
    margin-top: 0;
  }
}

/* Réassurance */
.reassurance {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) { .reassurance { grid-template-columns: repeat(5, 1fr); } }
.reassurance__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.25rem 1rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(13, 74, 51, 0.06);
}
.reassurance__icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.reassurance__item strong { font-size: 0.9rem; color: var(--forest-deep); margin-bottom: 0.25rem; }
.reassurance__item span { font-size: 0.8rem; color: var(--text-muted); line-height: 1.4; }

/* Bannière préremplissage */
.prefill-banner {
  display: none;
  padding: 1rem 1.25rem;
  background: rgba(217, 180, 92, 0.15);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}
.prefill-banner.is-visible { display: block; }
.prefill-banner p { margin: 0; }

/* Appel mobile contact */
.contact-call-mobile {
  display: none;
  position: fixed;
  bottom: calc(var(--sticky-h) + 0.75rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 900;
  padding: 0.75rem 1.5rem;
  background: var(--forest);
  color: var(--white);
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: var(--shadow-lg);
  text-decoration: none;
  white-space: nowrap;
}
.contact-call-mobile:hover { color: var(--white); background: var(--forest-light); }
@media (max-width: 767px) {
  .contact-call-mobile { display: inline-flex; }
  body.has-sticky .contact-call-mobile { bottom: calc(var(--sticky-h) + 0.5rem); }
}

/* Contenu SEO local */
.seo-content {
  max-width: 720px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.75;
}
.seo-content h2 { font-size: 1.35rem; margin-bottom: 0.75rem; color: var(--forest-deep); }

/* CTA inter-section */
.section-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2rem;
}
@media (max-width: 639px) {
  .section-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .section-cta .btn { width: 100%; }
}

.form-success:focus { outline: 2px solid var(--gold); outline-offset: 2px; }

/* ── Inline code ── */
code {
  font-family: ui-monospace, monospace;
  font-size: 0.85em;
  background: rgba(13, 74, 51, 0.08);
  padding: 0.15em 0.4em;
  border-radius: 4px;
}

/* ── Admin réservations ── */
.admin-page { background: var(--sand); min-height: 100vh; }
.admin-shell { max-width: 960px; margin: 0 auto; padding: 2rem 1.25rem 4rem; }
.admin-card {
  max-width: 400px;
  margin: 4rem auto;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.admin-card h1 { margin-bottom: 0.25rem; }
.admin-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.admin-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.admin-tab {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(13, 74, 51, 0.15);
  background: var(--white);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  cursor: pointer;
}
.admin-tab.is-active {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}
.admin-badge {
  display: inline-flex;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.35rem;
  margin-left: 0.35rem;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--forest-deep);
  border-radius: 999px;
  font-size: 0.75rem;
}
.admin-panel { display: none; }
.admin-panel.is-active { display: block; }
.admin-hint {
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(217, 180, 92, 0.12);
  border-radius: var(--radius);
  font-size: 0.9rem;
}
.admin-reservations { display: grid; gap: 1rem; }
.admin-reservation {
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--warning);
}
.admin-reservation--confirmed { border-left-color: var(--success); }
.admin-reservation--rejected { border-left-color: var(--error); opacity: 0.85; }
.admin-reservation__head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.admin-reservation__status {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
}
.admin-reservation__meta { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.5rem; }
.admin-reservation__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

/* ── Print ── */
@media print {
  .site-header, .sticky-mobile, .cta-band, .burger, .nav-mobile { display: none !important; }
  body { background: white; }
  main { padding-top: 0; }
}

/* ── Cal.com embed ── */
.calcom-wrap {
  margin-top: 1.5rem;
}
.calcom-embed {
  min-height: 28rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}
.calcom-embed.is-loading {
  display: flex;
  align-items: center;
  justify-content: center;
}
.calcom-embed__loading {
  color: var(--text-muted);
  padding: 2rem;
}
.calcom-fallback {
  padding: 2rem;
  text-align: center;
}
.calendar-notice {
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(217, 180, 92, 0.12);
  border-radius: var(--radius);
  font-size: 0.9rem;
}

/* Formulaire détaillé (Cal.com actif) */
.reservation-detail {
  border: 1px solid rgba(13, 74, 51, 0.12);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}
.reservation-detail summary {
  padding: 1rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}
.reservation-detail summary::-webkit-details-marker { display: none; }
.reservation-detail summary::after {
  content: "＋";
  float: right;
  font-weight: 400;
  opacity: 0.6;
}
.reservation-detail[open] summary::after { content: "−"; }
.reservation-detail--standalone summary { display: none; }
.reservation-detail--standalone .form-section { padding-top: 0; }
.reservation-date-calcom-notice {
  margin-bottom: 0.75rem;
}
.reservation-date-calcom-notice .calendar-notice {
  margin-bottom: 0.75rem;
}
.reservation-date-input {
  width: 100%;
  max-width: 16rem;
  margin-top: 0.5rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(13, 74, 51, 0.2);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
}
.reservation-detail .form-section {
  padding: 0 1.25rem 1.25rem;
}
