/* ==========================================================================
   Charlotte Varenne — Private Companion
   Design system : encre profonde, papier os, filets dorés.
   Display : Bodoni Moda (didone couture) · Texte : Jost (grotesque géométrique)
   ========================================================================== */

/* --------------------------------------------------------------- 1. Tokens */
:root {
  --ink:        #0A0A0B;
  --ink-2:      #101012;
  --ink-3:      #17181A;
  --bone:       #F4F1EC;
  --bone-2:     #E4DFD5;
  --smoke:      #9B968D;
  --gold:       #C6A664;
  --gold-deep:  #8A7440;

  --line:        rgba(198, 166, 100, 0.30);
  --line-soft:   rgba(244, 241, 236, 0.12);
  --text:        rgba(244, 241, 236, 0.80);
  --text-strong: rgba(244, 241, 236, 0.96);

  --font-display: "Bodoni Moda", "Didot", "Bodoni MT", "Times New Roman", serif;
  --font-body:    "Jost", "Futura", "Avenir Next", system-ui, -apple-system, sans-serif;

  --shell: 1280px;
  --gutter: clamp(20px, 5vw, 72px);
  --section-y: clamp(76px, 11vw, 150px);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ----------------------------------------------------------------- 2. Base */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.85;
  letter-spacing: 0.012em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; }
p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--gold); color: var(--ink); }

:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 4px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; top: -100px; left: 16px; z-index: 999;
  padding: 12px 20px; background: var(--gold); color: var(--ink);
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
}
.skip-link:focus { top: 16px; }

/* Grain très léger : donne de la matière au noir */
.grain {
  position: fixed; inset: 0; z-index: 60; pointer-events: none; opacity: 0.05;
  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='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------------------------------------------------------- 3. Typographie */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--text-strong);
  line-height: 1.06;
  letter-spacing: -0.005em;
  font-size: clamp(2.05rem, 4.4vw, 3.55rem);
}
.display--xl { font-size: clamp(2.6rem, 7vw, 5.2rem); line-height: 0.98; }
.display--sm { font-size: clamp(1.5rem, 2.6vw, 2.05rem); }
.display em { font-style: italic; color: var(--gold); }

.eyebrow {
  display: flex; align-items: center; gap: 14px;
  margin: 0 0 26px;
  font-size: 0.7rem; font-weight: 500; line-height: 1;
  letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--gold);
}
.eyebrow__rule { display: block; width: 34px; height: 1px; background: var(--gold); opacity: 0.7; flex: none; }

.lede {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.9vw, 1.5rem);
  line-height: 1.6;
  color: var(--text-strong);
  font-weight: 400;
}
.small { font-size: 0.9rem; color: var(--smoke); line-height: 1.75; }
.rule { width: 100%; height: 1px; background: var(--line); transform-origin: left; }

/* --------------------------------------------------------------- 4. Layout */
.shell { width: min(100% - (var(--gutter) * 2), var(--shell)); margin-inline: auto; }

.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: clamp(52px, 7vw, 92px); }
.section--flush-top { padding-top: 0; }
.section--bone { background: var(--bone); color: rgba(10, 10, 11, 0.78); }
.section--bone .display,
.section--bone .lede { color: #0A0A0B; }
.section--bone .eyebrow { color: var(--gold-deep); }
.section--bone .eyebrow__rule { background: var(--gold-deep); }
.section--bone .rule { background: rgba(10, 10, 11, 0.16); }
.section--bone .small { color: rgba(10, 10, 11, 0.55); }

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.split__text > .eyebrow { margin-bottom: 22px; }
.split__text .display { margin-bottom: 24px; }

.measure { max-width: 58ch; }
.center { text-align: center; }
.center .eyebrow { justify-content: center; }
.center .measure { margin-inline: auto; }

/* --------------------------------------------------------------- 5. Boutons */
.btn {
  --btn-fg: var(--bone);
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; padding: 17px 34px;
  border: 1px solid var(--line);
  color: var(--btn-fg);
  font-family: var(--font-body);
  font-size: 0.715rem; font-weight: 500; line-height: 1;
  letter-spacing: 0.26em; text-transform: uppercase;
  background: transparent; cursor: pointer;
  position: relative; overflow: hidden;
  transition: color 0.5s var(--ease), border-color 0.5s var(--ease);
}
.btn::before {
  content: ""; position: absolute; inset: 0; background: var(--gold);
  transform: scaleX(0); transform-origin: right; z-index: 0;
  transition: transform 0.55s var(--ease);
}
.btn span { position: relative; z-index: 1; }
.btn:hover, .btn:focus-visible { color: var(--ink); border-color: var(--gold); }
.btn:hover::before, .btn:focus-visible::before { transform: scaleX(1); transform-origin: left; }

.btn--solid { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.btn--solid::before { background: var(--bone); }
.btn--solid:hover, .btn--solid:focus-visible { color: var(--ink); border-color: var(--bone); }

.btn--ghost { border-color: rgba(244, 241, 236, 0.22); color: var(--smoke); }
.btn--ghost::before { background: rgba(244, 241, 236, 0.9); }

.btn--mini { padding: 12px 22px; font-size: 0.65rem; letter-spacing: 0.2em; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.center .btn-row { justify-content: center; }

.section--bone .btn { --btn-fg: #0A0A0B; border-color: rgba(10, 10, 11, 0.28); }
.section--bone .btn::before { background: #0A0A0B; }
.section--bone .btn:hover { color: var(--bone); border-color: #0A0A0B; }

/* ------------------------------------------------------- 6. En-tête / nav */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 50;
  padding-block: 22px;
  background: linear-gradient(180deg, rgba(10, 10, 11, 0.82), rgba(10, 10, 11, 0));
  transition: background 0.5s var(--ease), padding 0.5s var(--ease), border-color 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-stuck {
  padding-block: 13px;
  background: rgba(10, 10, 11, 0.94);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line-soft);
}
.site-header__inner {
  width: min(100% - (var(--gutter) * 2), var(--shell));
  margin-inline: auto;
  display: flex; align-items: center; gap: 28px;
}

.wordmark { display: block; margin-right: auto; line-height: 1; }
.wordmark__name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.12rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-strong);
}
.wordmark__sub {
  display: block; margin-top: 7px;
  font-size: 0.56rem; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--gold);
}

.nav__list { display: none; gap: 30px; }
.nav__link {
  position: relative; display: inline-block; padding-block: 6px;
  font-size: 0.68rem; font-weight: 400; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(244, 241, 236, 0.62);
  transition: color 0.4s var(--ease);
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: right;
  transition: transform 0.45s var(--ease);
}
.nav__link:hover, .nav__link:focus-visible, .nav__link.is-active { color: var(--bone); }
.nav__link:hover::after, .nav__link:focus-visible::after, .nav__link.is-active::after {
  transform: scaleX(1); transform-origin: left;
}

.header-phone {
  display: none; align-items: center; gap: 9px;
  font-size: 0.68rem; letter-spacing: 0.16em; color: var(--gold);
  white-space: nowrap;
}
.header-phone__dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

.burger {
  display: grid; place-content: center; gap: 6px;
  width: 42px; height: 42px; padding: 0;
  background: none; border: 1px solid var(--line-soft); cursor: pointer;
}
.burger__bar { display: block; width: 17px; height: 1px; background: var(--bone); transition: transform 0.4s var(--ease), opacity 0.3s; }
.burger[aria-expanded="true"] .burger__bar:first-child { transform: translateY(3.5px) rotate(45deg); }
.burger[aria-expanded="true"] .burger__bar:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.menu-overlay {
  position: fixed; inset: 0; z-index: 49;
  display: grid; place-content: center; gap: 40px; text-align: center;
  background: rgba(10, 10, 11, 0.985);
  opacity: 0; visibility: hidden;
  transition: opacity 0.5s var(--ease), visibility 0.5s;
}
.menu-overlay[hidden] { display: grid; }          /* piloté par la classe, pas par [hidden] */
.menu-overlay.is-open { opacity: 1; visibility: visible; }
.menu-overlay ul { display: grid; gap: clamp(10px, 2.2vh, 22px); }
.menu-overlay a {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 6.5vw, 2.5rem);
  color: rgba(244, 241, 236, 0.86);
  transition: color 0.4s var(--ease);
}
.menu-overlay a:hover { color: var(--gold); }
.menu-overlay__phone {
  font-family: var(--font-body); font-size: 0.75rem;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold);
}

/* ------------------------------------------------------------------ 7. Hero */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  padding-block: clamp(112px, 15vh, 168px) clamp(56px, 9vh, 104px);
  overflow: hidden;
}
.hero__grid {
  position: relative; z-index: 1; width: 100%;
  display: grid; grid-template-columns: 1fr;
  gap: clamp(34px, 5vw, 76px); align-items: center;
}
.hero__portrait { position: relative; order: -1; }
.hero__portrait-media {
  position: relative; z-index: 1; overflow: hidden;
  aspect-ratio: 4 / 5; max-height: 44svh; background: var(--ink-2);
}
.hero__portrait-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 16%; }
.hero__portrait::before {
  content: ""; position: absolute; z-index: 0; inset: 18px -18px -18px 18px;
  border: 1px solid var(--line);
}
.hero__eyebrow {
  margin-bottom: 20px; font-size: 0.66rem; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--gold);
}
.hero__name {
  font-family: var(--font-display);
  font-size: clamp(2.9rem, 11.5vw, 8.4rem);
  line-height: 0.9; letter-spacing: -0.015em;
  color: var(--bone); margin: 0;
}
.hero__name span { display: block; }
.hero__name em { font-style: italic; }
.hero__rule { width: min(340px, 60%); height: 1px; background: var(--gold); margin: 34px 0 30px; transform-origin: left; }
.hero__claim { max-width: 46ch; font-size: 1.02rem; color: rgba(244, 241, 236, 0.78); }
.hero__scroll {
  position: absolute; right: var(--gutter); bottom: clamp(24px, 5vh, 44px); z-index: 2;
  display: none; align-items: center; gap: 12px;
  font-size: 0.6rem; letter-spacing: 0.34em; text-transform: uppercase; color: var(--smoke);
}
.hero__scroll::after { content: ""; width: 54px; height: 1px; background: var(--line); }

/* Séquence d'entrée */
.hero__eyebrow, .hero__name span, .hero__claim, .hero .btn-row,
.hero__portrait { animation: rise 1.15s var(--ease) both; }
.hero__portrait { animation-duration: 1.4s; animation-delay: 0.1s; }
.hero__name span:nth-child(1) { animation-delay: 0.12s; }
.hero__name span:nth-child(2) { animation-delay: 0.22s; }
.hero__claim { animation-delay: 0.42s; }
.hero .btn-row { animation-delay: 0.54s; }
.hero__rule { animation: draw 1.2s var(--ease) 0.34s both; }
@keyframes rise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@keyframes draw { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* -------------------------------------------------------------- 8. Figures */
.figure { position: relative; margin: 0; }
.figure__media { position: relative; overflow: hidden; }
.figure__media img { width: 100%; transition: transform 1.4s var(--ease); }
.figure:hover .figure__media img { transform: scale(1.035); }
.figure__caption {
  margin-top: 16px; font-size: 0.66rem; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--smoke);
}
/* Filet doré décalé — signature graphique (desktop uniquement) */
.figure--framed .figure__media { z-index: 1; }
.figure--tall .figure__media { aspect-ratio: 3 / 4; max-height: 74svh; }
.figure--tall .figure__media img { height: 100%; object-fit: cover; }
.figure--portrait .figure__media { aspect-ratio: 4 / 5; max-height: 78svh; }
.figure--portrait .figure__media img { height: 100%; object-fit: cover; }

/* --------------------------------------------------------------- 9. Piliers */
.pillars { display: grid; gap: 1px; background: var(--line-soft); border-block: 1px solid var(--line-soft); }
.pillar { background: var(--ink); padding: clamp(32px, 4vw, 52px) clamp(24px, 3vw, 44px); }
.pillar__index {
  font-family: var(--font-display); font-size: 0.9rem; color: var(--gold);
  letter-spacing: 0.1em; display: block; margin-bottom: 20px;
}
.pillar__title {
  font-family: var(--font-display); font-size: 1.4rem; color: var(--text-strong);
  margin-bottom: 14px;
}
.pillar__text { font-size: 0.95rem; line-height: 1.8; color: rgba(244, 241, 236, 0.66); }

/* ---------------------------------------------------------- 10. Citation */
.quote { position: relative; padding-block: clamp(40px, 6vw, 76px); text-align: center; }
.quote__text {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: clamp(1.4rem, 3.2vw, 2.4rem); line-height: 1.42;
  color: var(--text-strong); max-width: 24ch; margin-inline: auto;
}
.quote__mark { display: block; width: 1px; height: 46px; background: var(--gold); margin: 0 auto 32px; }

/* ------------------------------------------- 11. Registre des engagements */
.ledger {
  background: var(--bone); color: #0A0A0B;
  padding: clamp(30px, 5vw, 68px);
  position: relative;
}
.ledger::after {
  content: ""; position: absolute; inset: 12px; border: 1px solid rgba(10, 10, 11, 0.14); pointer-events: none;
}
.ledger__head { text-align: center; padding-bottom: clamp(26px, 4vw, 46px); }
.ledger__title { font-family: var(--font-display); font-size: clamp(1.6rem, 3.4vw, 2.4rem); }
.ledger__intro { max-width: 52ch; margin: 18px auto 0; color: rgba(10, 10, 11, 0.62); font-size: 0.97rem; }

.ledger__item {
  display: grid; grid-template-columns: 1fr; gap: 6px 32px;
  padding-block: clamp(22px, 3vw, 32px);
  border-top: 1px solid rgba(10, 10, 11, 0.16);
}
.ledger__name {
  font-family: var(--font-display); font-size: 1.32rem; color: #0A0A0B; line-height: 1.25;
}
.ledger__duration {
  font-size: 0.66rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: rgba(10, 10, 11, 0.5); margin-top: 8px;
}
.ledger__price {
  font-family: var(--font-display); font-size: 1.5rem; color: var(--gold-deep);
  white-space: nowrap;
}
.ledger__note { font-size: 0.94rem; line-height: 1.75; color: rgba(10, 10, 11, 0.66); }
.ledger__foot {
  border-top: 1px solid rgba(10, 10, 11, 0.16); padding-top: 26px; margin-top: 4px;
  font-size: 0.86rem; color: rgba(10, 10, 11, 0.55); text-align: center;
}

/* ------------------------------------------------------------ 12. Listes */
.list-fine { display: grid; gap: 0; margin-top: 26px; }
.list-fine li {
  padding: 15px 0 15px 26px; position: relative;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.97rem; color: rgba(244, 241, 236, 0.74);
}
.list-fine li::before {
  content: ""; position: absolute; left: 0; top: 26px;
  width: 10px; height: 1px; background: var(--gold);
}
.section--bone .list-fine li { border-bottom-color: rgba(10, 10, 11, 0.12); color: rgba(10, 10, 11, 0.72); }
.section--bone .list-fine li::before { background: var(--gold-deep); }

.blocks { display: grid; gap: clamp(34px, 5vw, 60px); }
.block__title {
  font-family: var(--font-display); font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  color: var(--text-strong); margin-bottom: 16px;
}
.block__title--gold { color: var(--gold); }
.section--bone .block__title { color: #0A0A0B; }

/* ---------------------------------------------------------- 13. Contact */
.contact-cluster { display: grid; gap: 1px; background: var(--line-soft); margin-top: 42px; }
.contact-line {
  display: flex; flex-direction: column; gap: 8px;
  background: var(--ink-2); padding: 26px 30px;
  transition: background 0.45s var(--ease);
}
.contact-line:hover { background: var(--ink-3); }
.contact-line__label {
  font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold);
}
.contact-line__value {
  font-family: var(--font-display); font-size: clamp(1.35rem, 2.8vw, 1.95rem);
  color: var(--gold); transition: color 0.4s var(--ease);
}
.contact-line:hover .contact-line__value { color: var(--bone); }

/* Carte d'invitation — écho du registre, sur papier os */
.invitation {
  position: relative; max-width: 920px; margin-inline: auto; text-align: center;
  background: var(--bone); color: #0A0A0B;
  padding: clamp(40px, 6vw, 78px) clamp(24px, 5vw, 66px);
}
.invitation::after {
  content: ""; position: absolute; inset: 12px;
  border: 1px solid rgba(10, 10, 11, 0.14); pointer-events: none;
}
.invitation__eyebrow {
  font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 22px;
}
.invitation__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.5rem, 3.2vw, 2.3rem); line-height: 1.26;
  max-width: 21ch; margin: 0 auto 20px;
}
.invitation__text { max-width: 46ch; margin-inline: auto; color: rgba(10, 10, 11, 0.62); font-size: 0.98rem; }
.invitation__phone {
  display: inline-block; margin-top: 34px; padding-bottom: 6px;
  font-family: var(--font-display); font-size: clamp(1.55rem, 3.6vw, 2.35rem);
  color: #0A0A0B; border-bottom: 1px solid rgba(10, 10, 11, 0.3);
  transition: color 0.4s var(--ease), border-color 0.4s var(--ease);
}
.invitation__phone:hover { color: var(--gold-deep); border-color: var(--gold-deep); }
.invitation__note {
  margin-top: 20px; font-size: 0.68rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(10, 10, 11, 0.45);
}

/* --------------------------------------------------------- 14. Portraits */
.gallery { display: grid; gap: clamp(12px, 1.6vw, 22px); grid-template-columns: repeat(2, 1fr); }
.gallery__item { position: relative; margin: 0; cursor: zoom-in; overflow: hidden; background: var(--ink-2); }
.gallery__item img { width: 100%; aspect-ratio: 2 / 3; object-fit: cover; transition: transform 1.3s var(--ease), opacity 0.6s; }
.gallery__item:hover img { transform: scale(1.04); }
.gallery__item::after {
  content: ""; position: absolute; inset: 10px; border: 1px solid rgba(244, 241, 236, 0);
  transition: border-color 0.5s var(--ease); pointer-events: none;
}
.gallery__item:hover::after { border-color: var(--line); }

.lightbox {
  position: fixed; inset: 0; z-index: 80;
  display: grid; place-items: center; padding: clamp(16px, 4vw, 48px);
  background: rgba(6, 6, 7, 0.97);
  opacity: 0; visibility: hidden; transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(92vw, 780px); max-height: 88svh; width: auto; object-fit: contain; }
.lightbox__close, .lightbox__nav {
  position: absolute; background: none; border: 1px solid var(--line-soft);
  color: var(--bone); width: 46px; height: 46px; cursor: pointer;
  font-size: 1rem; line-height: 1; display: grid; place-content: center;
  transition: border-color 0.4s var(--ease), color 0.4s var(--ease);
}
.lightbox__close:hover, .lightbox__nav:hover { border-color: var(--gold); color: var(--gold); }
.lightbox__close { top: 20px; right: 20px; }
.lightbox__nav--prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 16px; top: 50%; transform: translateY(-50%); }

/* ------------------------------------------------------------ 15. Bandeau */
.strip {
  border-block: 1px solid var(--line-soft);
  padding-block: clamp(46px, 7vw, 90px);
  text-align: center;
}
.strip__title { font-family: var(--font-display); font-size: clamp(1.7rem, 4vw, 3rem); color: var(--text-strong); }
.strip__text { max-width: 46ch; margin: 22px auto 0; color: rgba(244, 241, 236, 0.7); }

/* --------------------------------------------------------- 16. Pied de page */
.site-footer { border-top: 1px solid var(--line-soft); background: var(--ink-2); }
.site-footer__top {
  width: min(100% - (var(--gutter) * 2), var(--shell)); margin-inline: auto;
  display: grid; gap: clamp(38px, 5vw, 72px);
  padding-block: clamp(52px, 7vw, 86px);
}
.footer-wordmark {
  font-family: var(--font-display); font-size: 1.4rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-strong); margin-bottom: 14px;
}
.footer-tagline { font-size: 0.82rem; letter-spacing: 0.12em; color: var(--smoke); line-height: 1.9; }
.footer-phone {
  display: inline-block; margin-top: 22px;
  font-family: var(--font-display); font-size: 1.35rem; color: var(--gold);
  border-bottom: 1px solid var(--line); padding-bottom: 4px;
  transition: color 0.4s var(--ease), border-color 0.4s var(--ease);
}
.footer-phone:hover { color: var(--bone); border-color: var(--bone); }
.footer-hours { margin-top: 12px; font-size: 0.76rem; letter-spacing: 0.1em; color: var(--smoke); }

.site-footer__cols { display: grid; gap: 34px; grid-template-columns: repeat(2, 1fr); }
.footer-col h3 {
  font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px; font-weight: 500;
}
.footer-col li { margin-bottom: 11px; }
.footer-col a { font-size: 0.86rem; color: rgba(244, 241, 236, 0.62); transition: color 0.35s var(--ease); }
.footer-col a:hover { color: var(--bone); }

.site-footer__bottom {
  border-top: 1px solid var(--line-soft);
  width: min(100% - (var(--gutter) * 2), var(--shell)); margin-inline: auto;
  padding-block: 30px 40px;
}
.footer-statement { font-size: 0.76rem; line-height: 1.85; color: rgba(155, 150, 141, 0.85); max-width: 88ch; }
.footer-copyright { margin-top: 14px; font-size: 0.72rem; color: rgba(155, 150, 141, 0.6); }

/* ------------------------------------------------------- 17. Age gate 18+ */
.age-gate {
  position: fixed; inset: 0; z-index: 100;
  display: none; place-items: center; padding: 24px;
  background: rgba(6, 6, 7, 0.98);
}
.is-gated .age-gate { display: grid; }
.is-gated body { overflow: hidden; }
.age-gate__panel {
  width: min(560px, 100%); text-align: center;
  border: 1px solid var(--line); padding: clamp(32px, 5vw, 56px) clamp(24px, 4vw, 52px);
  background: var(--ink);
  animation: rise 0.8s var(--ease) both;
}
.age-gate__mark {
  font-family: var(--font-display); font-size: 0.95rem;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--bone); margin-bottom: 22px;
}
.age-gate__rule { display: block; width: 46px; height: 1px; background: var(--gold); margin: 0 auto 26px; }
.age-gate__title { font-size: clamp(1.7rem, 4vw, 2.4rem); margin-bottom: 20px; }
.age-gate__text { font-size: 0.92rem; line-height: 1.8; color: rgba(244, 241, 236, 0.7); }
.age-gate__text--small { font-size: 0.78rem; color: var(--smoke); margin-top: 14px; }
.age-gate__text a { color: var(--gold); border-bottom: 1px solid var(--line); }
.age-gate__actions { display: grid; gap: 12px; margin-top: 32px; }

/* ------------------------------------------------------------ 18. Cookies */
.cookie-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: flex; flex-wrap: wrap; align-items: center; gap: 18px;
  padding: 18px var(--gutter);
  background: rgba(16, 16, 18, 0.97);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(12px);
  transform: translateY(110%);
  transition: transform 0.6s var(--ease);
}
.cookie-bar.is-visible { transform: none; }
.cookie-bar__text { flex: 1 1 320px; font-size: 0.8rem; line-height: 1.7; color: rgba(244, 241, 236, 0.72); }
.cookie-bar__text a { color: var(--gold); border-bottom: 1px solid var(--line); }
.cookie-bar__actions { display: flex; gap: 10px; }

/* -------------------------------------------------- 19. Pages éditoriales */
.page-head { padding-block: clamp(140px, 18vh, 220px) clamp(38px, 5vw, 62px); }
.page-head__title { font-size: clamp(2.4rem, 6.6vw, 4.6rem); line-height: 1.0; margin-bottom: 26px; }
.page-head__lede { max-width: 54ch; }

.prose h2 { font-family: var(--font-display); font-size: clamp(1.4rem, 2.6vw, 1.9rem); color: var(--text-strong); margin: 46px 0 16px; }
.prose h3 { font-family: var(--font-display); font-size: 1.2rem; color: var(--gold); margin: 32px 0 12px; }
.prose p, .prose li { font-size: 0.95rem; line-height: 1.85; color: rgba(244, 241, 236, 0.72); }
.prose ul { margin: 0 0 18px; display: grid; gap: 8px; }
.prose li { padding-left: 22px; position: relative; }
.prose li::before { content: ""; position: absolute; left: 0; top: 13px; width: 9px; height: 1px; background: var(--gold); }
.prose > :first-child { margin-top: 0; }
.prose strong { color: var(--bone); font-weight: 400; }

.callout {
  border: 1px solid var(--line); padding: 26px 28px; margin: 34px 0;
  font-size: 0.9rem; color: rgba(244, 241, 236, 0.8);
}

/* ------------------------------------------------------------ 20. Reveal */
.has-reveal [data-reveal] {
  opacity: 0; transform: translateY(22px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.has-reveal [data-reveal].is-in { opacity: 1; transform: none; }

/* ------------------------------------------------------- 21. Breakpoints */
@media (min-width: 620px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .age-gate__actions { grid-template-columns: 1fr 1fr; }
  .ledger__item { grid-template-columns: minmax(0, 1fr) auto; align-items: baseline; }
  .ledger__note { grid-column: 1 / -1; max-width: 62ch; margin-top: 10px; }
  .site-footer__cols { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 900px) {
  .nav__list { display: flex; }
  .burger { display: none; }
  .header-phone { display: inline-flex; }
  .hero__grid { grid-template-columns: 1.06fr 0.94fr; gap: clamp(48px, 6vw, 92px); }
  .hero__portrait { order: 0; }
  .hero__portrait-media { aspect-ratio: 4 / 5; max-height: 70svh; }
  .figure--framed::before {
    content: ""; position: absolute; z-index: 0; inset: 22px -22px -22px 22px;
    border: 1px solid var(--line); pointer-events: none;
  }
  .split { grid-template-columns: 1fr 1fr; gap: clamp(48px, 6vw, 96px); }
  .split--wide-text { grid-template-columns: 1.15fr 0.85fr; }
  .split--wide-media { grid-template-columns: 0.85fr 1.15fr; }
  .split--reverse .split__media { order: 2; }
  .pillars { grid-template-columns: repeat(3, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .hero__scroll { display: flex; }
  .site-footer__top { grid-template-columns: 0.9fr 1.1fr; }
  .blocks--two { grid-template-columns: repeat(2, 1fr); }
  .page-head__title { max-width: 16ch; }
}

@media (min-width: 1180px) {
  .nav__list { gap: 38px; }
}

/* --------------------------------------------------- 22. Mouvement réduit */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-delay: 0ms !important;
    transition-duration: 0.001ms !important;
  }
  .has-reveal [data-reveal] { opacity: 1; transform: none; }
}

/* -------------------------------------------------------- 23. Impression */
@media print {
  .site-header, .menu-overlay, .age-gate, .cookie-bar, .grain, .hero__media { display: none !important; }
  body { background: #fff; color: #000; }
}
