/* ============================================================
   PHILIPPE BELLOIS – MAGNÉTISEUR
   Design: Nature organique / Forêt apaisante
   Polices: Cormorant Garamond (titres élégants) + Lato (corps)
   ============================================================ */

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

:root {
  --vert-foret:   #2b4a2e;
  --vert-mousse:  #3d6b42;
  --vert-tendre:  #5a8f5e;
  --vert-pale:    #c8ddc9;
  --vert-brume:   #eaf2ea;
  --beige:        #f5f0e8;
  --beige-chaud:  #ede5d4;
  --sable:        #d4c4a0;
  --or:           #a07830;
  --or-doux:      #c49a48;
  --blanc:        #fdfcf8;
  --texte:        #1e2e1f;
  --texte-doux:   #4a5e4c;
  --texte-clair:  #7a927c;

  --shadow-soft: 0 8px 40px rgba(43,74,46,0.10);
  --shadow-card: 0 4px 24px rgba(43,74,46,0.08);
  --radius: 4px;
  --radius-lg: 12px;

  --nav-h: 70px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--blanc);
  color: var(--texte);
  font-weight: 300;
  line-height: 1.8;
  overflow-x: hidden;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--beige); }
::-webkit-scrollbar-thumb { background: var(--vert-pale); border-radius: 3px; }

/* ─── NAVIGATION ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  transition: background 0.4s, box-shadow 0.4s;
  background: rgba(43,74,46,0.0);
}

.nav.scrolled {
  background: rgba(43, 74, 46, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-decoration: none;
}

.nav-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.nav-logo-tag {
  font-size: 0.65rem;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.80);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--or-doux);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: #fff; }
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--or) !important;
  color: #fff !important;
  padding: 9px 20px !important;
  border-radius: 2px !important;
  letter-spacing: 0.08em !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--or-doux) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: #fff;
  transition: transform 0.3s, opacity 0.3s;
  border-radius: 1px;
}

.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(160deg, rgba(27,48,29,0.88) 0%, rgba(43,74,46,0.75) 60%, rgba(90,143,94,0.60) 100%),
    url('https://images.unsplash.com/photo-1448375240586-882707db888b?w=1800&q=85&auto=format') center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0 5%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--blanc), transparent);
  pointer-events: none;
}

.hero-content {
  max-width: 760px;
  position: relative;
  z-index: 1;
  padding-top: var(--nav-h);
  animation: fadeUp 1s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--or-doux);
  margin-bottom: 28px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--or-doux);
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.hero h1 em {
  font-style: italic;
  color: #c8e0c9;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin-bottom: 18px;
  line-height: 1.75;
}

.hero-location {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 44px;
}

.hero-location strong { color: rgba(255,255,255,0.85); }

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--or);
  color: #fff;
  padding: 15px 32px;
  border-radius: 2px;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.15s;
}

.btn-gold:hover { background: var(--or-doux); transform: translateY(-2px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.85);
  padding: 14px 28px;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.2s;
}

.btn-outline:hover {
  border-color: rgba(255,255,255,0.75);
  color: #fff;
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 140px;
  right: 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.45);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}

/* ─── SECTION GENERIC ─── */
.section { padding: 100px 5%; }

.section-inner { max-width: 1160px; margin: 0 auto; }

.label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.70rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--vert-tendre);
  margin-bottom: 14px;
}

.label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--vert-tendre);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--vert-foret);
  margin-bottom: 18px;
}

.section-title em {
  font-style: italic;
  color: var(--vert-tendre);
}

.rule {
  width: 48px;
  height: 2px;
  background: var(--or-doux);
  margin-bottom: 32px;
}

/* ─── PRÉSENTATION ─── */
.about { background: var(--blanc); }

.about-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-wrap::before {
  content: '';
  position: absolute;
  inset: -20px -20px 20px 20px;
  border: 1.5px solid var(--vert-pale);
  border-radius: 2px;
  z-index: 0;
}

.about-img-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}

.about-text p { color: var(--texte-doux); margin-bottom: 18px; font-size: 1.02rem; }

.about-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 36px;
}

.badge-item {
  background: var(--vert-brume);
  border-left: 3px solid var(--vert-mousse);
  padding: 16px 18px;
  border-radius: 2px;
}

.badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--vert-foret);
  line-height: 1;
  margin-bottom: 4px;
}

.badge-txt {
  font-size: 0.78rem;
  color: var(--texte-clair);
  letter-spacing: 0.04em;
}

/* ─── SERVICES ─── */
.services { background: var(--beige); }

.services-intro { max-width: 600px; margin-bottom: 60px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--blanc);
  border: 1px solid var(--beige-chaud);
  border-radius: var(--radius-lg);
  padding: 44px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--vert-mousse), var(--vert-tendre));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}

.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--vert-brume);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 24px;
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--vert-foret);
  margin-bottom: 14px;
  line-height: 1.25;
}

.service-card p {
  font-size: 0.94rem;
  color: var(--texte-doux);
  line-height: 1.75;
  margin-bottom: 20px;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-list li {
  font-size: 0.85rem;
  color: var(--texte-doux);
  padding-left: 16px;
  position: relative;
}

.service-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--or-doux);
  font-size: 0.75rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vert-mousse);
  text-decoration: none;
  transition: gap 0.2s;
}

.service-link:hover { gap: 10px; }

/* ─── ZONES ─── */
.zones { background: var(--vert-foret); padding: 80px 5%; }

.zones .label { color: var(--or-doux); }
.zones .label::before { background: var(--or-doux); }
.zones .section-title { color: #fff; }
.zones .rule { background: var(--or-doux); }

.zones-desc { color: rgba(255,255,255,0.70); max-width: 640px; margin-bottom: 48px; font-size: 1rem; }

.zones-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 36px;
}

.zone-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
  transition: background 0.2s;
}

.zone-card.main {
  background: rgba(160,120,48,0.25);
  border-color: var(--or-doux);
}

.zone-card:hover { background: rgba(255,255,255,0.11); }

.zone-dept {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--or-doux);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.zone-name {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
}

.zone-name strong { color: #fff; display: block; }

.zones-villes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ville-tag {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.70);
  font-size: 0.78rem;
  padding: 6px 14px;
  border-radius: 20px;
}

/* ─── TARIFS ─── */
.tarifs { background: var(--blanc); }

.tarifs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.tarif-card {
  background: var(--beige);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
}

.tarif-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--beige-chaud);
}

.tarif-item:last-child { border-bottom: none; }

.tarif-label { font-size: 0.97rem; color: var(--texte-doux); }

.tarif-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--vert-foret);
}

.tarif-price span {
  font-size: 0.85rem;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  color: var(--texte-clair);
}

.paiements { margin-top: 32px; }

.paiements h4 {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--texte-clair);
  margin-bottom: 14px;
}

.paiement-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.paiement-badge {
  background: var(--blanc);
  border: 1px solid var(--sable);
  color: var(--texte-doux);
  font-size: 0.8rem;
  padding: 7px 14px;
  border-radius: 20px;
}

.public-card {
  background: var(--vert-brume);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
}

.public-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--vert-foret);
  margin-bottom: 24px;
}

.public-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--vert-pale);
  font-size: 0.97rem;
  color: var(--texte-doux);
}

.public-item:last-of-type { border-bottom: none; }

.check {
  width: 28px;
  height: 28px;
  background: var(--vert-mousse);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  flex-shrink: 0;
}

.rdv-note {
  margin-top: 28px;
  background: var(--blanc);
  border-radius: var(--radius);
  padding: 18px 20px;
  font-size: 0.88rem;
  color: var(--texte-doux);
  line-height: 1.6;
}

/* ─── FAQ ─── */
.faq { background: var(--beige); }

.faq-inner { max-width: 780px; }

.faq-item {
  background: var(--blanc);
  border: 1px solid var(--beige-chaud);
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.faq-item:hover { box-shadow: var(--shadow-card); }

.faq-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  text-align: left;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--vert-foret);
  font-weight: 500;
}

.faq-btn:hover { background: var(--beige); }

.faq-arrow {
  width: 28px;
  height: 28px;
  border: 1px solid var(--vert-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.2s;
  font-size: 12px;
  color: var(--vert-tendre);
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  background: var(--vert-mousse);
  border-color: var(--vert-mousse);
  color: #fff;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.2s;
  font-size: 0.95rem;
  color: var(--texte-doux);
  line-height: 1.8;
}

.faq-item.open .faq-body {
  max-height: 400px;
  padding: 0 28px 24px;
}

/* ─── LOCALISATION ─── */
.localisation { background: var(--blanc); }

.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.adresse-box {
  background: var(--vert-brume);
  border-left: 3px solid var(--vert-mousse);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 28px 28px;
  margin-bottom: 20px;
}

.adresse-box h4 {
  font-size: 0.70rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--vert-tendre);
  margin-bottom: 10px;
}

.adresse-box p {
  color: var(--texte-doux);
  font-size: 0.97rem;
  line-height: 1.7;
}

.acces-box {
  background: #fffbf0;
  border-left: 3px solid var(--or-doux);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 18px 24px;
  font-size: 0.88rem;
  color: var(--texte-doux);
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--beige-chaud);
  box-shadow: var(--shadow-card);
}

.map-wrap iframe {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
}

.map-link {
  display: block;
  text-align: center;
  padding: 12px;
  font-size: 0.80rem;
  color: var(--vert-tendre);
  text-decoration: none;
  background: var(--beige);
}

.map-link:hover { color: var(--vert-foret); }

/* ─── CONTACT ─── */
.contact { background: var(--beige); }

.contact-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 64px;
}

.contact-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--vert-foret);
  margin-bottom: 24px;
  font-weight: 400;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--vert-brume);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
  border: 1px solid var(--vert-pale);
}

.contact-details label {
  display: block;
  font-size: 0.67rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--texte-clair);
  margin-bottom: 3px;
}

.contact-details a,
.contact-details span {
  font-size: 1.05rem;
  color: var(--vert-foret);
  text-decoration: none;
  font-weight: 400;
}

.contact-details a:hover { color: var(--vert-tendre); }

/* FORM */
.contact-form { background: var(--blanc); border-radius: var(--radius-lg); padding: 40px; }

.contact-form h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--vert-foret);
  margin-bottom: 28px;
  font-weight: 400;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 0.70rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--texte-clair);
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--beige);
  border: 1px solid var(--beige-chaud);
  border-radius: var(--radius);
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--texte);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--vert-tendre);
  background: var(--blanc);
}

.form-group textarea { height: 120px; resize: vertical; }

.btn-submit {
  width: 100%;
  background: var(--vert-foret);
  color: #fff;
  border: none;
  padding: 16px;
  border-radius: var(--radius);
  font-family: 'Lato', sans-serif;
  font-size: 0.80rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn-submit:hover { background: var(--vert-mousse); transform: translateY(-1px); }

.form-legal {
  font-size: 0.74rem;
  color: var(--texte-clair);
  line-height: 1.5;
  margin-top: 12px;
}

/* ─── CTA BAND ─── */
.cta-band {
  background: linear-gradient(135deg, var(--or) 0%, var(--or-doux) 100%);
  padding: 72px 5%;
  text-align: center;
}

.cta-band h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  color: #fff;
  margin-bottom: 14px;
}

.cta-band p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--or);
  padding: 16px 36px;
  border-radius: 2px;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.15s, box-shadow 0.2s;
}

.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }

/* ─── FOOTER ─── */
.footer { background: var(--texte); padding: 64px 5% 32px; }

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
}

.footer-brand .name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: #fff;
  font-weight: 400;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.50);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-contact-line {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact-line a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.60);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}

.footer-contact-line a:hover { color: #fff; }

.footer-col h4 {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; }

.footer-col li { margin-bottom: 10px; }

.footer-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover { color: #fff; }

.footer-bottom {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.30);
}

.footer-bottom a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  margin-left: 20px;
}

.footer-bottom a:hover { color: rgba(255,255,255,0.70); }

/* ─── PAGE INTÉRIEURE HERO ─── */
.page-hero {
  padding: 140px 5% 80px;
  background:
    linear-gradient(150deg, rgba(27,48,29,0.90) 0%, rgba(61,107,66,0.80) 100%),
    url('https://images.unsplash.com/photo-1448375240586-882707db888b?w=1800&q=80&auto=format') center/cover no-repeat;
}

.page-hero-inner { max-width: 700px; }

.page-hero .eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--or-doux);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.page-hero .eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--or-doux);
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}

.page-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  max-width: 560px;
}

/* ─── PROSE CONTENT ─── */
.prose { max-width: 780px; }

.prose h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--vert-foret);
  margin: 48px 0 18px;
  line-height: 1.25;
}

.prose h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--vert-mousse);
  margin: 36px 0 14px;
}

.prose p { color: var(--texte-doux); margin-bottom: 18px; font-size: 1rem; line-height: 1.82; }

.prose ul { list-style: none; margin: 18px 0 24px; display: flex; flex-direction: column; gap: 10px; }

.prose ul li {
  position: relative;
  padding-left: 22px;
  color: var(--texte-doux);
  font-size: 0.97rem;
}

.prose ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--or-doux);
}

.prose .highlight-box {
  background: var(--vert-brume);
  border-left: 3px solid var(--vert-mousse);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 24px 28px;
  margin: 32px 0;
  font-size: 1.05rem;
  color: var(--vert-foret);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.6;
}

.prose .warning {
  background: #fffbf0;
  border: 1px solid var(--sable);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  font-size: 0.88rem;
  color: var(--texte-clair);
  line-height: 1.65;
  margin-top: 36px;
}

/* ─── TWO COLUMN LAYOUT ─── */
.two-col {
  display: grid;
  grid-template-columns: 6fr 4fr;
  gap: 80px;
  align-items: start;
}

.sticky-aside { position: sticky; top: calc(var(--nav-h) + 24px); }

.aside-card {
  background: var(--beige);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  margin-bottom: 20px;
}

.aside-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--vert-foret);
  margin-bottom: 18px;
  font-weight: 500;
}

.aside-card p {
  font-size: 0.90rem;
  color: var(--texte-doux);
  line-height: 1.7;
  margin-bottom: 14px;
}

.aside-tel {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--vert-foret);
  color: #fff;
  padding: 14px 18px;
  border-radius: var(--radius);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  transition: background 0.2s;
  margin-top: 8px;
}

.aside-tel:hover { background: var(--vert-mousse); }

/* ─── MENTIONS ─── */
.mentions-content { max-width: 780px; }
.mentions-content h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--vert-foret); margin: 36px 0 14px; }
.mentions-content p { color: var(--texte-doux); margin-bottom: 14px; font-size: 0.95rem; line-height: 1.8; }

/* ─── ANIMATIONS SCROLL ─── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 980px) {
  .about-grid,
  .tarifs-grid,
  .loc-grid,
  .contact-grid,
  .two-col,
  .footer-top { grid-template-columns: 1fr; gap: 40px; }

  .services-grid { grid-template-columns: 1fr; }
  .zones-grid { grid-template-columns: repeat(3, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(43,74,46,0.98);
    flex-direction: column;
    padding: 24px 5%;
    gap: 6px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; font-size: 0.85rem; }
  .hamburger { display: flex; }

  .hero-scroll { display: none; }
  .about-img-wrap::before { display: none; }
  .sticky-aside { position: static; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 600px) {
  .section { padding: 64px 5%; }
  .zones-grid { grid-template-columns: repeat(2, 1fr); }
  .about-badges { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}
