/* =========================================================================
   LASSERRE DISTRIBUTION — Feuille de style globale
   Refonte V7 — éditorial, patrimonial, prestige discret
   Palette & typographie issues du brief validé
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. Variables
   ------------------------------------------------------------------------- */
:root {
  /* Palette */
  --navy:        #1f2c3e;  /* couleur principale (issue du logo) */
  --navy-soft:   #2a3954;  /* navy légèrement éclairci pour dégradés */
  --ivory:       #f5efe4;  /* fond clair principal */
  --cream:       #faf6ec;  /* fond alternatif */
  --beige:       #e8ddc9;  /* placeholders, accents doux */
  --gold:        #b8a374;  /* séparateurs, traits, accent */
  --gold-deep:   #9c8758;  /* doré plus soutenu (hover) */
  --text-2:      #6b7588;  /* textes secondaires (gris-bleu doux) */
  --white:       #ffffff;
  --line:        rgba(31, 44, 62, 0.10);
  --line-gold:   rgba(184, 163, 116, 0.45);

  /* Typographie */
  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Mesures */
  --maxw: 1180px;
  --maxw-narrow: 720px;
  --pad-x: clamp(1.5rem, 5vw, 5rem);
  --section-y: clamp(4.5rem, 9vw, 8.5rem);
  --radius: 2px;

  /* Transitions */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* -------------------------------------------------------------------------
   2. Reset & base
   ------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.75;
  color: var(--navy);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* -------------------------------------------------------------------------
   3. Typographie utilitaire
   ------------------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0.005em;
  color: var(--navy);
}

.serif-em { font-style: italic; font-weight: 400; }

/* Sur-ligne : petite majuscule très espacée, précédée d'un trait doré */
.overline {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1.5rem;
}
.overline::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
.overline.centered { justify-content: center; }
.overline.centered::after {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-2);
}

.section-title {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  margin-bottom: 1.4rem;
}

.section-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  color: var(--text-2);
  font-weight: 400;
}

/* -------------------------------------------------------------------------
   4. Layout
   ------------------------------------------------------------------------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-x); }
.wrap-narrow { max-width: var(--maxw-narrow); margin: 0 auto; padding: 0 var(--pad-x); }

.section { padding: var(--section-y) 0; }
.section--cream { background: var(--cream); }
.section--ivory { background: var(--ivory); }
.section--beige { background: var(--beige); }
.section--navy  { background: var(--navy); color: var(--ivory); }
.section--white { background: var(--white); }

.center { text-align: center; }

/* -------------------------------------------------------------------------
   5. Navigation
   ------------------------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 239, 228, 0.86);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: background 0.4s var(--ease);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo : image PNG transparente (lockup vertical L·D + wordmark) */
.brand { display: flex; align-items: center; gap: 0.85rem; }
.brand__logo { height: 112px; width: auto; display: block; }

/* Anciens éléments du monogramme CSS — conservés au cas où, non utilisés */
.brand__mono {
  width: 42px; height: 42px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--navy);
  flex-shrink: 0;
}
.brand__mono span { color: var(--gold); margin: 0 1px; }
.brand__word { line-height: 1; }
.brand__name {
  font-family: var(--serif);
  font-size: 1.32rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--navy);
}
.brand__sub {
  font-family: var(--sans);
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-top: 3px;
}

.nav__links { display: flex; align-items: center; gap: 2.1rem; list-style: none; }
.nav__links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--navy);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}
.nav__links a:hover { color: var(--gold-deep); }
.nav__links a:hover::after,
.nav__links a.is-active::after { width: 100%; }
.nav__links a.is-active { color: var(--gold-deep); }

/* Sélecteur de langue (drapeaux) */
.nav__lang { display: flex !important; flex-direction: row; flex-wrap: nowrap; align-items: center; gap: 0.7rem; margin-left: 1.1rem; padding-left: 1.1rem; border-left: 1px solid rgba(31,44,62,0.2); }
.nav__lang a, .nav__lang span { display: flex; line-height: 0; padding: 0 !important; }
.nav__lang a::after { display: none !important; }
.nav__lang .flag { height: 26px; width: auto; border-radius: 3px; box-shadow: 0 0 0 1px rgba(31,44,62,0.18); display: block; }
.nav__lang a { opacity: 0.5; transition: opacity 0.3s var(--ease); }
.nav__lang a:hover { opacity: 1; }
.nav__lang .is-current .flag { box-shadow: 0 0 0 2px var(--gold); }

.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__toggle span {
  width: 24px; height: 1.5px; background: var(--navy);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

/* -------------------------------------------------------------------------
   6. Boutons & liens
   ------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 1.05rem 2.1rem;
  border-radius: var(--radius);
  transition: all 0.35s var(--ease);
  cursor: pointer;
}
.btn--solid {
  background: var(--navy);
  color: var(--ivory);
  border: 1px solid var(--navy);
}
.btn--solid:hover { background: transparent; color: var(--navy); }
.btn--gold {
  background: var(--gold);
  color: var(--navy);
  border: 1px solid var(--gold);
}
.btn--gold:hover { background: var(--gold-deep); border-color: var(--gold-deep); color: var(--ivory); }
.btn--ghost {
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(245, 239, 228, 0.4);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}
.btn--outline:hover { background: var(--navy); color: var(--ivory); }

/* Lien fléché éditorial */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  transition: gap 0.3s var(--ease), color 0.3s var(--ease);
}
.link-arrow .arr { transition: transform 0.3s var(--ease); }
.link-arrow:hover { color: var(--navy); }
.link-arrow:hover .arr { transform: translateX(5px); }
.section--navy .link-arrow { color: var(--gold); }
.section--navy .link-arrow:hover { color: var(--ivory); }

/* -------------------------------------------------------------------------
   7. Hero
   ------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
/* Image hero : remplacer var(--hero-photo) par url('../assets/hero.jpg')
   Le filtre reproduit le rendu tons chauds validé dans le brief. */
.hero__bg {
  position: absolute;
  inset: 0;
  background-color: #2a251f;
  background-size: cover;
  background-position: center;
  filter: sepia(0.40) saturate(0.95) hue-rotate(-16deg) brightness(0.9) contrast(0.98) blur(3px);
  transform: scale(1.04); /* compense le léger débord du flou sur les bords */
  z-index: -2;
}
.hero__svg { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -2; }
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(31,44,62,0.45) 0%, rgba(31,44,62,0.30) 38%, rgba(31,44,62,0.30) 70%, rgba(31,44,62,0.44) 100%);
  z-index: -1;
}
.hero__content { max-width: 760px; padding-top: 2rem; padding-bottom: 2rem; text-align: center; margin-left: auto; margin-right: auto; }
.hero .overline { color: #f3ead9; }
.hero .overline::before { background: var(--gold); }
.hero__title {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 500;
  line-height: 1.04;
  color: var(--white);
  text-shadow: 0 1px 30px rgba(31, 44, 62, 0.35);
  margin-bottom: 1.6rem;
}
.hero__sub {
  font-size: 1.18rem;
  line-height: 1.7;
  color: #f6f0e6;
  max-width: 32em;
  margin: 0 auto 2.4rem;
  text-shadow: 0 1px 18px rgba(31, 44, 62, 0.4);
}
.hero__scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #f3ead9;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  opacity: 0.85;
}
.hero__scroll::after {
  content: ""; width: 1px; height: 36px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollpulse 2.4s var(--ease) infinite;
}
@keyframes scrollpulse { 0%,100%{opacity:.3;transform:scaleY(.7)} 50%{opacity:1;transform:scaleY(1)} }

/* -------------------------------------------------------------------------
   8. Bloc « Le marchand de vin » (split image/texte)
   ------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.split--reverse .split__media { order: 2; }
.split__body p { margin-bottom: 1.2rem; color: var(--text-2); }
.split__body .section-title { margin-bottom: 1.6rem; }

/* Cadre photo / placeholder */
.frame {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--beige);
  border-radius: var(--radius);
  overflow: hidden;
}
.frame--wide { aspect-ratio: 3 / 2; }
.frame img { width: 100%; height: 100%; object-fit: cover; }
.frame__ph {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.8rem;
  text-align: center;
  color: var(--gold-deep);
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(255,255,255,0.5), transparent 60%),
    repeating-linear-gradient(135deg, rgba(184,163,116,0.06) 0 14px, transparent 14px 28px),
    var(--beige);
}
.frame__ph svg { width: 44px; height: 44px; opacity: 0.5; }
.frame__ph small {
  font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-deep); opacity: 0.8;
}
.frame::after {
  content: "";
  position: absolute; inset: 14px;
  border: 1px solid rgba(245,239,228,0.5);
  pointer-events: none;
}

/* -------------------------------------------------------------------------
   9. Listes typographiques en flux (régions, maisons)
   ------------------------------------------------------------------------- */
.flow {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.9;
  color: var(--navy);
}
.flow--regions { font-size: clamp(1.4rem, 3vw, 2.2rem); }
.flow--maisons { font-size: clamp(1rem, 1.6vw, 1.25rem); }
.flow .sep { color: var(--gold); margin: 0 0.55rem; font-weight: 400; }
.flow a { transition: color 0.3s var(--ease); }
.flow a:hover { color: var(--gold-deep); }

.flow__secondary {
  margin-top: 1.8rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line-gold);
  font-style: italic;
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  color: var(--text-2);
}

/* -------------------------------------------------------------------------
   10. Stats (Bordeaux City Bond)
   ------------------------------------------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-gold);
  border: 1px solid var(--line-gold);
  margin: 2.8rem 0;
}
.stat {
  background: var(--cream);
  padding: 2.2rem 1.4rem;
  text-align: center;
}
.section--navy .stat { background: var(--navy); }
.stat__icon { color: var(--gold); margin-bottom: 1rem; display: flex; justify-content: center; }
.stat__icon svg { width: 30px; height: 30px; }
.stat__big {
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.section--navy .stat__big { color: var(--ivory); }
.stat__label {
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  color: var(--text-2);
  text-transform: uppercase;
}

/* -------------------------------------------------------------------------
   11. Infos en ligne (visites)
   ------------------------------------------------------------------------- */
.inline-infos {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem 2.4rem;
  margin: 2rem 0 2.4rem;
}
.inline-info {
  display: flex; align-items: center; gap: 0.65rem;
  font-size: 0.92rem;
  color: var(--navy);
}
.inline-info svg { width: 19px; height: 19px; color: var(--gold-deep); flex-shrink: 0; }
.section--navy .inline-info { color: var(--ivory); }
.section--navy .inline-info svg { color: var(--gold); }

/* -------------------------------------------------------------------------
   12. Formulaire — Espace privilégié
   ------------------------------------------------------------------------- */
.form-card { max-width: 640px; margin: 0 auto; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 1.4rem; margin-top: 2.4rem; }
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 239, 228, 0.7);
}
.field input,
.field select {
  font-family: var(--sans);
  font-size: 0.98rem;
  padding: 0.85rem 1rem;
  background: rgba(245, 239, 228, 0.06);
  border: 1px solid rgba(245, 239, 228, 0.22);
  border-radius: var(--radius);
  color: var(--ivory);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.field input::placeholder { color: rgba(245, 239, 228, 0.4); }
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(245, 239, 228, 0.1);
}
.field select option { color: var(--navy); }

.pills { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.pill {
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  padding: 0.55rem 1.1rem;
  border: 1px solid rgba(245, 239, 228, 0.28);
  border-radius: 100px;
  color: rgba(245, 239, 228, 0.85);
  transition: all 0.3s var(--ease);
}
.pill:hover { border-color: var(--gold); }
.pill.is-selected { background: var(--gold); border-color: var(--gold); color: var(--navy); font-weight: 500; }

.form-note {
  font-size: 0.8rem;
  color: rgba(245, 239, 228, 0.55);
  margin-top: 1.4rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.form-note svg { width: 14px; height: 14px; flex-shrink: 0; }
.form-submit { margin-top: 1.8rem; }
.form-success {
  display: none;
  margin-top: 1.4rem;
  padding: 1rem 1.2rem;
  background: rgba(184, 163, 116, 0.18);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  color: var(--ivory);
  font-size: 0.92rem;
}
.form-success.show { display: block; }

/* -------------------------------------------------------------------------
   13. Footer
   ------------------------------------------------------------------------- */
.footer {
  background: var(--navy);
  color: rgba(245, 239, 228, 0.7);
  padding: 3.2rem 0;
  border-top: 1px solid rgba(184, 163, 116, 0.2);
}
.footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.4rem;
}
.footer__text { font-size: 0.82rem; letter-spacing: 0.02em; }
.footer__social { display: flex; gap: 1.1rem; }
.footer__social a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid rgba(245, 239, 228, 0.2);
  border-radius: 50%;
  transition: all 0.3s var(--ease);
}
.footer__social a:hover { border-color: var(--gold); color: var(--gold); }
.footer__social svg { width: 17px; height: 17px; }
.footer__legal { font-size: 0.8rem; margin-top: 0.55rem; color: rgba(245,239,228,0.6); }
.footer__legal a { border-bottom: 1px solid var(--line-gold); transition: color 0.3s var(--ease); }
.footer__legal a:hover { color: var(--gold); }
.footer__warning { font-size: 0.7rem; line-height: 1.5; color: rgba(245,239,228,0.42); margin-top: 0.6rem; max-width: 60ch; }

/* Pages légales */
.legal { max-width: 760px; margin: 0 auto; }
.legal h2 { font-family: var(--serif); font-weight: 600; font-size: 1.45rem; color: var(--navy); margin: 2.4rem 0 0.7rem; }
.legal h2:first-of-type { margin-top: 0; }
.legal p, .legal li { color: var(--text-2); font-size: 0.97rem; line-height: 1.7; margin-bottom: 0.7rem; }
.legal ul { padding-left: 1.2rem; margin-bottom: 0.9rem; }
.legal strong { color: var(--navy); font-weight: 600; }
.legal a { color: var(--gold-deep); border-bottom: 1px solid var(--line-gold); }
.legal .ph-note { margin: 0.4rem 0 1.2rem; }
.field--check { flex-direction: row; align-items: flex-start; gap: 0.6rem; }
.field--check input { width: auto; margin-top: 0.25rem; accent-color: var(--gold); }
.field--check label { font-size: 0.82rem; letter-spacing: 0; text-transform: none; color: rgba(245,239,228,0.85); line-height: 1.4; }

/* -------------------------------------------------------------------------
   14. Bandeau de page (pages secondaires)
   ------------------------------------------------------------------------- */
.page-head {
  background: var(--navy);
  color: var(--ivory);
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(3.5rem, 7vw, 6rem);
  text-align: center;
}
.page-head .overline { color: var(--gold); }
.page-head h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 1rem;
}
.page-head p { color: rgba(245, 239, 228, 0.75); max-width: 36em; margin: 0 auto; }

/* Variante bandeau avec photo de fond */
.page-head--photo { position: relative; isolation: isolate; overflow: hidden; }
.page-head__bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
  filter: saturate(0.85) brightness(0.6) blur(2.5px);
  transform: scale(1.06);
}
.page-head__overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(31,44,62,0.55) 0%, rgba(31,44,62,0.50) 50%, rgba(31,44,62,0.64) 100%);
}

.crumb {
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 2.5rem;
}
.crumb a:hover { color: var(--gold-deep); }
.crumb .sep { margin: 0 0.5rem; color: var(--gold); }

/* -------------------------------------------------------------------------
   15. Cartes (régions, carnet)
   ------------------------------------------------------------------------- */
.grid-cards { display: grid; gap: 1.6rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -24px rgba(31,44,62,0.3); }
.card__media { aspect-ratio: 3/2; position: relative; }
.card__body { padding: 1.6rem 1.7rem 1.9rem; }
.card__kicker {
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 0.7rem;
}
.card__title { font-size: 1.5rem; margin-bottom: 0.6rem; }
.card__text { font-size: 0.95rem; color: var(--text-2); line-height: 1.65; }
.card__body .link-arrow { margin-top: 1.2rem; }

/* Liste maisons par région (page maisons) */
.maisons-region { margin-bottom: 3rem; }
.maisons-region__head {
  display: flex; align-items: baseline; gap: 1rem;
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--line-gold);
}
.maisons-region__head h3 { font-size: 1.7rem; }
.maisons-region__count { font-size: 0.78rem; letter-spacing: 0.1em; color: var(--text-2); text-transform: uppercase; }

/* Note placeholder discrète */
.ph-note {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold-deep);
  background: rgba(184, 163, 116, 0.12);
  border: 1px dashed var(--line-gold);
  padding: 0.4rem 0.9rem; border-radius: 100px;
  margin-top: 1.5rem;
}

/* -------------------------------------------------------------------------
   16. Carnet (journal) — placeholders
   ------------------------------------------------------------------------- */
.entry {
  display: grid; grid-template-columns: 200px 1fr; gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.entry__date { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-deep); }
.entry__title { font-size: 1.7rem; margin: 0.3rem 0 0.6rem; }
.entry__excerpt { color: var(--text-2); font-size: 0.98rem; }

/* Cinq raisons (page parcours) */
.reasons { max-width: 760px; margin: 2.8rem auto 0; }
.reason {
  display: grid; grid-template-columns: 70px 1fr; gap: 1.8rem;
  padding: 1.9rem 0; border-top: 1px solid var(--line); align-items: baseline;
}
.reason:first-child { border-top: none; }
.reason__n { font-family: var(--serif); font-size: 2.6rem; font-weight: 500; color: var(--gold); line-height: 0.9; }
.reason__t { font-size: 1.45rem; margin-bottom: 0.45rem; }
.reason p { color: var(--text-2); font-size: 1rem; line-height: 1.7; }
@media (max-width: 760px) { .reason { grid-template-columns: 50px 1fr; gap: 1rem; } .reason__n { font-size: 2rem; } }

/* Narration parcours */
.prose p { margin-bottom: 1.2rem; color: var(--navy); }
.prose p.muted { color: var(--text-2); }

/* Signature manuscrite */
.signature { margin-top: 2rem; }
.signature__ink {
  font-family: "Mrs Saint Delafield", "Mr De Haviland", cursive;
  font-size: clamp(2.4rem, 4.6vw, 3.2rem);
  color: #131313;
  line-height: 0.7;
  display: block;
}
.signature__flourish { width: 170px; height: 18px; color: var(--gold); display: block; margin: 0.1rem 0 0.7rem; overflow: visible; }
.signature__role {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-2);
}

/* -------------------------------------------------------------------------
   17. Animations au scroll
   ------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .hero__scroll::after { animation: none; }
}

/* -------------------------------------------------------------------------
   18. Responsive
   ------------------------------------------------------------------------- */
@media (max-width: 900px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  body { font-size: 16px; }

  .nav__toggle { display: flex; }
  .nav__inner { height: 104px; }
  .brand__logo { height: 80px; }
  .nav__links {
    position: fixed;
    inset: 104px 0 auto 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem var(--pad-x) 1.5rem;
    transform: translateY(-130%);
    transition: transform 0.45s var(--ease);
    box-shadow: 0 20px 40px -28px rgba(31,44,62,0.4);
  }
  .nav__links.open { transform: translateY(0); }
  .nav__links li { width: 100%; border-bottom: 1px solid var(--line); }
  .nav__links a { display: block; padding: 1rem 0; font-size: 1rem; }
  .nav__toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav__toggle.open span:nth-child(2) { opacity: 0; }
  .nav__toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split--reverse .split__media { order: 0; }
  .frame { aspect-ratio: 3/2; }

  .stats { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }

  .entry { grid-template-columns: 1fr; gap: 0.5rem; padding: 1.6rem 0; }

  .footer__inner { flex-direction: column; text-align: center; }

  .hero { min-height: 82vh; }
}

@media (max-width: 420px) {
  .stats { grid-template-columns: 1fr; }
  .brand__sub { letter-spacing: 0.32em; }
}
