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

:root {
  /* Fonds — palette simplifiée : noir / bordeaux / beige */
  --noir:        #111010;
  --noir-doux:   #1A1917;         /* service-carte hover uniquement */
  --bordeaux-bg: #1C0808;         /* fond bordeaux visible */

  /* Fonds clairs */
  --creme:       #EDE8DE;         /* beige pâle unifié */
  --creme-fond:  #EDE8DE;
  --creme-carte: #F3EFE6;

  /* Palette principale */
  --or:          #C9A84C;
  --or-clair:    #E0C06A;
  --bordeaux:    #7B1D1D;

  /* Textes sur fond sombre */
  --texte-dark:  #F5F0E8;
  --texte-dark-2: rgba(245,240,232,.78);
  --texte-dark-3: rgba(245,240,232,.56);

  /* Textes sur fond clair */
  --texte-light:   #2A2520;
  --texte-light-2: rgba(42,37,32,.68);
  --texte-light-3: rgba(42,37,32,.42);
  --or-light:      #9A7A2C;

  /* Typographie */
  --ff-titre: 'Cormorant Garamond', Georgia, serif;
  --ff-corps: 'Jost', sans-serif;
}

html { scroll-behavior: smooth; scroll-padding-top: 5.5rem; }

body {
  background: var(--noir);
  color: var(--texte-dark);
  font-family: var(--ff-corps);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* ========================
   UTILITAIRES
======================== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }

.section-label {
  font-family: var(--ff-corps);
  font-weight: 500;
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--or);
  display: block;
  margin-bottom: 1rem;
}
.section-label--light { color: var(--or-light); }

.section-titre {
  font-family: var(--ff-titre);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--texte-dark);
  text-wrap: balance;
}
.section-titre--light { color: var(--texte-light); }

.separateur {
  width: 50px;
  height: 1px;
  background: var(--or);
  margin: 1.5rem 0 2rem;
}

.btn-or {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .85rem 2.2rem;
  border: 1px solid var(--or);
  color: var(--or);
  font-family: var(--ff-corps);
  font-weight: 500;
  font-size: .76rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  transition: background .25s, color .25s;
}
.btn-or:hover { background: var(--or); color: var(--noir); }

.btn-plein {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--or);
  color: var(--noir);
  font-family: var(--ff-corps);
  font-weight: 500;
  font-size: .76rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: .85rem 2.2rem;
  transition: background .25s;
}
.btn-plein:hover { background: var(--or-clair); }

/* ========================
   NAVIGATION
======================== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 1.2rem 0;
  background: rgba(17,16,16,.93);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,.12);
  transition: padding .3s;
}
nav.scrolled { padding: .8rem 0; }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  font-family: var(--ff-titre);
  font-size: 1.35rem;
  font-weight: 300;
  letter-spacing: .07em;
  color: var(--texte-dark);
  flex-shrink: 0;
}
.nav-logo span { color: var(--or); }

.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}
.nav-links a {
  font-size: .73rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--texte-dark-3);
  transition: color .25s;
}
.nav-links a:hover { color: var(--or); }

.nav-rdv {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .55rem 1.4rem;
  border: 1px solid var(--or);
  color: var(--or);
  transition: background .25s, color .25s;
  flex-shrink: 0;
}
.nav-rdv:hover { background: var(--or); color: var(--noir); }

/* Hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--texte-dark);
  transition: transform .3s, opacity .3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile nav panel */
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: rgba(17,16,16,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,.15);
  padding: 1.5rem 2rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: .8rem 0;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--texte-dark-2);
  border-bottom: 1px solid rgba(201,168,76,.08);
  transition: color .2s;
}
.nav-mobile a:hover { color: var(--or); }
.nav-mobile a:last-child { border-bottom: none; }

/* ========================
   HERO
======================== */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #111010 0%, #1A1110 50%, #150D0D 100%);
}

.hero-bg-glow {
  position: absolute;
  top: -10%; right: -5%;
  width: 55%; height: 120%;
  background: radial-gradient(ellipse at 70% 40%, rgba(201,168,76,.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-ligne-or {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--or) 25%, var(--or) 75%, transparent);
}

.hero-visuel {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 42%;
  background:
    linear-gradient(to right, #111010 0%, transparent 25%),
    url('images/salon-coiffure-calais-escalier-colimacon.webp') 78% center/cover no-repeat;
  opacity: .55;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 9rem 0 6rem;
  max-width: 600px;
}

.hero-eyebrow {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 1.5rem;
}
.hero-titre {
  font-family: var(--ff-titre);
  font-weight: 300;
  line-height: 1.02;
  color: var(--texte-dark);
  margin-bottom: .4rem;
}
.hero-titre-brand {
  display: block;
  font-size: clamp(3.2rem, 8vw, 6rem);
}
/* Sous-titre SEO visible mais discret — "by Céline Pagnerre" */
.hero-titre-seo {
  display: block;
  font-family: var(--ff-corps);
  font-size: clamp(.9rem, 1.5vw, 1.1rem);
  font-weight: 300;
  letter-spacing: .25em;
  color: var(--texte-dark-2);
  text-transform: uppercase;
  margin-top: .6rem;
}
.hero-titre em { font-style: italic; color: var(--or); }

.hero-sous-titre {
  font-family: var(--ff-titre);
  font-size: clamp(1.1rem, 2.5vw, 1.55rem);
  font-weight: 300;
  font-style: italic;
  color: var(--texte-dark-3);
  letter-spacing: .04em;
  margin-bottom: 2.5rem;
}
.hero-desc {
  font-size: .92rem;
  color: var(--texte-dark-2);
  line-height: 1.85;
  margin-bottom: 3rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(201,168,76,.2);
}
.stat-val {
  font-family: var(--ff-titre);
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--or);
  line-height: 1;
}
.stat-label {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--texte-dark-3);
  margin-top: .4rem;
}

/* ========================
   À PROPOS — fond clair
======================== */
#apropos {
  padding: 5.5rem 0;
  background: var(--creme-fond);
}

.apropos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.apropos-texte p {
  font-size: .95rem;
  color: var(--texte-light-2);
  margin-bottom: 1.2rem;
  line-height: 1.85;
}
.apropos-texte p strong { color: var(--or-light); font-weight: 500; }

.apropos-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 2.5rem;
}
.feature-item {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
}
.feature-icone {
  width: 34px; height: 34px;
  border: 1px solid rgba(154,122,44,.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: .95rem;
  color: var(--or-light);
}
.feature-texte strong {
  display: block;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .05em;
  color: var(--texte-light);
  margin-bottom: .12rem;
}
.feature-texte span { font-size: .75rem; color: var(--texte-light-3); }

.apropos-visuel { position: relative; }
.apropos-img-cadre {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.apropos-img-cadre img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s;
}
.apropos-img-cadre:hover img { transform: scale(1.03); }

.apropos-badge {
  position: absolute;
  bottom: -1.5rem; left: -1.5rem;
  background: var(--or);
  color: var(--noir);
  padding: 1.2rem 1.5rem;
  font-family: var(--ff-titre);
  text-align: center;
}
.apropos-badge .badge-val {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  display: block;
}
.apropos-badge .badge-label {
  font-size: .7rem;
  font-weight: 300;
  font-style: italic;
}

/* ========================
   SERVICES — fond sombre
======================== */
#services {
  padding: 5.5rem 0;
  background: var(--noir);
}
.services-header { text-align: left; margin-bottom: 3rem; }
.services-header .separateur { margin: 1.5rem 0 0; }

.services-grille {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201,168,76,.1);
}
.service-carte {
  background: var(--noir-doux);
  padding: 2.8rem 2.2rem;
  position: relative;
  transition: background .3s;
  overflow: hidden;
}
.service-carte::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: var(--or);
  transition: width .4s;
}
.service-carte:hover { background: var(--noir-doux); }
.service-carte:hover::before { width: 100%; }

.service-numero {
  font-family: var(--ff-titre);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(201,168,76,.1);
  line-height: 1;
  margin-bottom: .8rem;
}
.service-titre {
  font-family: var(--ff-titre);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--texte-dark);
  margin-bottom: .7rem;
}
.service-desc {
  font-size: .84rem;
  color: var(--texte-dark-2);
  line-height: 1.75;
  margin-bottom: 1.4rem;
}
.service-prix {
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .1em;
  color: var(--or);
}

/* ========================
   GALERIE — fond clair
======================== */
#galerie {
  padding: 5.5rem 0;
  background: var(--creme);
}
.galerie-header {
  text-align: left;
  max-width: 640px;
  margin: 0 0 3rem;
}
.galerie-header .separateur { margin: 1.5rem 0; }
.galerie-intro {
  font-size: .9rem;
  color: var(--texte-light-2);
  line-height: 1.8;
}
.galerie-grille {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .6rem;
}
.galerie-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  border: 1px solid rgba(154,122,44,.18);
  margin: 0;
}
.galerie-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
  transition: transform .6s ease;
}
.galerie-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,16,16,.4), transparent 55%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.galerie-item:hover img { transform: scale(1.06); }
.galerie-item:hover::after { opacity: 1; }

/* Lightbox — zoom sur les photos de la galerie */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(10,9,8,.93);
  padding: 2rem;
  cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 92%;
  max-height: 88%;
  object-fit: contain;
  border: 1px solid rgba(201,168,76,.3);
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
}
.lightbox-close {
  position: absolute;
  top: 1rem; right: 1.6rem;
  font-size: 2.6rem;
  color: var(--texte-dark-2);
  cursor: pointer;
  line-height: 1;
  transition: color .2s;
  z-index: 2;
}
.lightbox-close:hover { color: var(--or); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--texte-dark-2);
  font-size: 2rem;
  cursor: pointer;
  padding: .6rem 1rem;
  line-height: 1;
  transition: color .2s;
  z-index: 2;
}
.lightbox-nav:hover { color: var(--or); }
.lightbox-prev { left: .5rem; }
.lightbox-next { right: .5rem; }

/* ========================
   MARIAGE — fond bordeaux
======================== */
#mariage {
  padding: 5.5rem 0;
  background: var(--bordeaux-bg);
  position: relative;
  overflow: hidden;
}
#mariage::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 25% 50%, rgba(123,29,29,.4) 0%, transparent 65%);
  pointer-events: none;
}

.mariage-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.mariage-texte p {
  font-size: .93rem;
  color: var(--texte-dark-2);
  line-height: 1.85;
  margin-bottom: 1.4rem;
}
.mariage-quote {
  font-family: var(--ff-titre);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 300;
  color: var(--texte-dark);
  line-height: 1.4;
  border-left: 2px solid var(--or);
  padding-left: 1.8rem;
  margin-bottom: 2.5rem;
}
.mariage-liste { list-style: none; margin-bottom: 2.5rem; }
.mariage-liste li {
  padding: .7rem 0;
  border-bottom: 1px solid rgba(201,168,76,.1);
  font-size: .87rem;
  color: var(--texte-dark-2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mariage-liste li span { color: var(--or); font-weight: 500; white-space: nowrap; margin-left: 1rem; }
.mariage-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.mariage-encart {
  border: 1px solid rgba(201,168,76,.18);
  padding: 3rem 2.5rem;
}
.mariage-encart-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.8rem 0 2rem;
}
.mariage-encart-item {
  padding: 1rem;
  border: 1px solid rgba(201,168,76,.1);
}
.mariage-encart-item .label {
  font-size: .67rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--or);
  margin-bottom: .3rem;
}
.mariage-encart-item .desc {
  font-size: .82rem;
  color: var(--texte-dark-2);
}

/* ========================
   ÉQUIPE — fond chaud sombre
======================== */
#equipe {
  padding: 5.5rem 0;
  background: var(--noir);
}
.equipe-header { margin-bottom: 3rem; }

.equipe-grille {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}
.equipe-carte { text-align: center; }

.equipe-photo {
  width: 130px;
  max-width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,.15);
  border-radius: 50%;
  margin: 0 auto 1rem;
  background: var(--gris, #3A3A3A);
}
.equipe-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(20%);
  transition: filter .4s, transform .4s;
}
.equipe-carte:hover .equipe-photo img {
  filter: grayscale(0%);
  transform: scale(1.04);
}

/* Placeholder élégant à initiale — en attendant les vraies photos d'équipe */
.equipe-photo--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(123,29,29,.35) 0%, transparent 70%),
    linear-gradient(160deg, #1A1110 0%, #111010 100%);
}
.equipe-initiale {
  font-family: var(--ff-titre);
  font-size: 2.8rem;
  font-weight: 300;
  font-style: italic;
  color: var(--or);
  line-height: 1;
  transition: transform .4s, color .4s;
}
.equipe-carte:hover .equipe-initiale {
  transform: scale(1.08);
  color: var(--or-clair);
}

.equipe-nom {
  font-family: var(--ff-titre);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--texte-dark);
  margin-bottom: .2rem;
}
.equipe-role {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--or);
}

/* ========================
   AVIS — fond clair
======================== */
#avis {
  padding: 5.5rem 0;
  background: var(--creme);
}
.avis-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
}
.avis-score { text-align: right; }
.avis-score .note {
  font-family: var(--ff-titre);
  font-size: 4rem;
  font-weight: 300;
  color: var(--or-light);
  line-height: 1;
}
.avis-score .etoiles { font-size: 1.1rem; color: var(--or-light); letter-spacing: .1em; }
.avis-score .total { font-size: .75rem; color: var(--texte-light-3); letter-spacing: .1em; }

.avis-grille {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.avis-carte {
  background: var(--creme-carte);
  padding: 2rem;
  border: 1px solid rgba(154,122,44,.12);
  position: relative;
}
.avis-carte::before {
  content: '"';
  font-family: var(--ff-titre);
  font-size: 5rem;
  color: rgba(154,122,44,.12);
  position: absolute;
  top: .5rem; left: 1rem;
  line-height: 1;
}
.avis-etoiles { color: var(--or-light); font-size: .9rem; margin-bottom: 1rem; }
.avis-texte {
  font-size: .88rem;
  color: var(--texte-light-2);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.4rem;
}
.avis-auteur {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  color: var(--or-light);
}
.avis-planity {
  text-align: center;
  margin-top: 3rem;
  font-size: .8rem;
  color: var(--texte-light-3);
}
.avis-planity a { color: var(--or-light); text-decoration: underline; }

/* ========================
   RÉSERVATION — fond sombre + map
======================== */
#reservation {
  padding: 4rem 0;
  background: var(--noir);
  position: relative;
  overflow: hidden;
}
#reservation::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(201,168,76,.06) 0%, transparent 60%);
  pointer-events: none;
}

.reservation-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.reservation-gauche h2 {
  font-family: var(--ff-titre);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 300;
  color: var(--texte-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.reservation-gauche p {
  font-size: .9rem;
  color: var(--texte-dark-2);
  margin-bottom: 2rem;
}

.rdv-options { display: flex; flex-direction: column; gap: .7rem; margin-bottom: 1.5rem; }
.rdv-option {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.1rem 1.4rem;
  border: 1px solid rgba(201,168,76,.18);
  transition: border-color .25s, background .25s;
  cursor: pointer;
}
.rdv-option:hover { border-color: var(--or); background: rgba(201,168,76,.05); }
.rdv-option .rdv-icone { font-size: 1.2rem; flex-shrink: 0; }
.rdv-option .rdv-label {
  font-size: .8rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--texte-dark);
}
.rdv-option .rdv-sous { font-size: .73rem; color: var(--texte-dark-3); }
.rdv-option .rdv-arrow { margin-left: auto; color: var(--or); font-size: 1rem; }

.horaires-tableau { border: 1px solid rgba(201,168,76,.14); }
.horaires-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .5rem 1.4rem;
  border-bottom: 1px solid rgba(201,168,76,.07);
  font-size: .84rem;
}
.horaires-row:last-child { border-bottom: none; }
.horaires-row .jour { font-weight: 500; color: var(--texte-dark-2); }
.horaires-row .heure { color: var(--or); }
.horaires-row .ferme { color: var(--texte-dark-3); }

.reservation-droite { display: flex; flex-direction: column; gap: 1.5rem; }

.map-conteneur {
  aspect-ratio: 3/2;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,.12);
  flex-shrink: 0;
}
.map-conteneur iframe {
  width: 100%; height: 100%;
  border: none;
}

.adresse-bloc {
  padding: 1.2rem 1.4rem;
  border: 1px solid rgba(201,168,76,.12);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.adresse-bloc .icone { color: var(--or); font-size: 1rem; flex-shrink: 0; margin-top: .1rem; }
.adresse-bloc .texte { font-size: .85rem; color: var(--texte-dark-2); line-height: 1.6; }
.adresse-bloc .texte strong { display: block; color: var(--texte-dark); font-weight: 500; margin-bottom: .2rem; }

/* ========================
   FOOTER
======================== */
footer {
  background: #0A0908;
  border-top: 1px solid rgba(201,168,76,.12);
}
.footer-main {
  padding: 3.5rem 0 2rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 4rem;
}
.footer-brand {}
.footer-logo {
  font-family: var(--ff-titre);
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: .07em;
  color: var(--texte-dark);
  margin-bottom: .6rem;
}
.footer-logo span { color: var(--or); }
.footer-tagline {
  font-size: .78rem;
  font-style: italic;
  color: var(--texte-dark-3);
  margin-bottom: 1.8rem;
}
.footer-socials { display: flex; gap: .8rem; }
.footer-social {
  padding: .5rem 1rem;
  border: 1px solid rgba(201,168,76,.2);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--texte-dark-3);
  transition: border-color .25s, color .25s;
}
.footer-social:hover { border-color: var(--or); color: var(--or); }

.footer-col h4 {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 1.4rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li {
  font-size: .84rem;
  color: var(--texte-dark-3);
  margin-bottom: .7rem;
  line-height: 1.5;
}
.footer-col ul li a:hover { color: var(--or); transition: color .2s; }
.footer-col ul li strong {
  display: block;
  color: var(--texte-dark-2);
  font-weight: 400;
  margin-bottom: .1rem;
}

.footer-bottom {
  padding: 1.4rem 0;
  border-top: 1px solid rgba(201,168,76,.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .7rem;
  color: rgba(245,240,232,.42);
  letter-spacing: .08em;
}
.footer-bottom a { color: rgba(245,240,232,.2); transition: color .2s; }
.footer-bottom a:hover { color: var(--or); }

/* ========================
   CTA FLOTTANT MOBILE
======================== */
.cta-mobile {
  display: none;
  position: fixed;
  left: 1rem; right: 1rem; bottom: 1rem;
  z-index: 150;
  background: var(--or);
  color: var(--noir);
  text-align: center;
  padding: .95rem;
  font-family: var(--ff-corps);
  font-weight: 500;
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(0,0,0,.45);
  transform: translateY(150%);
  transition: transform .35s ease;
}
.cta-mobile.show { transform: translateY(0); }

/* ========================
   BANDEAU COOKIES + CARTE RGPD
======================== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 250;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  flex-wrap: wrap;
  background: rgba(17,16,16,.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(201,168,76,.2);
  padding: 1rem 2rem;
}
.cookie-banner.show { display: flex; }
.cookie-banner p { font-size: .82rem; color: var(--texte-dark-2); margin: 0; max-width: 62ch; }
.cookie-banner a { color: var(--or); text-decoration: underline; }
.cookie-actions { display: flex; gap: .8rem; flex-shrink: 0; }
.cookie-actions button {
  font-family: var(--ff-corps);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .6rem 1.4rem;
  cursor: pointer;
  border: 1px solid var(--or);
  background: none;
  color: var(--or);
  transition: background .2s, color .2s;
}
.cookie-actions #cookie-accept { background: var(--or); color: var(--noir); }
.cookie-actions button:hover { background: var(--or-clair); color: var(--noir); }

.map-consent {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(160deg, #1A1110 0%, #111010 100%);
}
.map-consent p { font-size: .85rem; color: var(--texte-dark-2); margin: 0; max-width: 32ch; }

/* ========================
   ANIMATIONS FADE IN
======================== */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* ========================
   RESPONSIVE
======================== */
@media (max-width: 1024px) {
  .apropos-grid { gap: 4rem; }
  .mariage-inner { gap: 3.5rem; }
  .reservation-inner { gap: 3.5rem; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .nav-links,
  .nav-rdv { display: none; }
  .nav-burger { display: flex; }

  .hero-visuel { display: none; }

  .cta-mobile { display: block; }

  .apropos-grid,
  .mariage-inner,
  .reservation-inner { grid-template-columns: 1fr; }

  .mariage-actions { justify-content: center; }

  .services-grille { grid-template-columns: 1fr 1fr; }

  .galerie-grille { grid-template-columns: 1fr 1fr; }

  .equipe-grille { grid-template-columns: repeat(3, 1fr); }

  .avis-grille { grid-template-columns: 1fr; }

  .avis-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .avis-score { text-align: left; }

  .footer-main { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: auto; }
}

@media (max-width: 640px) {
  .container { padding: 0 1.25rem; }

  #hero, #apropos, #services, #mariage, #equipe, #avis, #reservation {
    padding: 3.5rem 0;
  }

  .hero-content { padding: 7rem 0 4rem; }

  .hero-stats { flex-direction: column; gap: 1.5rem; }

  .hero-actions { flex-direction: column; }
  .btn-or, .btn-plein { text-align: center; justify-content: center; }

  .services-grille { grid-template-columns: 1fr; }

  .equipe-grille { grid-template-columns: repeat(2, 1fr); }

  .apropos-features { grid-template-columns: 1fr; }

  .apropos-badge { left: 0; bottom: -1rem; }

  .mariage-encart-grid { grid-template-columns: 1fr; }

  .footer-main { padding: 3rem 0 2rem; }
  .footer-bottom { flex-direction: column; gap: .6rem; text-align: center; }
}
