@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Nunito+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Tangerine:wght@400;700&display=swap");

/* Head spa Reims — ambiance moodboard (couleurs & typo), contenu éditorial */

:root {
  --bg-main: #f5efe6;
  --bg-secondary: #e8dfd3;
  --golden-nude: #d6bfa4;
  --green-soft: #a3b18a;
  --green-deep: #3a5a40;
  --ink: #2b2b2b;
  --ink-muted: rgba(43, 43, 43, 0.78);
  --cream: #faf7f2;
  --frame: rgba(232, 223, 211, 0.65);

  --font-h1: "Tangerine", cursive;
  --font-script: "Tangerine", cursive;
  --font-display: "Montserrat", system-ui, sans-serif;
  --font-sans: "Nunito Sans", system-ui, sans-serif;
  --surface-white: rgba(255, 255, 255, 0.92);
  --surface-card: #ffffff;

  --r-sm: 14px;
  --r-md: 18px;
  --r-lg: 22px;
  --r-xl: 32px;

  --shadow: 0 20px 48px rgba(58, 90, 64, 0.08);
  --shadow-soft: 0 12px 32px rgba(43, 43, 43, 0.06);

  --space-section: clamp(3.5rem, 9vw, 5.75rem);
  --space-band: clamp(2.5rem, 6vw, 4rem);
  --max-prose: 38rem;
  --max-layout: min(1120px, 92%);
  --scroll-progress: 0%;
  /* Repli si JS absent : hauteur topbar + logo (voir main.js --karyn-hero-viewport-fill) */
  --karyn-topbar-height: clamp(4rem, 11vw, 5.75rem);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

main > section[id],
main section[id] {
  scroll-margin-top: 0.75rem;
}

/* Pas d’espace beige entre la barre de navigation et le hero (maquette HTML + pages sans blocs) */
header.topbar + #contenu-principal,
header.topbar + main#contenu-principal {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

#contenu-principal > .hero.hero--cover:first-child {
  margin-top: -16px !important;
  margin-block-start: -16px !important;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-muted);
  background-color: var(--bg-main);
  background-image:
    radial-gradient(900px 520px at 10% 0%, rgba(214, 191, 164, 0.35), transparent 58%),
    radial-gradient(720px 480px at 92% 8%, rgba(163, 177, 138, 0.22), transparent 55%),
    radial-gradient(640px 520px at 50% 100%, rgba(232, 223, 211, 0.55), transparent 52%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -120px;
  z-index: 200;
  padding: 0.65rem 1rem;
  border-radius: 12px;
  background: var(--green-deep);
  color: var(--cream);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.skip-link:focus {
  top: 1rem;
}

:focus-visible {
  outline: 3px solid rgba(163, 177, 138, 0.95);
  outline-offset: 3px;
}

/* Boutons : un seul anneau au focus clavier (pas bordure + outline global) */
.btn:focus-visible {
  outline: 3px solid rgba(163, 177, 138, 0.95);
  outline-offset: 2px;
  border-color: transparent !important;
  box-shadow: none !important;
}

h2,
h3 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.18;
  letter-spacing: -0.02em;
  font-weight: 600;
}

h1 {
  font-family: var(--font-h1);
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: 0.02em;
  font-weight: 700;
  font-size: clamp(2.75rem, 6.5vw, 4.25rem);
  margin: 0 0 1rem;
  text-wrap: balance;
}

h2 {
  font-size: clamp(1.55rem, 2.8vw, 2.1rem);
  margin: 0 0 0.75rem;
  text-wrap: balance;
}

h3 {
  font-size: 1.12rem;
  margin: 0 0 0.45rem;
  font-weight: 600;
}

p {
  margin: 0 0 1rem;
}

a {
  color: inherit;
}

.layout {
  width: var(--max-layout);
  margin: 0 auto;
  padding-inline: clamp(1.1rem, 4vw, 1.5rem);
}

.layout--narrow {
  width: min(640px, 92%);
}

.layout--split {
  display: grid;
  gap: clamp(1.75rem, 4vw, 2.75rem);
  align-items: center;
}

@media (min-width: 880px) {
  .layout--split {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }
}

.page-stub-figure {
  margin: 2rem 0 1.5rem;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(43, 43, 43, 0.08);
}

.page-stub-figure img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

/* ——— Topbar ——— */

.topbar {
  position: relative;
  z-index: 100;
  width: 100%;
  margin-bottom: 0;
  padding: 0.55rem clamp(1.1rem, 4vw, 1.5rem);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background 320ms ease, box-shadow 320ms ease;
  /* Pas de border-bottom : 1 px + arrondis laissaient voir le fond beige du body entre barre et hero */
  border-bottom: none;
  /* Trait intérieur uniquement : pas d’ombre « sous » la barre qui mord sur le hero */
  box-shadow: inset 0 -1px 0 rgba(43, 43, 43, 0.07);
}

.topbar::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: var(--scroll-progress);
  background: linear-gradient(90deg, var(--green-soft), var(--golden-nude));
  transition: width 120ms linear;
}

.topbar.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    inset 0 -1px 0 rgba(43, 43, 43, 0.07),
    0 8px 28px rgba(43, 43, 43, 0.06);
}

.topbar__inner {
  width: var(--max-layout);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  position: relative;
}

.topbar__ctas {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}

.topbar__brand {
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  gap: 0.05rem;
  padding: 0.2rem 0.25rem;
}

.topbar__brand--logo {
  padding: 0.15rem 0;
}

.topbar__brand-logo {
  display: block;
  height: 3.25rem;
  width: auto;
  max-width: 7rem;
  object-fit: contain;
  object-position: left center;
}

/* Garde des proportions logo identiques sur les vues WooCommerce,
   meme si le markup WP n'injecte pas les classes thematiques attendues. */
.topbar .custom-logo-link {
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  gap: 0.05rem;
  padding: 0.15rem 0;
}

.topbar .custom-logo {
  display: block;
  height: 3.25rem;
  width: auto;
  max-width: 7rem;
  object-fit: contain;
  object-position: left center;
}

.topbar__nav {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.topbar__nav a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  transition: color 220ms ease, background-color 220ms ease;
}

.topbar__nav a:hover {
  background: rgba(163, 177, 138, 0.2);
}

.topbar__nav a.is-active {
  background: rgba(58, 90, 64, 0.12);
  color: var(--green-deep);
}

.topbar__burger {
  display: none;
  margin-left: auto;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(43, 43, 43, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  flex-direction: column;
  padding: 0.25rem;
}

.topbar__burger-line {
  width: 1.05rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.topbar__mobile-panel {
  position: absolute;
  top: calc(100% + 0.45rem);
  right: 0;
  width: min(88vw, 320px);
  border-radius: 14px;
  border: 1px solid rgba(43, 43, 43, 0.12);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 34px rgba(43, 43, 43, 0.14);
  padding: 0.5rem;
  z-index: 140;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.topbar__mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.topbar__mobile-nav a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 10px;
  padding: 0.55rem 0.65rem;
}

.topbar__mobile-nav a:hover,
.topbar__mobile-nav a:focus-visible {
  background: rgba(163, 177, 138, 0.2);
}

.topbar__mobile-nav a.is-active {
  background: rgba(58, 90, 64, 0.12);
  color: var(--green-deep);
}

.topbar.is-menu-open .topbar__mobile-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.topbar.is-menu-open .topbar__burger-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.topbar.is-menu-open .topbar__burger-line:nth-child(2) {
  opacity: 0;
}

.topbar.is-menu-open .topbar__burger-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ——— Hero type headspareims.fr : pleine largeur, photo, voile, titre en 3 lignes ——— */

.hero--cover {
  position: relative;
  z-index: 1;
  /* Topbar au-dessus : une seule « fenêtre » = hauteur utile (JS définit --karyn-hero-viewport-fill) */
  min-height: calc(100vh - var(--karyn-topbar-height));
  min-height: calc(100svh - var(--karyn-topbar-height));
  min-height: var(--karyn-hero-viewport-fill, calc(100dvh - var(--karyn-topbar-height)));
  display: flex;
  flex-direction: column;
  /* Topbar non fixe : plus d’espace réservé sous le menu */
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-block-start: 0;
  color: #faf7f2;
  overflow: hidden;
}

/* Hero en blocs : pas de padding sur la section (sinon bande beige du body au-dessus/sous le Cover) */
.maquette-entry .entry-content .hero.hero--cover.wp-block-group {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  min-height: var(--karyn-hero-viewport-fill, calc(100dvh - var(--karyn-topbar-height, 4.5rem))) !important;
  display: block !important;
  margin-top: 0 !important;
  background: #121212;
}

.maquette-entry .entry-content .hero.hero--cover.hero--compact.wp-block-group {
  --hero-compact-h: clamp(15rem, 40svh, 28rem);
  min-height: var(--hero-compact-h) !important;
  height: var(--hero-compact-h) !important;
}

@media (max-width: 820px) {
  /* Mobile : hauteur hero stable (svh) pour supprimer l'effet zoom au scroll. */
  .hero--cover {
    min-height: calc(100svh - var(--karyn-topbar-height)) !important;
  }

  .maquette-entry .entry-content .hero.hero--cover.wp-block-group {
    min-height: calc(100svh - var(--karyn-topbar-height, 4.5rem)) !important;
  }
}

.maquette-entry .entry-content.maquette-blocks .hero.hero--cover.wp-block-group + .wp-block-group,
.maquette-entry .entry-content.maquette-blocks .hero.hero--cover.wp-block-group + section {
  margin-top: 0 !important;
  margin-block-start: 0 !important;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__media-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.03);
}

@media (prefers-reduced-motion: reduce) {
  .hero__media-img {
    transform: none;
  }
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  /* Léger fondu neutre en bas uniquement pour le contraste du texte clair */
  background: linear-gradient(180deg, transparent 0%, transparent 45%, rgba(0, 0, 0, 0.35) 100%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  min-height: 0;
  width: 100%;
  /* Laisse passer les gestes hors du bloc texte / liens */
  pointer-events: none;
}

.hero__scroll {
  position: relative;
  z-index: 4;
  flex-shrink: 0;
  align-self: center;
  margin-bottom: max(0.85rem, env(safe-area-inset-bottom, 0px));
  padding: 0.45rem 0.65rem;
  color: rgba(250, 247, 242, 0.92);
  text-decoration: none;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  pointer-events: auto;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.hero__scroll:hover {
  color: #fff;
  background: rgba(0, 0, 0, 0.32);
  border-color: rgba(255, 255, 255, 0.22);
}

.hero__scroll:focus-visible {
  outline: 2px solid var(--golden-nude);
  outline-offset: 3px;
}

.hero__scroll-bounce {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: hero-scroll-nudge 1.85s ease-in-out infinite;
}

.hero__scroll-icon {
  display: block;
}

@keyframes hero-scroll-nudge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(0.35rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__scroll-bounce {
    animation: none;
  }
}

.hero__content {
  max-width: 38rem;
  text-align: left;
  pointer-events: auto;
}

@media (max-width: 720px) {
  .hero__content {
    text-align: center;
    margin-inline: auto;
  }
}

.hero__title {
  margin: 0 0 1.25rem;
  font-family: var(--font-h1);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0.03em;
}

/* Lisibilité sur photo : ombre sur chaque ligne (text-shadow du h1 ne s’applique pas aux spans) */
.hero--cover .hero__title,
.hero--cover .hero__title-line {
  text-shadow:
    0 0 1px rgba(0, 0, 0, 0.9),
    0 1px 2px rgba(0, 0, 0, 0.85),
    0 2px 12px rgba(0, 0, 0, 0.55),
    0 8px 32px rgba(0, 0, 0, 0.35);
}

.hero__title-line {
  display: block;
  font-size: clamp(2.5rem, 7vw, 4rem);
  color: #faf7f2;
}

.hero__title-line--accent {
  font-size: clamp(2.75rem, 7.5vw, 4.35rem);
  margin: 0.12rem 0;
}

.hero--cover .hero__title-line--accent em {
  text-shadow:
    0 0 1px rgba(0, 0, 0, 0.75),
    0 1px 2px rgba(0, 0, 0, 0.7),
    0 2px 10px rgba(0, 0, 0, 0.5),
    0 0 18px rgba(0, 0, 0, 0.45);
}

.hero__title-line--accent em {
  font-style: normal;
  font-weight: 700;
  color: var(--golden-nude);
}

.hero__intro {
  margin: 0 0 0.85rem;
  font-family: var(--font-sans);
  font-size: clamp(1.02rem, 2.1vw, 1.14rem);
  line-height: 1.65;
  color: rgba(250, 247, 242, 0.92);
  max-width: 36rem;
}

.hero__intro strong {
  font-weight: 600;
  color: #fff;
}

.hero__intro--secondary {
  margin-bottom: 1.35rem;
  opacity: 0.94;
}

.hero__bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

@media (min-width: 640px) {
  .hero__bullets {
    gap: 0.5rem;
  }
}

.hero__bullets li {
  position: relative;
  padding-left: 1.65rem;
  font-family: var(--font-sans);
  font-size: 0.94rem;
  font-weight: 500;
  color: rgba(250, 247, 242, 0.95);
}

@media (max-width: 720px) {
  .hero__bullets li {
    padding-left: 0;
    text-align: center;
  }

  .hero__bullets li::before {
    display: none;
  }
}

.hero__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--golden-nude);
  box-shadow: 0 0 0 4px rgba(214, 191, 164, 0.25);
}

.hero__actions {
  margin-top: clamp(1.5rem, 4vw, 2rem);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
}

@media (max-width: 720px) {
  .hero__actions {
    justify-content: center;
  }
}

.kicker {
  margin: 0 0 0.85rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-deep);
}

.band .kicker {
  color: var(--green-deep);
}

.kicker--on-accent {
  color: var(--green-deep);
  opacity: 0.9;
}

/* ——— Boutons ——— */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.92rem 1.55rem;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.96rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 240ms ease, filter 240ms ease, box-shadow 240ms ease, background 240ms ease;
}

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

.btn--sm {
  padding: 0.58rem 1.1rem;
  font-size: 0.88rem;
}

.btn--primary {
  background: linear-gradient(155deg, var(--green-deep), #2d4531);
  color: var(--cream);
  box-shadow: 0 14px 32px rgba(58, 90, 64, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn--primary:hover {
  filter: brightness(1.05);
}

.btn--secondary {
  background: linear-gradient(155deg, #c4d1b2, var(--green-soft));
  color: var(--ink);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(58, 90, 64, 0.12);
}

.btn--secondary:hover {
  filter: saturate(1.05);
}

.btn--ghost {
  background: transparent;
  color: var(--green-deep);
  border-color: rgba(58, 90, 64, 0.35);
  box-shadow: none;
}

.btn--ghost:hover {
  background: rgba(163, 177, 138, 0.18);
}

.btn--on-accent {
  border-color: rgba(58, 90, 64, 0.3);
  color: var(--ink);
}

.btn--on-accent:hover {
  background: rgba(255, 255, 255, 0.42);
}

/* Variantes hero : après .btn pour ne pas être écrasées par border / typo de base */
.btn.btn--hero-primary {
  background: #faf7f2;
  color: var(--green-deep);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
  font-weight: 600;
  padding: 0.95rem 1.5rem;
}

.btn.btn--hero-primary:hover {
  filter: brightness(1.05);
  background: #fff;
}

.btn.btn--hero-outline {
  background: rgba(0, 0, 0, 0.18);
  color: #faf7f2;
  border: 2px solid rgba(250, 247, 242, 0.65);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  font-weight: 600;
  padding: 0.92rem 1.45rem;
}

.btn.btn--hero-outline:hover {
  background: rgba(250, 247, 242, 0.14);
  border-color: rgba(250, 247, 242, 0.95);
  color: #fff;
}

/* ——— Bienfaits (bloc clair type vitrine) ——— */

.band--stats {
  padding: var(--space-band) 0 calc(var(--space-band) * 0.95);
  background: var(--surface-white);
  border-block: 1px solid rgba(43, 43, 43, 0.05);
}

.band--stats .section-head {
  margin-bottom: clamp(1.35rem, 3.5vw, 2rem);
}

.stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 820px) {
  .stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.stats__item {
  padding: 1.5rem 1.2rem 1.45rem;
  border-radius: 18px;
  background: var(--surface-card);
  border: 1px solid rgba(43, 43, 43, 0.06);
  box-shadow: 0 14px 36px rgba(43, 43, 43, 0.05);
  text-align: center;
  border-top: 3px solid var(--green-soft);
}

.stats__icon {
  display: block;
  width: 3rem;
  height: 3rem;
  margin: 0 auto 0.9rem;
  border-radius: 50%;
  background: rgba(163, 177, 138, 0.22);
  border: 1px solid rgba(58, 90, 64, 0.12);
}

.stats__icon--ring {
  box-shadow: 0 0 0 6px rgba(163, 177, 138, 0.12);
  border-width: 2px;
  border-color: rgba(214, 191, 164, 0.85);
  background: rgba(255, 255, 255, 0.6);
}

.stats__icon--leaf {
  background: linear-gradient(145deg, rgba(163, 177, 138, 0.35), rgba(58, 90, 64, 0.12));
}

.stats__icon--wave {
  border-radius: 40% 60% 45% 55%;
  background: linear-gradient(160deg, rgba(214, 191, 164, 0.45), rgba(163, 177, 138, 0.25));
}

.stats__value {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.stats__label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  line-height: 1.58;
  color: var(--ink-muted);
}

/* ——— Bandes ——— */

.band {
  position: relative;
  z-index: 1;
  padding: var(--space-section) 0;
}

.band--paper {
  background: transparent;
}

.band--mist {
  background: linear-gradient(180deg, rgba(232, 223, 211, 0.65), rgba(245, 239, 230, 0.35));
  border-radius: 0 0 var(--r-xl) var(--r-xl);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.band--accent {
  padding: clamp(2.35rem, 6vw, 3.85rem) 0;
  background:
    radial-gradient(700px 420px at 14% 28%, rgba(163, 177, 138, 0.35), transparent 60%),
    radial-gradient(560px 360px at 88% 18%, rgba(214, 191, 164, 0.45), transparent 55%),
    linear-gradient(165deg, var(--bg-secondary), #ddd2c4);
}

.band--book {
  padding-bottom: calc(var(--space-section) + 1rem);
}

.band__layout {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
}

@media (min-width: 860px) {
  .band__layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  }
}

.band__layout--institut {
  align-items: center;
}

@media (min-width: 860px) {
  .band__layout--institut {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 380px);
    gap: clamp(1.5rem, 4vw, 2.75rem);
  }
}

.institut__text {
  min-width: 0;
}

.institut-photo {
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(43, 43, 43, 0.08);
}

.institut-photo img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

@media (max-width: 859px) {
  .institut-photo {
    max-width: 420px;
    margin-inline: auto;
  }
}

.section-head {
  max-width: var(--max-prose);
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
  max-width: 44rem;
}

.section-head__lede {
  margin: 0.65rem auto 0;
  max-width: 36rem;
  font-family: var(--font-sans);
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--ink-muted);
}

.section-head__lede--after-title {
  margin-top: 0.5rem;
}

.prose {
  max-width: var(--max-prose);
  font-size: 1.04rem;
}

.prose__last {
  margin-bottom: 0;
}

/* ——— Grille tarifs (type headspareims.fr) ——— */

.cards-tarifs {
  list-style: none;
  margin: clamp(1.5rem, 4vw, 2.25rem) 0 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

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

.card-tarif {
  padding: 1.5rem 1.35rem 1.45rem;
  border-radius: 18px;
  background: var(--surface-card);
  border: 1px solid rgba(43, 43, 43, 0.06);
  box-shadow: 0 18px 44px rgba(43, 43, 43, 0.06);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.card-tarif:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 50px rgba(58, 90, 64, 0.1);
}

.card-tarif--duo {
  border-color: rgba(58, 90, 64, 0.14);
  background: linear-gradient(165deg, #ffffff, rgba(163, 177, 138, 0.12));
}

@media (min-width: 900px) {
  .card-tarif--duo {
    grid-column: span 2;
  }
}

.card-tarif__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem 1rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(214, 191, 164, 0.45);
}

.card-tarif__titres {
  flex: 1 1 12rem;
  min-width: 0;
}

.card-tarif__titres h3 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.08rem, 2vw, 1.22rem);
}

.card-tarif__durée {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(58, 90, 64, 0.88);
}

.card-tarif__prix {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--green-deep);
  line-height: 1;
}

.card-tarif__liste {
  margin: 0;
  padding: 0 0 0 1.1rem;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--ink-muted);
}

.card-tarif__liste li {
  margin-bottom: 0.35rem;
}

.card-tarif__liste li:last-child {
  margin-bottom: 0;
}

.card-tarif__note {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--ink-muted);
}

.card-tarif__duo-prix {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--green-deep);
}

.tarifs__cta {
  margin: clamp(1.75rem, 4vw, 2.25rem) 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  justify-content: center;
  align-items: center;
}

/* ——— Tunnel ——— */

.tunnel {
  list-style: none;
  margin: clamp(1.5rem, 4vw, 2rem) auto 0;
  padding: 0;
  max-width: 920px;
  display: grid;
  gap: 1rem;
}

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

.tunnel__step {
  padding: 1.25rem 1.2rem 1.35rem;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(214, 191, 164, 0.55);
  box-shadow: var(--shadow-soft);
}

.tunnel__step p:last-child {
  margin-bottom: 0;
}

/* ——— Bloc cadeau ——— */

.gift__copy p:last-of-type {
  margin-bottom: 1.15rem;
}

.gift__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
}

.band--accent .gift__actions {
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0.65rem;
  max-width: min(22rem, 100%);
}

.band--accent .gift__actions .btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}

.gift__bullets {
  list-style: none;
  margin: 0;
  padding: 1.35rem 1.25rem;
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(58, 90, 64, 0.12);
  box-shadow: var(--shadow-soft);
}

.band--accent .gift__bullets {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.gift__bullets li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.75rem;
  font-size: 0.98rem;
  color: var(--ink-muted);
}

.gift__bullets li:last-child {
  margin-bottom: 0;
}

.gift__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--green-soft);
  box-shadow: 0 0 0 4px rgba(163, 177, 138, 0.25);
}

/* ——— Avis ——— */

.quotes {
  margin-top: clamp(1.5rem, 4vw, 2rem);
  display: grid;
  gap: 1.1rem;
}

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

.quote-card {
  margin: 0;
  padding: 1.35rem 1.25rem 1.4rem;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(214, 191, 164, 0.45);
  box-shadow: var(--shadow-soft);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.quote-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.quote-card blockquote {
  margin: 0;
}

.quote-card blockquote p {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.72;
}

.quote-card figcaption {
  margin-top: 0.85rem;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--green-deep);
}

/* ——— Réservation ——— */

.book {
  text-align: center;
  padding: clamp(2rem, 5vw, 2.75rem);
  border-radius: var(--r-xl);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(214, 191, 164, 0.5);
  box-shadow: var(--shadow-soft);
}

@supports (backdrop-filter: blur(10px)) {
  .book {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
}

.book__lede {
  margin-inline: auto;
  max-width: 32rem;
}

.book__actions {
  margin-top: clamp(1.25rem, 3vw, 1.65rem);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  justify-content: center;
  align-items: center;
}

.embed-slot {
  margin-top: 1.35rem;
  padding: 1.1rem 1rem;
  border-radius: var(--r-md);
  border: 1px dashed rgba(58, 90, 64, 0.28);
  background: rgba(245, 239, 230, 0.65);
  font-size: 0.95rem;
}

.embed-slot span {
  display: block;
  margin-top: 0.35rem;
  opacity: 0.75;
  font-size: 0.88rem;
}

/* ——— Footer ——— */

.site-footer {
  position: relative;
  z-index: 1;
  padding: clamp(2rem, 4.5vw, 2.85rem) 0 calc(2.1rem + env(safe-area-inset-bottom, 0));
  background: linear-gradient(180deg, var(--green-deep), #2a4030);
  color: rgba(250, 247, 242, 0.9);
}

.site-footer a {
  text-decoration: none;
  border-bottom: 1px solid rgba(250, 247, 242, 0.22);
  padding-bottom: 1px;
}

.site-footer a:hover {
  border-bottom-color: rgba(250, 247, 242, 0.5);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 0.9fr;
  gap: 1.3rem 1.1rem;
  align-items: start;
}

.site-footer__bottom {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(250, 247, 242, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.site-footer__bottom-link {
  text-decoration: none;
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  background: rgba(250, 247, 242, 0.06);
  border: 1px solid rgba(250, 247, 242, 0.14);
  color: rgba(250, 247, 242, 0.92);
  transition: background-color 220ms ease, border-color 220ms ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-footer__bottom-link:hover {
  background: rgba(163, 177, 138, 0.2);
  border-color: rgba(163, 177, 138, 0.35);
}

.site-footer__bottom-link svg {
  width: 18px;
  height: 18px;
  display: block;
}

.site-footer__bottom-sep {
  opacity: 0.55;
}

.site-footer__legalline {
  margin-top: 0.75rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(250, 247, 242, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: nowrap;
  white-space: nowrap;
  text-align: center;
}

.site-footer__legal-link {
  text-decoration: none;
  color: rgba(250, 247, 242, 0.9);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(250, 247, 242, 0.22);
  padding-bottom: 2px;
}

.site-footer__legal-link:hover {
  color: rgba(250, 247, 242, 1);
  border-bottom-color: rgba(214, 191, 164, 0.65);
}

.site-footer__legal-sep {
  opacity: 0.55;
}

.site-footer__credit {
  margin: 0.75rem 0 0;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  color: rgba(250, 247, 242, 0.58);
}

.site-footer__credit-link {
  color: inherit;
  border-bottom-color: rgba(250, 247, 242, 0.3);
}

.site-footer__credit-link:hover {
  color: rgba(250, 247, 242, 0.85);
  border-bottom-color: rgba(250, 247, 242, 0.48);
}

.site-footer__col {
  min-width: 0;
}

.site-footer__brand-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-footer__logo {
  display: block;
  height: 4.35rem;
  width: auto;
  max-width: 6.25rem;
  object-fit: contain;
  flex-shrink: 0;
}

/* Verrouille la taille du logo footer sur toutes les pages WooCommerce. */
body.woocommerce .site-footer .site-footer__logo,
body.woocommerce-page .site-footer .site-footer__logo {
  height: 4.35rem;
  width: auto;
  max-width: 6.25rem;
}

.site-footer__script {
  margin: 0;
  font-family: var(--font-script);
  font-size: 2.1rem;
  color: rgba(250, 247, 242, 0.95);
  line-height: 1;
}

.site-footer__tagline {
  margin: 0.5rem 0 0.85rem;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  color: rgba(250, 247, 242, 0.78);
}

.site-footer__title {
  margin: 0 0 0.35rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: rgba(250, 247, 242, 0.85);
}

.site-footer__linklist {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.site-footer__linklist a {
  display: inline-block;
}

.site-footer__links .site-footer__linklist a {
  border-bottom: none !important;
  padding: 0.15rem 0.35rem;
  border-radius: 999px;
  color: rgba(250, 247, 242, 0.9);
  transition: background-color 220ms ease;
}

.site-footer__links .site-footer__linklist a:hover {
  background: rgba(163, 177, 138, 0.2);
}

.site-footer__meta-line {
  margin: 0;
  color: rgba(250, 247, 242, 0.8);
}

.site-footer__address {
  margin-top: 0.75rem;
  color: rgba(250, 247, 242, 0.75);
  font-size: 0.95rem;
}

.site-footer__address span {
  opacity: 0.75;
}

@media (max-width: 819px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .site-footer__brand-row {
    justify-content: center;
  }
}

.mobile-cta {
  position: fixed;
  left: 50%;
  bottom: max(1rem, env(safe-area-inset-bottom, 0));
  transform: translateX(-50%) translateY(120%);
  z-index: 120;
  width: min(92%, 360px);
  box-shadow: 0 16px 36px rgba(58, 90, 64, 0.35);
  transition: transform 320ms ease;
}

.mobile-cta.is-visible {
  transform: translateX(-50%) translateY(0);
}

/* ——— Révélation ——— */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 850ms ease, transform 850ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 820px) {
  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
    max-width: 320px;
  }

  .topbar__nav {
    display: none;
  }

  .topbar__burger {
    display: inline-flex;
  }

  .topbar__brand-logo {
    height: 2.85rem;
    max-width: 6rem;
  }

  .topbar .custom-logo {
    height: 2.85rem;
    max-width: 6rem;
  }

  /* Mobile : la flèche de scroll devient redondante et peut se superposer
     aux actions du hero / CTA, on la masque. */
  .hero__scroll,
  .hero-scroll-wrap {
    display: none !important;
  }
}

/* Garde-fou mobile réel (iOS/Android) : force le burger sur appareils tactiles
   même si la largeur remontée est atypique. */
@media (max-width: 1024px), (hover: none) and (pointer: coarse) {
  .topbar__nav {
    display: none !important;
  }

  .topbar__burger {
    display: inline-flex !important;
  }
}

@media (min-width: 821px) {
  .mobile-cta {
    display: none;
  }
}

/* ——— Liens éditoriaux & textes sur fond clair / foncé ——— */

.text-link {
  color: var(--green-deep);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.text-link:hover {
  text-decoration-thickness: 2px;
}

.text-link--on-accent {
  color: var(--ink);
}

.hero__navactions {
  margin-top: clamp(1.35rem, 3.5vw, 1.75rem);
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 0.75rem;
  align-items: center;
}

.hero__navactions .btn.btn--hero-outline.btn--sm {
  padding: 0.62rem 1.25rem;
  font-size: 0.88rem;
}

@media (max-width: 720px) {
  .hero__navactions {
    justify-content: center;
  }
}

.text-link--arrow::after {
  content: " →";
  text-decoration: none;
}

.prose__links {
  margin: 1.25rem 0 0;
  font-family: var(--font-sans);
  font-size: 0.95rem;
}

.prose__sep {
  margin: 0 0.5rem;
  opacity: 0.45;
}

.band--dual {
  padding: calc(var(--space-section) * 0.88) 0;
  background: linear-gradient(180deg, rgba(245, 239, 230, 0.5), transparent);
}

.dual-cta {
  display: grid;
  gap: 1.15rem;
  margin-top: clamp(1.25rem, 3vw, 2rem);
}

@media (min-width: 860px) {
  .dual-cta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.35rem;
  }
}

.dual-cta__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 1.5rem 1.35rem 1.45rem;
  border-radius: 18px;
  text-decoration: none;
  color: inherit;
  background: var(--surface-card);
  border: 1px solid rgba(43, 43, 43, 0.07);
  box-shadow: 0 16px 40px rgba(43, 43, 43, 0.06);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.dual-cta__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(58, 90, 64, 0.12);
  border-color: rgba(58, 90, 64, 0.18);
}

.dual-cta__card--gift {
  background: linear-gradient(165deg, #ffffff, rgba(163, 177, 138, 0.14));
}

.dual-cta__label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-deep);
}

.dual-cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
}

.dual-cta__text {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--ink-muted);
}

.dual-cta__action {
  margin-top: 0.35rem;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--green-deep);
}

.dual-cta__card:hover .dual-cta__action {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.band--thematiques {
  padding: var(--space-section) 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(232, 223, 211, 0.35));
  border-block: 1px solid rgba(43, 43, 43, 0.05);
}

.thematiques {
  display: grid;
  gap: 1.15rem;
  margin-top: clamp(1.25rem, 3vw, 2rem);
}

@media (min-width: 900px) {
  .thematiques {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem;
  }
}

.thematique-card {
  padding: 1.4rem 1.25rem 1.45rem;
  border-radius: 16px;
  background: var(--surface-card);
  border: 1px solid rgba(43, 43, 43, 0.06);
  box-shadow: var(--shadow-soft);
}

.thematique-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.55rem;
}

.thematique-card p {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--ink-muted);
}

.thematique-card p:last-of-type {
  margin-bottom: 0;
}

.band--zone {
  padding: calc(var(--space-section) * 0.9) 0;
  background: rgba(58, 90, 64, 0.06);
  border-block: 1px solid rgba(58, 90, 64, 0.1);
}

.zone-list {
  list-style: none;
  margin: clamp(1.25rem, 3vw, 2rem) auto 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  max-width: 920px;
}

@media (min-width: 780px) {
  .zone-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.zone-list__item {
  padding: 1.2rem 1.1rem;
  border-radius: 14px;
  background: var(--surface-card);
  border: 1px solid rgba(43, 43, 43, 0.06);
  box-shadow: var(--shadow-soft);
}

.zone-list__item strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 0.35rem;
}

.zone-list__item span {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ink-muted);
}

/* Fil d’Ariane (SEO + navigation) */
.breadcrumb--page {
  padding: 0.85rem 0 0;
  background: transparent;
}

.breadcrumb--page .layout {
  max-width: min(1200px, 100%);
}

.breadcrumb__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--ink-muted);
}

.breadcrumb__list a {
  color: var(--green-deep);
  text-decoration: none;
  font-weight: 600;
}

.breadcrumb__list a:hover {
  text-decoration: underline;
}

.breadcrumb__list li:not(:last-child)::after {
  content: "/";
  margin-left: 0.5rem;
  color: rgba(43, 43, 43, 0.35);
  font-weight: 400;
  text-decoration: none;
  pointer-events: none;
}

.breadcrumb__list [aria-current="page"] {
  color: var(--ink);
  font-weight: 600;
}

.band--faq {
  padding: var(--space-section) 0;
  background: var(--surface-white);
}

.layout--faq {
  max-width: 760px;
}

.section-head__lede--left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.section-head__lede code {
  font-size: 0.85em;
  padding: 0.1rem 0.35rem;
  border-radius: 6px;
  background: rgba(163, 177, 138, 0.2);
}

.faq-list {
  margin-top: 1.5rem;
}

.faq-item {
  border-bottom: 1px solid rgba(43, 43, 43, 0.1);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 0.25rem 1rem 0;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--ink);
}

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

.faq-item summary::after {
  content: "+";
  float: right;
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--green-deep);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item__body {
  padding: 0 2rem 1.15rem 0;
}

.faq-item__body p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.68;
  color: var(--ink-muted);
}

.band--maillage {
  padding: calc(var(--space-section) * 0.92) 0;
  background: linear-gradient(180deg, rgba(232, 223, 211, 0.4), rgba(245, 239, 230, 0.5));
}

.maillage-grid {
  list-style: none;
  margin: clamp(1.25rem, 3vw, 2rem) 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

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

@media (min-width: 1100px) {
  .maillage-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.wp-block-columns.maillage-grid {
  margin: clamp(1.25rem, 3vw, 2rem) 0 0;
  padding: 0;
  width: 100%;
  max-width: none;
  display: grid !important;
  flex-wrap: unset !important;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .wp-block-columns.maillage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .wp-block-columns.maillage-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.wp-block-columns.maillage-grid > .wp-block-column {
  margin: 0 !important;
  flex-basis: auto !important;
  min-width: 0;
}

.wp-block-group.maillage-card {
  height: 100%;
  box-sizing: border-box;
}

.wp-block-details.faq-item .faq-item__body.wp-block-group {
  margin-block: 0;
}

.maillage-card {
  padding: 1.25rem 1.15rem 1.3rem;
  border-radius: 14px;
  background: var(--surface-card);
  border: 1px solid rgba(43, 43, 43, 0.07);
  box-shadow: var(--shadow-soft);
}

.maillage-card--here {
  border-color: rgba(58, 90, 64, 0.28);
  box-shadow: 0 12px 32px rgba(58, 90, 64, 0.1);
}

.maillage-card--soon {
  opacity: 0.92;
}

.maillage-card__tag {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-deep);
}

.maillage-card h3 {
  font-size: 1.02rem;
  margin-bottom: 0.45rem;
}

.maillage-card p {
  margin: 0 0 0.65rem;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--ink-muted);
}

.maillage-card__url {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green-deep);
  word-break: break-word;
}

.maillage-card__url a {
  color: inherit;
}

.maillage-card__soon {
  font-weight: 500;
  color: var(--ink-muted);
}

@media (min-width: 621px) and (max-width: 1100px) {
  .topbar__nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    row-gap: 0.35rem;
  }

  .topbar__nav a {
    font-size: 0.82rem;
    padding: 0.32rem 0.5rem;
  }
}

/* ——— Accueil allégé : aperçu tarifs ——— */

.band--offres {
  padding: calc(var(--space-section) * 0.85) 0;
  background: linear-gradient(180deg, rgba(232, 223, 211, 0.45), rgba(245, 239, 230, 0.35));
  border-block: 1px solid rgba(43, 43, 43, 0.05);
}

.offres-apercu__intro {
  margin: clamp(0.75rem, 2vw, 1.25rem) auto clamp(1.25rem, 3vw, 1.5rem);
  max-width: 36rem;
  text-align: center;
  font-family: var(--font-sans);
  font-size: clamp(0.98rem, 2vw, 1.05rem);
  line-height: 1.65;
  color: var(--ink-muted);
}

.offres-apercu__desc {
  margin: 0.65rem 0 0;
  font-family: var(--font-sans);
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--ink-muted);
  text-align: center;
  max-width: 22rem;
  margin-inline: auto;
}

.offres-apercu {
  list-style: none;
  margin: clamp(1.25rem, 3vw, 1.75rem) 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 800px) {
  .offres-apercu {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }
}

.offres-apercu.offres-apercu--triple {
  margin-top: clamp(1rem, 2.5vw, 1.5rem);
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 800px) {
  .offres-apercu.offres-apercu--triple {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.offres-apercu__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.15rem 0.85rem;
  border-radius: 16px;
  background: var(--surface-card);
  border: 1px solid rgba(43, 43, 43, 0.06);
  box-shadow: var(--shadow-soft);
}

.offres-apercu__nom {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.25;
}

.offres-apercu__meta {
  margin-top: 0.35rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(58, 90, 64, 0.85);
}

.offres-apercu__prix {
  margin-top: 0.65rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1;
}

.offres-apercu__item > .wp-block-buttons,
.offres-apercu__item > .offres-apercu__btn-reserver {
  margin-top: auto;
  align-self: stretch;
  text-align: center;
}

.offres-apercu__item .wp-block-button__link {
  text-decoration: none;
}

.offres-apercu__cta {
  margin-top: clamp(1.35rem, 3vw, 1.85rem);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 780px) {
  .tunnel--compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Carte cadeau (parcours / histoire) : grille 3 colonnes même si le conteneur est un .wp-block-group */
.gift-parcours .tunnel.tunnel--compact,
.gift-histoire .tunnel.tunnel--compact.tunnel--gift,
.wp-block-group.tunnel.tunnel--compact.tunnel--gift {
  display: grid !important;
  grid-template-columns: 1fr;
  width: 100%;
  max-width: none;
}

@media (min-width: 780px) {
  .gift-parcours .tunnel.tunnel--compact,
  .gift-histoire .tunnel.tunnel--compact.tunnel--gift,
  .wp-block-group.tunnel.tunnel--compact.tunnel--gift {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.experience__photo {
  margin: 0 auto clamp(1.35rem, 3.5vw, 2.25rem);
  max-width: 52rem;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(43, 43, 43, 0.08);
}

.experience__photo img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}
/* --- Maquette reservation WooCommerce + WPS Bookings + Stripe --- */

.wc-resa-wrap {
  max-width: 52rem;
  margin-inline: auto;
  padding-inline: var(--layout-pad, 1rem);
}

.wc-resa-stack {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.wc-resa-stack li {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(58, 90, 64, 0.12);
  color: var(--green-deep);
  border: 1px solid rgba(58, 90, 64, 0.22);
}

.wc-resa-disclaimer {
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin: 0 0 1.5rem;
  line-height: 1.55;
}

.wc-resa-panel--step1ref {
  margin-bottom: 1rem;
  background: rgba(58, 90, 64, 0.07);
  border-style: dashed;
  border-color: rgba(58, 90, 64, 0.22);
}

.wc-resa-step1ref__text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.62;
  color: var(--ink-muted);
}

.wc-resa-flow {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.wc-resa-panel {
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border-radius: var(--r-lg, 16px);
  background: var(--surface-card, #fff);
  border: 1px solid rgba(43, 43, 43, 0.08);
  box-shadow: var(--shadow-soft);
}

.wc-resa-panel--checkout {
  background: linear-gradient(180deg, rgba(245, 239, 230, 0.65), rgba(255, 255, 255, 0.96));
}

.wc-resa-step-tag {
  margin: 0 0 0.85rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-deep);
}

.wc-resa-breadcrumbs {
  font-size: 0.8rem;
  color: var(--ink-muted);
  margin-bottom: 0.65rem;
}

.wc-resa-breadcrumbs__sep {
  margin: 0 0.35rem;
  opacity: 0.45;
}

.wc-resa-breadcrumbs__here {
  color: var(--ink);
  font-weight: 600;
}

.wc-resa-product-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  margin: 0 0 0.35rem;
  color: var(--ink);
}

.wc-resa-product-meta {
  margin: 0 0 0.85rem;
  font-size: 0.9rem;
  color: var(--ink-muted);
}

.wc-resa-price-line {
  margin: 0 0 0.35rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 0.85rem;
}

.wc-resa-price-line__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-muted);
}

.wc-resa-price-line__amount {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--green-deep);
}

.wc-resa-stock {
  margin: 0 0 1.25rem;
  font-size: 0.88rem;
  color: var(--green-deep);
  font-weight: 600;
}

.wc-resa-wps {
  padding: 1rem 1rem 1.1rem;
  border-radius: var(--r-md, 12px);
  background: rgba(232, 223, 211, 0.35);
  border: 1px solid rgba(214, 191, 164, 0.45);
  margin-bottom: 1.25rem;
}

.wc-resa-wps__kicker {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-deep);
}

.wc-resa-wps__intro {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--ink-muted);
}

.wc-resa-field {
  margin-bottom: 1rem;
}

.wc-resa-field:last-child {
  margin-bottom: 0;
}

.wc-resa-field__label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
  margin-bottom: 0.45rem;
}

.wc-resa-cal {
  max-width: 18rem;
  background: #fff;
  border-radius: 10px;
  padding: 0.5rem 0.6rem 0.65rem;
  border: 1px solid rgba(43, 43, 43, 0.08);
}

.wc-resa-cal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.wc-resa-cal__nav {
  border: none;
  background: rgba(58, 90, 64, 0.1);
  color: var(--green-deep);
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 8px;
  cursor: default;
  opacity: 0.5;
}

.wc-resa-cal__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.15rem;
  font-size: 0.62rem;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-align: center;
  margin-bottom: 0.25rem;
}

.wc-resa-cal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.2rem;
}

.wc-resa-cal__pad {
  min-height: 1.85rem;
}

.wc-resa-cal__day {
  min-height: 1.85rem;
  border: 1px solid rgba(43, 43, 43, 0.08);
  border-radius: 8px;
  background: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
  cursor: default;
}

.wc-resa-cal__day--off {
  opacity: 0.35;
  text-decoration: line-through;
}

.wc-resa-cal__day--selected {
  background: var(--green-deep);
  color: #faf7f2;
  border-color: var(--green-deep);
}

.wc-resa-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.wc-resa-slot {
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(58, 90, 64, 0.35);
  background: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-deep);
  cursor: default;
}

.wc-resa-slot--selected {
  background: var(--green-deep);
  color: #faf7f2;
  border-color: var(--green-deep);
}

.wc-resa-slot--off {
  opacity: 0.4;
  text-decoration: line-through;
}

.wc-resa-cta-block {
  text-align: center;
}

.wc-resa-cta-block__btn {
  width: 100%;
  max-width: 22rem;
}

.wc-resa-cta-block__hint {
  margin: 0.65rem 0 0;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--ink-muted);
}

.wc-resa-checkout {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .wc-resa-checkout {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.wc-resa-checkout__h {
  font-family: var(--font-display);
  font-size: 1rem;
  margin: 0 0 0.65rem;
  color: var(--ink);
}

.wc-resa-fake-fields {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.wc-resa-fake-fields__row {
  display: block;
  padding: 0.55rem 0.65rem;
  border-radius: 8px;
  background: #fff;
  border: 1px dashed rgba(43, 43, 43, 0.18);
  font-size: 0.82rem;
  color: var(--ink-muted);
}

.wc-resa-guest-note {
  margin: 0.85rem 0 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--ink-muted);
}

.wc-resa-stripe {
  padding: 0.85rem;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(99, 91, 255, 0.22);
  box-shadow: 0 4px 20px rgba(58, 90, 64, 0.06);
}

.wc-resa-stripe__brand {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
  margin-bottom: 0.65rem;
}

.wc-resa-stripe__logo {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #635bff;
}

.wc-resa-stripe__cards {
  font-size: 0.72rem;
  color: var(--ink-muted);
}

.wc-resa-stripe__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
}

.wc-resa-stripe__field {
  display: block;
  padding: 0.5rem 0.55rem;
  border-radius: 6px;
  background: rgba(245, 239, 230, 0.65);
  border: 1px solid rgba(43, 43, 43, 0.08);
  font-size: 0.78rem;
  color: var(--ink-muted);
}

.wc-resa-stripe__field:first-child {
  grid-column: 1 / -1;
}

.wc-resa-order-recap {
  margin: 1rem 0;
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  background: rgba(58, 90, 64, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.82rem;
  color: var(--ink-muted);
}

.wc-resa-order-recap strong {
  font-size: 1.05rem;
  color: var(--ink);
}

.wc-resa-pay-btn {
  width: 100%;
}

.wc-resa-checkout__legal {
  margin: 0.65rem 0 0;
  font-size: 0.72rem;
  line-height: 1.45;
  color: var(--ink-muted);
}

.wc-resa-foot {
  margin: 1.5rem 0 0;
  text-align: center;
  font-size: 0.88rem;
  color: var(--ink-muted);
}

.maquette-blocks .wc-resa-panel--step1ref {
  margin-top: 0;
}

/* --- Habillage templates BookingPress (esthétique uniquement) --- */

.bookingpress-page .bookingpress-hero {
  padding-block: clamp(4.5rem, 10vw, 6.25rem) clamp(2rem, 4vw, 2.8rem);
  background: linear-gradient(165deg, var(--bg-secondary), #ddd2c4);
}

.bookingpress-hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.2vw, 2.8rem);
  color: var(--ink);
}

.bookingpress-hero__lede {
  margin: 0.75rem 0 0;
  max-width: 48ch;
  line-height: 1.65;
  color: var(--ink-muted);
}

.bookingpress-shell {
  padding-block: clamp(2rem, 4.5vw, 3.2rem) clamp(3.25rem, 6vw, 4.75rem);
}

.bookingpress-shell__card {
  padding: clamp(1.1rem, 2.8vw, 1.8rem);
  border: 1px solid rgba(43, 43, 43, 0.08);
  border-radius: var(--r-lg);
  background: var(--surface-card);
  box-shadow: var(--shadow-soft);
}

.bookingpress-shell__card > :first-child {
  margin-top: 0;
}

.bookingpress-shell__card > :last-child {
  margin-bottom: 0;
}

.bookingpress-page--thank-you .bookingpress-hero {
  background: linear-gradient(165deg, rgba(163, 177, 138, 0.25), rgba(232, 223, 211, 0.9));
}

.bookingpress-page--cancel-payment .bookingpress-hero,
.bookingpress-page--cancel-confirmation .bookingpress-hero,
.bookingpress-page--cancelled-bookings .bookingpress-hero {
  background: linear-gradient(165deg, rgba(245, 239, 230, 1), rgba(232, 223, 211, 0.88));
}

/* --- WooCommerce: panier / commande / mon compte (alignement thème) --- */

.woo-shell .layout--woo .prose {
  max-width: min(960px, 100%);
  margin-inline: auto;
}

.woo-shell .layout--woo .section-head {
  text-align: center;
  margin-inline: auto;
  margin-bottom: 1.35rem;
}

.woo-shell .layout--woo .entry-content {
  padding: clamp(1.1rem, 2.8vw, 1.8rem);
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(43, 43, 43, 0.08);
  box-shadow: var(--shadow-soft);
}

.woo-shell .woocommerce-message,
.woo-shell .woocommerce-info,
.woo-shell .woocommerce-error {
  border-radius: 12px;
  border: 1px solid rgba(58, 90, 64, 0.16);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
}

.woo-shell .woocommerce table.shop_table {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(43, 43, 43, 0.1);
  background: #fff;
}

.woo-shell .woocommerce table.shop_table th,
.woo-shell .woocommerce table.shop_table td {
  border-color: rgba(43, 43, 43, 0.08);
}

.woo-shell .woocommerce .cart_totals,
.woo-shell .woocommerce-checkout-review-order,
.woo-shell .woocommerce-account .woocommerce-MyAccount-navigation,
.woo-shell .woocommerce-account .woocommerce-MyAccount-content {
  border-radius: 14px;
  border: 1px solid rgba(43, 43, 43, 0.08);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.woo-shell .woocommerce .cart_totals,
.woo-shell .woocommerce-checkout-review-order,
.woo-shell .woocommerce-account .woocommerce-MyAccount-content {
  padding: 1.1rem;
}

.woo-shell .woocommerce-account .woocommerce-MyAccount-navigation {
  padding: 0.6rem;
}

.woo-shell .woocommerce-account .woocommerce-MyAccount-navigation ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
}

.woo-shell .woocommerce-account .woocommerce-MyAccount-navigation a {
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  color: var(--green-deep);
}

.woo-shell .woocommerce-account .woocommerce-MyAccount-navigation a:hover,
.woo-shell .woocommerce-account .woocommerce-MyAccount-navigation .is-active a {
  background: rgba(163, 177, 138, 0.2);
}

.woo-shell .woocommerce form .form-row input.input-text,
.woo-shell .woocommerce form .form-row textarea,
.woo-shell .woocommerce form .form-row select {
  border-radius: 10px;
  border: 1px solid rgba(43, 43, 43, 0.2);
  background: #fff;
}

.woo-shell .woocommerce button.button,
.woo-shell .woocommerce a.button,
.woo-shell .woocommerce input.button,
.woo-shell .woocommerce #payment #place_order {
  border-radius: 999px;
  border: 1px solid rgba(58, 90, 64, 0.14);
  background: linear-gradient(155deg, var(--green-deep), #2d4531);
  color: var(--cream);
  font-weight: 600;
  transition: filter 220ms ease, transform 220ms ease;
}

.woo-shell .woocommerce button.button:hover,
.woo-shell .woocommerce a.button:hover,
.woo-shell .woocommerce input.button:hover,
.woo-shell .woocommerce #payment #place_order:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .woo-shell .woocommerce-account .woocommerce-MyAccount-navigation {
    margin-bottom: 1rem;
  }
}

