/* ============================================
   KALÉA — Design System & Global Styles
   Refonte Site Vitrine
   Palette : Dark warm / Ambre-doré / Vert profond
   Inspiré de la DA Instagram Kaléa
   Typo : Montserrat + Poppins
   Grid : 8px base unit
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Colors — Palette Kaléa officielle */
  --c-forest: #172721;          /* Jet Black — fond principal dark */
  --c-forest-light: #2B3530;
  --c-sage: #497D6B;            /* Deep Teal — CTA Réserver */
  --c-mint: #7EB8A4;
  --c-mint-light: #A8D5C5;
  --c-teal: #497D6B;
  --c-teal-light: #6BA097;
  --c-cream: #FAF8F5;
  --c-cream-dark: #F0ECE6;
  --c-blush: #F7EDF0;           /* Lavender Blush — contraste doux */
  --c-white: #FFFFFF;
  --c-black: #111111;
  --c-text: #1A1A1A;
  --c-text-secondary: #555555;
  --c-text-muted: #8A8A8A;
  --c-gold: #B38B42;            /* Dark Goldenrod — accents dorés */
  --c-gold-light: #C9A96E;      /* Soft Fawn */
  --c-warm: #C9A96E;
  --c-warm-light: #DBBF8A;
  --c-border: rgba(0, 0, 0, 0.06);
  --c-overlay: rgba(20, 24, 20, 0.6);
  --c-overlay-light: rgba(20, 24, 20, 0.35);

  /* 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.5rem, 5vw, 4rem);
  --fs-h1: clamp(2rem, 4vw, 3rem);
  --fs-h2: clamp(1.5rem, 3vw, 2.25rem);
  --fs-h3: clamp(1.15rem, 2vw, 1.5rem);
  --fs-h4: 1.125rem;
  --fs-body: 1rem;
  --fs-body-lg: 1.125rem;
  --fs-small: 0.875rem;
  --fs-xs: 0.75rem;
  --fs-overline: 0.75rem;

  --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(201, 169, 110, 0.2);
  --shadow-warm: 0 8px 30px rgba(201, 169, 110, 0.15);

  /* 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(201, 169, 110, 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-light);
  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;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: var(--sp-8);
  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(74, 124, 107, 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-forest);
}

.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);
  box-shadow: var(--shadow-md);
}

.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 {
  animation: spinStar 0.6s cubic-bezier(0.2, 0, 0, 1) forwards;
}

@keyframes spinStar {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(540deg); }
}

/* --- Cards --- */
.card {
  position: relative;
  background: var(--c-white);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all var(--t-normal) var(--ease-out);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.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;
  transition: transform var(--t-slow) var(--ease-out);
}

.card:hover .card__img img,
.card:hover .card__img-placeholder {
  transform: scale(1.05);
}

.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: 1;
}

.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(74, 124, 107, 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: scale(1.08);
}

.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);
}

.exp-card:hover .exp-card__overlay {
  background: linear-gradient(180deg, transparent 20%, rgba(30, 58, 47, 0.9) 100%);
}

.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);
}

.exp-card:hover .exp-card__arrow {
  opacity: 1;
  transform: translateY(0);
}

/* 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(74, 124, 107, 0.08);
  border-radius: var(--r-md);
  color: var(--c-sage);
}

.section--dark .feature-item__icon {
  background: rgba(126, 184, 164, 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: block;
}

a.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--sp-4);
  color: var(--c-gold);
  font-size: 0.9rem;
}

.testimonial-card__text {
  font-size: var(--fs-body);
  line-height: var(--lh-relaxed);
  color: var(--c-text-secondary);
  margin-bottom: var(--sp-5);
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(73, 125, 107, 0.2);
}

.testimonial-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card__name {
  font-weight: var(--fw-semibold);
  font-size: var(--fs-small);
}

.testimonial-card__source {
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
}

/* --- 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 {
  background: var(--c-blush, #F7EDF0);
  color: var(--c-text-secondary);
  padding: var(--sp-9) 0 var(--sp-6);
  position: relative;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-8);
  margin-bottom: var(--sp-9);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
}

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
    text-align: center;
  }
  .footer__brand {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  .footer__socials {
    justify-content: center;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .footer__legal {
    justify-content: center;
  }
}

.footer__brand {
  max-width: 280px;
}

.footer__logo {
  font-family: var(--ff-heading);
  font-size: 1.5rem;
  font-weight: var(--fw-bold);
  color: var(--c-text);
  margin-bottom: var(--sp-4);
}

.footer__brand-desc {
  font-size: var(--fs-small);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-5);
}

.footer__socials {
  display: flex;
  gap: var(--sp-3);
}

.footer__social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.06);
  color: var(--c-text-secondary);
  font-size: 0.9rem;
  transition: all var(--t-fast);
}

.footer__social-link:hover {
  background: var(--c-sage);
  color: var(--c-white);
}

.footer__col-title {
  font-family: var(--ff-heading);
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  color: var(--c-text);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  margin-bottom: var(--sp-4);
}

.footer__link {
  display: block;
  font-size: var(--fs-small);
  color: var(--c-text-secondary);
  padding: var(--sp-1) 0;
  transition: color var(--t-fast);
}

.footer__link:hover {
  color: var(--c-sage);
}

.footer__bottom {
  padding-top: var(--sp-6);
  padding-bottom: calc(var(--sp-11) + var(--sp-4));
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
  position: relative;
}

.footer__copyright {
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
}

.footer__legal {
  display: flex;
  gap: var(--sp-5);
}

.footer__legal a {
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
  transition: color var(--t-fast);
}

.footer__legal a:hover {
  color: var(--c-text);
}

/* --- 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(73, 125, 107, 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);
}

/* --- 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: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--c-mint-light);
}

.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: scale(1.05);
}

.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(74, 124, 107, 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__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, #C4A97D, #8CB9A3);
}
.placeholder--jacuzzi {
  background: linear-gradient(135deg, #5B9EA6, #2A4D3E);
}
.placeholder--suite {
  background: linear-gradient(135deg, #3D6B5E, #1E3A2F);
}
.placeholder--facial {
  background: linear-gradient(135deg, #D9C9A5, #A8D5C5);
}
.placeholder--ambiance {
  background: linear-gradient(135deg, #2A4D3E, #5B9EA6);
}

/* --- 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;
  }
}
