/* ═══════════════════════════════════════════════
   DOMAINE FONT CASTEL — style.css
   ═══════════════════════════════════════════════ */


/* ── VARIABLES ───────────────────────────────── */
:root {
  --cream:       #F5EFE2;
  --sand:        #E2C99A;
  --terracotta:  #B8672E;
  --terra-light: #D4845A;
  --green:       #2E4A30;
  --green-mid:   #4A6B4C;
  --brown:       #3A2510;
  --text:        #2A1A08;
  --muted:       #7A6A55;
}


/* ── RESET ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: 'Jost', sans-serif; background: var(--cream); color: var(--text); overflow-x: hidden; }
img   { display: block; width: 100%; object-fit: cover; }
a     { text-decoration: none; color: inherit; }


/* ── TYPOGRAPHY ──────────────────────────────── */
.serif { font-family: 'Cormorant Garamond', Georgia, serif; }
h1 { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size : 1.25rem; letter-spacing: 0.05em; }
h2, h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 600; line-height: 1.1; }

.section-label {
  font-family: 'Jost', sans-serif;
  font-size: 12px !important;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1rem;
}


/* ── SECTION WRAPPER ─────────────────────────── */
section { padding: 7rem 0; }
.container      { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }


/* ── DIVIDER / ORNAMENT ──────────────────────── */
.ornament { display: flex; align-items: center; gap: 1rem; margin: 1.5rem 0 2.5rem; }
.ornament::before, .ornament::after { content: ''; flex: 1; height: 1px; background: var(--sand); }
.ornament-icon { width: 32px; height: 32px; fill: var(--terracotta); flex-shrink: 0; }


/* ── REVEAL ANIMATION ────────────────────────── */
.reveal         { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }


/* ═══════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════ */

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 3rem;
  transition: background 0.4s, box-shadow 0.4s;
}
nav.scrolled {
  background: rgba(245,239,226,0.97);
  box-shadow: 0 2px 30px rgba(58,37,16,0.10);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--cream);
  transition: color 0.4s;
  flex-shrink: 0;
  white-space: nowrap;
}
nav.scrolled .nav-logo { color: var(--brown); }

.nav-links { display: flex; gap: 1.8rem; list-style: none; }
.nav-links a {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,239,226,0.85);
  transition: color 0.3s;
  white-space: nowrap;
}
nav.scrolled .nav-links a { color: var(--muted); }
.nav-links a:hover { color: var(--terracotta); }

.nav-cta {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  border: 1px solid rgba(245,239,226,0.7);
  color: var(--cream);
  border-radius: 2px;
  transition: all 0.3s;
  flex-shrink: 0;
  white-space: nowrap;
}
nav.scrolled .nav-cta { border-color: var(--terracotta); color: var(--terracotta); }
.nav-cta:hover { background: var(--terracotta) !important; border-color: var(--terracotta) !important; color: var(--cream) !important; }

.nav-cta3 {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  border: 1px solid rgba(245,239,226,0.7);
  color: var(--cream);
  border-radius: 2px;
  transition: all 0.3s;
  flex-shrink: 0;
  white-space: nowrap;
}
nav.scrolled .nav-cta3 { border-color: var(--terracotta); color: var(--terracotta); }
.nav-cta3:hover { background: var(--terracotta) !important; border-color: var(--terracotta) !important; color: var(--cream) !important; }

.nav-cta2 {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.65rem 1.6rem;
  border: 1px solid var(--terracotta);
  background: var(--terracotta);
  color: var(--cream);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-cta2:hover { background: transparent; color: var(--terracotta); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--cream); transition: background 0.4s; }
nav.scrolled .hamburger span { background: var(--brown); }


/* ── SÉLECTEUR DE LANGUE ─────────────────────── */
.lang-switcher { position: relative; flex-shrink: 0; }

.lang-current {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: 1px solid rgba(245,239,226,0.35);
  border-radius: 2px;
  padding: 0.45rem 0.7rem;
  cursor: pointer;
  color: rgba(245,239,226,0.85);
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  transition: border-color 0.3s, color 0.3s;
  white-space: nowrap;
}
nav.scrolled .lang-current        { border-color: rgba(58,37,16,0.25); color: var(--muted); }
.lang-current:hover                { border-color: var(--sand); color: var(--sand); }
nav.scrolled .lang-current:hover  { border-color: var(--terracotta); color: var(--terracotta); }
.lang-current svg                  { width: 14px; height: 14px; fill: currentColor; transition: transform 0.3s; }
.lang-switcher.open .lang-current svg { transform: rotate(180deg); }

#lang-flag svg { display: inline-block; vertical-align: middle; border-radius: 2px; }

.lang-menu {
  position: absolute;
  top: calc(100% + 8px); right: 0;
  background: rgba(245,239,226,0.98);
  border: 1px solid var(--sand);
  border-radius: 3px;
  list-style: none;
  min-width: 150px;
  box-shadow: 0 8px 24px rgba(58,37,16,0.15);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 200;
}
.lang-switcher.open .lang-menu { opacity: 1; pointer-events: all; transform: translateY(0); }

.lang-menu li button {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.7rem 1rem;
  background: none;
  border: none;
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--brown);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-align: left;
}
.lang-menu li button:hover  { background: rgba(184,103,46,0.08); color: var(--terracotta); }
.lang-menu li button.active { font-weight: 500; color: var(--terracotta); }
.lang-menu li + li          { border-top: 1px solid rgba(226,201,154,0.4); }


/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */

#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(175deg, rgba(46,74,48,0.55) 0%, rgba(58,37,16,0.70) 60%, rgba(26,18,8,0.88) 100%),
    url('img/domainefontcastel.webp') center/cover no-repeat;
  transform: scale(1.04);
  animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4'%3E%3Crect width='4' height='4' fill='none'/%3E%3Crect width='1' height='1' x='0' y='0' fill='rgba(0,0,0,0.07)'/%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  text-align: center;
  color: var(--cream);
  padding: 0 2rem;
  width: 100%;
  max-width: 700px;
  animation: heroFade 1.4s ease-out 0.3s both;
}
@keyframes heroFade {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-content > img {
  width: auto;
  max-width: min(85vw, 480px);
  height: auto;
  object-fit: contain;
  margin: 0 auto;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 1.4rem;
}

.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(245,239,226,0.80);
  margin-bottom: 2.5rem;
}

.hero-btn {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 2.8rem;
  background: var(--terracotta);
  color: var(--cream);
  border-radius: 2px;
  transition: background 0.3s, transform 0.3s;
}
.hero-btn:hover { background: var(--terra-light); transform: translateY(-2px); }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: rgba(245,239,226,0.6);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2.5s infinite;
}
.hero-scroll svg { width: 20px; height: 20px; }
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

.hero-rating { display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem; margin-top: 1.2rem; animation: heroFade 1.4s ease-out 0.7s both; }
.hero-rating-stars { display: flex; gap: 3px; }
.hero-rating-stars svg { width: 16px; height: 16px; fill: #FBBC05; filter: drop-shadow(0 1px 3px rgba(0,0,0,0.4)); }
.hero-rating-text { font-size: 0.82rem; color: rgba(245,239,226,0.75); letter-spacing: 0.04em; }
.hero-rating-text strong { color: var(--sand); font-weight: 500; }


/* ═══════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════ */

#about { background: var(--cream); overflow: hidden; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-text h2 { font-size: clamp(2.2rem, 4.5vw, 3.8rem); color: var(--brown); margin-bottom: 1.5rem; }
.about-text p  { font-size: 1.05rem; line-height: 1.8; color: var(--muted); margin-bottom: 1.2rem; }

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--sand);
}
.stat       { text-align: center; }
.stat-num   { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 600; color: var(--terracotta); line-height: 1; }
.stat-label { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-top: 0.4rem; }

.about-image-stack { position: relative; }
.about-img-main    { border-radius: 3px; overflow: hidden; height: 480px; box-shadow: 12px 16px 40px rgba(58,37,16,0.18); }
.about-img-accent  { position: absolute; bottom: -2.5rem; left: -2.5rem; width: 56%; height: 200px; border-radius: 3px; overflow: hidden; border: 6px solid var(--cream); box-shadow: 8px 8px 24px rgba(58,37,16,0.14); }


/* ═══════════════════════════════════════════════
   GÎTES
   ═══════════════════════════════════════════════ */

#gites { background: var(--green); color: var(--cream); position: relative; overflow: hidden; }
#gites .section-label { color: var(--sand); }

.gites-heading { font-size: clamp(2.2rem, 4vw, 3.5rem); color: var(--cream); max-width: 560px; margin-bottom: 3.5rem; }
.gites-grid    { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }

.gite-card       { background: rgba(245,239,226,0.06); border: 1px solid rgba(245,239,226,0.12); border-radius: 4px; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
.gite-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.3); }

.gite-img     { height: 220px; overflow: hidden; position: relative; }
.gite-img img { height: 100%; transition: transform 0.6s; }
.gite-card:hover .gite-img img { transform: scale(1.06); }

.gite-body  { padding: 1.8rem;}
.gite-name  { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600; color: var(--sand); margin-bottom: 0.6rem; }
.gite-desc  { font-size: 0.9rem; line-height: 1.7; color: rgba(245,239,226,0.65); margin-bottom: 1.2rem; float: left; margin-right: 10px;}
.gite-intro { font-size: 0.9rem; line-height: 1.7; color: rgba(245,239,226,0.65); margin-bottom: 1.2rem; }
.gite-desc .capa {}
.gite-tags  { display: flex; flex-wrap: wrap; gap: 0.5rem; float: left;  /*margin-bottom: 30px;*/}
.tag        { font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.3rem 0.8rem; border: 1px solid rgba(226,201,154,0.35); border-radius: 1px; color: var(--sand); }


.gite-gallery-hint {
  position: absolute; inset: 0;
  background: rgba(46,74,48,0.55);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem;
  color: var(--cream);
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}
.gite-gallery-hint svg { width: 32px; height: 32px; fill: var(--cream); }
.gite-card:hover .gite-gallery-hint { opacity: 1; }


/* ═══════════════════════════════════════════════
   ÉQUIPEMENTS
   ═══════════════════════════════════════════════ */

#equipements { background: var(--cream); }

.equip-heading { font-size: clamp(2rem, 3.5vw, 3rem); color: var(--brown); margin-bottom: 0.8rem; text-align: center; }
.equip-intro   { font-size: 1rem; color: var(--muted); line-height: 1.7; margin: 0 auto 3.5rem; text-align: center; }

.equip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 0; }

.equip-card {
  background: #fff;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(58,37,16,0.07);
  border-bottom: 3px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.equip-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(58,37,16,0.14); border-bottom-color: var(--terracotta); }

.equip-card-img     { height: 200px; overflow: hidden; }
.equip-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.equip-card:hover .equip-card-img img { transform: scale(1.06); }

.equip-card-body { padding: 1.5rem 1.6rem 1.6rem; }
.equip-card-name { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; color: var(--brown); margin-bottom: 0.6rem; }
.equip-card-desc { font-size: 0.88rem; line-height: 1.7; color: var(--muted); margin-bottom: 1rem; }

.equip-card-detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--terracotta);
  padding-top: 0.8rem;
  border-top: 1px solid #f0e8da;
}
.equip-card-detail svg { width: 15px; height: 15px; fill: var(--terracotta); flex-shrink: 0; }


/* ═══════════════════════════════════════════════
   TARIFS
   ═══════════════════════════════════════════════ */

.pricing-section   { padding: 7rem 2rem; background: #f7f3ee; color: #1f1f1f; }
.pricing-container { max-width: 1160px; margin: 0 auto; }
.pricing-header    { text-align: center; max-width: 760px; margin: 0 auto 3rem; }
.pricing-kicker    { margin: 0 0 12px; font-size: 0.7rem; font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase; color: var(--terracotta); }
.pricing-header h2 { margin: 0 0 1rem; font-size: clamp(2rem, 4vw, 2.8rem); line-height: 1.1;color:var(--brown); }
.pricing-intro     { margin: 0; font-size: 1rem; line-height: 1.7; color: #5f5a54; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 1.5rem; }

.pricing-card {
  position: relative;
  background: #fff;
  border-radius: 2px;
  padding: 2rem 1.8rem;
  box-shadow: 0 6px 24px rgba(0,0,0,0.06);
  border-bottom: 3px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: default;
}
.pricing-card:hover          { transform: translateY(-8px); box-shadow: 0 20px 48px rgba(58,37,16,0.14); border-bottom-color: var(--terracotta); }
.pricing-card h3             { margin: 0 0 8px; font-size: 1.6rem; }
.pricing-period              { margin: 0 0 1.5rem; color: #7a746d; color:var(--terracotta); font-size: 0.9rem; }
.pricing-card ul             { margin: 0; padding-left: 18px; }
.pricing-card li             { margin-bottom: 10px; line-height: 1.5; font-size: 0.95rem; color:var(--brown);}

.pricing-card.featured       { background: var(--brown); color: #fff; transform: translateY(-8px); border-bottom-color: var(--sand); }
.pricing-card.featured li       { color:white;}
.pricing-card.featured:hover { transform: translateY(-16px); box-shadow: 0 28px 56px rgba(0,0,0,0.28); }
.pricing-card.featured .pricing-period { color: rgba(255,255,255,0.65); }

.badge { position: absolute; top: 16px; right: 16px; background: #d7b58a; color: #1f1f1f; font-size: 0.62rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 10px; border-radius: 2px; }

.pricing-bottom { display: grid; grid-template-columns: 1.3fr 0.9fr; gap: 1.5rem; }

.info-box, .contact-box {
  background: #fff;
  border-radius: 2px;
  padding: 2rem 1.8rem;
  box-shadow: 0 6px 24px rgba(0,0,0,0.06);
  border-bottom: 3px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.info-box:hover, .contact-box:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(58,37,16,0.12); border-bottom-color: var(--sand); }
.info-box h3, .contact-box h3       { margin-top: 0; margin-bottom: 1rem; font-size: 1.4rem; }
.info-box ul                         { margin: 0; padding-left: 18px; }
.info-box li                         { margin-bottom: 8px; line-height: 1.5; font-size: 0.95rem; }
.contact-box p                       { margin: 0 0 1.2rem; color: #5f5a54; line-height: 1.6; font-size: 0.95rem; }


/* ═══════════════════════════════════════════════
   SITUATION
   ═══════════════════════════════════════════════ */

#situation { background: #EDE5D5; overflow: hidden; }

.situation-grid    { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.situation-text h2 { font-size: clamp(2.2rem, 4vw, 3.4rem); color: var(--brown); margin-bottom: 1.5rem; }
.situation-text p  { font-size: 1rem; line-height: 1.8; color: var(--muted); margin-bottom: 1.5rem; }

.distances            { list-style: none; margin-top: 2rem; }
.distances li         { display: flex; justify-content: space-between; align-items: center; padding: 0.9rem 0; border-bottom: 1px solid var(--sand); font-size: 0.9rem; }
.distances li:first-child { border-top: 1px solid var(--sand); }
.dist-place           { color: var(--brown); font-weight: 500; }
.dist-time            { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--terracotta); font-style: italic; white-space: nowrap; margin-left: 1rem; }

.map-placeholder        { background: var(--green); border-radius: 4px; overflow: hidden; height: 620px; box-shadow: 0 8px 32px rgba(58,37,16,0.15); }
.map-placeholder iframe { width: 100%; height: 100%; border: 0; filter: sepia(20%) saturate(1.1); display: block; }


/* ═══════════════════════════════════════════════
   RÉSERVATION
   ═══════════════════════════════════════════════ */

#reserver { background: var(--cream); }

.booking-intro { font-size: 1rem; color: var(--muted); line-height: 1.7; margin: 0.8rem 0 0; }

.booking-wrapper { position: relative; width: 100%; max-width: 1100px; margin: 2.5rem auto 0; background: var(--cream); }

.booking-loader {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem;
  background: var(--cream); z-index: 2; min-height: 300px;
  transition: opacity 0.4s ease; pointer-events: none;
}
.booking-loader p      { font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.booking-loader.hidden { opacity: 0; pointer-events: none; }

.booking-spinner { width: 36px; height: 36px; border: 2px solid var(--sand); border-top-color: var(--terracotta); border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

#booking-iframe { display: block; width: 100%; height: 820px; border: none; background: transparent; transition: height 0.4s ease; overflow: auto; }


/* ═══════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════ */

#contact { background: var(--brown); color: var(--cream); position: relative; overflow: hidden; }
#contact::before { content: 'FC'; position: absolute; font-family: 'Cormorant Garamond', serif; font-size: 28rem; font-weight: 700; color: rgba(255,255,255,0.02); top: -4rem; right: -4rem; line-height: 1; pointer-events: none; user-select: none; }
#contact .section-label { color: var(--sand); }

.contact-grid    { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
.contact-info h2 { font-size: clamp(2rem, 4vw, 3.2rem); color: var(--cream); margin-bottom: 1.5rem; }
.contact-info p  { font-size: 0.95rem; line-height: 1.8; color: rgba(245,239,226,0.65); margin-bottom: 2rem; }

.contact-details     { list-style: none; }
.contact-details li  { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.2rem; font-size: 0.9rem; color: rgba(245,239,226,0.75); }
.contact-details svg { width: 18px; height: 18px; fill: var(--sand); flex-shrink: 0; margin-top: 2px; }

/* ═══════════════════════════════════════════════
   FORMULAIRE DE CONTACT
   Fond brun foncé (#3A2510) — couleurs assorties
   ═══════════════════════════════════════════════ */

/* Réorganisation de la grille contact pour accueillir le formulaire */
.contact-grid {  grid-template-columns: 1fr 1.5fr; /* légèrement plus large pour le formulaire */  gap: 4rem;  align-items: start;}

/* Wrapper du formulaire */
.contact-form-wrap {  width: 100%;}

/* Ligne double (Prénom + Nom) */
.cf-row {  display: grid;  grid-template-columns: 1fr 1fr;  gap: 1rem;}

/* Groupe label + input */
.cf-group {  display: flex;  flex-direction: column;  gap: 0.45rem;  margin-bottom: 1.1rem;}

/* Labels */
.cf-group label {  font-size: 0.72rem;  font-weight: 500;  letter-spacing: 0.1em;  text-transform: uppercase;  color: var(--sand);}

.cf-optional {
  font-weight: 400;  text-transform: none;  letter-spacing: 0;  font-size: 0.7rem;  color: rgba(226, 201, 154, 0.5);}

/* Inputs et textarea */
#contact-form input[type="text"],
#contact-form input[type="email"],
#contact-form input[type="tel"],
#contact-form textarea {  width: 100%;  background: rgba(245, 239, 226, 0.07);  border: 1px solid rgba(226, 201, 154, 0.25);  border-radius: 2px;  color: var(--cream);  font-family: 'Jost', sans-serif;  font-size: 0.9rem;  font-weight: 300;  padding: 0.75rem 1rem;  outline: none;  transition: border-color 0.25s, background 0.25s;  box-sizing: border-box;  -webkit-appearance: none;}

#contact-form input::placeholder,
#contact-form textarea::placeholder {  color: rgba(245, 239, 226, 0.3);}

#contact-form input:hover,
#contact-form textarea:hover {  border-color: rgba(226, 201, 154, 0.45);  background: rgba(245, 239, 226, 0.1);}

#contact-form input:focus,
#contact-form textarea:focus {  border-color: var(--sand);  background: rgba(245, 239, 226, 0.12);}

/* État erreur de validation */
#contact-form input:user-invalid,
#contact-form textarea:user-invalid {  border-color: #d95f5f;}

#contact-form textarea {  resize: vertical;  min-height: 130px;  line-height: 1.6;}

/* Bouton d'envoi */
.cf-btn {  display: inline-flex;  align-items: center;  gap: 0.6rem;  margin-top: 0.5rem;  padding: 0.75rem 1.8rem;  background: var(--terracotta);  color: var(--cream);  border: none;  border-radius: 2px;  font-family: 'Jost', sans-serif;  font-size: 0.72rem;  font-weight: 500;  letter-spacing: 0.15em;  text-transform: uppercase;  cursor: pointer;  transition: background 0.25s, transform 0.15s;}

.cf-btn:hover  { background: #a05a26; }
.cf-btn:active { transform: scale(0.98); }

.cf-btn-icon {  width: 16px;  height: 16px;  fill: currentColor;  transition: transform 0.2s;}

.cf-btn:hover .cf-btn-icon { transform: translateX(3px); }

/* État chargement du bouton */
.cf-btn.loading {  opacity: 0.7;  pointer-events: none;}

/* Messages de feedback */
.cf-feedback {  display: none;  margin-top: 1rem;  padding: 0.75rem 1rem;  border-radius: 2px;  font-size: 0.875rem;  line-height: 1.5;}

.cf-feedback.visible { display: block; }

.cf-success {  background: rgba(45, 120, 70, 0.2);  border: 1px solid rgba(45, 120, 70, 0.4);  color: #7ecb96;}

.cf-error {  background: rgba(180, 50, 50, 0.2);  border: 1px solid rgba(180, 50, 50, 0.4);  color: #e08080;}

/* ── Responsive ─────────────────────────────── */



/* ═══════════════════════════════════════════════
   AVIS GOOGLE
   ═══════════════════════════════════════════════ */

#avis { background: var(--green); color: var(--cream); position: relative; overflow: hidden; }

.avis-header { display: flex; align-items: center; justify-content: space-between; gap: 3rem; margin-bottom: 3.5rem; flex-wrap: wrap; }
.avis-title-wrap             { flex: 1; }
.avis-title-wrap .section-label { color: var(--sand); }
.avis-title-wrap h2          { font-size: clamp(2.2rem, 4vw, 3.2rem); color: var(--cream); line-height: 1.1; }
.avis-title-wrap h2 em       { color: var(--sand); }

.avis-score-wrap {
  display: flex; flex-direction: column; align-items: center; gap: 1.2rem;
  background: rgba(245,239,226,0.07); border: 1px solid rgba(226,201,154,0.2);
  border-radius: 4px; padding: 2rem 2.5rem; flex-shrink: 0;
}
.avis-score { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.avis-note  { font-size: 3.8rem; font-weight: 600; color: var(--sand); line-height: 1; }
.avis-stars { display: flex; gap: 3px; }
.avis-stars svg { width: 20px; height: 20px; fill: #FBBC05; }
.avis-count { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(226,201,154,0.6); }

.avis-cta-btn {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.7rem 1.4rem; border: 1px solid rgba(226,201,154,0.4); border-radius: 2px;
  color: var(--sand); transition: all 0.3s; white-space: nowrap;
}
.avis-cta-btn svg       { width: 16px; height: 16px; fill: var(--sand); }
.avis-cta-btn:hover     { background: var(--terracotta); border-color: var(--terracotta); color: var(--cream); }
.avis-cta-btn:hover svg { fill: var(--cream); }

.avis-carousel-wrap { position: relative; overflow: hidden; }
.avis-carousel      { display: flex; gap: 1.5rem; transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94); }

.avis-card {
  background: rgba(245,239,226,0.07); border: 1px solid rgba(245,239,226,0.12);
  border-radius: 4px; padding: 2rem;
  flex: 0 0 calc(33.333% - 1rem);
  display: flex; flex-direction: column; gap: 1.2rem;
  transition: border-color 0.3s, background 0.3s;
}
.avis-card:hover { background: rgba(245,239,226,0.11); border-color: rgba(226,201,154,0.3); }

.avis-card-top { display: flex; align-items: center; gap: 0.8rem; }
.avis-avatar   { width: 44px; height: 44px; border-radius: 50%; background: var(--terracotta); background-size: cover; color: var(--cream); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 600; flex-shrink: 0; }
.avis-meta     { flex: 1; }
.avis-author   { font-weight: 500; font-size: 0.9rem; color: var(--cream); }
.avis-date     { font-size: 0.75rem; color: rgba(245,239,226,0.45); margin-top: 2px; }

.avis-card-stars     { display: flex; gap: 2px; margin-left: auto; }
.avis-card-stars svg { width: 14px; height: 14px; fill: #FBBC05; }

.avis-text {
  font-family: 'Cormorant Garamond', serif; font-size: 1.05rem;
  font-style: italic; font-weight: 300; line-height: 1.7;
  color: rgba(245,239,226,0.80); flex: 1;
  border-left: 2px solid rgba(226,201,154,0.25); padding-left: 1rem;
}

.avis-google-logo { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(245,239,226,0.35); margin-top: auto; line-height: 1; }
.avis-google-logo svg { width: 16px; height: 16px; min-width: 16px; min-height: 16px; flex: 0 0 16px; display: block; }

.avis-controls { display: flex; align-items: center; justify-content: center; gap: 1.5rem; margin-top: 2rem; }
.avis-nav          { background: rgba(245,239,226,0.07); border: 1px solid rgba(226,201,154,0.2); border-radius: 2px; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s; }
.avis-nav svg      { width: 20px; height: 20px; fill: var(--sand); }
.avis-nav:hover    { background: rgba(226,201,154,0.15); border-color: var(--sand); }
.avis-nav:disabled { opacity: 0.3; cursor: default; }

.avis-dots { display: flex; gap: 0.5rem; }
.avis-dot  { width: 6px; height: 6px; border-radius: 50%; background: rgba(226,201,154,0.3); cursor: pointer; transition: background 0.3s, transform 0.3s; border: none; padding: 0; }
.avis-dot.active { background: var(--sand); transform: scale(1.3); }

.avis-footer   { text-align: center; margin-top: 2.5rem; }
.avis-all-link { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(226,201,154,0.6); border-bottom: 1px solid rgba(226,201,154,0.25); padding-bottom: 2px; transition: color 0.3s, border-color 0.3s; }
.avis-all-link svg   { width: 16px; height: 16px; fill: currentColor; }
.avis-all-link:hover { color: var(--sand); border-color: var(--sand); }


/* ═══════════════════════════════════════════════
   QUI SOMMES-NOUS
   ═══════════════════════════════════════════════ */

#equipe { background: #EDE5D5; position: relative; overflow: hidden; }

.equipe-header          { text-align: center; max-width: 680px; margin: 0 auto 3.5rem; }
.equipe-header h2       { font-size: clamp(2.2rem, 4vw, 3.4rem); color: var(--brown); }
.equipe-header .ornament { justify-content: center; }

.equipe-grid { display: grid; grid-template-columns: 0.85fr 1fr; gap: 5rem; align-items: center; }

.equipe-photo    { position: relative; }
.equipe-img-wrap { position: relative; border-radius: 3px; overflow: visible; }
.equipe-img-wrap img {
  width: 100%; height: 580px;
  object-fit: cover; object-position: top center;
  border-radius: 3px; box-shadow: 16px 20px 48px rgba(58,37,16,0.20);
  display: block; transition: transform 0.6s ease;
}
.equipe-img-wrap:hover img { transform: scale(1.02); }

.equipe-img-badge {
  position: absolute; bottom: -1.8rem; right: -1.8rem;
  background: var(--terracotta); color: var(--cream);
  width: 110px; height: 110px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  box-shadow: 0 8px 24px rgba(184,103,46,0.40); border: 4px solid #EDE5D5; gap: 0.15rem;
}
.equipe-badge-num   { font-size: 1.6rem; font-weight: 600; line-height: 1; color: var(--cream); }
.equipe-badge-label { font-size: 0.55rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(245,239,226,0.80); line-height: 1.3; }

.equipe-text p      { font-size: 1rem; line-height: 1.85; color: var(--muted); margin-bottom: 10px; }
.equipe-text strong { color: var(--brown); font-weight: 500; }

.equipe-quote {
  font-family: 'Cormorant Garamond', serif; font-size: 1.25rem;
  font-style: italic; font-weight: 400; color: var(--terracotta);
  border-left: 3px solid var(--sand); padding: 0.8rem 0 0.8rem 1.5rem;
  margin: 2rem 0; line-height: 1.6;
}

.equipe-signature  { margin-top: 2rem; }
.equipe-sig-line   { width: 48px; height: 2px; background: var(--sand); margin-bottom: 1rem; }
.equipe-sig-names  { font-size: 1.6rem; font-weight: 600; color: var(--brown); line-height: 1; margin-bottom: 0.35rem; }
.equipe-sig-sub    { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin: 0; }

/* ═══════════════════════════════════════════════
   GUIDE TOURISTIQUE
   ═══════════════════════════════════════════════ */

#guide { background: var(--cream); }

.guide-header { text-align: center; max-width: 680px; margin: 0 auto 3rem; }
.guide-header h2 { font-size: clamp(2.2rem, 4vw, 3.4rem); color: var(--brown); margin-bottom: 1rem; }
.guide-intro    { font-size: 1rem; color: var(--muted); line-height: 1.7; }

/* ── Onglets ── */
.guide-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 3rem;
}
.guide-tab {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.65rem 1.4rem;
  border: 1px solid var(--sand);
  border-radius: 2px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.3s;
}
.guide-tab:hover  { border-color: var(--terracotta); color: var(--terracotta); }
.guide-tab.active { background: var(--terracotta); border-color: var(--terracotta); color: var(--cream); }

/* ── Panels ── */
.guide-panel         { display: none; }
.guide-panel.active  { display: block; }

/* ── Grille de cards ── */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.guide-grid--center { grid-template-columns: repeat(1, minmax(0, 480px)); justify-content: center; }

/* ── Card ── */
.guide-card {
  background: #fff;
  border-radius: 3px;
  padding: 1.8rem;
  box-shadow: 0 4px 20px rgba(58,37,16,0.07);
  border-left: 3px solid var(--sand);
  display: flex;
  gap: 1.2rem;
  min-width: 0;
  overflow-wrap: anywhere;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.guide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(58,37,16,0.13);
  border-left-color: var(--terracotta);
}
.guide-card--featured {
  border-left-color: var(--terracotta);
  background: #fdf9f5;
}

.guide-card-icon {
  font-size: 1.8rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.guide-card-body  { flex: 1; min-width: 0; }
.guide-card-name  { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 600; color: var(--brown); margin-bottom: 0.2rem; }
.guide-card-dist  { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 0.7rem; }
.guide-card-desc  { font-size: 0.88rem; line-height: 1.7; color: var(--muted); margin-bottom: 0.8rem; }

.guide-link {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--terracotta);
  border-bottom: 1px solid rgba(184,103,46,0.3);
  padding-bottom: 1px;
  transition: border-color 0.3s;
}
.guide-link:hover { border-color: var(--terracotta); }
.guide-link { overflow-wrap: anywhere; word-break: break-word; }

/* Responsive */
@media (max-width: 900px) {
  .guide-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 600px) {
  .guide-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .guide-tabs {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .guide-tab  {
    width: 100%;
    font-size: 0.68rem;
    padding: 0.7rem 0.9rem;
  }

  .guide-card {
    padding: 1.2rem;
    gap: 0.9rem;
  }

  .cf-row { grid-template-columns: 1fr; gap: 0; }
}


/* ═══════════════════════════════════════════════
   RÉSEAUX SOCIAUX
   ═══════════════════════════════════════════════ */

.soc-card {
  display: flex; flex-direction: column; align-items: center; gap: 0.9rem;
  padding: 2rem 1.6rem; background: rgba(245,239,226,0.06);
  border: 1px solid rgba(245,239,226,0.12); border-radius: 4px;
  width: 180px; cursor: pointer; transition: all 0.3s; text-decoration: none; color: inherit;
}
.soc-card:hover     { background: rgba(245,239,226,0.12); border-color: rgba(226,201,154,0.4); transform: translateY(-5px); box-shadow: 0 12px 32px rgba(0,0,0,0.3); }
.soc-icon           { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: transform 0.3s; flex-shrink: 0; }
.soc-card:hover .soc-icon { transform: scale(1.1); }
.soc-name           { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 600; color: #E2C99A; }
.soc-handle         { font-size: 0.72rem; color: rgba(245,239,226,0.45); text-align: center; }
.soc-action         { font-size: 0.62rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; padding: 0.35rem 0.9rem; border: 1px solid rgba(226,201,154,0.3); border-radius: 2px; color: rgba(226,201,154,0.7); transition: all 0.3s; }
.soc-card:hover .soc-action { border-color: #E2C99A; color: #E2C99A; background: rgba(226,201,154,0.08); }


/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */

footer          { background: #1A1208; padding: 3rem 2rem; text-align: center; }
.footer-logo    { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 600; color: var(--sand); margin-bottom: 1rem; }
.footer-links   { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2rem; list-style: none; margin-bottom: 1.5rem; }
.footer-links a       { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(245,239,226,0.4); transition: color 0.3s; }
.footer-links a:hover { color: var(--sand); }
.footer-copy    { font-size: 0.78rem; color: rgba(245,239,226,0.25); }


/* ═══════════════════════════════════════════════
   MODALE GALERIE
   ═══════════════════════════════════════════════ */

.gallery-modal {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(26,18,8,0.96);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.gallery-modal.open { opacity: 1; pointer-events: all; }

.gallery-inner { width: 100%; max-width: 1000px; max-height: 95vh; display: flex; flex-direction: column; padding: 0 2rem; gap: 1.2rem; }

.gallery-header     { display: flex; align-items: center; justify-content: space-between; padding-bottom: 0.8rem; border-bottom: 1px solid rgba(226,201,154,0.2); }
.gallery-title-wrap { display: flex; align-items: baseline; gap: 1rem; }
.gallery-name       { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 600; color: var(--sand); }
.gallery-counter    { font-size: 0.72rem; letter-spacing: 0.18em; color: rgba(226,201,154,0.5); text-transform: uppercase; }

.gallery-close       { background: none; border: 1px solid rgba(226,201,154,0.3); border-radius: 2px; padding: 0.5rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: border-color 0.3s, background 0.3s; }
.gallery-close svg   { width: 20px; height: 20px; fill: var(--sand); }
.gallery-close:hover { background: rgba(226,201,154,0.1); border-color: var(--sand); }

.gallery-stage        { position: relative; display: flex; align-items: center; gap: 1rem; }
.gallery-img-wrap     { flex: 1; height: 54vh; border-radius: 3px; overflow: hidden; background: rgba(0,0,0,0.3); }
.gallery-img-wrap img { width: 100%; height: 100%; object-fit: contain; transition: opacity 0.25s ease; }
.gallery-img-wrap img.fade { opacity: 0; }

.gallery-nav       { background: rgba(245,239,226,0.07); border: 1px solid rgba(226,201,154,0.2); border-radius: 2px; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; cursor: pointer; flex-shrink: 0; transition: background 0.3s, border-color 0.3s; }
.gallery-nav svg   { width: 24px; height: 24px; fill: var(--sand); }
.gallery-nav:hover { background: rgba(226,201,154,0.15); border-color: var(--sand); }

.gallery-thumbs      { display: flex; gap: 0.6rem; overflow-x: auto; padding-bottom: 0.3rem; scrollbar-width: thin; scrollbar-color: rgba(226,201,154,0.3) transparent; }
.gallery-thumb       { width: 72px; height: 54px; border-radius: 2px; overflow: hidden; flex-shrink: 0; cursor: pointer; border: 2px solid transparent; opacity: 0.55; transition: opacity 0.3s, border-color 0.3s; }
.gallery-thumb img   { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb.active { border-color: var(--terracotta); opacity: 1; }
.gallery-thumb:hover  { opacity: 0.85; }


/* ═══════════════════════════════════════════════
   BOOKING MODALE
   ═══════════════════════════════════════════════ */

.booking-modal {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(26,18,8,0.88);
  display: flex; align-items: center; justify-content: center; padding: 1rem;
  opacity: 0; pointer-events: none; transition: opacity 0.35s ease;
}
.booking-modal.open { opacity: 1; pointer-events: all; }

.booking-modal-inner {
  background: var(--cream); border-radius: 4px;
  width: 100%; max-width: 900px; height: 90vh; max-height: 860px;
  display: flex; flex-direction: column;
  overflow: hidden; box-shadow: 0 24px 80px rgba(0,0,0,0.5);
  transform: translateY(20px); transition: transform 0.35s ease;
}
.booking-modal.open .booking-modal-inner { transform: translateY(0); }

.booking-modal-header  { display: flex; align-items: center; justify-content: space-between; padding: 1.2rem 1.8rem; background: var(--brown); flex-shrink: 0; }
.booking-modal-title   { display: flex; align-items: center; gap: 0.7rem; color: var(--sand); }
.booking-modal-title svg  { width: 20px; height: 20px; fill: var(--sand); flex-shrink: 0; }
.booking-modal-title span { font-size: 1.2rem; font-weight: 600; color: var(--sand); }

.booking-modal-close       { background: rgba(245,239,226,0.08); border: 1px solid rgba(245,239,226,0.2); border-radius: 2px; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.3s, border-color 0.3s; flex-shrink: 0; }
.booking-modal-close svg   { width: 20px; height: 20px; fill: var(--sand); }
.booking-modal-close:hover { background: rgba(245,239,226,0.15); border-color: var(--sand); }

.booking-modal-body { flex: 1; position: relative; overflow: hidden; }

.booking-modal-loader {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem;
  background: var(--cream); z-index: 2; transition: opacity 0.4s ease;
}
.booking-modal-loader p      { font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.booking-modal-loader.hidden { opacity: 0; pointer-events: none; }

#booking-modal-iframe { width: 100%; height: 100%; border: none; display: block; }

.booking-modal, .gallery-modal {  overscroll-behavior: contain;  -webkit-overflow-scrolling: auto;}


/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */

/* 900–1100px */
@media (max-width: 1100px) {
  nav          { padding: 1.2rem 2rem; }
  .nav-links   { gap: 1.2rem; }
  .nav-links a { font-size: 0.62rem; letter-spacing: 0.08em; }
  .nav-cta     { display: none; }
  .about-grid  { gap: 3.5rem; }
  #lang-code   { display: none; }
}

/* Tablette ≤ 900px */
@media (max-width: 900px) {
  nav                   { padding: 1.2rem 1.5rem; }
  .nav-links, .nav-cta  { display: none; }
  .hamburger            { display: flex; }

  .about-grid, .contact-grid, .situation-grid { grid-template-columns: 1fr; gap: 3rem; }
  .gites-grid           { grid-template-columns: 1fr 1fr; }
  .equip-grid           { grid-template-columns: 1fr 1fr; }
  .about-img-accent     { display: none; }
  .about-img-main       { height: 360px; }
  .map-placeholder      { height: 320px; }
  .pricing-grid, .pricing-bottom { grid-template-columns: 1fr; }
  .pricing-card.featured        { transform: none; }
  .pricing-card.featured:hover  { transform: translateY(-8px); }
  .contact-grid         { gap: 2.5rem; }
  #booking-iframe       { height: 1000px; }

  .avis-header     { flex-direction: column; align-items: flex-start; }
  .avis-score-wrap { width: 100%; flex-direction: row; justify-content: space-between; }
  .avis-card       { flex: 0 0 calc(50% - 0.75rem); }

  .equipe-grid         { grid-template-columns: 1fr; gap: 4rem; }
  .equipe-img-wrap img { height: 420px; }
  .equipe-img-badge    { right: 1rem; bottom: -1.5rem; width: 90px; height: 90px; }
  .equipe-badge-num    { font-size: 1.3rem; }
  
  .nav-cta3 { border: 1px solid #B8672E;}
}

/* Mobile ≤ 600px */
@media (max-width: 600px) {
  section               { padding: 4.5rem 0; }
  .gites-grid           { grid-template-columns: 1fr; }
  .equip-grid           { grid-template-columns: 1fr 1fr; }
  .about-stats          { grid-template-columns: 1fr 1fr; }
  .map-placeholder      { height: 260px; }
  .pricing-section      { padding: 4.5rem 1rem; }
  #booking-iframe       { height: 1200px; }
  .soc-card             { width: calc(50% - 0.7rem); min-width: 130px; padding: 1.4rem 1rem; }

  .avis-card       { flex: 0 0 100%; }
  .avis-score-wrap { flex-direction: column; }

  .equipe-img-wrap img { height: 320px; object-position: top; }
  .equipe-img-badge    { width: 80px; height: 80px; right: 0.5rem; }
  .equipe-badge-num    { font-size: 1.1rem; }

  .gallery-inner    { padding: 0 1rem; gap: 0.8rem; }
  .gallery-img-wrap { height: 40vh; }
  .gallery-nav      { width: 36px; height: 36px; }
  .gallery-thumb    { width: 56px; height: 42px; }

  .booking-modal       { padding: 0; }
  .booking-modal-inner { height: 100dvh; max-height: 100dvh; border-radius: 0; }
}

/* ≤ 400px */
@media (max-width: 400px) {
  .equip-grid         { grid-template-columns: 1fr; }
  .soc-card           { width: calc(50% - 0.5rem); padding: 1.2rem 0.8rem; }
  .hero-content > img { max-width: 90vw; }
  .about-stats        { grid-template-columns: 1fr 1fr; }
}

.admin-link{position:fixed;right:16px;bottom:16px;z-index:60;padding:.7rem .95rem;background:rgba(46,74,48,.92);color:#fff;border-radius:999px;font-size:.75rem;letter-spacing:.04em;box-shadow:0 10px 30px rgba(0,0,0,.18)}
.admin-link:hover{opacity:.92;color:#fff}
