/* Extracted from index.html (inline <style>) */
/* ========================================================================
   DESIGN TOKENS
   ======================================================================== */
:root {
  /* Ash Palette */
  --bg:    #0b0b0b;
  --bg-s:  #151515;
  --bg-s2: #202020;
  --bg-s3: #1a1a1a;

  /* Amber Gold */
  --bronze:      #ffb779;
  --bronze-dim:  rgba(255, 183, 121, 0.14);
  --bronze-glow: rgba(255, 183, 121, 0.28);
  --bronze-line: rgba(255, 183, 121, 0.18);

  /* Cream */
  --cream:       #F3EFE6;
  --cream-dim:   rgba(243, 239, 230, 0.5);
  --cream-faint: rgba(243, 239, 230, 0.07);

  /* Strokes */
  --line: rgba(243, 239, 230, 0.07);

  /* Typography */
  --serif:   'Playfair Display', Georgia, serif;
  --display: 'Syne', 'Cinzel', sans-serif;
  --sans:    'DM Sans', system-ui, sans-serif;

  /* Easings */
  --ease:        cubic-bezier(0.25, 1, 0.5, 1);
  --ease-s:      cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout */
  --pad: clamp(20px, 5vw, 72px);
  --nav-h: 72px;
}

/* ========================================================================
   RESET & BASE
   ======================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: initial; }
body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
  cursor: none;
}
a { color: inherit; text-decoration: none; }
img { display: block; object-fit: cover; }
button { cursor: none; border: none; background: none; font-family: var(--sans); }
*:focus-visible { outline: 2px solid var(--bronze); outline-offset: 4px; }

/* Skip link */
.skip-link {
  position: fixed;
  top: -100%;
  left: 20px;
  z-index: 99999;
  background: var(--bronze);
  color: var(--bg);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 2px;
  transition: top .3s;
}
.skip-link:focus { top: 20px; }

/* ========================================================================
   GRAIN — cinematic noise overlay
   ======================================================================== */
body::before {
  content: '';
  position: fixed;
  inset: -20%;
  z-index: 9999;
  pointer-events: none;
  opacity: .032;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  animation: grain 7s steps(8) infinite;
}
@keyframes grain {
  0%   { transform: translate(0,0); }
  14%  { transform: translate(-1%,-2%); }
  28%  { transform: translate(2%, 1%); }
  42%  { transform: translate(-2%, 3%); }
  57%  { transform: translate(3%,-1%); }
  71%  { transform: translate(-1%, 2%); }
  85%  { transform: translate(2%,-3%); }
  100% { transform: translate(0,0); }
}
@media (prefers-reduced-motion: reduce) { body::before { animation: none; } }

/* ========================================================================
   CUSTOM CURSOR
   ======================================================================== */
#cur-dot, #cur-ring, #cur-label {
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
}
#cur-dot {
  width: 5px; height: 5px;
  background: var(--bronze);
  border-radius: 50%;
  transition: width .25s var(--ease), height .25s var(--ease), opacity .25s;
}
#cur-ring {
  width: 32px; height: 32px;
  border: 1px solid rgba(255,183,121,.4);
  border-radius: 50%;
  transition: width .5s var(--ease-s), height .5s var(--ease-s),
              border-color .3s, background .3s, transform .5s var(--ease-s);
}
#cur-label {
  font-family: var(--display);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--bronze);
  opacity: 0;
  transition: opacity .3s;
}
body.c-hover #cur-ring  { width: 52px; height: 52px; background: var(--bronze-dim); border-color: var(--bronze); }
body.c-voir  #cur-ring  { width: 76px; height: 76px; background: rgba(255,183,121,.09); border-color: var(--bronze); }
body.c-voir  #cur-label { opacity: 1; }
body.c-voir  #cur-dot   { opacity: 0; }
/* Velocity stretch */
body.c-vx    #cur-ring  { transform: translate(-50%, -50%) scaleX(1.5) scaleY(0.75); }
body.c-vy    #cur-ring  { transform: translate(-50%, -50%) scaleX(0.75) scaleY(1.5); }

@media (pointer: coarse) {
  #cur-dot, #cur-ring, #cur-label { display: none !important; }
  body, button, a, .c-card { cursor: auto !important; }
}

/* ========================================================================
   LOGO FILTER — Noir → Amber Gold
   ======================================================================== */
.preloader-logo, .nav-logo-img, .mobile-menu-logo img, .f-logo-img {
  filter: brightness(0) saturate(100%) invert(82%) sepia(21%) saturate(1140%)
          hue-rotate(325deg) brightness(104%) contrast(102%)
          drop-shadow(0 2px 4px rgba(11,11,11,.9))
          drop-shadow(0 0 14px rgba(255,183,121,.32));
  transition: filter .35s, transform .35s;
}
.nav-logo-img:hover, .f-logo-img:hover {
  filter: brightness(0) saturate(100%) invert(82%) sepia(21%) saturate(1140%)
          hue-rotate(325deg) brightness(118%) contrast(110%)
          drop-shadow(0 4px 8px rgba(11,11,11,.9))
          drop-shadow(0 0 22px rgba(255,183,121,.55));
  transform: scale(1.05);
}
.hero-logo-img {
  width: clamp(68px, 10vw, 140px);
  height: auto;
  filter: brightness(0) saturate(100%) invert(82%) sepia(21%) saturate(1140%)
          hue-rotate(325deg) brightness(104%) contrast(102%)
          drop-shadow(0 4px 14px rgba(11,11,11,.9))
          drop-shadow(0 0 28px rgba(255,183,121,.42));
}
.mobile-menu-logo img { width: 48px; height: auto; }
.f-logo-img            { height: 26px; width: auto; }

/* ========================================================================
   PRELOADER
   ======================================================================== */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  transition: transform 1.1s var(--ease-s), opacity .4s;
}
#preloader.out { transform: translateY(-100%); }
.preloader-logo {
  width: clamp(56px, 10vw, 88px);
  animation: plogoBreath 2.2s ease-in-out infinite;
}
@keyframes plogoBreath { 0%,100% { opacity:.3; transform: scale(.97); } 50% { opacity:1; transform:scale(1); } }
#preloader .pline {
  width: 1px;
  height: 0;
  background: linear-gradient(to bottom, var(--bronze), transparent);
  animation: gline 1.5s var(--ease-s) .2s forwards;
}
@keyframes gline { to { height: 60px; } }
.preloader-word {
  font-family: var(--display);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: rgba(243,239,230,.25);
  opacity: 0;
  animation: fadeIn .8s var(--ease-s) .6s forwards;
}
@keyframes fadeIn { to { opacity: 1; } }

/* ========================================================================
   TORCH
   ======================================================================== */
#torch {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(700px circle at 50% 50%, rgba(255,183,121,.038), transparent 70%);
  transition: background .08s linear;
}

/* ========================================================================
   SCROLL PROGRESS
   ======================================================================== */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 1.5px;
  background: linear-gradient(to right, var(--bronze) 0%, rgba(255,183,121,.5) 100%);
  z-index: 2000;
  width: 0%;
  transition: width .12s linear;
  transform-origin: left;
}

/* ========================================================================
   NAVIGATION
   ======================================================================== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--pad);
  background: rgba(11,11,11,.65);
  backdrop-filter: blur(28px) saturate(1.4);
  -webkit-backdrop-filter: blur(28px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: padding .4s var(--ease), border-color .4s, background .4s;
}
nav.scrolled {
  padding-top: 14px;
  padding-bottom: 14px;
  background: rgba(11,11,11,.82);
  border-bottom-color: var(--line);
}
.nav-logo { display: flex; align-items: center; }
.nav-logo-img { height: 28px; width: auto; }

.nav-links { display: flex; gap: 38px; list-style: none; }
.nav-links a {
  font-family: var(--display);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cream-dim);
  position: relative;
  transition: color .3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--bronze);
  transition: width .4s var(--ease);
}
.nav-links a:hover, .nav-links a:focus, .nav-links a.active { color: var(--cream); }
.nav-links a:hover::after, .nav-links a:focus::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  font-family: var(--display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: 1px solid var(--bronze-line);
  color: var(--bronze);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  transition: color .45s var(--ease), border-color .45s;
}
.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bronze);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease);
}
.nav-cta:hover::before, .nav-cta:focus::before { transform: scaleX(1); }
.nav-cta:hover, .nav-cta:focus { color: var(--bg); border-color: var(--bronze); }
.nav-cta > span { position: relative; z-index: 1; }

.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-burger span { display: block; width: 20px; height: 1px; background: var(--bronze); transition: transform .4s var(--ease), opacity .3s; }
.nav-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ========================================================================
   MOBILE MENU
   ======================================================================== */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transform: translateX(100%);
  transition: transform .7s var(--ease-s);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-logo { margin-bottom: 16px; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: clamp(22px, 6vw, 42px);
  color: var(--cream-dim);
  letter-spacing: .06em;
  transition: color .3s, transform .3s;
  display: inline-block;
}
.mobile-menu a:hover { color: var(--bronze); transform: translateX(6px); }

/* ========================================================================
   HERO
   ======================================================================== */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--bg);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
  filter: brightness(0.52) saturate(0.85);
  transition: filter 2s;
}
.hero-fade-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 55%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(11,11,11,.06) 18%,
    rgba(11,11,11,.25) 38%,
    rgba(11,11,11,.62) 58%,
    rgba(11,11,11,.88) 76%,
    rgba(11,11,11,.97) 90%,
    #0b0b0b 100%);
}
.hero-fade-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 28%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(11,11,11,.55) 0%, transparent 100%);
}
.hero-whiplash {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 52%;
  opacity: 0;
  transition: opacity 2.8s var(--ease-s);
  pointer-events: none;
  z-index: 2;
}
.hero-whiplash.visible { opacity: .5; }

/* Hero content — top-left, pas centré verticalement */
.hero-content {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 3;
  padding: clamp(80px, 12vh, 120px) var(--pad) 0;
}

.hero-eyebrow {
  font-family: var(--display);
  font-size: clamp(9px, 1vw, 11px);
  letter-spacing: .44em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-top: 0;
  margin-bottom: 20px;
  opacity: 0;
  transition: opacity 1s .15s var(--ease-s);
  text-shadow: 0 1px 12px rgba(0,0,0,.8);
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: linear-gradient(to right, var(--bronze), rgba(255,183,121,.3));
  flex-shrink: 0;
  opacity: .7;
}
.hero-eyebrow.visible { opacity: 1; }

.hero-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(32px, 5.5vw, 76px);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.1;
  margin-top: 0;
  margin-bottom: 36px;
  opacity: 0;
  transition: opacity 1.1s .4s var(--ease-s);
  text-shadow: 0 4px 40px rgba(0,0,0,.85), 0 0 16px rgba(0,0,0,.5);
  max-width: 780px;
}
.hero-tagline.visible { opacity: 1; }

/* Hero CTAs */
.hero-ctas {
  display: flex;
  gap: 12px;
  margin-top: 0;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 1s .75s var(--ease-s), transform 1s .75s var(--ease-s);
}
.hero-ctas.visible { opacity: 1; transform: translateY(0); }

.btn-glass {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  font-family: var(--display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cream);
  border-radius: 2px;
  overflow: hidden;
  cursor: none;
  text-decoration: none;
  background: rgba(243,239,230,.07);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  border: 1px solid rgba(243,239,230,.16);
  box-shadow: 0 2px 24px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.12);
  transition: background .45s var(--ease), border-color .45s, box-shadow .45s, color .45s, transform .3s var(--ease);
}
.btn-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.1) 0%, transparent 60%);
  pointer-events: none;
}
.btn-glass:hover {
  background: rgba(255,183,121,.16);
  border-color: rgba(255,183,121,.5);
  color: var(--bronze);
  box-shadow: 0 4px 36px rgba(255,183,121,.16), inset 0 1px 0 rgba(255,183,121,.18);
  transform: translateY(-2px);
}
.btn-glass-primary {
  background: rgba(255,183,121,.16);
  border-color: rgba(255,183,121,.4);
  color: var(--bronze);
  box-shadow: 0 2px 28px rgba(255,183,121,.12), inset 0 1px 0 rgba(255,183,121,.2);
}
.btn-glass-primary:hover {
  background: rgba(255,183,121,.28);
  border-color: rgba(255,183,121,.7);
  box-shadow: 0 6px 44px rgba(255,183,121,.22);
}
.btn-glass .arr { transition: transform .4s var(--ease); }
.btn-glass:hover .arr { transform: translateX(4px); }

@media (pointer: coarse), (max-width: 480px) {
  .btn-glass { backdrop-filter: none; -webkit-backdrop-filter: none; padding: 12px 20px; }
}

/* ── HERO BOTTOM STRIP — marquee + scroll réunis, zéro chevauchement ─ */
.hero-bottom-strip {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  height: 72px;
  display: flex;
  align-items: stretch;
  border-top: 1px solid rgba(243,239,230,.06);
  background: linear-gradient(to top, rgba(11,11,11,.55) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 1s 1.5s var(--ease-s);
  pointer-events: none;
}
.hero-bottom-strip.visible { opacity: 1; }

/* Scroll indicator — côté gauche */
.hero-scroll {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 var(--pad);
  flex-shrink: 0;
  border-right: 1px solid rgba(243,239,230,.06);
  pointer-events: none;
}
.hero-scroll-text {
  font-family: var(--display);
  font-size: 8px;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--cream-dim);
  white-space: nowrap;
}
.hero-scroll-line {
  width: 32px; height: 1px;
  background: linear-gradient(to right, var(--bronze), transparent);
  animation: spulse 2.4s ease-in-out infinite;
}
@keyframes spulse { 0%,100% { opacity:.3; transform: scaleX(1); } 50% { opacity:1; transform: scaleX(1.2); } }

/* Marquee — prend tout l'espace restant */
.hero-marquee {
  flex: 1;
  overflow: hidden;
  -webkit-mask: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  pointer-events: none;
  display: flex;
  align-items: center;
}
.hero-marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marqueeScroll 32s linear infinite;
}
.hero-marquee-track span {
  font-family: var(--display);
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(243,239,230,.3);
  white-space: nowrap;
  padding: 0 18px;
}
.hero-marquee-track .m-dot {
  color: var(--bronze);
  opacity: .5;
  padding: 0 2px;
  letter-spacing: 0;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-marquee-track { animation: none; }
}
@media (max-width: 480px) {
  .hero-scroll { display: none; }
}

/* Hero vertical side text */
.hero-side-text {
  position: absolute;
  right: clamp(16px, 3vw, 48px);
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center center;
  font-family: var(--display);
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: rgba(243,239,230,.22);
  white-space: nowrap;
  z-index: 3;
  pointer-events: none;
}
@media (max-width: 768px) { .hero-side-text { display: none; } }

/* Trust badge */
.trust-badge {
  position: absolute;
  bottom: clamp(80px, 12vh, 120px);
  right: clamp(24px, 5vw, 72px);
  z-index: 3;
  opacity: 0;
  transition: opacity 1s 1.4s var(--ease-s);
}
.trust-badge.visible { opacity: 1; }
.trust-badge-ring {
  width: 84px; height: 84px;
  border: 1px solid rgba(255,183,121,.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: badgeSpin 26s linear infinite;
}
@keyframes badgeSpin { to { transform: rotate(360deg); } }
.trust-badge-center {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: badgeSpin 26s linear infinite reverse;
}
.trust-badge-num { font-family: var(--serif); font-size: 18px; color: var(--bronze); line-height: 1; }
.trust-badge-sub { font-family: var(--display); font-size: 6.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--cream-dim); margin-top: 2px; }
@media (max-width: 768px) { .trust-badge { display: none; } }

/* ========================================================================
   COMMON SECTION UTILITIES
   ======================================================================== */
section { position: relative; z-index: 2; }

.section-label {
  font-family: var(--display);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: linear-gradient(to right, var(--bronze), rgba(255,183,121,.3));
  flex-shrink: 0;
}

/* Fade-up — base */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .9s var(--ease-s), transform .9s var(--ease-s);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }
.d5 { transition-delay: .5s; }
.d6 { transition-delay: .6s; }

/* Split text reveal */
.split-word { display: inline-block; overflow: hidden; vertical-align: top; }
.split-word-inner { display: inline-block; transform: translateY(110%); transition: transform .8s var(--ease-s); }
.split-word.revealed .split-word-inner { transform: translateY(0); }

/* ========================================================================
   MANIFESTE
   ======================================================================== */
#manifeste { padding: clamp(80px, 11vw, 130px) var(--pad); background: var(--bg); }
.manifeste-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}
.manifeste-left h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 4.8vw, 64px);
  font-weight: 400;
  line-height: 1.12;
  color: var(--cream);
  margin-bottom: 36px;
}
.manifeste-left h2 em { font-style: italic; color: var(--bronze); }
.manifeste-left p { font-size: 15.5px; color: var(--cream-dim); max-width: 460px; margin-bottom: 22px; line-height: 1.9; }

.manifeste-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 260px 145px;
  gap: 8px;
}
.m-img {
  border-radius: 2px;
  overflow: hidden;
  background: var(--bg-s);
  position: relative;
}
.m-img:first-child { grid-column: 1 / 3; }
.m-img img {
  width: 100%; height: 100%;
  transition: transform 1.6s var(--ease-s), filter .65s;
  filter: brightness(.65) saturate(.5);
}
.m-img:hover img { transform: scale(1.07); filter: brightness(.85) saturate(.78); }
.m-ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 9px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(243,239,230,.15);
}

/* ========================================================================
   CRÉATIONS
   ======================================================================== */
#creations { padding: clamp(80px, 11vw, 130px) var(--pad); background: var(--bg-s); }
.creations-inner { max-width: 1200px; margin: 0 auto; }

.creations-header {
  margin-bottom: 56px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.creations-header h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 4.8vw, 62px);
  font-weight: 400;
  line-height: 1.08;
  color: var(--cream);
  max-width: 580px;
}
.creations-header h2 em { font-style: italic; color: var(--bronze); }
.creations-header p { font-size: 14px; color: var(--cream-dim); max-width: 300px; line-height: 1.8; }

.creations-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 275px;
  gap: 8px;
}
/* Card reveal — scale+opacity, compatible avec overflow:hidden et 3D tilt */
.c-card.fade-up {
  opacity: 0;
  transform: scale(0.96) translateY(20px);
  transition: opacity .9s var(--ease-s), transform .9s var(--ease-s), box-shadow .6s;
}
.c-card.fade-up.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.c-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background: var(--bg-s2);
  cursor: none;
  will-change: transform;
}
.c-card:nth-child(1) { grid-column: 1 / 6;  grid-row: 1 / 3; }
.c-card:nth-child(2) { grid-column: 6 / 9;  grid-row: 1 / 2; }
.c-card:nth-child(3) { grid-column: 9 / 13; grid-row: 1 / 2; }
.c-card:nth-child(4) { grid-column: 6 / 10; grid-row: 2 / 3; }
.c-card:nth-child(5) { grid-column: 10 / 13;grid-row: 2 / 3; }
.c-card:nth-child(6) { grid-column: 1 / 13; grid-row: 3 / 4; max-height: 210px; }

.c-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  transition: transform 1.5s var(--ease-s), filter .65s;
  filter: brightness(.5) saturate(.45);
}
.c-card:hover img, .c-card:focus-visible img {
  transform: scale(1.08);
  filter: brightness(.75) saturate(.75);
}
.c-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,11,11,.9) 0%, rgba(11,11,11,.2) 55%, transparent 100%);
  opacity: .6;
  transition: opacity .55s var(--ease);
}
.c-card:hover .c-overlay, .c-card:focus-visible .c-overlay { opacity: 1; }
.c-ph { position: absolute; inset: 0; background: var(--bg-s2); }

.c-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 26px;
  transform: translateY(10px);
  transition: transform .6s var(--ease);
}
.c-card:hover .c-info, .c-card:focus-visible .c-info { transform: translateY(0); }

.c-cat {
  font-family: var(--display);
  font-size: 9px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 8px;
  opacity: 0;
  transition: opacity .45s .1s var(--ease);
}
.c-card:hover .c-cat, .c-card:focus-visible .c-cat { opacity: 1; }

.c-title {
  font-family: var(--serif);
  font-size: clamp(14px, 1.7vw, 20px);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.3;
}
.c-sub {
  font-size: 12.5px;
  color: var(--cream-dim);
  margin-top: 8px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .45s .15s var(--ease), transform .45s .15s var(--ease);
}
.c-card:hover .c-sub, .c-card:focus-visible .c-sub { opacity: 1; transform: translateY(0); }

/* ========================================================================
   PROCESSUS
   ======================================================================== */
#processus { padding: clamp(80px, 11vw, 130px) var(--pad); background: var(--bg); }
.processus-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}
.processus-left h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 4.8vw, 62px);
  font-weight: 400;
  line-height: 1.12;
  color: var(--cream);
  margin-bottom: 20px;
}
.processus-left h2 em { font-style: italic; color: var(--bronze); }
.processus-left > p { font-size: 15px; color: var(--cream-dim); line-height: 1.9; margin-bottom: 44px; }

.btn-bronze {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--bronze);
  border: 1px solid rgba(255,183,121,.3);
  padding: 14px 28px;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  transition: color .45s var(--ease), border-color .45s;
  will-change: transform;
}
.btn-bronze::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bronze);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease);
}
.btn-bronze:hover::before, .btn-bronze:focus::before { transform: scaleX(1); }
.btn-bronze:hover, .btn-bronze:focus { color: var(--bg); border-color: var(--bronze); }
.btn-bronze span, .btn-bronze .arr { position: relative; z-index: 1; }
.btn-bronze .arr { transition: transform .4s var(--ease); }
.btn-bronze:hover .arr, .btn-bronze:focus .arr { transform: translateX(4px); }

/* Timeline */
.processus-steps { position: relative; padding-left: 50px; }
.p-line-bg { position: absolute; left: 12px; top: 14px; width: 1px; background: var(--line); }
.p-line-fill { position: absolute; left: 12px; top: 14px; width: 1px; height: 0; background: linear-gradient(to bottom, var(--bronze), rgba(255,183,121,.3)); transition: height 1.2s var(--ease-s); z-index: 1; }

.step { position: relative; padding-bottom: 60px; opacity: .25; transition: opacity .6s var(--ease); }
.step:last-child { padding-bottom: 0; }
.step.active { opacity: 1; }
.step-dot {
  position: absolute;
  left: -38px; top: 6px;
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(255,183,121,.2);
  background: var(--bg);
  transition: border-color .4s, background .4s, box-shadow .4s, transform .4s var(--ease-bounce);
}
.step.active .step-dot {
  border-color: var(--bronze);
  background: var(--bronze-dim);
  box-shadow: 0 0 12px var(--bronze-glow), 0 0 4px var(--bronze-glow);
  transform: scale(1.15);
}
.step-num {
  font-family: var(--display);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .22em;
  color: var(--bronze);
  margin-bottom: 10px;
  display: block;
}
.step h3 {
  font-family: var(--serif);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 12px;
  line-height: 1.3;
}
.step p { font-size: 14px; color: var(--cream-dim); line-height: 1.85; max-width: 380px; }

/* ========================================================================
   ATELIER
   ======================================================================== */
#atelier { padding: clamp(80px, 11vw, 130px) var(--pad); background: var(--bg-s); }
.atelier-inner { max-width: 1200px; margin: 0 auto; }
.atelier-header { margin-bottom: 64px; }
.atelier-header h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 4.8vw, 62px);
  font-weight: 400;
  line-height: 1.08;
  color: var(--cream);
  max-width: 700px;
}
.atelier-header h2 em { font-style: italic; color: var(--bronze); }

/* ── GALLERY IMMERSIVE ──────────────────────────────────────────────── */
.gallery-wrap {
  position: relative;
  width: 100%;
  height: clamp(480px, 72vh, 820px);
  overflow: hidden;
  border-radius: 2px;
  background: var(--bg);
  cursor: none;
}

/* Slides */
.g-slide {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.g-slide.active   { pointer-events: auto; }

/* Image layer with clip-path reveal */
.g-slide-img {
  position: absolute;
  inset: 0;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0s;
}
.g-slide.active .g-slide-img {
  clip-path: inset(0 0% 0 0);
  transition: clip-path 1.05s cubic-bezier(0.77, 0, 0.175, 1);
}
.g-slide.leave .g-slide-img {
  clip-path: inset(0 0% 0 100%);
  transition: clip-path 1.05s cubic-bezier(0.77, 0, 0.175, 1);
}

.g-slide-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.58) saturate(.72);
  transform: scale(1.06);
  transition: transform 6s var(--ease-s), filter 1.2s;
}
.g-slide.active .g-slide-img img {
  transform: scale(1);
  filter: brightness(.68) saturate(.88);
}

/* Gradient vignette */
.g-slide-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(11,11,11,.82) 0%, rgba(11,11,11,.22) 40%, transparent 70%),
    linear-gradient(to right, rgba(11,11,11,.38) 0%, transparent 50%);
  pointer-events: none;
}

/* Overlay content */
.g-slide-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: clamp(28px, 4vw, 56px) clamp(28px, 5vw, 64px);
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .55s .6s var(--ease-s), transform .55s .6s var(--ease-s);
}
.g-slide.active .g-slide-overlay {
  opacity: 1;
  transform: translateY(0);
}

.g-slide-cat {
  font-family: var(--display);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.g-slide-cat::before {
  content: '';
  display: inline-block;
  width: 22px; height: 1px;
  background: var(--bronze);
  opacity: .7;
  flex-shrink: 0;
}

.g-slide-title {
  font-family: var(--serif);
  font-size: clamp(22px, 3.5vw, 48px);
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  line-height: 1.1;
  margin: 0;
  text-shadow: 0 2px 24px rgba(0,0,0,.7);
}

.g-slide-right {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}

/* Counter */
.g-counter {
  font-family: var(--display);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .2em;
  color: var(--cream-dim);
  white-space: nowrap;
}
.g-counter strong {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  color: var(--cream);
  line-height: 1;
  display: block;
}
.g-counter span { display: block; margin-top: 2px; }

/* Navigation arrows */
.g-navs {
  display: flex;
  gap: 10px;
}
.g-nav {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(243,239,230,.18);
  background: rgba(11,11,11,.42);
  backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  cursor: none;
  transition: border-color .35s, background .35s, transform .3s var(--ease-bounce);
  flex-shrink: 0;
}
.g-nav:hover {
  border-color: var(--bronze);
  background: var(--bronze-dim);
  transform: scale(1.12);
}
.g-nav svg { width: 14px; height: 14px; stroke: var(--cream); stroke-width: 1.5; fill: none; }

/* Progress bar */
.g-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 1.5px;
  background: var(--bronze);
  z-index: 3;
  transform-origin: left;
  width: 0%;
  transition: width 0s;
}
.g-progress.running {
  transition: width 5s linear;
  width: 100%;
}

/* Thumb strip */
.g-thumbs {
  display: flex;
  gap: 6px;
  position: absolute;
  top: clamp(20px, 3vw, 36px);
  right: clamp(20px, 4vw, 48px);
  z-index: 3;
}
.g-thumb {
  width: 36px; height: 26px;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(243,239,230,.0);
  opacity: .3;
  cursor: none;
  transition: opacity .35s, border-color .35s, transform .3s var(--ease-bounce);
  flex-shrink: 0;
}
.g-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(.4);
  transition: filter .35s;
}
.g-thumb.active-t, .g-thumb:hover {
  opacity: 1;
  border-color: var(--bronze-line);
}
.g-thumb.active-t img, .g-thumb:hover img { filter: saturate(.85); }
.g-thumb:hover { transform: scale(1.08); }

@media (max-width: 768px) {
  .gallery-wrap { height: clamp(320px, 65vw, 520px); }
  .g-thumbs { display: none; }
  .g-slide-title { font-size: clamp(18px, 5.5vw, 28px); }
  .g-counter strong { font-size: 28px; }
}
@media (max-width: 480px) {
  .g-slide-overlay { flex-direction: column; align-items: flex-start; }
  .g-slide-right { flex-direction: row; align-items: center; }
}

.atelier-quote {
  margin-top: 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}

/* Dramatic blockquote */
.atelier-quote blockquote {
  position: relative;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(16px, 2.4vw, 26px);
  color: var(--cream);
  line-height: 1.65;
  padding: 48px 0 0 44px;
}
.atelier-quote blockquote::before {
  content: '\201C';
  position: absolute;
  top: -16px;
  left: -6px;
  font-family: var(--serif);
  font-size: clamp(80px, 12vw, 140px);
  line-height: 1;
  color: var(--bronze);
  opacity: .18;
  font-style: normal;
  pointer-events: none;
}
.atelier-quote blockquote::after {
  content: '';
  position: absolute;
  left: 0; top: 50px; bottom: 28px;
  width: 1px;
  background: linear-gradient(to bottom, var(--bronze), transparent);
}
.atelier-quote blockquote cite {
  display: block;
  margin-top: 24px;
  font-family: var(--display);
  font-style: normal;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--bronze);
}

.atelier-quote-right p { font-size: 15px; color: var(--cream-dim); line-height: 1.9; margin-bottom: 22px; }
.atelier-stats { display: flex; gap: 52px; margin-top: 44px; flex-wrap: wrap; }
.stat-num {
  font-family: var(--serif);
  font-size: clamp(32px, 5.5vw, 60px);
  color: var(--bronze);
  line-height: 1;
}
.stat-label {
  font-family: var(--display);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-top: 10px;
}

/* ========================================================================
   CONTACT
   ======================================================================== */
#contact { padding: clamp(80px, 11vw, 130px) var(--pad); background: var(--bg); }
.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}
.contact-left h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 4.8vw, 62px);
  font-weight: 400;
  line-height: 1.12;
  color: var(--cream);
  margin-bottom: 20px;
}
.contact-left h2 em { font-style: italic; color: var(--bronze); }
.contact-left > p { font-size: 15.5px; color: var(--cream-dim); max-width: 420px; line-height: 1.9; margin-bottom: 52px; }

.contact-info { display: flex; flex-direction: column; gap: 30px; }
.ci-item { display: flex; flex-direction: column; gap: 6px; }
.ci-label {
  font-family: var(--display);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--bronze);
}
.ci-value { font-size: 14.5px; color: var(--cream-dim); line-height: 1.65; }
.ci-value a { transition: color .3s; }
.ci-value a:hover, .ci-value a:focus { color: var(--cream); }

/* Form */
.form-field { position: relative; margin-bottom: 36px; }
.form-field input,
.form-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(243,239,230,.12);
  padding: 14px 0 12px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--cream);
  outline: none;
  transition: border-color .4s var(--ease);
  border-radius: 0;
  appearance: none;
}
.form-field textarea { resize: none; height: 120px; }
.form-field input:focus, .form-field textarea:focus { border-bottom-color: rgba(255,183,121,.3); }
.form-field label {
  position: absolute;
  top: 14px; left: 0;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: .06em;
  color: var(--cream-dim);
  transition: top .35s var(--ease), font-size .35s, color .35s, letter-spacing .35s, font-family .35s;
  pointer-events: none;
}
.form-field input:focus ~ label,
.form-field input:not(:placeholder-shown) ~ label,
.form-field textarea:focus ~ label,
.form-field textarea:not(:placeholder-shown) ~ label {
  top: -13px;
  font-size: 9.5px;
  letter-spacing: .26em;
  color: var(--bronze);
  text-transform: uppercase;
  font-family: var(--display);
  font-weight: 500;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: transparent; }
.form-line-bar {
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--bronze);
  transition: width .4s var(--ease);
}
.form-field input:focus ~ .form-line-bar,
.form-field textarea:focus ~ .form-line-bar { width: 100%; }

.form-submit {
  width: 100%;
  padding: 18px 32px;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--bronze);
  border: 1px solid var(--bronze);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  transition: color .45s var(--ease), background .45s;
  margin-top: 8px;
}
.form-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bg);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease);
}
.form-submit:hover::before, .form-submit:focus::before { transform: scaleX(1); }
.form-submit:hover, .form-submit:focus { color: var(--bronze); }
.form-submit .sb { position: relative; z-index: 1; }
.form-success {
  display: none;
  padding: 28px;
  border: 1px solid rgba(255,183,121,.22);
  border-radius: 2px;
  text-align: center;
  background: var(--bronze-dim);
}
.form-success p { font-family: var(--serif); font-style: italic; font-size: 17px; color: var(--bronze); line-height: 1.7; }

/* ========================================================================
   LOCALISATION
   ======================================================================== */
#localisation { padding: 0 var(--pad) clamp(80px, 11vw, 130px); background: var(--bg); }
.loc-inner { max-width: 1200px; margin: 0 auto; }
.loc-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px 0;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 24px;
  border-top: 1px solid var(--line);
}
.loc-addr { font-size: 14px; color: var(--cream-dim); }
.loc-addr strong { color: var(--cream); font-weight: 400; }
.loc-hours { display: flex; gap: 40px; flex-wrap: wrap; }
.lh-item { font-size: 13px; color: var(--cream-dim); }
.lh-item strong {
  display: block;
  font-family: var(--display);
  font-size: 9.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 4px;
  font-weight: 500;
}
.loc-map {
  width: 100%;
  height: 340px;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--line);
  filter: grayscale(1) brightness(.55) contrast(1.15) sepia(.1);
  display: block;
  transition: filter .6s;
}
.loc-map:hover { filter: grayscale(.6) brightness(.65) contrast(1.1); }

/* ========================================================================
   FOOTER
   ======================================================================== */
footer { padding: 72px var(--pad) 44px; background: var(--bg-s); }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-whiplash {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--bronze), transparent);
  margin-bottom: 48px;
  opacity: .3;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
}
.footer-brand .f-logo { display: flex; align-items: center; margin-bottom: 18px; }
.footer-brand p { font-size: 13px; color: var(--cream-dim); line-height: 1.85; max-width: 260px; margin-bottom: 20px; }
.footer-tagline { font-family: var(--serif); font-style: italic; font-size: 13.5px; color: var(--bronze); }
.footer-col h4 {
  font-family: var(--display);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 22px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.footer-col ul a { font-size: 13px; color: var(--cream-dim); transition: color .3s, padding-left .3s; }
.footer-col ul a:hover, .footer-col ul a:focus { color: var(--cream); padding-left: 6px; }
.footer-socials { display: flex; gap: 12px; margin-top: 24px; }
.footer-socials a {
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  color: var(--cream-dim);
  transition: border-color .3s, color .3s, background .3s;
}
.footer-socials a:hover, .footer-socials a:focus {
  border-color: var(--bronze);
  color: var(--bronze);
  background: var(--bronze-dim);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 11px; color: rgba(243,239,230,.28); letter-spacing: .06em; }
.footer-bottom a { font-size: 11px; color: rgba(243,239,230,.28); transition: color .3s; }
.footer-bottom a:hover, .footer-bottom a:focus { color: var(--bronze); }

/* ========================================================================
   MODAL — Side panel
   ======================================================================== */
#modal {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: flex;
  pointer-events: none;
}
#modal.open { pointer-events: all; }

.modal-bg {
  position: absolute;
  inset: 0;
  background: rgba(11,11,11,.88);
  opacity: 0;
  transition: opacity .55s var(--ease);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
#modal.open .modal-bg { opacity: 1; }

.modal-panel {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: min(620px, 100vw);
  background: var(--bg-s);
  border-left: 1px solid var(--line);
  transform: translateX(105%);
  opacity: 1;
  transition: transform .75s var(--ease-s);
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}
#modal.open .modal-panel { transform: translateX(0); }

.modal-hero { width: 100%; height: 360px; flex-shrink: 0; background: var(--bg-s2); overflow: hidden; position: relative; }
.modal-hero img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.72) saturate(.6); }
.modal-hero-ph {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-size: 9px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(243,239,230,.15);
}
.modal-body { padding: clamp(28px, 4.5vw, 52px); }
.modal-meta { display: flex; gap: 28px; margin-bottom: 28px; flex-wrap: wrap; }
.meta-label {
  font-family: var(--display);
  font-size: 9.5px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 5px;
  font-weight: 500;
}
.meta-value { font-size: 13.5px; color: var(--cream-dim); }
.modal-title {
  font-family: var(--serif);
  font-size: clamp(24px, 4vw, 44px);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 20px;
  line-height: 1.2;
}
.modal-desc { font-size: 14.5px; color: var(--cream-dim); line-height: 1.9; }
.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  color: var(--cream-dim);
  font-size: 16px;
  transition: border-color .3s, color .3s, background .3s;
  background: rgba(11,11,11,.75);
  z-index: 10;
}
.modal-close:hover, .modal-close:focus {
  border-color: var(--bronze);
  color: var(--bronze);
  background: var(--bronze-dim);
}

/* Mobile: bottom sheet */
@media (max-width: 768px) {
  .modal-panel {
    right: 0; left: 0; top: auto; bottom: 0;
    width: 100%;
    height: 92vh;
    border-left: none;
    border-top: 1px solid var(--line);
    border-radius: 10px 10px 0 0;
    transform: translateY(105%);
    transition: transform .6s var(--ease-s);
  }
  #modal.open .modal-panel { transform: translateY(0); }
  .modal-hero { height: 220px; }
}

/* ========================================================================
   RESPONSIVE
   ======================================================================== */
@media (max-width: 1024px) {
  .nav-links { gap: 26px; }
  .manifeste-inner,
  .processus-inner,
  .contact-inner { grid-template-columns: 1fr; gap: 52px; }
  .atelier-quote { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .creations-header p { text-align: left; }
  .creations-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 210px;
  }
  .c-card:nth-child(1) { grid-column: 1 / 3; grid-row: 1 / 2; }
  .c-card:nth-child(2) { grid-column: 1 / 2; grid-row: 2 / 3; }
  .c-card:nth-child(3) { grid-column: 2 / 3; grid-row: 2 / 3; }
  .c-card:nth-child(4) { grid-column: 1 / 2; grid-row: 3 / 4; }
  .c-card:nth-child(5) { grid-column: 2 / 3; grid-row: 3 / 4; }
  .c-card:nth-child(6) { grid-column: 1 / 3; grid-row: 4 / 5; max-height: 190px; }
  .manifeste-grid { grid-template-rows: 190px 120px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .loc-hours { gap: 20px; }
}
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .atelier-stats { gap: 32px; }
}

/* ========================================================================
   CARD HOVER SHADOW (3D tilt handled in JS)
   ======================================================================== */
.c-card:hover, .c-card:focus-visible {
  box-shadow: 0 24px 60px rgba(0,0,0,.55);
}

/* ========================================================================
   SECTION COUNTER NUMBERS
   ======================================================================== */
.section-count {
  position: absolute;
  top: clamp(60px, 8vw, 90px);
  right: var(--pad);
  font-family: var(--display);
  font-size: clamp(80px, 14vw, 160px);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(243,239,230,.04);
  /* text-stroke not standard — -webkit only */
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  letter-spacing: -.03em;
}

/* ========================================================================
   IMAGE BLUR-UP LOAD
   ======================================================================== */
.m-img img, .a-img img, .c-card img, .modal-hero img {
  transition: transform 1.5s var(--ease-s), filter .65s, opacity .4s;
}
img.lazy-blur { filter: blur(12px) brightness(.5) saturate(.4); opacity: .6; }
img.lazy-blur.loaded { filter: brightness(.65) saturate(.5); opacity: 1; }

/* ========================================================================
   REDUCED MOTION
   ======================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
