:root {
  --bg-top: #01120e;
  --bg-mid: #465048;
  --bg-bottom: #aba99d;
  --card-bg: #5e655d;
  --card-bg-alt: #4a534b;
  --accent: #6a7c81;
  --text-light: #ffffff;
  --text-soft: #fffdfd;
  --placeholder: #99998e;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  --shadow-card: 10px 4px 16px rgba(0, 0, 0, 0.25);
  --font-display: "Poiret One", "Cormorant Garamond", serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --max-width: 1240px;
}

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

html, body { margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  color: var(--text-light);
  background: linear-gradient(
    to bottom,
    var(--bg-top) 0%,
    var(--bg-top) 24.7%,
    var(--bg-mid) 64.16%,
    var(--bg-bottom) 100%
  );
  min-height: 100vh;
  line-height: 1.5;
  overflow-x: hidden;
}

/* ---------- Parallax background layers ---------- */

.parallax-stars {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  will-change: transform;
}

.parallax-stars span {
  position: absolute;
  width: 3px;
  height: 3px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
  opacity: 0.7;
}

.parallax-stars span:nth-child(1) { top: 8%; left: 12%; }
.parallax-stars span:nth-child(2) { top: 14%; left: 78%; width: 2px; height: 2px; }
.parallax-stars span:nth-child(3) { top: 22%; left: 30%; width: 4px; height: 4px; }
.parallax-stars span:nth-child(4) { top: 28%; left: 88%; }
.parallax-stars span:nth-child(5) { top: 35%; left: 5%; width: 2px; height: 2px; }
.parallax-stars span:nth-child(6) { top: 42%; left: 60%; }
.parallax-stars span:nth-child(7) { top: 48%; left: 18%; width: 4px; height: 4px; }
.parallax-stars span:nth-child(8) { top: 55%; left: 92%; width: 2px; height: 2px; }
.parallax-stars span:nth-child(9) { top: 62%; left: 45%; }
.parallax-stars span:nth-child(10) { top: 68%; left: 8%; }
.parallax-stars span:nth-child(11) { top: 75%; left: 72%; width: 4px; height: 4px; }
.parallax-stars span:nth-child(12) { top: 82%; left: 25%; width: 2px; height: 2px; }
.parallax-stars span:nth-child(13) { top: 88%; left: 85%; }
.parallax-stars span:nth-child(14) { top: 95%; left: 50%; }
.parallax-stars span:nth-child(15) { top: 4%; left: 55%; width: 2px; height: 2px; }
.parallax-stars span:nth-child(16) { top: 18%; left: 50%; }
.parallax-stars span:nth-child(17) { top: 38%; left: 35%; width: 2px; height: 2px; }
.parallax-stars span:nth-child(18) { top: 58%; left: 28%; }
.parallax-stars span:nth-child(19) { top: 72%; left: 95%; width: 4px; height: 4px; }
.parallax-stars span:nth-child(20) { top: 90%; left: 12%; width: 2px; height: 2px; }

.parallax-moon {
  position: fixed;
  top: 12vh;
  right: 8vw;
  width: clamp(140px, 18vw, 280px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(
    circle at 35% 35%,
    #f4ead0 0%,
    #d6c79c 35%,
    #8a8268 65%,
    #3a3a30 90%
  );
  box-shadow:
    0 0 60px rgba(244, 234, 208, 0.35),
    inset -20px -25px 40px rgba(0, 0, 0, 0.4);
  z-index: 0;
  pointer-events: none;
  will-change: transform;
  opacity: 0.85;
}

.cosmos-hero,
.signature,
.massages,
.testimonials,
.site-footer { position: relative; z-index: 1; }

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

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

/* ---------- Intro overlay (page load animation) ---------- */

.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background-color: #01120e;
  background-image:
    linear-gradient(rgba(1, 18, 14, 0.35), rgba(1, 18, 14, 0.55)),
    url("fond vage.gif");
  background-size: cover;
  background-position: center;
  display: grid;
  place-items: center;
  animation: intro-fade 1.4s ease 0.6s forwards;
  will-change: opacity, transform;
}

.intro-logo {
  width: clamp(280px, 42vw, 520px);
  height: auto;
  border-radius: 50%;
  opacity: 0;
  animation: intro-logo-in 1.1s ease 0.1s forwards;
  filter: sepia(0.55) saturate(1.15) hue-rotate(-12deg) brightness(0.95) contrast(1.05);
  box-shadow:
    0 0 0 1px rgba(244, 234, 208, 0.35),
    0 0 0 8px rgba(244, 234, 208, 0.08),
    0 30px 70px rgba(0, 0, 0, 0.55),
    inset 0 0 60px rgba(0, 0, 0, 0.25);
}

.intro-logo + .intro-fallback { display: none; }

.intro-fallback {
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: 0.3em;
  color: #fff;
  opacity: 0;
  animation: intro-logo-in 1.1s ease 0.1s forwards;
}

@keyframes intro-logo-in {
  0%   { opacity: 0; transform: scale(0.85); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes intro-fade {
  0%   { opacity: 1; transform: translateY(0); }
  70%  { opacity: 1; }
  100% { opacity: 0; transform: translateY(-100%); visibility: hidden; pointer-events: none; }
}

/* ---------- Cosmos topbar (Switzerland-style minimal header) ---------- */

.cosmos-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(20px, 4vw, 56px);
  font-family: var(--font-body);
  color: #fff;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0));
  pointer-events: none;
  transform: translateY(-100%);
  animation: topbar-slide-in 0.9s ease 3.0s forwards;
}

.cosmos-topbar > * { pointer-events: auto; }

@keyframes topbar-slide-in {
  to { transform: translateY(0); }
}

.cosmos-topbar.cosmos-topbar--solid {
  background: rgba(1, 18, 14, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.cosmos-logo {
  display: inline-flex;
  align-items: center;
  transition: transform 0.2s ease;
}

.cosmos-logo img {
  height: clamp(100px, 11vw, 140px);
  width: auto;
  display: block;
  border-radius: 50%;
  filter: sepia(0.55) saturate(1.15) hue-rotate(-12deg) brightness(0.95) contrast(1.05);
  box-shadow:
    0 0 0 1px rgba(244, 234, 208, 0.35),
    0 6px 24px rgba(0, 0, 0, 0.45);
}

.cosmos-logo:hover { transform: scale(1.04); }

.cosmos-logo img + .cosmos-logo-fallback { display: none; }

.cosmos-logo-fallback {
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #fff;
}

.cosmos-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 8px 8px 28px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.cosmos-nav a:not(.cosmos-cta) {
  position: relative;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.85;
  padding: 10px 18px;
  border-radius: 999px;
  transition: opacity 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.cosmos-nav a:not(.cosmos-cta)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 0;
  height: 1px;
  background: #fff;
  transition: width 0.3s ease, left 0.3s ease;
}

.cosmos-nav a:not(.cosmos-cta):hover {
  opacity: 1;
}

.cosmos-nav a:not(.cosmos-cta):hover::after {
  width: 22px;
  left: calc(50% - 11px);
}

.cosmos-cta {
  background: transparent;
  color: #fff;
  padding: 11px 22px 11px 24px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  opacity: 1 !important;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.25s ease, color 0.25s ease,
              border-color 0.25s ease, gap 0.25s ease,
              transform 0.2s ease;
}

.cosmos-cta::after {
  content: "\2192";
  font-size: 15px;
  letter-spacing: 0;
  transition: transform 0.25s ease;
}

/* Larger pill variant used as standalone CTA below sections */
.cosmos-cta--lg {
  padding: 18px 40px 18px 44px;
  font-size: 14px;
  letter-spacing: 0.32em;
  gap: 18px;
  box-shadow:
    0 0 0 6px rgba(255, 255, 255, 0.04),
    0 18px 50px rgba(0, 0, 0, 0.45);
}

.cosmos-cta--lg::after { font-size: 18px; }

.team-card-cta {
  align-self: center;
  margin-top: 6px;
}

.cosmos-cta:hover {
  background: #fff;
  color: #1a1a1a;
  border-color: #fff;
  gap: 14px;
  transform: translateY(-1px);
}

.cosmos-cta:hover::after {
  transform: translateX(3px);
}

@media (max-width: 720px) {
  /* FULL-SCREEN mobile menu — display:none by default so it's NOT in the way */
  .cosmos-nav {
    display: none !important;
  }

  .cosmos-nav.is-open {
    display: flex !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background-color: #01120e !important;
    background-image: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    margin: 0 !important;
    padding: 0 !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0 !important;
    z-index: 9999 !important;
  }

  .cosmos-nav a {
    display: block !important;
    width: 100% !important;
    max-width: 320px !important;
    text-align: center !important;
    padding: 20px 16px !important;
    font-family: var(--font-body) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    letter-spacing: 0.3em !important;
    text-transform: uppercase !important;
    color: #fff !important;
    opacity: 1 !important;
    background: transparent !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 0 !important;
    margin: 0 !important;
    text-decoration: none !important;
    box-sizing: border-box !important;
  }

  .cosmos-nav a.cosmos-cta {
    border: 1px solid rgba(244, 234, 208, 0.5) !important;
    border-radius: 999px !important;
    margin-top: 32px !important;
    padding: 16px 36px !important;
    width: auto !important;
    display: inline-flex !important;
  }

  /* Burger sits on top of the menu so user can close */
  .cosmos-burger { z-index: 10000 !important; }

  /* Backdrop not needed for full-screen menu */
  .cosmos-nav-backdrop { display: none !important; }
}

/* Hamburger button — visible only on mobile */
.cosmos-burger {
  display: none;
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  width: 52px;
  height: 52px;
  padding: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(244, 234, 208, 0.4);
  border-radius: 999px;
  cursor: pointer;
  z-index: 60;
  margin-left: auto;
  color: #fff;
  font-family: inherit;
  font-size: 0;
  line-height: 0;
}

.cosmos-burger svg {
  width: 24px;
  height: 24px;
  display: block;
  margin: auto;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  fill: none;
  transition: opacity 0.25s ease;
}

.cosmos-burger .cosmos-burger-close { display: none; }

.cosmos-burger[aria-expanded="true"] .cosmos-burger-open { display: none; }
.cosmos-burger[aria-expanded="true"] .cosmos-burger-close { display: block; }

@media (max-width: 720px) {
  .cosmos-burger { display: inline-flex; align-items: center; justify-content: center; }
}

/* Backdrop when menu is open */
.cosmos-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 54;
}

.cosmos-nav-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* ---------- Hero stagger reveal (after intro) ---------- */

.cosmos-eyebrow,
.cosmos-title,
.cosmos-bottom .cosmos-social,
.cosmos-bottom .cosmos-scroll,
.cosmos-bottom .cosmos-counter {
  opacity: 0;
  animation: hero-reveal 1.1s ease forwards;
}

.cosmos-eyebrow         { animation-delay: 3.2s; }
.cosmos-title           { animation-delay: 3.5s; }
.cosmos-social          { animation-delay: 4.1s; }
.cosmos-scroll          { animation-delay: 4.3s; }
.cosmos-counter         { animation-delay: 4.5s; }

@keyframes hero-reveal {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* When the JS overrides .cosmos-center transform on scroll, the title keyframes
   still operate on the inner children's transforms (translateY only), so the
   parent translate(-50%,-55%) is preserved. */

/* ---------- Cosmos hero ---------- */

.cosmos-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
}

.cosmos-hero-bg {
  position: absolute;
  inset: -10% -2% -20%;
  background-color: #2a3a32;
  background-image: url("image-hero.jpg"), url("https://picsum.photos/id/1043/2000/1200");
  background-size: cover;
  background-position: center 75%;
  background-attachment: fixed;
  will-change: transform;
  z-index: -2;
}

.cosmos-hero-fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(1, 18, 14, 0.05) 40%, rgba(1, 18, 14, 0.35) 100%),
    radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 60%);
  z-index: -1;
}

.cosmos-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  text-align: center;
  width: min(92vw, 1000px);
  will-change: transform;
}

.cosmos-eyebrow {
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  font-size: clamp(13px, 1.2vw, 17px);
  letter-spacing: 0.6em;
  text-transform: uppercase;
  margin: 0 0 28px;
  opacity: 0.95;
}

.cosmos-title {
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  font-weight: 400;
  font-size: clamp(40px, 8vw, 108px);
  letter-spacing: 0.18em;
  word-spacing: 0.35em;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 720px) {
  .cosmos-title { white-space: normal; }
}

.cosmos-bottom {
  position: absolute;
  bottom: clamp(20px, 4vw, 48px);
  left: 0;
  right: 0;
  padding: 0 clamp(20px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 24px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.cosmos-social {
  display: flex;
  gap: 18px;
  align-items: center;
}

.cosmos-social a {
  color: #fff;
  opacity: 0.85;
  display: inline-flex;
  width: 22px;
  height: 22px;
  transition: opacity 0.2s ease;
}

.cosmos-social a:hover { opacity: 1; }

.cosmos-social svg { width: 100%; height: 100%; }

.cosmos-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.35em;
}

.cosmos-scroll-line {
  width: 1px;
  height: 56px;
  background: rgba(255, 255, 255, 0.55);
  animation: cosmos-scroll-pulse 2.2s ease-in-out infinite;
  transform-origin: top;
}

@keyframes cosmos-scroll-pulse {
  0%, 100% { transform: scaleY(0.4); opacity: 0.4; }
  50%      { transform: scaleY(1);   opacity: 1; }
}

.cosmos-counter {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 14px;
  font-family: "Cormorant Garamond", "Playfair Display", serif;
}

.cosmos-counter-current {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1;
}

.cosmos-counter-bar {
  width: clamp(40px, 6vw, 80px);
  height: 1px;
  background: rgba(255, 255, 255, 0.6);
  align-self: center;
}

.cosmos-counter-total {
  font-size: clamp(14px, 1.5vw, 18px);
  letter-spacing: 0.1em;
  opacity: 0.85;
}

@media (max-width: 640px) {
  .cosmos-bottom { grid-template-columns: 1fr; justify-items: center; gap: 18px; }
  .cosmos-social { order: 3; }
  .cosmos-counter { order: 2; }
  .cosmos-scroll { order: 1; }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--text-light);
  padding: 16px 40px;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.15s ease, background-color 0.2s ease;
  box-shadow: 0 4px 2px rgba(0, 0, 0, 0.25);
  border: none;
}

.btn-primary {
  background: var(--card-bg-alt);
  min-width: 251px;
  min-height: 61px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary:hover { background: #586259; transform: translateY(-1px); }

/* ---------- Section titles ---------- */

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 400;
  margin: 0 0 24px;
  letter-spacing: 0.02em;
}

.section-title--center { text-align: center; margin-bottom: 56px; }

/* ---------- Signature section ---------- */

.signature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 120px clamp(20px, 6vw, 80px);
}

.signature-figure {
  position: relative;
  margin: 0;
  width: clamp(280px, 36vw, 520px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  justify-self: center;
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

/* The inner image is bigger than the circle so it can drift in parallax,
   creating a "looking through a fixed lens" feel (mirror zoom). */
.signature-img {
  position: absolute;
  inset: -15%;
  background-color: #3b4942;
  background-image: url("section-lieu.jpg"), url("https://picsum.photos/seed/spa-mist-bath/1400/1400");
  background-size: cover;
  background-position: center 68%;
  will-change: transform;
  transition: transform 0.4s ease-out;
}

.signature-figure:hover .signature-img { transform: scale(1.05); }

/* Magnifier lens — follows the cursor and shows a zoomed view of the image */
.signature-lens {
  position: absolute;
  width: clamp(140px, 18vw, 220px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.6);
  transition: opacity 0.25s ease, transform 0.25s ease;
  background-image: url("section-lieu.jpg"), url("https://picsum.photos/seed/spa-mist-bath/1400/1400");
  background-repeat: no-repeat;
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.5),
    inset 0 0 0 2px rgba(255, 255, 255, 0.45);
  z-index: 10;
  will-change: left, top, transform, background-position;
}

.signature-figure:hover .signature-lens {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.signature-figure { cursor: zoom-in; }

.signature-text h2 { margin-bottom: 28px; }

.signature-text p {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.6;
  margin: 0;
}

/* ---------- Scroll reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  transition: opacity 1.1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1.1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

/* Stagger massage cards: each card reveals a beat after the previous one */
.card-grid .card:nth-child(2) { transition-delay: 0.15s; }
.card-grid .card:nth-child(3) { transition-delay: 0.30s; }

.signature-figure.reveal {
  transform: translateY(40px) scale(0.7);
}

.signature-figure.reveal.in-view {
  transform: translateY(0) scale(1);
}

@media (max-width: 800px) {
  .signature { grid-template-columns: 1fr; }
  .signature-figure { width: min(80vw, 360px); }
}

/* ---------- Massage cards (modern) ---------- */

.massages {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(80px, 10vw, 140px) clamp(20px, 6vw, 80px);
  isolation: isolate;
}

/* Full-bleed rectangular background with overlay for readability */
.massages-bg {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  z-index: -1;
  background-color: #2a3a32;
  background-image:
    linear-gradient(180deg, rgba(1, 18, 14, 0.55) 0%, rgba(1, 18, 14, 0.75) 100%),
    url("engagement-4.jpg");
  background-size: cover;
  background-position: center;
  pointer-events: none;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.massages .section-title {
  position: relative;
}

.massages .section-title::after {
  content: "";
  display: block;
  width: 64px;
  height: 1px;
  margin: 20px auto 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 40px);
}

.card {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 0 0 28px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
  gap: 0;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 0.4s ease,
              border-color 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.card:nth-child(2) { background: rgba(255, 255, 255, 0.08); }

.card-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  background-color: #4a5a4f;
  background-size: cover;
  background-position: center;
  border-radius: 0;
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.card-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.6) 100%);
  pointer-events: none;
}

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

.card:nth-child(1) .card-photo {
  background-image: url("massage-1.jpg"), url("https://picsum.photos/seed/massage-1/600/700");
}
.card:nth-child(2) .card-photo {
  background-image: url("massage-2.jpg"), url("https://picsum.photos/seed/massage-2/600/700");
}
.card:nth-child(3) .card-photo {
  background-image: url("massage-3.jpg"), url("https://picsum.photos/seed/massage-3/600/700");
}

.card-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(16px, 1.35vw, 20px);
  letter-spacing: 0.02em;
  line-height: 1.3;
  margin: 24px 24px 0;
  max-width: none;
  color: #fff;
  text-align: center;
  height: 2.6em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.card-desc {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  margin: 14px 28px 24px;
  max-width: none;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
  flex: 1;
}

.card-btn {
  align-self: center;
  margin: 0 28px;
  margin-top: auto;
  min-width: 0;
  padding: 18px 40px 18px 44px;
  background: transparent;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  box-shadow:
    0 0 0 6px rgba(255, 255, 255, 0.04),
    0 18px 50px rgba(0, 0, 0, 0.45);
  display: inline-flex;
  align-items: center;
  gap: 18px;
  transition: background 0.25s ease, color 0.25s ease,
              border-color 0.25s ease, gap 0.25s ease,
              transform 0.2s ease;
}

.card-btn::after {
  content: "\2192";
  font-size: 18px;
  letter-spacing: 0;
  transition: transform 0.25s ease;
}

.card-btn:hover {
  background: #fff;
  color: #1a1a1a;
  border-color: #fff;
  gap: 14px;
  transform: translateY(-1px);
}

.card-btn:hover::after {
  transform: translateX(3px);
}

@media (max-width: 900px) {
  .card-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}

/* ---------- Massages carousel (3 par 3) ---------- */

.massages-carousel {
  position: relative;
  margin-top: clamp(32px, 4vw, 56px);
}

.massages-viewport {
  overflow: hidden;
}

.massages-track {
  display: flex;
  width: 100%;
  transition: transform 0.8s cubic-bezier(0.76, 0, 0.24, 1);
  will-change: transform;
}

.massages-slide {
  flex: 0 0 calc(100% / 3);   /* 3 cartes visibles par page */
  box-sizing: border-box;
  padding: 0 clamp(12px, 1.5vw, 20px);
  display: flex;
}

.massages-slide > * {
  width: 100%;
}

.massages-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 28px);
  margin-top: clamp(28px, 3.5vw, 44px);
}

.massages-dots {
  display: flex;
  gap: 10px;
}

.massages-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background 0.25s ease, width 0.25s ease;
}

.massages-dot[aria-selected="true"] {
  background: rgba(244, 234, 208, 0.9);
  width: 22px;
  border-radius: 999px;
}

@media (max-width: 1000px) {
  .massages-slide { flex: 0 0 calc(100% / 2); }   /* 2 par page sur tablette */
}

@media (max-width: 700px) {
  .massages-slide { flex: 0 0 100%; }              /* 1 par page sur mobile */
}

/* ---------- Testimonials carousel — structure Figma ---------- */

:root {
  --tone-cream: #f4ead0;
  --tone-sage: #6a7c81;
  --tone-amber: #d6b88a;
  --tone-bark: #2a3a32;
}

.testimonials {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(80px, 10vw, 140px) clamp(20px, 6vw, 80px);
}

.testimonials::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: clamp(180px, 22vw, 300px);
  background: linear-gradient(
    to bottom,
    rgba(1, 18, 14, 0) 0%,
    rgba(1, 18, 14, 0.5) 55%,
    #01120e 100%
  );
  pointer-events: none;
  z-index: 0;
}

.carousel {
  position: relative;
  margin-top: clamp(40px, 6vw, 72px);
}

.carousel-viewport {
  overflow: hidden;
  border-radius: 20px;
}

.carousel-track {
  display: flex;
  width: 100%;
  transition: transform 0.85s cubic-bezier(0.76, 0, 0.24, 1);
  will-change: transform;
}

.testimonial-slide {
  flex: 0 0 calc(100% / 3);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
  margin: 0;
  padding: clamp(20px, 2.5vw, 32px) clamp(16px, 2vw, 28px) clamp(28px, 3.5vw, 48px);
  box-sizing: border-box;
}

/* Layered media — square photo + circular avatar centered bottom (Figma) */
.testimonial-media {
  position: relative;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 4 / 3;
  isolation: isolate;
}

.testimonial-photo {
  position: absolute;
  inset: 0 0 22% 0;
  background-color: #3b4a40;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.testimonial-avatar {
  position: absolute;
  left: 50%;
  bottom: -2%;
  transform: translateX(-50%);
  width: 44%;
  max-width: 220px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background-color: #6a7c81;
  background-size: cover;
  background-position: center;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.15);
  z-index: 2;
}

.testimonial-slide blockquote {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 24px);
  font-style: italic;
  margin: 0;
  max-width: 42ch;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
}

.testimonial-slide figcaption {
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

/* ---- Controls ---- */
.carousel-controls {
  margin-top: clamp(24px, 4vw, 40px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  padding: 0 clamp(8px, 2vw, 24px);
}

.carousel-counter {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  color: #fff;
}

.carousel-current {
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1;
}

.carousel-divider {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
}

.carousel-total {
  font-size: 13px;
  letter-spacing: 0.1em;
  opacity: 0.55;
}

.carousel-progress {
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  overflow: hidden;
}

.carousel-progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--tone-amber), var(--tone-cream));
  transition: width 0.3s linear;
}

.carousel-nav {
  display: flex;
  gap: 10px;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease,
              border-color 0.3s ease, transform 0.25s ease;
}

.carousel-btn svg { width: 20px; height: 20px; display: block; }

.carousel-btn:hover {
  background: #fff;
  color: var(--tone-bark);
  border-color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 1000px) {
  .testimonial-slide { flex: 0 0 calc(100% / 2); }
}

@media (max-width: 700px) {
  .testimonial-slide { flex: 0 0 100%; }
  .testimonial-media { max-width: 360px; aspect-ratio: 1 / 1; }
  .carousel-controls { grid-template-columns: auto auto; }
  .carousel-progress { grid-column: 1 / -1; order: 3; }
  .carousel-nav { justify-self: end; }
}

/* ---------- Footer ---------- */

.site-footer {
  margin-top: 0;
  padding: clamp(40px, 6vw, 80px) clamp(20px, 6vw, 80px) 0;
  background: #01120e;
  color: var(--text-soft);
}

/* Footer CTA banner */

.footer-cta {
  position: relative;
  max-width: none;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: calc(-1 * clamp(40px, 6vw, 80px));
  border-radius: 0;
  overflow: hidden;
  min-height: clamp(320px, 48vw, 560px);
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}

.footer-cta-bg {
  position: absolute;
  inset: 0;
  background-color: #2a3a32;
  background-image:
    url("image-hero.jpg"),
    url("https://images.unsplash.com/photo-1448375240586-882707db888b?w=2000&q=80");
  background-size: cover;
  background-position: center 65%;
  background-attachment: fixed;
  z-index: -1;
}

/* Mobile / touch: fixed attachment breaks on iOS, switch to scroll */
@media (max-width: 900px), (hover: none) {
  .footer-cta-bg {
    background-attachment: scroll;
    background-position: center center;
  }
}

.footer-cta-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(1, 18, 14, 0.15) 0%,
    rgba(1, 18, 14, 0.45) 50%,
    rgba(1, 18, 14, 0.9) 85%,
    #01120e 100%
  );
  pointer-events: none;
}

.footer-cta-content {
  text-align: center;
  padding: 48px 24px;
  max-width: 720px;
}

.footer-cta-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.2vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 32px;
}

.footer-cta-btn {
  background: transparent;
  color: #fff;
  padding: 14px 26px 14px 28px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  min-width: 0;
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: background 0.25s ease, color 0.25s ease,
              border-color 0.25s ease, gap 0.25s ease,
              transform 0.2s ease;
}

.footer-cta-btn::after {
  content: "\2192";
  font-size: 16px;
  letter-spacing: 0;
  transition: transform 0.25s ease;
}

.footer-cta-btn:hover {
  background: #fff;
  color: #1a1a1a;
  border-color: #fff;
  gap: 16px;
  transform: translateY(-1px);
}

.footer-cta-btn:hover::after {
  transform: translateX(3px);
}

/* Main footer area */

.footer-main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(48px, 6vw, 96px) 0 clamp(32px, 4vw, 64px);
  display: grid;
  grid-template-columns: minmax(180px, 240px) 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}

.footer-brand-block {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-logo img {
  height: clamp(140px, 14vw, 200px);
  width: auto;
  display: block;
  border-radius: 50%;
  filter: sepia(0.55) saturate(1.15) hue-rotate(-12deg) brightness(0.95) contrast(1.05);
  box-shadow:
    0 0 0 1px rgba(244, 234, 208, 0.3),
    0 10px 30px rgba(0, 0, 0, 0.5);
}

.footer-logo img + .footer-logo-fallback { display: none; }

.footer-logo-fallback {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 24px;
  color: #fff;
}

.footer-social {
  display: flex;
  gap: 18px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: #fff;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.footer-social a:hover { opacity: 1; }

.footer-social svg { width: 22px; height: 22px; }

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 48px);
}

.footer-col h3 {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  margin: 0 0 20px;
  opacity: 0.9;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a,
.footer-col span {
  font-family: var(--font-body);
  font-size: 15px;
  color: #fff;
  opacity: 0.75;
  transition: opacity 0.2s ease;
}

.footer-col a:hover { opacity: 1; }

/* Bottom bar */

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-legal {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-legal a {
  font-family: var(--font-body);
  font-size: 14px;
  color: #fff;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.footer-legal a:hover { opacity: 1; }

.footer-copy {
  font-family: var(--font-body);
  font-size: 14px;
  color: #fff;
  opacity: 0.65;
  margin: 0;
}

@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: clamp(36px, 6vw, 56px);
    padding: clamp(40px, 8vw, 70px) 0 clamp(30px, 5vw, 50px);
  }

  /* Brand block centered + decorative divider underneath */
  .footer-brand-block {
    align-items: center;
    text-align: center;
    padding-bottom: clamp(28px, 5vw, 40px);
    position: relative;
  }

  .footer-brand-block::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    max-width: 220px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(244, 234, 208, 0.4), transparent);
  }

  .footer-logo img {
    height: clamp(110px, 22vw, 150px);
  }

  /* Social icons get a cream pill border, more visible */
  .footer-social {
    gap: 16px;
    justify-content: center;
    margin-top: 8px;
  }

  .footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(244, 234, 208, 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.25s ease;
  }

  .footer-social a:hover {
    background: rgba(244, 234, 208, 0.9);
    color: #1a1a1a;
    border-color: rgba(244, 234, 208, 0.9);
    transform: translateY(-2px);
  }

  .footer-social svg { width: 18px; height: 18px; }

  /* 2-col columns even on small phones (cleaner than single col long list) */
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(28px, 5vw, 40px) clamp(20px, 4vw, 32px);
  }

  /* Column titles in cream with a subtle accent underline */
  .footer-col h3 {
    font-size: 13px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(244, 234, 208, 0.95);
    margin: 0 0 16px;
    padding-bottom: 10px;
    position: relative;
  }

  .footer-col h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 28px;
    height: 1px;
    background: rgba(244, 234, 208, 0.6);
  }

  .footer-col a,
  .footer-col span {
    font-size: 14px;
    line-height: 1.6;
  }

  .footer-col a {
    position: relative;
    transition: color 0.25s ease, padding-left 0.25s ease;
  }

  .footer-col a:hover {
    color: rgba(244, 234, 208, 0.95);
    padding-left: 4px;
  }

  /* Better bottom bar */
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 18px;
    text-align: center;
    padding: 24px 0 32px;
  }

  .footer-legal {
    gap: 22px;
    justify-content: center;
  }

  .footer-legal a {
    font-size: 13px;
    letter-spacing: 0.04em;
  }

  .footer-copy {
    font-size: 13px;
    opacity: 0.6;
  }

  /* Footer CTA banner — more compact and centered on mobile */
  .footer-cta {
    min-height: clamp(260px, 50vw, 380px);
  }

  .footer-cta-title {
    font-size: clamp(26px, 6.5vw, 38px);
    line-height: 1.2;
    padding: 0 8px;
  }

  .footer-cta-btn {
    padding: 14px 24px;
    font-size: 12px;
  }
}

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

  .footer-col h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-col {
    text-align: center;
  }

  .footer-col h3 { letter-spacing: 0.22em; }
}

/* ============================================================
   À PROPOS PAGE
   ============================================================ */

/* ---- Hero ---- */

.apropos-hero {
  position: relative;
  z-index: 1;
  padding: clamp(90px, 9vw, 140px) clamp(20px, 4vw, 56px) clamp(60px, 8vw, 120px);
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
  isolation: isolate;
}

/* Cream moon backdrop — visible au-dessus du stage (lever de lune). */
.apropos-back-moon {
  position: absolute;
  top: -22%;
  left: 50%;
  width: min(900px, 90vw);
  aspect-ratio: 1 / 1;
  transform: translate(-50%, 0);
  background-image: url("apropos-lune.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
  filter:
    sepia(0.15)
    saturate(0.85)
    brightness(1.05)
    contrast(0.95)
    drop-shadow(0 0 100px rgba(244, 234, 208, 0.3));
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 55%, rgba(0, 0, 0, 0.5) 80%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 55%, rgba(0, 0, 0, 0.5) 80%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
  image-rendering: -webkit-optimize-contrast;
  animation: apropos-moonrise 2.6s ease-out 0.1s both;
}

@keyframes apropos-moonrise {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}

.apropos-hero-text {
  position: absolute;
  bottom: 3%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  text-align: center;
  width: min(900px, 92%);
  pointer-events: none;
}

.apropos-hero-eyebrow {
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  font-size: clamp(10px, 0.85vw, 13px);
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.9;
  margin: 0 0 8px;
}

.apropos-hero-title {
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  font-weight: 400;
  font-size: clamp(18px, 2.4vw, 34px);
  letter-spacing: 0.14em;
  word-spacing: 0.2em;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 8px;
  text-transform: uppercase;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.8);
}

.apropos-hero-subtitle {
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(13px, 1.1vw, 17px);
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  line-height: 1.4;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.7);
}

.apropos-hero-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  margin: 10px auto;
  background: linear-gradient(90deg, transparent, rgba(244, 234, 208, 0.7), transparent);
}

.apropos-hero-stage {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(244, 234, 208, 0.08) inset;
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  animation: apropos-stage-rise 1.6s cubic-bezier(0.2, 0.7, 0.2, 1) 0.4s forwards;
}

.apropos-hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 6;
  background:
    linear-gradient(180deg, rgba(1, 18, 14, 0.55) 0%, rgba(1, 18, 14, 0.15) 18%, rgba(1, 18, 14, 0) 35%),
    radial-gradient(ellipse at 50% 0%, rgba(1, 18, 14, 0.45) 0%, rgba(1, 18, 14, 0) 40%);
}

@keyframes apropos-stage-rise {
  0%   { opacity: 0; transform: translateY(40px) scale(0.97); }
  100% { opacity: 1; transform: translateY(0)    scale(1); }
}

.apropos-hero-bg {
  position: absolute;
  inset: 0;
  background-color: #2a3a32;
  background-image:
    url("apropos-hero.jpg"),
    url("https://images.unsplash.com/photo-1532978879514-6cbe1d2e87a3?w=2000&q=80");
  background-size: cover;
  background-position: center;
  z-index: 1;
  opacity: 0.8;
  animation: apropos-hero-zoom 28s ease-in-out infinite alternate;
  will-change: transform;
  image-rendering: -webkit-optimize-contrast;
}

.apropos-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 35%, rgba(244, 234, 208, 0.08) 0%, rgba(1, 18, 14, 0) 55%),
    linear-gradient(180deg, rgba(1, 18, 14, 0.05) 0%, rgba(1, 18, 14, 0) 40%, rgba(1, 18, 14, 0.55) 100%);
  pointer-events: none;
}

@keyframes apropos-hero-zoom {
  0%   { transform: scale(1) translateY(0); }
  100% { transform: scale(1.02) translateY(-0.4%); }
}

/* Soft cream glow behind the moon */
.apropos-hero-glow {
  position: absolute;
  top: 38%;
  left: 50%;
  width: 60%;
  aspect-ratio: 1 / 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 234, 208, 0.08) 0%, rgba(244, 234, 208, 0) 70%);
  pointer-events: none;
  z-index: 2;
  animation: apropos-glow-pulse 7s ease-in-out infinite;
  filter: blur(28px);
}

@keyframes apropos-glow-pulse {
  0%, 100% { opacity: 0.45; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 0.65; transform: translate(-50%, -50%) scale(1.04); }
}

/* Sparkly water GIF along the bottom */
.apropos-hero-water {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 38%;
  background-image: url("apropos-eau.gif");
  background-size: cover;
  background-position: center top;
  pointer-events: none;
  z-index: 3;
  mix-blend-mode: screen;
  opacity: 0.85;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 1) 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 1) 100%);
}

/* ---- Venn diagram overlay ---- */

.apropos-venn {
  position: absolute;
  inset: 0;
  z-index: 4;
}

.apropos-venn-circle {
  position: absolute;
  width: 36%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(244, 234, 208, 0.28) 0%, rgba(244, 234, 208, 0.18) 60%, rgba(244, 234, 208, 0.08) 100%);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  mix-blend-mode: screen;
  display: grid;
  place-items: center;
  box-shadow:
    inset 0 0 60px rgba(255, 255, 255, 0.08),
    0 8px 24px rgba(0, 0, 0, 0.2);
  animation: apropos-venn-float 9s ease-in-out infinite;
  will-change: transform;
  cursor: pointer;
  transition:
    background 0.5s ease,
    border-color 0.5s ease,
    box-shadow 0.5s ease,
    filter 0.5s ease;
}

/* Hover: full-rotation spin + scale-up + brighter glow.
   The rotation runs on an inner pseudo so it composes cleanly with the
   parent's floating animation transform. */
.apropos-venn-circle::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 1px dashed rgba(244, 234, 208, 0);
  transition: border-color 0.5s ease, transform 1.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}

.apropos-venn-circle:hover {
  background:
    radial-gradient(circle at 50% 50%, rgba(244, 234, 208, 0.45) 0%, rgba(244, 234, 208, 0.28) 60%, rgba(244, 234, 208, 0.12) 100%);
  border-color: rgba(244, 234, 208, 0.55);
  box-shadow:
    inset 0 0 80px rgba(255, 255, 255, 0.18),
    0 16px 48px rgba(244, 234, 208, 0.25),
    0 0 60px rgba(244, 234, 208, 0.35);
  filter: brightness(1.15);
  animation-play-state: paused;
}

.apropos-venn-circle:hover::before {
  border-color: rgba(244, 234, 208, 0.4);
  transform: rotate(360deg);
}

/* The label inside also reacts: nudge up + brighten + tracking */
.apropos-venn-circle > span {
  transition:
    color 0.4s ease,
    letter-spacing 0.6s ease,
    text-shadow 0.4s ease,
    transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.apropos-venn-circle:hover > span {
  color: #fff;
  letter-spacing: 0.14em;
  text-shadow:
    0 2px 14px rgba(0, 0, 0, 0.55),
    0 0 40px rgba(244, 234, 208, 0.75),
    0 0 80px rgba(244, 234, 208, 0.4);
  transform: scale(1.08);
}

.apropos-venn-circle > span {
  display: inline-block;
  font-family: "Poiret One", "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: clamp(22px, 3.4vw, 48px);
  color: #fff;
  letter-spacing: 0.08em;
  line-height: 1;
  text-shadow:
    0 2px 14px rgba(0, 0, 0, 0.55),
    0 0 30px rgba(244, 234, 208, 0.3);
  mix-blend-mode: normal;
}

.apropos-venn-circle em {
  font-style: normal;
  color: var(--accent);
}

/* Three circles centered to form a Venn triangle */
.apropos-venn-top {
  top: 6%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0s;
}
.apropos-venn-top > span {
  margin-top: -34%;
}

.apropos-venn-left {
  bottom: 6%;
  left: 18%;
  animation-delay: -3s;
}
.apropos-venn-left > span {
  margin-left: -34%;
}

.apropos-venn-right {
  bottom: 6%;
  right: 18%;
  animation-delay: -6s;
}
.apropos-venn-right > span {
  margin-right: -34%;
}

@keyframes apropos-venn-float {
  0%, 100% { transform: translate(var(--venn-tx, 0), 0); }
  50%      { transform: translate(var(--venn-tx, 0), -8px); }
}

.apropos-venn-top { --venn-tx: -50%; }
@keyframes apropos-venn-float-top {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, -8px); }
}
.apropos-venn-top { animation-name: apropos-venn-float-top; }

.apropos-venn-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(22px, 3.2vw, 42px);
  color: #fff;
  letter-spacing: 0.1em;
  text-shadow:
    0 2px 14px rgba(0, 0, 0, 0.6),
    0 0 30px rgba(244, 234, 208, 0.45);
  z-index: 5;
  animation: apropos-venn-center-pulse 4s ease-in-out infinite;
}

@keyframes apropos-venn-center-pulse {
  0%, 100% { opacity: 0.95; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 1;    transform: translate(-50%, -50%) scale(1.04); }
}

@media (max-width: 700px) {
  .apropos-hero-stage { aspect-ratio: 4 / 5; }
  .apropos-venn-circle { width: 50%; }
  .apropos-venn-left  { bottom: 10%; left: 6%; }
  .apropos-venn-right { bottom: 10%; right: 6%; }
}

/* ---- Team intro card ---- */

.team-intro {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) clamp(20px, 6vw, 80px) 0;
  position: relative;
  z-index: 1;
}

.team-intro-card {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
}

.team-intro-eyebrow {
  font-family: var(--font-display);
  font-size: clamp(11px, 0.9vw, 13px);
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(244, 234, 208, 0.75);
  margin: 0 0 18px;
}

.team-intro-card .section-title {
  margin-bottom: 18px;
  position: relative;
}

.team-intro-card .section-title::after {
  content: "";
  display: block;
  width: 56px;
  height: 1px;
  margin: 18px auto 0;
  background: linear-gradient(90deg, transparent, rgba(244, 234, 208, 0.7), transparent);
}

.team-intro-card p {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.7;
  margin: 0 auto;
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.9);
}

/* ---- Team grid ---- */

.team {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) clamp(20px, 6vw, 80px);
  position: relative;
  z-index: 1;
}

.team-carousel {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(8px, 1.5vw, 24px);
}

.team-track {
  position: relative;
  height: clamp(440px, 48vw, 560px);
  perspective: 1200px;
}

.team-nav {
  width: clamp(40px, 4vw, 52px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  font-size: clamp(16px, 1.4vw, 20px);
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 10;
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.team-nav:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.45);
  transform: scale(1.06);
}

.team-nav:focus-visible {
  outline: 2px solid rgba(244, 234, 208, 0.7);
  outline-offset: 3px;
}

.team-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(420px, 80%);
  background: rgba(46, 59, 52, 0.6);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: clamp(24px, 2.5vw, 36px) clamp(20px, 2vw, 28px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  transform: translate(-50%, -50%) scale(0.7);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1),
    opacity 0.6s ease,
    filter 0.6s ease;
}

.team-card[data-pos="active"] {
  z-index: 5;
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
  filter: none;
}

.team-card[data-pos="left"] {
  z-index: 3;
  opacity: 0.35;
  pointer-events: none;
  transform: translate(calc(-50% - 70%), -50%) scale(0.82);
  filter: blur(2px);
}

.team-card[data-pos="right"] {
  z-index: 3;
  opacity: 0.35;
  pointer-events: none;
  transform: translate(calc(-50% + 70%), -50%) scale(0.82);
  filter: blur(2px);
}

.team-card[data-pos="hidden"] {
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.6);
}

.team-dots {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: clamp(20px, 2.5vw, 32px);
}

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

.team-dot:hover { background: rgba(255, 255, 255, 0.5); }

.team-dot[aria-selected="true"] {
  background: rgba(244, 234, 208, 0.9);
  width: 22px;
  border-radius: 999px;
}

.team-dot:focus-visible {
  outline: 2px solid rgba(244, 234, 208, 0.7);
  outline-offset: 3px;
}

.team-photo {
  position: relative;
  width: 70%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  background-color: #3b4a40;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  cursor: zoom-in;
}

.team-photo-img {
  position: absolute;
  inset: -12%;
  background-size: cover;
  background-position: center;
  background-color: #3b4a40;
  transition: transform 0.5s ease-out;
  will-change: transform;
}

.team-photo:hover .team-photo-img {
  transform: scale(1.06);
}

.team-photo-lens {
  position: absolute;
  width: 42%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  transition: opacity 0.25s ease, transform 0.25s ease;
  background-repeat: no-repeat;
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.55),
    inset 0 0 0 2px rgba(255, 255, 255, 0.5);
  z-index: 6;
  will-change: left, top, transform, background-position, background-size;
}

.team-photo:hover .team-photo-lens {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

@media (hover: none) {
  .team-photo { cursor: default; }
  .team-photo-lens { display: none; }
}

.team-name {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(18px, 1.6vw, 22px);
  margin: 0;
  color: #fff;
}

.team-name span {
  display: block;
  width: 32px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  margin: 12px auto 0;
  text-indent: -9999px;
  overflow: hidden;
}

.team-role {
  font-family: var(--font-display);
  font-size: clamp(14px, 1.2vw, 18px);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin: -8px 0 0;
}

.team-quote {
  font-family: var(--font-body);
  font-size: clamp(13px, 1.1vw, 15px);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin: 0;
}

.team-quote em {
  font-family: var(--font-display);
  font-style: normal;
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 700px) {
  .team-carousel {
    grid-template-columns: 1fr;
  }
  .team-nav-prev {
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
  }
  .team-nav-next {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
  }
  .team-card[data-pos="left"] { transform: translate(calc(-50% - 90%), -50%) scale(0.7); }
  .team-card[data-pos="right"] { transform: translate(calc(-50% + 90%), -50%) scale(0.7); }
}

/* ---- Commitments ---- */

.commitments {
  max-width: 1426px;
  margin: 0 auto clamp(60px, 9vw, 130px);
  padding: clamp(60px, 8vw, 120px) clamp(20px, 6vw, 80px);
  position: relative;
  z-index: 1;
}

/* COUCHE 1 : image de fond (jardin zen) UNIQUEMENT autour des cartes,
   pas derrière le bloc texte + image du haut. */
.commitments-cards {
  margin-top: clamp(48px, 6vw, 80px);
  padding: clamp(36px, 4.5vw, 72px);
  border-radius: 28px;
  background-color: #2a3a32;
  background-image:
    linear-gradient(rgba(1, 18, 14, 0.18), rgba(1, 18, 14, 0.3)),
    url("fond.jpg");
  background-size: cover;
  background-position: center;
}

/* Two-column layout: texte à gauche, image à droite (style Figma) */
.commitments-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}

.commitments-text .section-title {
  text-align: left;
  margin-bottom: 28px;
}

.commitments-lead {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 28px;
}

.commitments-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.commitments-text li {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  padding-left: 24px;
  position: relative;
}

.commitments-text li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.commitments-text li strong {
  font-weight: 700;
  color: #fff;
}

.commitments-figure {
  margin: 0;
}

.commitments-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  background-color: #3b4a40;
  background-image: url("spa cascade.jpeg");
  background-size: cover;
  background-position: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

@media (max-width: 900px) {
  .commitments-layout {
    grid-template-columns: 1fr;
    gap: clamp(28px, 6vw, 48px);
  }
  .commitments-image { aspect-ratio: 16 / 10; max-width: 600px; }
}

.commitments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
  /* COUCHE 2 : rectangle vert translucide, posé par-dessus l'image zen
     (qui apparaît tout autour grâce au conteneur .commitments-cards). */
  background: rgba(46, 59, 52, 0.62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 24px;
  /* Plus de hauteur (padding vertical) pour équilibrer avec le bloc du dessus. */
  padding: clamp(56px, 7vw, 104px) clamp(32px, 4vw, 56px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.commitment-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.commitment-photo {
  order: 2;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  background-color: #3b4a40;
  background-size: cover;
  background-position: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.commitment-card h3 {
  order: 1;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(14px, 1.2vw, 16px);
  color: #fff;
  margin: 0;
  line-height: 1.4;
}

.commitment-card p {
  order: 3;
  font-family: var(--font-display);
  font-size: clamp(13px, 1.1vw, 15px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  font-style: italic;
}

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

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

/* ============================================================
   SERVICES PAGE
   ============================================================ */

.services-hero {
  max-width: min(1680px, 94vw);
  margin: 0 auto;
  padding: clamp(160px, 21vw, 304px) 0 clamp(80px, 12vw, 180px);
  position: relative;
  z-index: 1;
}

/* Cadre contenu, plus large */
.services-hero-stage {
  position: relative;
  height: clamp(440px, 58vh, 640px);
  border-radius: 16px;
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(244, 234, 208, 0.08) inset;
}

/* Carousel intérieur : une image à la fois qui remplit le cadre et glisse */
.services-hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.services-hero-track {
  display: flex;
  width: 200%;            /* 8 slides : les 4 images dupliquées */
  height: 100%;
  animation: services-hero-scroll 36s linear infinite;
  will-change: transform;
}

.services-hero-slide {
  flex: 0 0 12.5%;        /* 12.5% de 200% = 25% du cadre → 4 images visibles à la fois */
  height: 100%;
  background-color: #2a3a32;
  background-size: cover;
  background-position: center;
}

@keyframes services-hero-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .services-hero-track { animation: none; }
}

.services-hero-veil {
  display: none;   /* pas de filtre sur les images */
}

.services-hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 clamp(20px, 6vw, 80px);
}

/* Typographie alignée sur le hero À propos (Cormorant Garamond) */
.services-eyebrow {
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  text-indent: 0.5em;   /* compense le letter-spacing pour un centrage parfait */
  font-size: clamp(11px, 0.9vw, 14px);
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(244, 234, 208, 0.85);
  margin: 0 0 16px;
}

.services-hero-title {
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  font-weight: 400;
  font-size: clamp(38px, 6.5vw, 88px);
  letter-spacing: 0.04em;
  text-indent: 0.04em;
  line-height: 1.08;
  color: #fff;
  margin: 0 0 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55), 0 6px 40px rgba(0, 0, 0, 0.5);
}

.services-hero-sub {
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  font-style: italic;
  font-size: clamp(16px, 1.8vw, 24px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 auto;
  max-width: 60ch;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
}

.services-list {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(70px, 10vw, 150px) clamp(20px, 6vw, 80px) clamp(60px, 9vw, 130px);
  position: relative;
  z-index: 1;
  isolation: isolate;
}

.services-bg {
  position: absolute;
  inset: clamp(20px, 4vw, 48px) 0;
  border-radius: 24px;
  z-index: -1;
  background-color: #2a3a32;
  background-image:
    linear-gradient(180deg, rgba(1, 18, 14, 0.55) 0%, rgba(1, 18, 14, 0.78) 100%),
    url("fond vage.gif");
  background-size: cover;
  background-position: center;
  pointer-events: none;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 40px);
}

.service-card {
  display: flex;
  flex-direction: column;
  background: rgba(46, 59, 52, 0.6);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 0.4s ease, border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.service-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-color: #3b4a40;
  background-size: cover;
  background-position: center;
}

.service-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: clamp(22px, 2.4vw, 32px) clamp(20px, 2vw, 28px) clamp(26px, 2.6vw, 34px);
  flex: 1;
}

.service-name {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(18px, 1.6vw, 22px);
  color: #fff;
  margin: 0;
}

.service-desc {
  font-family: var(--font-display);
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  flex: 1;
}

.service-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: var(--font-body);
  margin-top: 4px;
}

.service-duration {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.service-price {
  order: 2;
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  color: var(--tone-cream, #f4ead0);
}

.service-meta::before {
  content: "";
  width: 1px;
  height: 22px;
  background: rgba(255, 255, 255, 0.2);
  order: 1;
}

.service-cta {
  margin-top: 8px;
}

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

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

/* ---------- Massage Signature section (services page) ---------- */

.signature-section {
  position: relative;
  z-index: 1;
  isolation: isolate;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(40px, 7vw, 110px) clamp(20px, 6vw, 80px) clamp(70px, 10vw, 150px);
}

/* Soft static moonlight glow at the top of the section — no gif, pure CSS,
   matches the lunar ambiance of the rest of the site. */
.signature-section::before {
  content: "";
  position: absolute;
  top: clamp(-40px, -3vw, -20px);
  left: 50%;
  width: min(720px, 80%);
  aspect-ratio: 2 / 1;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center top, rgba(244, 234, 208, 0.16) 0%, rgba(244, 234, 208, 0.05) 45%, rgba(244, 234, 208, 0) 75%);
  filter: blur(20px);
  pointer-events: none;
  z-index: -1;
}

.signature-eyebrow {
  font-family: var(--font-display);
  font-size: clamp(11px, 0.95vw, 14px);
  letter-spacing: 0.5em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(244, 234, 208, 0.8);
  margin: 0 0 16px;
}

.signature-intro {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.6;
  text-align: center;
  color: rgba(255, 255, 255, 0.92);
  max-width: 60ch;
  margin: 0 auto clamp(40px, 6vw, 72px);
}

.signature-intro::after {
  content: "";
  display: block;
  width: 72px;
  height: 1px;
  margin: clamp(22px, 3vw, 32px) auto 0;
  background: linear-gradient(90deg, transparent, rgba(244, 234, 208, 0.8), transparent);
}

.signature-arches {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 44px);
  max-width: 880px;
  margin: 0 auto;
}

/* Soft cream glow behind the arch trio */
.signature-arches::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  height: 70%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(244, 234, 208, 0.12) 0%, rgba(244, 234, 208, 0) 70%);
  filter: blur(30px);
  pointer-events: none;
  z-index: -1;
  animation: signature-glow 7s ease-in-out infinite;
}

@keyframes signature-glow {
  0%, 100% { opacity: 0.5; }
  50%      { opacity: 0.85; }
}

.signature-arch {
  margin: 0;
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  background-color: #3b4a40;
  background-size: cover;
  background-position: center;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
}

/* Staggered reveal — each arch rises a beat after the previous */
.signature-arch.reveal { transition-delay: 0s; }
.signature-arches .signature-arch:nth-child(2).reveal { transition-delay: 0.15s; }
.signature-arches .signature-arch:nth-child(3).reveal { transition-delay: 0.3s; }

.signature-arch:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 36px 70px rgba(0, 0, 0, 0.5);
  border-color: rgba(244, 234, 208, 0.4);
}

.signature-line {
  position: relative;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(17px, 1.8vw, 23px);
  line-height: 1.6;
  text-align: center;
  color: rgba(255, 255, 255, 0.88);
  max-width: 52ch;
  margin: clamp(40px, 6vw, 72px) auto clamp(48px, 7vw, 88px);
}

.signature-line::before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  margin: 0 auto clamp(20px, 2.5vw, 28px);
  background: linear-gradient(90deg, transparent, rgba(244, 234, 208, 0.7), transparent);
}

.signature-detail {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: stretch;
}

/* Frosted-glass panel for the text — matches the site's glass cards */
.signature-text {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: clamp(28px, 3.5vw, 48px);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.signature-lead {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 clamp(24px, 3vw, 36px);
}

.signature-subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(15px, 1.3vw, 18px);
  letter-spacing: 0.04em;
  color: #fff;
  margin: clamp(20px, 2.5vw, 30px) 0 14px;
}

.signature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.signature-list li {
  position: relative;
  padding-left: 22px;
  font-family: var(--font-body);
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

.signature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--tone-cream, #f4ead0);
}

.signature-list strong {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

.signature-cta-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100%;
}

.signature-cta-card {
  position: relative;
  margin: 0;
  flex: 1 1 auto;
  min-height: clamp(360px, 42vw, 560px);
  border-radius: 18px;
  overflow: hidden;
  background-color: #3b4a40;
  background-size: cover;
  background-position: center;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.signature-cta-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 84px rgba(0, 0, 0, 0.55);
  border-color: rgba(244, 234, 208, 0.4);
}

.signature-cta-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  text-align: center;
  padding: clamp(24px, 4vw, 44px);
  background: linear-gradient(to bottom, rgba(1, 18, 14, 0) 35%, rgba(1, 18, 14, 0.75) 100%);
}

.signature-cta-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(16px, 1.5vw, 21px);
  line-height: 1.5;
  color: #fff;
  margin: 0;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
}

.signature-cta-btn {
  align-self: center;
}

.signature-cta-caption {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.5;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

@media (max-width: 800px) {
  .signature-detail { grid-template-columns: 1fr; }
  .signature-cta-block { max-width: 460px; margin: 0 auto; }
}

@media (max-width: 560px) {
  .signature-arches { gap: 12px; }
  .signature-arch { border-radius: 14px; }
}

/* ============================================================
   GALERIE PAGE
   ============================================================ */

/* ---- Hero ---- */

.galerie-hero {
  position: relative;
  z-index: 1;
  isolation: isolate;
  text-align: center;
  padding: clamp(120px, 14vw, 200px) clamp(20px, 6vw, 80px) clamp(40px, 6vw, 80px);
  max-width: 1100px;
  margin: 0 auto;
}

.galerie-hero-glow {
  position: absolute;
  top: 30%;
  left: 50%;
  width: min(900px, 90%);
  aspect-ratio: 2 / 1;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(244, 234, 208, 0.18) 0%, rgba(244, 234, 208, 0.06) 45%, rgba(244, 234, 208, 0) 75%);
  filter: blur(40px);
  pointer-events: none;
  z-index: -1;
  animation: galerie-glow-pulse 8s ease-in-out infinite;
}

@keyframes galerie-glow-pulse {
  0%, 100% { opacity: 0.6; }
  50%      { opacity: 0.95; }
}

.galerie-eyebrow {
  font-family: var(--font-display);
  font-size: clamp(11px, 0.95vw, 14px);
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(244, 234, 208, 0.8);
  margin: 0 0 18px;
}

.galerie-title {
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  font-weight: 400;
  font-size: clamp(34px, 5vw, 64px);
  letter-spacing: 0.08em;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 24px;
  text-transform: uppercase;
}

.galerie-title::after {
  content: "";
  display: block;
  width: 72px;
  height: 1px;
  margin: 22px auto 0;
  background: linear-gradient(90deg, transparent, rgba(244, 234, 208, 0.75), transparent);
}

.galerie-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 56ch;
  margin: 0 auto;
}

/* ---- Grid section ---- */

.galerie-grid-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 90px) clamp(20px, 6vw, 80px) clamp(60px, 9vw, 130px);
  position: relative;
  z-index: 1;
  isolation: isolate;
}

.galerie-grid-section .section-title {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Cream moon backdrop behind the gallery grid (reuses apropos-lune.png) */
.galerie-moon-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(1100px, 100%);
  aspect-ratio: 1 / 1;
  transform: translate(-50%, -50%);
  background-image:
    url("apropos-lune.png"),
    radial-gradient(circle closest-side at center,
      rgba(255, 232, 175, 0.78) 0%,
      rgba(255, 222, 158, 0.58) 18%,
      rgba(255, 210, 138, 0.4) 35%,
      rgba(255, 200, 120, 0.25) 52%,
      rgba(255, 200, 120, 0.14) 68%,
      rgba(255, 200, 120, 0.06) 82%,
      rgba(255, 200, 120, 0.02) 92%,
      rgba(255, 200, 120, 0) 100%);
  background-size: contain, 100% 100%;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  opacity: 1;
  filter:
    brightness(1.15)
    drop-shadow(0 0 100px rgba(255, 235, 180, 0.65))
    drop-shadow(0 0 250px rgba(255, 215, 145, 0.5))
    drop-shadow(0 0 450px rgba(255, 200, 120, 0.3));
  pointer-events: none;
  z-index: -1;
  image-rendering: -webkit-optimize-contrast;
}

/* Quote overlay centered on top of the grid */
/* Grid wrapper — provides positioning context for the overlay */
.galerie-grid-wrap {
  position: relative;
}

/* Quote stretched across the middle row of the grid */
.galerie-quote-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(960px, 96%);
  padding: clamp(18px, 2.5vw, 36px) clamp(24px, 4vw, 56px);
  text-align: center;
  text-wrap: balance;
  font-family: var(--font-display);
  font-weight: 400;
  font-style: normal;
  font-size: clamp(22px, 2.8vw, 34px);
  letter-spacing: 0.02em;
  line-height: 1.5;
  color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.85);
  background: linear-gradient(
    90deg,
    rgba(1, 18, 14, 0) 0%,
    rgba(1, 18, 14, 0.55) 15%,
    rgba(1, 18, 14, 0.65) 50%,
    rgba(1, 18, 14, 0.55) 85%,
    rgba(1, 18, 14, 0) 100%
  );
  pointer-events: none;
  z-index: 5;
  margin: 0;
}

/* On mobile, the overlay becomes a normal block AFTER the grid (no overlap) */
@media (max-width: 900px) {
  .galerie-quote-overlay {
    display: none !important;
  }
}

/* Mobile-only quote (shown above the grid on small screens) */
.galerie-quote-mobile {
  display: none;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(15px, 4.2vw, 19px);
  letter-spacing: 0.02em;
  line-height: 1.55;
  text-align: center;
  text-wrap: balance;
  color: rgba(255, 255, 255, 0.92);
  max-width: 36ch;
  margin: 0 auto clamp(30px, 6vw, 44px);
  padding: clamp(18px, 4vw, 28px);
  background: rgba(46, 59, 52, 0.5);
  border: 1px solid rgba(244, 234, 208, 0.18);
  border-radius: 14px;
}

@media (max-width: 900px) {
  .galerie-quote-mobile { display: block; }
}

.galerie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: clamp(8px, 1.2vw, 18px);
  row-gap: clamp(50px, 7vw, 100px);
}

/* Middle text cell (replaces image #5 of the 3×3 grid) */
.galerie-text-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(16px, 2vw, 28px);
  background-color: transparent;
  background-image: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
  cursor: default;
}

.galerie-text-cell:hover {
  transform: none;
  border-color: rgba(244, 234, 208, 0.35);
  box-shadow: none;
}

.galerie-text-cell p {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(15px, 1.5vw, 20px);
  letter-spacing: 0.02em;
  line-height: 1.5;
  color: #fff;
  margin: 0;
  text-wrap: balance;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.galerie-cell {
  margin: 0;
  aspect-ratio: 4 / 5;
  background-color: #3b4a40;
  background-size: cover;
  background-position: center;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: zoom-in;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 0.4s ease,
              border-color 0.4s ease;
}

.galerie-cell:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.5);
  border-color: rgba(244, 234, 208, 0.35);
}

/* Magazine-style varied spans for an organic mosaic */
.galerie-cell--lg  { grid-column: span 2; grid-row: span 2; }
.galerie-cell--wide { grid-column: span 2; }

/* Staggered reveal — each cell rises a beat after the previous */
.galerie-cell.reveal { transition-delay: 0s; }
.galerie-grid .galerie-cell:nth-child(2).reveal { transition-delay: 0.08s; }
.galerie-grid .galerie-cell:nth-child(3).reveal { transition-delay: 0.16s; }
.galerie-grid .galerie-cell:nth-child(4).reveal { transition-delay: 0.24s; }
.galerie-grid .galerie-cell:nth-child(5).reveal { transition-delay: 0.32s; }
.galerie-grid .galerie-cell:nth-child(6).reveal { transition-delay: 0.40s; }
.galerie-grid .galerie-cell:nth-child(7).reveal { transition-delay: 0.48s; }
.galerie-grid .galerie-cell:nth-child(8).reveal { transition-delay: 0.56s; }
.galerie-grid .galerie-cell:nth-child(9).reveal { transition-delay: 0.64s; }

@media (max-width: 900px) {
  .galerie-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    column-gap: clamp(8px, 2vw, 14px) !important;
    row-gap: clamp(20px, 4vw, 40px) !important;
  }
  .galerie-cell {
    aspect-ratio: 1 / 1 !important;
  }
  .galerie-cell--lg, .galerie-cell--wide {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }
}

/* ---- Invite block ---- */

.galerie-invite {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 90px) clamp(20px, 6vw, 80px) clamp(80px, 10vw, 140px);
  position: relative;
  z-index: 1;
  text-align: center;
}

.galerie-invite > .section-title {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.galerie-invite-quote {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: normal;
  font-size: clamp(22px, 2.8vw, 34px);
  letter-spacing: 0.02em;
  line-height: 1.4;
  color: #fff;
  margin: 0 auto clamp(40px, 5vw, 64px);
}

/* The big image stage at the bottom of the gallery page */
.galerie-invite-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 440px;
  border-radius: 16px;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}

.galerie-invite-bg {
  position: absolute;
  inset: 0;
  background-color: #2a3a32;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.galerie-invite-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(1, 18, 14, 0.15) 0%,
    rgba(1, 18, 14, 0) 35%,
    rgba(1, 18, 14, 0) 65%,
    rgba(1, 18, 14, 0.15) 100%
  );
  pointer-events: none;
}

/* Organic blob on the LEFT with a cream bubble inside */
.galerie-invite-blob {
  position: absolute;
  left: clamp(20px, 5%, 80px);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(280px, 34%, 440px);
  aspect-ratio: 1.15 / 1;
  border: 1px solid rgba(0, 0, 0, 0.35);
  border-radius: 48% 52% 38% 62% / 56% 44% 60% 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6%;
  z-index: 2;
}

.galerie-invite-blob-texture {
  position: absolute;
  inset: 6%;
  border-radius: 50% 45% 55% 48% / 52% 48% 50% 50%;
  background-color: #4a5a3e;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.galerie-invite-blob-text {
  position: relative;
  z-index: 2;
  width: 86%;
  padding: clamp(18px, 2.2vw, 28px) clamp(18px, 2vw, 26px);
  background: rgba(244, 234, 208, 0.96);
  border-radius: 50% 48% 55% 45% / 50% 55% 45% 50%;
  text-align: center;
  text-wrap: balance;
  font-family: var(--font-display);
  font-weight: 400;
  font-style: normal;
  font-size: clamp(14px, 1.3vw, 18px);
  letter-spacing: 0.02em;
  line-height: 1.45;
  color: #2a3a32;
  margin: 0;
}

/* Dark green card on the RIGHT */
.galerie-invite-card {
  position: absolute;
  right: clamp(20px, 5%, 80px);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(280px, 38%, 480px);
  padding: clamp(28px, 3vw, 44px) clamp(28px, 3vw, 44px) clamp(34px, 3.5vw, 52px);
  background: rgba(46, 59, 52, 0.82);
  backdrop-filter: blur(6px) saturate(140%);
  -webkit-backdrop-filter: blur(6px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  color: #fff;
  text-align: left;
  z-index: 3;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.galerie-invite-card p {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(15px, 1.3vw, 18px);
  letter-spacing: 0.02em;
  line-height: 1.55;
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.92);
  text-align: justify;
  hyphens: auto;
}

.galerie-invite-card p + p {
  margin-top: 8px;
  margin-bottom: clamp(22px, 2.6vw, 32px);
}

.galerie-invite-card .cosmos-cta {
  margin-top: clamp(8px, 1.2vw, 14px);
}

/* Responsive */
@media (max-width: 900px) {
  /* Stage becomes a clean vertical layout (no more overlap chaos) */
  .galerie-invite-stage {
    aspect-ratio: auto !important;
    min-height: 0 !important;
    padding: 0 !important;
    display: block !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    overflow: visible !important;
  }

  /* BG image becomes a top banner */
  .galerie-invite-bg {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    height: clamp(220px, 50vw, 320px) !important;
    border-radius: 16px !important;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4) !important;
  }

  /* Blob centered, overlapping the bottom of the image */
  .galerie-invite-blob {
    position: relative !important;
    transform: none !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: clamp(200px, 56%, 280px) !important;
    aspect-ratio: 1 / 1 !important;
    margin: -90px auto 24px !important;
    z-index: 2 !important;
  }

  /* Card sits cleanly below */
  .galerie-invite-card {
    position: relative !important;
    transform: none !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: 100% !important;
    max-width: 460px !important;
    margin: 0 auto !important;
    padding: clamp(24px, 5vw, 36px) !important;
    background: rgba(46, 59, 52, 0.85) !important;
  }
}

/* ---- Galerie hero variant (reuses .apropos-hero structure) ---- */

/* Background image at full opacity (no veil) */
.apropos-hero--galerie .apropos-hero-bg {
  opacity: 1;
}

/* Smaller labels for multi-word Venn captions */
.apropos-hero--galerie .apropos-venn-circle > span {
  font-size: clamp(13px, 1.6vw, 20px);
  line-height: 1.25;
  letter-spacing: 0.04em;
}

.apropos-hero--galerie .apropos-venn-center {
  font-size: clamp(22px, 2.8vw, 38px);
  letter-spacing: 0.08em;
}

/* "Réserver maintenant" button placed below the oval stage */
.galerie-hero-cta-wrap {
  text-align: center;
  margin-top: clamp(28px, 4vw, 56px);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

/* ---- Hero ---- */

.contact-hero {
  position: relative;
  z-index: 1;
  padding: clamp(135px, 13vw, 200px) clamp(20px, 6vw, 80px) clamp(40px, 5vw, 64px);
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.contact-hero-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  min-height: 320px;
  border-radius: 16px;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}

.contact-hero-bg {
  position: absolute;
  inset: 0;
  background-color: #1d2c2a;
  background-size: cover;
  background-position: center;
  z-index: 0;
  filter: brightness(1.15) saturate(1.05);
}

.contact-hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(1, 18, 14, 0.05) 0%, rgba(1, 18, 14, 0.25) 100%);
  z-index: 1;
}

.contact-hero-content {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: clamp(24px, 4vw, 56px);
}

/* ---- Sparkly water GIF on the LEFT side (reuses apropos-eau.gif) ---- */

.contact-hero-water {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 50%;
  background-image: url("apropos-eau.gif");
  background-size: cover;
  background-position: center;
  pointer-events: none;
  z-index: 3;
  mix-blend-mode: screen;
  opacity: 0.85;
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%);
}

@media (max-width: 800px) {
  .contact-hero-water { display: none; }
}

.contact-hero-eyebrow {
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  text-indent: 0.5em;
  font-size: clamp(11px, 0.9vw, 14px);
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(244, 234, 208, 0.85);
  margin: 0 0 16px;
}

.contact-hero-title {
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  font-weight: 400;
  font-size: clamp(38px, 6.5vw, 88px);
  letter-spacing: 0.04em;
  text-indent: 0.04em;
  line-height: 1.08;
  color: #fff;
  margin: 0 0 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55), 0 6px 40px rgba(0, 0, 0, 0.5);
}

.contact-hero-text {
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  font-style: italic;
  font-size: clamp(16px, 1.8vw, 24px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 auto;
  max-width: 60ch;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
}

.contact-hero-cta {
  display: inline-flex;
  margin: clamp(28px, 4vw, 48px) auto 0;
}

/* ---- Formulaire ---- */

.contact-form-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(60px, 7vw, 110px) clamp(20px, 6vw, 60px) clamp(60px, 7vw, 110px);
  position: relative;
  z-index: 1;
  isolation: isolate;
}

/* ---- Floating venn circles around the form (reuses apropos venn behaviors) ---- */

.contact-form-venn {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: auto;
}

.contact-form-venn .apropos-venn-circle {
  width: 26%;
  opacity: 0.55;
}

.contact-form-venn .apropos-venn-top {
  top: 4%;
  left: 50%;
}

.contact-form-venn .apropos-venn-left {
  top: 50%;
  left: -8%;
  right: auto;
  bottom: auto;
  transform: translateY(-50%);
}

.contact-form-venn .apropos-venn-right {
  top: 50%;
  right: -8%;
  left: auto;
  bottom: auto;
  transform: translateY(-50%);
}

/* Brighter, pulsing sparkle on hover — amplifies the apropos hover effect */
.contact-form-venn .apropos-venn-circle:hover {
  opacity: 1;
  background: radial-gradient(circle at 50% 50%, rgba(244, 234, 208, 0.55) 0%, rgba(244, 234, 208, 0.32) 55%, rgba(244, 234, 208, 0.12) 100%);
  border-color: rgba(244, 234, 208, 0.75);
  box-shadow:
    inset 0 0 100px rgba(255, 255, 255, 0.28),
    0 0 90px rgba(244, 234, 208, 0.55),
    0 0 180px rgba(244, 234, 208, 0.35);
  filter: brightness(1.35);
  animation: contact-venn-sparkle 1.6s ease-in-out infinite;
}

@keyframes contact-venn-sparkle {
  0%, 100% {
    filter: brightness(1.25);
    box-shadow:
      inset 0 0 80px rgba(255, 255, 255, 0.22),
      0 0 60px rgba(244, 234, 208, 0.45),
      0 0 140px rgba(244, 234, 208, 0.25);
  }
  50% {
    filter: brightness(1.55);
    box-shadow:
      inset 0 0 120px rgba(255, 255, 255, 0.4),
      0 0 110px rgba(244, 234, 208, 0.75),
      0 0 220px rgba(244, 234, 208, 0.5);
  }
}

@media (max-width: 700px) {
  .contact-form-venn { display: none; }
}

.contact-form-card {
  position: relative;
  isolation: isolate;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(244, 234, 208, 0.18);
  border-radius: 22px;
  padding: clamp(48px, 5vw, 72px) clamp(28px, 4vw, 56px) clamp(40px, 4vw, 56px);
  text-align: center;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Soft cream glow behind the card */
.contact-form-glow {
  position: absolute;
  top: -10%;
  left: 50%;
  width: 70%;
  aspect-ratio: 2 / 1;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(244, 234, 208, 0.18) 0%, rgba(244, 234, 208, 0.05) 50%, rgba(244, 234, 208, 0) 75%);
  filter: blur(40px);
  pointer-events: none;
  z-index: -1;
}

/* Small lunar glyph above the title */
.contact-form-icon {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(26px, 2.6vw, 36px);
  color: rgba(244, 234, 208, 0.95);
  line-height: 1;
  margin-bottom: 18px;
  text-shadow: 0 0 24px rgba(244, 234, 208, 0.45);
}

.contact-form-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: 0.04em;
  color: #fff;
  margin: 0 0 14px;
}

.contact-form-title::after {
  content: "";
  display: block;
  width: 64px;
  height: 1px;
  margin: 18px auto 0;
  background: linear-gradient(90deg, transparent, rgba(244, 234, 208, 0.8), transparent);
}

.contact-form-intro {
  font-family: var(--font-display);
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.65;
  text-align: center;
  color: rgba(255, 255, 255, 0.82);
  max-width: 50ch;
  margin: 0 auto clamp(32px, 4vw, 48px);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.2vw, 28px);
  text-align: left;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2vw, 24px);
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-field > span {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(244, 234, 208, 0.75);
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}

.contact-field textarea {
  resize: vertical;
  min-height: 130px;
  font-family: var(--font-body);
  line-height: 1.55;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
  font-style: italic;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: rgba(244, 234, 208, 0.55);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 3px rgba(244, 234, 208, 0.12);
}

.contact-form-submit {
  align-self: center;
  margin-top: clamp(8px, 1.5vw, 16px);
  border: 0;
  cursor: pointer;
}

@media (max-width: 600px) {
  .contact-form-row { grid-template-columns: 1fr; }
}

/* ---- Informations Pratiques ---- */

.contact-info-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(20px, 4vw, 60px) clamp(20px, 6vw, 80px);
  position: relative;
  z-index: 1;
}

.contact-info-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 8;
  min-height: 360px;
  isolation: isolate;
}

.contact-info-bg {
  position: absolute;
  inset: 0;
  background-color: #2a3a32;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
  z-index: 0;
}

.contact-info-card {
  position: absolute;
  right: clamp(-60px, -3%, -30px);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(340px, 55%, 660px);
  min-height: clamp(460px, 55vw, 640px);
  padding: clamp(48px, 5vw, 76px) clamp(30px, 3.5vw, 52px);
  background: rgba(46, 59, 52, 0.55);
  backdrop-filter: blur(8px) saturate(140%);
  -webkit-backdrop-filter: blur(8px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: #fff;
  text-align: center;
  z-index: 2;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: 0.02em;
  color: #fff;
  margin: 0 0 clamp(22px, 2.5vw, 32px);
}

.contact-info-intro {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.3vw, 18px);
  letter-spacing: 0.02em;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 18px;
}

.contact-info-line {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.3vw, 18px);
  letter-spacing: 0.02em;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 10px;
}

.contact-info-line strong {
  font-weight: 600;
  color: rgba(244, 234, 208, 0.95);
}

.contact-info-hours-label {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.3vw, 18px);
  letter-spacing: 0.02em;
  color: rgba(244, 234, 208, 0.95);
  margin: clamp(22px, 2.5vw, 32px) 0 12px;
}

.contact-info-hours {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--font-display);
  font-size: clamp(15px, 1.3vw, 18px);
  letter-spacing: 0.02em;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

@media (max-width: 700px) {
  .contact-info-stage { aspect-ratio: auto; min-height: 0; display: flex; flex-direction: column; padding: clamp(20px, 4vw, 32px); }
  .contact-info-card { position: static; transform: none; width: 100%; max-width: 460px; margin: 0 auto; }
}

/* ---- Localisation ---- */

.contact-location {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(50px, 7vw, 100px) clamp(20px, 6vw, 80px) clamp(40px, 5vw, 70px);
  position: relative;
  z-index: 1;
}

.contact-location-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  margin-top: clamp(28px, 4vw, 48px);
}

.contact-location-map-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-location-map {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(244, 234, 208, 0.15);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.contact-location-map:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.45);
}

.contact-location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: hue-rotate(-10deg) saturate(0.85);
}

.contact-location-qr {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(18px, 2vw, 24px);
}

.contact-location-text {
  font-family: var(--font-display);
  font-size: clamp(14px, 1.2vw, 16px);
  letter-spacing: 0.02em;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
  max-width: 28ch;
}

.contact-location-qr-img {
  width: min(220px, 80%);
  aspect-ratio: 1 / 1;
  background: #fff;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  display: block;
}

.contact-location-qr-caption {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 234, 208, 0.7);
  margin: 0;
}

.contact-location-link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 234, 208, 0.85);
  text-decoration: none;
  align-self: center;
  transition: color 0.25s ease;
}

.contact-location-link:hover {
  color: #fff;
}

@media (max-width: 800px) {
  .contact-location-grid { grid-template-columns: 1fr; }
}

/* ---- Newsletter ---- */

.contact-newsletter {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) clamp(20px, 6vw, 60px);
  position: relative;
  z-index: 1;
  text-align: center;
}

.contact-newsletter-text {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 56ch;
  margin: 0 auto clamp(28px, 3.5vw, 40px);
}

.contact-newsletter-form {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto;
  padding: 6px 6px 6px 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}

.contact-newsletter-form input {
  flex: 1 1 auto;
  border: 0;
  background: transparent;
  outline: none;
  font-family: var(--font-body);
  font-size: 14px;
  color: #fff;
  padding: 10px 0;
}

.contact-newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.contact-newsletter-form .cosmos-cta {
  border: 0;
  cursor: pointer;
  background: rgba(244, 234, 208, 0.92);
  color: #1a1a1a;
}

.contact-newsletter-form .cosmos-cta:hover {
  background: #fff;
}

@media (max-width: 520px) {
  .contact-newsletter-form { flex-direction: column; border-radius: 18px; padding: 12px; }
  .contact-newsletter-form input { text-align: center; }
  .contact-newsletter-form .cosmos-cta { width: 100%; justify-content: center; }
}

/* ---- CTA Final ---- */

.contact-final {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(40px, 5vw, 70px) clamp(20px, 6vw, 80px) clamp(60px, 8vw, 100px);
  text-align: center;
  position: relative;
  z-index: 1;
}

.contact-final-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 auto;
  max-width: 50ch;
}

/* ============================================================
   GALERIE LIGHTBOX (click image → fullscreen view)
   ============================================================ */

.galerie-cell {
  cursor: zoom-in;
}

.galerie-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(1, 12, 9, 0.96);
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(60px, 8vw, 100px) clamp(20px, 4vw, 60px);
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.25s ease;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.galerie-lightbox.is-open {
  display: flex;
  opacity: 1;
}

.galerie-lightbox-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  animation: lightbox-pop 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes lightbox-pop {
  0%   { transform: scale(0.9); opacity: 0; }
  100% { transform: scale(1);    opacity: 1; }
}

.galerie-lightbox-close,
.galerie-lightbox-nav {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(244, 234, 208, 0.35);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, transform 0.25s ease;
  -webkit-appearance: none;
  appearance: none;
  padding: 0;
  z-index: 1;
}

.galerie-lightbox-close:hover,
.galerie-lightbox-nav:hover {
  background: rgba(244, 234, 208, 0.9);
  color: #1a1a1a;
  transform: scale(1.08);
}

.galerie-lightbox-close svg,
.galerie-lightbox-nav svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.galerie-lightbox-close {
  top: clamp(16px, 3vw, 28px);
  right: clamp(16px, 3vw, 28px);
}

.galerie-lightbox-prev {
  left: clamp(12px, 2vw, 28px);
  top: 50%;
  transform: translateY(-50%);
}

.galerie-lightbox-prev:hover {
  transform: translateY(-50%) scale(1.08);
}

.galerie-lightbox-next {
  right: clamp(12px, 2vw, 28px);
  top: 50%;
  transform: translateY(-50%);
}

.galerie-lightbox-next:hover {
  transform: translateY(-50%) scale(1.08);
}

.galerie-lightbox-counter {
  position: absolute;
  bottom: clamp(20px, 3vw, 36px);
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.22em;
  color: rgba(244, 234, 208, 0.85);
  margin: 0;
  pointer-events: none;
}

@media (max-width: 600px) {
  .galerie-lightbox-prev,
  .galerie-lightbox-next {
    width: 42px;
    height: 42px;
  }
  .galerie-lightbox-prev { left: 6px; }
  .galerie-lightbox-next { right: 6px; }
}
