/* ============================================================
   LA VILLA LAURIE — Design System
   Style: Charme méditerranéen · Bilingue FR/EN
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

/* --- Tokens --- */
:root {
  --gold:       #C4603A;
  --gold-light: #E8A88A;
  --gold-dark:  #8B3520;
  --cream:      #FAF7F2;
  --white:      #FFFFFF;
  --charcoal:   #2C2A27;
  --stone:      #6B6560;
  --stone-light:#AFA99F;
  --sea:        #3B6E8F;
  --sea-light:  #EAF2F7;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Montserrat', system-ui, sans-serif;

  --radius: 2px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
  --shadow: 0 8px 40px rgba(44,42,39,0.12);
  --shadow-lg: 0 20px 80px rgba(44,42,39,0.18);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* --- Language switcher --- */
[lang="en"] { display: none; }
body.lang-en [lang="fr"] { display: none; }
body.lang-en [lang="en"] { display: revert; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 3rem;
  transition: background var(--transition), backdrop-filter var(--transition), padding var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(250,247,242,0.95);
  backdrop-filter: blur(12px);
  padding: 0.75rem 3rem;
  box-shadow: 0 1px 20px rgba(44,42,39,0.08);
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--white);
  transition: color var(--transition);
}
.nav.scrolled .nav-logo { color: var(--charcoal); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--white);
  transition: width var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--white); }
.nav.scrolled .nav-links a { color: var(--charcoal); }
.nav.scrolled .nav-links a:hover { color: var(--gold-dark); }
.nav.scrolled .nav-links a::after { background: var(--gold); }

/* Bouton CTA nav — blanc sur header transparent, terracotta sur scrolled */
.nav:not(.scrolled) .btn {
  color: var(--white);
  border-color: rgba(255,255,255,0.75);
  background: transparent;
}
.nav:not(.scrolled) .btn:hover {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
  box-shadow: none;
  transform: translateY(-2px);
}

/* Language toggle */
.lang-toggle {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  margin-left: 2rem;
}
.lang-btn {
  background: none;
  border: 1px solid rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.75);
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  font-weight: 600;
  padding: 0.3rem 0.55rem;
  cursor: pointer;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.lang-btn.active,
.lang-btn:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--charcoal);
}
.nav.scrolled .lang-btn {
  border-color: var(--stone-light);
  color: var(--stone);
}
.nav.scrolled .lang-btn.active,
.nav.scrolled .lang-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--white);
  transition: all var(--transition);
}
.nav.scrolled .nav-hamburger span { background: var(--charcoal); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20,18,16,0.30) 0%,
    rgba(20,18,16,0.15) 35%,
    rgba(20,18,16,0.80) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 3rem 5rem;
  max-width: 780px;
}
.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--gold);
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero-title em {
  font-style: italic;
  color: var(--white);
}
.hero-subtitle {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.95);
  max-width: 520px;
  margin-bottom: 2.5rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem; right: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 2.25rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  border-radius: var(--radius);
  white-space: nowrap;
  box-sizing: border-box;
}

/* Variante small — nav, carte, contextes compacts */
.btn-sm {
  font-size: 0.65rem;
  padding: 0.65rem 1.25rem;
  gap: 0.5rem;
  letter-spacing: 0.14em;
}
.btn-sm svg { width: 13px; height: 13px; }

/* Variante full-width — formulaire, CTA mobile */
.btn-full {
  width: 100%;
}

/* ============================================================
   BOOKING WIDGET
   ============================================================ */
.booking-widget-wrap {
  background: var(--white);
  padding: 4rem 3rem;
  border-bottom: 1px solid rgba(44,42,39,0.07);
}
.booking-widget {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--cream);
  border-radius: 4px;
  box-shadow: var(--shadow);
  padding: 0;
  border: 1px solid rgba(44,42,39,0.07);
}
.booking-widget-title {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone-light);
  padding: 1.1rem 2rem 0;
}
.booking-fields {
  display: flex;
  align-items: stretch;
  padding: 0 1rem 1rem;
  gap: 0;
}
.booking-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0.75rem 1rem;
  gap: 0.35rem;
  cursor: pointer;
  border-radius: 4px;
  transition: background var(--transition);
}
.booking-field:hover { background: var(--cream); }
.booking-label {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.booking-input {
  background: none;
  border: none;
  outline: none;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--charcoal);
  width: 100%;
  cursor: pointer;
  padding: 0;
}
.booking-input::placeholder { color: var(--stone-light); font-style: italic; }
.booking-input option { font-family: var(--font-sans); font-size: 0.9rem; }
.booking-separator {
  width: 1px;
  background: rgba(44,42,39,0.1);
  margin: 0.75rem 0;
  flex-shrink: 0;
}
.booking-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 3px;
  padding: 0 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  margin: 0.75rem 0.25rem 0.75rem 0.75rem;
  flex-shrink: 0;
}
.booking-btn:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(196,96,58,0.35);
}
.booking-btn svg { width: 13px; height: 13px; }

.booking-status {
  font-size: 0.78rem;
  font-weight: 400;
  padding: 0 2rem 1rem;
  display: none;
}
.booking-status:not(:empty) { display: block; }
.booking-status--available {
  color: #2A6A2A;
}
.booking-status--unavailable {
  color: #8B2A2A;
}


/* ---- Statut chargement iCal ---- */
.cal-load-status {
  font-size: 0.75rem;
  font-weight: 400;
  padding: 0.6rem 2rem;
  border-top: 1px solid rgba(44,42,39,0.06);
}
.cal-load-status--loading {
  color: var(--stone);
  animation: pulse 1.4s ease-in-out infinite;
}
.cal-load-status--error {
  color: #C0392B;
  background: #FDECEA;
}
@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 1; }
}

/* ---- Calendrier visuel ---- */
.booking-calendar {
  border-top: 1px solid rgba(44,42,39,0.08);
  padding: 1.5rem 2rem 1.75rem;
}
.cal-controls {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.cal-nav {
  background: none;
  border: 1.5px solid rgba(44,42,39,0.18);
  color: var(--stone);
  width: 36px; height: 36px;
  border-radius: 3px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1.8rem;
  transition: all var(--transition);
  padding: 0;
}
.cal-nav svg { width: 16px; height: 16px; display: block; }
.cal-nav:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(196,96,58,0.05);
}
.cal-months-wrap {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.cal-month { width: 100%; }
.cal-month-title {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-align: center;
  margin-bottom: 0.85rem;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.cal-day-hdr {
  text-align: center;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--stone-light);
  padding: 0.3rem 0;
  text-transform: uppercase;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 400;
  border-radius: 50%;
  transition: all 0.15s ease;
  position: relative;
}
.cal-day--empty { background: none; }
.cal-day--past {
  color: var(--stone-light);
  opacity: 0.45;
  cursor: default;
}
.cal-day--free {
  background: #E6F4E6;
  color: #2A6A2A;
  cursor: pointer;
  border-radius: 4px;
  font-weight: 500;
}
.cal-day--free:hover {
  background: #B8DDB8;
  color: #1A4A1A;
  font-weight: 700;
  transform: scale(1.1);
}
.cal-day--booked {
  background: #FDECEA;
  color: #C0392B;
  text-decoration: line-through;
  cursor: not-allowed;
  border-radius: 4px;
  font-size: 0.65rem;
  opacity: 0.85;
}
.cal-day--range {
  background: rgba(196,96,58,0.12);
  color: var(--charcoal);
  border-radius: 0;
  cursor: pointer;
}
.cal-day--endpoint {
  background: var(--gold);
  color: var(--white) !important;
  font-weight: 600;
  cursor: pointer;
  z-index: 1;
  border-radius: 50%;
}
.cal-day--arrival  { border-radius: 50% 0 0 50%; }
.cal-day--departure{ border-radius: 0 50% 50% 0; }

/* Légende */
.cal-legend {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}
.cal-legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--stone);
}
.cal-legend-item::before {
  content: '';
  display: block;
  width: 12px; height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.cal-legend-item--available::before { background: #E6F4E6; border: 1px solid #B8DDB8; }
.cal-legend-item--booked::before    { background: #FDECEA; border: 1px solid #F5C0BB; }
.cal-legend-item--selected::before  { background: var(--gold); }

@media (max-width: 900px) {
  .cal-months-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .booking-widget-wrap { padding: 2rem 1rem; }
  .booking-widget { transform: none; }
  .booking-fields { flex-wrap: wrap; gap: 0; }
  .booking-separator { display: none; }
  .booking-field { flex: 1 1 45%; min-width: 140px; }
  .booking-btn { width: 100%; justify-content: center; margin: 0.5rem; }
  .booking-calendar { padding: 1.25rem 1rem; }
}
@media (max-width: 480px) {
  .booking-field { flex: 1 1 100%; }
}

/* Tous les boutons sont en outline — fond transparent, rempli au hover */
.btn-gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-gold:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(196,96,58,0.35);
}
/* Variante claire (sur fonds sombres / photos) */
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.75);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
  transform: translateY(-2px);
}
/* Variante sombre (sur fonds clairs) */
.btn-outline-dark {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
}
.btn-outline-dark:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-2px);
}
.btn svg { width: 15px; height: 15px; flex-shrink: 0; }

/* Hero : tous les boutons en blanc, quelle que soit leur classe */
.hero-content .btn {
  color: var(--white);
  border-color: rgba(255,255,255,0.75);
  background: transparent;
}
.hero-content .btn:hover {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
  box-shadow: none;
  transform: translateY(-2px);
}

/* Section-label sur les page-heroes : blanc */
.page-hero-content .section-label {
  color: rgba(255,255,255,0.85);
}
.page-hero-content .section-label::before {
  background: rgba(255,255,255,0.85);
}

/* Responsive — boutons */
@media (max-width: 768px) {
  .btn {
    font-size: 0.68rem;
    padding: 0.9rem 1.75rem;
    letter-spacing: 0.14em;
  }
  .btn-sm {
    font-size: 0.62rem;
    padding: 0.6rem 1.1rem;
  }
  /* Hero : boutons pleine largeur sur mobile */
  .hero-content .btn {
    width: 100%;
  }
}
@media (max-width: 420px) {
  .btn {
    font-size: 0.65rem;
    padding: 0.85rem 1.25rem;
    gap: 0.5rem;
  }
}

/* ============================================================
   SECTION DEFAULTS
   ============================================================ */
section { padding: 7rem 3rem; }
.section-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 30px; height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
}
.section-title em { font-style: italic; color: var(--gold-dark); }
.section-body {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--stone);
  max-width: 560px;
}
.container { max-width: 1280px; margin: 0 auto; }

/* ============================================================
   FEATURES STRIP
   ============================================================ */
.features {
  background: var(--charcoal);
}
.features-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.feature-item {
  padding: 3.5rem 2.5rem;
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}
.feature-item:last-child { border-right: none; }
.feature-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  color: var(--gold);
}
.feature-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone-light);
  margin-bottom: 0.4rem;
}
.feature-value {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--white);
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  padding: 0;
  background: var(--cream);
}
.gallery-header {
  padding: 7rem 3rem 3rem;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(3, 360px);
  gap: 6px;
  padding: 0 3rem;
  max-width: 1280px;
  margin: 0 auto;
}
.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 4; }
.gallery-item:nth-child(3) { grid-column: span 3; }
.gallery-item:nth-child(4) { grid-column: span 4; }
.gallery-item:nth-child(5) { grid-column: span 3; }
.gallery-item:nth-child(6) { grid-column: span 4; }
.gallery-item:nth-child(7) { grid-column: span 4; }
.gallery-item:nth-child(8) { grid-column: span 4; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0,0,0,0.95);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 2rem; right: 2rem;
  background: none;
  border: 1.5px solid rgba(255,255,255,0.4);
  color: var(--white);
  width: 44px; height: 44px;
  border-radius: 3px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  padding: 0;
}
.lightbox-close svg { width: 18px; height: 18px; }
.lightbox-close:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: none;
  border: 1.5px solid rgba(255,255,255,0.4);
  color: var(--white);
  width: 44px; height: 44px;
  border-radius: 3px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  padding: 0;
}
.lightbox-prev svg, .lightbox-next svg { width: 20px; height: 20px; display: block; }
.lightbox-prev { left: 2rem; }
.lightbox-next { right: 2rem; }
.lightbox-prev:hover, .lightbox-next:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

/* ============================================================
   ABOUT SPLIT
   ============================================================ */
.about {
  background: var(--white);
  padding: 0;
  overflow: hidden;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.about-image {
  position: relative;
  overflow: hidden;
}
.about-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-text {
  padding: 7rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(44,42,39,0.1);
}
.stat-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-label {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--stone);
  line-height: 1.5;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--sea-light);
  text-align: center;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.testimonial-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius);
  text-align: left;
  box-shadow: var(--shadow);
}
.testimonial-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}
.testimonial-text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}
.testimonial-author {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
}
.testimonial-origin {
  font-size: 0.68rem;
  color: var(--stone-light);
  margin-top: 0.2rem;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--charcoal);
  padding: 6rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,169,110,0.12) 0%, transparent 70%);
}
.cta-banner .section-label { justify-content: center; }
.cta-banner .section-label::before { display: none; }
.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1.5rem;
  position: relative;
}
.cta-title em { font-style: italic; color: var(--gold-light); }
.cta-sub {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--stone-light);
  margin-bottom: 3rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  position: relative;
}
.cta-buttons { display: flex; gap: 1rem; justify-content: center; position: relative; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #1A1815;
  padding: 4rem 3rem 2rem;
  color: var(--stone-light);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-inner > *:nth-child(1) { text-align: left; }
.footer-inner > *:nth-child(2) { text-align: center; }
.footer-inner > *:nth-child(2) .footer-links { align-items: center; }
.footer-inner > *:nth-child(3) { text-align: right; }
.footer-inner > *:nth-child(3) .footer-links { align-items: flex-end; }
.footer-inner > *:nth-child(3) .footer-contact-item { justify-content: flex-end; }
.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-tagline {
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--stone-light);
  max-width: 280px;
}
.footer-heading {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-links a {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--stone-light);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold-light); }
.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--stone-light);
  margin-bottom: 0.85rem;
  line-height: 1.5;
}
.footer-contact-item svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer-bottom {
  max-width: 1280px;
  margin: 2rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  color: rgba(175,169,159,0.5);
}

/* ============================================================
   HERO (intérieur)
   ============================================================ */
.page-hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(20,18,16,0.40) 0%, rgba(20,18,16,0.78) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 3rem 4rem;
}
.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}
.page-hero-title em { font-style: italic; color: var(--white); }

/* ============================================================
   PRESTATIONS PAGE
   ============================================================ */
.prestations-intro {
  background: var(--white);
  padding: 6rem 3rem;
}
.prestations-intro-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
  align-items: center;
}
.prestation-category {
  padding: 7rem 3rem;
}
.prestation-category:nth-child(odd) { background: var(--cream); }
.prestation-category:nth-child(even) { background: var(--white); }
.prestation-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.prestation-category:nth-child(even) .prestation-inner { direction: rtl; }
.prestation-category:nth-child(even) .prestation-inner > * { direction: ltr; }
.prestation-image { overflow: hidden; border-radius: var(--radius); }
.prestation-image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform 0.6s ease; }
.prestation-image:hover img { transform: scale(1.03); }
.prestation-icon {
  width: 56px; height: 56px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}
.prestation-icon svg { width: 24px; height: 24px; color: var(--white); }
.highlights {
  list-style: none;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.highlights li {
  display: flex;
  gap: 0.85rem;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.6;
}
.highlights li::before {
  display: none;
}
.highlights a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.highlights a:hover {
  border-bottom-color: var(--gold);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section {
  background: var(--white);
  padding: 7rem 3rem;
}
.contact-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 7rem;
}
.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.contact-detail {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 44px; height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 18px; height: 18px; color: var(--white); }
.contact-detail-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone-light);
  margin-bottom: 0.35rem;
}
.contact-detail-value {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.5;
}

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.9rem 1.1rem;
  border: 1px solid rgba(44,42,39,0.15);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--charcoal);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.12);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group input[type="date"] {
  -webkit-appearance: none;
  appearance: none;
  display: block;
  width: 100%;
  box-sizing: border-box;
}
.form-success {
  display: none;
  padding: 1.5rem;
  background: #F0FAF0;
  border: 1px solid #88C488;
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: #2A6A2A;
}

/* Map */
.map-section {
  padding: 0 3rem 5rem;
  background: var(--cream);
}
.map-section-inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 480px;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.map-section iframe {
  width: 100%; height: 100%;
  border: none;
  filter: grayscale(20%) contrast(1.05);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-item:nth-child(2),
  .feature-item:nth-child(4) { border-right: none; }
  .feature-item:nth-child(1),
  .feature-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid .testimonial-card:last-child { grid-column: span 2; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .about-text { padding: 5rem 3rem; }
  .prestations-intro-inner { grid-template-columns: 1fr; gap: 3rem; }
  .prestation-inner { gap: 3rem; }
  .contact-inner { gap: 4rem; }
}
@media (max-width: 768px) {
  section { padding: 5rem 1.5rem; }
  .nav { padding: 1.25rem 1.5rem; }
  .nav.scrolled { padding: 0.75rem 1.5rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero-content { padding: 0 1.5rem 4rem; }
  .hero-scroll { right: 1.5rem; }

  /* Features strip — compact sur mobile */
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .feature-item {
    padding: 1.5rem 1rem;
    gap: 0.75rem;
    border-right: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    justify-content: flex-start;
  }
  .feature-item:nth-child(2),
  .feature-item:nth-child(4) { border-right: none; }
  .feature-item:nth-child(3),
  .feature-item:nth-child(4) { border-bottom: none; }
  .feature-icon { width: 28px; height: 28px; flex-shrink: 0; }
  .feature-label { font-size: 0.6rem; letter-spacing: 0.12em; }
  .feature-value { font-size: 1rem; }
  .gallery-header { padding: 5rem 1.5rem 2rem; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    padding: 0 1.5rem;
    gap: 4px;
  }
  .gallery-item { grid-column: span 1 !important; grid-row: span 1 !important; height: 300px; }
  .about-inner { grid-template-columns: 1fr; }
  .about-image { height: 300px; }
  .about-text { padding: 4rem 1.5rem; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-grid .testimonial-card:last-child { grid-column: span 1; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner > *:nth-child(1),
  .footer-inner > *:nth-child(2),
  .footer-inner > *:nth-child(3) { text-align: center; }
  .footer-inner > *:nth-child(2) .footer-links,
  .footer-inner > *:nth-child(3) .footer-links { align-items: center; }
  .footer-inner > *:nth-child(3) .footer-contact-item { justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .prestation-inner { grid-template-columns: 1fr; }
  .prestation-category:nth-child(even) .prestation-inner { direction: ltr; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .map-section { padding: 0 1.5rem 3rem; }
  .map-section-inner { height: 360px; }
  .page-hero-content { padding: 0 1.5rem 3rem; }
  .gallery-header { flex-direction: column; align-items: flex-start; gap: 2rem; }
}

/* Très petits écrans (< 420px) — features en colonne unique */
@media (max-width: 420px) {
  .features-grid { grid-template-columns: 1fr; }
  .feature-item {
    border-right: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;
    padding: 1.25rem 1.5rem;
    gap: 1rem;
  }
  .feature-item:last-child { border-bottom: none !important; }
  .feature-icon { width: 24px; height: 24px; }
}

/* ============================================================
   BANDEAU RGPD
   ============================================================ */
.rgpd-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--charcoal);
  border-top: 2px solid var(--gold);
  padding: 1.5rem 3rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  box-shadow: 0 -8px 40px rgba(0,0,0,0.25);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.rgpd-banner.visible { transform: translateY(0); }
.rgpd-banner.hidden  { transform: translateY(100%); }

.rgpd-text {
  flex: 1;
  min-width: 260px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--stone-light);
}
.rgpd-text strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.3rem;
  letter-spacing: 0.05em;
}
.rgpd-text a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.rgpd-text a:hover { color: var(--gold); }

.rgpd-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.rgpd-btn {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.7rem 1.4rem;
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--transition);
  border: 1.5px solid;
  white-space: nowrap;
}
.rgpd-btn--accept {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.rgpd-btn--accept:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
}
.rgpd-btn--refuse {
  background: transparent;
  border-color: rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.7);
}
.rgpd-btn--refuse:hover {
  border-color: var(--white);
  color: var(--white);
}

@media (max-width: 768px) {
  .rgpd-banner { padding: 1.25rem 1.5rem; gap: 1.25rem; }
  .rgpd-actions { width: 100%; }
  .rgpd-btn { flex: 1; justify-content: center; text-align: center; }
}

/* ============================================================
   PAGES LÉGALES (CGL, RGPD)
   ============================================================ */
.legal-page {
  max-width: 860px;
  margin: 0 auto;
  padding: 7rem 3rem;
}
.legal-page h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.legal-page .legal-date {
  font-size: 0.72rem;
  color: var(--stone-light);
  letter-spacing: 0.1em;
  margin-bottom: 3rem;
  display: block;
}
.legal-page h2 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--charcoal);
  margin: 2.5rem 0 0.75rem;
}
.legal-page p, .legal-page li {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--stone);
}
.legal-page ul { margin: 0.5rem 0 0.5rem 1.5rem; }
.legal-page a { color: var(--gold); text-decoration: underline; }

@media (max-width: 768px) {
  .legal-page { padding: 5rem 1.5rem; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s 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; }