/* ============================
   RESET & BASE
============================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ============================
   DESIGN TOKENS
============================ */
:root {
  --fond:        #FAF7F2;
  --fond-alt:    #F0EBE1;
  --fond-teal:   #E4EFF4;
  --teal:        #1B5266;
  --teal-mid:    #256480;
  --teal-light:  #3EB8E8;
  --ambre:       #E8A838;
  --ambre-bg:    #FDF3DC;
  --vert:        #4A7C5E;
  --vert-dark:   #2C5F3E;
  --texte:       #1C2B35;
  --texte-mid:   #4A5C68;
  --terra:       #C95F3A;
  --blanc:       #FFFFFF;
  --font-titre:  'Fraunces', Georgia, serif;
  --font-corps:  'DM Sans', system-ui, sans-serif;
  --shadow-sm:   0 2px 8px rgba(28,43,53,0.08);
  --shadow-md:   0 6px 28px rgba(28,43,53,0.13);
  --shadow-lg:   0 12px 56px rgba(28,43,53,0.18);
  --r-sm: 8px; --r-md: 16px; --r-lg: 24px; --r-pill: 100px;
  --tr: 0.2s ease; --tr-slow: 0.4s ease;
  --max: 1160px;
}
body {
  font-family: var(--font-corps);
  color: var(--texte);
  background: var(--blanc);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--font-titre); line-height: 1.15; font-weight: 700; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

/* ============================
   UTILITIES
============================ */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-corps);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--teal);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 3px;
  background: var(--ambre);
  border-radius: 2px;
  flex-shrink: 0;
}

/* ============================
   BUTTONS
============================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-pill);
  font-family: var(--font-corps);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all var(--tr);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary { background: var(--teal); color: var(--blanc); }
.btn-primary:hover { background: var(--teal-mid); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-secondary { background: transparent; color: var(--teal); border: 2px solid var(--teal); }
.btn-secondary:hover { background: var(--teal); color: var(--blanc); }
.btn-outline { background: transparent; color: var(--teal); border: 2px solid var(--teal); padding: 10px 22px; font-size: 0.88rem; }
.btn-outline:hover { background: var(--teal); color: var(--blanc); }
.btn-ambre { background: var(--ambre); color: var(--texte); }
.btn-ambre:hover { background: #d09530; transform: translateY(-1px); box-shadow: var(--shadow-md); }

/* ============================
   NAVIGATION
============================ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(250,247,242,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(28,43,53,0.07);
  transition: box-shadow var(--tr);
}
#nav.scrolled { box-shadow: var(--shadow-sm); }
.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 66px;
  gap: 24px;
}
.nav-brand {
  font-family: var(--font-titre);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--teal);
  white-space: nowrap;
}
.nav-brand em { font-style: italic; color: var(--ambre); }
.nav-brand svg { display: block; height: 44px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--texte-mid);
  padding: 7px 13px;
  border-radius: var(--r-sm);
  transition: color var(--tr), background var(--tr);
}
.nav-links a:hover { color: var(--teal); background: var(--fond-teal); }
.nav-right { display: flex; align-items: center; gap: 14px; justify-content: flex-end; }
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 3px;
  background: var(--fond-alt);
  border-radius: var(--r-pill);
  padding: 4px;
}
.lang-btn {
  padding: 4px 10px;
  border-radius: var(--r-pill);
  border: none;
  background: transparent;
  font-family: var(--font-corps);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--texte-mid);
  cursor: pointer;
  transition: all var(--tr);
  letter-spacing: 0.04em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.lang-btn.active, .lang-btn:hover { background: var(--teal); color: var(--blanc); }

/* ============================
   HERO
============================ */
#hero {
  padding-top: 66px;
  background: var(--fond);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  min-height: calc(100vh - 66px);
  padding: 72px 0 64px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ambre-bg);
  border: 1px solid rgba(232,168,56,0.35);
  color: var(--texte);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 24px;
}
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ambre); flex-shrink: 0; }
h1.hero-title {
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--teal);
  line-height: 1.08;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
h1.hero-title em { font-style: italic; color: var(--ambre); }
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--texte-mid);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 460px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blanc);
  border: 1px solid rgba(28,43,53,0.11);
  color: var(--texte);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 13px;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-sm);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero-visual { display: flex; align-items: center; justify-content: center; }
.hero-card {
  width: 100%;
  max-width: 500px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid rgba(28,43,53,0.07);
}

/* ============================
   CONCEPT
============================ */
#concept { padding: 100px 0; background: var(--blanc); }
.concept-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.concept-text h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  color: var(--texte);
  margin-bottom: 18px;
  margin-top: 8px;
}
.concept-text > p {
  font-size: 1.02rem;
  color: var(--texte-mid);
  line-height: 1.7;
  margin-bottom: 36px;
}
.feature-list { display: flex; flex-direction: column; gap: 22px; }
.feature-item { display: flex; align-items: flex-start; gap: 16px; }
.feature-icon-wrap {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: var(--fond-teal);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.3rem;
}
.feature-item-text strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--texte);
  margin-bottom: 2px;
}
.feature-item-text p { font-size: 0.9rem; color: var(--texte-mid); line-height: 1.55; }

.goutelette-card {
  background: var(--teal);
  border-radius: var(--r-lg);
  padding: 40px;
  color: var(--blanc);
  position: relative;
  overflow: hidden;
}
.goutelette-card::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: rgba(62,184,232,0.12);
}
.goutelette-card::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -30px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(232,168,56,0.10);
}
.goutelette-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal-light);
  margin-bottom: 16px;
}
.goutelette-tag::before { content: ''; width: 20px; height: 2px; background: var(--teal-light); border-radius: 2px; }
.goutelette-card h3 { font-size: 1.45rem; color: var(--blanc); margin-bottom: 14px; }
.goutelette-card p { font-size: 0.93rem; color: rgba(255,255,255,0.78); line-height: 1.65; position: relative; z-index: 1; }

/* ============================
   SPA CITY
============================ */
#spa-city { padding: 100px 0; background: var(--fond); }
.spa-header {
  text-align: center;
  margin-bottom: 56px;
  max-width: 600px;
  margin-left: auto; margin-right: auto;
}
.spa-header h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--texte); margin-bottom: 14px; }
.spa-header p { font-size: 1.02rem; color: var(--texte-mid); line-height: 1.65; }
.spa-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.spa-card {
  background: var(--blanc);
  border-radius: var(--r-md);
  padding: 30px 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(28,43,53,0.06);
  transition: all var(--tr-slow);
}
.spa-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.spa-icon-wrap {
  width: 50px; height: 50px;
  border-radius: var(--r-md);
  background: var(--fond-teal);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  font-size: 1.4rem;
}
.spa-card h3 { font-size: 1.02rem; color: var(--texte); margin-bottom: 10px; }
.spa-card p { font-size: 0.88rem; color: var(--texte-mid); line-height: 1.6; }

/* ============================
   TOURS
============================ */
#tours { padding: 100px 0; background: var(--blanc); }
.tours-header { text-align: center; margin-bottom: 56px; }
.tours-header h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--texte); margin-bottom: 14px; }
.tours-header > p { font-size: 1.02rem; color: var(--texte-mid); max-width: 520px; margin: 0 auto; line-height: 1.65; }
.tours-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tour-card {
  background: var(--fond);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(28,43,53,0.08);
  box-shadow: var(--shadow-sm);
  transition: all var(--tr-slow);
  display: flex; flex-direction: column;
}
.tour-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.tour-card-visual {
  height: 156px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.tour-card:nth-child(1) .tour-card-visual { background: var(--teal); }
.tour-card:nth-child(2) .tour-card-visual { background: var(--vert-dark); }
.tour-card:nth-child(3) .tour-card-visual { background: var(--vert); }
.tour-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--ambre);
  color: var(--texte);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: var(--r-pill);
}
.tour-card-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.tour-number {
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--texte-mid); margin-bottom: 6px;
}
.tour-card-body h3 { font-size: 1.2rem; color: var(--texte); margin-bottom: 10px; line-height: 1.3; }
.tour-card-body > p { font-size: 0.88rem; color: var(--texte-mid); line-height: 1.6; margin-bottom: 18px; flex: 1; }
.tour-meta { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.tour-meta-item {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 0.78rem; font-weight: 600; color: var(--texte-mid);
  background: var(--blanc);
  border: 1px solid rgba(28,43,53,0.1);
  padding: 4px 10px; border-radius: var(--r-pill);
}
.tour-price { font-size: 1.2rem; font-weight: 800; color: var(--teal); margin-bottom: 14px; }
.tour-price span { font-size: 0.82rem; font-weight: 500; color: var(--texte-mid); }
.tour-card-body .btn { margin-top: auto; }
.tour-teaser { margin-bottom: 16px; }
.tour-teaser-label {
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--texte-mid); margin-bottom: 6px;
  display: flex; align-items: center; gap: 6px;
}
.tour-teaser audio { width: 100%; height: 36px; border-radius: 50px; accent-color: var(--teal); }

/* ============================
   HOW IT WORKS
============================ */
#how { padding: 100px 0; background: var(--fond); }
.how-header { text-align: center; margin-bottom: 64px; }
.how-header h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--texte); }
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 40px; position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 39px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--ambre) 0, var(--ambre) 8px, transparent 8px, transparent 18px);
}
.step { text-align: center; }
.step-circle {
  width: 78px; height: 78px;
  border-radius: 50%;
  background: var(--blanc);
  border: 3px solid var(--ambre);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  position: relative; z-index: 1;
  box-shadow: var(--shadow-sm);
}
.step-num { font-family: var(--font-titre); font-size: 1.6rem; font-weight: 800; color: var(--teal); line-height: 1; }
.step-icon { font-size: 1.5rem; margin-bottom: 10px; display: block; }
.step h3 { font-size: 1.08rem; color: var(--texte); margin-bottom: 8px; }
.step p { font-size: 0.9rem; color: var(--texte-mid); line-height: 1.6; }
.step-note-wrap { display: flex; justify-content: center; margin-top: 52px; }
.step-note {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--blanc);
  border: 1px solid rgba(27,82,102,0.14);
  color: var(--teal);
  font-size: 0.92rem; font-weight: 600;
  padding: 13px 26px; border-radius: var(--r-pill);
  box-shadow: var(--shadow-sm);
}

/* ============================
   FAQ
============================ */
#faq { padding: 100px 0; background: var(--blanc); }
.faq-header { text-align: center; margin-bottom: 56px; }
.faq-header h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--texte); }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; max-width: 880px; margin: 0 auto; }
.faq-item {
  background: var(--fond);
  border-radius: var(--r-md);
  border: 1px solid rgba(28,43,53,0.08);
  overflow: hidden;
  transition: box-shadow var(--tr), border-color var(--tr);
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-item.open { border-color: var(--teal); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; width: 100%;
  padding: 20px 22px;
  background: transparent; border: none; cursor: pointer;
  font-family: var(--font-corps); font-size: 0.93rem; font-weight: 700;
  color: var(--texte); text-align: left;
  transition: color var(--tr);
}
.faq-question:hover { color: var(--teal); }
.faq-item.open .faq-question { color: var(--teal); }
.faq-icon {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--fond-teal); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1.1rem; font-weight: 700;
  transition: all var(--tr); line-height: 1;
}
.faq-item.open .faq-icon { background: var(--teal); color: var(--blanc); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner { padding: 0 22px 20px; font-size: 0.9rem; color: var(--texte-mid); line-height: 1.65; }

/* ============================
   COMING SOON
============================ */
#coming-soon { padding: 100px 0; background: var(--teal); color: var(--blanc); }
#coming-soon .section-label { color: var(--teal-light); display: flex; justify-content: center; }
#coming-soon .section-label::before { background: rgba(62,184,232,0.45); }
#coming-soon h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--blanc); margin-bottom: 20px; }
.coming-header { max-width: 600px; margin: 0 auto 56px; text-align: center; }
.coming-desc { font-size: 1.03rem; color: rgba(255,255,255,0.72); line-height: 1.7; margin-bottom: 0; }

/* Hub grid */
.hub-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 64px; }
.hub-card {
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.12);
  border-top: 3px solid rgba(255,255,255,0.18);
  border-radius: var(--r-lg); padding: 28px 28px 24px;
  display: flex; flex-direction: column; gap: 0;
}
.hub-card--active { border-top-color: var(--ambre); }
.hub-card--soon { border-top-color: rgba(255,255,255,0.4); }
.hub-card--teaser { border-top-color: rgba(255,255,255,0.15); opacity: 0.65; }
.hub-card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 16px; }
.hub-icon { font-size: 2rem; line-height: 1; }
.hub-badge {
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; padding: 5px 11px; border-radius: var(--r-pill);
  font-family: var(--font-corps);
}
.hub-badge--active { background: var(--ambre); color: #1a2c1a; }
.hub-badge--soon { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); border: 1px solid rgba(255,255,255,0.25); }
.hub-badge--teaser { background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.45); }
.hub-card h3 { font-size: 1.2rem; color: var(--blanc); font-family: var(--font-titre); line-height: 1.2; margin-bottom: 4px; }
.hub-card-sub { font-size: 0.72rem; color: rgba(255,255,255,0.4); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
.hub-card p { font-size: 0.9rem; color: rgba(255,255,255,0.68); line-height: 1.65; flex: 1; margin-bottom: 20px; }
.hub-cta {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 0.83rem; font-weight: 700; color: var(--ambre);
  text-decoration: none; border-bottom: 1px solid rgba(201,168,76,0.35);
  padding-bottom: 2px; transition: border-color var(--tr); width: fit-content;
}
.hub-cta:hover { border-color: var(--ambre); }
.hub-cta--disabled { color: rgba(255,255,255,0.28); border-color: transparent; cursor: default; font-weight: 400; font-style: italic; font-size: 0.83rem; }

/* Newsletter bloc */
.coming-newsletter { max-width: 480px; margin: 0 auto; text-align: center; }
.newsletter-label { font-size: 0.88rem; color: rgba(255,255,255,0.55); margin-bottom: 14px; }
.newsletter-form { display: flex; gap: 10px; max-width: 420px; margin: 0 auto 32px; }
.newsletter-form input {
  flex: 1; padding: 13px 18px;
  border: 2px solid rgba(255,255,255,0.18);
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.1);
  color: var(--blanc); font-family: var(--font-corps); font-size: 0.93rem;
  outline: none; transition: border-color var(--tr);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.38); }
.newsletter-form input:focus { border-color: var(--ambre); }
.city-rep-cta { font-size: 0.85rem; color: rgba(255,255,255,0.45); }
.city-rep-cta a { color: rgba(255,255,255,0.7); text-decoration: underline; margin-left: 4px; }
.city-rep-cta a:hover { color: var(--blanc); }

/* ============================
   FOOTER
============================ */
footer { background: var(--texte); color: rgba(255,255,255,0.65); padding: 64px 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-brand-name { font-family: var(--font-titre); font-size: 1.1rem; font-weight: 700; color: var(--blanc); margin-bottom: 12px; }
.footer-brand-name em { font-style: italic; color: var(--ambre); }
.footer-brand p { font-size: 0.87rem; line-height: 1.6; color: rgba(255,255,255,0.45); max-width: 300px; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.55);
  transition: background var(--tr), color var(--tr);
}
.footer-social a:hover { background: var(--ambre); color: var(--blanc); }
.footer-social svg { width: 18px; height: 18px; fill: currentColor; }
.footer-links h4 { font-family: var(--font-corps); font-size: 0.73rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.38); margin-bottom: 16px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: color var(--tr); }
.footer-links a:hover { color: var(--blanc); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.09); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: 0.8rem; }
.footer-legal { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-legal a { font-size: 0.8rem; color: rgba(255,255,255,0.35); transition: color var(--tr); }
.footer-legal a:hover { color: rgba(255,255,255,0.65); }

/* ============================
   COOKIE BANNER
============================ */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 2000;
  transform: translateY(calc(100% + 32px));
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
  padding: 16px;
}
#cookie-banner.show { transform: translateY(0); }
.cookie-inner {
  max-width: 960px; margin: 0 auto;
  background: var(--texte); border-radius: var(--r-lg);
  padding: 20px 24px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
}
.cookie-text { flex: 1; min-width: 240px; }
.cookie-text p { font-size: 0.84rem; color: rgba(255,255,255,0.65); line-height: 1.55; }
.cookie-text a { color: var(--teal-light); text-decoration: underline; }
.cookie-actions { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.btn-cookie-all { background: var(--ambre); color: var(--texte); padding: 10px 20px; border-radius: var(--r-pill); font-family: var(--font-corps); font-size: 0.84rem; font-weight: 700; cursor: pointer; border: none; transition: background var(--tr); white-space: nowrap; }
.btn-cookie-all:hover { background: #d09530; }
.btn-cookie-essential { background: transparent; color: rgba(255,255,255,0.55); padding: 10px 20px; border-radius: var(--r-pill); font-family: var(--font-corps); font-size: 0.84rem; font-weight: 700; cursor: pointer; border: 1px solid rgba(255,255,255,0.18); transition: all var(--tr); white-space: nowrap; }
.btn-cookie-essential:hover { background: rgba(255,255,255,0.08); color: var(--blanc); }
.btn-cookie-settings { background: none; border: none; color: rgba(255,255,255,0.32); font-family: var(--font-corps); font-size: 0.78rem; cursor: pointer; text-decoration: underline; white-space: nowrap; }
.btn-cookie-settings:hover { color: rgba(255,255,255,0.6); }

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; min-height: auto; padding: 60px 0 56px; }
  .hero-visual { display: none; }
  .concept-grid { grid-template-columns: 1fr; gap: 48px; }
  .spa-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
/* Section langue dans le menu burger — cachée sur desktop */
.nav-lang-mobile { display: none; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .tours-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .steps::before { display: none; }
  .faq-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .hub-grid { grid-template-columns: 1fr; }
  /* Logo plus grand sur mobile (sans augmenter la hauteur du header) */
  .nav-brand svg { height: 56px !important; }
  /* Cacher le sélecteur de langue dans le header, le déplacer dans le burger */
  .lang-switcher { display: none !important; }
  /* Hamburger : sombre quand fermé (fond header clair), blanc quand ouvert (fond menu sombre) */
  .nav-hamburger { color: #2c5454; }
  .nav-hamburger span { background: currentColor; }
  .nav-hamburger.open { color: #2c5454; }
  /* Layout mobile : logo gauche, hamburger droit */
  .nav-inner { grid-template-columns: auto 1fr; }
  /* Contraste du menu burger (fond sombre #1a3535 sur les pages index) */
  .nav-links.open > li > a { color: rgba(255,255,255,0.9); }
  .nav-links.open > li > a:hover { color: #ffffff; background: rgba(255,255,255,0.1); }
  .nav-links.open > li > a.active { color: #ffffff; }
  .nav-lang-mobile { display: block; width: 100%; }
  .nav-lang-divider { border-top: 1px solid rgba(255,255,255,0.15); margin: 8px 0 12px; }
  .nav-lang-list { display: flex; gap: 6px; flex-wrap: wrap; }
  .nav-links.open .nav-lang-mobile .lang-btn { color: rgba(255,255,255,0.75); background: rgba(255,255,255,0.08); }
  .nav-links.open .nav-lang-mobile .lang-btn.active,
  .nav-links.open .nav-lang-mobile .lang-btn:hover { background: var(--teal); color: var(--blanc); }
}
@media (max-width: 600px) {
  /* Nav : masquer le CTA (redondant avec le hero) pour éviter le débordement */
  .nav-right .btn { display: none; }
  .nav-inner { gap: 12px; }
  .nav-brand { font-size: 0.92rem; }
  .lang-btn { padding: 4px 8px; }

  .tours-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
}
@media (max-width: 400px) {
  .spa-grid { grid-template-columns: 1fr; }
}
