/* ==========================================================================
   Hena Studio · Portfolio
   Palette : charbon #16181D / #1A1D23 · porcelaine #F7F3ED · cuivre #B08F4C
   Type : Bodoni Moda (display) · Figtree (texte) · Parisienne (script)
   ========================================================================== */

:root {
  --ink: #0F1520;
  --charcoal: #16202E;
  --charcoal-2: #1B2738;
  --porcelain: #F2F3F1;
  --paper: #FBFBF9;
  --copper: #B08F4C;
  --copper-soft: #C2A15C;
  --copper-pale: #E8D6A4;
  --bronze: #A98A46;
  --night: #1E2A38;
  --muted-dark: #97A1AE;   /* texte secondaire sur fond sombre */
  --muted-light: #626977;  /* texte secondaire sur fond clair */
  --gold-on-light: #7A5C2E;        /* petit texte champagne sur fond clair (4,5:1) */
  --gold-on-light-large: #8C713A;  /* grand texte champagne sur fond clair (3:1) */
  --hairline-dark: rgba(194, 161, 92, 0.24);
  --hairline-light: rgba(30, 42, 56, 0.15);
  --foil: linear-gradient(105deg, #8C713A 0%, #C2A15C 30%, #E8D6A4 50%, #B08F4C 70%, #7C6433 100%);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;
  --font-script: "Ms Madi", cursive;
  --nav-h: 76px;
  --radius: 22px;
  --container: 1200px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html:focus-within { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--porcelain);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
:focus-visible { outline: 2px solid var(--copper-soft); outline-offset: 3px; border-radius: 2px; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }

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

/* ---------- Utilitaires typographiques ---------- */
.eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 28px;
}
.eyebrow__rule { display: inline-block; width: 44px; height: 1px; background: var(--copper); flex: none; }
.eyebrow--dark { color: var(--copper-soft); }

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.12;
  letter-spacing: 0.005em;
  margin-bottom: 30px;
}
.section-title em, .foil { font-style: italic; }

.foil {
  background: var(--foil);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 560; /* Fraunces : l'italique foil légèrement plus dense */
  padding-right: 0.06em; /* évite que l'italique soit rognée */
}

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 32px;
  font-size: 14px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 999px;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), background-color 0.35s, color 0.35s, border-color 0.35s;
  will-change: transform;
}
.btn--copper {
  color: #12100A;
  background: linear-gradient(120deg, #C2A15C, #B08F4C 55%, #8C713A);
  box-shadow: 0 10px 30px -12px rgba(176, 143, 76, 0.55);
}
.btn--copper:hover { transform: translateY(-2px); box-shadow: 0 16px 38px -12px rgba(176, 143, 76, 0.7); }
.btn--ghost {
  color: var(--porcelain);
  border: 1px solid rgba(242, 243, 241, 0.35);
}
.btn--ghost:hover { border-color: var(--copper-soft); color: var(--copper-pale); transform: translateY(-2px); }
.btn--ghost-dark {
  color: var(--charcoal);
  border: 1px solid rgba(22, 32, 46, 0.35);
}
.btn--ghost-dark:hover { border-color: var(--gold-on-light); color: var(--gold-on-light); transform: translateY(-2px); }

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 200;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 22px;
  background: var(--ink);
}
.preloader__mark { display: flex; align-items: baseline; gap: 10px; }
.preloader__serif {
  font-family: var(--font-display); font-weight: 500; font-size: 44px; letter-spacing: 0.3em;
  background: var(--foil); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.preloader__script { font-family: var(--font-script); font-size: 40px; color: var(--porcelain); transform: translateY(6px); }
.preloader__line { width: 160px; height: 1px; background: rgba(201,143,82,0.25); position: relative; overflow: hidden; }
.preloader__line::after {
  content: ""; position: absolute; inset: 0; transform: translateX(-100%);
  background: var(--copper-soft);
  animation: loadsweep 1.1s var(--ease-out) forwards;
}
@keyframes loadsweep { to { transform: translateX(0); } }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(15, 21, 32, 0.78);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(194, 161, 92, 0.14);
  transition: transform 0.45s var(--ease-out);
}
.nav.is-hidden { transform: translateY(-100%); }
.nav__inner {
  max-width: var(--container); margin: 0 auto;
  height: var(--nav-h);
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex; align-items: center; gap: 40px;
}
.nav__brand { display: flex; align-items: baseline; gap: 7px; margin-right: auto; }
.nav__brand-serif {
  font-family: var(--font-display); font-size: 21px; font-weight: 600; letter-spacing: 0.22em;
  background: var(--foil); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.nav__brand-script { font-family: var(--font-script); font-size: 21px; color: var(--porcelain); }
.nav__links { display: flex; gap: 34px; }
.nav__links a {
  font-size: 13.5px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted-dark);
  position: relative; padding: 6px 0;
  transition: color 0.3s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--copper-soft);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}
.nav__links a:hover { color: var(--porcelain); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__cta { padding: 11px 24px; font-size: 12.5px; }
.nav__progress { position: absolute; left: 0; right: 0; bottom: -1px; height: 1px; }
.nav__progress span {
  display: block; height: 100%; width: 100%;
  background: linear-gradient(90deg, #C2A15C, #E8D6A4);
  transform: scaleX(0); transform-origin: left;
}
.nav__burger { display: none; flex-direction: column; gap: 7px; padding: 8px; }
.nav__burger span { width: 26px; height: 1.5px; background: var(--porcelain); transition: transform 0.35s var(--ease-out), opacity 0.3s; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(15, 21, 32, 0.97);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-out), visibility 0.4s;
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; visibility: visible; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 30px; text-align: center; }
.mobile-menu a {
  font-family: var(--font-display); font-size: 32px; font-style: italic; color: var(--porcelain);
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--copper-soft); }
.mobile-menu__cta { color: var(--copper-soft) !important; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--nav-h) + 40px) 0 90px;
  background:
    radial-gradient(1100px 600px at 78% 30%, rgba(176, 143, 76, 0.13), transparent 60%),
    radial-gradient(800px 500px at 12% 85%, rgba(55, 80, 107, 0.4), transparent 65%),
    var(--ink);
  overflow: hidden;
}
.hero__glow {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(194, 161, 92, 0.055) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(900px 600px at 70% 40%, black, transparent 75%);
  -webkit-mask-image: radial-gradient(900px 600px at 70% 40%, black, transparent 75%);
}
.hero__inner {
  max-width: var(--container); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px);
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  width: 100%;
}
.hero__eyebrow { margin-bottom: 34px; }
.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(46px, 6.6vw, 92px);
  line-height: 1.04;
  letter-spacing: 0.005em;
  margin-bottom: 30px;
}
.hero__line { display: block; overflow: hidden; }
.hero__line > span { display: inline-block; }
.hero__title .foil { padding-right: 0.1em; }
.hero__sub {
  max-width: 46ch;
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 300;
  color: var(--muted-dark);
  margin-bottom: 40px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 46px; }
.hero__stats {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
  font-size: 13.5px; letter-spacing: 0.02em;
  color: var(--muted-dark);
}
.hero__stats strong { color: var(--copper-pale); font-weight: 600; }
.hero__stats-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--copper); opacity: 0.6; }

/* Story frame — élément signature */
.hero__visual { display: flex; justify-content: center; }
.story-frame {
  position: relative;
  width: min(340px, 78vw);
  aspect-ratio: 9 / 16;
  border-radius: var(--radius);
  border: 1px solid var(--hairline-dark);
  background:
    radial-gradient(480px 420px at 50% 108%, rgba(176, 143, 76, 0.5), rgba(176, 143, 76, 0.08) 55%, transparent 75%),
    linear-gradient(180deg, #1C2836 0%, #101722 70%);
  box-shadow:
    0 40px 90px -40px rgba(0, 0, 0, 0.85),
    0 0 0 8px rgba(194, 161, 92, 0.05);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.story-frame__bars {
  position: absolute; top: 14px; left: 16px; right: 16px; z-index: 3;
  display: flex; gap: 6px;
}
.story-frame__bars span { flex: 1; height: 2.5px; border-radius: 2px; background: rgba(242, 243, 241, 0.22); overflow: hidden; position: relative; }
.story-frame__bars .is-done { background: var(--copper-soft); }
.story-frame__bars .is-live::after {
  content: ""; position: absolute; inset: 0; width: 60%;
  background: var(--copper-soft);
  animation: storylive 3.4s linear infinite;
}
@keyframes storylive { from { width: 0; } to { width: 100%; } }
.story-frame__head {
  position: absolute; top: 30px; left: 16px; right: 16px; z-index: 3;
  display: flex; align-items: center; gap: 10px;
  font-size: 12.5px; color: rgba(242, 243, 241, 0.85);
}
.story-frame__avatar {
  width: 30px; height: 30px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-style: italic; font-size: 15px; color: #12100A;
  background: linear-gradient(130deg, #E8D6A4, #B08F4C);
}
.story-frame__handle { font-weight: 600; letter-spacing: 0.04em; }
.story-frame__time { color: rgba(242, 243, 241, 0.5); }
.story-frame__portrait {
  position: absolute; bottom: 12%; left: 50%; transform: translateX(-50%);
  width: 118%; max-width: none;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.55));
  -webkit-mask-image: linear-gradient(180deg, #000 72%, transparent 98%);
  mask-image: linear-gradient(180deg, #000 72%, transparent 98%);
}
.story-frame__caption {
  position: absolute; left: 16px; right: 16px; bottom: 16px; z-index: 3;
  display: flex; flex-direction: column; gap: 6px;
}
.story-frame__tag {
  align-self: flex-start;
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--copper-pale);
  padding: 7px 13px; border-radius: 999px;
  border: 1px solid rgba(194, 161, 92, 0.35);
  background: rgba(15, 21, 32, 0.55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.story-frame__brand { font-family: var(--font-script); font-size: 24px; color: var(--porcelain); text-shadow: 0 2px 18px rgba(0,0,0,0.6); }

.hero__scroll-hint {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--muted-dark);
}
.hero__scroll-line { width: 1px; height: 42px; background: linear-gradient(180deg, var(--copper-soft), transparent); }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--charcoal);
  border-top: 1px solid var(--hairline-dark);
  border-bottom: 1px solid var(--hairline-dark);
  padding: 30px 0 34px;
  overflow: hidden;
}
.marquee__label {
  text-align: center;
  font-size: 11px; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--muted-dark);
  margin-bottom: 18px;
}
.marquee__track { display: flex; width: max-content; animation: marquee 36s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group { display: flex; align-items: baseline; white-space: nowrap; }
.marquee__group span {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(26px, 3vw, 40px);
  color: var(--copper-soft);
  padding: 0 30px;
}
.marquee__group i { font-style: normal; color: rgba(194, 161, 92, 0.4); font-size: 22px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Sections claires ---------- */
.section--light { background: var(--porcelain); color: var(--charcoal); }
.section--light .eyebrow { color: var(--gold-on-light); }
.section--light .eyebrow__rule { background: var(--gold-on-light); }
.section--light p { color: #3A4150; }

/* ---------- À propos ---------- */
.about { padding: clamp(90px, 12vw, 150px) 0 clamp(70px, 9vw, 110px); }
.about__grid {
  display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(44px, 7vw, 100px);
  align-items: start;
}
.about__media { position: sticky; top: calc(var(--nav-h) + 30px); }
.about__figure {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 70px -30px rgba(22, 32, 46, 0.45);
}
.about__figure img { width: 100%; transition: transform 1.2s var(--ease-out); }
.about__figure:hover img { transform: scale(1.04); }
.about__script {
  font-family: var(--font-script);
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.25;
  color: var(--gold-on-light-large);
  margin-top: 26px;
  transform: rotate(-2deg);
}
.about__copy p { margin-bottom: 20px; max-width: 58ch; }
.about__copy .section-title { margin-bottom: 34px; }
.about__facts {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 40px; padding-top: 34px;
  border-top: 1px solid var(--hairline-light);
}
.about__facts li { display: flex; flex-direction: column; gap: 4px; }
.about__facts strong { font-family: var(--font-display); font-size: 19px; font-weight: 600; color: var(--charcoal); }
.about__facts span { font-size: 13px; color: var(--muted-light); }

/* ---------- Prestations ---------- */
.services { padding: clamp(50px, 7vw, 90px) 0 clamp(100px, 12vw, 160px); }
.services__head { margin-bottom: clamp(40px, 5vw, 70px); }
.services__list { border-top: 1px solid var(--hairline-light); }
.service {
  position: relative;
  display: grid;
  grid-template-columns: minmax(200px, 0.55fr) minmax(0, 1fr) 90px;
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
  padding: clamp(34px, 4vw, 52px) 10px;
  border-bottom: 1px solid var(--hairline-light);
  transition: background-color 0.5s var(--ease-out);
}
.service:hover { background: rgba(176, 143, 76, 0.055); }
.service__label {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.1;
  color: var(--charcoal);
  transition: color 0.4s;
}
.service:hover .service__label { color: var(--gold-on-light-large); font-style: italic; }
.service__body p { max-width: 52ch; }
.service__body p:first-child { margin-bottom: 12px; }
.service__tags {
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-on-light) !important;
}
.service__link {
  justify-self: end;
  width: 62px; height: 62px; border-radius: 50%;
  border: 1px solid var(--hairline-light);
  display: flex; align-items: center; justify-content: center;
  transition: background-color 0.4s var(--ease-out), border-color 0.4s, transform 0.4s var(--ease-out);
}
.service__arrow { font-size: 22px; color: var(--charcoal); transition: transform 0.4s var(--ease-out), color 0.4s; }
.service:hover .service__link { background: var(--copper); border-color: var(--copper); transform: scale(1.06); }
.service:hover .service__arrow { color: #12100A; transform: translateX(3px) rotate(-38deg); }

/* ---------- Audience ---------- */
.audience {
  background:
    radial-gradient(900px 500px at 85% 0%, rgba(176, 143, 76, 0.12), transparent 60%),
    var(--charcoal);
  padding: clamp(100px, 12vw, 160px) 0;
  border-top: 1px solid var(--hairline-dark);
  border-bottom: 1px solid var(--hairline-dark);
}
.audience__hero { margin-bottom: clamp(50px, 6vw, 80px); }
.audience__big { display: flex; align-items: baseline; gap: 8px; }
.audience__number, .audience__unit {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(90px, 13vw, 190px);
  line-height: 1.08;
  background: var(--foil);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.audience__unit { font-style: italic; font-size: clamp(60px, 8.5vw, 130px); }
.audience__big-label { font-size: clamp(16px, 1.6vw, 20px); font-weight: 300; color: var(--muted-dark); margin-top: 8px; }
.audience__rows { border-top: 1px solid var(--hairline-dark); }
.audience-row {
  display: grid;
  grid-template-columns: 150px 160px minmax(0, 1fr) 170px 210px;
  gap: clamp(16px, 2.5vw, 34px);
  align-items: center;
  padding: 26px 4px;
  border-bottom: 1px solid var(--hairline-dark);
}
.audience-row__name { font-family: var(--font-display); font-size: 22px; font-weight: 500; }
.audience-row__handle { font-size: 13px; color: var(--muted-dark); letter-spacing: 0.03em; }
.audience-row__bar { height: 2px; background: rgba(242, 243, 241, 0.1); border-radius: 2px; overflow: hidden; }
.audience-row__bar i {
  display: block; height: 100%; width: var(--share);
  background: linear-gradient(90deg, #8C713A, #C2A15C);
  transform: scaleX(0); transform-origin: left;
  transition: transform 1.4s var(--ease-out);
}
.audience-row.is-inview .audience-row__bar i { transform: scaleX(1); }
.audience-row__count { font-family: var(--font-display); font-size: 24px; font-weight: 500; color: var(--copper-pale); text-align: right; }
.audience-row__note { font-size: 13px; color: var(--muted-dark); text-align: right; }

/* ---------- Réalisations ---------- */
.work { padding: clamp(100px, 12vw, 160px) 0; }
.work__intro { max-width: 54ch; margin-bottom: clamp(40px, 5vw, 60px); }

.rail-wrap { overflow: hidden; margin-bottom: clamp(50px, 6vw, 80px); }
.rail {
  display: flex; gap: clamp(16px, 2.4vw, 28px);
  overflow-x: auto;
  padding: 10px clamp(20px, calc((100vw - var(--container)) / 2 + 48px), 400px) 26px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--copper) transparent;
}
.rail::-webkit-scrollbar { height: 4px; }
.rail::-webkit-scrollbar-thumb { background: var(--copper); border-radius: 4px; }
.rail::-webkit-scrollbar-track { background: rgba(22, 32, 46, 0.08); }

.story-card {
  position: relative; flex: none;
  width: clamp(200px, 22vw, 250px);
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  overflow: hidden;
  scroll-snap-align: center;
  background: var(--charcoal);
  box-shadow: 0 24px 50px -24px rgba(22, 32, 46, 0.5);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.story-card:hover { transform: translateY(-8px); box-shadow: 0 34px 60px -24px rgba(22, 32, 46, 0.65); }
.story-card__bars {
  position: absolute; top: 10px; left: 12px; right: 12px; z-index: 3;
  display: flex; gap: 5px;
}
.story-card__bars span { flex: 1; height: 2px; border-radius: 2px; background: rgba(242, 243, 241, 0.45); }
.story-card__bars span:first-child { background: var(--copper-soft); }
.story-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease-out); }
.story-card:hover img { transform: scale(1.05); }
.story-card__play {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--porcelain);
  background: linear-gradient(180deg, rgba(18,20,25,0) 40%, rgba(18,20,25,0.72) 100%);
  transition: background-color 0.4s;
}
.story-card__play::before {
  content: ""; position: absolute;
  width: 62px; height: 62px; border-radius: 50%;
  border: 1px solid rgba(242, 243, 241, 0.55);
  background: rgba(15, 21, 32, 0.4);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  transition: transform 0.4s var(--ease-out), background-color 0.4s, border-color 0.4s;
}
.story-card:hover .story-card__play::before { transform: scale(1.12); background: rgba(176, 143, 76, 0.85); border-color: transparent; }
.story-card__play i {
  position: relative; z-index: 2;
  font-style: normal;
  transform: translateX(2px);
}
.story-card__meta {
  position: absolute; left: 14px; bottom: 12px; z-index: 3;
  font-size: 13px; color: rgba(242, 243, 241, 0.85);
  pointer-events: none;
}
.story-card__meta strong { color: #fff; font-weight: 700; }
.story-card iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 4; }

.videos {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 3.4vw, 44px);
}
.video-card__media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--charcoal);
  box-shadow: 0 26px 60px -28px rgba(22, 32, 46, 0.5);
}
.video-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease-out); }
.video-card:hover .video-card__media img { transform: scale(1.045); }
.video-card__media iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-card__play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, rgba(18,20,25,0.05), rgba(18,20,25,0.45));
  transition: background-color 0.4s;
}
.video-card__play span {
  width: 74px; height: 74px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--porcelain); padding-left: 4px;
  border: 1px solid rgba(242, 243, 241, 0.55);
  background: rgba(15, 21, 32, 0.45);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  transition: transform 0.4s var(--ease-out), background-color 0.4s, border-color 0.4s;
}
.video-card:hover .video-card__play span { transform: scale(1.1); background: rgba(176, 143, 76, 0.9); border-color: transparent; }
.video-card__info { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; padding: 18px 6px 0; }
.video-card__info h3 { font-family: var(--font-display); font-size: clamp(19px, 1.9vw, 24px); font-weight: 500; color: var(--charcoal); }
.video-card__info p { font-size: 13.5px; color: var(--muted-light); white-space: nowrap; }
.video-card__info strong { color: var(--gold-on-light); font-weight: 700; }
.work__more { margin-top: clamp(40px, 5vw, 60px); text-align: center; }

/* ---------- Contact ---------- */
.contact {
  background:
    radial-gradient(1000px 600px at 15% 20%, rgba(176, 143, 76, 0.1), transparent 60%),
    var(--ink);
  padding: clamp(100px, 12vw, 170px) 0;
}
.contact__grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(50px, 7vw, 110px);
  align-items: start;
}
.contact__copy p { color: var(--muted-dark); max-width: 46ch; }
.contact__email {
  display: inline-block;
  margin: 34px 0 38px;
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(22px, 2.6vw, 34px);
  color: var(--copper-pale);
  border-bottom: 1px solid rgba(194, 161, 92, 0.4);
  padding-bottom: 6px;
  transition: color 0.3s, border-color 0.3s;
}
.contact__email:hover { color: var(--copper-soft); border-color: var(--copper-soft); }
.contact__socials { display: flex; flex-direction: column; gap: 14px; margin-bottom: 38px; }
.contact__socials a {
  display: inline-flex; gap: 10px; align-items: baseline;
  font-size: 15px; font-weight: 600; letter-spacing: 0.02em;
  color: var(--porcelain);
  transition: color 0.3s;
}
.contact__socials a span { font-weight: 400; color: var(--muted-dark); transition: color 0.3s; }
.contact__socials a:hover { color: var(--copper-soft); }
.contact__socials a:hover span { color: var(--copper-pale); }
.contact__base { font-size: 13.5px; letter-spacing: 0.04em; color: var(--muted-dark); }

.contact__form {
  background: rgba(27, 39, 56, 0.55);
  border: 1px solid var(--hairline-dark);
  border-radius: var(--radius);
  padding: clamp(28px, 3.4vw, 44px);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.form-field label {
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted-dark);
}
.form-field input, .form-field textarea {
  font: inherit; color: var(--porcelain);
  background: rgba(15, 21, 32, 0.55);
  border: 1px solid rgba(194, 161, 92, 0.18);
  border-radius: 12px;
  padding: 13px 16px;
  transition: border-color 0.3s, background-color 0.3s;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(151, 161, 174, 0.55); }
.form-field input:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--copper-soft);
  background: rgba(15, 21, 32, 0.8);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.contact__submit { width: 100%; margin-top: 6px; }
.contact__form-note { margin-top: 14px; font-size: 12.5px; text-align: center; color: var(--muted-dark); }

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  border-top: 1px solid var(--hairline-dark);
  padding: 54px 0;
}
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
.footer__brand { display: flex; align-items: baseline; gap: 8px; }
.footer__serif {
  font-family: var(--font-display); font-size: 26px; font-weight: 600; letter-spacing: 0.24em;
  background: var(--foil); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.footer__script { font-family: var(--font-script); font-size: 26px; color: var(--porcelain); }
.footer__tagline { font-size: 12px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--copper); }
.footer__copy { font-size: 12.5px; color: var(--muted-dark); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 150;
  background: rgba(8, 12, 19, 0.92);
  display: flex; align-items: center; justify-content: center;
  padding: 5vh 4vw;
}
.lightbox[hidden] { display: none; }
.lightbox__frame { width: min(1000px, 92vw); aspect-ratio: 16 / 9; }
.lightbox__frame.is-vertical { width: auto; height: min(84vh, 720px); aspect-ratio: 9 / 16; }
.lightbox__frame iframe { width: 100%; height: 100%; border: 0; border-radius: 14px; }
.lightbox__close {
  position: absolute; top: 26px; right: 30px;
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid rgba(242, 243, 241, 0.3);
  color: var(--porcelain); font-size: 17px;
  transition: border-color 0.3s, color 0.3s, transform 0.3s;
}
.lightbox__close:hover { border-color: var(--copper-soft); color: var(--copper-soft); transform: rotate(90deg); }

/* ---------- Responsive ---------- */
@media (max-height: 860px) {
  .hero__scroll-hint { display: none; }
}
@media (max-width: 1080px) {
  .audience-row { grid-template-columns: 130px 1fr 150px 190px; }
  .audience-row__bar { display: none; }
}
@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .hero { padding-bottom: 70px; }
  .hero__inner { grid-template-columns: 1fr; gap: 56px; }
  .hero__visual { order: -1; }
  .story-frame { width: min(280px, 70vw); }
  .hero__scroll-hint { display: none; }
  .about__grid { grid-template-columns: 1fr; }
  .about__media { position: static; max-width: 420px; }
  .service { grid-template-columns: 1fr; gap: 18px; }
  .service__link { position: absolute; top: clamp(34px, 4vw, 52px); right: 10px; width: 52px; height: 52px; }
  .videos { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .audience-row { grid-template-columns: 1fr 1fr; row-gap: 6px; padding: 22px 4px; }
  .audience-row__count { text-align: left; }
  .audience-row__handle { text-align: right; }
  .audience-row__note { text-align: right; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .eyebrow { font-size: 10.5px; letter-spacing: 0.18em; }
  .eyebrow__rule { width: 30px; }
  .hero__actions .btn { width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .about__facts { grid-template-columns: 1fr; gap: 18px; }
  .video-card__info { flex-direction: column; gap: 4px; }
  .video-card__info p { white-space: normal; }
}

/* ---------- Accessibilité : mouvement réduit ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .marquee__track { animation: none; transform: none; }
  .preloader { display: none; }
}
