/* ==========================================================================
   Léo Hercouët — Vidéaste de mariage
   Feuille de style principale (version « papier »)
   ========================================================================== */

/* --------------------------------------------------------------- 1. Tokens */

:root {
  --paper:      #F3EDE4;
  --card:       #FBF7F1;
  --ink:        #3A322B;
  --muted:      #6F6459;
  --line:       #DFD5C7;
  --sand:       #C6A98B;
  --brass:      #A8785C;
  --slot:       #EFE7DC;
  --warm:       #EDE4D8;
  --on-dark:    #EDE2D5;
  --on-dark-2:  #E4D6C4;
  --footer-dim: #BFB3A5;
  --footer-fine:#9A8E80;

  --serif:  'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:   'Jost', system-ui, -apple-system, sans-serif;
  --script: 'Petit Formal Script', cursive;

  --pad-x: clamp(22px, 5vw, 64px);
  --ease:  cubic-bezier(.22, .61, .36, 1);
}

/* ------------------------------------------------------------- 2. Base/reset */

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background-color: var(--paper);
  background-image: url(../../media/paper-texture.png);
  background-repeat: repeat;
  background-size: 512px 512px;
  color: var(--ink);
  font-family: var(--sans);
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; }
h1, h2, h3, p, figure, blockquote, ul { margin: 0; }
ul { padding: 0; list-style: none; }

a { color: var(--brass); text-decoration: none; transition: color 400ms ease; }
a:hover { color: var(--ink); }

button, input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--sand); color: var(--card); }
:focus-visible { outline: 1px solid var(--brass); outline-offset: 3px; }
::placeholder { color: #A79C90; opacity: 1; }

summary { list-style: none; cursor: pointer; }
summary::-webkit-details-marker { display: none; }

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

/* ---------------------------------------------------------- 3. Animations */

@keyframes softIn     { from { opacity: 0; } to { opacity: 1; } }
@keyframes fieldIn    { from { opacity: 0; transform: translateY(-8px); max-height: 0; }
                        to   { opacity: 1; transform: none; max-height: 140px; } }
@keyframes scrollHint { 0%   { transform: translateY(0);    opacity: .2; }
                        45%  { transform: translateY(14px); opacity: 1;  }
                        100% { transform: translateY(28px); opacity: 0;  } }

/* Révélation au défilement — `--rest` conserve la rotation des polaroïds,
   `--d` décale l'entrée des éléments d'un même groupe. */
[data-reveal] {
  opacity: 0;
  transform: var(--rest, none) translateY(30px);
  transition:
    opacity   900ms var(--ease) var(--d, 0ms),
    transform 900ms var(--ease) var(--d, 0ms);
}
[data-reveal].is-visible { opacity: 1; transform: var(--rest, none); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}

/* --------------------------------------------- 4. Emplacements d'images */

/* Une photo par emplacement : déposez le fichier attendu dans /media.
   Tant qu'il est absent, le cadre affiche le nom du fichier à fournir. */
.slot { position: relative; overflow: hidden; background: var(--slot); }
.slot > img { width: 100%; height: 100%; object-fit: cover; }
.slot--fill { position: absolute; inset: 0; }
.slot--fill > img { position: absolute; inset: 0; }

.slot.is-empty > img { display: none; }
.slot.is-empty::after {
  content: attr(data-file);
  position: absolute; inset: 0;
  display: grid; place-items: center;
  padding: 12px; text-align: center;
  font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase;
  color: #A79C90;
  background: var(--slot);
}

/* Quand le cadre porte un bouton de lecture, le nom du fichier remonte pour
   ne pas se superposer au bouton. */
.slot.is-empty:has(.play)::after { place-items: start center; padding-top: 18px; }

/* ------------------------------------------------------- 5. Barre de nav */

.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  border-bottom: 1px solid transparent;
  transition: background-color 700ms ease, box-shadow 700ms ease, border-color 700ms ease;
}
/* Les pages sans hero sombre n'ont rien pour faire ressortir des liens
   ivoire : leur barre est claire dès le chargement, sans attendre le
   défilement. */
.site-header--solid,
.site-header.is-solid {
  background-color: rgba(243, 237, 228, .94);
  -webkit-backdrop-filter: saturate(120%) blur(6px);
  backdrop-filter: saturate(120%) blur(6px);
  box-shadow: 0 1px 0 rgba(58, 50, 43, .06), 0 6px 18px rgba(58, 50, 43, .05);
  border-color: var(--line);
}

.nav {
  max-width: 1440px; margin: 0 auto;
  padding: 18px clamp(18px, 4vw, 48px);
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 16px;
}
/* Le logo est le retour à l'accueil : les deux entrées se rangent de part et
   d'autre, au plus près de lui. */
.nav__group {
  display: flex; gap: 36px; align-items: center;
  justify-content: flex-end; padding-right: clamp(20px, 3.5vw, 56px);
}
.nav__group--end {
  justify-content: flex-start; padding-right: 0; padding-left: clamp(20px, 3.5vw, 56px);
}

.nav__link {
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--card);
  padding-bottom: 5px;
  border-bottom: 1px solid transparent;
  transition: color 400ms ease, border-color 400ms ease;
}
.nav__link:hover { color: var(--card); border-color: var(--brass); }
.site-header--solid .nav__link,
.site-header.is-solid .nav__link { color: var(--ink); }
.site-header--solid .nav__link:hover,
.site-header.is-solid .nav__link:hover { color: var(--ink); border-color: var(--brass); }

.nav__home { justify-self: center; display: flex; align-items: center; }

.logo {
  display: block; flex: 0 0 auto;
  fill: currentColor;
  color: var(--card);
  transition: color 700ms ease;
}
.logo--header { height: 49px; width: 226px; }
.logo--footer { height: 44px; width: 203px; color: var(--card); }
.site-header--solid .logo--header,
.site-header.is-solid .logo--header { color: var(--ink); }

.burger {
  display: none; align-items: center;
  background: none; border: 0; padding: 6px;
  cursor: pointer; justify-self: start;
}
.burger__bar {
  display: block; width: 26px; height: 1px;
  background: var(--card);
  box-shadow: 0 7px 0 var(--card), 0 -7px 0 var(--card);
  transition: background-color 700ms ease, box-shadow 700ms ease;
}
.site-header--solid .burger__bar,
.site-header.is-solid .burger__bar {
  background: var(--ink);
  box-shadow: 0 7px 0 var(--ink), 0 -7px 0 var(--ink);
}

/* Menu plein écran (mobile) */
.menu {
  position: fixed; inset: 0; z-index: 70;
  background-color: var(--paper);
  background-image: url(../../media/paper-texture.png);
  background-repeat: repeat; background-size: 512px 512px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 34px;
  animation: softIn 400ms ease;
}
.menu[hidden] { display: none; }
.menu__close {
  position: absolute; top: 22px; right: 24px;
  background: none; border: 0;
  font-size: 26px; line-height: 1; color: var(--muted);
  cursor: pointer; padding: 8px;
}
.menu__script { font-family: var(--script); font-size: 26px; color: var(--sand); }
.menu__link { font-family: var(--serif); font-weight: 300; font-size: 34px; color: var(--ink); }
.menu__rule { width: 48px; height: 1px; background: var(--line); }
.menu__mail {
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase; color: var(--muted);
}

@media (max-width: 899px) {
  .nav__group { display: none; }
  .burger { display: flex; }
}

/* ------------------------------------------------------------- 6. Blocs */

.section { padding: clamp(90px, 14vh, 160px) var(--pad-x); }
/* Rythme un peu plus resserré des pages prestations. */
.section--page   { padding: clamp(70px, 11vh, 130px) var(--pad-x); }
.section--page-b { padding: 0 var(--pad-x) clamp(70px, 11vh, 130px); }
.wrap { max-width: 1180px; margin: 0 auto; }
.wrap--narrow { max-width: 1080px; }
.wrap--tight  { max-width: 820px; }

.eyebrow {
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--sand);
}
.script { font-family: var(--script); color: var(--sand); }
.rule { width: 56px; height: 1px; background: var(--sand); margin: 30px 0; }
.rule--center { margin: 32px auto; }

.h2 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.15;
}
.h2--lg { font-size: clamp(2rem, 4.4vw, 3.3rem); line-height: 1.12; }
.h2--sm { font-size: clamp(1.8rem, 3.6vw, 2.8rem); }
em { font-style: italic; }

.lede  { font-size: 17px; line-height: 1.85; color: var(--muted); font-weight: 300; text-wrap: pretty; }
.lede + .lede { margin-top: 20px; }

.btn {
  display: inline-block;
  padding: 16px 34px;
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
  transition: background-color 600ms ease, border-color 600ms ease, color 600ms ease;
}
.btn--ghost { border: 1px solid rgba(251, 247, 241, .6); color: var(--card); }
.btn--ghost:hover { background-color: rgba(251, 247, 241, .94); border-color: var(--card); color: var(--ink); }
.btn--brass { border: 1px solid var(--brass); color: var(--ink); background: transparent; cursor: pointer; }
.btn--brass:hover { background-color: var(--brass); color: var(--card); }

/* ---------------------------------------------------------------- 7. Hero */

.hero {
  position: relative; height: 100svh; min-height: 600px;
  overflow: hidden; background: var(--ink);
}
.hero--inner { height: min(78svh, 720px); min-height: 460px; }

.hero__media { position: absolute; inset: -6% 0; }
.hero__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; pointer-events: none;
}
.hero__veil {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg,
    rgba(58, 50, 43, .52) 0%, rgba(58, 50, 43, .18) 38%, rgba(58, 50, 43, .62) 100%);
}
.hero--inner .hero__veil {
  background: linear-gradient(180deg,
    rgba(58, 50, 43, .5) 0%, rgba(58, 50, 43, .24) 45%, rgba(58, 50, 43, .6) 100%);
}

.hero__inner {
  position: relative; height: 100%;
  max-width: 1440px; margin: 0 auto;
  padding: 0 var(--pad-x) clamp(90px, 12vh, 130px);
  display: flex; flex-direction: column; justify-content: flex-end;
  pointer-events: none;
}
.hero--inner .hero__inner { max-width: 1180px; padding-bottom: clamp(60px, 9vh, 90px); }
.hero__inner a { pointer-events: auto; }

.hero__eyebrow {
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--on-dark-2); margin-bottom: 26px; max-width: 640px; line-height: 2;
}
.hero--inner .hero__eyebrow { margin-bottom: 22px; line-height: inherit; }

.hero__title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(2.7rem, 7.4vw, 5.6rem); line-height: 1.03;
  letter-spacing: .005em; color: var(--card); max-width: 15ch;
}
.hero--inner .hero__title {
  font-size: clamp(2.3rem, 6vw, 4.4rem); line-height: 1.05; max-width: 18ch;
}
.hero__lede {
  margin-top: 26px; max-width: 40ch;
  font-size: 17px; line-height: 1.8; color: var(--on-dark); font-weight: 300;
}
.hero .btn { margin-top: 38px; align-self: flex-start; }

.scroll-hint {
  position: absolute; left: 50%; bottom: 26px;
  width: 1px; height: 46px; overflow: hidden;
}
.scroll-hint span {
  display: block; width: 1px; height: 22px; background: var(--card);
  animation: scrollHint 2600ms cubic-bezier(.4, 0, .2, 1) infinite;
}

/* ------------------------------------------------------------ 8. Émotions */

.emotions {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(40px, 6vw, 90px); align-items: center;
}
.polaroids {
  display: flex; gap: clamp(14px, 2.4vw, 30px);
  align-items: flex-start; justify-content: center;
}
.polaroid { flex: 1 1 0; max-width: 230px; }
.polaroid__mat {
  background: var(--card); padding: 9px;
  box-shadow: 0 1px 2px rgba(58, 50, 43, .07);
}
.polaroid .slot { width: 100%; aspect-ratio: 3/4; }
.polaroid--a { margin-top: 38px; }
.polaroid--c { flex: 0 1 130px; max-width: 150px; margin-top: 112px; }
.polaroid--c .polaroid__mat { padding: 8px; }
.polaroid--c .slot { aspect-ratio: 2/3; }

.emotions__text { max-width: 460px; }
.emotions__text .h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); line-height: 1.12; }
.emotions__script { font-size: clamp(22px, 3vw, 30px); margin-bottom: 18px; }

/* ------------------------------------------------------------ 9. Services */

.services { padding: clamp(20px, 4vh, 40px) var(--pad-x) clamp(90px, 13vh, 150px); }
.services__head {
  text-align: center; max-width: 620px;
  margin: 0 auto clamp(44px, 6vh, 70px);
}
.services__head .eyebrow { margin-bottom: 20px; }
.services__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(20px, 3vw, 34px);
}

.service {
  position: relative; min-height: clamp(400px, 56vh, 560px);
  overflow: hidden; background: var(--ink);
}
.service__media { position: absolute; inset: 0; transition: transform 1400ms var(--ease); }
.service:hover .service__media { transform: scale(1.045); }
.service__veil {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(58, 50, 43, .18) 0%, rgba(58, 50, 43, .62) 100%);
  transition: opacity 900ms ease;
}
.service:hover .service__veil { opacity: .88; }
.service__body {
  position: relative; height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(26px, 3.4vw, 42px); pointer-events: none;
}
.service__title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(2rem, 3.6vw, 2.9rem); color: var(--card);
}
.service__text {
  margin-top: 12px; font-size: 16px; line-height: 1.7;
  color: var(--on-dark); font-weight: 300; max-width: 34ch;
}
.service__link {
  pointer-events: auto; margin-top: 24px; align-self: flex-start;
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--card);
  border-bottom: 1px solid rgba(198, 169, 139, .85); padding-bottom: 6px;
  transition: color 500ms ease, border-color 500ms ease;
}
.service__link:hover { color: var(--sand); border-color: var(--sand); }

/* ------------------------------------------- 10. Bandeau d'extraits */

/* Une bande d'extraits 16:9 qui glisse en continu : elle sépare deux parties
   de la page sans former une section à part entière. Le mouvement vient de la
   piste, dupliquée à l'identique — l'animation la décale d'exactement une
   copie, si bien que la boucle ne se voit pas. La marge droite est portée par
   chaque vignette (et non par `gap`) pour que ce décalage tombe juste. */
.strip {
  position: relative; overflow: hidden;
  /* Même encre que le pied de page, voilée d'un motif à peine plus sombre. */
  background-color: var(--ink);
  background-image: url(../img/motif-floral.png);
  background-repeat: repeat;
  background-size: 300px 300px;
  padding: clamp(22px, 2.8vw, 34px) 0;
}
.strip__track {
  display: flex; width: max-content;
  animation: stripScroll var(--speed, 70s) linear infinite;
}
.strip:hover .strip__track,
.strip:focus-within .strip__track { animation-play-state: paused; }

.strip__clip {
  flex: 0 0 auto;
  width: clamp(220px, 24vw, 340px);
  aspect-ratio: 16/9;
  margin-right: clamp(10px, 1.4vw, 18px);
}
.strip__clip video { width: 100%; height: 100%; object-fit: cover; }
.strip__clip { background: rgba(11, 9, 8, .3); }
.strip__clip.is-empty::after { background: rgba(11, 9, 8, .3); color: #8C8175; }

@keyframes stripScroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

/* Sans animation, la bande devient une simple rangée à faire glisser. */
@media (prefers-reduced-motion: reduce) {
  .strip { overflow-x: auto; }
  .strip__track { animation: none; }
}

/* ------------------------------------------------------ Bouton de lecture */

.play {
  position: absolute; z-index: 2; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 58px; height: 58px;
  border: 1px solid rgba(251, 247, 241, .8); border-radius: 50%;
  background: rgba(58, 50, 43, .22);
  display: grid; place-items: center; cursor: pointer;
  transition: background-color 500ms ease, border-color 500ms ease;
}
.play:hover { background-color: rgba(168, 120, 92, .72); border-color: var(--card); }
.play::before {
  content: ""; width: 0; height: 0; margin-left: 4px;
  border-left: 10px solid var(--card);
  border-top: 6.5px solid transparent; border-bottom: 6.5px solid transparent;
}
.play--lg { width: 70px; height: 70px; }
.play--lg::before {
  margin-left: 5px;
  border-left-width: 12px; border-top-width: 8px; border-bottom-width: 8px;
}

/* ------------------------------------------------------------ 11. À propos */

.about {
  background: var(--card); border: 1px solid var(--line);
  padding: clamp(24px, 3.6vw, 54px);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: clamp(32px, 5vw, 66px); align-items: center;
}
.about .slot { width: 100%; aspect-ratio: 4/5; }
.about .eyebrow { margin-bottom: 20px; }
.about .h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); line-height: 1.14; }
.about__sign { margin-top: 30px; font-family: var(--script); font-size: 30px; color: var(--sand); }

/* ---------------------------------------------------------------- 12. Avis */

.avis {
  background: var(--warm);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: clamp(80px, 12vh, 140px) var(--pad-x);
}
.avis__head { text-align: center; margin-bottom: clamp(40px, 6vh, 66px); }
.avis__head .script { font-size: clamp(22px, 3vw, 30px); color: var(--brass); margin-bottom: 12px; }
.avis__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 2.6vw, 32px); align-items: start;
}
.quote {
  background: var(--card); border: 1px solid var(--line);
  padding: clamp(26px, 2.8vw, 38px);
}
.quote__mark {
  display: block; font-family: var(--serif); font-size: 62px; line-height: .6; color: var(--line);
}
.quote__stars { margin-top: 18px; letter-spacing: .32em; color: var(--sand); font-size: 13px; }
.quote__text {
  margin-top: 20px; font-size: 15.5px; line-height: 1.85;
  color: var(--muted); font-weight: 300; text-wrap: pretty;
}
.quote__author {
  margin-top: 24px;
  font-size: 10.5px; letter-spacing: .25em; text-transform: uppercase; color: var(--ink);
}

/* ------------------------------------------------------------- 13. Contact */

.contact { padding: clamp(84px, 13vh, 150px) var(--pad-x); }
.contact__head {
  text-align: center; max-width: 640px; margin: 0 auto clamp(46px, 7vh, 76px);
}
.contact__head .script { font-size: clamp(23px, 3.2vw, 32px); margin-bottom: 14px; }
.contact__head p:last-child {
  margin-top: 22px; font-size: 16.5px; line-height: 1.8; color: var(--muted); font-weight: 300;
}
.contact__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(36px, 5vw, 72px); align-items: start;
}
.contact__col .eyebrow { margin-bottom: 22px; }
.contact__big {
  display: block; font-family: var(--serif);
  font-size: clamp(21px, 2.4vw, 27px); color: var(--ink); font-weight: 400;
}
.contact__big + .contact__big { margin-top: 12px; }
.contact__big:hover { color: var(--brass); }
.contact__rule { width: 100%; max-width: 220px; height: 1px; background: var(--line); margin: 32px 0; }
.contact__note { font-size: 15.5px; line-height: 1.8; color: var(--muted); font-weight: 300; }
.socials { display: flex; gap: 22px; margin-top: 32px; flex-wrap: wrap; }
.socials a {
  font-size: 10.5px; letter-spacing: .25em; text-transform: uppercase; color: var(--muted);
}
.socials a:hover { color: var(--brass); }

.form { display: flex; flex-direction: column; gap: 26px; }
.field { display: block; }
.field > span {
  display: block; margin-bottom: 9px;
  font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted);
}
.field input, .field select, .field textarea {
  width: 100%; padding: 9px 2px;
  background: transparent; border: 0; border-bottom: 1px solid var(--line);
  border-radius: 0; font-size: 16px; color: var(--ink);
  transition: border-color 500ms ease;
}
.field select { -webkit-appearance: none; appearance: none; }
.field textarea { line-height: 1.7; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--brass); outline: none;
}
.field--mariage { overflow: hidden; animation: fieldIn 600ms var(--ease); }
.field--mariage[hidden] { display: none; }
.form .btn { margin-top: 6px; align-self: flex-start; }

/* Pot de miel — invisible pour l'humain, tentant pour les robots. */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form__error {
  font-size: 14px; line-height: 1.7; color: #9B4A32; font-weight: 300;
}
.form__error[hidden] { display: none; }

.sent {
  background: var(--card); border: 1px solid var(--line);
  padding: clamp(28px, 4vw, 44px); text-align: center;
  animation: softIn 600ms ease;
}
.sent[hidden] { display: none; }
.sent__script { font-family: var(--script); font-size: 30px; color: var(--sand); }
.sent__title { margin-top: 16px; font-family: var(--serif); font-size: 25px; font-weight: 300; }
.sent__text {
  margin-top: 14px; font-size: 15.5px; line-height: 1.8; color: var(--muted); font-weight: 300;
}

/* --------------------------------------------------------- 14. Pages internes */

.prose {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: clamp(34px, 5vw, 74px); align-items: start;
}
.prose .script { font-size: clamp(22px, 3vw, 30px); margin-bottom: 16px; }
.prose .h2 { line-height: 1.14; }

.pricing {
  max-width: 840px; margin: 0 auto;
  background: var(--card); border: 1px solid var(--line);
  padding: clamp(30px, 4.6vw, 64px); text-align: center;
}
.pricing .eyebrow { margin-bottom: 18px; }
.pricing__amount {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(2.4rem, 6vw, 4rem); line-height: 1;
}
.pricing__amount span { color: var(--brass); }
.pricing__list { display: grid; gap: 20px; text-align: left; max-width: 520px; margin: 0 auto; }
.pricing__list li {
  display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: baseline;
}
.pricing__num { font-family: var(--serif); font-size: 22px; color: var(--sand); }
.pricing__item { font-size: 16.5px; line-height: 1.7; color: var(--muted); font-weight: 300; }
.pricing__fine {
  margin-top: 34px; font-size: 14.5px; line-height: 1.8; color: var(--muted); font-weight: 300;
}
.pricing .btn { margin-top: 30px; }

.showcase {
  background: var(--card);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: clamp(70px, 11vh, 130px) var(--pad-x);
}
.showcase__head { text-align: center; margin-bottom: clamp(34px, 5vh, 54px); }
.showcase__head .eyebrow { margin-bottom: 16px; }
.showcase__player { position: relative; width: 100%; aspect-ratio: 16/9; }
/* Deux colonnes de vignettes 16:9, à toutes les largeurs. Le format couché
   n'a pas besoin du plafond de largeur qu'exigeait le portrait : sur la
   pleine mesure, une vignette fait 530 × 298 px, ce qui reste confortable. */
.gallery {
  margin-top: clamp(20px, 3vw, 32px);
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(12px, 1.8vw, 20px);
}
.gallery .slot { aspect-ratio: 16/9; }

.highlight {
  background: var(--card); border: 1px solid var(--line);
  padding: clamp(26px, 3.6vw, 54px);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(30px, 4.6vw, 64px); align-items: center;
}
.highlight .slot { width: 100%; aspect-ratio: 4/5; }
.highlight .eyebrow { margin-bottom: 18px; }
.highlight .h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); line-height: 1.14; }
.highlight .rule { margin: 26px 0; }
.highlight p { font-size: 16.5px; line-height: 1.85; color: var(--muted); font-weight: 300; text-wrap: pretty; }
.highlight p + p { margin-top: 18px; }

.faq__head { text-align: center; margin-bottom: clamp(32px, 5vh, 50px); }
.faq__head .eyebrow { margin-bottom: 16px; }
.faq details { border-top: 1px solid var(--line); padding: 24px 0; }
.faq details:last-of-type { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex; justify-content: space-between; align-items: baseline; gap: 20px;
  font-family: var(--serif); font-size: clamp(19px, 2.2vw, 24px); font-weight: 400; color: var(--ink);
}
.faq summary span { color: var(--sand); font-size: 20px; }
.faq details[open] summary span { visibility: hidden; }
.faq details p {
  margin-top: 16px; max-width: 64ch;
  font-size: 16px; line-height: 1.85; color: var(--muted); font-weight: 300;
}

.cta { position: relative; overflow: hidden; background: var(--ink); }
.cta__media { position: absolute; inset: -6% 0; }
.cta__veil { position: absolute; inset: 0; pointer-events: none; background: rgba(58, 50, 43, .6); }
.cta__body {
  position: relative; max-width: 760px; margin: 0 auto;
  padding: clamp(80px, 14vh, 150px) var(--pad-x); text-align: center;
}
.cta__script { font-family: var(--script); font-size: clamp(23px, 3.2vw, 32px); color: var(--sand); margin-bottom: 14px; }
.cta__title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(2rem, 4.6vw, 3.3rem); line-height: 1.12; color: var(--card);
}
.cta__text { margin-top: 22px; font-size: 16.5px; line-height: 1.8; color: var(--on-dark); font-weight: 300; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; margin-top: 34px; }
.btn--pale { border: 1px solid rgba(251, 247, 241, .65); color: var(--card); }
.btn--pale:hover { background-color: var(--card); color: var(--ink); }
.btn--link {
  color: var(--sand); border-bottom: 1px solid rgba(198, 169, 139, .6);
}
.btn--link:hover { color: var(--card); }

/* ---------------------------------------------------------- 15. Pied de page */

.site-footer {
  background: var(--ink); color: var(--on-dark);
  padding: clamp(60px, 9vh, 90px) var(--pad-x) 34px;
}
.site-footer--inner {
  padding-top: clamp(56px, 8vh, 84px);
  border-top: 1px solid rgba(198, 169, 139, .28);
}
.site-footer__grid {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(32px, 5vw, 60px); align-items: start;
}
.site-footer__place {
  margin-top: 22px; font-size: 14.5px; line-height: 1.8;
  color: var(--footer-dim); font-weight: 300;
}
.site-footer__nav { display: flex; flex-direction: column; gap: 12px; }
.site-footer__nav a {
  font-size: 10.5px; letter-spacing: .25em; text-transform: uppercase; color: var(--on-dark);
}
.site-footer__nav a:hover { color: var(--sand); }
/* Le sélecteur direct est indispensable : la colonne contient aussi la
   navigation des réseaux sociaux, dont les liens ne doivent hériter ni de la
   taille de l'adresse e-mail, ni de la marge qui sépare le mail du téléphone. */
.site-footer__contact > a {
  display: block; font-family: var(--serif); font-size: 19px; color: var(--card);
}
.site-footer__contact > a + a { margin-top: 10px; }
.site-footer__contact > a:hover { color: var(--sand); }
.site-footer .socials { gap: 20px; margin-top: 24px; }
.site-footer .socials a { font-size: 10px; color: var(--footer-dim); }
.site-footer .socials a:hover { color: var(--sand); }
.site-footer__base {
  max-width: 1180px; margin: clamp(40px, 6vh, 64px) auto 0;
  padding-top: 22px; border-top: 1px solid rgba(198, 169, 139, .28);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
}
.site-footer__base p {
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--footer-fine);
}

/* ----------------------------------------------------------- 16. Lightbox */

.lightbox {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(41, 35, 30, .94);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 18px; padding: clamp(18px, 5vw, 60px);
  animation: softIn 400ms ease;
}
.lightbox[hidden] { display: none; }
.lightbox__close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: 0; font-size: 26px; line-height: 1;
  color: var(--on-dark); cursor: pointer; padding: 8px;
}
.lightbox__frame { width: 100%; max-width: 1080px; aspect-ratio: 16/9; background: #000; }
.lightbox__frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.lightbox__missing {
  width: 100%; height: 100%;
  display: grid; place-items: center; gap: 10px; padding: 24px;
  text-align: center; background: #1B1815;
}
.lightbox__title {
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--sand); text-align: center;
}
.lightbox__id {
  font-size: 10px; letter-spacing: .14em; color: #8A8075;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace; text-align: center;
}
.lightbox__id[hidden] { display: none; }

/* ------------------------------------------------- 17. Mentions légales */

/* Page de texte : on serre la mesure et on rythme par des paires
   intitulé / valeur plutôt que par des paragraphes indifférenciés. */
.legal { padding: clamp(120px, 18vh, 190px) var(--pad-x) clamp(80px, 12vh, 130px); }
.legal__title {
  margin-top: 18px;
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(2rem, 4.6vw, 3.1rem); line-height: 1.12;
  text-wrap: balance;
}
.legal__date {
  margin-top: 16px;
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--sand);
}
.legal__h2 {
  margin-top: clamp(44px, 6vh, 66px);
  padding-bottom: 12px; border-bottom: 1px solid var(--line);
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.3rem, 2.6vw, 1.7rem); line-height: 1.2;
}
.legal__p {
  margin-top: 20px;
  font-size: 16px; line-height: 1.85; color: var(--muted); font-weight: 300;
  max-width: 68ch; text-wrap: pretty;
}
.legal__p strong { color: var(--ink); font-weight: 400; }

.legal__list { margin: 22px 0 0; display: grid; gap: 16px; }
.legal__list dt {
  font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--sand);
}
.legal__list dd {
  margin: 6px 0 0;
  font-size: 16px; line-height: 1.8; color: var(--muted); font-weight: 300;
  max-width: 68ch;
}

.legal__back {
  margin-top: clamp(48px, 7vh, 72px);
  padding-top: 26px; border-top: 1px solid var(--line);
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
}

/* Le lien légal du pied de page reste discret, au niveau de la mention
   de copyright qu'il accompagne. */
.site-footer__legal {
  color: var(--footer-fine);
  border-bottom: 1px solid transparent;
  transition: color 400ms ease, border-color 400ms ease;
}
.site-footer__legal:hover { color: var(--on-dark); border-color: var(--sand); }
