/* ═══════════════════════════════════════════════════════════════
   MOULIN DE BLUYE — Feuille de style partagée
   style.css

   Structure :
   1. Reset & Variables
   2. Base
   3. Navigation  ← index.html : transparent → scrolled via JS
                  ← mentions-legales.html : <nav class="scrolled"> fixe
   4. Menu mobile
   5. Footer
   6. Utilitaires communs
   7. Anti-spam email
   8. Responsive commun
   ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ──
   9.  INDEX.HTML — styles spécifiques
   10. MENTIONS-LEGALES.HTML — styles spécifiques
═══════════════════════════════════════════════════════════════ */


/* ───────────────────────────────────────────────────────────────
   1. RESET & VARIABLES
─────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --vert-mousse:   #4a5e45;
  --vert-eau:      #6b8f71;
  --terre:         #8b6f5c;
  --pierre:        #c4b5a5;
  --sable:         #f0ebe3;
  --blanc-creme:   #faf8f5;
  --brun-fonce:    #2d2420;
  --texte:         #3a3330;
  --texte-doux:    #6b6260;

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

  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}


/* ───────────────────────────────────────────────────────────────
   2. BASE
─────────────────────────────────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--texte);
  background: var(--blanc-creme);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }


/* ───────────────────────────────────────────────────────────────
   3. NAVIGATION
   — État par défaut : transparent (hero de index.html)
   — .scrolled      : fond clair (déclenché par JS sur index,
                      ou mis directement en HTML sur les autres pages)
─────────────────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), box-shadow var(--transition);
}

nav.scrolled {
  background: rgba(250, 248, 245, 0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 20px rgba(0,0,0,0.07);
}

/* Logo */
.nav-logo {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #fff;
  opacity: 0;
  transition: color var(--transition), opacity var(--transition);
}
nav.scrolled .nav-logo { color: var(--brun-fonce); opacity: 1; }

/* Liens */
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
}
nav.scrolled .nav-links a { color: var(--texte-doux); }
.nav-links a:hover { color: var(--vert-eau) !important; }

/* Sélecteur de langue */
.nav-lang {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
  padding: 0.3rem 0;
}
nav.scrolled .nav-lang { color: var(--texte-doux); }
.nav-lang:hover { color: var(--vert-eau) !important; }
.lang-flag { font-size: 1.05rem; line-height: 1; }

/* Bouton Réserver */
.nav-cta {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  border: 1px solid rgba(255,255,255,0.6);
  color: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-cta:hover { background: #fff; color: var(--brun-fonce); }
nav.scrolled .nav-cta { border-color: var(--vert-mousse); color: var(--vert-mousse); }
nav.scrolled .nav-cta:hover { background: var(--vert-mousse); color: #fff; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  z-index: 101;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transform-origin: center;
  transition: transform 0.35s ease, opacity 0.25s ease, background var(--transition);
}
nav.scrolled .hamburger span { background: var(--brun-fonce); }

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.hamburger.active span              { background: var(--brun-fonce); }


/* ───────────────────────────────────────────────────────────────
   4. MENU MOBILE
─────────────────────────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--blanc-creme);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-16px);
  transition: opacity 0.4s ease, visibility 0.4s, transform 0.4s ease;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mobile-menu a {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--brun-fonce);
  letter-spacing: 0.04em;
  padding: 0.75rem 2rem;
  position: relative;
  transition: color 0.3s;
}
.mobile-menu a::after {
  content: '';
  position: absolute;
  bottom: 0.6rem; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 24px; height: 1px;
  background: var(--vert-eau);
  transition: transform 0.3s ease;
}
.mobile-menu a:hover { color: var(--vert-mousse); }
.mobile-menu a:hover::after { transform: translateX(-50%) scaleX(1); }

.mobile-menu-footer {
  position: absolute;
  bottom: 2.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pierre);
}

/* Lien langue dans le menu mobile */
.mobile-lang {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans) !important;
  font-size: 0.9rem !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase;
  color: var(--texte-doux) !important;
  margin-top: 0.5rem;
}
.mobile-lang::after { display: none !important; }


/* ───────────────────────────────────────────────────────────────
   5. FOOTER
─────────────────────────────────────────────────────────────── */
footer {
  background: var(--brun-fonce);
  color: rgba(255,255,255,0.5);
  padding: 3rem 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-address {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-style: normal;
}
.footer-address a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.3s;
}
.footer-address a:hover { color: rgba(255,255,255,0.75); }
.footer-logo {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: rgba(255,255,255,0.75);
}
.footer-location {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.footer-links a {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  transition: color 0.3s;
}
.footer-links a:hover  { color: rgba(255,255,255,0.75); }
.footer-links .active  { color: rgba(255,255,255,0.75); }
.footer-copy { font-size: 0.78rem; }


/* ───────────────────────────────────────────────────────────────
   6. UTILITAIRES COMMUNS
─────────────────────────────────────────────────────────────── */
.deco-line {
  width: 40px;
  height: 2px;
  background: var(--vert-eau);
  margin: 1.5rem 0;
}

.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--vert-eau);
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--brun-fonce);
  margin-bottom: 1.2rem;
}
.section-title em { font-style: italic; color: var(--vert-mousse); }

.section-intro {
  font-size: 1.05rem;
  color: var(--texte-doux);
  max-width: 600px;
  line-height: 1.8;
}


/* ───────────────────────────────────────────────────────────────
   7. ANTI-SPAM EMAIL
─────────────────────────────────────────────────────────────── */
.ep-at::before {
  content: "\0040"; /* @ injecté via CSS uniquement */
}


/* ───────────────────────────────────────────────────────────────
   8. RESPONSIVE — COMMUN
─────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links,
  .nav-cta,
  .nav-lang  { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 580px) {
  .footer-inner  { flex-direction: column; text-align: center; }
  .footer-links  { flex-wrap: wrap; justify-content: center; }
}




/* ═══════════════════════════════════════════════════════════════
   9. INDEX.HTML — Styles spécifiques
═══════════════════════════════════════════════════════════════ */

/* ── HÉRO ── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(20, 35, 20, 0.45) 0%,
      rgba(30, 50, 30, 0.25) 40%,
      rgba(20, 30, 20, 0.55) 100%
    ),
    radial-gradient(ellipse at 20% 50%, rgba(60, 90, 50, 0.6) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(40, 70, 60, 0.5) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(80, 60, 40, 0.4) 0%, transparent 55%),
    linear-gradient(160deg, #2d4a2d 0%, #3d5a3a 25%, #4a6e55 50%, #5a7845 75%, #3a5030 100%);
  z-index: 0;
}

/* Ondulations */
.hero-water {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 180px;
  z-index: 1;
  overflow: hidden;
}
.hero-water svg {
  position: absolute;
  bottom: 0;
  width: 300%;
}
.wave1 { animation: wave  8s linear infinite;         opacity: 0.35; }
.wave2 { animation: wave 14s linear infinite reverse; opacity: 0.22; bottom: -8px; }
.wave3 { animation: wave 20s linear infinite;         opacity: 0.12; bottom: -18px; }

@keyframes wave {
  0%   { transform: translateX(-33.333%); }
  100% { transform: translateX(-66.667%); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 1.5rem;
  max-width: 780px;
}

.hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.2rem;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 300;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 1rem;
}
.hero-title em { font-style: italic; color: rgba(255,255,255,0.82); }

.hero-subtitle {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-price {
  margin-top: 1.4rem;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
}
.hero-price strong { color: rgba(255,255,255,0.9); font-weight: 500; }

/* ── BOUTONS ── */
.btn-primary {
  padding: 0.85rem 2.2rem;
  background: var(--vert-mousse);
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  transition: background var(--transition), transform 0.2s;
}
.btn-primary:hover { background: #3a4d36; transform: translateY(-1px); }

.btn-outline {
  padding: 0.85rem 2.2rem;
  background: transparent;
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.55);
  cursor: pointer;
  border-radius: 2px;
  transition: all var(--transition);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.8); }

/* ── SECTIONS COMMUNES (index) ── */
section { padding: 5rem 2rem; }

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

/* ── AMBIANCE ── */
#ambiance { background: var(--blanc-creme); }

.ambiance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3.5rem;
}
.ambiance-text p { color: var(--texte-doux); line-height: 1.85; margin-bottom: 1.2rem; }

.ambiance-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}

.img-placeholder {
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}
.img-placeholder img        { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.img-placeholder:first-child  { grid-row: span 2; background: linear-gradient(160deg, #4a6e55 0%, #3d5a3a 100%); min-height: 320px; }
.img-placeholder:nth-child(2) { background: linear-gradient(160deg, #6b8f71 0%, #4a5e45 100%); min-height: 150px; }
.img-placeholder:nth-child(3) { background: linear-gradient(160deg, #8b6f5c 0%, #7a5e4e 100%); min-height: 150px; }
.img-placeholder::after {
  content: attr(data-label);
  position: absolute;
  bottom: 0.8rem; left: 0.8rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  font-family: var(--sans);
}
.img-icon { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); opacity: 0.25; }

/* ── GÎTE / CHAMBRES ── */
#gite { background: var(--sable); }

.chambres-header { text-align: center; margin-bottom: 3.5rem; }
.chambres-header .deco-line    { margin: 1.5rem auto; }
.chambres-header .section-intro { margin: 0 auto; text-align: center; }

.chambres-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }

.chambre-card {
  background: var(--blanc-creme);
  border-radius: 4px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.chambre-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }

.chambre-img {
  height: 240px;
  position: relative;
  overflow: hidden;
}
.chambre-img img,
.spa-main-img img,
.mosaic-item img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

.chambre-card:first-child .chambre-img { background: linear-gradient(160deg, #7a6a5a 0%, #5a4e42 100%); }
.chambre-card:last-child  .chambre-img { background: linear-gradient(160deg, #4a6e55 0%, #3d5a3a 100%); }

.chambre-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: rgba(255,255,255,0.92);
  color: var(--vert-mousse);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  z-index: 1;
}
.chambre-body { padding: 1.8rem; }
.chambre-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--brun-fonce);
  margin-bottom: 0.5rem;
}
.chambre-desc { font-size: 0.92rem; color: var(--texte-doux); line-height: 1.75; margin-bottom: 1.2rem; }

.chambre-features { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.feature-tag {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.75rem;
  background: var(--sable);
  color: var(--texte-doux);
  border-radius: 20px;
}

/* ── DORTOIR ── */
.dortoir-option { margin-top: 2.5rem; }
.dortoir-inner {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  background: var(--sable);
  border: 1px solid var(--pierre);
  border-radius: 4px;
  padding: 2.5rem;
}
.dortoir-icon {
  flex-shrink: 0;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--blanc-creme);
  border: 1px solid var(--pierre);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vert-mousse);
}
.dortoir-text { flex: 1; }
.dortoir-label { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--terre); margin-bottom: 0.4rem; }
.dortoir-title { font-family: var(--serif); font-size: 1.8rem; font-weight: 400; color: var(--brun-fonce); margin-bottom: 0.75rem; }
.dortoir-desc  { color: var(--texte-doux); font-size: 0.95rem; line-height: 1.7; max-width: 560px; }
.dortoir-cta {
  flex-shrink: 0;
  align-self: center;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 1.8rem;
  background: var(--vert-mousse);
  color: #fff;
  border-radius: 2px;
  white-space: nowrap;
  transition: background var(--transition), transform 0.2s;
}
.dortoir-cta:hover { background: #3a4d36; transform: translateY(-1px); }

@media (max-width: 768px) {
  .dortoir-inner { flex-direction: column; padding: 1.8rem; }
  .dortoir-cta   { align-self: flex-start; }
}

/* ── SPA ── */
#spa {
  background: var(--brun-fonce);
  color: #fff;
  position: relative;
  overflow: hidden;
}
#spa::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(107,143,113,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(74,94,69,0.2)     0%, transparent 50%);
  pointer-events: none;
}
.spa-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.spa-text .section-title { color: #fff; }
.spa-text .section-label { color: var(--vert-eau); }
.spa-text p { color: rgba(255,255,255,0.7); line-height: 1.85; margin-bottom: 1.2rem; font-size: 0.95rem; }

.spa-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.spa-feature  { display: flex; align-items: flex-start; gap: 0.8rem; }
.spa-feature-icon {
  width: 36px; height: 36px;
  border: 1px solid rgba(107,143,113,0.5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.spa-feature-text { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.6; }
.spa-feature-name { font-size: 0.9rem; color: rgba(255,255,255,0.9); font-weight: 500; display: block; margin-bottom: 0.15rem; }

.spa-visual   { position: relative; }
.spa-main-img {
  height: 420px;
  border-radius: 4px;
  background: linear-gradient(160deg, #3a5a5a 0%, #254545 100%);
  position: relative;
  overflow: hidden;
}
.spa-main-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 50%);
}
.bubble { display: none; }

/* ── NATURE ── */
#nature { background: var(--blanc-creme); padding: 6rem 2rem; }
.nature-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; align-items: center; }

.nature-mosaic { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.mosaic-item   { border-radius: 3px; overflow: hidden; position: relative; }
.mi1 { height: 260px; background: linear-gradient(160deg, #3d5a3a 0%, #2d4228 100%); grid-row: span 2; }
.mi2 { height: 125px; background: linear-gradient(160deg, #6b8f71 0%, #4a6855 100%); }
.mi3 { height: 125px; background: linear-gradient(160deg, #5a7845 0%, #3d5530 100%); }
.mi4 { height: 140px; background: linear-gradient(160deg, #8b9f6e 0%, #6a7d50 100%); grid-column: span 2; }
.mosaic-item span {
  position: absolute;
  bottom: 0.8rem; left: 0.8rem;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.nature-text p { color: var(--texte-doux); line-height: 1.85; margin-bottom: 1.2rem; }
.nature-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(--pierre);
}
.stat-item   { text-align: center; }
.stat-number { font-family: var(--serif); font-size: 2.2rem; font-weight: 300; color: var(--vert-mousse); display: block; }
.stat-label  { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--texte-doux); }

/* ── ALENTOURS ── */
#alentours { background: var(--sable); }
.alentours-header { text-align: center; margin-bottom: 3.5rem; }
.alentours-header .deco-line { margin: 1.5rem auto; }

.alentours-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.alentour-card {
  background: var(--blanc-creme);
  border-radius: 4px;
  padding: 1.8rem 1.5rem;
  text-align: center;
  transition: transform var(--transition);
}
.alentour-card:hover { transform: translateY(-3px); }
.alentour-icon {
  width: 52px; height: 52px;
  background: var(--sable);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.4rem;
}
.alentour-name { font-family: var(--serif); font-size: 1.1rem; color: var(--brun-fonce); margin-bottom: 0.5rem; }
.alentour-desc { font-size: 0.85rem; color: var(--texte-doux); line-height: 1.65; }

/* ── CONTACT ── */
#contact { background: var(--vert-mousse); color: #fff; padding: 6rem 2rem; }
.contact-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.contact-inner .section-label     { color: rgba(255,255,255,0.6); }
.contact-inner .section-title     { color: #fff; }
.contact-inner .section-title em  { color: rgba(255,255,255,0.75); }
.contact-inner p                  { color: rgba(255,255,255,0.75); margin-bottom: 2.5rem; font-size: 1rem; }

.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; text-align: left; }
.form-group   { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: span 2; }
.form-group label { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.6); }

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 2px;
  padding: 0.75rem 1rem;
  color: #fff;
  font-family: var(--sans);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.3s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: rgba(255,255,255,0.6); }
.form-group select option  { color: var(--texte); background: #fff; }
.form-group textarea       { resize: vertical; min-height: 100px; }

.form-submit {
  grid-column: span 2;
  background: #fff;
  color: var(--vert-mousse);
  border: none;
  padding: 1rem 2.5rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: all var(--transition);
  margin-top: 0.5rem;
  justify-self: center;
}
.form-submit:hover { background: var(--sable); transform: translateY(-1px); }

.contact-alt { margin-top: 2.5rem; font-size: 0.88rem; color: rgba(255,255,255,0.6); }
.contact-alt a { color: rgba(255,255,255,0.85); border-bottom: 1px solid rgba(255,255,255,0.3); transition: border-color 0.3s; }
.contact-alt a:hover { border-color: #fff; }

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

/* ── RESPONSIVE INDEX ── */
@media (max-width: 900px) {
  .ambiance-grid,
  .spa-grid,
  .nature-layout { grid-template-columns: 1fr; gap: 2.5rem; }

  .chambres-grid    { grid-template-columns: 1fr; }
  .alentours-cards  { grid-template-columns: 1fr 1fr; }
  .contact-form     { grid-template-columns: 1fr; }
  .form-group.full,
  .form-submit      { grid-column: span 1; }
  .ambiance-images  { grid-template-rows: 200px 150px; }
}

@media (max-width: 580px) {
  section           { padding: 3.5rem 1.2rem; }
  .alentours-cards  { grid-template-columns: 1fr; }
  .nature-stats     { grid-template-columns: 1fr; gap: 1rem; }
}




/* ═══════════════════════════════════════════════════════════════
   10. MENTIONS-LEGALES.HTML — Styles spécifiques
═══════════════════════════════════════════════════════════════ */

/* ── HÉRO MENTIONS ── */
.page-hero {
  padding-top: 8rem;
  padding-bottom: 4rem;
  background: var(--brun-fonce);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(74,94,69,0.35)    0%, transparent 55%),
    radial-gradient(ellipse at 75% 30%, rgba(107,143,113,0.2)  0%, transparent 50%);
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 1; }

.page-hero .section-label { display: block; margin-bottom: 1rem; }
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 1rem;
}
.page-hero h1 em { font-style: italic; color: rgba(255,255,255,0.75); }
.page-hero .deco-line { margin: 1.5rem auto; }
.page-hero-sub {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ── CONTENU MENTIONS ── */
.mentions-body { padding: 5rem 2rem 6rem; background: var(--blanc-creme); }
.mentions-container { max-width: 780px; margin: 0 auto; }

.mentions-section {
  margin-bottom: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--pierre);
}
.mentions-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.mentions-section-label { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--vert-eau); margin-bottom: 0.6rem; }

.mentions-section h2 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--brun-fonce);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.mentions-section h2 em { font-style: italic; color: var(--vert-mousse); }

.mentions-section h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--brun-fonce);
  margin-top: 1.8rem;
  margin-bottom: 0.75rem;
}
.mentions-section p { color: var(--texte-doux); line-height: 1.85; margin-bottom: 1rem; font-size: 0.95rem; }
.mentions-section p:last-child { margin-bottom: 0; }

.mentions-section a {
  color: var(--vert-mousse);
  border-bottom: 1px solid rgba(74,94,69,0.3);
  transition: border-color 0.3s;
}
.mentions-section a:hover { border-color: var(--vert-mousse); }

.info-block {
  background: var(--sable);
  border-left: 3px solid var(--vert-eau);
  border-radius: 0 3px 3px 0;
  padding: 1.5rem 1.8rem;
  margin-bottom: 1.5rem;
}
.info-block p              { margin-bottom: 0.4rem; font-size: 0.92rem; color: var(--texte-doux); }
.info-block p:last-child   { margin-bottom: 0; }
.info-block strong         { color: var(--texte); font-weight: 500; }

/* ── RESPONSIVE MENTIONS ── */
@media (max-width: 580px) {
  .mentions-body { padding: 3.5rem 1.2rem 4rem; }
}
