/* =========================================================
   LA DOUCE ESCALE — Stylesheet
   Romantique luxe : émeraude profond + doré/cuivre + crème chaude
   ========================================================= */

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

/* ---------- Tokens ---------- */
:root {
  /* PALETTE ROMANTIQUE LUXE */
  --emerald-deep:  #0F4438;   /* émeraude profond — fond hero, sections importantes */
  --emerald-mid:   #1A6B58;   /* émeraude médium — hover, états actifs */
  --emerald-soft:  #2C8770;   /* émeraude clair pour accents */

  --gold:          #C9A961;   /* doré cuivré — CTA, accents, badges */
  --gold-bright:   #E5C580;   /* doré clair — hover */
  --gold-deep:     #A8893E;   /* doré profond — bordures, ombres */

  --copper:        #B87B4A;   /* cuivre — accents chauds */
  --rose-blush:    #E8B5A0;   /* rosé saumon doux — touches romantiques */

  --cream-warm:    #F8F1E4;   /* crème chaude — fond principal (chaleureux) */
  --cream-deep:    #EFE4D0;   /* crème plus foncée — sections alternées */
  --ivory:         #FBF8F2;   /* ivoire clair — gardé pour compatibilité */
  --sand:          #EFE4D0;   /* sable chaud — alias pour compat existante */

  --ink:           #1A2823;   /* noir vert profond — texte principal */
  --ink-soft:      #4A554F;   /* gris foncé — texte secondaire */
  --line:          #E0D5BD;   /* lignes subtiles — bordures */
  --line-strong:   #C9A961;   /* lignes accentuées — doré subtil */

  /* Anciennes variables conservées pour rétro-compat (mais redirigées) */
  --forest:        var(--emerald-deep);    /* tout ce qui était forest devient émeraude */
  --forest-deep:   #08332A;
  --olive:         var(--gold-deep);       /* eyebrows, accents subtils → doré */
  --olive-soft:    var(--gold-bright);
  --coral:         var(--copper);          /* CTAs colorés → cuivre/doré */
  --coral-soft:    var(--rose-blush);

  /* Fontes */
  --display: 'Fraunces', 'Cormorant Garamond', 'Times New Roman', serif;
  --body:    'Plus Jakarta Sans', 'Inter Tight', system-ui, -apple-system, sans-serif;

  --container: 1280px;
  --gutter: clamp(20px, 4vw, 56px);

  --shadow-soft: 0 18px 50px -20px rgba(15, 68, 56, 0.22);
  --shadow-deep: 0 30px 80px -30px rgba(15, 68, 56, 0.40);
  --shadow-gold: 0 12px 36px -10px rgba(201, 169, 97, 0.45);

  --ease-out: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
:focus-visible { outline: 2px solid var(--forest); outline-offset: 4px; border-radius: 2px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin: 0;
  color: var(--ink);
}
.eyebrow {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--olive);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--olive);
}
.section-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--olive);
  letter-spacing: 0.02em;
}

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

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 248, 242, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease-out), background .3s var(--ease-out);
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  background: rgba(251, 248, 242, 0.95);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.brand img {
  height: 72px;
  width: 72px;
  object-fit: contain;
}
.brand-text {
  display: none;
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--forest);
  font-style: italic;
}
@media (min-width: 640px) { .brand-text { display: block; } }

.nav-links {
  display: none;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 1000px) { .nav-links { display: flex; } }

.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--forest);
  transition: width .3s var(--ease-out);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--forest); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lang-switch {
  display: flex;
  gap: 4px;
  align-items: center;
}
.lang-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  filter: grayscale(0.55) opacity(0.55);
  transition: filter .25s, transform .25s, background .25s;
}
.lang-switch .flag-svg {
  width: 26px;
  height: 26px;
  display: block;
}
.lang-switch a:hover {
  filter: grayscale(0) opacity(1);
  transform: scale(1.1);
}
.lang-switch a.active {
  filter: grayscale(0) opacity(1);
  background: var(--sand);
}
.lang-switch a.active .flag-svg {
  width: 24px;
  height: 24px;
}
@media (max-width: 999px) {
  .lang-switch { gap: 2px; }
  .lang-switch a { width: 28px; height: 28px; }
  .lang-switch .flag-svg { width: 22px; height: 22px; }
  .lang-switch a.active .flag-svg { width: 20px; height: 20px; }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold) 0%, var(--copper) 100%);
  color: var(--ink);
  border: none;
  border-radius: 999px;
  transition: all .35s var(--ease-out);
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px -6px rgba(201, 169, 97, 0.45);
  cursor: pointer;
}
.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transition: left .8s var(--ease-out);
  pointer-events: none;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -6px rgba(201, 169, 97, 0.6);
}
.btn:hover::before { left: 100%; }
.btn--ghost {
  background: transparent;
  color: var(--emerald-deep);
  border: 1.5px solid var(--emerald-deep);
  box-shadow: none;
}
.btn--ghost::before { display: none; }
.btn--ghost:hover {
  background: var(--emerald-deep);
  color: var(--cream-warm);
  box-shadow: var(--shadow-soft);
}
/* Variante "dark" pour fond émeraude */
.btn--on-dark {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--ink);
  box-shadow: 0 8px 24px -4px rgba(201, 169, 97, 0.5);
}
.btn--disabled {
  background: rgba(15, 68, 56, 0.08);
  border: 1px solid rgba(15, 68, 56, 0.15);
  color: rgba(15, 68, 56, 0.55);
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
}
.btn--disabled::before { display: none; }
/* Sur fond émeraude (hero carousel uniquement), .btn--disabled doit être plus clair */
.has-hero-carousel .hero-carousel .btn--disabled {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.7);
}
.btn .arrow {
  transition: transform .3s var(--ease-out);
}
.btn:hover .arrow { transform: translateX(4px); }

/* Burger */
.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
@media (min-width: 1000px) { .burger { display: none; } }
.burger span {
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform .3s, opacity .3s;
}
.mobile-menu-open .burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.mobile-menu-open .burger span:nth-child(2) { opacity: 0; }
.mobile-menu-open .burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 84px 0 0 0;
  background: var(--ivory);
  padding: 48px var(--gutter);
  transform: translateX(100%);
  transition: transform .4s var(--ease-out);
  z-index: 49;
  overflow-y: auto;
}
.mobile-menu-open .mobile-menu { transform: translateX(0); }
.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0 0 48px 0;
}
.mobile-menu li {
  border-bottom: 1px solid var(--line);
}
.mobile-menu a {
  display: block;
  padding: 22px 0;
  font-family: var(--display);
  font-size: 28px;
  color: var(--ink);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(40px, 7vw, 90px) 0 clamp(60px, 9vw, 120px);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: end;
}
@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.05fr 1fr;
    gap: 60px;
  }
}
.hero-text {
  position: relative;
  padding-bottom: 16px;
}
.hero-title {
  font-size: clamp(58px, 10vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin: 18px 0 28px;
  color: var(--ink);
}
.hero-title .italic {
  font-style: italic;
  color: var(--forest);
  font-weight: 300;
}
.hero-lede {
  max-width: 480px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 36px;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 40px;
  padding: 28px 0;
  margin-top: 40px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.hero-meta strong {
  display: block;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink);
  margin-bottom: 4px;
}

.hero-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
  background: var(--sand);
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(31,42,36,0.15), transparent 40%);
  pointer-events: none;
}
/* Decorative colibri-inspired accent in top-left corner */
.hero-image::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 56px;
  height: 56px;
  border-top: 3px solid var(--gold);
  border-left: 3px solid var(--coral);
  z-index: 2;
  pointer-events: none;
}
.hero-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--ivory);
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 500;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
}

/* watermark behind hero title */
.hero-watermark {
  position: absolute;
  top: 0;
  right: -5%;
  font-family: var(--display);
  font-size: clamp(180px, 28vw, 380px);
  font-style: italic;
  font-weight: 300;
  line-height: 1;
  color: var(--forest);
  opacity: 0.04;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* ---------- Sections ---------- */
section {
  padding: clamp(60px, 9vw, 130px) 0;
  position: relative;
}
.section-tan { background: var(--sand); }
.section-deep { background: var(--forest); color: var(--ivory); }
.section-deep h2, .section-deep h3 { color: var(--ivory); }
.section-deep .eyebrow { color: var(--olive-soft); }
.section-deep .eyebrow::before { background: var(--olive-soft); }

.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 70px;
}
@media (min-width: 800px) {
  .section-head {
    grid-template-columns: 1fr 1.6fr;
    gap: 60px;
    align-items: end;
  }
}
.section-head h2 {
  font-size: clamp(42px, 6vw, 78px);
}
.section-head h2 .italic {
  font-style: italic;
  color: var(--forest);
  font-weight: 300;
}
.section-deep .section-head h2 .italic { color: var(--olive-soft); }

.section-head p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 520px;
  margin: 0;
}
.section-deep .section-head p { color: rgba(251, 248, 242, 0.78); }

/* ---------- Features (3 columns) ---------- */
.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 800px) { .features { grid-template-columns: repeat(3, 1fr); gap: 56px; } }
.feature {
  position: relative;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.section-deep .feature { border-top-color: rgba(251,248,242,0.18); }
.feature-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--olive);
  margin-bottom: 18px;
  display: block;
}
.section-deep .feature-num { color: var(--olive-soft); }
.feature h3 {
  font-size: 28px;
  margin-bottom: 12px;
  font-weight: 500;
}
.feature p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}
.section-deep .feature p { color: rgba(251,248,242,0.75); }

/* ---------- About / Split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; gap: 80px; }
  .split--reverse > :first-child { order: 2; }
}
.split-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
  background: var(--sand);
  position: relative;
}
.split-image img { width: 100%; height: 100%; object-fit: cover; }
.split-text h2 {
  font-size: clamp(36px, 4.5vw, 58px);
  margin: 18px 0 24px;
}
.split-text h2 .italic { font-style: italic; color: var(--forest); font-weight: 300; }
.split-text p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.split-text .btn { margin-top: 16px; }

/* ---------- Amenities grid ---------- */
.amenities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (min-width: 600px) { .amenities { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .amenities { grid-template-columns: repeat(4, 1fr); } }
.amenity {
  background: var(--ivory);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition: background .3s;
}
.amenity:hover { background: var(--sand); }
.amenity-icon {
  width: 28px;
  height: 28px;
  color: var(--forest);
}
.amenity-icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.amenity-label {
  font-size: 14px;
  line-height: 1.4;
  color: var(--ink);
  font-weight: 400;
}

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
}
@media (min-width: 700px) {
  .gallery { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 240px; gap: 16px; }
}
@media (min-width: 1100px) {
  .gallery { grid-auto-rows: 300px; }
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  background: var(--sand);
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }
@media (max-width: 699px) {
  .gallery-item--tall, .gallery-item--wide { grid-row: span 1; grid-column: span 1; }
}

/* ---------- Events block ---------- */
.events-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: stretch;
}
@media (min-width: 900px) { .events-block { grid-template-columns: 1.1fr 1fr; gap: 64px; } }
.events-image {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 4px;
  background: rgba(251,248,242,0.1);
}
.events-image img { width: 100%; height: 100%; object-fit: cover; }
.events-text h2 {
  font-size: clamp(38px, 5vw, 64px);
  margin-bottom: 30px;
}
.events-list {
  list-style: none;
  padding: 0;
  margin: 32px 0;
  display: grid;
  gap: 18px;
}
.events-list li {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 300;
  font-style: italic;
  color: var(--ivory);
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(251,248,242,0.18);
  display: flex;
  align-items: baseline;
  gap: 18px;
}
.events-list li::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--olive-soft);
  flex-shrink: 0;
}
.events-cta-deep {
  background: transparent;
  color: var(--ivory);
  border: 1px solid var(--ivory);
}
.events-cta-deep:hover { background: var(--ivory); color: var(--forest); }

/* ---------- Events: Ambiances (festive + romantic) ---------- */
.events-section .section-head h2 .italic {
  color: var(--olive-soft);
}

.ambiances {
  display: grid;
  gap: clamp(60px, 8vw, 100px);
  margin-bottom: 80px;
}

.ambiance {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 900px) {
  .ambiance {
    grid-template-columns: 1.15fr 1fr;
    gap: 70px;
  }
  .ambiance--reverse > :first-child { order: 2; }
}

/* Photo composition: main + accent overlapping */
.ambiance-photos {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 16px;
  align-items: stretch;
}
@media (min-width: 700px) {
  .ambiance-photos { gap: 20px; }
}

.ambiance-photo {
  overflow: hidden;
  border-radius: 4px;
  background: rgba(251, 248, 242, 0.08);
  position: relative;
}
.ambiance-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.ambiance-photo:hover img { transform: scale(1.04); }

.ambiance-photo--main {
  aspect-ratio: 3/4;
}
.ambiance-photo--accent {
  aspect-ratio: 3/4;
  margin-top: 60px;
  margin-bottom: -30px;
}
@media (min-width: 700px) {
  .ambiance-photo--accent {
    margin-top: 80px;
    margin-bottom: -40px;
  }
}

/* Decorative frame on main photo - colibri accent */
.ambiance-photo--main::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 64px;
  height: 64px;
  border-bottom: 3px solid var(--gold);
  border-left: 3px solid var(--coral);
  z-index: 2;
  pointer-events: none;
}

.ambiance-text {
  padding: 0;
}
.ambiance-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--olive-soft);
  display: block;
  margin-bottom: 16px;
}
.ambiance-text h3 {
  font-family: var(--display);
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--ivory);
  margin: 0 0 24px;
}
.ambiance-text h3 .italic {
  font-style: italic;
  font-weight: 300;
  color: var(--olive-soft);
}
.ambiance-text p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(251, 248, 242, 0.78);
  margin: 0 0 28px;
  max-width: 480px;
}

/* Ambiance tags - pill-style chips */
.ambiance-tags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ambiance-tags li {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ivory);
  padding: 8px 16px;
  border: 1px solid rgba(251, 248, 242, 0.25);
  border-radius: 999px;
  font-weight: 500;
  transition: all .3s var(--ease-out);
}
.ambiance-tags li:hover {
  background: rgba(251, 248, 242, 0.08);
  border-color: var(--gold);
  color: var(--gold);
}

/* CTA Row at the bottom of events section */
.events-cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding-top: 40px;
  border-top: 1px solid rgba(251, 248, 242, 0.12);
  text-align: center;
}
@media (min-width: 700px) {
  .events-cta-row {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    gap: 32px;
  }
}
.events-cta-text {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 300;
  color: var(--ivory);
  margin: 0;
  max-width: 480px;
}

/* ---------- Booking band ---------- */
.booking-band {
  text-align: center;
  padding: clamp(70px, 10vw, 130px) 0;
  background: var(--emerald-deep);
  color: white;
  position: relative;
  overflow: hidden;
}
.booking-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right,
    rgba(201, 169, 97, 0.18) 0%,
    transparent 60%);
  pointer-events: none;
}
.booking-band > * { position: relative; z-index: 1; }
.booking-band .eyebrow { justify-content: center; color: var(--gold-bright); }
.booking-band .eyebrow::before { background: var(--gold); }
.booking-band h2 {
  font-size: clamp(42px, 6vw, 80px);
  max-width: 800px;
  margin: 18px auto 18px;
  line-height: 1;
  color: white;
}
.booking-band h2 .italic { font-style: italic; color: var(--gold-bright); font-weight: 300; }
.booking-price {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  color: rgba(255, 255, 255, 0.85);
  margin: 24px 0 40px;
}
.booking-price strong {
  font-style: normal;
  font-weight: 500;
  color: var(--gold-bright);
  font-size: 26px;
}
.booking-note {
  margin-top: 24px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}
/* btn--disabled sur fond émeraude de la booking-band */
.booking-band .btn--disabled {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.75);
}

/* ---------- Testimonials ---------- */
.testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media (min-width: 800px) { .testimonials { grid-template-columns: repeat(3, 1fr); gap: 32px; } }
.testimonial {
  padding: 40px 32px;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 4px;
  position: relative;
}
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  color: var(--gold);
}
.testimonial-stars svg { width: 16px; height: 16px; fill: currentColor; }
.testimonial-quote {
  font-family: var(--display);
  font-size: 22px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.4;
  color: var(--ink);
  margin: 0 0 24px;
  min-height: 90px;
}
.testimonial-quote.placeholder {
  color: var(--line-strong);
}
.testimonial-author {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 500;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--emerald-deep);
  color: rgba(248, 241, 228, 0.78);
  padding: 80px 0 32px;
  border-top: 1px solid rgba(201, 169, 97, 0.18);
}
.site-footer h4 {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-bright);
  font-weight: 600;
  margin-bottom: 22px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(201, 169, 97, 0.15);
}
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 60px; } }
.footer-brand img { 
  height: 64px; 
  width: auto; 
  margin-bottom: 22px; 
  filter: brightness(0) saturate(100%) invert(82%) sepia(45%) saturate(450%) hue-rotate(0deg);
}
.footer-tagline {
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  line-height: 1.5;
  color: rgba(251,248,242,0.85);
  margin: 0;
  max-width: 280px;
}
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
  font-size: 14px;
}
.footer-list a:hover { color: var(--ivory); }
.footer-contact-line {
  font-size: 14px;
  margin-bottom: 10px;
  color: rgba(251,248,242,0.85);
}
.footer-bottom {
  padding-top: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(251,248,242,0.5);
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(31,42,36,0.94);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 32px;
  opacity: 0;
  transition: opacity .3s;
}
.lightbox.open { display: flex; opacity: 1; }
.lightbox img {
  max-width: min(1200px, 100%);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 2px;
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(251,248,242,0.12);
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: background .2s;
}
.lightbox-close:hover { background: rgba(251,248,242,0.25); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(251,248,242,0.08);
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.lightbox-nav:hover { background: rgba(251,248,242,0.2); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
@media (max-width: 700px) {
  .lightbox-nav { width: 44px; height: 44px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Utilities ---------- */
.center-text { text-align: center; }
.mt-8 { margin-top: 32px; }
.placeholder-img {
  width: 100%; height: 100%;
  background:
    repeating-linear-gradient(45deg, var(--sand), var(--sand) 12px, var(--ivory) 12px, var(--ivory) 24px);
  display: flex; align-items: center; justify-content: center;
  color: var(--olive); font-family: var(--display); font-style: italic;
  font-size: 14px; padding: 16px; text-align: center;
}

/* =========================================================
   INNER PAGES — components shared across logement/events/gallery/contact
   ========================================================= */

/* ---------- Page Hero (compact) ---------- */
.page-hero {
  position: relative;
  padding: clamp(60px, 9vw, 130px) 0 clamp(40px, 6vw, 80px);
  background: var(--ivory);
  overflow: hidden;
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: end;
}
@media (min-width: 800px) {
  .page-hero-grid {
    grid-template-columns: 1.4fr 1fr;
    gap: 80px;
  }
}
.page-hero-text { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(48px, 8vw, 100px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  margin: 18px 0 28px;
}
.page-hero h1 .italic {
  font-style: italic;
  color: var(--forest);
  font-weight: 300;
}
.page-hero-lede {
  max-width: 540px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0;
}
.page-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 56px;
  margin-top: 20px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.page-hero-meta strong {
  display: block;
  font-family: var(--display);
  font-size: 32px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--forest);
  margin-bottom: 4px;
}
.page-hero-watermark {
  position: absolute;
  bottom: -30px;
  right: -3%;
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(140px, 22vw, 280px);
  line-height: 1;
  color: var(--forest);
  opacity: 0.05;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* ---------- Definition / Info groups ---------- */
.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
@media (min-width: 700px) { .info-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .info-grid { grid-template-columns: repeat(3, 1fr); } }
.info-grid > * {
  padding: 32px 0 32px 0;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 700px) {
  .info-grid > *:nth-child(odd) { padding-right: 32px; }
  .info-grid > *:nth-child(even) { padding-left: 32px; border-left: 1px solid var(--line); }
}
@media (min-width: 1000px) {
  .info-grid > * { padding-left: 32px; padding-right: 32px; border-left: 1px solid var(--line); }
  .info-grid > *:first-child,
  .info-grid > *:nth-child(3n+1) { padding-left: 0; border-left: none; }
}
.info-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 500;
  margin-bottom: 10px;
}
.info-value {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.3;
}
.info-value-sub {
  font-size: 14px;
  color: var(--ink-soft);
  margin-top: 6px;
  font-family: var(--body);
}

/* ---------- Equipment large list (logement detail page) ---------- */
.equip-cats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}
@media (min-width: 800px) { .equip-cats { grid-template-columns: repeat(2, 1fr); gap: 64px; } }
.equip-cat-title {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
  color: var(--forest);
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.equip-cat-num {
  font-style: italic;
  font-weight: 300;
  font-size: 16px;
  color: var(--olive);
}
.equip-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.equip-list li {
  font-size: 15px;
  color: var(--ink-soft);
  display: flex;
  gap: 12px;
}
.equip-list li::before {
  content: '·';
  color: var(--olive);
  font-weight: 700;
  flex-shrink: 0;
}

/* ---------- Process steps (events page) ---------- */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  counter-reset: step;
}
@media (min-width: 700px) { .steps { grid-template-columns: repeat(2, 1fr); gap: 48px; } }
@media (min-width: 1100px) { .steps { grid-template-columns: repeat(4, 1fr); } }

.step {
  position: relative;
  padding: 36px 28px;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: border-color .3s, transform .3s;
}
.step:hover {
  border-color: var(--olive);
  transform: translateY(-3px);
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--olive);
  display: block;
  margin-bottom: 18px;
}
.step h3 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 12px;
  line-height: 1.2;
}
.step p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

/* ---------- Pricing / packages cards ---------- */
.packages {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 800px) { .packages { grid-template-columns: repeat(2, 1fr); gap: 32px; } }
.package {
  padding: 44px 36px;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 4px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.package--featured {
  background: var(--forest);
  color: var(--ivory);
  border-color: var(--forest);
}
.package--featured h3,
.package--featured .package-price {
  color: var(--ivory);
}
.package-flag {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.package h3 {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 8px;
}
.package h3 .italic { font-style: italic; color: var(--forest); }
.package--featured h3 .italic { color: var(--olive-soft); }
.package-tagline {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.package--featured .package-tagline { color: rgba(251,248,242,0.75); }
.package-price {
  font-family: var(--display);
  font-style: italic;
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.package--featured .package-price { border-bottom-color: rgba(251,248,242,0.2); }
.package-price strong {
  font-style: normal;
  font-weight: 500;
  font-size: 36px;
  color: var(--forest);
  margin-right: 8px;
}
.package--featured .package-price strong { color: var(--gold); }
.package-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  flex: 1;
}
.package-features li {
  padding: 10px 0;
  font-size: 14.5px;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--ink-soft);
}
.package--featured .package-features li { color: rgba(251,248,242,0.85); }
.package-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--olive);
  margin-top: 9px;
  flex-shrink: 0;
}
.package--featured .package-features li::before { background: var(--gold); }

/* ---------- Full gallery grid ---------- */
.gallery-full {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 700px) { .gallery-full { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
@media (min-width: 1100px) { .gallery-full { grid-template-columns: repeat(4, 1fr); gap: 20px; } }
.gallery-full .gallery-item {
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  background: var(--sand);
  cursor: pointer;
}
.gallery-full .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.gallery-full .gallery-item:hover img { transform: scale(1.05); }

/* Gallery filter chips */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 48px;
}
.gallery-filter {
  padding: 10px 20px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  transition: all .3s var(--ease-out);
}
.gallery-filter:hover { border-color: var(--olive); color: var(--ink); }
.gallery-filter.active {
  background: var(--forest);
  color: var(--ivory);
  border-color: var(--forest);
}

/* ---------- FAQ Accordion ---------- */
.faq {
  max-width: 880px;
  margin: 0 auto;
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
  cursor: pointer;
}
.faq details[open] { padding-bottom: 32px; }
.faq summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--display);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: color .2s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--forest); }
.faq summary::after {
  content: '+';
  font-family: var(--body);
  font-size: 28px;
  font-weight: 300;
  color: var(--forest);
  flex-shrink: 0;
  transition: transform .3s var(--ease-out);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq-answer {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 700px;
}

/* ---------- Contact form & info ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1.1fr 1fr; gap: 80px; } }

.contact-info-block + .contact-info-block { margin-top: 36px; }
.contact-info-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 500;
  margin-bottom: 14px;
}
.contact-info-value {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.4;
}
.contact-info-value a { color: inherit; transition: color .2s; }
.contact-info-value a:hover { color: var(--forest); }
.contact-info-value-sub {
  font-family: var(--body);
  font-size: 14px;
  color: var(--ink-soft);
  margin-top: 4px;
}

/* Form */
.contact-form {
  display: grid;
  gap: 22px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 600px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-field { position: relative; }
.form-field label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 500;
  margin-bottom: 8px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  font-family: var(--body);
  color: var(--ink);
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: border-color .2s, background .2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--forest);
  background: #fff;
}
.form-field textarea {
  min-height: 140px;
  resize: vertical;
  font-family: var(--body);
  line-height: 1.6;
}
.form-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237F7F5D' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
  padding-right: 40px;
}

.form-submit {
  margin-top: 12px;
  align-self: flex-start;
  border: none;
  cursor: pointer;
}
.form-note {
  font-size: 12.5px;
  color: var(--ink-soft);
  font-style: italic;
}

/* Map embed */
.map-block {
  margin-top: 0;
  background: var(--sand);
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.map-block iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============ GALLERY FILTERS (page galerie) ============ */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 0 0 48px;
  padding-top: 24px;
  scroll-margin-top: 100px;
}
.gallery-filter {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(58, 96, 75, 0.22);
  border-radius: 999px;
  padding: 9px 22px;
  font-family: var(--body);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background-color 220ms ease, color 220ms ease, border-color 220ms ease;
}
.gallery-filter:hover {
  border-color: var(--forest);
  color: var(--forest);
}
.gallery-filter.is-active {
  background: var(--forest);
  border-color: var(--forest);
  color: #fff;
}
@media (max-width: 640px) {
  .gallery-filter { padding: 8px 16px; font-size: 12.5px; }
  .gallery-filters { gap: 8px; margin-bottom: 36px; }
}

/* Hide gallery items not matching the active filter */
.gallery-full .gallery-item.is-hidden {
  display: none;
}

/* ============================================================
   HERO CAROUSEL — Romantique luxe (page d'accueil uniquement)
   ============================================================ */

.hero-carousel {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--emerald-deep);
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

/* Slides en fond */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s var(--ease-out);
  transform: scale(1.05);
  animation: kenBurns 12s ease-in-out infinite alternate;
}
.hero-slide.active {
  opacity: 1;
  z-index: 2;
}
@keyframes kenBurns {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}

/* Overlay émeraude/doré sur l'image */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(135deg,
      rgba(15, 68, 56, 0.78) 0%,
      rgba(15, 68, 56, 0.55) 45%,
      rgba(15, 68, 56, 0.30) 100%),
    radial-gradient(ellipse at top right,
      rgba(201, 169, 97, 0.20) 0%,
      transparent 50%);
}

/* Contenu hero */
.hero-carousel .hero-content {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 140px var(--gutter) 100px;
  color: white;
}

.hero-carousel .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp .8s var(--ease-out) .2s forwards;
}
.hero-carousel .hero-eyebrow::before,
.hero-carousel .hero-eyebrow::after {
  content: '';
  width: 28px; height: 1px;
  background: var(--gold);
}

.hero-carousel .hero-title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(42px, 6.5vw, 88px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 28px;
  max-width: 780px;
  color: white;
  opacity: 0;
  animation: fadeUp .9s var(--ease-out) .4s forwards;
}
.hero-carousel .hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-bright);
  display: block;
}

.hero-carousel .hero-lede {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.6;
  max-width: 540px;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 36px;
  font-weight: 400;
  opacity: 0;
  animation: fadeUp .9s var(--ease-out) .6s forwards;
}

/* === BADGES === */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp .9s var(--ease-out) .8s forwards;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px 10px 14px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(201, 169, 97, 0.45);
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 600;
  color: white;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  letter-spacing: 0.01em;
  transition: all .3s var(--ease-out);
}
.badge:hover {
  background: rgba(201, 169, 97, 0.18);
  border-color: var(--gold-bright);
  transform: translateY(-2px);
}
.badge-icon {
  width: 18px; height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-bright);
}
.badge-pulse {
  animation: pulseBadge 2.6s ease-in-out infinite;
  background: linear-gradient(135deg, var(--gold), var(--copper));
  color: var(--ink);
  border: none;
  font-weight: 700;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
}
.badge-pulse .badge-icon { color: var(--ink); }
@keyframes pulseBadge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 169, 97, 0.55); }
  50%      { box-shadow: 0 0 0 12px rgba(201, 169, 97, 0); }
}

/* === BOUTONS HERO PRIMARY === */
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  opacity: 0;
  animation: fadeUp .9s var(--ease-out) 1s forwards;
}
.btn-primary-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 32px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--copper) 100%);
  color: var(--ink);
  border: none;
  border-radius: 100px;
  font-family: var(--body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all .4s var(--ease-out);
  box-shadow: var(--shadow-gold), 0 2px 6px rgba(0,0,0,0.15);
  text-align: center;
}
.btn-primary-hero::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transition: left .8s var(--ease-out);
}
.btn-primary-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(201, 169, 97, 0.55), 0 3px 8px rgba(0,0,0,0.2);
}
.btn-primary-hero:hover::before { left: 100%; }
.btn-primary-hero .arrow { transition: transform .3s; }
.btn-primary-hero:hover .arrow { transform: translateX(4px); }

.btn-ghost-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 28px;
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all .3s;
  background: transparent;
  cursor: pointer;
}
.btn-ghost-hero:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: var(--gold-bright);
  color: var(--gold-bright);
}

/* === CAROUSEL DOTS === */
.carousel-dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 10px;
}
.carousel-dot {
  width: 28px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  transition: all .3s;
  padding: 0;
}
.carousel-dot:hover { background: rgba(255, 255, 255, 0.6); }
.carousel-dot.active {
  background: var(--gold-bright);
  width: 44px;
}

/* === STATS row === */
.hero-stats {
  position: absolute;
  bottom: 48px;
  left: var(--gutter);
  z-index: 5;
  display: flex;
  gap: 36px;
  color: white;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 1.2s forwards;
}
.hero-stats .stat strong {
  display: block;
  font-family: var(--display);
  font-size: 32px;
  font-weight: 400;
  color: var(--gold-bright);
  line-height: 1;
}
.hero-stats .stat span {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 6px;
  display: block;
}

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

/* Header transparent au-dessus du carousel */
.has-hero-carousel .site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  background: transparent;
  border-bottom: none;
  z-index: 50;
}
.has-hero-carousel .site-header.scrolled {
  position: fixed;
  background: rgba(15, 68, 56, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 169, 97, 0.2);
}
.has-hero-carousel .site-header .nav-links a {
  color: white;
}
.has-hero-carousel .site-header .nav-links a:hover,
.has-hero-carousel .site-header .nav-links a.active {
  color: var(--gold-bright);
}
/* Le logo colibri est en couleur sur fond transparent — pas de filter nécessaire.
   Sur le carousel, on lui ajoute juste une légère ombre pour qu'il se détache du fond. */
.has-hero-carousel .site-header .brand img {
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
}

/* Mobile responsive */
@media (max-width: 999px) {
  .hero-carousel .hero-content { padding: 110px var(--gutter) 80px; }
  .hero-stats {
    position: static;
    margin-top: 32px;
    gap: 24px;
    flex-wrap: wrap;
    padding: 0 var(--gutter);
  }
  .hero-stats .stat strong { font-size: 26px; }
  .carousel-dots { bottom: 16px; }
  .badge { font-size: 12px; padding: 8px 14px 8px 12px; }
}

@media (max-width: 640px) {
  .hero-carousel { min-height: 92vh; }
  .hero-carousel .hero-title { font-size: 38px; line-height: 1.08; }
  .hero-carousel .hero-lede { font-size: 15px; }
  .btn-primary-hero, .btn-ghost-hero { padding: 14px 22px; font-size: 14px; width: 100%; justify-content: center; }
  .hero-actions { flex-direction: column; align-items: stretch; width: 100%; }
  .hero-carousel .hero-eyebrow::before, .hero-carousel .hero-eyebrow::after { width: 16px; }
  .hero-carousel .hero-eyebrow { font-size: 10px; gap: 8px; }
  .hero-stats { gap: 18px; }
}


/* ============================================================
   v16 — Plus de chaleur sur les sections claires
   ============================================================ */

/* Body : fond crème chaud + texture émeraude très subtile */
body {
  background-color: var(--cream-warm);
  background-image: 
    radial-gradient(ellipse at top right, rgba(201, 169, 97, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(15, 68, 56, 0.04) 0%, transparent 50%);
  background-attachment: fixed;
}

/* Sections claires (par défaut sur fond cream-warm) : ajouter un séparateur doré subtil */
section {
  position: relative;
}

/* Section-tan (les sections alternées comme "Trois douceurs", "Tout est prévu") */
.section-tan {
  background: var(--cream-deep);
  position: relative;
  overflow: hidden;
}
.section-tan::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(201, 169, 97, 0.3) 30%, 
    rgba(201, 169, 97, 0.5) 50%,
    rgba(201, 169, 97, 0.3) 70%, 
    transparent 100%);
}
.section-tan::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(201, 169, 97, 0.3) 30%, 
    rgba(201, 169, 97, 0.5) 50%,
    rgba(201, 169, 97, 0.3) 70%, 
    transparent 100%);
}
.section-tan > * { position: relative; z-index: 1; }

/* Eyebrows : émeraude au lieu de doré pâle pour mieux ressortir sur fond clair */
.eyebrow {
  color: var(--emerald-deep);
  font-weight: 600;
}
.eyebrow::before { background: var(--gold); }

/* Numérotations type "— 01" : doré franc au lieu de pâle */
.feature-num,
.ambiance-num,
.equip-cat-num {
  color: var(--gold-deep);
  font-weight: 500;
  font-style: italic;
}

/* Bouton ghost : plus visible avec un peu de fond doré au repos */
.btn--ghost {
  border-color: var(--gold);
  color: var(--emerald-deep);
  background: rgba(201, 169, 97, 0.08);
}
.btn--ghost:hover {
  background: var(--emerald-deep);
  color: var(--cream-warm);
  border-color: var(--emerald-deep);
}

/* Cartes de la galerie d'aperçu : bordure dorée au survol */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: 4px;
  transition: border-color .3s;
  pointer-events: none;
  z-index: 2;
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -12px rgba(15, 68, 56, 0.35);
}
.gallery-item:hover::after {
  border-color: var(--gold);
}

/* Section split (chambre + jardin) : ajouter une note dorée subtile en arrière-plan du texte */
.split-text {
  position: relative;
}
.split-text::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.18) 0%, transparent 70%);
  z-index: -1;
  border-radius: 50%;
}

/* Témoignages (testimonials) : carte avec accent doré */
.testimonial {
  background: rgba(255, 255, 255, 0.6);
  padding: 38px 32px;
  border-radius: 4px;
  border-left: 3px solid var(--gold);
  box-shadow: 0 8px 24px -12px rgba(15, 68, 56, 0.18);
  transition: transform .3s var(--ease-out), box-shadow .3s;
}
.testimonial:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px -10px rgba(15, 68, 56, 0.25);
}
.testimonial-stars svg { fill: var(--gold); }

/* Étoiles dans tout le site (pas que témoignages) en doré au lieu de jaune */
svg polygon[points*="12,2"] { fill: var(--gold); }

/* Sections événements : la section deep émeraude reste très contrastée — on l'enrichit */
.section-deep, .events-section {
  background: linear-gradient(135deg, 
    var(--emerald-deep) 0%, 
    #133e36 50%,
    var(--emerald-deep) 100%);
}

/* Ambiances tags (pills sur événements) : un peu plus dorées au hover */
.ambiance-tags li {
  border-color: rgba(201, 169, 97, 0.4);
  transition: all .3s;
}
.ambiance-tags li:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

/* Page hero (les pages internes) : fond crème + watermark plus présent */
.page-hero {
  background: var(--cream-warm);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at right, 
    rgba(201, 169, 97, 0.10) 0%, 
    transparent 65%);
  pointer-events: none;
}
.page-hero-watermark {
  color: rgba(15, 68, 56, 0.06);
  font-weight: 300;
}

/* Hero-tag (pills sur images comme "Studio · 2 voyageurs") : doré */
.hero-tag {
  background: linear-gradient(135deg, var(--gold), var(--copper));
  color: var(--ink);
  font-weight: 600;
  border: none;
  box-shadow: 0 4px 14px -4px rgba(201, 169, 97, 0.5);
}

/* Steps (étapes "Comment ça marche") : numéros en doré gros */
.step h3 {
  color: var(--emerald-deep);
}
.step::before {
  color: var(--gold);
}

/* Packages cards : plus chaleureux */
.package {
  background: var(--cream-warm);
  border-color: rgba(201, 169, 97, 0.25);
  transition: all .3s var(--ease-out);
}
.package:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 14px 30px -10px rgba(201, 169, 97, 0.35);
}
.package--featured {
  background: linear-gradient(135deg, var(--emerald-deep) 0%, #133e36 100%);
  border-color: var(--gold);
  position: relative;
  overflow: hidden;
  color: white;
  box-shadow: 0 18px 45px -15px rgba(15, 68, 56, 0.5);
}
.package--featured::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.22) 0%, transparent 70%);
  pointer-events: none;
}
/* Surcharger les couleurs internes du package featured pour bien ressortir */
.package--featured h3 { color: white; }
.package--featured h3 .italic { color: var(--gold-bright); }
.package--featured .package-tagline { color: rgba(255, 255, 255, 0.85); }
.package--featured .package-price { color: white; border-bottom-color: rgba(201, 169, 97, 0.35); }
.package--featured .package-price strong { color: var(--gold-bright); }
.package--featured .package-features li { color: rgba(255, 255, 255, 0.92); }
.package--featured .package-features li::before { background: var(--gold-bright); }
.package--featured .package-flag { color: var(--gold-bright); }
.package--featured:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 55px -15px rgba(15, 68, 56, 0.6);
}

/* Map block : bordure dorée subtile */
.map-block {
  border: 1px solid rgba(201, 169, 97, 0.3);
  box-shadow: var(--shadow-soft);
}

/* ============================================================
   v18 — Boutons WhatsApp
   ============================================================ */

/* Bouton WhatsApp dans le menu mobile : vert WhatsApp pour ressortir */
.btn--whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
  color: white !important;
  border: none !important;
  font-weight: 600;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  text-transform: uppercase;
  font-size: 13px;
  box-shadow: 0 8px 24px -6px rgba(37, 211, 102, 0.45);
  transition: all .35s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.btn--whatsapp::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transition: left .8s var(--ease-out);
  pointer-events: none;
}
.btn--whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -6px rgba(37, 211, 102, 0.6);
}
.btn--whatsapp:hover::before { left: 100%; }
.btn--whatsapp svg { flex-shrink: 0; }
.btn--whatsapp .arrow { display: inline-flex; }
.btn--whatsapp:hover .arrow svg { transform: translateX(3px); transition: transform .25s; }

/* Variante grande taille (booking band) */
.btn--lg {
  padding: 17px 36px;
  font-size: 14px;
}

/* Bouton WhatsApp dans le hero : 
   On garde le style doré du btn-primary-hero (cohérence luxe)
   On ajoute juste l'icône WhatsApp à gauche pour signaler le canal */
.btn-primary-hero--whatsapp {
  /* hérite de .btn-primary-hero (gradient doré + shimmer)
     juste l'icône WhatsApp identifie clairement le canal */
}
.btn-primary-hero--whatsapp svg:first-of-type {
  flex-shrink: 0;
}

/* Sur mobile : le bouton hero passe full-width */
@media (max-width: 640px) {
  .btn--whatsapp { width: 100%; justify-content: center; }
}

/* Quand le btn--whatsapp est dans le menu mobile : un peu plus visible */
.mobile-menu .btn--whatsapp {
  padding: 16px 32px;
  font-size: 14px;
  margin-top: 16px;
  display: inline-flex;
  width: auto;
}

/* ============================================================
   v21 — Modale de réservation
   ============================================================ */

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.booking-modal.is-open {
  display: flex;
  animation: modalFadeIn .3s var(--ease-out);
}
.booking-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 68, 56, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.booking-modal-content {
  position: relative;
  background: var(--cream-warm);
  border-radius: 16px;
  max-width: 620px;
  width: 100%;
  margin: 40px auto;
  padding: 40px 36px 32px;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.5);
  animation: modalSlide .35s var(--ease-out);
  border: 1px solid rgba(201, 169, 97, 0.25);
}
.booking-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: transparent;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ink-soft);
  transition: all .25s;
}
.booking-modal-close:hover {
  background: rgba(15, 68, 56, 0.08);
  color: var(--emerald-deep);
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes modalSlide {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.booking-modal-header {
  margin-bottom: 24px;
  padding-right: 40px;
}
.booking-modal-header h2 {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 12px;
}
.booking-modal-header h2 .italic {
  font-style: italic;
  color: var(--emerald-deep);
  font-weight: 300;
}
.booking-modal-subtitle {
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.booking-form fieldset.booking-type {
  border: none;
  padding: 0;
  margin: 0;
}
.booking-form legend {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--emerald-deep);
  font-weight: 600;
  margin-bottom: 12px;
  padding: 0;
}
.booking-type {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.booking-type-option {
  cursor: pointer;
  display: block;
}
.booking-type-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.booking-type-card {
  display: flex;
  flex-direction: column;
  padding: 14px 18px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  transition: all .25s;
  background: white;
}
.booking-type-card strong {
  font-weight: 700;
  color: var(--ink);
  font-size: 15px;
}
.booking-type-card em {
  font-style: italic;
  color: var(--ink-soft);
  font-size: 13px;
  margin-top: 2px;
}
.booking-type-option input[type="radio"]:checked + .booking-type-card {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.10), rgba(201, 169, 97, 0.04));
  box-shadow: 0 4px 16px -8px rgba(201, 169, 97, 0.5);
}
.booking-type-option input[type="radio"]:focus-visible + .booking-type-card {
  outline: 2px solid var(--gold-bright);
  outline-offset: 2px;
}

@media (min-width: 500px) {
  .booking-type { flex-direction: row; }
  .booking-type-option { flex: 1; }
  .booking-type-card { height: 100%; }
}

.booking-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 500px) {
  .booking-row { grid-template-columns: 1fr 1fr; }
}

.booking-field {
  display: flex;
  flex-direction: column;
}
.booking-field label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--emerald-deep);
  font-weight: 600;
  margin-bottom: 6px;
}
.booking-field input,
.booking-field textarea {
  background: white;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: var(--body);
  font-size: 14.5px;
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.booking-field input:focus,
.booking-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.15);
}
.booking-field textarea {
  resize: vertical;
  min-height: 80px;
}
.booking-field input:invalid:not(:placeholder-shown) {
  border-color: rgba(220, 70, 70, 0.4);
}

.booking-form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  border: none;
  border-radius: 999px;
  font-family: var(--body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  margin-top: 10px;
  position: relative;
  overflow: hidden;
  transition: all .35s var(--ease-out);
  box-shadow: 0 8px 24px -6px rgba(37, 211, 102, 0.5);
}
.booking-form-submit::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transition: left .8s var(--ease-out);
  pointer-events: none;
}
.booking-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -6px rgba(37, 211, 102, 0.7);
}
.booking-form-submit:hover::before { left: 100%; }
.booking-form-submit:active {
  transform: translateY(0);
}

.booking-required-note {
  font-size: 11.5px;
  color: var(--ink-soft);
  text-align: center;
  margin: 8px 0 0;
  font-style: italic;
}

/* Désactiver le scroll du body quand la modale est ouverte */
body.modal-open {
  overflow: hidden;
}

/* Mobile responsive */
@media (max-width: 500px) {
  .booking-modal-content {
    padding: 32px 22px 24px;
    margin: 12px auto;
    border-radius: 12px;
  }
  .booking-modal-header { padding-right: 32px; }
  .booking-modal-header h2 { font-size: 26px; }
  .booking-form-submit { font-size: 13.5px; padding: 14px 22px; }
}

/* ============================================================
   v26 — Section Coupe du Monde 2026 (édition spéciale)
   ============================================================ */

.worldcup-section {
  background:
    radial-gradient(ellipse at top right, rgba(201, 169, 97, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(201, 169, 97, 0.10) 0%, transparent 50%),
    linear-gradient(135deg, #0F4438 0%, #133e36 50%, #0F4438 100%);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.worldcup-section .container {
  position: relative;
  z-index: 1;
}

.wc-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* Header */
.wc-header {
  text-align: center;
  margin-bottom: 28px;
}
.wc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #E5C580;
  margin-bottom: 14px;
}
.wc-eyebrow::before,
.wc-eyebrow::after {
  content: '';
  display: inline-block;
  width: 50px;
  height: 1px;
  background: #C9A961;
}
.wc-subhead {
  font-family: var(--display, 'Fraunces', serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.8vw, 36px);
  color: white;
  margin: 0;
}

/* Titre */
.wc-title {
  text-align: center;
  margin-bottom: 24px;
}
.wc-title h2 {
  font-family: var(--display, 'Fraunces', serif);
  font-weight: 300;
  font-size: clamp(60px, 10vw, 140px);
  line-height: 0.92;
  color: white;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.wc-title h2 .italic {
  font-style: italic;
  color: #E5C580;
  font-weight: 300;
  display: block;
}
.wc-dates {
  font-family: var(--display, 'Fraunces', serif);
  font-style: italic;
  font-size: clamp(18px, 2vw, 26px);
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}
.wc-dates span {
  font-style: normal;
  margin-right: 8px;
}

/* Pitch */
.wc-pitch {
  text-align: center;
  font-family: var(--display, 'Fraunces', serif);
  font-style: italic;
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
  max-width: 700px;
  margin: 0 auto 36px;
}

/* Drapeaux */
.wc-flags {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.wc-flag {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #C9A961;
  overflow: hidden;
  box-shadow: 0 6px 16px -4px rgba(0,0,0,0.4);
  flex-shrink: 0;
}
.wc-flag svg { display: block; width: 100%; height: 100%; }

/* Offres */
.wc-offers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 36px;
}
.wc-offer {
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(201,169,97,0.4);
  border-radius: 14px;
  padding: 32px 28px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
}
.wc-offer--featured {
  background: linear-gradient(180deg, rgba(201,169,97,0.18) 0%, rgba(201,169,97,0.05) 100%);
  border-color: #C9A961;
  box-shadow: 0 14px 40px -8px rgba(201,169,97,0.4);
}
.wc-offer-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #C9A961, #B87B4A);
  color: #1A2823;
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 12px -2px rgba(0,0,0,0.3);
}
.wc-offer-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #E5C580;
  font-weight: 800;
  margin-bottom: 18px;
}
.wc-offer-title {
  font-family: var(--display, 'Fraunces', serif);
  font-weight: 300;
  font-size: clamp(28px, 3.5vw, 38px);
  line-height: 1.1;
  color: white;
  margin-bottom: 20px;
}
.wc-offer-title em {
  font-style: italic;
  color: #E5C580;
}
.wc-offer-price {
  font-family: var(--display, 'Fraunces', serif);
  font-weight: 400;
  font-size: clamp(48px, 5vw, 64px);
  color: #E5C580;
  line-height: 1;
  margin-bottom: 4px;
}
.wc-offer-detail {
  font-family: var(--display, 'Fraunces', serif);
  font-style: italic;
  font-size: clamp(14px, 1.4vw, 17px);
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
}
.wc-offer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.55;
  color: white;
  flex: 1;
}
.wc-offer-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-weight: 500;
}
.wc-offer-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #C9A961;
}

/* Bandeau bonus */
.wc-bonus {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(135deg, rgba(201,169,97,0.22), rgba(184,123,74,0.28));
  border: 2px solid #C9A961;
  border-radius: 100px;
  padding: 14px 32px;
  color: white;
  font-family: var(--display, 'Fraunces', serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(16px, 1.8vw, 22px);
  margin: 0 auto 36px;
  max-width: fit-content;
  box-shadow: 0 10px 30px -6px rgba(201,169,97,0.35);
}
.wc-bonus-ico {
  font-style: normal;
  font-size: 1.3em;
}

/* CTA */
.wc-cta {
  text-align: center;
}

/* Mobile responsive */
@media (max-width: 720px) {
  .worldcup-section { padding: 56px 0; }
  .wc-offers { grid-template-columns: 1fr; gap: 28px; }
  .wc-flags { gap: 12px; }
  .wc-flag { width: 40px; height: 40px; }
  .wc-bonus {
    flex-direction: row;
    text-align: center;
    padding: 12px 22px;
    gap: 10px;
  }
  .wc-bonus-ico { font-size: 1.1em; }
}

/* ============================================================
   v27 — Pop-up Coupe du Monde 2026
   ============================================================ */

.wc-popup {
  position: fixed;
  inset: 0;
  z-index: 9998; /* sous .booking-modal (9999) pour que clic réserver soit prioritaire */
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.wc-popup.is-open {
  display: flex;
  animation: wcPopupFadeIn .35s var(--ease-out);
}
.wc-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 68, 56, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.wc-popup-content {
  position: relative;
  background:
    radial-gradient(ellipse at top right, rgba(201, 169, 97, 0.20) 0%, transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(201, 169, 97, 0.12) 0%, transparent 50%),
    linear-gradient(135deg, #0F4438 0%, #133e36 50%, #0F4438 100%);
  border-radius: 20px;
  max-width: 880px;
  width: 100%;
  margin: 40px auto;
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.6);
  animation: wcPopupSlide .4s var(--ease-out);
  border: 1px solid rgba(201, 169, 97, 0.35);
  overflow: hidden;
}
.wc-popup-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(201, 169, 97, 0.3);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  z-index: 2;
  transition: all .25s;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.wc-popup-close:hover {
  background: rgba(201, 169, 97, 0.25);
  border-color: #C9A961;
  transform: rotate(90deg);
}
.wc-popup-inner {
  padding: 56px 44px 44px;
}

@keyframes wcPopupFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes wcPopupSlide {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Dans la pop-up, on neutralise le fond de la section clonée
   (le fond est déjà sur .wc-popup-content) */
.wc-popup-inner .worldcup-section {
  background: transparent;
  padding: 0;
}
.wc-popup-inner .worldcup-section .container {
  padding: 0;
  max-width: 100%;
}
.wc-popup-inner .wc-inner {
  max-width: 100%;
}

/* Ajustements de taille pour la pop-up (un peu plus compact que la section pleine page) */
.wc-popup-inner .wc-title h2 {
  font-size: clamp(48px, 8vw, 86px);
}
.wc-popup-inner .wc-pitch {
  font-size: clamp(15px, 1.6vw, 19px);
  margin-bottom: 28px;
}
.wc-popup-inner .wc-flags {
  margin-bottom: 32px;
}
.wc-popup-inner .wc-flag {
  width: 42px;
  height: 42px;
}
.wc-popup-inner .wc-offers {
  margin-bottom: 26px;
  gap: 18px;
}
.wc-popup-inner .wc-offer {
  padding: 26px 22px;
}
.wc-popup-inner .wc-offer-title {
  font-size: clamp(26px, 3vw, 32px);
  margin-bottom: 16px;
}
.wc-popup-inner .wc-offer-price {
  font-size: clamp(42px, 4.5vw, 56px);
}
.wc-popup-inner .wc-offer-detail {
  font-size: clamp(13px, 1.3vw, 15px);
  margin-bottom: 20px;
}
.wc-popup-inner .wc-offer-list {
  font-size: clamp(13px, 1.3vw, 15px);
}
.wc-popup-inner .wc-bonus {
  padding: 12px 26px;
  font-size: clamp(15px, 1.7vw, 19px);
  margin-bottom: 28px;
}
.wc-popup-inner .wc-header {
  margin-bottom: 20px;
  padding-inline: 50px; /* symétrique : garde le centrage tout en évitant la croix */
}

/* Mobile responsive */
@media (max-width: 720px) {
  .wc-popup { padding: 12px; }
  .wc-popup-content {
    margin: 12px auto;
    border-radius: 14px;
  }
  .wc-popup-inner {
    padding: 56px 22px 28px;
  }
  .wc-popup-close {
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
  }
  .wc-popup-inner .wc-offers {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .wc-popup-inner .wc-flag { width: 36px; height: 36px; }
}

/* ============================================================
   v28 — Modale : Add-on logement (case à cocher conditionnelle)
   ============================================================ */

.booking-addon {
  margin-top: 14px;
  animation: bookingAddonSlideIn .35s var(--ease-out);
}
.booking-addon[hidden] {
  display: none !important;
}

@keyframes bookingAddonSlideIn {
  from { opacity: 0; transform: translateY(-8px); max-height: 0; }
  to   { opacity: 1; transform: translateY(0); max-height: 200px; }
}

.booking-addon-option {
  cursor: pointer;
  display: block;
}
.booking-addon-option input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.booking-addon-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border: 1.5px dashed var(--gold);
  border-radius: 10px;
  background: rgba(201, 169, 97, 0.03);
  transition: all .25s var(--ease-out);
}
.booking-addon-card:hover {
  background: rgba(201, 169, 97, 0.07);
}

.booking-addon-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  border: 2px solid var(--gold);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all .25s var(--ease-out);
}
.booking-addon-check svg {
  opacity: 0;
  transform: scale(0.5);
  transition: opacity .2s, transform .2s var(--ease-out);
}

/* État coché */
.booking-addon-option input[type="checkbox"]:checked ~ .booking-addon-card {
  border-style: solid;
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.15), rgba(201, 169, 97, 0.05));
  box-shadow: 0 4px 14px -6px rgba(201, 169, 97, 0.5);
}
.booking-addon-option input[type="checkbox"]:checked ~ .booking-addon-card .booking-addon-check {
  background: linear-gradient(135deg, var(--gold), #B87B4A);
  border-color: var(--gold);
}
.booking-addon-option input[type="checkbox"]:checked ~ .booking-addon-card .booking-addon-check svg {
  opacity: 1;
  transform: scale(1);
}

/* Focus accessible */
.booking-addon-option input[type="checkbox"]:focus-visible ~ .booking-addon-card {
  outline: 2px solid var(--gold-bright, var(--gold));
  outline-offset: 2px;
}

.booking-addon-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}
.booking-addon-text strong {
  color: var(--ink);
  font-weight: 600;
  font-size: 14.5px;
}
.booking-addon-text em {
  color: var(--ink-soft);
  font-style: italic;
  font-size: 12.5px;
}
