/* ═══════════════════════════════════════════════
   MAISON BELOEUVRE — Sombre & prestige, éditorial
   Fraunces (titres) · Satoshi (texte) — auto-hébergées
   ═══════════════════════════════════════════════ */

/* ── Polices ── */
@font-face {
  font-family: "Fraunces";
  src: url("/assets/fonts/fraunces-var.woff2") format("woff2-variations");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("/assets/fonts/fraunces-var-italic.woff2") format("woff2-variations");
  font-weight: 300 700;
  font-style: italic;
  font-display: swap;
}
@font-face { font-family: "Satoshi"; src: url("/assets/fonts/satoshi-300.woff2") format("woff2"); font-weight: 300; font-display: swap; }
@font-face { font-family: "Satoshi"; src: url("/assets/fonts/satoshi-400.woff2") format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Satoshi"; src: url("/assets/fonts/satoshi-500.woff2") format("woff2"); font-weight: 500; font-display: swap; }
@font-face { font-family: "Satoshi"; src: url("/assets/fonts/satoshi-700.woff2") format("woff2"); font-weight: 700; font-display: swap; }

:root {
  /* Couleurs */
  --bg:          #0C0A09;
  --bg-alt:      #121009;
  --surface:     #171310;
  --surface-2:   #1D1814;
  --border:      #2A241E;
  --border-soft: #221D18;
  --text:        #F2ECE1;
  --text-muted:  #A89F91;
  --gold:        #C9A96A;
  --gold-bright: #DEC08A;
  --gold-dim:    rgba(201, 169, 106, 0.14);
  --paper:       #EFE8D9;
  --ink:         #191410;
  --ink-muted:   #6B6154;
  --gold-deep:   #8A6B33;
  --bordeaux:    #5E2431;

  /* Typographie */
  --font-serif: "Fraunces", Georgia, serif;
  --font-sans:  "Satoshi", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Espacement */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 40px;
  --space-5: 64px;
  --space-6: 96px;
  --space-7: 150px;

  /* Mouvement */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 300ms;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
u { text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; }

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

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

.container {
  width: min(100% - 48px, 1240px);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: -60px;
  left: 16px;
  z-index: 300;
  background: var(--gold);
  color: var(--ink);
  padding: 12px 20px;
  font-weight: 500;
  transition: top 200ms var(--ease-out);
}
.skip-link:focus { top: 16px; }

.hidden-field { position: absolute; left: -9999px; }

/* Grain réutilisable */
.grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}

/* ═══════════ BOUTONS ═══════════ */
.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: color 350ms var(--ease-out), border-color 350ms var(--ease-out);
  min-height: 48px;
}
.btn:active { transform: scale(0.98); }

/* Balayage doré : un dégradé deux tons glisse de gauche à droite */
.btn--gold {
  color: #14100A;
  border-color: var(--gold);
  background-image: linear-gradient(to right, var(--gold-bright) 50%, var(--gold) 50%);
  background-size: 201% 100%;
  background-position: 100% 0;
  transition: background-position 480ms var(--ease-out),
              color 350ms var(--ease-out),
              border-color 350ms var(--ease-out);
}
.btn--gold:hover { background-position: 0 0; border-color: var(--gold-bright); }

.btn--ghost {
  color: var(--text);
  border-color: rgba(242, 236, 225, 0.35);
  background-image: linear-gradient(to right, var(--gold) 50%, transparent 50%);
  background-size: 201% 100%;
  background-position: 100% 0;
  transition: background-position 480ms var(--ease-out),
              color 300ms var(--ease-out) 130ms,
              border-color 350ms var(--ease-out);
}
.btn--ghost:hover { background-position: 0 0; color: #14100A; border-color: var(--gold); }

.btn--full { width: 100%; }

/* ═══════════ NAVIGATION ═══════════ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background-color var(--dur) var(--ease-out),
              border-color var(--dur) var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(12, 10, 9, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border-soft);
}

.nav__inner {
  width: min(100% - 48px, 1320px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: var(--space-4);
  height: 80px;
}

.nav__logo { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.nav__logo-mark { width: 40px; height: 40px; color: var(--gold); }
.nav__logo-frame { stroke-dasharray: 168; stroke-dashoffset: 0; }
.js .nav__logo-frame { stroke-dashoffset: 168; animation: drawFrame 1.4s var(--ease-out) 300ms forwards; }
@keyframes drawFrame { to { stroke-dashoffset: 0; } }
.nav__logo-letter {
  font-family: var(--font-serif);
  font-size: 21px;
  fill: var(--gold);
  opacity: 1;
}
.js .nav__logo-letter { opacity: 0; animation: fadeIn 600ms var(--ease-out) 1100ms forwards; }
@keyframes fadeIn { to { opacity: 1; } }
.nav__logo-text { font-family: var(--font-serif); font-size: 19px; font-weight: 400; letter-spacing: 0.01em; }

.nav__desktop { display: flex; gap: var(--space-3); }
.nav__desktop a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(242, 236, 225, 0.82);
  padding: 8px 4px;
  position: relative;
  transition: color var(--dur) var(--ease-out);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}
.nav__desktop a::after {
  content: "";
  position: absolute;
  left: 4px; right: 4px; bottom: 2px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease-out);
}
.nav__desktop a:hover { color: var(--text); }
.nav__desktop a:hover::after { transform: scaleX(1); }

.nav__cta { padding: 12px 24px; min-height: 44px; }

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  padding: 10px;
  z-index: 210;
  position: relative;
}
.nav__burger span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: var(--text);
  transition: transform var(--dur) var(--ease-out);
}
.nav__burger[aria-expanded="true"] span:first-child { transform: translateY(4.25px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:last-child { transform: translateY(-4.25px) rotate(-45deg); }

/* ═══════════ MENU PLEIN ÉCRAN ═══════════ */
.menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 32px 48px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 350ms var(--ease-out), visibility 0s 350ms;
}
.menu.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 350ms var(--ease-out), visibility 0s;
}
.menu__links { display: flex; flex-direction: column; }
.menu__links a {
  display: flex;
  align-items: baseline;
  gap: 18px;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 9vw, 3.2rem);
  font-weight: 400;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-soft);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 400ms var(--ease-out), transform 400ms var(--ease-out);
}
.menu.is-open .menu__links a { opacity: 1; transform: translateY(0); }
.menu.is-open .menu__links a:nth-child(1) { transition-delay: 60ms; }
.menu.is-open .menu__links a:nth-child(2) { transition-delay: 110ms; }
.menu.is-open .menu__links a:nth-child(3) { transition-delay: 160ms; }
.menu.is-open .menu__links a:nth-child(4) { transition-delay: 210ms; }
.menu.is-open .menu__links a:nth-child(5) { transition-delay: 260ms; }
.menu.is-open .menu__links a:nth-child(6) { transition-delay: 310ms; }
.menu__links em {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.menu__foot {
  margin-top: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
}
.menu__foot a { color: var(--gold-bright); width: fit-content; }

/* ═══════════ HERO ═══════════ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 140px 0 clamp(90px, 13vh, 140px);
  overflow: hidden;
}

.hero__media { position: absolute; inset: 0; z-index: 0; background: #241E16; }
.hero__media img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: center 40%;
  filter: sepia(0.08) saturate(0.95) brightness(0.9) contrast(1.02);
  transform-origin: center;
  will-change: transform;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: center 40%;
  filter: sepia(0.14) saturate(0.9) brightness(0.88) contrast(1.02);
  opacity: 0;
  transition: opacity 1200ms var(--ease-out);
}
.hero__video.is-playing { opacity: 1; }

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(12, 10, 9, 0.55) 0%,
      rgba(12, 10, 9, 0.16) 38%,
      rgba(12, 10, 9, 0.34) 66%,
      rgba(12, 10, 9, 0.92) 100%),
    linear-gradient(to right, rgba(12, 10, 9, 0.5), rgba(12, 10, 9, 0.05) 60%);
}

.hero__content { position: relative; z-index: 1; }

.eyebrow-line {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 14px;
}

.hero__eyebrow, .section__eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: var(--space-3);
}
.section__eyebrow em {
  font-style: normal;
  font-family: var(--font-serif);
  font-size: 14px;
  margin-right: 14px;
  color: var(--gold);
}

.hero__title {
  font-family: var(--font-serif);
  font-weight: 380;
  font-size: clamp(2.7rem, 7.6vw, 6.6rem);
  line-height: 1.04;
  letter-spacing: -0.022em;
  margin-bottom: var(--space-4);
  max-width: 21ch;
  text-shadow: 0 2px 34px rgba(0, 0, 0, 0.5);
}
.hero__line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.16em;
  margin-bottom: -0.16em;
  padding-inline: 0.08em;
  margin-inline: -0.08em;
}
.hero__line > span { display: inline-block; }
.hero__italic {
  font-style: italic;
  font-weight: 340;
  color: var(--gold-bright);
  font-variation-settings: "WONK" 1;
}

.hero__row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-5);
  flex-wrap: wrap;
}
.hero__sub {
  max-width: 46ch;
  font-size: 17px;
  color: rgba(242, 236, 225, 0.88);
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.5);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-2); }

.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(242, 236, 225, 0.75);
  transition: color var(--dur) var(--ease-out);
}
.hero__scroll:hover { color: var(--gold-bright); }
.hero__scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollPulse 2.2s var(--ease-out) infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.5); opacity: 0.4; transform-origin: top; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* Entrée du hero (CSS pur — fonctionne sans JS) */
.reveal-hero {
  opacity: 0;
  transform: translateY(30px);
  animation: heroIn 900ms var(--ease-out) forwards;
  animation-delay: calc(150ms + var(--d, 0) * 130ms);
}
@keyframes heroIn { to { opacity: 1; transform: translateY(0); } }
.js #heroImg { animation: heroZoom 2.2s var(--ease-out) forwards; }
@keyframes heroZoom { from { transform: scale(1.1); } to { transform: scale(1); } }

/* ═══════════ STATISTIQUES ═══════════ */
.stats { background: var(--bg-alt); border-bottom: 1px solid var(--border-soft); }
.stats__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
  padding: var(--space-4) 0;
}
.stats__item { text-align: center; }
.stats__num {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 38px;
  color: var(--gold-bright);
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
}
.stats__item dd {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ═══════════ SECTIONS ═══════════ */
.section { padding: var(--space-7) 0; position: relative; }
.section--alt { background: var(--bg-alt); }

.section__head { margin-bottom: var(--space-6); }

.section__title {
  font-family: var(--font-serif);
  font-weight: 380;
  font-size: clamp(2.1rem, 4.8vw, 3.9rem);
  line-height: 1.12;
  letter-spacing: -0.018em;
}
.section__title em { font-style: italic; color: var(--gold-bright); }

.section__note {
  margin-top: var(--space-3);
  max-width: 62ch;
  font-size: 15px;
  color: var(--text-muted);
}

/* ═══════════ SECTION PAPIER ═══════════ */
.section--paper { background: var(--paper); color: var(--ink); }
.section--paper .section__eyebrow { color: var(--gold-deep); }
.section--paper .section__eyebrow em { color: var(--gold-deep); }
.section--paper .eyebrow-line { background: var(--gold-deep); }
.section--paper .section__title em { color: var(--bordeaux); }
.section--paper ::selection { background: var(--ink); color: var(--paper); }

/* ═══════════ SERVICES — éditorial ═══════════ */
.services { list-style: none; }
.service {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: var(--space-4);
  align-items: start;
  padding: var(--space-4) 0;
  border-top: 1px solid var(--border);
  transition: border-color var(--dur) var(--ease-out);
}
.service:last-child { border-bottom: 1px solid var(--border); }
.service:hover { border-top-color: var(--gold); }
.service__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 54px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 169, 106, 0.55);
}
.service__body h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  transition: color var(--dur) var(--ease-out);
}
.service:hover .service__body h3 { color: var(--gold-bright); }
.service__body p { font-size: 15.5px; color: var(--text-muted); max-width: 62ch; }
.service__tag {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  padding-top: 10px;
}
.services__more {
  margin-top: var(--space-4);
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.services__more span { color: var(--text); }

/* ═══════════ RÉALISATIONS ═══════════ */
.works {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5) var(--space-4);
}
.works__pair { display: contents; }

.work { display: block; cursor: pointer; }
.work__frame {
  position: relative;
  border: 1px solid var(--border-soft);
  background: var(--surface);
  overflow: hidden;
  transition: border-color var(--dur) var(--ease-out);
}
.work__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  background: rgba(12, 10, 9, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(201, 169, 106, 0.45);
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
}
.work:hover .work__frame { border-color: var(--gold); }

.work__meta { display: flex; align-items: center; gap: 16px; padding: var(--space-3) 4px 0; }
.work__meta h3 { font-family: var(--font-serif); font-weight: 400; font-size: 22px; }
.work__meta p {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-left: auto;
}
.work__arrow { color: var(--gold); font-size: 18px; transition: transform var(--dur) var(--ease-out); }
.work:hover .work__arrow { transform: translateX(6px); }

/* — Photos des réalisations — */
.work__frame img {
  width: 100%;
  aspect-ratio: 4 / 3.1;
  object-fit: cover;
  filter: sepia(0.12) saturate(0.88) brightness(0.9);
  transition: transform 700ms var(--ease-out), filter 700ms var(--ease-out);
}
.work:hover .work__frame img {
  transform: scale(1.04);
  filter: sepia(0.05) saturate(1) brightness(1);
}

/* ═══════════ PROCESSUS ═══════════ */
.process {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}
.process__step {
  position: relative;
  padding-top: var(--space-3);
  border-top: 1px solid rgba(25, 20, 16, 0.25);
  transition: border-color var(--dur) var(--ease-out);
}
.process__step:hover { border-top-color: var(--gold-deep); }
.process__num {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 44px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(138, 107, 51, 0.65);
  margin-bottom: var(--space-2);
}
.process__step h3 { font-family: var(--font-serif); font-weight: 450; font-size: 21px; margin-bottom: 10px; }
.process__step p { font-size: 15px; color: var(--ink-muted); }

/* ═══════════ BANNIÈRE ═══════════ */
.banner {
  position: relative;
  min-height: 58vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--space-6) 0;
}
.banner__media { position: absolute; inset: -12% 0; }
.banner__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.1) saturate(0.85) brightness(0.62);
}
.banner__overlay { position: absolute; inset: 0; background: rgba(12, 10, 9, 0.78); }
.banner__quote {
  position: relative;
  z-index: 1;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 340;
  font-size: clamp(1.4rem, 3.2vw, 2.4rem);
  line-height: 1.5;
  text-align: center;
  text-wrap: balance;
  max-width: 36ch;
  margin-inline: auto;
  padding-inline: 24px;
}
.banner__quote cite {
  display: block;
  margin-top: var(--space-3);
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

/* ═══════════ TARIFS ═══════════ */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  align-items: start;
}
.pricing--duo {
  grid-template-columns: repeat(2, 1fr);
  max-width: 880px;
  margin-inline: auto;
  gap: var(--space-4);
}
.pricing__more {
  margin-top: var(--space-5);
  text-align: center;
  font-size: 15px;
  color: var(--text-muted);
  max-width: 60ch;
  margin-inline: auto;
}
.pricing__more a {
  color: var(--gold-bright);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
  transition: color var(--dur) var(--ease-out);
}
.pricing__more a:hover { color: var(--text); }
.price {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  transition: border-color var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
}
.price:hover { transform: translateY(-6px); border-color: var(--border); }
.price--featured { background: var(--surface-2); border-color: var(--gold); }
.price--featured:hover { border-color: var(--gold-bright); }
.price__badge {
  position: absolute;
  top: -13px;
  left: var(--space-4);
  z-index: 1;
  background: var(--gold);
  color: #14100A;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 14px;
}
.price__head {
  display: block;
  width: 100%;
  text-align: left;
  padding: var(--space-4) var(--space-4) 0;
  cursor: default;
}
.price__head h3 { font-family: var(--font-serif); font-weight: 450; font-size: 26px; margin-bottom: 8px; }
.price__desc { font-size: 14px; color: var(--text-muted); margin-bottom: var(--space-3); }
.price__amount {
  font-family: var(--font-serif);
  font-weight: 380;
  font-size: 42px;
  color: var(--gold-bright);
  font-variant-numeric: tabular-nums;
}
.price__chevron { display: none; }
.price__detail { padding: var(--space-3) var(--space-4) var(--space-4); }
.price__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: var(--space-4);
}
.price__list li { position: relative; padding-left: 26px; font-size: 15px; color: var(--text-muted); }
.price__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 14px;
  height: 8px;
  border-left: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(-45deg) scale(0.85);
}

/* ═══════════ LA MAISON ═══════════ */
.about { overflow: hidden; }
.about__monogram {
  position: absolute;
  right: -4%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(300px, 42vw, 640px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 169, 106, 0.10);
  pointer-events: none;
  user-select: none;
}
.about__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-6);
  align-items: center;
}
.about__text .section__title { margin-bottom: var(--space-3); }
.about__text p { color: var(--text-muted); margin-bottom: var(--space-3); max-width: 56ch; }
.about__panel { position: relative; border: 1px solid var(--border); padding: 14px; background: var(--surface); }
.about__panel img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: sepia(0.3) saturate(0.8) brightness(0.85);
}
.about__est {
  margin-top: 14px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ═══════════ CONTACT ═══════════ */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-6);
  align-items: start;
}
.contact__intro .section__title { margin-bottom: var(--space-3); }
.contact__intro > p { color: var(--text-muted); max-width: 46ch; margin-bottom: var(--space-4); }
.contact__details { font-style: normal; display: flex; flex-direction: column; gap: 14px; }
.contact__details a, .contact__details span { font-size: 15px; width: fit-content; }
.contact__details a {
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: border-color var(--dur) var(--ease-out), color var(--dur) var(--ease-out);
}
.contact__details a:hover { color: var(--gold-bright); border-color: var(--gold); }
.contact__details span { color: var(--text-muted); }

.contact__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  background: var(--surface);
  border: 1px solid var(--border-soft);
  padding: var(--space-4);
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.field label span { color: var(--gold); }
.field input, .field select, .field textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 300;
  padding: 13px 16px;
  min-height: 48px;
  transition: border-color var(--dur) var(--ease-out);
  border-radius: 0;
  width: 100%;
}
.field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A96A' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field.has-error input, .field.has-error textarea { border-color: #E5484D; }
.field__error { font-size: 13px; color: #F2949B; }
.field__error:empty { display: none; }

.contact__success {
  font-size: 15px;
  color: var(--gold-bright);
  border: 1px solid var(--gold);
  background: var(--gold-dim);
  padding: 14px 18px;
}

/* ═══════════ FOOTER ═══════════ */
.footer { border-top: 1px solid var(--border-soft); padding: var(--space-4) 0; background: var(--bg-alt); }
.footer__inner { display: flex; align-items: center; gap: var(--space-4); flex-wrap: wrap; }
.footer .nav__logo-frame { stroke-dashoffset: 0 !important; animation: none !important; }
.footer .nav__logo-letter { opacity: 1 !important; animation: none !important; }
.footer__links { display: flex; gap: var(--space-3); margin-left: auto; }
.footer__links a {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--dur) var(--ease-out);
  padding: 8px 0;
}
.footer__links a:hover { color: var(--gold-bright); }
.footer__legal {
  width: 100%;
  font-size: 13px;
  color: var(--text-muted);
  border-top: 1px solid var(--border-soft);
  padding-top: var(--space-3);
}

/* ═══════════ CTA MOBILE PERSISTANT ═══════════ */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(12, 10, 9, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-soft);
  transform: translateY(105%);
  transition: transform 350ms var(--ease-out);
  display: none;
}
.sticky-cta.is-visible { transform: translateY(0); }

/* ═══════════ CURSEUR PERSONNALISÉ ═══════════ */
.cursor {
  position: fixed;
  top: 0; left: 0;
  z-index: 400;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  pointer-events: none;
  display: none;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  transition: width 300ms var(--ease-out), height 300ms var(--ease-out), background-color 300ms var(--ease-out);
}
.cursor span {
  font-size: 0;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  transition: font-size 200ms var(--ease-out);
}
.cursor.is-hover { width: 76px; height: 76px; background: rgba(201, 169, 106, 0.92); }
.cursor.is-hover span { font-size: 12px; }
@media (pointer: fine) {
  .js .cursor { display: flex; }
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1024px) {
  .process { grid-template-columns: repeat(2, 1fr); gap: var(--space-5) var(--space-4); }
  .pricing { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; gap: var(--space-4); }
  .about__inner { grid-template-columns: 1fr; gap: var(--space-5); }
  .about__panel { max-width: 460px; }
  .contact__inner { grid-template-columns: 1fr; gap: var(--space-5); }
  .service { grid-template-columns: 70px 1fr; }
  .service__tag { grid-column: 2; padding-top: 0; }
  .works { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: var(--space-6) 0; }
  .section__head { margin-bottom: var(--space-5); }

  .nav__desktop, .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .hero { padding-bottom: 120px; }
  .hero__scroll { display: none; }
  .hero__eyebrow { font-size: 11px; letter-spacing: 0.16em; }
  .hero__eyebrow .eyebrow-line { width: 24px; margin-right: 10px; }
  .hero__title { font-size: clamp(2.9rem, 13vw, 4rem); max-width: none; }
  .hero__row { flex-direction: column; align-items: flex-start; gap: var(--space-4); }
  .hero__actions { width: 100%; flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .hero__media img { object-position: center; }

  .stats__inner { grid-template-columns: repeat(2, 1fr); gap: var(--space-4) var(--space-3); }

  .service { grid-template-columns: 1fr; gap: var(--space-2); padding: var(--space-3) 0; }
  .service__num { font-size: 40px; }

  /* Réalisations : carrousel horizontal */
  .works { display: flex; flex-direction: row; gap: var(--space-3); overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: var(--space-2); width: auto; margin-inline: 24px; scrollbar-width: none; }
  .works::-webkit-scrollbar { display: none; }
  .works__pair { display: contents; }
  .work { flex: 0 0 84%; scroll-snap-align: center; }
  .work__meta { flex-wrap: wrap; gap: 6px 16px; }
  .work__meta p { margin-left: 0; width: 100%; order: 3; }

  .process { grid-template-columns: 1fr; }
  .banner { min-height: 46vh; }
  .banner__br { display: none; }

  /* Tarifs : accordéon */
  .price__head { cursor: pointer; }
  .price__chevron {
    display: block;
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    width: 12px;
    height: 12px;
    border-right: 1.5px solid var(--gold);
    border-bottom: 1.5px solid var(--gold);
    transform: rotate(45deg);
    transition: transform var(--dur) var(--ease-out);
  }
  .price__head[aria-expanded="true"] .price__chevron { transform: rotate(225deg); }
  .price__detail { overflow: hidden; max-height: 0; padding-block: 0; transition: max-height 450ms var(--ease-out), padding 450ms var(--ease-out); }
  .price.is-open .price__detail { max-height: 520px; padding: var(--space-3) var(--space-4) var(--space-4); }
  .price:hover { transform: none; }

  .about__monogram { font-size: 340px; right: -30%; opacity: 0.7; }
  .contact__form { padding: var(--space-3); }
  .footer__links { margin-left: 0; flex-wrap: wrap; }
  .footer { padding-bottom: calc(var(--space-4) + 76px); }

  .sticky-cta { display: block; }
}

@media (min-width: 769px) {
  .menu { display: none; }
  .price__detail { max-height: none !important; }
}

/* ═══════════ 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;
  }
  .reveal-hero { opacity: 1; transform: none; animation: none; }
  .js #heroImg { animation: none; }
}
