/* ── RESET & BASE ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:       #F5EDE3;
  --beige:       #E8D9C8;
  --sand:        #C4B49A;
  --taupe:       #C4B6A4;   /* beige chaleureux du logo — fond header */
  --brown:       #3A2D24;
  --brown-light: #5A4636;   /* assombri pour meilleure lisibilité */
}

html { scroll-behavior: smooth; }

/* ── ANIMATIONS KEYFRAMES ────────────────────────── */
@keyframes floatY {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-8px); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes lineGrow {
  from { width: 0; }
  to   { width: 3rem; }
}

/* ── ANIMATIONS SCROLL ────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1),
              transform 0.75s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }

/* Variante : zoom léger pour les images */
.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1),
              transform 0.8s cubic-bezier(0.22,1,0.36,1);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* Décoration sous les titres h2 */
h2.underline-anim::after {
  content: '';
  display: block;
  height: 1px;
  background: var(--sand);
  margin: 0.8rem auto 0;
  animation: lineGrow 0.6s ease forwards;
  animation-play-state: paused;
}
h2.underline-anim.visible::after { animation-play-state: running; }

body {
  font-family: 'Jost', sans-serif;
  color: var(--brown);
  background: var(--cream);
  overflow-x: hidden;
}

/* ── BARRE DE PROGRESSION DE DÉFILEMENT ───────────── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  z-index: 1200;
  background: linear-gradient(90deg, var(--sand), var(--brown-light));
  box-shadow: 0 0 8px rgba(58,45,36,0.25);
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ── ONGLET AVIS GOOGLE ───────────────────────────── */
.reviews-tab {
  position: fixed;
  right: 1.6rem; bottom: 1.6rem;
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.7rem 1.1rem;
  border-radius: 40px;
  border: 1px solid rgba(160,144,120,0.4);
  background: rgba(203,189,169,0.97);
  color: var(--brown);
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  z-index: 1100;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: transform .35s cubic-bezier(.22,1,.36,1), background .3s ease, color .3s ease, box-shadow .3s ease;
  box-shadow: 0 8px 24px rgba(58,45,36,0.18);
}
.reviews-tab:hover { background: var(--brown); color: var(--cream); transform: translateY(-3px); box-shadow: 0 12px 30px rgba(58,45,36,0.25); }
.reviews-tab svg { width: 18px; height: 18px; color: #F2B01E; flex-shrink: 0; }
.reviews-tab:hover svg { color: #FFC83D; }

/* ── SURVOL CARTES (lift général) ─────────────────── */
.arch-card, .temoignage-card, .loc-why-card, .soin-step {
  transition: transform .55s cubic-bezier(.22,1,.36,1), box-shadow .55s ease;
}
.temoignage-card:hover, .loc-why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(58,45,36,0.10);
}

/* Réduction des animations si l'utilisateur le demande */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-scale { transition: none; }
  .scroll-progress { display: none; }
  .wave1, .wave2 { animation: none; }
}

/* ── TRAITS DÉCORATIFS ────────────────────────────── */
.about::before {
  content: '';
  position: absolute;
  left: 40%; top: 0; bottom: 0; width: 60%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 600' fill='none'%3E%3Cpath d='M520,20 C480,80 380,60 340,130 C300,200 360,260 320,320 C280,380 160,360 140,440 C120,520 200,570 240,590' stroke='%23C4B49A' stroke-width='1.2' stroke-linecap='round' opacity='0.3'/%3E%3Cpath d='M460,40 C500,120 420,180 460,250 C500,320 560,340 540,420 C520,500 440,520 400,580' stroke='%23C4B49A' stroke-width='1' stroke-linecap='round' opacity='0.2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: cover;
  pointer-events: none;
  z-index: 0;
}
.about > * { position: relative; z-index: 1; }

/* ── ANIMATED WAVES ───────────────────────────────── */
.wave-container {
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 120px;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}
.wave-container .wave {
  position: absolute;
  bottom: 0;
  left: -50%;
  width: 200%;
  height: 100%;
}
.wave1 { animation: waveMove 7s ease-in-out infinite alternate; }
.wave2 { animation: waveMove 5s ease-in-out infinite alternate-reverse; }
@keyframes waveMove {
  0%   { transform: translateX(0); }
  100% { transform: translateX(15%); }
}

/* ── NAVBAR ───────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4rem;
  height: 80px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.4s, border-color 0.4s, -webkit-backdrop-filter 0.4s, backdrop-filter 0.4s;
  overflow: visible;
}
.navbar.scrolled {
  background: rgba(203, 189, 169, 0.97);
  border-bottom-color: rgba(160, 144, 120, 0.35);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
/* Accueil en haut : seule navbar sans .scrolled → fond blanc */
.navbar:not(.scrolled) {
  background: rgba(203, 189, 169, 0.97);
  border-bottom-color: rgba(160, 144, 120, 0.35);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.navbar:not(.scrolled) .nav-logo {
  background: rgba(203, 189, 169, 0.97);
  border-color: rgba(160, 144, 120, 0.4);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown);
  opacity: 0.65;
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 1; }

/* ── LOGO BULLE ─────────────────────────────────────
   Grande bulle dépassant en dessous de la navbar.
   Au scroll → se rétracte et s'intègre.
   ─────────────────────────────────────────────────── */
.nav-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  margin-top: -30px;
  width: 180px;
  height: 180px;
  background: rgba(203, 189, 169, 0.97);
  border-radius: 50%;
  border: 1px solid rgba(160, 144, 120, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 28px rgba(58, 45, 36, 0.12);
  z-index: 1300;
  overflow: hidden;
  text-decoration: none;
}
.nav-logo img {
  width: 78%;
  height: 78%;
  object-fit: contain;
  object-position: center center;
  display: block;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
.nav-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--brown);
  opacity: 0.55;
}
.nav-info span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-pin {
  width: 10px;
  height: 12px;
  flex-shrink: 0;
}
.btn-nav-contact {
  display: inline-block;
  padding: 0.55rem 1.4rem;
  border: 1px solid var(--brown);
  color: var(--brown);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  border-radius: 2px;
  white-space: nowrap;
  transition: background 0.25s, color 0.25s;
}
.btn-nav-contact:hover {
  background: var(--brown);
  color: var(--cream);
}

/* ── HERO ─────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background: var(--cream);
  padding: 80px 18px 0 18px;
}
.hero-video {
  position: absolute;
  top: 80px; left: 18px; right: 18px; bottom: 0;
  width: calc(100% - 36px);
  height: calc(100% - 80px);
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  top: 80px; left: 18px; right: 18px; bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(58,45,36,0.25) 0%,
    rgba(58,45,36,0.45) 60%,
    rgba(245,237,227,0.5) 100%
  );
}
.hero-content {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 2rem;
}
.hero-sub {
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 1rem;
}
.hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 2rem;
}
.hero-content h1 em {
  font-style: italic;
  font-weight: 300;
  font-size: 0.7em;
  display: block;
  letter-spacing: 0.1em;
}
.btn-hero {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  border: 1px solid rgba(255,255,255,0.7);
  color: #fff;
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.3s;
  border-radius: 2px;
}
.btn-hero:hover { background: rgba(255,255,255,0.15); }

/* ── ABOUT ────────────────────────────────────────── */
.about {
  position: relative;
  background: var(--cream);
  overflow: hidden;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 5rem;
  padding: 6rem 6rem 10rem;
  max-width: 1200px;
  margin: 0 auto;
}
.about-sub {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 0.8rem;
}
.about h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--brown);
  letter-spacing: 0.06em;
  margin-bottom: 1.8rem;
  line-height: 1;
}
.about-text p {
  font-size: 0.88rem;
  line-height: 2;
  color: var(--brown-light);
  margin-bottom: 1rem;
}
.btn-about {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.9rem 2.2rem;
  background: var(--brown);
  color: var(--cream);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.25s;
}
.btn-about:hover { background: var(--brown-light); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(58,45,36,0.2); }
.btn-about::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.12) 50%, transparent 60%);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-about:hover::after { opacity: 1; animation: shimmer 0.6s ease; }

.about-photo { display: flex; justify-content: center; align-items: flex-end; }

/* Wrapper ombre about — mêmes dimensions que arch-wrap */
.about-photo .arch-img-outer {
  width: 345px;
  height: 470px;
}
.about-photo .arch-img-outer::before {
  width: 345px;
  height: 470px;
}
.about-photo .arch-wrap {
  width: 345px;
  height: 470px;
}

.arch-wrap {
  border-radius: 50% 50% 0 0;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(58,45,36,0.15);
}
.arch-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── SECTION SUB-TITRE ────────────────────────────── */
.section-sub {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  display: block;
  margin-bottom: 0.7rem;
}
.section-sub.centered { text-align: center; }

/* ── BIENFAITS ────────────────────────────────────── */
.bienfaits {
  position: relative;
  background: var(--beige);
  padding: 5rem 4rem 9rem;
  text-align: center;
  overflow: hidden;
}
.bienfaits h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--brown);
  margin-bottom: 3.5rem;
}
.bienfaits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
  max-width: 1100px;
  margin: 0 auto;
}
.bienfait-card {
  background: rgba(245,237,227,0.65);
  border: 1px solid rgba(196,180,154,0.3);
  border-radius: 4px;
  padding: 2.5rem 1.5rem 2rem;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s ease;
}
.bienfait-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(58,45,36,0.1);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.bienfait-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 35px rgba(58,45,36,0.1);
}
.bienfait-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.2rem;
  color: var(--brown-light);
}
.bienfait-icon svg {
  width: 100%;
  height: 100%;
}
.bienfait-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--brown);
  margin-bottom: 0.7rem;
  letter-spacing: 0.04em;
}
.bienfait-card p {
  font-size: 0.82rem;
  line-height: 1.85;
  color: var(--brown-light);
}

/* ── NOS SOINS ────────────────────────────────────── */
.services {
  position: relative;
  background: var(--cream);
  padding: 2.5rem 4rem 9rem;
  text-align: center;
  overflow: hidden;
}

/* Château décoratif en fond à droite */
.services-castle {
  position: absolute;
  right: -40px;
  bottom: 80px;
  width: 55%;
  max-width: 680px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.22;
  mix-blend-mode: multiply;           /* fond blanc → transparent sur crème */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.6) 35%, black 65%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.6) 35%, black 65%);
  user-select: none;
}
.services h2,
.services .section-sub,
.services-arches { position: relative; z-index: 1; }

.services h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--brown);
  margin-bottom: 4rem;
}
.services-arches {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}
.arch-card {
  flex: 1;
  min-width: 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Ombre décalée derrière l'arche */
.arch-img-outer {
  position: relative;
  isolation: isolate;   /* nouveau contexte d'empilement */
  width: 300px;
  height: 410px;
  margin-bottom: 2rem;
  flex-shrink: 0;
}
.arch-img-outer::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 12px;
  width: 100%;
  height: 100%;
  border-radius: 50% 50% 0 0;
  background: var(--sand);
  opacity: 0.55;
  z-index: -1;          /* derrière tout */
}
.arch-img-wrap {
  position: relative;
  z-index: 1;
  width: 300px;
  height: 410px;
  border-radius: 50% 50% 0 0;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(58,45,36,0.15);
}
.arch-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.arch-card-text { padding: 0 0.5rem; width: 100%; }
.arch-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  color: var(--sand);
  display: block;
  margin-bottom: 0.5rem;
}
.arch-card-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--brown);
  letter-spacing: 0.06em;
  margin-bottom: 0.8rem;
}
.arch-card-text p {
  font-size: 0.85rem;
  line-height: 1.9;
  color: var(--brown-light);
  margin-bottom: 1.4rem;
}
.arch-prices {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  border-top: 1px solid rgba(196,180,154,0.45);
  padding-top: 1rem;
  margin-bottom: 1.6rem;
}
.arch-prices span { font-size: 0.85rem; color: var(--brown-light); }
.arch-option {
  font-size: 0.78rem !important;
  color: var(--sand) !important;
  font-style: italic;
  margin-top: 0.3rem;
  border-top: 1px dashed rgba(196,180,154,0.4);
  padding-top: 0.5rem;
}
.arch-prices strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--brown);
}
.arch-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  margin-top: 0.5rem;
}
.btn-arch-link {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem !important;
  font-weight: 500;
  letter-spacing: 0.18em !important;
  text-transform: uppercase;
  color: var(--brown) !important;
  text-decoration: none !important;
  border-bottom: 1px solid var(--brown);
  padding-bottom: 4px;
  transition: color 0.25s, border-color 0.25s, letter-spacing 0.25s;
  display: inline-block;
}
.btn-arch-link:hover {
  color: var(--brown-light) !important;
  border-bottom-color: var(--sand);
  letter-spacing: 0.22em !important;
}

.btn-arch {
  display: inline-block;
  padding: 0.8rem 2.2rem;
  border: 1px solid var(--brown);
  color: var(--brown);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.25s, color 0.25s;
}
.btn-arch:hover { background: var(--brown); color: var(--cream); }

/* ── BANNIÈRE CITATION ────────────────────────────── */
.banner-quote {
  position: relative;
  background: var(--brown);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 130px 0; /* compense les deux vagues (haut et bas ~120px chacune) */
  min-height: 500px;
  /* décor lignes organiques */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1400 500' fill='none'%3E%3Cpath d='M0,120 C200,60 400,180 700,100 C1000,20 1200,140 1400,80' stroke='%23F5EDE3' stroke-width='1' stroke-linecap='round' opacity='0.08'/%3E%3Cpath d='M0,300 C300,240 600,360 900,280 C1100,230 1300,320 1400,280' stroke='%23F5EDE3' stroke-width='1' stroke-linecap='round' opacity='0.06'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: cover;
}
.banner-video-bg {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.banner-overlay {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: linear-gradient(180deg,
    #3A2D24 0%,
    rgba(58,45,36,0.55) 22%,
    rgba(58,45,36,0.5) 50%,
    rgba(58,45,36,0.55) 78%,
    #3A2D24 100%);
  z-index: 0;
}
.banner-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 2rem;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.banner-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 1.5rem;
}
.banner-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.65;
  letter-spacing: 0.03em;
  margin-bottom: 2.5rem;
}
.btn-banner {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  border: 1px solid rgba(245,237,227,0.5);
  color: var(--cream);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.3s, border-color 0.3s;
}
.btn-banner:hover {
  background: rgba(245,237,227,0.12);
  border-color: rgba(245,237,227,0.8);
}

/* ── TÉMOIGNAGES ──────────────────────────────────── */
.temoignages {
  position: relative;
  background: var(--cream);
  padding: 5rem 4rem 9rem;
  text-align: center;
  overflow: hidden;
}
.temoignages h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--brown);
  margin-bottom: 3.5rem;
}
.temoignages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.temoignage-card {
  background: rgba(232,217,200,0.45);
  border: 1px solid rgba(196,180,154,0.3);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s ease;
}
.temoignage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(58,45,36,0.08);
  text-align: left;
  transition: transform 0.3s, box-shadow 0.3s;
}
.temoignage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 35px rgba(58,45,36,0.09);
}
.stars {
  color: var(--sand);
  font-size: 1rem;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.temoignage-card p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.8;
  color: var(--brown);
  margin-bottom: 1.2rem;
}
.temoignage-name {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--sand);
  text-transform: uppercase;
}

/* Badge note Google */
.google-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: -2rem auto 3rem;
  padding: 0.6rem 1.4rem;
  background: #fff;
  border-radius: 40px;
  box-shadow: 0 4px 18px rgba(58,45,36,0.08);
}
.google-stars { color: #F5B400; font-size: 1rem; letter-spacing: 0.05em; }
.google-rating-text { font-size: 0.85rem; color: var(--brown); }
.google-rating-text strong { color: #4285F4; }

/* Bouton Google */
.temoignages-cta { margin-top: 3rem; }
.btn-google {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  background: #4285F4;
  color: #fff;
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  border-radius: 4px;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}
.btn-google:hover {
  background: #3367d6;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(66,133,244,0.3);
}

/* ── CONTACT ──────────────────────────────────────── */
.contact-section {
  position: relative;
  background: var(--sand);
  padding: 6rem 4rem 7rem;
  text-align: center;
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' fill='none'%3E%3Cpath d='M50,100 C150,40 280,120 360,80 C440,40 480,140 580,120 C680,100 720,20 840,60 C960,100 1000,180 1100,140' stroke='%23F5EDE3' stroke-width='1.2' stroke-linecap='round' opacity='0.15'/%3E%3Cpath d='M100,350 C200,300 300,380 440,340 C580,300 620,420 760,380 C900,340 980,440 1150,400' stroke='%23F5EDE3' stroke-width='1' stroke-linecap='round' opacity='0.12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: cover;
  pointer-events: none;
  z-index: 0;
}
.contact-section > * { position: relative; z-index: 1; }
.contact-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--cream);
  margin-bottom: 0.8rem;
}
.contact-sub {
  font-size: 0.9rem;
  color: rgba(245,237,227,0.7);
  margin-bottom: 3.5rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}
.contact-info { display: flex; flex-direction: column; gap: 1.8rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }

.contact-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 1px;
  color: rgba(245,237,227,0.75);
}
.contact-icon svg { width: 100%; height: 100%; }

.contact-item strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,237,227,0.5);
  margin-bottom: 2px;
}
.contact-item p { font-size: 0.95rem; color: var(--cream); }
.contact-item p a {
  color: var(--cream);
  text-decoration: none;
  border-bottom: 1px solid rgba(245,237,227,0.4);
  padding-bottom: 1px;
  transition: border-color 0.2s;
}
.contact-item p a:hover { border-bottom-color: var(--cream); }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1.35rem;
  background: #FCF9F4;
  border: 1px solid rgba(58,45,36,0.10);
  border-radius: 12px;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  color: var(--brown);
  outline: none;
  box-shadow: 0 4px 16px rgba(58,45,36,0.07);
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(58,45,36,0.4);
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(58,45,36,0.13);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(58,45,36,0.48); }
.contact-form select { color: var(--brown); cursor: pointer; }
.contact-form select option { color: var(--brown); background: var(--cream); }
.contact-form textarea { resize: vertical; }
.btn-submit {
  padding: 1.05rem;
  margin-top: 0.3rem;
  background: var(--brown);
  color: var(--cream);
  border: none;
  border-radius: 12px;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(58,45,36,0.14);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-submit:hover { background: var(--brown-light); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(58,45,36,0.2); }

/* ── FOOTER ───────────────────────────────────────── */
.footer {
  background: var(--brown);
  color: var(--cream);
  padding: 4rem 2rem 2rem;
}
.footer-top {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245,237,227,0.12);
}
.footer-brand .footer-logo {
  height: 80px;
  width: auto;
  opacity: 0.95;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 300;
  opacity: 0.8;
  margin-bottom: 1rem;
}
.footer-brand-info { font-size: 0.85rem; line-height: 1.9; opacity: 0.7; }
.footer-brand-info a { color: var(--cream); text-decoration: none; border-bottom: 1px solid rgba(245,237,227,0.3); }
.footer-brand-info a:hover { border-bottom-color: var(--cream); }
.footer-insta {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.9rem;
  color: var(--cream) !important;
  border-bottom: none !important;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  opacity: 0.95;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.footer-insta:hover { opacity: 1; transform: translateY(-1px); }
.footer-insta svg { width: 18px; height: 18px; flex-shrink: 0; }

.footer-col h4 {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.88rem;
  opacity: 0.75;
  transition: opacity 0.2s, padding-left 0.2s;
}
.footer-col a:hover { opacity: 1; padding-left: 4px; }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { font-size: 0.75rem; letter-spacing: 0.08em; opacity: 0.4; }
.footer-credit { font-size: 0.75rem; opacity: 0.4; }
.footer-legal { font-size: 0.75rem; opacity: 0.6; }
.footer-legal a { color: var(--cream); text-decoration: none; border-bottom: 1px solid rgba(245,237,227,0.25); padding-bottom: 1px; }
.footer-legal a:hover { border-bottom-color: var(--cream); }
.footer-credit a { color: var(--cream); text-decoration: none; border-bottom: 1px solid rgba(245,237,227,0.3); }

@media (max-width: 860px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; }
  .footer-brand { grid-column: 1 / -1; text-align: center; }
  .footer-brand .footer-logo { margin-left: auto; margin-right: auto; }
  .footer-brand .footer-insta { margin-left: auto; margin-right: auto; }
}
@media (max-width: 480px) {
  .footer { padding: 3.5rem 1.5rem 2rem; }
  .footer-top { grid-template-columns: 1fr; gap: 0; text-align: center; padding-bottom: 2rem; }
  /* Chaque bloc séparé proprement pour un footer plus lisible sur mobile */
  .footer-col {
    border-top: 1px solid rgba(245,237,227,0.12);
    padding-top: 1.7rem;
    margin-top: 1.7rem;
  }
  .footer-brand { padding-bottom: 0.5rem; }
  .footer-col h4 { margin-bottom: 1rem; }
  .footer-col ul { align-items: center; gap: 0.95rem; }
  .footer-col a { font-size: 0.98rem; }
  .footer-col a:hover { padding-left: 0; }
  .footer-insta { margin: 1.1rem auto 0; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.6rem; }
}

/* ── BURGER ───────────────────────────────────────── */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 110;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
}

/* ── MENU MOBILE ──────────────────────────────────── */
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: 80%; max-width: 320px;
  height: 100vh;
  background: var(--cream);
  z-index: 200;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-close {
  position: absolute; top: 1.2rem; right: 1.5rem;
  background: none; border: none;
  font-size: 1.3rem; cursor: pointer;
  color: var(--brown); opacity: 0.6;
}
.mobile-logo img { height: 90px; width: auto; display: block; margin: 0 auto; }
.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(196,180,154,0.3);
}
.mobile-link {
  display: block;
  padding: 1.1rem 0;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--brown);
  border-bottom: 1px solid rgba(196,180,154,0.3);
  transition: opacity 0.2s;
}
.mobile-link:hover { opacity: 0.6; }
.mobile-infos { font-size: 0.78rem; opacity: 0.5; line-height: 1.8; }
.mobile-partner {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  padding-top: 1.3rem;
  margin-bottom: 1.3rem;
  border-top: 1px solid rgba(196,180,154,0.3);
  text-decoration: none;
}
.mobile-partner span {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown-light);
  opacity: 0.65;
}
.mobile-partner img {
  width: 140px;
  max-width: 70%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}
.mobile-partner:hover img { transform: scale(1.04); }
.mobile-overlay {
  position: fixed; top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(58,45,36,0.4);
  z-index: 190;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s;
}
.mobile-overlay.open { opacity: 1; pointer-events: all; }

/* ══════════════════════════════════════════════════
   RESPONSIVE — B Harmony
   ══════════════════════════════════════════════════ */

/* ── TABLETTE LARGE ── */
@media (max-width: 1024px) {
  .about-inner { padding: 5rem 3rem 9rem; gap: 3rem; }
  .services { padding: 4rem 2rem 8rem; }
  .services-arches { gap: 2.5rem; }
  .bienfaits-grid { grid-template-columns: repeat(2, 1fr); }
  .temoignages-grid { grid-template-columns: repeat(2, 1fr); }
  .temoignages { padding: 4rem 3rem 8rem; }
}

/* ── TABLETTE ── */
@media (max-width: 900px) {
  .about-inner {
    grid-template-columns: 1fr;
    padding: 4rem 2rem 8rem;
    gap: 2.5rem;
    text-align: center;
  }
  .about-photo { justify-content: center; }
  .arch-wrap { width: 255px; height: 350px; }
  .about-text { max-width: 560px; margin: 0 auto; }
  .btn-about { display: inline-block; }

  .services-arches { gap: 2rem; }
  .arch-img-outer, .arch-img-wrap { width: 250px; height: 345px; }

  .banner-quote { padding: 90px 0; min-height: 400px; }
  .banner-text { font-size: clamp(1.2rem, 3vw, 1.8rem); }
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  /* Navbar — toujours en taupe sur mobile (pas de blanc en haut) */
  .navbar { padding: 0 1.2rem; }
  .navbar:not(.scrolled) {
    background: rgba(203, 189, 169, 0.97);
    border-bottom-color: rgba(160, 144, 120, 0.35);
  }
  .navbar:not(.scrolled) .nav-logo {
    background: rgba(203, 189, 169, 0.97);
    border-color: rgba(160, 144, 120, 0.4);
  }
  .nav-left, .nav-info { display: none; }
  .burger { display: flex; }
  .btn-nav-contact { display: none; }

  /* Logo bubble réduit */
  .nav-logo { width: 156px; height: 156px; margin-top: -28px; box-shadow: 0 10px 32px rgba(58,45,36,0.22); }
  .nav-logo img { width: 100%; height: 100%; }

  /* Hero : plein écran sans marges */
  .hero { padding: 0; min-height: 100svh; }
  .hero-video { top: 0; left: 0; right: 0; bottom: 0; width: 100%; height: 100%; border-radius: 0; }
  .hero-overlay { top: 0; left: 0; right: 0; bottom: 0; border-radius: 0; }
  .hero-content { padding: 6rem 1.5rem 3rem; }
  .hero-content h1 { font-size: clamp(2.8rem, 9vw, 4.5rem); }

  /* About */
  .about-inner { padding: 3rem 1.5rem 7rem; gap: 2rem; }
  .about-photo .arch-img-outer,
  .about-photo .arch-img-outer::before,
  .about-photo .arch-wrap { width: 280px; height: 380px; }

  /* Bienfaits */
  .bienfaits { padding: 3rem 1.5rem 7rem; }
  .bienfaits-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .bienfait-card { padding: 1.5rem 1rem; }

  /* Services — 2 colonnes sur tablette */
  .services { padding: 3rem 1.5rem 7rem; }
  .services-arches { gap: 2rem; flex-wrap: wrap; justify-content: center; }
  .arch-card { max-width: 340px; min-width: 280px; }
  .arch-img-outer, .arch-img-wrap { width: 250px; height: 340px; }

  /* Banner — vagues plus courtes sur mobile pour éviter qu'elles mangent le contenu */
  .wave-container { height: 70px; }
  .banner-quote { padding: 80px 0 90px; min-height: 0; }
  .banner-eyebrow { font-size: 0.75rem; margin-bottom: 1rem; }
  .banner-text { font-size: clamp(1.1rem, 4vw, 1.6rem); padding: 0 1.5rem; }

  /* Témoignages */
  .temoignages { padding: 3rem 1.5rem 7rem; }
  .temoignages-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }

  /* Contact */
  .contact-section { padding: 4rem 1.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-form { gap: 0.8rem; }

  /* Footer */
  .footer { padding: 3rem 1.5rem; gap: 1rem; }
  .footer-nav { flex-wrap: wrap; gap: 1rem; justify-content: center; }
  .footer-logo { width: 80px; }
}

/* ── MOBILE PETIT ── */
@media (max-width: 480px) {
  .nav-logo { width: 134px; height: 134px; margin-top: -22px; }

  .hero-content h1 { font-size: clamp(2.2rem, 10vw, 3.2rem); }
  .btn-hero { padding: 0.7rem 1.8rem; font-size: 0.75rem; }

  .bienfaits-grid { grid-template-columns: 1fr; }
  .bienfait-card { padding: 1.4rem 1rem; }

  /* Services : 1 colonne sur petit mobile */
  .services-arches { flex-direction: column; align-items: center; gap: 2.5rem; }
  .arch-card { max-width: 100%; width: 100%; }
  .arch-img-outer, .arch-img-wrap { width: 200px; height: 280px; }
  .about-photo .arch-img-outer,
  .about-photo .arch-img-outer::before,
  .about-photo .arch-wrap { width: 250px; height: 340px; }
  .arch-card-text h3 { font-size: 1.6rem; }

  .temoignage-card { padding: 1.5rem 1.2rem; }
  .temoignages-grid { grid-template-columns: 1fr; }
}

/* ── TRÈS PETIT (320px) ── */
@media (max-width: 360px) {
  .nav-logo { width: 110px; height: 110px; margin-top: -16px; }
  .hero-content h1 { font-size: 2rem; }
  .arch-img-outer, .arch-img-wrap { width: 170px; height: 240px; }
  .about-photo .arch-img-outer,
  .about-photo .arch-img-outer::before,
  .about-photo .arch-wrap { width: 220px; height: 300px; }
}

/* ════════════════════════════════════════════════
   PAGES DE CONTENU (articles, légal, carte cadeau)
   ════════════════════════════════════════════════ */
.content-page { position: relative; background: var(--cream); padding: 9rem 1.5rem 8rem; }
.content-inner { max-width: 820px; margin: 0 auto; }
.content-meta { font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sand); margin-bottom: 1rem; }
.article-byline { font-size: 0.85rem !important; color: var(--sand) !important; margin: -0.6rem 0 1.8rem !important; letter-spacing: 0.02em; }
.article-byline time { color: var(--brown-light); }
.content-inner h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 400; color: var(--brown); line-height: 1.12; margin-bottom: 1.4rem;
}
.content-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3.2vw, 2rem);
  font-weight: 400; color: var(--brown); margin: 2.6rem 0 1rem;
}
.content-inner h3 { font-size: 1.08rem; font-weight: 500; color: var(--brown); margin: 1.8rem 0 0.6rem; }
.content-inner p, .content-inner li { color: var(--brown-light); line-height: 1.85; font-size: 1rem; }
.content-inner p { margin-bottom: 1.1rem; }
.content-inner ul { padding-left: 1.3rem; margin-bottom: 1.3rem; }
.content-inner li { margin-bottom: 0.5rem; }
.content-inner a { color: var(--brown); text-decoration: underline; text-underline-offset: 3px; }
.content-lead { font-size: 1.18rem !important; color: var(--brown) !important; line-height: 1.7 !important; margin-bottom: 2rem !important; }
.content-divider { height: 1px; background: rgba(160,144,120,0.3); margin: 2.5rem 0; border: none; }
.content-note { background: #fff; border: 1px solid rgba(160,144,120,0.22); border-radius: 14px; padding: 1.4rem 1.6rem; margin: 1.8rem 0; }
.content-note p { margin-bottom: 0; font-size: 0.95rem; }
.content-fill { color: #b08968; font-style: italic; }
.content-cta { display: inline-block; margin-top: 1.5rem; padding: 0.85rem 2.2rem; background: var(--brown); color: var(--cream); text-decoration: none; font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase; border-radius: 2px; transition: background 0.3s; }
.content-cta:hover { background: var(--brown-light); }
.content-back { display: inline-block; margin-bottom: 2rem; color: var(--brown-light); font-size: 0.85rem; text-decoration: none; }
.content-back:hover { color: var(--brown); }

/* Blog / Conseils — grille de cartes */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.8rem; margin-top: 2.8rem; }
.blog-card { background: #fff; border: 1px solid rgba(160,144,120,0.2); border-radius: 18px; overflow: hidden; display: flex; flex-direction: column; transition: transform 0.5s cubic-bezier(.22,1,.36,1), box-shadow 0.5s ease; }
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(58,45,36,0.1); }
.blog-card img { width: 100%; height: 190px; object-fit: cover; }
.blog-card-body { padding: 1.6rem 1.6rem 1.8rem; display: flex; flex-direction: column; flex: 1; }
.blog-card h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 400; color: var(--brown); margin: 0 0 0.6rem; }
.blog-card p { color: var(--brown-light); font-size: 0.93rem; line-height: 1.65; margin-bottom: 1.3rem; flex: 1; }
.blog-link { color: var(--brown); font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; border-bottom: 1px solid var(--sand); padding-bottom: 3px; align-self: flex-start; transition: border-color 0.3s; }
.blog-link:hover { border-bottom-color: var(--brown); }

/* Carte cadeau */
.giftcard-visual {
  background: linear-gradient(135deg, #4a3a2e, #2e251d);
  color: var(--cream); border-radius: 20px; padding: 2.6rem 2rem; text-align: center;
  box-shadow: 0 18px 50px rgba(58,45,36,0.25); position: relative; overflow: hidden;
}
.giftcard-visual::after { content: '✦'; position: absolute; top: 1rem; right: 1.3rem; color: var(--sand); opacity: 0.5; font-size: 1.2rem; }
.giftcard-visual .gc-brand { font-family: 'Cormorant Garamond', serif; font-size: 2rem; margin-bottom: 0.3rem; }
.giftcard-visual .gc-sub { font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--sand); }
.giftcard-visual .gc-label { margin-top: 1.8rem; font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.85; }
.gift-amounts { display: flex; flex-wrap: wrap; gap: 1rem; margin: 1.8rem 0; }
.gift-amount { flex: 1; min-width: 120px; background: #fff; border: 1px solid rgba(160,144,120,0.25); border-radius: 14px; padding: 1.3rem 1rem; text-align: center; }
.gift-amount strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; color: var(--brown); }
.gift-amount span { font-size: 0.82rem; color: var(--brown-light); }
@media (max-width: 600px) {
  .content-page { padding: 7.5rem 1.2rem 6rem; }
}

/* Carte Google Maps — page contact */
.contact-map { max-width: 900px; margin: 3rem auto 0; padding: 0 1.5rem; }
.contact-map iframe {
  display: block; width: 100%; height: 340px; border: 0;
  border-radius: 16px;
  box-shadow: 0 12px 36px rgba(58,45,36,0.12);
  filter: grayscale(0.15);
}
.contact-map-note { text-align: center; font-size: 0.85rem; color: var(--brown-light); margin-top: 0.9rem; }
@media (max-width: 600px) { .contact-map iframe { height: 280px; } }

/* ── SECTION L'ESSENTIEL + FAQ (GEO / IA) ─────────── */
.essentiel-section {
  position: relative;
  background: var(--cream);
  padding: 4.5rem 2rem 9rem;
  text-align: center;
}
.essentiel-section h2 { margin-bottom: 1.8rem; }
.essentiel-card {
  max-width: 760px;
  margin: 0 auto 4rem;
  background: #FCF9F4;
  border: 1px solid rgba(58,45,36,0.08);
  border-radius: 16px;
  box-shadow: 0 6px 22px rgba(58,45,36,0.07);
  padding: 2rem 2.2rem;
  text-align: left;
}
.essentiel-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.85rem; }
.essentiel-list li {
  color: var(--brown-light);
  font-size: 0.95rem;
  line-height: 1.65;
  padding-left: 1.1rem;
  position: relative;
}
.essentiel-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.6rem;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--sand);
}
.essentiel-list strong { color: var(--brown); font-weight: 500; }
.essentiel-list a { color: var(--brown); text-decoration: underline; text-underline-offset: 3px; }
.essentiel-faq { max-width: 760px; margin: 0 auto; text-align: left; }
@media (max-width: 700px) {
  .essentiel-section { padding: 3rem 1.5rem 7rem; }
  .essentiel-card { padding: 1.5rem 1.4rem; margin-bottom: 3rem; }
  .essentiel-list li { font-size: 0.9rem; }
}