/* Yeca Art — Design tokens */

:root {
  /* Palette */
  --rose: #E7A1A3;
  --rose-soft: #F2C9CB;
  --rose-deep: #D88588;
  --sage: #C5DBC6;
  --sage-soft: #DCE8DD;
  --cream: #FAF7F2;
  --cream-deep: #F2EDE3;
  --white: #FFFFFF;
  --ink: #1A1A1A;
  --ink-soft: #4A4A4A;
  --ink-muted: #8A8A8A;
  --gold: #C9A875;
  --gold-deep: #A8895A;

  /* Type */
  --serif: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --sans: 'Manrope', 'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing scale */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;
  --s-9: 96px;
  --s-10: 128px;
  --s-11: 160px;

  /* Editorial type sizes (desktop) */
  --t-eyebrow: 11px;
  --t-body: 16px;
  --t-body-lg: 18px;
  --t-h6: 20px;
  --t-h5: 28px;
  --t-h4: 40px;
  --t-h3: 56px;
  --t-h2: 80px;
  --t-h1: 120px;
  --t-display: 180px;

  /* Letterspacing */
  --ls-tight: -0.02em;
  --ls-normal: 0;
  --ls-wide: 0.08em;
  --ls-widest: 0.22em;

  /* Lines */
  --line-tight: 1.04;
  --line-snug: 1.2;
  --line-body: 1.55;
  --line-loose: 1.7;

  /* Layout — système harmonisé */
  --maxw: 1440px;
  --side-pad: 48px;          /* gutter latéral standard (sections, header, footer) */
  --side-pad-lg: 96px;       /* gutter latéral éditorial (heros, manifesto, sur-mesure) */
  --gutter: var(--side-pad); /* alias rétro-compat */

  --section-y: 112px;        /* padding vertical standard d'une section */
  --section-y-sm: 72px;      /* sections compactes (manifesto, diff, trust) */
  --section-y-lg: 144px;     /* sections premium / hero */

  --header-h: 76px;
  --header-h-scrolled: 60px;

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur: 480ms;
  --dur-fast: 240ms;
}

/* Mobile — recalibrage spacing */
@media (max-width: 860px) {
  :root {
    --side-pad: 24px;
    --side-pad-lg: 24px;
    --section-y: 72px;
    --section-y-sm: 48px;
    --section-y-lg: 96px;
    --header-h: 64px;
    --header-h-scrolled: 56px;
  }
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--t-body);
  line-height: var(--line-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }

::selection { background: var(--rose); color: var(--white); }

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* Editorial helpers */
.serif { font-family: var(--serif); font-weight: 400; }
.italic { font-style: italic; }
.eyebrow {
  font-family: var(--sans);
  font-size: var(--t-eyebrow);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
}

/* Filet doré — hairline accents */
.hairline {
  display: block;
  width: 64px;
  height: 1px;
  background: var(--gold);
  border: 0;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--side-pad);
}
.container--wide {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--side-pad-lg);
}

/* Section utilities — vertical rhythm harmonisé */
.section { padding: var(--section-y) 0; }
.section--sm { padding: var(--section-y-sm) 0; }
.section--lg { padding: var(--section-y-lg) 0; }

/* CTAs */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  background: var(--rose);
  color: var(--white);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  border-radius: 0;
  transition: background var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
.btn-primary:hover {
  background: var(--rose-deep);
  transform: translateY(-1px);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--gold);
  transition: gap var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.btn-link:hover { gap: 20px; color: var(--gold-deep); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  background: transparent;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.btn-ghost:hover { background: var(--ink); color: var(--cream); }

/* ─────────────────────────────────────────────
   SITE HEADER — éditorial, harmonisé via tokens
   ───────────────────────────────────────────── */
.site-header-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  display: flex;
  flex-direction: column;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(14px) saturate(135%);
  -webkit-backdrop-filter: blur(14px) saturate(135%);
  border-bottom: 1px solid rgba(201, 168, 117, 0.18);
  transition: background var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.site-header-wrap.scrolled {
  background: rgba(250, 247, 242, 0.96);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: rgba(201, 168, 117, 0.28);
  box-shadow: 0 8px 28px -22px rgba(26, 26, 26, 0.22);
}
.site-header-wrap.on-light { color: var(--ink); }
.site-header-wrap.on-dark  {
  color: var(--white);
  background: rgba(26, 26, 26, 0.78);
  border-bottom-color: rgba(201, 168, 117, 0.28);
}
.site-header-wrap.on-dark.scrolled {
  background: rgba(26, 26, 26, 0.92);
  border-bottom-color: rgba(201, 168, 117, 0.36);
}

/* Utility strip ----------------------------------------------------- */
.header-utility {
  position: relative;
  overflow: hidden;
  max-height: 36px;
  background: rgba(250, 247, 242, 0.88);
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  border-bottom: 1px solid rgba(201, 168, 117, 0.22);
  transition: max-height var(--dur) var(--ease),
              opacity var(--dur) var(--ease),
              border-color var(--dur-fast) var(--ease);
}
.header-utility::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(231, 161, 163, 0.06) 0%,
    rgba(231, 161, 163, 0) 100%);
  pointer-events: none;
}
.site-header-wrap.on-dark .header-utility {
  background: rgba(26, 26, 26, 0.78);
  border-bottom-color: rgba(201, 168, 117, 0.28);
}
.site-header-wrap.on-dark .header-utility::before {
  background: linear-gradient(180deg,
    rgba(201, 168, 117, 0.08) 0%,
    rgba(201, 168, 117, 0) 100%);
}
.site-header-wrap.scrolled .header-utility {
  max-height: 0;
  opacity: 0;
  border-bottom-color: transparent;
  pointer-events: none;
}
.header-utility-inner {
  position: relative;
  z-index: 1;
  height: 36px;
  padding: 0 var(--side-pad);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
}
.site-header-wrap.on-dark .header-utility-inner {
  color: rgba(255, 255, 255, 0.78);
}
.util-side {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.util-right { justify-self: end; }
.util-icon {
  display: inline-flex;
  color: var(--gold-deep);
}
.site-header-wrap.on-dark .util-icon { color: var(--gold); }
.util-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: inherit;
  transition: color var(--dur-fast) var(--ease);
}
.util-link:hover { color: var(--gold-deep); }
.site-header-wrap.on-dark .util-link:hover { color: var(--gold); }
.util-sep { opacity: 0.45; }
.util-center {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--gold-deep);
  font-weight: 600;
}
.site-header-wrap.on-dark .util-center { color: var(--gold); }
.util-edition em {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  margin-right: 4px;
  font-weight: 500;
}
.util-rule {
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.55;
  display: inline-block;
}

/* Main header row --------------------------------------------------- */
.site-header {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  height: var(--header-h);
  padding: 0 var(--side-pad);
  transition: height var(--dur) var(--ease);
}
.site-header-wrap.scrolled .site-header {
  height: var(--header-h-scrolled);
}

/* Brand mark */
.brand-mark {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
  text-decoration: none;
  color: inherit;
  transition: opacity var(--dur-fast) var(--ease);
}
.brand-mark:hover { opacity: 0.92; }
.brand-mark:hover .brand-mark-badge { transform: rotate(45deg); }

/* Logo image officiel — utilisé header & footer */
.brand-mark-logo {
  display: block;
  height: 44px;
  width: auto;
  object-fit: contain;
  transition: height var(--dur) var(--ease);
}
.site-header.scrolled .brand-mark-logo,
.site-header-wrap.scrolled .brand-mark-logo {
  height: 36px;
}
.site-header-wrap.on-dark .brand-mark-logo {
  filter: brightness(0) invert(1);
}

.footer-logo {
  display: block;
  height: 56px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  object-position: left center;
  align-self: flex-start;
  margin-left: -6px;        /* compense le padding transparent interne du PNG pour aligner visuellement avec le texte en dessous */
  margin-bottom: var(--s-3);
}
@media (max-width: 860px) {
  .brand-mark-logo { height: 36px; }
  .site-header.scrolled .brand-mark-logo,
  .site-header-wrap.scrolled .brand-mark-logo { height: 32px; }
  .footer-logo { height: 44px; max-width: 160px; margin-left: -4px; }
}

.brand-mark-badge {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--rose);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 700ms var(--ease),
              width var(--dur) var(--ease),
              height var(--dur) var(--ease),
              box-shadow var(--dur-fast) var(--ease);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.55) inset,
    0 6px 18px -8px rgba(216, 133, 136, 0.55);
}
.site-header-wrap.scrolled .brand-mark-badge {
  width: 38px;
  height: 38px;
}
.brand-mark-badge-letters {
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}
.brand-mark-badge svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.brand-mark-badge text {
  font-family: var(--sans);
  font-size: 7.4px;
  letter-spacing: 0.32em;
  fill: var(--white);
  font-weight: 600;
}

.brand-mark-word {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  letter-spacing: var(--ls-tight);
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  line-height: 1;
}
.brand-mark .slash {
  color: var(--gold);
  font-style: normal;
  margin: 0 2px;
  font-weight: 300;
}
.brand-mark .reverse-e {
  display: inline-block;
  transform: scaleX(-1);
}

/* Center nav */
.site-nav {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  border-radius: 999px;
  position: relative;
}
.site-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0);
  border: 1px solid rgba(201, 168, 117, 0);
  transition: background var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
  pointer-events: none;
}
.site-header-wrap.scrolled .site-nav::before {
  background: rgba(255, 255, 255, 0.5);
  border-color: rgba(201, 168, 117, 0.18);
}
.site-header-wrap.on-dark.scrolled .site-nav::before {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(201, 168, 117, 0.25);
}
.site-nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  color: inherit;
  transition: color var(--dur-fast) var(--ease);
}
.site-nav-link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--dur) var(--ease);
}
.site-nav-link:hover { color: var(--gold-deep); }
.site-nav-link:hover::after,
.site-nav-link.active::after { width: 22px; }
.site-header-wrap.on-dark .site-nav-link:hover { color: var(--gold); }

.site-nav-dot {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 18px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  opacity: 0.7;
}

/* End — CTA */
.nav-end {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.nav-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 22px 11px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  text-decoration: none;
  isolation: isolate;
  transition: transform var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease);
  box-shadow: 0 8px 22px -12px rgba(26, 26, 26, 0.6);
  overflow: hidden;
}
.nav-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, var(--rose-deep) 0%, var(--gold-deep) 60%, var(--rose) 100%);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
  z-index: -1;
}
.nav-cta::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 22px;
  background: rgba(250, 247, 242, 0.25);
  transform: translateY(-50%);
  /* small inner divider between eyebrow and label */
  display: none;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px -14px rgba(216, 133, 136, 0.65);
}
.nav-cta:hover::before { opacity: 1; }
.site-header-wrap.on-dark .nav-cta {
  background: var(--cream);
  color: var(--ink);
  box-shadow: 0 8px 22px -14px rgba(0, 0, 0, 0.5);
}
.site-header-wrap.on-dark .nav-cta:hover {
  color: var(--white);
}

.nav-cta-eyebrow {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.6;
  padding-right: 12px;
  border-right: 1px solid currentColor;
  line-height: 1;
}
.nav-cta-label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  letter-spacing: -0.01em;
  line-height: 1;
}
.nav-cta-arrow {
  margin-left: 2px;
  transition: transform var(--dur-fast) var(--ease);
}
.nav-cta:hover .nav-cta-arrow {
  transform: translateX(4px);
}

/* Hamburger — mobile only */
.nav-toggle {
  display: none;
  justify-self: end;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 60;
  background: transparent;
  cursor: pointer;
  border: 1px solid rgba(201, 168, 117, 0.35);
  border-radius: 999px;
  transition: border-color var(--dur-fast) var(--ease),
              background var(--dur-fast) var(--ease);
}
.nav-toggle:hover {
  background: rgba(201, 168, 117, 0.08);
  border-color: var(--gold);
}
.nav-toggle span {
  position: absolute;
  left: 10px;
  width: 20px;
  height: 1px;
  background: currentColor;
  transition: transform var(--dur-fast) var(--ease),
              opacity var(--dur-fast) var(--ease),
              top var(--dur-fast) var(--ease);
}
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 22px; }
body.nav-open .nav-toggle span:nth-child(1) { top: 19px; transform: rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { top: 19px; transform: rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: var(--cream);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  padding: calc(var(--header-h) + 32px) var(--side-pad) 48px;
  transform: translateY(-100%);
  transition: transform var(--dur) var(--ease);
  pointer-events: none;
}
body.nav-open .nav-drawer {
  transform: translateY(0);
  pointer-events: auto;
}
.nav-drawer-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 24px;
}
.nav-drawer-list a {
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-family: var(--serif);
  font-size: clamp(40px, 8vw, 64px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  padding: 8px 0;
  border-bottom: 1px solid rgba(201, 168, 117, 0.18);
  transition: color var(--dur-fast) var(--ease), padding var(--dur-fast) var(--ease);
}
.nav-drawer-list a .num {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: var(--ls-widest);
  font-style: normal;
  color: var(--gold-deep);
  font-weight: 600;
}
.nav-drawer-list a:hover { color: var(--gold-deep); padding-left: 8px; }
.nav-drawer-list a.italic { font-style: italic; }
.nav-drawer-list a.active { color: var(--gold-deep); }

.nav-drawer-foot {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid rgba(201, 168, 117, 0.18);
}
.nav-drawer-foot .eyebrow { color: var(--ink-muted); }
.nav-drawer-foot a {
  font-size: 14px;
  color: var(--ink-soft);
}

/* Logo badge — circular YA mark */
.logo-badge {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--rose);
  color: var(--white);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-badge .ya {
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.04em;
}
.logo-badge svg { position: absolute; inset: 0; }
.logo-badge text {
  font-family: var(--sans);
  font-size: 7.4px;
  letter-spacing: 0.32em;
  fill: var(--white);
  font-weight: 600;
}

/* ─────────────────────────────────────────────
   SITE FOOTER — éditorial, harmonisé
   ───────────────────────────────────────────── */
.site-footer {
  background: var(--cream-deep);
  padding: var(--section-y-sm) 0 var(--s-7);
  border-top: 1px solid rgba(201, 168, 117, 0.3);
  color: var(--ink);
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: var(--gold);
}

.footer-inner {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--side-pad);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: var(--s-8) var(--s-7);
  align-items: start;
  padding-bottom: var(--s-9);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
}
.footer-brand-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.3;
  max-width: 240px;
  color: var(--ink);
}
.footer-brand-newsletter {
  margin-top: var(--s-4);
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 320px;
}
.footer-brand-newsletter label {
  font-size: var(--t-eyebrow);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}
.footer-news-input {
  display: flex;
  border-bottom: 1px solid rgba(26, 26, 26, 0.18);
  align-items: center;
  transition: border-color var(--dur-fast) var(--ease);
}
.footer-news-input:focus-within { border-color: var(--gold); }
.footer-news-input input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 0;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  outline: none;
}
.footer-news-input input::placeholder { color: var(--ink-muted); }
.footer-news-input button {
  padding: 8px 12px;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  font-weight: 600;
  transition: color var(--dur-fast) var(--ease);
}
.footer-news-input button:hover { color: var(--gold-deep); }

.footer-col-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  margin-bottom: 22px;
  color: var(--ink);
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin: 0;
}
.footer-link {
  font-size: 14px;
  color: var(--ink-soft);
  transition: color var(--dur-fast) var(--ease), padding var(--dur-fast) var(--ease);
  display: inline-block;
}
.footer-link:hover {
  color: var(--gold-deep);
  padding-left: 4px;
}

.footer-divider {
  height: 1px;
  background: rgba(201, 168, 117, 0.4);
  margin: var(--s-6) 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s-4);
}
.footer-bottom-copy,
.footer-bottom-legal {
  display: flex;
  gap: var(--s-5);
  font-size: 12px;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--ink-muted);
  flex-wrap: wrap;
}
.footer-bottom-legal a { transition: color var(--dur-fast) var(--ease); }
.footer-bottom-legal a:hover { color: var(--gold-deep); }

.footer-socials {
  display: flex;
  gap: 12px;
  align-items: center;
}
.footer-social {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(26, 26, 26, 0.15);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: background var(--dur-fast) var(--ease),
              color var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease);
}
.footer-social:hover {
  background: var(--rose);
  color: var(--white);
  border-color: var(--rose);
}

@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--s-7);
    padding-bottom: var(--s-7);
  }
  .footer-bottom { justify-content: flex-start; }
}

/* ─────────────────────────────────────────────
   Reveal-on-scroll — système éditorial
   ───────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease);
  will-change: opacity, transform;
}
[data-reveal="fade"] { transform: none; }
[data-reveal="left"]  { transform: translateX(-36px); }
[data-reveal="right"] { transform: translateX(36px); }
[data-reveal="scale"] { transform: scale(0.94); transform-origin: center; }
[data-reveal="rise"]  { transform: translateY(48px); }
[data-reveal="blur"]  {
  filter: blur(14px);
  transform: translateY(20px);
  transition: opacity 900ms var(--ease),
              transform 900ms var(--ease),
              filter 900ms var(--ease);
}
[data-reveal].in {
  opacity: 1;
  transform: none;
  filter: none;
}

/* Mask reveal — line wipes from below */
[data-reveal="mask"] {
  position: relative;
  opacity: 1;
  transform: none;
  overflow: hidden;
}
[data-reveal="mask"]::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--cream);
  transform-origin: top;
  transition: transform 1100ms var(--ease);
}
[data-reveal="mask"].in::after { transform: scaleY(0); }

/* Word/letter reveal — for headlines */
.reveal-word {
  display: inline-block;
  overflow: hidden;
}
.reveal-word > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 900ms var(--ease);
  transition-delay: var(--word-delay, 0ms);
}
.reveal-word.in > span { transform: translateY(0); }

/* Subtle hover lift for editorial cards */
.lift { transition: transform 700ms var(--ease), box-shadow 700ms var(--ease); }
.lift:hover { transform: translateY(-6px); }

/* Magnetic — invisible class, animated via JS */
.magnetic {
  display: inline-flex;
  transition: transform 320ms var(--ease);
  will-change: transform;
}

/* Image hover zoom — for editorial cards */
.img-zoom {
  overflow: hidden;
  position: relative;
}
.img-zoom img,
.img-zoom > .img {
  transition: transform 1400ms var(--ease);
  will-change: transform;
}
.img-zoom:hover img,
.img-zoom:hover > .img {
  transform: scale(1.04);
}

/* Parallax — JS sets translate3d via data-parallax="0.15" etc. */
[data-parallax] { will-change: transform; }

/* ─────────────────────────────────────────────
   Scroll progress bar — thin gold line, top
   ───────────────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 100%;
  z-index: 70;
  background: transparent;
  pointer-events: none;
}
.scroll-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg,
    var(--rose) 0%,
    var(--gold) 60%,
    var(--gold-deep) 100%);
  transform-origin: left;
  transition: width 80ms linear;
  box-shadow: 0 0 8px rgba(201, 168, 117, 0.45);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  .reveal-word > span,
  .magnetic,
  [data-parallax] {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
  }
  .scroll-progress { display: none; }
}
