/* ============================================================
   NEKWETA SURF CAMP — Feuille de styles principale
   Site statique · Cloudflare Pages
   Design : Tropical & Aventure · Bourail, Nouvelle-Calédonie
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Lobster+Two:ital,wght@0,400;0,700;1,400&family=Nunito:wght@300;400;600;700;800;900&display=swap');

/* ---- Variables du design system ---- */
:root {
  /* Couleurs */
  --gold:         #E8A820;
  --gold-dark:    #C8880A;
  --gold-light:   #F5D27A;
  --green:        #2C6E49;
  --green-light:  #52B788;
  --ocean:        #1B90C0;
  --ocean-dark:   #0D6B94;
  --dark:         #0F1C2D;
  --dark-2:       #162436;
  --sand:         #FDF8EE;
  --sand-2:       #F5EDD8;
  --white:        #FFFFFF;
  --text:         #1A1A1A;
  --text-muted:   #666666;
  --text-light:   #F0EAD8;
  --coral:        #E8622A;

  /* Typographie */
  --font-display: 'Lobster Two', cursive;
  --font-body:    'Nunito', sans-serif;

  /* Tailles */
  --nav-h: 80px;

  /* Rayons */
  --r-sm:  8px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-xl:  40px;

  /* Ombres */
  --sh-sm: 0 2px 8px rgba(0,0,0,0.08);
  --sh-md: 0 8px 24px rgba(0,0,0,0.12);
  --sh-lg: 0 16px 48px rgba(0,0,0,0.18);
  --sh-xl: 0 32px 80px rgba(0,0,0,0.22);

  /* Transitions */
  --t: 0.3s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--sand);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

/* ---- Utilitaires ---- */
.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}
.section { padding: 96px 0; }
.section--dark { background: var(--dark); color: var(--text-light); }
.section--ocean { background: var(--ocean-dark); color: var(--text-light); }
.section--sand { background: var(--sand-2); }

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section--dark .eyebrow, .section--ocean .eyebrow { color: var(--gold-light); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 16px;
}
.section--dark .section-title,
.section--ocean .section-title { color: var(--white); }

.section-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 56px;
}
.section--dark .section-sub,
.section--ocean .section-sub { color: var(--text-light); opacity: 0.8; }

.section-header { margin-bottom: 56px; }
.section-header--center { text-align: center; }
.section-header--center .section-sub { margin-inline: auto; }

/* ---- Boutons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-xl);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform var(--t), box-shadow var(--t), background var(--t);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--gold);
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(232,168,32,0.35);
}
.btn--primary:hover {
  background: var(--gold-dark);
  box-shadow: 0 8px 32px rgba(232,168,32,0.5);
}
.btn--dark {
  background: var(--dark);
  color: var(--white);
}
.btn--dark:hover { background: var(--dark-2); }

.btn--outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}
.btn--outline:hover {
  background: var(--white);
  color: var(--dark);
}
.btn--outline-dark {
  background: transparent;
  border: 2px solid var(--dark);
  color: var(--dark);
}
.btn--outline-dark:hover {
  background: var(--dark);
  color: var(--white);
}
.btn--sm { padding: 10px 20px; font-size: 0.875rem; }
.btn--lg { padding: 18px 40px; font-size: 1.1rem; }

/* ---- Navigation ---- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--t), box-shadow var(--t);
}
.header.scrolled {
  background: var(--dark);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.header.opaque { background: var(--dark); }

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  padding: 0 5vw;
  gap: 24px;
}

.navbar__logo img {
  height: 52px;
  width: auto;
  transition: transform var(--t);
}
.navbar__logo:hover img { transform: scale(1.05); }

.navbar__links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.navbar__links a {
  display: block;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  border-radius: var(--r-sm);
  opacity: 0.85;
  transition: opacity var(--t), background var(--t);
}
.navbar__links a:hover,
.navbar__links a.active {
  opacity: 1;
  background: rgba(255,255,255,0.12);
}
.navbar__links a.active { color: var(--gold-light); }

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Sélecteur de langue */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  border-radius: var(--r-xl);
  border: 1.5px solid rgba(255,255,255,0.4);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  transition: border-color var(--t), background var(--t);
}
.lang-switch:hover {
  border-color: var(--gold);
  background: rgba(232,168,32,0.15);
}
.lang-switch__flag { font-size: 1rem; }

/* Menu hamburger mobile */
.navbar__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
}
.navbar__toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}
.navbar__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__toggle.open span:nth-child(2) { opacity: 0; }
.navbar__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15,28,45,0.55) 0%,
    rgba(15,28,45,0.35) 50%,
    rgba(15,28,45,0.7) 100%
  );
}
.hero--inner {
  min-height: 50vh;
  background-attachment: scroll;
}
.hero--inner::before {
  background: linear-gradient(to bottom, rgba(15,28,45,0.7), rgba(15,28,45,0.55));
}
.hero__content {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding: 160px 5vw 120px;
  max-width: 860px;
}
.hero__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(232,168,32,0.2);
  border: 1px solid rgba(232,168,32,0.4);
  padding: 6px 16px;
  border-radius: var(--r-xl);
  margin-bottom: 24px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  line-height: 1.08;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  opacity: 0.9;
  margin-bottom: 48px;
  font-weight: 300;
  max-width: 540px;
  margin-inline: auto;
}
.hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero__scroll svg { width: 24px; height: 24px; }

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

/* Séparateur vague */
.wave-divider {
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  overflow: hidden;
  line-height: 0;
}
.wave-divider svg { display: block; width: 100%; }

/* ---- Section About ---- */
.about {
  padding: 96px 0;
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__img {
  position: relative;
}
.about__img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
}
.about__img-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--gold);
  color: var(--dark);
  border-radius: var(--r-lg);
  padding: 20px 24px;
  text-align: center;
  font-weight: 800;
  box-shadow: var(--sh-md);
}
.about__img-badge strong { font-size: 2rem; display: block; font-family: var(--font-display); }

.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}
.about__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--sand-2);
  border-radius: var(--r-md);
  font-weight: 700;
  font-size: 0.9rem;
}
.about__feature-icon {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ---- Cartes ---- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}
.cards-grid--2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.cards-grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
  transition: transform var(--t), box-shadow var(--t);
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-xl);
}
.card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.card__body {
  padding: 24px;
}
.card__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ocean);
  background: rgba(27,144,192,0.1);
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: 12px;
}
.card__tag--green { color: var(--green); background: rgba(44,110,73,0.1); }
.card__tag--gold { color: var(--gold-dark); background: rgba(232,168,32,0.12); }
.card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 10px;
}
.card__desc {
  font-size: 0.93rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}
.card__price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark);
}
.card__price span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}
.card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

/* Carte activité (fond sombre) */
.card--dark {
  background: var(--dark-2);
  color: var(--text-light);
}
.card--dark .card__title { color: var(--white); }
.card--dark .card__desc { color: rgba(240,234,216,0.7); }
.card--dark .card__price { color: var(--gold-light); }
.card--dark .card__footer { border-color: rgba(255,255,255,0.08); }

/* Carte icône */
.card--icon {
  padding: 40px 32px;
  text-align: center;
  border: none;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
}
.card--icon .card__icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}
.card--icon .card__title { color: var(--white); font-size: 1.3rem; }
.card--icon .card__desc { color: rgba(240,234,216,0.75); font-size: 0.9rem; }

/* ---- Équipe ---- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  max-width: 720px;
  margin-inline: auto;
}
.team-card {
  text-align: center;
}
.team-card__img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 4px solid var(--gold);
  box-shadow: var(--sh-md);
}
.team-card__name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--dark);
  margin-bottom: 6px;
}
.team-card__role {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ocean);
  margin-bottom: 14px;
}
.team-card__bio {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---- Section Contact ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(232,168,32,0.15);
  border: 1.5px solid rgba(232,168,32,0.3);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-label {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  margin-bottom: 6px;
}
.contact-value {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.6;
  white-space: pre-line;
}
.contact-value a { color: var(--gold-light); }
.contact-value a:hover { text-decoration: underline; }

/* ---- Formulaire ---- */
.form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: 40px;
  backdrop-filter: blur(8px);
}
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--r-md);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--t), background var(--t);
}
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(255,255,255,0.4); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.12);
}
.form-select option { background: var(--dark); color: var(--white); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ---- Formulaire de réservation (fond clair) ---- */
.booking-form {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 48px 52px;
  box-shadow: var(--sh-lg);
  max-width: 820px;
  margin: 0 auto;
}
.booking-form .form-label {
  color: var(--dark);
}
.booking-form .form-input,
.booking-form .form-select,
.booking-form .form-textarea {
  background: var(--sand);
  border: 1.5px solid rgba(0,0,0,0.1);
  color: var(--dark);
}
.booking-form .form-input::placeholder,
.booking-form .form-textarea::placeholder { color: var(--text-muted); }
.booking-form .form-input:focus,
.booking-form .form-select:focus,
.booking-form .form-textarea:focus {
  background: var(--white);
  border-color: var(--ocean);
}
.booking-form .form-select option { background: var(--white); color: var(--dark); }
.booking-form .form-group--select select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23555' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 3px;
  accent-color: var(--ocean);
  cursor: pointer;
}
.form-check label {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
  cursor: pointer;
}
.form-success {
  text-align: center;
  padding: 48px 24px;
  font-size: 1.15rem;
  color: var(--green);
  font-weight: 700;
  line-height: 1.7;
}
@media (max-width: 640px) {
  .booking-form { padding: 28px 20px; }
  .booking-form .form-row { grid-template-columns: 1fr; }
}

/* ---- Tableau de tarifs ---- */
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
}
.price-table th {
  background: var(--dark);
  color: var(--white);
  padding: 18px 24px;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.price-table td {
  padding: 18px 24px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 0.95rem;
  color: var(--text);
}
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:nth-child(even) td { background: rgba(253,248,238,0.5); }
.price-table tr:hover td { background: rgba(232,168,32,0.06); }
.price-table .price-amount {
  font-weight: 800;
  color: var(--dark);
  font-size: 1.05rem;
}
.price-table .price-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.price-section {
  margin-bottom: 56px;
}
.price-section-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--gold);
  display: inline-block;
}

/* Badge "Populaire" */
.badge-popular {
  display: inline-block;
  background: var(--coral);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 100px;
  margin-left: 8px;
  vertical-align: middle;
}

/* ---- Bannière CTA ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--gold) 0%, var(--coral) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '🏄';
  position: absolute;
  top: -20px; left: -40px;
  font-size: 12rem;
  opacity: 0.08;
  transform: rotate(-15deg);
}
.cta-banner::after {
  content: '🌊';
  position: absolute;
  bottom: -20px; right: -20px;
  font-size: 10rem;
  opacity: 0.08;
  transform: rotate(15deg);
}
.cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 16px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.cta-banner__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 40px;
  font-weight: 600;
}
.cta-banner__btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ---- Footer ---- */
.footer {
  background: var(--dark);
  color: var(--text-light);
  padding: 72px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer__brand img {
  height: 56px;
  margin-bottom: 16px;
  filter: brightness(1);
}
.footer__tagline {
  font-size: 0.95rem;
  color: rgba(240,234,216,0.7);
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 24px;
}
.footer__socials {
  display: flex;
  gap: 10px;
}
.footer__social-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background var(--t), transform var(--t);
}
.footer__social-btn:hover {
  background: var(--gold);
  transform: translateY(-2px);
}
.footer__col-title {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: 0.93rem;
  color: rgba(240,234,216,0.7);
  transition: color var(--t);
}
.footer__links a:hover { color: var(--gold-light); }
.footer__contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: rgba(240,234,216,0.7);
}
.footer__contact-item span:first-child { flex-shrink: 0; }
.footer__contact-item a { color: rgba(240,234,216,0.7); transition: color var(--t); }
.footer__contact-item a:hover { color: var(--gold-light); }
.footer__partners {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 4px;
}
.footer__partners a {
  display: inline-block;
  opacity: 0.85;
  transition: opacity var(--t);
}
.footer__partners a:hover { opacity: 1; }
.footer__partners img {
  max-width: 110px;
  height: auto;
  border-radius: 6px;
  display: block;
}
.footer__partners-cta {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__copy {
  font-size: 0.83rem;
  color: rgba(240,234,216,0.45);
}
.footer__partner {
  font-size: 0.8rem;
  color: rgba(240,234,216,0.45);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer__credit {
  width: 100%;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(240,234,216,0.35);
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer__credit a {
  color: rgba(240,234,216,0.5);
  text-decoration: none;
  transition: color var(--t);
}
.footer__credit a:hover { color: var(--gold-light); }

/* ---- Hébergement page ---- */
.room-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}
.room-detail:nth-child(even) { direction: rtl; }
.room-detail:nth-child(even) > * { direction: ltr; }
.room-detail__img {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.room-detail__img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.room-detail__img:hover img { transform: scale(1.04); }
.room-detail__amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}
.amenity-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--sand-2);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dark);
  border: 1px solid rgba(0,0,0,0.08);
}
.room-detail__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 28px;
}
.room-detail__price-amount {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--dark);
}
.room-detail__price-unit {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ---- Excursions page ---- */
.excursion-hero-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: -80px;
  position: relative;
  z-index: 2;
}

/* ---- Section chiffres ---- */
.stats-bar {
  background: var(--gold);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat__number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--dark);
  line-height: 1;
}
.stat__label {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(15,28,45,0.7);
  margin-top: 6px;
}

/* ---- Map placeholder ---- */
.map-embed {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, var(--ocean-dark), var(--dark));
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  text-align: center;
  overflow: hidden;
  position: relative;
}
.map-embed-inner {
  width: 100%;
  height: 100%;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.map-embed-inner iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(20%) contrast(1.1);
}

/* ---- Animations scroll ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---- Utilitaires divers ---- */
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-8 { margin-bottom: 8px; }
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.divider {
  width: 60px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
  margin: 16px 0 28px;
}
.divider--center { margin-inline: auto; }

/* ============================================================
   GALERIE PHOTO + LIGHTBOX
   ============================================================ */

.photo-gallery { position: relative; }

.gallery-main {
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 10px;
  cursor: zoom-in;
  position: relative;
}
.gallery-main img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-main:hover img { transform: scale(1.02); }
.gallery-main__hint {
  position: absolute;
  bottom: 12px; right: 12px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
  pointer-events: none;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 7px;
}
.gallery-thumb {
  border-radius: var(--r-sm);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  border: 2px solid transparent;
  transition: border-color var(--t), transform var(--t), opacity var(--t);
}
.gallery-thumb img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.gallery-thumb:hover { opacity: 0.82; transform: scale(1.04); }
.gallery-thumb.active { border-color: var(--gold); }

/* -- Lightbox -- */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(5,10,20,0.94);
  z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
  padding: 20px;
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox__img {
  max-width: 90vw; max-height: 85vh;
  object-fit: contain;
  border-radius: var(--r-md);
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  display: block;
}
.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  background: rgba(255,255,255,0.12);
  color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: background var(--t), transform var(--t);
  font-weight: 700;
}
.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover { background: rgba(255,255,255,0.28); transform: scale(1.1); }
.lightbox__close { top: 18px; right: 20px; width: 44px; height: 44px; font-size: 1.2rem; }
.lightbox__prev  { left: 18px;  top: 50%; transform: translateY(-50%); width: 50px; height: 50px; font-size: 1.6rem; }
.lightbox__next  { right: 18px; top: 50%; transform: translateY(-50%); width: 50px; height: 50px; font-size: 1.6rem; }
.lightbox__prev:hover { transform: translateY(-50%) scale(1.1); }
.lightbox__next:hover { transform: translateY(-50%) scale(1.1); }
.lightbox__counter {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.6); font-size: 0.82rem; font-weight: 600;
}

/* Responsive gallery */
@media (max-width: 768px) {
  .gallery-thumbs { grid-template-columns: repeat(4, 1fr); }
  .gallery-main img { height: 260px; }
}
@media (max-width: 480px) {
  .gallery-thumbs { grid-template-columns: repeat(3, 1fr); }
}

/* -- Room layout with gallery -- */
.room-with-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 1024px) {
  .room-with-gallery { grid-template-columns: 1fr; }
}

/* -- Amenities grid -- */
.amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 16px 0 28px;
}
.amenity-item {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 12px;
  background: var(--sand-2);
  border-radius: var(--r-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  border: 1px solid rgba(0,0,0,0.06);
}

/* ============================================================
   PAGE MANU
   ============================================================ */

/* -- Profil portrait -- */
.manu-profile {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 64px;
  align-items: start;
}
.manu-portrait {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.manu-portrait img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s ease;
}
.manu-portrait:hover img { transform: scale(1.03); }
.manu-portrait__caption {
  background: linear-gradient(135deg, var(--dark) 0%, var(--ocean-dark) 100%);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.manu-portrait__caption a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1877F2;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 100px;
  text-decoration: none;
  transition: background var(--t), transform var(--t);
}
.manu-portrait__caption a:hover {
  background: #0d65d8;
  transform: translateY(-2px);
}
.manu-born {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sand-2);
  border: 1px solid rgba(0,0,0,0.08);
  border-left: 3px solid var(--gold);
  border-radius: var(--r-md);
  padding: 10px 18px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
}

/* -- Activity pills -- */
.activity-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 20px 0 28px;
}
.activity-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 15px;
  background: linear-gradient(135deg, var(--green) 0%, var(--ocean) 100%);
  color: var(--white);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* -- Timeline -- */
.timeline {
  position: relative;
  padding-left: 40px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 6px;
  bottom: 6px;
  width: 3px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--green) 60%, var(--ocean) 100%);
  border-radius: 2px;
}
.timeline-item {
  position: relative;
  margin-bottom: 36px;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -36px;
  top: 7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}
.timeline-item--trophy::before {
  background: var(--coral);
  box-shadow: 0 0 0 2px var(--coral);
}
.timeline-item--eco::before {
  background: var(--green);
  box-shadow: 0 0 0 2px var(--green);
}
.timeline-item__year {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.timeline-item--trophy .timeline-item__year { color: var(--coral); }
.timeline-item--eco .timeline-item__year { color: #4ade80; }
.timeline-item__text {
  font-size: 0.95rem;
  color: rgba(240,234,216,0.8);
  line-height: 1.6;
}

/* -- Story section -- */
.story-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
}
.story-quote {
  border-left: 4px solid var(--gold);
  padding: 20px 24px;
  background: var(--sand-2);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  margin: 28px 0;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--dark);
  line-height: 1.75;
  font-weight: 600;
}
.story-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.story-img img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
}

/* -- Manu gallery -- */
.manu-gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 16px;
}
.manu-gallery img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--r-lg);
  display: block;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.manu-gallery img:first-child {
  height: 100%;
  grid-row: span 2;
}
.manu-gallery img:hover {
  transform: scale(1.02);
  box-shadow: var(--sh-lg);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  /* Nav → hamburger dès 1024px */
  .navbar__toggle { display: flex; }
  .navbar__links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    z-index: 999;
    background: var(--dark);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--t), opacity var(--t);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  }
  .navbar__links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .navbar__links a {
    padding: 12px 16px;
    width: 100%;
    border-radius: var(--r-md);
    font-size: 1rem;
  }
  .navbar__actions .btn { display: none; }

  .manu-profile  { grid-template-columns: 1fr; }
  .manu-portrait { position: static; }
  .manu-portrait img { height: 380px; object-position: center 15%; }
  .story-layout  { grid-template-columns: 1fr; }
  .story-img     { position: static; order: -1; }
  .story-img img { height: 320px; }
  .manu-gallery  { grid-template-columns: 1fr 1fr; }
  .manu-gallery img:first-child { grid-row: span 1; height: 260px; }
  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .about__img { max-width: 560px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .room-detail { grid-template-columns: 1fr; }
  .room-detail:nth-child(even) { direction: ltr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 68px; }
  .section { padding: 72px 0; }

  /* Hero mobile */
  .hero__content { padding: 120px 5vw 100px; }
  .hero--inner { min-height: 40vh; }

  /* Grids mobile */
  .cards-grid,
  .cards-grid--2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .about__features { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .excursion-hero-cards { margin-top: -40px; }
  .about__img-badge { right: 0; bottom: -16px; }

  /* Price table scroll */
  .price-table-wrap { overflow-x: auto; }
  .price-table { min-width: 560px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero__ctas { flex-direction: column; align-items: center; }
  .cta-banner__btns { flex-direction: column; align-items: center; }
}

/* ============================================================
   RGPD — Bandeau consentement cookies
   ============================================================ */

/* Bandeau principal */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  border-top: 2px solid var(--gold);
  padding: 16px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  z-index: 9999;
  box-shadow: 0 -4px 32px rgba(0,0,0,0.45);
  transform: translateY(110%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner__icon { font-size: 1.5rem; flex-shrink: 0; }
.cookie-banner__text {
  flex: 1;
  min-width: 200px;
  font-size: 0.87rem;
  line-height: 1.6;
  color: rgba(240,234,216,0.82);
}
.cookie-banner__text a {
  color: var(--gold-light);
  text-decoration: underline;
  font-weight: 600;
}
.cookie-banner__btns { display: flex; gap: 10px; flex-shrink: 0; }

/* Bouton flottant "mes préférences" (après fermeture du bandeau) */
.cookie-prefs-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: var(--dark);
  color: rgba(240,234,216,0.5);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  z-index: 9997;
  display: none;
  transition: color var(--t), border-color var(--t);
}
.cookie-prefs-btn.is-visible { display: block; }
.cookie-prefs-btn:hover { color: var(--gold-light); border-color: rgba(212,175,55,0.5); }

/* Placeholder vidéo / carte (quand consentement refusé) */
.consent-placeholder {
  background: linear-gradient(135deg, #0e1c2b 0%, #1c3045 100%);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 40px 24px;
  text-align: center;
}
/* Vidéo : superposé en absolu dans le wrapper 16/9 */
.yt-wrapper .consent-placeholder {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 24px;
}
/* Carte : hauteur fixe */
.map-wrapper .consent-placeholder {
  height: 100%;
  min-height: 260px;
  border-radius: 16px;
}
.consent-placeholder__icon { font-size: 2.4rem; opacity: 0.45; }
.consent-placeholder__msg {
  font-size: 0.88rem;
  color: rgba(240,234,216,0.6);
  max-width: 280px;
  line-height: 1.6;
}
