/* ═══════════════════════════════════════════════
   Le Lord Godet — Feuille de style commune
   Version 2.0 — Architecture multi-pages
   ═══════════════════════════════════════════════ */

:root {
  --vert-foret: #2C3D2A;
  --vert-mousse: #4A5E3A;
  --vert-clair: #6B7F5A;
  --pierre: #C4B89A;
  --pierre-clair: #E8DFC8;
  --creme: #F5F0E8;
  --bois: #8B6340;
  --bois-fonce: #5C3D1E;
  --or: #C9A84C;
  --blanc-chaud: #FDFAF4;
  --texte: #2A2018;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Raleway', sans-serif;
  background: var(--blanc-chaud);
  color: var(--texte);
  overflow-x: hidden;
}

/* ─── TEXTURE GRAIN ─── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  background: rgba(44,61,42,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem; height: 68px;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 300; letter-spacing: .12em;
  color: var(--pierre-clair); text-decoration: none;
}
.nav-logo span, .nav-logo em { color: var(--or); font-style: italic; }
nav ul { list-style: none; display: flex; gap: 2.2rem; }
nav ul a {
  text-decoration: none; color: var(--pierre);
  font-size: .72rem; letter-spacing: .15em; text-transform: uppercase;
  font-weight: 500; transition: color .2s;
}
nav ul a:hover, nav ul a.active { color: var(--or); }
.nav-tel {
  font-size: .8rem; color: var(--or); letter-spacing: .05em;
  text-decoration: none; font-weight: 500;
}

/* ─── HERO INTERNE (pages secondaires) ─── */
.hero-interne {
  min-height: 44vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 100px 2rem 60px;
  position: relative;
}
.hero-interne::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 60px;
  background: var(--blanc-chaud);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-interne.bg-vert { background: linear-gradient(160deg, var(--vert-foret) 0%, var(--bois-fonce) 100%); }
.hero-interne.bg-creme { background: linear-gradient(160deg, var(--creme) 0%, var(--pierre-clair) 100%); }
.hero-interne .hero-annee {
  font-size: .7rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--or); margin-bottom: 1rem;
}
.hero-interne h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300; line-height: 1.05;
  color: var(--blanc-chaud); letter-spacing: .04em;
}
.hero-interne.bg-creme h1 { color: var(--vert-foret); }
.hero-interne h1 em { font-style: italic; color: var(--pierre-clair); }
.hero-interne.bg-creme h1 em { color: var(--bois); }
.hero-interne .hero-sous {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-style: italic; font-weight: 300;
  color: var(--pierre); margin-top: .8rem; letter-spacing: .06em;
}

/* ─── SECTIONS COMMUNES ─── */
section { position: relative; }
.section-inner { max-width: 1140px; margin: 0 auto; padding: 90px 2rem; }
.section-label {
  font-size: .68rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--or); font-weight: 500; margin-bottom: .7rem;
  display: block;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 300; line-height: 1.15; margin-bottom: 1rem;
  color: var(--vert-foret);
}
.section-title em { font-style: italic; color: var(--bois); }
.trait {
  width: 50px; height: 2px;
  background: linear-gradient(90deg, var(--or), transparent);
  margin: 0 auto 2.5rem;
}
.trait-left { margin: 0 0 2rem; }

/* ─── BOUTONS ─── */
.btn-or {
  background: var(--or); color: var(--texte);
  padding: .9rem 2.5rem; font-family: 'Raleway', sans-serif;
  font-size: .78rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; text-decoration: none; border: none;
  cursor: pointer; transition: all .25s; display: inline-block;
}
.btn-or:hover { background: var(--pierre); transform: translateY(-2px); }
.btn-outline-vert {
  border: 1px solid var(--vert-foret); color: var(--vert-foret);
  padding: .9rem 2.5rem; font-family: 'Raleway', sans-serif;
  font-size: .78rem; font-weight: 400; letter-spacing: .12em;
  text-transform: uppercase; text-decoration: none;
  transition: all .25s; display: inline-block;
}
.btn-outline-vert:hover { background: var(--vert-foret); color: var(--pierre-clair); }

/* ─── FOOTER ─── */
footer {
  background: var(--bois-fonce); border-top: 1px solid rgba(201,168,76,.2);
  padding: 3rem 2rem; text-align: center;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 300; color: var(--or);
  letter-spacing: .1em; margin-bottom: .3rem;
}
.footer-logo em { font-style: italic; }
footer p { color: rgba(255,255,255,.3); font-size: .78rem; margin-bottom: .4rem; }
.footer-links { display: flex; gap: 1.5rem; justify-content: center; margin-top: 1.2rem; flex-wrap: wrap; }
.footer-links a {
  color: rgba(255,255,255,.4); text-decoration: none; font-size: .72rem;
  letter-spacing: .1em; text-transform: uppercase; transition: color .2s;
}
.footer-links a:hover { color: var(--or); }
.footer-social { margin-top: 1.2rem; }
.footer-social a {
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--or); text-decoration: none; font-size: .8rem; letter-spacing: .05em;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav ul { display: none; }
  nav { padding: 0 1.5rem; }
  .section-inner { padding: 60px 1.5rem; }
}
@media (max-width: 600px) {
  .hero-interne { min-height: 35vh; padding: 90px 1.5rem 50px; }
}
