/* ═══════════════════════════════════════════════════════
   EAT-MOTION — Stylesheet
   Esthétique : blanc pur, minimaliste, accents or/cuivre chauds.
   Architecture : variables → reset → type → composants → sections → responsive
   ═══════════════════════════════════════════════════════ */

/* ───────────────────────────────────────────────────────
   VARIABLES
─────────────────────────────────────────────────────── */
:root {
  /* ── Direction émeraude : Maison d'Expériences, garden-party premium ──
     Vert émeraude profond dominant + crème / blanc cassé + laiton discret. */
  --white:    #ffffff;
  --paper:    #f7f5ee;  /* crème chaude — fond principal alterné */
  --cloud:    #edf0e7;  /* crème légèrement verte — sections marquées */
  --ink:      #14362a;  /* ÉMERAUDE PROFOND — texte + sections sombres (ex-noir) */
  --muted:    #5d6a60;  /* vert-gris doux — texte secondaire */
  --line:     #e1e6da;  /* hairlines, nuance végétale */

  /* Émeraude — couleur dominante */
  --emerald:      #1b4d39;  /* émeraude */
  --emerald-deep: #102a21;  /* émeraude le plus profond (footer, fonds) */
  --emerald-soft: #2f6b4f;  /* émeraude clair — survols */
  --emerald-tint: #e7efe7;  /* voile vert très pâle */

  /* Laiton / doré — accent discret, jamais dominant */
  --gold:     #b1864f;  /* laiton */
  --copper:   #9a6f3c;  /* laiton profond — accents typographiques */
  --gold-soft:#cdae7f;  /* laiton doux (sur fonds sombres) */
  --gold-tint:#f1ead9;  /* voile laiton très pâle */

  /* Typo */
  --serif: 'Fraunces', 'Times New Roman', Georgia, serif;
  --sans:  'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Espacements fluides */
  --pad-section: clamp(5rem, 11vw, 9.5rem);
  --container: 1240px;

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --dur: 0.5s;
  --nav-h: 76px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--white);
  line-height: 1.75;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ───────────────────────────────────────────────────────
   TYPOGRAPHIE
─────────────────────────────────────────────────────── */
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.015em;
}

em {
  font-style: italic;
  font-weight: 400;
  color: var(--copper);
}

p { max-width: 62ch; }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.6rem;
}
.eyebrow--center { display: block; text-align: center; }

.section-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: -0.02em;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: clamp(1.5rem, 5vw, 4rem);
}

/* ───────────────────────────────────────────────────────
   BOUTONS
─────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65em;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 1rem 1.85rem;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: background var(--dur) var(--ease),
              color var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              transform 0.3s var(--ease),
              box-shadow var(--dur) var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }

.btn--solid {
  background: var(--ink);
  color: var(--white);
}
.btn--solid:hover {
  background: var(--emerald-soft);
  box-shadow: 0 12px 28px -12px rgba(27, 77, 57, 0.55);
}

.btn--ghost {
  background: rgba(255,255,255,0.6);
  color: var(--ink);
  border-color: rgba(26,26,24,0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: var(--white);
  border-color: var(--ink);
}

.btn--lg {
  padding: 1.15rem 2.4rem;
  font-size: 0.9rem;
}

/* ───────────────────────────────────────────────────────
   REVEAL au scroll
─────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal--d1 { transition-delay: 0.1s; }
.reveal--d2 { transition-delay: 0.2s; }
.reveal--d3 { transition-delay: 0.3s; }

/* ───────────────────────────────────────────────────────
   NAVIGATION
─────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: clamp(1.5rem, 4vw, 3rem);
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.nav.is-scrolled {
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  box-shadow: 0 1px 0 var(--line);
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--ink);
}
.nav__logo-img {
  height: 52px;
  width: auto;
  display: block;
  filter: drop-shadow(0 1px 3px rgba(16, 42, 33, 0.28));
  transition: transform var(--dur) var(--ease);
}
.nav__logo:hover .nav__logo-img { transform: scale(1.04); }
.nav__logo-mark {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.nav__logo:hover .nav__logo-mark { background: var(--gold); color: var(--white); }
.nav__logo-text {
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.18em;
}
.nav__logo-dot { color: var(--gold); }

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 2.5vw, 2.4rem);
}
.nav__link {
  font-size: 0.84rem;
  font-weight: 400;
  color: var(--muted);
  position: relative;
  transition: color var(--dur) var(--ease);
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -5px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--dur) var(--ease);
}
.nav__link:hover { color: var(--ink); }
.nav__link:hover::after { width: 100%; }

.nav__cta {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--white);
  background: var(--ink);
  padding: 0.62rem 1.3rem;
  border-radius: 100px;
  transition: background var(--dur) var(--ease), transform 0.3s var(--ease);
}
.nav__cta:hover { background: var(--emerald-soft); transform: translateY(-1px); }

/* Sélecteur de langue FR | EN */
.nav__lang {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.nav__lang-current { color: var(--ink); }
.nav__lang-link { color: var(--muted); transition: color var(--dur) var(--ease); }
.nav__lang-link:hover { color: var(--gold); }
.nav__lang-sep { color: var(--line); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  padding: 6px 0;
}
.nav__burger span {
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.nav__burger.is-open span:first-child { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.is-open span:last-child  { transform: translateY(-6.5px) rotate(-45deg); }

/* ───────────────────────────────────────────────────────
   HERO — scroll-reveal cinématique
   .hero donne la hauteur de "course". .hero__stage est sticky.
─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background: var(--ink);
}

.hero__stage {
  position: absolute;
  inset: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Photo hero — zoom progressif piloté par le scroll (voir initHeroZoom dans script.js).
   On ne transforme QUE l'image (jamais le conteneur) pour ne pas décaler la mise en page. */
.hero__photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 44%;
  background-repeat: no-repeat;
  transform-origin: center center;
  transform: scale(var(--hero-scale, 1));
  will-change: transform;
}

/* Voile clair : garde l'esprit blanc premium + lisibilité du texte.
   Dégradé latéral pour ancrer le texte à gauche sans assombrir toute l'image. */
.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(247,245,238,0.9) 0%, rgba(247,245,238,0.72) 30%, rgba(247,245,238,0.28) 52%, rgba(247,245,238,0) 72%);
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 760px;
  padding-inline: clamp(1.5rem, 7vw, 7rem);
}
.hero__eyebrow {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1.6rem;
}
.hero__title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 1.8rem;
}
.hero__title em {
  font-weight: 400;
  /* léger dégradé doré sur le mot d'accent */
  background: linear-gradient(120deg, var(--copper), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--copper);
}
.hero__sub {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  color: var(--muted);
  margin-bottom: 2.6rem;
  max-width: 40ch;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* Indicateur de progression */
.hero__progress {
  position: absolute;
  bottom: clamp(1.5rem, 4vh, 2.8rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}
.hero__progress-track {
  width: 1px;
  height: 60px;
  background: rgba(26,26,24,0.15);
  position: relative;
  overflow: hidden;
}
.hero__progress-fill {
  position: absolute;
  inset: 0 0 auto 0;
  height: 0%;
  background: var(--copper);
  transition: height 0.1s linear;
}
/* Indice de défilement animé en CSS (le hero n'a plus de scrub à piloter) */
.hero__progress-fill--cue {
  animation: heroCue 2.2s ease-in-out infinite;
}
@keyframes heroCue {
  0%   { height: 0%;   opacity: 0; }
  40%  { height: 100%; opacity: 1; }
  100% { height: 100%; opacity: 0; transform: translateY(60px); }
}
.hero__progress-label {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ───────────────────────────────────────────────────────
   MANIFESTE
─────────────────────────────────────────────────────── */
.manifesto {
  padding-block: var(--pad-section);
  background: var(--white);
  text-align: center;
}
.manifesto__quote {
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  font-weight: 300;
  line-height: 1.18;
  letter-spacing: -0.02em;
  max-width: 18ch;
  margin: 0 auto clamp(1.4rem, 2.5vw, 2rem);
}
.manifesto__intro {
  max-width: 56ch;
  margin: 0 auto clamp(3.5rem, 7vw, 6rem);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  color: var(--muted);
  line-height: 1.85;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.6rem);
  text-align: left;
}
.pillar {
  position: relative;
  padding-top: 1.8rem;
}
.pillar__media {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  border-radius: 14px;
  margin-bottom: 1.8rem;
  filter: saturate(1.02);
  transition: transform 0.7s var(--ease), box-shadow 0.7s var(--ease);
}
.pillar:hover .pillar__media {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -28px rgba(26,26,24,0.35);
}
.pillar__index {
  font-family: var(--serif);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--gold);
}
.pillar__title {
  font-size: 1.7rem;
  font-weight: 400;
  margin: 0.4rem 0 0.9rem;
}
.pillar__text { color: var(--muted); font-size: 0.95rem; }

/* ───────────────────────────────────────────────────────
   OFFRES
─────────────────────────────────────────────────────── */
.offers {
  padding-block: var(--pad-section);
  background: var(--paper);
}
.section-head {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.section-head .section-title { margin: 0 auto; }

.offers__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.4rem, 2.5vw, 2.2rem);
}
.offer {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}
.offer:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -34px rgba(26,26,24,0.4);
  border-color: var(--gold-soft);
}
.offer__media {
  position: relative;
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
}
.offer__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,24,0.18), transparent 45%);
}
.offer:hover .offer__media { /* léger zoom via background — subtil */ }
.offer__tag {
  position: absolute;
  z-index: 2;
  top: 1rem; left: 1rem;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold-soft);
  padding: 0.4rem 0.85rem;
  border-radius: 100px;
}
.offer__body { padding: clamp(1.6rem, 2.6vw, 2.4rem); }
.offer__title {
  font-size: 1.85rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
}
.offer__text { color: var(--muted); font-size: 0.93rem; margin-bottom: 1.4rem; }
.offer__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.7rem;
  border-top: 1px solid var(--line);
  padding-top: 1.3rem;
}
.offer__list li {
  font-size: 0.78rem;
  color: var(--emerald);
  background: var(--emerald-tint);
  padding: 0.4rem 0.85rem;
  border-radius: 100px;
}

/* ───────────────────────────────────────────────────────
   SIGNATURES — vignettes des prestations phares
─────────────────────────────────────────────────────── */
.signatures {
  padding-block: var(--pad-section);
  background: var(--cloud);
}
.sig-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(1rem, 1.6vw, 1.6rem);
}
.sig-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.sig-card__media {
  position: relative;
  aspect-ratio: 3 / 4;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
}
.sig-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,24,0.28), transparent 50%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.sig-card:hover .sig-card__media,
.sig-card:focus-visible .sig-card__media {
  transform: translateY(-5px);
  box-shadow: 0 26px 50px -28px rgba(26,26,24,0.45);
}
.sig-card:hover .sig-card__media::after { opacity: 1; }
.sig-card__cap {
  font-family: var(--serif);
  font-size: clamp(0.95rem, 1.3vw, 1.12rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

/* ───────────────────────────────────────────────────────
   LE PARCOURS — moments alternés texte / image
─────────────────────────────────────────────────────── */
.parcours { padding-block: var(--pad-section); background: var(--paper); }
.moment {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(1.6rem, 3.5vw, 3rem) clamp(1.5rem, 5vw, 4rem);
}
.moment__text { max-width: 46ch; }
.moment__index { font-family: var(--serif); font-size: 1rem; font-style: italic; color: var(--gold); }
.moment__title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 300;
  margin: 0.4rem 0 1.1rem;
  color: var(--ink);
}
.moment__text p { color: var(--muted); }
.moment__media {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  box-shadow: 0 30px 60px -42px rgba(20, 54, 42, 0.55);
}

/* ───────────────────────────────────────────────────────
   EXPÉRIENCES SIGNATURE — 3 cartes
─────────────────────────────────────────────────────── */
.experiences { padding-block: var(--pad-section); background: var(--white); }
.exp-intro { max-width: 50ch; margin: 1rem auto 0; color: var(--muted); }
.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.4rem, 2.5vw, 2.2rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.exp-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}
.exp-card:hover,
.exp-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -34px rgba(20, 54, 42, 0.4);
  border-color: var(--gold-soft);
}
.exp-card__media { aspect-ratio: 4 / 3; background-size: cover; background-position: center; }
.exp-card__body { padding: clamp(1.5rem, 2.4vw, 2.2rem); }
.exp-card__title { font-family: var(--serif); font-size: clamp(1.3rem, 1.9vw, 1.6rem); font-weight: 400; margin-bottom: 0.7rem; color: var(--ink); }
.exp-card__text { color: var(--muted); font-size: 0.92rem; }

/* ───────────────────────────────────────────────────────
   HÉRITAGE — climax pleine largeur, fond émeraude
─────────────────────────────────────────────────────── */
.heritage { background: var(--emerald-deep); color: var(--white); overflow: hidden; }
.heritage__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  min-height: 620px;
}
.heritage__media { background-size: cover; background-position: center; min-height: 380px; }
.heritage__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 6rem) clamp(2rem, 5vw, 5rem);
}
.eyebrow--light { color: var(--gold-soft); }
.heritage__title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.08;
  margin-bottom: 1.6rem;
  color: var(--white);
}
.heritage__title em { color: var(--gold-soft); font-style: italic; }
.heritage__text { color: rgba(255, 255, 255, 0.72); margin-bottom: 1.1rem; max-width: 46ch; }
.heritage__sign {
  margin-top: 1.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

/* ───────────────────────────────────────────────────────
   POUR CHAQUE OCCASION — image + liste (factuel + SEO)
─────────────────────────────────────────────────────── */
.occasions { padding-block: var(--pad-section); background: var(--cloud); }
.occasions__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.occasions__media {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  box-shadow: 0 30px 60px -42px rgba(20, 54, 42, 0.55);
}
.occasions__text { color: var(--muted); margin: 1.4rem 0 1.6rem; max-width: 46ch; }
.occasions__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1.4rem;
  margin-bottom: 2rem;
}
.occasions__list li {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--ink);
  padding-left: 1.2rem;
  position: relative;
}
.occasions__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.62em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* ───────────────────────────────────────────────────────
   AVIS GOOGLE
─────────────────────────────────────────────────────── */
.review {
  padding-block: var(--pad-section);
  background:
    radial-gradient(120% 90% at 50% 0%, var(--emerald-tint) 0%, var(--white) 60%);
}
.review__card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: clamp(2.6rem, 5vw, 4.5rem) clamp(1.8rem, 4vw, 4rem);
  box-shadow: 0 40px 90px -50px rgba(168,104,47,0.4);
}
.review__stars {
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  margin-bottom: 1.6rem;
  font-size: 1.25rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.review__title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 300;
  margin-bottom: 1.6rem;
}
.review__text {
  color: var(--muted);
  margin: 0 auto 1.2rem;
  font-size: 1rem;
}
.review__btn { margin-top: 1.6rem; }
.review__btn-g {
  display: grid;
  place-items: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--white);
  color: var(--copper);
  font-weight: 600;
  font-size: 0.85rem;
  font-family: var(--serif);
}
.review__hint {
  margin: 1.1rem auto 0;
  font-size: 0.8rem;
  color: var(--muted);
}

/* ───────────────────────────────────────────────────────
   CONTACT
─────────────────────────────────────────────────────── */
.contact {
  padding-block: var(--pad-section);
  background: var(--ink);
  color: var(--white);
}
.contact__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}
.contact .eyebrow { color: var(--gold-soft); }
.contact__title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  margin-bottom: 1.6rem;
}
.contact__title em { color: var(--gold-soft); }
.contact__text {
  color: rgba(255,255,255,0.66);
  margin-bottom: 2rem;
}
.contact__response {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

/* ── Formulaire de devis (carte claire sur fond charbon) ── */
.qform {
  background: var(--white);
  border-radius: 22px;
  padding: clamp(1.6rem, 3vw, 2.6rem);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  box-shadow: 0 40px 90px -50px rgba(0,0,0,0.6);
}
.qform__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
.qform__group { display: flex; flex-direction: column; gap: 0.45rem; }
.qform__label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.qform__input,
.qform__select,
.qform__textarea {
  width: 100%;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.8rem 0.95rem;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--ink);
  outline: none;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
  appearance: none;
  -webkit-appearance: none;
}
.qform__input::placeholder,
.qform__textarea::placeholder { color: var(--muted); opacity: 0.65; }
.qform__input:focus,
.qform__select:focus,
.qform__textarea:focus { border-color: var(--gold); background: var(--white); }
.qform__input.has-error,
.qform__select.has-error,
.qform__textarea.has-error { border-color: #c0614a; }
.qform__error { font-size: 0.72rem; color: #c0614a; min-height: 0.9em; }
.qform__select-wrap { position: relative; }
.qform__arrow {
  position: absolute; right: 0.95rem; top: 50%;
  transform: translateY(-50%); pointer-events: none;
  color: var(--muted); font-size: 0.8rem;
}
.qform__textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
.qform__submit { margin-top: 0.4rem; justify-content: center; width: 100%; }
.qform__submit-loading { display: none; }
.qform__submit.is-loading .qform__submit-text { display: none; }
.qform__submit.is-loading .qform__submit-loading { display: inline; }
.qform__success {
  padding: 1rem 1.2rem;
  background: var(--emerald-tint);
  border-left: 3px solid var(--emerald);
  border-radius: 8px;
}
.qform__success p { font-size: 0.9rem; color: var(--emerald-deep); }
/* Le bouton du formulaire reste en cuivre (contraste sur la carte blanche) */
.qform .btn--solid { background: var(--ink); color: var(--white); }
.qform .btn--solid:hover { background: var(--emerald-soft); box-shadow: 0 14px 32px -14px rgba(27,77,57,0.5); }

/* ───────────────────────────────────────────────────────
   FOOTER
─────────────────────────────────────────────────────── */
.footer {
  background: var(--emerald-deep);
  color: rgba(255,255,255,0.7);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 4rem;
  align-items: center;
  justify-content: space-between;
  padding-block: clamp(2.6rem, 5vw, 4rem);
}
.footer__logo {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--white);
}
.footer__logo-img { width: 92px; height: auto; display: block; }
.footer__line { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-top: 0.4rem; }
.footer__meta p { font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.footer__nav { display: flex; flex-wrap: wrap; gap: 1.4rem; }
.footer__nav a {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--dur) var(--ease);
}
.footer__nav a:hover { color: var(--gold-soft); }
.footer__base {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-block: 1.5rem;
  text-align: center;
}
.footer__base p { font-size: 0.76rem; color: rgba(255,255,255,0.35); margin: 0 auto; }

/* ───────────────────────────────────────────────────────
   RESPONSIVE — Tablette
─────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav__burger { display: flex; z-index: 101; }
  .nav__links {
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    flex-direction: column;
    justify-content: center;
    gap: 2.2rem;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transform: translateX(100%);
    transition: transform var(--dur) var(--ease);
  }
  .nav__links.is-open { transform: none; }
  .nav__link { font-size: 1.1rem; color: var(--ink); }
  .nav__cta { font-size: 1rem; padding: 0.8rem 1.8rem; }

  .pillars { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .offers__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .sig-grid { grid-template-columns: repeat(3, 1fr); }

  /* Parcours / Expériences / Héritage / Occasions */
  .moment { grid-template-columns: 1fr; gap: 1.6rem; }
  .moment--reverse .moment__media { order: 2; }   /* texte avant image sur mobile */
  .exp-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .heritage__inner { grid-template-columns: 1fr; }
  .occasions__inner { grid-template-columns: 1fr; }
}

/* ───────────────────────────────────────────────────────
   RESPONSIVE — Mobile
─────────────────────────────────────────────────────── */
@media (max-width: 560px) {
  .hero { height: 100svh; }
  .hero__photo { background-position: 58% 50%; }
  .hero__veil {
    /* mobile : voile clair en haut pour le texte, la flamme reste visible en bas */
    background:
      linear-gradient(to bottom, rgba(250,248,244,0.97) 0%, rgba(250,248,244,0.82) 40%, rgba(250,248,244,0.25) 72%, rgba(250,248,244,0) 100%);
  }
  .hero__content { padding-top: 2rem; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .hero__progress { display: none; }
  .qform__row { grid-template-columns: 1fr; }
  .sig-grid { grid-template-columns: repeat(2, 1fr); gap: 0.9rem; }
  .occasions__list { grid-template-columns: 1fr; }
}

/* ───────────────────────────────────────────────────────
   ACCESSIBILITÉ — prefers-reduced-motion
   Hero devient statique (hauteur 100vh, 1re image fixe).
─────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero__photo { animation: none; transform: scale(1.04); }
  .reveal { opacity: 1; transform: none; }
}

:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ───────────────────────────────────────────────────────
   CRAFT — texture grain (subtile, donne la matière "studio")
   Overlay SVG noise très léger, fixe, par-dessus tout, non-interactif.
─────────────────────────────────────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ───────────────────────────────────────────────────────
   CRAFT — curseur custom (point + anneau en lerp)
─────────────────────────────────────────────────────── */
.has-custom-cursor,
.has-custom-cursor a,
.has-custom-cursor button,
.has-custom-cursor .offer,
.has-custom-cursor .pillar,
.has-custom-cursor [role="button"] { cursor: none; }

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  margin-left: -3px;
  margin-top: -3px;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--copper);
}
.cursor-ring {
  width: 34px; height: 34px;
  margin-left: -17px; margin-top: -17px;
  border: 1px solid rgba(168,104,47,0.5);
  transition: width 0.3s var(--ease), height 0.3s var(--ease),
              margin 0.3s var(--ease), background 0.3s var(--ease),
              border-color 0.3s var(--ease);
}
.cursor-hover .cursor-ring {
  width: 56px; height: 56px;
  margin-left: -28px; margin-top: -28px;
  background: rgba(192,137,74,0.08);
  border-color: rgba(168,104,47,0.8);
}
.cursor-hover .cursor-dot { opacity: 0; }

/* Aimantation : la transition douce du retour à la position d'origine */
.btn, .nav__cta { transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
                              border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
                              transform 0.35s var(--ease); }

/* ───────────────────────────────────────────────────────
   BANDEAU CONSENTEMENT
─────────────────────────────────────────────────────── */
.consent {
  position: fixed;
  z-index: 9997;
  left: 50%;
  bottom: clamp(1rem, 3vw, 2rem);
  transform: translateX(-50%);
  width: min(620px, calc(100% - 2rem));
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  background: rgba(26,26,24,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--white);
  padding: 1.1rem 1.4rem;
  border-radius: 16px;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.5);
  animation: consentIn 0.5s var(--ease) both;
}
@keyframes consentIn {
  from { opacity: 0; transform: translateX(-50%) translateY(14px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.consent__text { font-size: 0.82rem; color: rgba(255,255,255,0.8); max-width: 38ch; margin: 0; }
.consent__link { color: var(--gold-soft); text-decoration: underline; text-underline-offset: 2px; }
.consent__actions { display: flex; gap: 0.6rem; }
.consent__btn {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 0.6rem 1.2rem;
  border-radius: 100px;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.consent__btn--ghost {
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.25);
}
.consent__btn--ghost:hover { color: var(--white); border-color: var(--white); }
.consent__btn--accept { background: var(--gold-soft); color: var(--ink); }
.consent__btn--accept:hover { background: var(--white); }

@media (max-width: 560px) {
  .consent { flex-direction: column; align-items: stretch; text-align: center; }
  .consent__text { max-width: none; }
  .consent__actions { justify-content: center; }
}

/* Le curseur custom et le grain ne s'appliquent pas en reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .cursor-dot, .cursor-ring { display: none !important; }
  body::after { display: none; }
}
