/* ============================================================
   FADE & CO — Maison de barbiers, Paris 11e
   Design system « heritage craft » — Marcellus + Manrope
   Site de démonstration conçu par AdopteUnSite
   ============================================================ */

:root {
  --noir: #14100B;
  --noir-2: #1C1710;
  --noir-3: #262019;
  --creme: #F2EBDD;
  --creme-2: #E9DFCC;
  --brass: #C08A3E;
  --brass-2: #D8A75B;
  --muted-d: #A79A83;   /* texte atténué sur fond sombre */
  --muted-l: #7A6F5C;   /* texte atténué sur fond clair */
  --line-d: rgba(242, 235, 221, 0.14);
  --line-l: rgba(20, 16, 11, 0.14);
  --serif: 'Marcellus', 'Times New Roman', serif;
  --sans: 'Manrope', system-ui, -apple-system, sans-serif;
  --wrap: 1240px;
  --ease: cubic-bezier(0.22, 0.8, 0.28, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--noir);
  color: var(--creme);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
::selection { background: var(--brass); color: var(--noir); }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--noir-2); }
::-webkit-scrollbar-thumb { background: var(--brass); border-radius: 8px; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 32px; }
@media (max-width: 640px) { .wrap { padding: 0 20px; } }

/* ---------- Typographie ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--brass);
}
.eyebrow::before { content: ''; width: 34px; height: 1px; background: var(--brass); }
.eyebrow--center::after { content: ''; width: 34px; height: 1px; background: var(--brass); }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.05; }
.h-display { font-size: clamp(52px, 8.5vw, 118px); letter-spacing: 0.01em; }
.h-1 { font-size: clamp(40px, 6vw, 76px); }
.h-2 { font-size: clamp(32px, 4.6vw, 58px); }
.h-3 { font-size: clamp(22px, 2.6vw, 30px); }
.lede { font-size: clamp(17px, 1.8vw, 20px); line-height: 1.7; color: var(--muted-d); max-width: 58ch; }
.on-light .lede, .lede--light { color: var(--muted-l); }

.gold { color: var(--brass); }
.italique { font-style: italic; }

/* ---------- Boutons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  padding: 18px 34px; border: 1px solid var(--brass);
  font-size: 12px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--creme); background: transparent; overflow: hidden;
  transition: color 0.35s var(--ease);
  cursor: pointer;
}
.btn::before {
  content: ''; position: absolute; inset: 0; background: var(--brass);
  transform: scaleX(0); transform-origin: left; transition: transform 0.35s var(--ease); z-index: -1;
}
.btn:hover { color: var(--noir); }
.btn:hover::before { transform: scaleX(1); }
.btn--solid { background: var(--brass); color: var(--noir); }
.btn--solid::before { background: var(--creme); }
.btn--solid:hover { color: var(--noir); }
.btn--dark { border-color: var(--noir); color: var(--noir); }
.btn--dark::before { background: var(--noir); }
.btn--dark:hover { color: var(--creme); }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--brass); outline-offset: 3px;
}

/* ---------- Ruban démo (statique : il s'efface au scroll, la nav prend le relais) ---------- */
.ribbon {
  text-align: center;
  background: #0C0906; color: var(--creme);
  font-size: 12px; font-weight: 600; letter-spacing: 0.05em; padding: 9px 16px;
  border-bottom: 1px solid var(--line-d);
}
.ribbon a { color: var(--brass-2); font-weight: 700; }

/* ---------- Navigation ---------- */
.nav {
  position: sticky; top: 0; z-index: 900;
  background: rgba(20, 16, 11, 0.55);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line-d);
  transition: background 0.4s;
}
.nav.is-solid { background: rgba(20, 16, 11, 0.92); }
.nav__in {
  max-width: var(--wrap); margin: 0 auto; padding: 22px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
@media (max-width: 640px) { .nav__in { padding: 18px 20px; } }
.brand { font-family: var(--serif); font-size: 22px; letter-spacing: 0.14em; white-space: nowrap; }
.brand span { color: var(--brass); }
.nav__links { display: none; align-items: center; gap: 34px; }
@media (min-width: 980px) { .nav__links { display: flex; } }
.nav__links a {
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted-d); transition: color 0.25s; position: relative; padding: 6px 0;
}
.nav__links a:hover, .nav__links a.is-active { color: var(--creme); }
.nav__links a.is-active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--brass);
}
.btn--nav { padding: 12px 24px; }
.burger { display: flex; flex-direction: column; gap: 5px; padding: 10px; }
@media (min-width: 980px) { .burger { display: none; } }
.burger span { display: block; width: 24px; height: 2px; background: var(--creme); transition: transform 0.3s, opacity 0.3s; }

/* Menu mobile */
.mmenu {
  position: fixed; inset: 0; z-index: 950; background: var(--noir);
  display: flex; flex-direction: column; justify-content: center; padding: 40px 32px;
  transform: translateX(100%); transition: transform 0.45s var(--ease);
}
.mmenu.open { transform: translateX(0); }
.mmenu a {
  font-family: var(--serif); font-size: clamp(30px, 8vw, 44px); padding: 12px 0;
  border-bottom: 1px solid var(--line-d); transition: color 0.25s, padding-left 0.25s;
}
.mmenu a:hover, .mmenu a.is-active { color: var(--brass); padding-left: 12px; }
.mmenu__close { position: absolute; top: 26px; right: 26px; font-size: 34px; color: var(--creme); line-height: 1; padding: 8px; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 92vh; display: flex; align-items: flex-end; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.82) contrast(1.05); }
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,16,11,0.55) 0%, rgba(20,16,11,0.25) 40%, rgba(20,16,11,0.94) 100%);
}
.hero__in { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(48px, 8vh, 96px); }
.hero__kicker { margin-bottom: 22px; animation: rise 0.8s 0.1s var(--ease) both; }
.hero h1 { animation: rise 0.9s 0.25s var(--ease) both; max-width: 14ch; }
.hero .lede { margin-top: 26px; animation: rise 0.9s 0.4s var(--ease) both; }
.hero__cta { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 16px; animation: rise 0.9s 0.55s var(--ease) both; }
@keyframes rise { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
.hero__meta {
  margin-top: 52px; padding-top: 24px; border-top: 1px solid var(--line-d);
  display: flex; flex-wrap: wrap; gap: 14px 48px;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-d);
  animation: rise 0.9s 0.7s var(--ease) both;
}
.hero__meta b { color: var(--creme); font-weight: 700; }

/* Hero compact (pages intérieures) */
.hero--page { min-height: 52vh; align-items: flex-end; }
.hero--page h1 { max-width: 18ch; }

/* ---------- Marquee ---------- */
.marq { padding: 26px 0; border-block: 1px solid var(--line-d); overflow: hidden; background: var(--noir); }
.marq__track { display: flex; gap: 56px; width: max-content; animation: marq 30s linear infinite; align-items: baseline; }
.marq__track span { font-family: var(--serif); font-size: 22px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted-d); white-space: nowrap; }
.marq__track i { color: var(--brass); font-style: normal; font-size: 14px; }
@keyframes marq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.sec { padding: clamp(84px, 12vw, 150px) 0; }
.sec--creme { background: var(--creme); color: var(--noir); }
.sec--creme .eyebrow { color: var(--brass); }
.sec--noir2 { background: var(--noir-2); }
.sec__head { max-width: 820px; margin-bottom: clamp(44px, 6vw, 72px); }
.sec__head--center { margin-inline: auto; text-align: center; }
.sec__head--center .eyebrow { justify-content: center; }
.sec__head h2 { margin-top: 20px; }
.sec__head .lede { margin-top: 20px; }

/* ---------- Split éditorial ---------- */
.split { display: grid; gap: 44px; align-items: center; }
@media (min-width: 960px) { .split { grid-template-columns: 1fr 1fr; gap: 76px; } .split--rev > :first-child { order: 2; } }
.split__media { position: relative; }
.split__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; filter: saturate(0.85); }
.split__media::after {
  content: ''; position: absolute; inset: 18px; border: 1px solid var(--brass);
  pointer-events: none; opacity: 0.55;
}
.split__media--land img { aspect-ratio: 16 / 11; }
.split__body h2 { margin-top: 20px; }
.split__body p { margin-top: 22px; color: var(--muted-d); }
.sec--creme .split__body p { color: var(--muted-l); }
.split__sign { margin-top: 30px; font-family: var(--serif); font-size: 30px; color: var(--brass); font-style: italic; }

/* Chiffres inline */
.facts { margin-top: 36px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding-top: 30px; border-top: 1px solid var(--line-l); }
.sec:not(.sec--creme) .facts { border-color: var(--line-d); }
.facts b { display: block; font-family: var(--serif); font-size: clamp(26px, 3vw, 38px); color: var(--brass); }
.facts span { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-l); }
.sec:not(.sec--creme) .facts span { color: var(--muted-d); }

/* ---------- Prestations (rows) ---------- */
.price-group { margin-top: 46px; }
.price-group + .price-group { margin-top: 64px; }
.price-group__title {
  display: flex; align-items: baseline; gap: 18px; font-family: var(--serif);
  font-size: 15px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--brass);
  margin-bottom: 8px;
}
.price-group__title::after { content: ''; flex: 1; height: 1px; background: var(--line-l); }
.sec:not(.sec--creme) .price-group__title::after { background: var(--line-d); }
.prow {
  display: grid; grid-template-columns: 1fr auto; gap: 6px 28px; align-items: baseline;
  padding: 26px 0; border-bottom: 1px solid var(--line-l);
  transition: padding-left 0.3s var(--ease);
}
.sec:not(.sec--creme) .prow { border-color: var(--line-d); }
.prow:hover { padding-left: 14px; }
.prow h3 { font-size: clamp(20px, 2.2vw, 26px); }
.prow p { grid-column: 1; font-size: 14.5px; color: var(--muted-l); max-width: 56ch; }
.sec:not(.sec--creme) .prow p { color: var(--muted-d); }
.prow__price { grid-row: 1; grid-column: 2; font-family: var(--serif); font-size: clamp(20px, 2.2vw, 26px); color: var(--brass); white-space: nowrap; }
.prow__time { grid-column: 2; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-l); text-align: right; }
.sec:not(.sec--creme) .prow__time { color: var(--muted-d); }

/* ---------- Cartes signature (accueil) ---------- */
.sig-grid { display: grid; gap: 1px; background: var(--line-d); border: 1px solid var(--line-d); }
@media (min-width: 720px) { .sig-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .sig-grid { grid-template-columns: repeat(4, 1fr); } }
.sig {
  background: var(--noir); padding: 40px 30px 34px; display: flex; flex-direction: column; gap: 0;
  transition: background 0.35s;
  position: relative;
}
.sig:hover { background: var(--noir-3); }
.sig__no { font-family: var(--serif); font-size: 15px; color: var(--brass); letter-spacing: 0.2em; }
.sig h3 { margin-top: 22px; font-size: 24px; }
.sig p { margin-top: 14px; font-size: 14.5px; color: var(--muted-d); flex: 1; }
.sig__foot { margin-top: 26px; display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.sig__price { font-family: var(--serif); font-size: 24px; color: var(--brass); }
.sig__time { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-d); }

/* ---------- Étapes rituel ---------- */
.steps { display: grid; gap: 40px; counter-reset: step; }
@media (min-width: 900px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 48px; } }
.step { position: relative; padding-top: 26px; border-top: 1px solid var(--line-l); }
.step::before {
  counter-increment: step; content: '0' counter(step);
  position: absolute; top: -0.62em; left: 0; background: var(--creme); padding-right: 16px;
  font-family: var(--serif); font-size: 30px; color: var(--brass);
}
.step h3 { font-size: 24px; }
.step p { margin-top: 12px; font-size: 15px; color: var(--muted-l); }

/* ---------- Galerie ---------- */
.gal { display: grid; gap: 14px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 900px) { .gal { grid-template-columns: repeat(4, 1fr); } }
.gal figure { position: relative; overflow: hidden; background: var(--noir-3); }
.gal figure:nth-child(4n+1), .gal figure:nth-child(4n+4) { aspect-ratio: 3 / 4; }
.gal figure:nth-child(4n+2), .gal figure:nth-child(4n+3) { aspect-ratio: 3 / 3.4; margin-top: 26px; }
@media (max-width: 899px) { .gal figure { margin-top: 0 !important; aspect-ratio: 3 / 3.6 !important; } }
.gal img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.8); transition: transform 0.8s var(--ease), filter 0.5s; }
.gal figure:hover img { transform: scale(1.06); filter: saturate(1); }
.gal figcaption {
  position: absolute; left: 16px; bottom: 14px; z-index: 2;
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--creme);
  text-shadow: 0 1px 10px rgba(0,0,0,0.7);
}
.gal figure::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(12,9,6,0.62)); }

/* Galerie large (portfolio) */
.gal--folio { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 900px) { .gal--folio { grid-template-columns: repeat(3, 1fr); } }
.gal--folio figure { aspect-ratio: 4 / 5 !important; margin-top: 0 !important; }

/* ---------- Équipe ---------- */
.team { display: grid; gap: 28px; }
@media (min-width: 860px) { .team { grid-template-columns: repeat(3, 1fr); gap: 34px; } }
.tcard { border: 1px solid var(--line-l); padding: 44px 34px; text-align: center; transition: transform 0.35s var(--ease), box-shadow 0.35s; background: #FBF7EE; }
.tcard:hover { transform: translateY(-6px); box-shadow: 0 26px 50px -28px rgba(20,16,11,0.35); }
.tcard__mono {
  width: 96px; height: 96px; margin: 0 auto; border-radius: 50%;
  border: 1px solid var(--brass); color: var(--brass);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 34px;
}
.tcard h3 { margin-top: 24px; font-size: 26px; }
.tcard__role { margin-top: 6px; font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brass); }
.tcard p { margin-top: 16px; font-size: 14.5px; color: var(--muted-l); }
.tcard__spe { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.tcard__spe span { font-size: 11px; letter-spacing: 0.08em; padding: 6px 12px; border: 1px solid var(--line-l); color: var(--muted-l); }

/* ---------- Témoignages ---------- */
.quotes { display: grid; gap: 26px; }
@media (min-width: 900px) { .quotes { grid-template-columns: repeat(3, 1fr); } }
.quote { border: 1px solid var(--line-d); padding: 38px 32px; background: var(--noir-2); display: flex; flex-direction: column; transition: border-color 0.3s; }
.quote:hover { border-color: rgba(192, 138, 62, 0.5); }
.quote__stars { color: var(--brass); letter-spacing: 4px; font-size: 14px; }
.quote p { margin-top: 20px; font-family: var(--serif); font-size: 19px; line-height: 1.5; flex: 1; }
.quote footer { margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--line-d); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-d); }
.quote footer b { color: var(--creme); }

/* ---------- Bandeau booking ---------- */
.book { position: relative; overflow: hidden; }
.book__bg { position: absolute; inset: 0; }
.book__bg img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.7) brightness(0.6); }
.book__bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(12,9,6,0.94) 0%, rgba(12,9,6,0.62) 100%); }
.book__in { position: relative; z-index: 2; }
.book h2 { max-width: 16ch; }
.book .lede { margin-top: 22px; }
.book__cta { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 16px; }
.book__hours { margin-top: 44px; display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 14px; max-width: 620px; }
.book__hours div { border: 1px solid var(--line-d); padding: 16px 18px; }
.book__hours b { display: block; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brass); margin-bottom: 6px; }
.book__hours span { font-family: var(--serif); font-size: 18px; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; }
.faq details { border-bottom: 1px solid var(--line-l); }
.faq summary {
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 26px 0; cursor: pointer; list-style: none;
  font-family: var(--serif); font-size: clamp(19px, 2.2vw, 24px);
  transition: color 0.25s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--brass); }
.faq summary::after { content: '+'; font-family: var(--sans); font-size: 26px; color: var(--brass); transition: transform 0.3s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding-bottom: 26px; color: var(--muted-l); max-width: 66ch; }

/* ---------- Journal / blog ---------- */
.posts { display: grid; gap: 28px; }
@media (min-width: 900px) { .posts { grid-template-columns: repeat(3, 1fr); } }
.post { border: 1px solid var(--line-d); background: var(--noir-2); display: flex; flex-direction: column; transition: transform 0.35s var(--ease), border-color 0.3s; }
.post:hover { transform: translateY(-6px); border-color: rgba(192, 138, 62, 0.5); }
.post__media { aspect-ratio: 16 / 10; overflow: hidden; }
.post__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.8); transition: transform 0.7s var(--ease); }
.post:hover .post__media img { transform: scale(1.05); }
.post__body { padding: 30px 28px 34px; display: flex; flex-direction: column; flex: 1; }
.post__tag { font-size: 10.5px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: var(--brass); }
.post h3 { margin-top: 14px; font-size: 24px; line-height: 1.2; }
.post p { margin-top: 14px; font-size: 14.5px; color: var(--muted-d); flex: 1; }
.post__more { margin-top: 22px; font-size: 11.5px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--creme); }
.post:hover .post__more { color: var(--brass); }

/* ---------- Contact / formulaire ---------- */
.cgrid { display: grid; gap: 48px; }
@media (min-width: 980px) { .cgrid { grid-template-columns: 0.9fr 1.1fr; gap: 72px; } }
.cinfo__block { padding: 24px 0; border-bottom: 1px solid var(--line-d); }
.cinfo__block b { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brass); margin-bottom: 8px; }
.cinfo__block p, .cinfo__block a { font-family: var(--serif); font-size: clamp(19px, 2vw, 23px); line-height: 1.45; }
.cinfo__block a:hover { color: var(--brass); }
.form { border: 1px solid var(--line-d); padding: clamp(28px, 4vw, 48px); background: var(--noir-2); }
.form label { display: block; margin-bottom: 22px; }
.form label b { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-d); margin-bottom: 9px; }
.form input, .form select, .form textarea {
  width: 100%; padding: 15px 16px; font-family: var(--sans); font-size: 16px;
  background: var(--noir); color: var(--creme); border: 1px solid var(--line-d);
  transition: border-color 0.25s;
}
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--brass); }
.form textarea { min-height: 120px; resize: vertical; }
.form__row { display: grid; gap: 0 20px; }
@media (min-width: 640px) { .form__row { grid-template-columns: 1fr 1fr; } }
.form .btn { width: 100%; }
.form__note { margin-top: 16px; font-size: 12px; color: var(--muted-d); }
.btn .t, .btn .s { transition: transform 0.4s var(--ease), opacity 0.4s; display: inline-flex; }
.btn .s { position: absolute; opacity: 0; transform: translateY(120%); }
.btn.is-sent .t { opacity: 0; transform: translateY(-120%); }
.btn.is-sent .s { opacity: 1; transform: translateY(0); }

/* Carte-adresse stylisée */
.map {
  border: 1px solid var(--line-d); min-height: 260px; position: relative; overflow: hidden;
  background:
    linear-gradient(var(--line-d) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(90deg, var(--line-d) 1px, transparent 1px) 0 0 / 44px 44px,
    var(--noir-2);
}
.map::after {
  content: '⌖  5 passage des Artisans — Paris 11e';
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  font-family: var(--serif); font-size: clamp(15px, 2.4vw, 20px); color: var(--brass);
  background: var(--noir); border: 1px solid var(--brass); padding: 14px 22px; white-space: nowrap;
}

/* ---------- Footer ---------- */
.foot { background: #0C0906; border-top: 1px solid var(--line-d); padding: clamp(60px, 9vw, 110px) 0 40px; }
.foot__brand { font-family: var(--serif); font-size: clamp(44px, 8vw, 92px); letter-spacing: 0.08em; line-height: 1; }
.foot__brand span { color: var(--brass); }
.foot__grid { margin-top: clamp(40px, 6vw, 64px); display: grid; gap: 36px; }
@media (min-width: 860px) { .foot__grid { grid-template-columns: repeat(4, 1fr); } }
.foot__col b { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: var(--brass); margin-bottom: 18px; }
.foot__col a, .foot__col span { display: block; padding: 5px 0; font-size: 15px; color: var(--muted-d); }
.foot__col a:hover { color: var(--creme); }
.foot__bot {
  margin-top: clamp(44px, 6vw, 70px); padding-top: 26px; border-top: 1px solid var(--line-d);
  display: flex; flex-wrap: wrap; gap: 12px 32px; justify-content: space-between;
  font-size: 12.5px; color: var(--muted-d);
}
.foot__bot a { color: var(--brass-2); }

/* ---------- Révélations au scroll ---------- */
.rv { opacity: 0; transform: translateY(30px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.rv.on { opacity: 1; transform: translateY(0); }
.rv-d1 { transition-delay: 0.08s; } .rv-d2 { transition-delay: 0.16s; } .rv-d3 { transition-delay: 0.24s; }

/* ---------- Accessibilité mouvement ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .rv { opacity: 1; transform: none; }
}
