/* ============================================
   KALÉA — Design System & Global Styles
   Refonte Site Vitrine
   Palette : Bien-être / Naturel / Lumineux
   Inspiré de la DA Instagram Kaléa
   Typo : Montserrat + Poppins
   Grid : 8px base unit
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Colors — Palette Kaléa — Bleu-gris / Naturel / Lumineux */
  --c-forest: #3D5A56;          /* Bleu-gris foncé — sections clés */
  --c-forest-light: #4D6A66;
  --c-sage: #95A8A1;            /* Bleu-gris doux — CTA Réserver */
  --c-mint: #A8BDB6;
  --c-mint-light: #C0D2CC;
  --c-teal: #95A8A1;
  --c-teal-light: #A8BDB6;
  --c-cream: #FAF7F2;           /* Crème très lumineux */
  --c-cream-dark: #F2EDE5;      /* Beige clair */
  --c-blush: #F5F0E8;           /* Beige naturel lumineux */
  --c-white: #FFFFFF;
  --c-black: #111111;
  --c-text: #242420;
  --c-text-secondary: #5A5650;
  --c-text-muted: #8A8680;
  --c-gold: #C4A77D;            /* Doré chaud — hover CTA */
  --c-gold-light: #D4BA94;     /* Doré clair */
  --c-warm: #A8BDB6;
  --c-warm-light: #C0D2CC;
  --c-border: rgba(0, 0, 0, 0.07);
  --c-overlay: rgba(61, 90, 86, 0.45);
  --c-overlay-light: rgba(61, 90, 86, 0.2);

  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.15);
  --glass-bg-strong: rgba(255, 255, 255, 0.25);
  --glass-border: rgba(255, 255, 255, 0.25);
  --glass-blur: 16px;

  /* Typography */
  --ff-heading: 'Montserrat', sans-serif;
  --ff-body: 'Poppins', sans-serif;

  --fs-display: clamp(2.75rem, 5vw, 4.25rem);
  --fs-h1: clamp(2.25rem, 4vw, 3.25rem);
  --fs-h2: clamp(1.75rem, 3vw, 2.5rem);
  --fs-h3: clamp(1.25rem, 2vw, 1.625rem);
  --fs-h4: 1.25rem;
  --fs-body: 1.0625rem;
  --fs-body-lg: 1.1875rem;
  --fs-small: 0.9375rem;
  --fs-xs: 0.8125rem;
  --fs-overline: 0.8125rem;

  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  --lh-tight: 1.2;
  --lh-snug: 1.35;
  --lh-normal: 1.6;
  --lh-relaxed: 1.8;

  --ls-tight: -0.02em;
  --ls-normal: 0;
  --ls-wide: 0.08em;
  --ls-overline: 0.15em;

  /* Spacing (8px grid) */
  --sp-1: 0.25rem;   /* 4px */
  --sp-2: 0.5rem;    /* 8px */
  --sp-3: 0.75rem;   /* 12px */
  --sp-4: 1rem;      /* 16px */
  --sp-5: 1.5rem;    /* 24px */
  --sp-6: 2rem;      /* 32px */
  --sp-7: 2.5rem;    /* 40px */
  --sp-8: 3rem;      /* 48px */
  --sp-9: 4rem;      /* 64px */
  --sp-10: 5rem;     /* 80px */
  --sp-11: 6rem;     /* 96px */
  --sp-12: 8rem;     /* 128px */

  /* Layout */
  --max-width: 1200px;
  --max-width-narrow: 800px;
  --max-width-wide: 1400px;
  --gutter: var(--sp-5);

  /* Radius */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 16px 50px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 0 30px rgba(149, 168, 161, 0.15);
  --shadow-warm: 0 8px 30px rgba(149, 168, 161, 0.12);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --t-fast: 200ms;
  --t-normal: 350ms;
  --t-slow: 500ms;

  /* Nav height */
  --nav-height: 80px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
  color: var(--c-text);
  background-color: var(--c-cream);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--t-fast) var(--ease-out);
}

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--ff-heading);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  color: var(--c-text);
}

.overline {
  font-family: var(--ff-body);
  font-size: var(--fs-overline);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-overline);
  text-transform: uppercase;
  color: var(--c-sage);
  margin-bottom: var(--sp-3);
  display: block;
}

.text-gradient {
  background: linear-gradient(135deg, var(--c-gold), var(--c-warm));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container--narrow {
  max-width: var(--max-width-narrow);
}

.container--wide {
  max-width: var(--max-width-wide);
}

.section {
  padding: var(--sp-11) 0;
}

.section--lg {
  padding: var(--sp-12) 0;
}

.section--dark {
  background-color: var(--c-forest);
  color: var(--c-white);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--c-white);
}

.section--dark .overline {
  color: var(--c-mint-light);
}

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

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

/* Grid utility */
.grid {
  display: grid;
  gap: var(--sp-6);
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 768px) {
  .grid--2, .grid--3, .grid--4 {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}

/* Flex utility */
.flex {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

.flex--between {
  justify-content: space-between;
}

.flex--center {
  justify-content: center;
}

.flex--col {
  flex-direction: column;
}

/* Text alignment */
.text-center { text-align: center; }
.text-left { text-align: left; }

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: all var(--t-normal) var(--ease-out);
}

.nav--transparent {
  background: transparent;
}

.nav--solid {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm);
}

.nav--solid .nav__logo,
.nav--solid .nav__link {
  color: var(--c-text);
}

.nav__inner {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: var(--max-width-wide);
  margin: 0 auto;
  padding: 0 var(--sp-6);
  position: relative;
}

.nav__inner .nav__links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav__logo {
  font-family: var(--ff-heading);
  font-size: 1.6rem;
  font-weight: var(--fw-bold);
  color: var(--c-white);
  letter-spacing: -0.03em;
  transition: color var(--t-fast);
}

.nav__logo span {
  font-weight: var(--fw-light);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
}

.nav__link {
  font-family: var(--ff-body);
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  color: var(--c-white);
  position: relative;
  padding: var(--sp-1) 0;
  transition: color var(--t-fast);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--c-mint);
  border-radius: 1px;
  transition: width var(--t-normal) var(--ease-out);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-5);
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  color: var(--c-white);
  background: var(--c-sage);
  border-radius: var(--r-full);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  margin-left: auto;
}

.nav__cta:hover {
  background: var(--c-gold);
  color: var(--c-white);
  transform: translateY(-1px);
}

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: all var(--t-fast);
}

@media (max-width: 768px) {
  .nav__inner {
    display: flex;
    justify-content: space-between;
  }
  .nav__links,
  .nav > .nav__inner > .nav__cta {
    display: none;
  }
  .nav__toggle {
    display: flex;
    color: var(--c-white);
  }
  .nav--island .nav__toggle {
    color: var(--c-forest);
  }
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img,
.hero__bg-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__bg-placeholder {
  background: linear-gradient(135deg, var(--c-forest) 0%, var(--c-sage) 50%, var(--c-teal) 100%);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(30, 58, 47, 0.3) 0%,
    rgba(30, 58, 47, 0.5) 50%,
    rgba(30, 58, 47, 0.7) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--c-white);
  max-width: 700px;
  padding: var(--sp-6);
}

.hero__overline {
  display: inline-block;
  font-size: var(--fs-overline);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-overline);
  text-transform: uppercase;
  color: var(--c-forest);
  margin-bottom: var(--sp-4);
  padding: var(--sp-2) var(--sp-5);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(149, 168, 161, 0.3);
  border-radius: var(--r-full);
}

.hero__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-display);
  font-weight: var(--fw-bold);
  color: var(--c-white);
  line-height: var(--lh-tight);
  margin-bottom: var(--sp-5);
}

.hero__title em {
  font-style: italic;
  font-weight: var(--fw-light);
  color: var(--c-mint-light);
}

.hero__subtitle {
  font-size: var(--fs-body-lg);
  font-weight: var(--fw-regular);
  line-height: var(--lh-relaxed);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--sp-7);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hero__actions {
  display: flex;
  gap: var(--sp-4);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--sp-9);
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: var(--sp-5);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  animation: float 3s ease-in-out infinite;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* --- Sub-Hero (for inner pages) --- */
.sub-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.sub-hero .hero__content {
  padding-top: var(--nav-height);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-6);
  font-family: var(--ff-body);
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  border-radius: var(--r-full);
  transition: all var(--t-normal) var(--ease-out);
  cursor: pointer;
  white-space: nowrap;
  border: none;
  line-height: 1;
}

.btn--lg {
  padding: var(--sp-4) var(--sp-7);
  font-size: var(--fs-body);
}

.btn--primary {
  background: var(--c-sage);
  color: var(--c-white);
}

.btn--primary:hover {
  background: var(--c-forest-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(149, 168, 161, 0.3);
}

.btn--cta {
  background: var(--c-sage);
  color: var(--c-white);
}

.btn--cta:hover {
  background: var(--c-gold);
  color: var(--c-white);
  transform: translateY(-2px);
}

.btn--gold {
  background: var(--c-gold);
  color: var(--c-white);
}

.btn--gold:hover {
  background: var(--c-gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-warm);
}

.btn--secondary {
  background: var(--c-white);
  color: var(--c-forest);
}

.btn--secondary:hover {
  background: var(--c-cream);
  transform: translateY(-2px);
}

/* Bouton "Offrir" — fond blanc, visible sur fond crème */
.btn--offrir {
  background: #fff !important;
  color: #2A3A3A !important;
  border: 1px solid rgba(42, 58, 58, 0.08) !important;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04) !important;
}

.btn--offrir:hover {
  background: rgba(42, 58, 58, 0.05) !important;
  border-color: rgba(42, 58, 58, 0.25) !important;
  color: #2A3A3A !important;
  transform: none !important;
  box-shadow: none !important;
}

/* Offrir sur fond sombre — reste blanc */
.gift-banner .btn--offrir,
.cta-banner .btn--offrir,
.section--dark .btn--offrir {
  background: #fff !important;
  color: var(--c-forest) !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
}

.gift-banner .btn--offrir:hover,
.cta-banner .btn--offrir:hover,
.section--dark .btn--offrir:hover {
  background: var(--c-cream) !important;
  border-color: var(--c-cream) !important;
  color: var(--c-forest) !important;
}

.btn--outline {
  background: transparent;
  color: var(--c-white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--c-sage);
  padding-left: 0;
  padding-right: 0;
}

.btn--ghost:hover {
  color: var(--c-forest);
}

.btn--glass {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  color: var(--c-white);
}

.btn--glass:hover {
  background: var(--glass-bg-strong);
  transform: translateY(-2px);
}

.btn__icon {
  display: inline-flex;
  font-size: 1.1em;
  transition: transform 0.1s;
}

.btn--cta:hover .btn__icon {
  animation: spinStar 0.6s cubic-bezier(0.2, 0, 0, 1) forwards;
}

.nav__cta:hover .btn__icon,
.nav-cta-primary:hover .btn__icon {
  animation: spinStar 0.6s cubic-bezier(0.2, 0, 0, 1) forwards;
}

@keyframes spinStar {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(540deg); }
}

/* ========== Experiences — Tabs/Panels (shared component) ========== */
.experiences { padding: var(--sp-11) 0; background: var(--c-forest); color: var(--c-white); }
.experiences .section-header__title,
.experiences .section-header__title { color: var(--c-white); }
.experiences .section-header__title em { font-style: italic; color: var(--c-mint-light); }
.experiences .overline { color: var(--c-mint-light); }
.experiences .section-header__desc { color: rgba(255,255,255,0.75); }
.experiences .section-header { padding: 0 var(--gutter); }

.exp-switch { display: flex; justify-content: center; gap: var(--sp-2); margin-bottom: var(--sp-7); background: rgba(255,255,255,0.08); border-radius: var(--r-full); padding: 5px; width: fit-content; margin-left: auto; margin-right: auto; }
.exp-switch__btn { font-family: var(--ff-body); font-size: var(--fs-small); font-weight: var(--fw-medium); color: rgba(255,255,255,0.55); background: transparent; border: none; padding: 10px 24px; border-radius: var(--r-full); cursor: pointer; transition: all 0.3s; white-space: nowrap; }
.exp-switch__btn:hover { color: #fff; background: rgba(255,255,255,0.06); }
.exp-switch__btn.is-active { color: var(--c-forest); background: #fff; font-weight: var(--fw-semibold); box-shadow: 0 2px 8px rgba(0,0,0,0.1); }

.exp-panels { margin: 0 auto; }
.exp-panel { display: none; position: relative; border-radius: var(--r-xl); overflow: hidden; height: 520px; animation: panelIn 0.35s ease-out; }
.exp-panel.is-active { display: block; }
@keyframes panelIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.exp-panel__img { position: absolute; inset: 0; }
.exp-panel__img img { width: 100%; height: 100%; object-fit: cover; }
.exp-panel__img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,35,28,0.82) 0%, rgba(20,35,28,0.55) 45%, rgba(20,35,28,0.1) 100%); }
.exp-panel__body { position: relative; z-index: 2; color: #fff; padding: var(--sp-8); display: flex; flex-direction: column; justify-content: center; height: 100%; max-width: 480px; }
.exp-panel__tag { display: inline-block; width: fit-content; font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-mint-light); padding: 6px 14px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--r-full); margin-bottom: var(--sp-4); }
.exp-panel__title { font-family: var(--ff-heading); font-size: var(--fs-h1); font-weight: var(--fw-bold); color: #fff; margin-bottom: var(--sp-3); line-height: 1.15; }
.exp-panel__desc { font-size: var(--fs-body); color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: var(--sp-4); }
.exp-panel__price { font-family: var(--ff-heading); font-size: var(--fs-h2); font-weight: var(--fw-bold); color: #fff; margin-bottom: var(--sp-5); }
.exp-panel__cta { display: inline-flex; align-items: center; gap: 8px; font-size: var(--fs-body); font-weight: 600; color: #fff; padding: 14px 32px; background: var(--c-sage); border-radius: var(--r-full); text-decoration: none; transition: all 0.3s; width: fit-content; }
.exp-panel__cta:hover { background: var(--c-mint); transform: translateY(-2px); }
.exp-panel__cta span { transition: transform 0.3s; }
.exp-panel__cta:hover span { transform: translateX(4px); }

@media (max-width: 768px) {
  .exp-panel { height: 420px; }
  .exp-panel__body { padding: var(--sp-6) var(--sp-5); }
  .exp-panel__title { font-size: var(--fs-h2); }
  .exp-switch__btn { font-size: var(--fs-xs); padding: 8px 16px; }
}

/* ========== How It Works — Steps (shared component) ========== */
.how-it-works { padding: var(--sp-11) 0; background: var(--c-cream-dark); }
.how-it-works .section-header__title em { font-style: italic; color: var(--c-sage); }

.hiw-steps { display: flex; align-items: flex-start; justify-content: center; gap: 0; margin: var(--sp-8) auto var(--sp-9); max-width: 800px; position: relative; }
.hiw-steps::before { content: ''; position: absolute; top: 26px; left: calc(16.66% + 26px); right: calc(16.66% + 26px); height: 2px; background: rgba(61, 90, 86, 0.1); z-index: 0; }
.hiw-steps::after { content: ''; position: absolute; top: 26px; left: calc(16.66% + 26px); right: calc(16.66% + 26px); height: 2px; background: var(--c-forest); z-index: 0; transform: scaleX(0); transform-origin: left; transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.hiw-steps.is-visible::after { transform: scaleX(1); }

/* 4-step variant */
.hiw-steps--4 { max-width: 1000px; }
.hiw-steps--4::before { left: calc(12.5% + 26px); right: calc(12.5% + 26px); }
.hiw-steps--4::after { left: calc(12.5% + 26px); right: calc(12.5% + 26px); }

.hiw-step { flex: 1; text-align: center; padding: 0 var(--sp-4); position: relative; z-index: 1; }
.hiw-step__number { width: 52px; height: 52px; border-radius: 50%; background: var(--c-cream); color: var(--c-forest); font-family: var(--ff-heading); font-size: var(--fs-h3); font-weight: var(--fw-bold); display: flex; align-items: center; justify-content: center; margin: 0 auto var(--sp-4); border: 2px solid rgba(61, 90, 86, 0.12); transition: all 0.5s ease; }
.hiw-step__title { font-family: var(--ff-heading); font-size: var(--fs-body-lg); font-weight: var(--fw-semibold); color: var(--c-text); margin-bottom: var(--sp-2); opacity: 0; transform: translateY(8px); transition: all 0.5s ease; }
.hiw-step__desc { font-size: var(--fs-small); color: var(--c-text-muted); line-height: 1.6; opacity: 0; transform: translateY(8px); transition: all 0.5s ease; }

/* Animation reveal on scroll */
.hiw-steps.is-visible .hiw-step:nth-child(1) .hiw-step__number { background: var(--c-forest); color: #fff; border-color: var(--c-forest); transition-delay: 0s; }
.hiw-steps.is-visible .hiw-step:nth-child(2) .hiw-step__number { background: var(--c-forest); color: #fff; border-color: var(--c-forest); transition-delay: 0.4s; }
.hiw-steps.is-visible .hiw-step:nth-child(3) .hiw-step__number { background: var(--c-forest); color: #fff; border-color: var(--c-forest); transition-delay: 0.8s; }
.hiw-steps.is-visible .hiw-step:nth-child(4) .hiw-step__number { background: var(--c-forest); color: #fff; border-color: var(--c-forest); transition-delay: 1.2s; }

.hiw-steps.is-visible .hiw-step:nth-child(1) .hiw-step__title { opacity: 1; transform: translateY(0); transition-delay: 0.15s; }
.hiw-steps.is-visible .hiw-step:nth-child(2) .hiw-step__title { opacity: 1; transform: translateY(0); transition-delay: 0.55s; }
.hiw-steps.is-visible .hiw-step:nth-child(3) .hiw-step__title { opacity: 1; transform: translateY(0); transition-delay: 0.95s; }
.hiw-steps.is-visible .hiw-step:nth-child(4) .hiw-step__title { opacity: 1; transform: translateY(0); transition-delay: 1.35s; }

.hiw-steps.is-visible .hiw-step:nth-child(1) .hiw-step__desc { opacity: 1; transform: translateY(0); transition-delay: 0.25s; }
.hiw-steps.is-visible .hiw-step:nth-child(2) .hiw-step__desc { opacity: 1; transform: translateY(0); transition-delay: 0.65s; }
.hiw-steps.is-visible .hiw-step:nth-child(3) .hiw-step__desc { opacity: 1; transform: translateY(0); transition-delay: 1.05s; }
.hiw-steps.is-visible .hiw-step:nth-child(4) .hiw-step__desc { opacity: 1; transform: translateY(0); transition-delay: 1.45s; }

.hiw-bottom { text-align: center; margin-top: var(--sp-8); }
.hiw-bottom .btn--lg { padding: 16px 40px; font-size: var(--fs-body-lg); }
.hiw-bottom__note { display: block; font-size: var(--fs-small); color: var(--c-text-muted); font-style: italic; margin-top: var(--sp-3); }

@media (max-width: 768px) {
  .hiw-steps, .hiw-steps--4 { flex-direction: column; align-items: center; gap: var(--sp-5); }
  .hiw-steps::before, .hiw-steps::after { top: 0; bottom: 0; left: 26px; right: auto; width: 2px; height: auto; }
  .hiw-steps::after { transform: scaleY(0); transform-origin: top; }
  .hiw-steps.is-visible::after { transform: scaleY(1); }
  .hiw-step {
    display: grid;
    grid-template-columns: 52px 1fr;
    grid-template-rows: auto auto;
    column-gap: var(--sp-4);
    row-gap: var(--sp-2);
    align-items: start;
    text-align: left;
    padding: 0;
  }
  .hiw-step__number { grid-column: 1; grid-row: 1 / span 2; margin: 0; flex-shrink: 0; }
  .hiw-step__title { grid-column: 2; grid-row: 1; margin-bottom: 0; }
  .hiw-step__desc { grid-column: 2; grid-row: 2; }
  /* .hiw-step__number mobile styles moved into grid block above */
}

/* --- Cards --- */
.card {
  position: relative;
  background: var(--c-white);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.card:hover {
  transform: none;
  box-shadow: none;
}

.card__img {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.card__img img,
.card__img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card:hover .card__img img,
.card:hover .card__img-placeholder {
  transform: none;
}

.card__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(30, 58, 47, 0.7) 100%);
  opacity: 0;
  transition: opacity var(--t-normal);
}

.card:hover .card__img-overlay {
  opacity: 0;
}

.card__body {
  padding: var(--sp-5) var(--sp-5) var(--sp-6);
}

.card__tag {
  display: inline-block;
  padding: var(--sp-1) var(--sp-3);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--c-sage);
  background: rgba(149, 168, 161, 0.08);
  border-radius: var(--r-full);
  margin-bottom: var(--sp-3);
}

.card__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-h3);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--sp-2);
}

.card__desc {
  font-size: var(--fs-small);
  color: var(--c-text-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-4);
}

.card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--sp-3);
  border-top: 1px solid var(--c-border);
}

.card__price {
  font-family: var(--ff-heading);
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  color: var(--c-forest);
}

.card__price span {
  font-size: var(--fs-small);
  font-weight: var(--fw-regular);
  color: var(--c-text-muted);
}

/* Experience card (large feature cards) */
.exp-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.exp-card__bg {
  position: absolute;
  inset: 0;
}

.exp-card__bg img,
.exp-card__bg-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-out);
}

.exp-card:hover .exp-card__bg img,
.exp-card:hover .exp-card__bg-placeholder {
  transform: none;
}

.exp-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(30, 58, 47, 0.85) 100%);
  transition: background var(--t-normal);
}

/* hover overlay removed — no action */

.exp-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--sp-6);
  color: var(--c-white);
  z-index: 2;
}

.exp-card__tag {
  display: inline-block;
  padding: var(--sp-1) var(--sp-3);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-full);
  margin-bottom: var(--sp-3);
  color: var(--c-white);
}

.exp-card__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  color: var(--c-white);
  margin-bottom: var(--sp-2);
}

.exp-card__desc {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.8);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-4);
  max-width: 90%;
}

.exp-card__price {
  font-size: var(--fs-h4);
  font-weight: var(--fw-semibold);
  color: var(--c-mint-light);
  margin-bottom: var(--sp-3);
}

.exp-card__arrow {
  position: absolute;
  top: var(--sp-5);
  right: var(--sp-5);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  color: var(--c-white);
  font-size: 1.1rem;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--t-normal) var(--ease-out);
}

/* hover arrow removed — no action */

/* Glass card */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
}

/* --- Section Header --- */
.section-header {
  max-width: 600px;
  margin-bottom: var(--sp-9);
}

.section-header--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-header__title {
  font-size: var(--fs-h2);
  margin-bottom: var(--sp-4);
}

.section-header__desc {
  font-size: var(--fs-body-lg);
  color: var(--c-text-secondary);
  line-height: var(--lh-relaxed);
}

.section--dark .section-header__desc {
  color: rgba(255, 255, 255, 0.7);
}

/* --- Features / Icons Row --- */
.feature-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}

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

.feature-item {
  text-align: center;
  padding: var(--sp-5);
}

.feature-item__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--sp-4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: rgba(149, 168, 161, 0.18);
  border: 1px solid rgba(149, 168, 161, 0.28);
  border-radius: var(--r-md);
  color: var(--c-sage);
}

.section--dark .feature-item__icon {
  background: rgba(168, 189, 182, 0.15);
  color: var(--c-mint-light);
}

.feature-item__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-h4);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--sp-2);
}

.feature-item__desc {
  font-size: var(--fs-small);
  color: var(--c-text-secondary);
  line-height: var(--lh-relaxed);
}

.section--dark .feature-item__desc {
  color: rgba(255, 255, 255, 0.6);
}

/* --- Testimonials --- */
.testimonial-card {
  background: var(--c-white);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  position: relative;
  transition: all var(--t-normal) var(--ease-out);
  display: flex;
  flex-direction: column;
  border: none;
  border: 1px solid var(--c-border);
}

a.testimonial-card:hover {
  transform: none;
  box-shadow: none;
}

.testimonial-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--c-border);
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.testimonial-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-heading);
  font-weight: var(--fw-bold);
  font-size: var(--fs-body);
  color: #fff;
  background: var(--c-forest);
}

.testimonial-card__name {
  font-family: var(--ff-heading);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-body);
  color: var(--c-text);
}

.testimonial-card__service {
  font-size: var(--fs-small);
  color: var(--c-sage);
}

.testimonial-card__stars {
  display: flex;
  gap: 1px;
  color: #E8A838;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.testimonial-card__text {
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--c-text-secondary);
  flex-grow: 1;
}

/* --- Booking Widget (Glass) --- */
.booking-widget {
  background: var(--glass-bg-strong);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  padding: var(--sp-7);
  max-width: 500px;
  margin: 0 auto;
}

.booking-widget__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-h3);
  font-weight: var(--fw-semibold);
  color: var(--c-white);
  margin-bottom: var(--sp-5);
  text-align: center;
}

.booking-widget__field {
  margin-bottom: var(--sp-4);
}

.booking-widget__label {
  display: block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  margin-bottom: var(--sp-2);
}

.booking-widget__select,
.booking-widget__input {
  width: 100%;
  padding: var(--sp-3) var(--sp-4);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--r-md);
  color: var(--c-white);
  font-size: var(--fs-small);
  transition: all var(--t-fast);
  appearance: none;
  -webkit-appearance: none;
}

.booking-widget__select:focus,
.booking-widget__input:focus {
  outline: none;
  border-color: var(--c-mint);
  background: rgba(255, 255, 255, 0.15);
}

.booking-widget__select option {
  background: var(--c-forest);
  color: var(--c-white);
}

/* --- CTA Banner --- */
.cta-banner {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  padding: var(--sp-10) var(--sp-8);
  text-align: center;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--c-forest) 0%, var(--c-sage) 100%);
  z-index: 0;
}

.cta-banner__content {
  position: relative;
  z-index: 1;
  color: var(--c-white);
}

.cta-banner__title {
  font-size: var(--fs-h2);
  color: var(--c-white);
  margin-bottom: var(--sp-4);
}

.cta-banner__desc {
  font-size: var(--fs-body-lg);
  color: rgba(255, 255, 255, 0.8);
  max-width: 500px;
  margin: 0 auto var(--sp-6);
}

/* --- Footer --- */
/* --- Footer (ref: Dermato) --- */
.footer {
  background: var(--c-forest);
  color: rgba(255,255,255,0.6);
  padding: 80px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.4fr 1fr;
  gap: var(--sp-9);
  align-items: start;
  padding-bottom: 64px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer__logo-img {
  width: 250px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  margin-top: -49px;
}

.footer__brand-desc {
  font-size: var(--fs-small);
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  max-width: 240px;
  margin-top: var(--sp-5);
}

.footer__col-title {
  font-family: var(--ff-heading);
  font-size: 1.125rem;
  font-weight: var(--fw-medium);
  color: #fff;
  margin-bottom: var(--sp-5);
}

.footer__link {
  display: block;
  font-size: var(--fs-small);
  color: rgba(255,255,255,0.55);
  padding: 6px 0;
  transition: color var(--t-fast);
}

.footer__link:hover {
  color: #fff;
}

/* Contact items with circle icons (Dermato style) */
.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
}

.footer__contact-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}

.footer__contact-icon svg {
  width: 15px;
  height: 15px;
  color: rgba(255,255,255,0.6);
}

.footer__contact-item span,
.footer__contact-item a {
  font-size: var(--fs-small);
  color: rgba(255,255,255,0.55);
  transition: color var(--t-fast);
  line-height: 1.4;
}

.footer__contact-item a:hover {
  color: #fff;
}

/* Bottom bar: 3-part layout (Dermato style) */
.footer__separator {
  height: 1px;
  background: rgba(255,255,255,0.08);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0 calc(24px + var(--sp-9));
}

.footer__socials {
  display: flex;
  gap: var(--sp-3);
}

.footer__social-link {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.45);
  transition: all var(--t-fast);
}

.footer__social-link:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

.footer__copyright {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.3);
}

@media (max-width: 768px) {
  .footer { padding: 56px 0 0; }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-7);
    text-align: center;
    padding-bottom: 40px;
  }
  .footer__brand {
    align-items: center;
  }
  .footer__brand-desc {
    max-width: 100%;
  }
  .footer__contact-item {
    justify-content: center;
  }
  .footer__bottom {
    flex-direction: column;
    gap: var(--sp-4);
    text-align: center;
  }
  .footer__socials {
    justify-content: center;
  }
}

/* --- Floating CTA --- */
.floating-cta {
  position: fixed;
  bottom: var(--sp-6);
  right: var(--sp-6);
  z-index: 900;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--t-normal) var(--ease-out);
  pointer-events: none;
}

.floating-cta--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.floating-cta .btn {
  box-shadow: 0 8px 30px rgba(149, 168, 161, 0.4);
  padding: var(--sp-3) var(--sp-6);
  background: var(--c-sage);
  color: var(--c-white);
}

.floating-cta .btn:hover {
  background: var(--c-gold);
  color: var(--c-white);
}
.floating-cta .btn:hover .btn__icon {
  animation: spinStar 0.6s cubic-bezier(0.2, 0, 0, 1) forwards;
}

/* --- Split Section --- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-9);
  align-items: center;
}

.split--reverse {
  direction: rtl;
}

.split--reverse > * {
  direction: ltr;
}

@media (max-width: 768px) {
  .split {
    grid-template-columns: 1fr;
    gap: var(--sp-7);
  }
  .split--reverse {
    direction: ltr;
  }
}

.split__img {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.split__img img,
.split__img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split__content {
  max-width: 480px;
}

.split__content h2 {
  font-size: var(--fs-h2);
  margin-bottom: var(--sp-4);
}

.split__content p {
  font-size: var(--fs-body-lg);
  color: var(--c-text-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-5);
}

/* List with icons */
.check-list {
  margin-bottom: var(--sp-6);
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-2) 0;
  font-size: var(--fs-body);
  color: var(--c-text-secondary);
}

.check-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  color: var(--c-white);
  background: var(--c-sage);
  border-radius: 50%;
}

/* --- Pricing / Offer Card --- */
.offer-card {
  background: var(--c-white);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: all var(--t-normal) var(--ease-out);
  border: 1px solid transparent;
}

.offer-card:hover {
  transform: none;
  box-shadow: none;
}

.offer-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.offer-card__img img,
.offer-card__img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-out);
}

.offer-card:hover .offer-card__img img,
.offer-card:hover .offer-card__img-placeholder {
  transform: none;
}

.offer-card__body {
  padding: var(--sp-5) var(--sp-6) var(--sp-6);
}

.offer-card__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-h3);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--sp-2);
}

.offer-card__desc {
  font-size: var(--fs-small);
  color: var(--c-text-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-4);
}

.offer-card__details {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-bottom: var(--sp-5);
}

.offer-card__detail {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  padding: var(--sp-1) var(--sp-3);
  font-size: var(--fs-xs);
  color: var(--c-sage);
  background: rgba(149, 168, 161, 0.06);
  border-radius: var(--r-full);
}

.offer-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--sp-4);
  border-top: 1px solid var(--c-border);
}

.offer-card__price {
  font-family: var(--ff-heading);
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  color: var(--c-forest);
}

.offer-card__price-unit {
  font-size: var(--fs-small);
  font-weight: var(--fw-regular);
  color: var(--c-text-muted);
}

/* --- Gallery --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: var(--sp-4);
}

.gallery-grid__item {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
}

.gallery-grid__item:first-child {
  grid-row: span 2;
}

.gallery-grid__item img,
.gallery-grid__item .placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-out);
}

.gallery-grid__item:hover img,
.gallery-grid__item:hover .placeholder {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .gallery-grid__item {
    aspect-ratio: 16/9;
  }
  .gallery-grid__item:first-child {
    grid-row: span 1;
  }
}

/* --- FAQ --- */
.faq-item {
  border-bottom: 1px solid var(--c-border);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--sp-5) 0;
  font-family: var(--ff-heading);
  font-size: var(--fs-h4);
  font-weight: var(--fw-medium);
  text-align: left;
  cursor: pointer;
  color: var(--c-text);
  transition: color var(--t-fast);
}

.faq-item__question:hover {
  color: var(--c-sage);
}

.faq-item__icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  color: var(--c-sage);
  transition: transform var(--t-fast);
}

.faq-item--open .faq-item__question {
  color: var(--c-forest);
}

.faq-item--open .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-normal) var(--ease-out);
}

.faq-item--open .faq-item__answer {
  max-height: 300px;
}

.faq-item__answer p {
  padding-bottom: var(--sp-5);
  font-size: var(--fs-body);
  color: var(--c-text-secondary);
  line-height: var(--lh-relaxed);
  max-width: 90%;
}

/* --- Map / Info Section --- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  text-align: center;
}

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

.info-item__icon {
  font-size: 1.5rem;
  margin-bottom: var(--sp-3);
  color: var(--c-sage);
}

.info-item__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-h4);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--sp-2);
}

.info-item__text {
  font-size: var(--fs-small);
  color: var(--c-text-secondary);
  line-height: var(--lh-relaxed);
}

/* --- Animations (Scroll-triggered via IntersectionObserver) --- */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--t-slow) var(--ease-out), transform var(--t-slow) var(--ease-out);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate="fade-up"] {
  transform: translateY(30px);
}

[data-animate="fade-in"] {
  transform: none;
}

[data-animate="slide-left"] {
  transform: translateX(-30px);
}

[data-animate="slide-right"] {
  transform: translateX(30px);
}

[data-animate].is-visible {
  opacity: 1;
  transform: none;
}

/* Stagger children */
[data-stagger] > [data-animate]:nth-child(1) { transition-delay: 0ms; }
[data-stagger] > [data-animate]:nth-child(2) { transition-delay: 100ms; }
[data-stagger] > [data-animate]:nth-child(3) { transition-delay: 200ms; }
[data-stagger] > [data-animate]:nth-child(4) { transition-delay: 300ms; }

/* --- Utilities --- */
.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: var(--sp-4); }
.mb-6 { margin-bottom: var(--sp-6); }
.mb-8 { margin-bottom: var(--sp-8); }
.mt-4 { margin-top: var(--sp-4); }
.mt-6 { margin-top: var(--sp-6); }

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

/* Placeholder images */
.placeholder--pool {
  background: linear-gradient(135deg, #6BA5A0, #4A7C6B);
}
.placeholder--spa {
  background: linear-gradient(135deg, #7EB8A4, #5B9EA6);
}
.placeholder--massage {
  background: linear-gradient(135deg, #A8D5C5, #7EB8A4);
}
.placeholder--sauna {
  background: linear-gradient(135deg, #A8D5C5, #6B9E8E);
}
.placeholder--jacuzzi {
  background: linear-gradient(135deg, #6BAEA6, #3A6F5E);
}
.placeholder--suite {
  background: linear-gradient(135deg, #4A7F6E, #3A5F50);
}
.placeholder--facial {
  background: linear-gradient(135deg, #B0D9CA, #8CC4B0);
}
.placeholder--ambiance {
  background: linear-gradient(135deg, #3A6F5E, #6BAEA6);
}

/* --- Responsive Fine-tuning --- */
@media (max-width: 480px) {
  :root {
    --gutter: var(--sp-4);
    --nav-height: 64px;
  }

  .hero {
    min-height: 90vh;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .btn--lg {
    width: 100%;
    justify-content: center;
  }

  .section {
    padding: var(--sp-9) 0;
  }

  .section--lg {
    padding: var(--sp-10) 0;
  }
}


/* ========== hiw-steps--5 (ajout 2026-04-09 pour parcours 5 étapes espace-collectif) ========== */
@media (min-width: 769px) {
  .hiw-steps--5 { max-width: 1100px; }
  .hiw-steps--5::before { left: calc(10% + 26px); right: calc(10% + 26px); }
  .hiw-steps--5::after  { left: calc(10% + 26px); right: calc(10% + 26px); }
}

.hiw-steps--5.is-visible .hiw-step:nth-child(5) .hiw-step__number { background: var(--c-forest); color: #fff; border-color: var(--c-forest); transition-delay: 1.6s; }
.hiw-steps--5.is-visible .hiw-step:nth-child(5) .hiw-step__title  { opacity: 1; transform: translateY(0); transition-delay: 1.75s; }
.hiw-steps--5.is-visible .hiw-step:nth-child(5) .hiw-step__desc   { opacity: 1; transform: translateY(0); transition-delay: 1.85s; }

/* Fallback safety: si jamais .is-visible n'est pas ajouté, on force l'affichage du 5ème */
.hiw-steps--5 .hiw-step:nth-child(5) .hiw-step__title,
.hiw-steps--5 .hiw-step:nth-child(5) .hiw-step__desc { opacity: 1; transform: none; }


/* ==========================================================================
   BÉNÉFICES — section forest + cards inversées (dark) + ACF-ready
   Refonte 2026-04-09 — espace-collectif.html
   ========================================================================== */
.benefits {
  background-color: var(--c-forest);
  color: var(--c-cream);
  padding: var(--sp-11) 0;
}
.benefits .section-header__title,
.benefits .section-header__title em {
  color: var(--c-cream);
}
.benefits .section-header__title em {
  color: var(--c-gold-light);
}
.benefits .section-header__subtitle {
  color: rgba(250, 247, 242, 0.75);
}
.benefits .overline {
  color: var(--c-gold-light);
}

/* Card variante sombre (fond forest-light, texte cream) */
.card--dark {
  background: var(--c-forest-light);
  color: var(--c-cream);
  border: 1px solid rgba(196, 167, 125, 0.12);
}
/* card--dark hover removed — no action */
.card--dark .card__tag {
  background: rgba(196, 167, 125, 0.18);
  color: var(--c-gold-light);
  border: 1px solid rgba(196, 167, 125, 0.35);
}
.card--dark .card__title {
  color: var(--c-cream);
}
.card--dark .card__desc {
  color: rgba(250, 247, 242, 0.72);
}
.card--dark .card__img-overlay {
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.55) 100%);
}
.card--dark .card__footer {
  border-top-color: rgba(196, 167, 125, 0.2);
}

/* Benefits grid — cartes un poil plus larges en desktop */
.benefits__grid {
  gap: var(--sp-4);
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}
.benefits__grid .card__body {
  padding: var(--sp-4) var(--sp-4) var(--sp-5);
}

/* ==========================================================================
   POUR QUI — section white + split image/liste numérotée (ACF-ready)
   Ajout 2026-04-09 — espace-collectif.html
   ========================================================================== */
.for-who {
  background-color: var(--c-cream);
  padding: var(--sp-11) 0;
}
.for-who__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-9);
  align-items: center;
}
.for-who__media {
  margin: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.for-who__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.for-who__content {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.for-who__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-h2);
  font-weight: var(--fw-semibold);
  color: var(--c-text);
  line-height: var(--lh-tight);
  margin: 0;
}
.for-who__title em {
  font-style: italic;
  color: var(--c-sage);
}
.for-who__list {
  list-style: none;
  padding: 0;
  margin: var(--sp-5) 0 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}
.for-who__item {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
  padding-bottom: var(--sp-5);
  border-bottom: 1px solid rgba(61, 90, 86, 0.12);
}
.for-who__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.for-who__num {
  font-family: var(--ff-heading);
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  color: var(--c-forest);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-cream-dark);
  border-radius: 14px;
}
.for-who__body {
  flex: 1;
}
.for-who__itemtitle {
  font-family: var(--ff-heading);
  font-size: var(--fs-body-lg);
  font-weight: var(--fw-semibold);
  color: var(--c-text);
  margin: 0 0 var(--sp-2);
}
.for-who__itemdesc {
  font-size: var(--fs-small);
  color: var(--c-text-secondary);
  line-height: var(--lh-relaxed);
  margin: 0;
}

/* Tablette */
@media (max-width: 1024px) {
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile */
@media (max-width: 768px) {
  .benefits { padding: var(--sp-9) 0; }
  .benefits__grid { grid-template-columns: 1fr; gap: var(--sp-5); margin-top: var(--sp-6); }
  .for-who { padding: var(--sp-9) 0; }
  .for-who__split { grid-template-columns: 1fr; gap: var(--sp-6); }
  .for-who__media { aspect-ratio: 3/2; }
  .for-who__title { font-size: var(--fs-h3); }
}

/* ===== soins.html extras (ACF-ready) ===== */
.soin-card__price-note {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--c-sage, #95A8A1);
  margin-top: 2px;
  letter-spacing: 0.01em;
}
.soin-card--rituel .soin-card__tag {
  background: rgba(196, 167, 125, 0.14);
  color: var(--c-gold, #C4A77D);
  border: 1px solid rgba(196, 167, 125, 0.32);
}
.cta-banner__bg--forest {
  background: linear-gradient(135deg, var(--c-forest) 0%, #3D6B5E 50%, var(--c-forest-light, #4A6B66) 100%);
}
.overline--light {
  color: var(--c-gold-light, #D9BC93);
}

/* ===== ACF-ready utility classes (audit D) ===== */
.hero__img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay--forest {
  background: linear-gradient(180deg, rgba(58,95,80,0.15) 0%, rgba(58,95,80,0.4) 50%, rgba(58,95,80,0.7) 100%);
}
.icon--inline { vertical-align: -1px; margin-right: 6px; }
.icon--gap-right { margin-right: 0.3rem; }
.exp-panel__price-unit { font-size: 0.6em; font-weight: 400; opacity: 0.7; }
.text-muted { color: var(--c-text-muted); }
.u-mt-2 { margin-top: var(--sp-2); }
.u-obj-center-35 { object-position: center 35%; }
.u-obj-center-25 { object-position: center 25%; }
.flex--gap-4 { gap: var(--sp-4); }
.flex--wrap { flex-wrap: wrap; }
.testimonial-card__avatar--sage { background: var(--c-sage); }
.testimonial-card__avatar--gold { background: var(--c-gold); }
.section-header--mb-lg { margin-bottom: var(--sp-8); }
.overline--gold { color: var(--c-gold); }
.btn--block { width: 100%; }

/* Google review component */
.google-review__stars {
  font-size: 1.2rem;
  color: var(--c-gold);
  margin-bottom: var(--sp-5);
}
.google-review__quote {
  font-family: var(--ff-heading);
  font-size: var(--fs-h2);
  font-weight: var(--fw-light);
  font-style: italic;
  line-height: var(--lh-snug);
  color: var(--c-text);
  margin-bottom: var(--sp-6);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.google-review__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  transition: opacity 0.3s;
}
.google-review__link:hover { opacity: 0.8; }
.google-review__meta { text-align: left; }
.google-review__name {
  font-weight: var(--fw-semibold);
  font-size: var(--fs-small);
}
.google-review__source {
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
}
.google-review__logo { vertical-align: -2px; margin-right: 4px; }

/* ===== espace-collectif extras (audit D) ===== */
.hero__overline--compact { padding: 8px 20px; font-size: 0.75rem; }
.hero__sub--narrow { max-width: 520px; }
.btn--outline-light { border-color: rgba(255,255,255,0.35); color: #fff; }
.em--sage { font-style: italic; color: var(--c-sage); }
.cta-banner__bg--rounded { border-radius: var(--r-xl); }

