/* ============================================================
   NORRI EVENTS — L'art de célébrer
   Charte : Bleu nuit #0D1B2A · Doré #D4AF37 · Crème #FAF6F2
   Beige #EDE6DA · Taupe #C8B7A6
   Titres : Cinzel · Textes : Montserrat · Accents : Cormorant
   ============================================================ */

:root {
  --navy: #0D1B2A;
  --navy-2: #132539;
  --navy-3: #1a3049;
  --gold: #D4AF37;
  --gold-soft: #e4c65e;
  --cream: #FAF6F2;
  --beige: #EDE6DA;
  --taupe: #C8B7A6;
  --ink: #2a3342;
  --muted: #6b7280;
  --line: rgba(13, 27, 42, .12);
  --line-gold: rgba(212, 175, 55, .35);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --font-title: 'Cinzel', serif;
  --font-body: 'Montserrat', sans-serif;
  --font-accent: 'Cormorant Garamond', serif;
}

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

html { scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.75;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* Grain */
body::after {
  content: "";
  position: fixed;
  inset: -50%;
  z-index: 2000;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: .035;
  animation: grain 9s steps(6) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0); } 20% { transform: translate(-4%,3%); }
  40% { transform: translate(3%,-5%); } 60% { transform: translate(-3%,4%); } 80% { transform: translate(4%,2%); }
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Typo helpers ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before { content: ""; width: 42px; height: 1px; background: var(--gold); }
.eyebrow.centered::after { content: ""; width: 42px; height: 1px; background: var(--gold); }

.display {
  font-family: var(--font-title);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: .02em;
  color: var(--navy);
}
.display em { font-family: var(--font-accent); font-style: italic; font-weight: 500; color: var(--gold); letter-spacing: 0; }

.lead { font-size: 1.02rem; font-weight: 300; color: var(--muted); max-width: 56ch; }

.section { padding: clamp(5rem, 11vw, 9.5rem) 0; position: relative; }
.wrap { width: min(1240px, 92vw); margin: 0 auto; }
.wrap-wide { width: min(1440px, 94vw); margin: 0 auto; }

.chapter { display: flex; align-items: baseline; gap: 1.4rem; margin-bottom: 1.6rem; }
.chapter .num {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold);
  white-space: nowrap;
}
.chapter .num::after { content: ""; display: inline-block; width: 60px; height: 1px; background: var(--line-gold); margin-left: 1.2rem; vertical-align: middle; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  padding: 1.05rem 2.3rem;
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color .45s var(--ease), border-color .45s var(--ease), background-color .45s var(--ease), transform .45s var(--ease);
}
.btn .arr { transition: transform .45s var(--ease); }
.btn:hover .arr { transform: translateX(6px); }
.btn:active { transform: scale(.97); }

.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold::after {
  content: ""; position: absolute; top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.5), transparent);
  transform: skewX(-20deg);
  transition: left .7s var(--ease);
}
.btn-gold:hover::after { left: 130%; }

.btn-outline { border-color: rgba(250,246,242,.45); color: var(--cream); background: transparent; }
.btn-outline::before {
  content: ""; position: absolute; inset: 0; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease);
  z-index: -1;
}
.btn-outline:hover { color: var(--navy); border-color: var(--gold); }
.btn-outline:hover::before { transform: scaleX(1); }

.btn-navy { background: var(--navy); color: var(--cream); }
.btn-navy:hover { background: var(--gold); color: var(--navy); }

.btn-outline-dark { border-color: rgba(13,27,42,.3); color: var(--navy); background: transparent; }
.btn-outline-dark::before {
  content: ""; position: absolute; inset: 0; background: var(--navy);
  transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease);
  z-index: -1;
}
.btn-outline-dark:hover { color: var(--cream); border-color: var(--navy); }
.btn-outline-dark:hover::before { transform: scaleX(1); }

.link-more {
  display: inline-flex; align-items: center; gap: .7rem;
  font-size: .7rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase;
  color: var(--navy); border-bottom: 1px solid var(--gold); padding-bottom: .45rem;
  transition: gap .4s var(--ease), color .4s;
}
.link-more:hover { gap: 1.2rem; color: var(--gold); }

/* ---------- Intro ---------- */
.intro {
  position: fixed; inset: 0; z-index: 3000;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  transition: transform 1s var(--ease);
}
.intro img { width: 120px; animation: introIn 1s var(--ease) both; }
.intro.done { transform: translateY(-101%); }
@keyframes introIn { from { opacity: 0; transform: scale(.82); } to { opacity: 1; transform: scale(1); } }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem clamp(1.4rem, 4.5vw, 4rem);
  transition: background-color .5s var(--ease), padding .5s var(--ease), box-shadow .5s;
  color: var(--cream);
}
.site-header.scrolled {
  background: rgba(250, 246, 242, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--navy);
  padding-block: .85rem;
  box-shadow: 0 1px 0 var(--line);
}
.brand { display: flex; align-items: center; gap: .85rem; }
.brand img { width: 42px; height: auto; transition: transform .5s var(--ease); }
.brand:hover img { transform: rotate(-8deg) scale(1.05); }
.brand-text { font-family: var(--font-title); font-size: .92rem; letter-spacing: .3em; font-weight: 500; }
.brand-text em { font-style: normal; color: var(--gold); }

.main-nav { display: flex; align-items: center; gap: 2.4rem; }
.main-nav a {
  font-size: .68rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase;
  position: relative; padding: .4rem 0; opacity: .85; transition: opacity .3s;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--gold); transform: scaleX(0); transform-origin: right;
  transition: transform .45s var(--ease);
}
.main-nav a:hover, .main-nav a.active { opacity: 1; }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); transform-origin: left; }
.header-cta {
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  padding: .4rem 0 .3rem;
  border-bottom: 1px solid var(--gold);
  color: inherit;
  transition: color .35s var(--ease), letter-spacing .35s var(--ease);
}
.header-cta:hover { color: var(--gold); letter-spacing: .3em; }

.header-phone {
  display: none;
  align-items: center;
  gap: .55rem;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .06em;
  color: inherit;
  margin-left: auto;
  margin-right: 1.2rem;
}
.header-phone svg { width: 15px; height: 15px; stroke: var(--gold); fill: none; stroke-width: 1.6; flex-shrink: 0; }
@media (max-width: 1024px) { .header-phone { display: inline-flex; } }
@media (max-width: 480px) { .brand-text { display: none; } .header-phone { font-size: .68rem; margin-right: .9rem; } }

.burger { display: none; background: none; border: 0; cursor: pointer; width: 34px; height: 24px; position: relative; z-index: 1101; }
.burger span { position: absolute; left: 0; width: 100%; height: 1.5px; background: currentColor; transition: .45s var(--ease); }
.burger span:nth-child(1) { top: 4px; }
.burger span:nth-child(2) { top: 11px; width: 70%; }
.burger span:nth-child(3) { top: 18px; }
body.menu-open .burger { color: var(--cream); }
body.menu-open .burger span:nth-child(1) { top: 11px; transform: rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { top: 11px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 1100;
  background: var(--navy);
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 10vw;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .8s var(--ease);
}
body.menu-open .mobile-menu { clip-path: inset(0); }
.mobile-menu a {
  font-family: var(--font-title); font-size: clamp(1.7rem, 6.5vw, 2.6rem);
  color: var(--cream); padding: .55rem 0; letter-spacing: .06em;
  display: flex; align-items: baseline; gap: 1.2rem;
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s var(--ease), transform .6s var(--ease), color .3s;
}
.mobile-menu a i { font-family: var(--font-accent); font-style: italic; font-size: .85rem; color: var(--gold); }
.mobile-menu a:hover { color: var(--gold); }
body.menu-open .mobile-menu a { opacity: 1; transform: none; }
body.menu-open .mobile-menu a:nth-child(1) { transition-delay: .25s; }
body.menu-open .mobile-menu a:nth-child(2) { transition-delay: .32s; }
body.menu-open .mobile-menu a:nth-child(3) { transition-delay: .39s; }
body.menu-open .mobile-menu a:nth-child(4) { transition-delay: .46s; }
body.menu-open .mobile-menu a:nth-child(5) { transition-delay: .53s; }
body.menu-open .mobile-menu a:nth-child(6) { transition-delay: .60s; }
body.menu-open .mobile-menu a:nth-child(7) { transition-delay: .67s; }
body.menu-open { overflow: hidden; }

/* ---------- Hero accueil ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: var(--cream);
  background: var(--navy);
  overflow: hidden;
  padding: 8rem 5vw 6rem;
}
.hero-bg { position: absolute; inset: -12% 0; z-index: 0; will-change: transform; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; animation: heroZoom 7s var(--ease) both; }
@keyframes heroZoom { from { transform: scale(1.14); } to { transform: scale(1.02); } }
.hero-veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at 50% 38%, rgba(13,27,42,.42), rgba(13,27,42,.88) 78%),
    linear-gradient(180deg, rgba(13,27,42,.82), rgba(13,27,42,.6) 45%, rgba(13,27,42,.96));
}
.hero-inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }
.hero-logo { width: clamp(86px, 10vw, 128px); margin-bottom: 1.6rem; }
.hero-word {
  font-size: .82rem; font-weight: 300; letter-spacing: .62em; text-indent: .62em;
  text-transform: uppercase; color: var(--cream);
}
.hero-rule { width: 56px; height: 1px; background: var(--gold); margin: 1.15rem auto 1rem; }
.hero-slogan { width: clamp(170px, 22vw, 240px); margin-bottom: 2.4rem; }
.hero h1 {
  font-family: var(--font-title); font-weight: 500;
  font-size: clamp(1.9rem, 4.6vw, 3.6rem);
  line-height: 1.22; letter-spacing: .04em; color: var(--cream);
}
.hero h1 .l2 { color: var(--gold); }
.hero-sub { margin: 1.6rem 0 2.6rem; font-weight: 300; font-size: .95rem; color: rgba(250,246,242,.78); max-width: 52ch; }
.hero-ctas { display: flex; gap: 1.1rem; flex-wrap: wrap; justify-content: center; }

.mask-line { display: block; overflow: hidden; }
.mask-line > span { display: block; transform: translateY(115%); transition: transform 1.15s var(--ease); }
body.loaded .mask-line > span { transform: none; }
.mask-line.d1 > span { transition-delay: .15s; }
.mask-line.d2 > span { transition-delay: .3s; }
.mask-line.d3 > span { transition-delay: .45s; }
body.with-intro .mask-line.d1 > span { transition-delay: 1.15s; }
body.with-intro .mask-line.d2 > span { transition-delay: 1.3s; }
body.with-intro .mask-line.d3 > span { transition-delay: 1.45s; }
.fade-in { opacity: 0; transform: translateY(18px); transition: opacity 1s var(--ease) .7s, transform 1s var(--ease) .7s; }
body.loaded .fade-in { opacity: 1; transform: none; }
body.with-intro .fade-in { transition-delay: 1.7s, 1.7s; }
.hero-logo, .hero-word, .hero-rule, .hero-slogan { opacity: 0; transform: translateY(14px); transition: opacity 1s var(--ease) .35s, transform 1s var(--ease) .35s; }
body.loaded .hero-logo, body.loaded .hero-word, body.loaded .hero-rule, body.loaded .hero-slogan { opacity: 1; transform: none; }
body.with-intro .hero-logo, body.with-intro .hero-word, body.with-intro .hero-rule, body.with-intro .hero-slogan { transition-delay: 1s, 1s; }

.scroll-cue {
  position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: .8rem;
  font-size: .6rem; letter-spacing: .34em; text-transform: uppercase; color: rgba(250,246,242,.6);
}
.scroll-cue::after { content: ""; width: 1px; height: 54px; background: linear-gradient(var(--gold), transparent); animation: cue 2.2s var(--ease) infinite; }
@keyframes cue { 0% { transform: scaleY(0); transform-origin: top; } 45% { transform: scaleY(1); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; background: var(--navy); border-block: 1px solid var(--line-gold); padding: 1.35rem 0; }
.marquee-track { display: flex; width: max-content; animation: mq 46s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--font-title); font-size: 1rem; letter-spacing: .34em; text-transform: uppercase;
  color: rgba(250,246,242,.85); white-space: nowrap; padding-right: 3.2rem;
}
.marquee-track b { color: var(--gold); font-weight: 400; padding-right: 3.2rem; }
@keyframes mq { to { transform: translateX(-50%); } }

/* ---------- Page hero (pages internes) ---------- */
.page-hero {
  position: relative; background: var(--navy); color: var(--cream);
  padding: clamp(10rem, 18vw, 13.5rem) 5vw clamp(4.5rem, 8vw, 6.5rem);
  overflow: hidden;
}
.page-hero .ph-bg { position: absolute; inset: 0; opacity: .28; }
.page-hero .ph-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero .ph-veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,27,42,.75), rgba(13,27,42,.55) 50%, var(--navy)); }
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: var(--font-title); font-weight: 500;
  font-size: clamp(2.2rem, 5.4vw, 4rem); letter-spacing: .03em; line-height: 1.15; margin-top: 1.4rem;
}
.page-hero h1 em { font-family: var(--font-accent); font-style: italic; color: var(--gold); }
.page-hero .lead { color: rgba(250,246,242,.7); margin-top: 1.3rem; }
.ph-giant {
  position: absolute; right: -2vw; bottom: -4vw; z-index: 1;
  font-family: var(--font-title); font-size: clamp(9rem, 22vw, 20rem); line-height: 1;
  color: transparent; -webkit-text-stroke: 1px rgba(212,175,55,.14);
  pointer-events: none; user-select: none;
}

/* ---------- Split / présentation ---------- */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(3rem, 7vw, 6.5rem); align-items: center; }
.split.rev { grid-template-columns: .95fr 1.05fr; }
.split h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); margin: 1.4rem 0 1.5rem; }
.split p + p { margin-top: 1.1rem; }
.split .link-more { margin-top: 2.2rem; }

.frame { position: relative; }
.frame img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.frame::after {
  content: ""; position: absolute; inset: 0;
  border: 1px solid var(--gold);
  transform: translate(20px, 20px);
  transition: transform .7s var(--ease);
  pointer-events: none;
}
.frame:hover::after { transform: translate(12px, 12px); }
.frame.tl::after { transform: translate(-20px, -20px); }
.frame.tl:hover::after { transform: translate(-12px, -12px); }

/* ---------- Révélations ---------- */
[data-reveal] { opacity: 0; transform: translateY(36px); transition: opacity 1s var(--ease), transform 1s var(--ease); transition-delay: var(--d, 0s); }
[data-reveal="clip"] { transform: none; }
[data-reveal="clip"] img { clip-path: inset(0 100% 0 0); transition: clip-path 1.25s var(--ease); transition-delay: calc(var(--d, 0s) + .15s); }
[data-reveal="fade"] { transform: none; }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal="clip"].in img { clip-path: inset(0 0 0 0); }

/* ---------- Services (accueil) ---------- */
.svc-list { border-top: 1px solid var(--line); }
.svc-row {
  display: grid; grid-template-columns: 70px 1fr auto auto; align-items: center; gap: clamp(1.2rem, 3vw, 2.6rem);
  padding: 2rem 0; border-bottom: 1px solid var(--line);
  transition: padding .5s var(--ease);
  position: relative;
}
.svc-row:hover { padding-left: 1.2rem; }
.svc-row .idx { font-family: var(--font-accent); font-style: italic; font-size: 1.05rem; color: var(--gold); }
.svc-row h3 { font-family: var(--font-title); font-weight: 500; font-size: clamp(1.25rem, 2.6vw, 1.9rem); letter-spacing: .04em; color: var(--navy); transition: color .4s; }
.svc-row:hover h3 { color: var(--gold); }
.svc-row p { font-size: .82rem; color: var(--muted); max-width: 34ch; font-weight: 300; }
.svc-row .thumb { width: 92px; height: 64px; object-fit: cover; transform: scale(.85); opacity: .55; transition: .6s var(--ease); }
.svc-row:hover .thumb { transform: scale(1.15); opacity: 1; }
.svc-row .go { font-size: 1.15rem; color: var(--gold); transition: transform .5s var(--ease); }
.svc-row:hover .go { transform: translateX(8px); }

/* ---------- Pourquoi ---------- */
.dark { background: var(--navy); color: var(--cream); }
.dark .display { color: var(--cream); }
.dark .lead { color: rgba(250,246,242,.65); }
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(212,175,55,.16); border: 1px solid rgba(212,175,55,.16); margin-top: 3.5rem; }
.pillar { background: var(--navy); padding: 2.6rem 2rem; transition: background-color .5s var(--ease); position: relative; overflow: hidden; }
.pillar:hover { background: var(--navy-2); }
.pillar .p-num { font-family: var(--font-accent); font-style: italic; color: var(--gold); font-size: 1rem; }
.pillar svg { width: 34px; height: 34px; stroke: var(--gold); fill: none; stroke-width: 1.1; margin: 1.4rem 0 1.2rem; transition: transform .5s var(--ease); }
.pillar:hover svg { transform: translateY(-5px); }
.pillar h3 { font-family: var(--font-title); font-weight: 500; font-size: 1.02rem; letter-spacing: .06em; margin-bottom: .8rem; }
.pillar p { font-size: .8rem; font-weight: 300; color: rgba(250,246,242,.6); }

/* ---------- Témoignages ---------- */
.testis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; margin-top: 3.2rem; }
.testi {
  background: #fff; border: 1px solid var(--line);
  padding: 2.6rem 2.2rem; position: relative;
  transition: transform .6s var(--ease), box-shadow .6s;
}
.testi:hover { transform: translateY(-8px); box-shadow: 0 30px 60px -30px rgba(13,27,42,.25); }
.testi .stars { color: var(--gold); letter-spacing: .4em; font-size: .7rem; margin-bottom: 1.4rem; }
.testi blockquote { font-family: var(--font-accent); font-style: italic; font-size: 1.22rem; line-height: 1.55; color: var(--ink); }
.testi .who { margin-top: 1.6rem; font-size: .68rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--navy); }
.testi .what { font-size: .68rem; color: var(--gold); letter-spacing: .14em; text-transform: uppercase; }

/* ---------- CTA final ---------- */
.cta-final { position: relative; text-align: center; overflow: hidden; }
.cta-final .slogan-img { width: clamp(200px, 26vw, 300px); margin: 0 auto 1.8rem; }
.cta-final h2 { font-size: clamp(1.9rem, 4.2vw, 3.1rem); color: var(--cream); }
.cta-final .lead { margin: 1.4rem auto 2.6rem; color: rgba(250,246,242,.65); }
.cta-final .hero-ctas { justify-content: center; }
.cta-spark { position: absolute; color: rgba(212,175,55,.25); font-size: 1.4rem; animation: twinkle 3.4s ease-in-out infinite; }
@keyframes twinkle { 0%,100% { opacity: .25; transform: scale(.8); } 50% { opacity: 1; transform: scale(1.15); } }

/* ---------- Pages : À propos ---------- */
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; margin-top: 3rem; }
.value { border: 1px solid var(--line); padding: 2.2rem 1.8rem; background: #fff; transition: .5s var(--ease); }
.value:hover { border-color: var(--gold); transform: translateY(-6px); }
.value .v-i { font-family: var(--font-accent); font-style: italic; color: var(--gold); font-size: 1rem; }
.value h3 { font-family: var(--font-title); font-size: 1.05rem; font-weight: 500; letter-spacing: .05em; margin: .9rem 0 .7rem; color: var(--navy); }
.value p { font-size: .8rem; font-weight: 300; color: var(--muted); }

.steps { counter-reset: step; margin-top: 3rem; }
.step { display: grid; grid-template-columns: 110px 1fr; gap: 2rem; padding: 2.4rem 0; border-bottom: 1px solid rgba(212,175,55,.18); }
.step .s-num { font-family: var(--font-title); font-size: 2.6rem; color: transparent; -webkit-text-stroke: 1px var(--gold); line-height: 1; }
.step h3 { font-family: var(--font-title); font-weight: 500; font-size: 1.15rem; letter-spacing: .05em; margin-bottom: .6rem; color: var(--cream); }
.step p { font-size: .85rem; font-weight: 300; color: rgba(250,246,242,.6); max-width: 60ch; }

.trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 3.4rem; }
.trio img { width: 100%; aspect-ratio: 3/4; object-fit: cover; transition: transform .8s var(--ease); }
.trio .frame:hover img { transform: scale(1.05); }
.trio .frame { overflow: hidden; }
.trio .frame:nth-child(2) { margin-top: 3rem; }

/* ---------- Page Prestations ---------- */
.service-block { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.6rem, 6vw, 5.5rem); align-items: center; padding: clamp(3.4rem, 7vw, 5.6rem) 0; border-bottom: 1px solid var(--line); }
.service-block:last-child { border-bottom: 0; }
.service-block.rev .s-media { order: 2; }
.s-media .main-img { overflow: hidden; position: relative; }
.s-media .main-img img { width: 100%; aspect-ratio: 4/3.4; object-fit: cover; transition: transform 1s var(--ease); }
.s-media .main-img:hover img { transform: scale(1.06); }
.mini-gal { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; margin-top: .8rem; }
.mini-gal img { width: 100%; aspect-ratio: 1; object-fit: cover; filter: saturate(.85); transition: filter .5s, transform .5s var(--ease); cursor: pointer; }
.mini-gal img:hover { filter: saturate(1.1); transform: translateY(-4px); }
.s-body .idx { font-family: var(--font-accent); font-style: italic; color: var(--gold); font-size: 1rem; }
.s-body h2 { font-family: var(--font-title); font-weight: 500; font-size: clamp(1.6rem, 3vw, 2.3rem); letter-spacing: .04em; color: var(--navy); margin: .7rem 0 1.2rem; }
.s-body p { font-size: .9rem; font-weight: 300; color: var(--muted); }
.s-body ul { margin: 1.4rem 0 2rem; }
.s-body li { display: flex; gap: .9rem; align-items: baseline; font-size: .85rem; font-weight: 300; color: var(--ink); padding: .45rem 0; }
.s-body li::before { content: "✦"; color: var(--gold); font-size: .7rem; }

/* ---------- Galerie ---------- */
.filters { display: flex; flex-wrap: wrap; gap: .7rem; margin: 0 0 3rem; }
.filter-btn {
  font-family: var(--font-body); font-size: .66rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  padding: .8rem 1.5rem; border: 1px solid var(--line); background: transparent; color: var(--ink);
  cursor: pointer; transition: .4s var(--ease);
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.filter-btn.active { background: var(--navy); border-color: var(--navy); color: var(--cream); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; grid-auto-flow: dense; }
.g-item { position: relative; overflow: hidden; cursor: pointer; }
.g-item img { width: 100%; aspect-ratio: 4/5; object-fit: cover; transition: transform 1s var(--ease), filter .6s; }
.g-item:hover img { transform: scale(1.07); }
.g-item::after {
  content: attr(data-label); position: absolute; left: 1.2rem; bottom: 1rem;
  font-size: .62rem; font-weight: 600; letter-spacing: .26em; text-transform: uppercase; color: var(--cream);
  opacity: 0; transform: translateY(8px); transition: .5s var(--ease);
  text-shadow: 0 2px 12px rgba(13,27,42,.6);
}
.g-item::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(13,27,42,.65)); opacity: 0; transition: opacity .5s; z-index: 1; }
.g-item:hover::after, .g-item:hover::before { opacity: 1; transform: none; }
.g-item.wide { grid-column: span 2; }
.g-item.wide img { aspect-ratio: 8/5; }
.g-item.hide { display: none; }

.lightbox { position: fixed; inset: 0; z-index: 2500; background: rgba(13,27,42,.95); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .5s var(--ease); backdrop-filter: blur(8px); }
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: 86vw; max-height: 82vh; object-fit: contain; box-shadow: 0 40px 90px -30px rgba(0,0,0,.7); }
.lb-btn { position: absolute; background: none; border: 1px solid rgba(250,246,242,.3); color: var(--cream); width: 52px; height: 52px; border-radius: 50%; cursor: pointer; font-size: 1.1rem; transition: .4s; display: flex; align-items: center; justify-content: center; }
.lb-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.lb-close { top: 2rem; right: 2rem; }
.lb-prev { left: 2rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 2rem; top: 50%; transform: translateY(-50%); }
.lb-count { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); color: rgba(250,246,242,.7); font-size: .7rem; letter-spacing: .3em; }

/* ---------- Bouton WhatsApp flottant ---------- */
.wa-float {
  position: fixed; right: 1.6rem; bottom: 1.6rem; z-index: 1500;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gold); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 34px -10px rgba(13,27,42,.5);
  transition: transform .4s var(--ease), background-color .4s;
}
.wa-float svg { width: 26px; height: 26px; }
.wa-float::after {
  content: ""; position: absolute; inset: -6px; border-radius: 50%;
  border: 1px solid var(--gold); opacity: .6;
  animation: waPulse 2.6s var(--ease) infinite;
}
@keyframes waPulse { 0% { transform: scale(.82); opacity: .7; } 70% { transform: scale(1.28); opacity: 0; } 100% { transform: scale(1.28); opacity: 0; } }
.wa-float:hover { transform: translateY(-4px) scale(1.06); background: var(--gold-soft); }
@media (max-width: 520px) { .wa-float { right: 1.1rem; bottom: 1.1rem; width: 52px; height: 52px; } }

/* ---------- Formulaires ---------- */
.form-shell { background: #fff; border: 1px solid var(--line); padding: clamp(2rem, 4.5vw, 3.6rem); position: relative; }
.form-shell::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), transparent); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.8rem 1.6rem; }
.field { display: flex; flex-direction: column; gap: .55rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .64rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--navy); }
.field label i { color: var(--gold); font-style: normal; }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: .9rem; font-weight: 300; color: var(--ink);
  background: transparent; border: 0; border-bottom: 1px solid var(--line);
  padding: .75rem .1rem; outline: none; border-radius: 0;
  transition: border-color .4s;
  -webkit-appearance: none; appearance: none;
}
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6' fill='%23D4AF37'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .2rem center; cursor: pointer; }
.field textarea { resize: vertical; min-height: 110px; border: 1px solid var(--line); padding: .9rem; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); }
.field input::placeholder, .field textarea::placeholder { color: #b6bcc7; font-weight: 300; }

.form-success { text-align: center; padding: 3rem 1.5rem; }
.form-success .ok-ring { width: 74px; height: 74px; border: 1px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.6rem; animation: okPop .7s var(--ease) both; }
.form-success .ok-ring svg { width: 30px; height: 30px; stroke: var(--gold); fill: none; stroke-width: 1.6; }
@keyframes okPop { from { transform: scale(.4); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.form-success h3 { font-family: var(--font-title); font-weight: 500; font-size: 1.4rem; color: var(--navy); margin-bottom: .8rem; }
.form-success p { font-size: .88rem; font-weight: 300; color: var(--muted); max-width: 44ch; margin: 0 auto; }

/* Calendrier */
.cal { border: 1px solid var(--line); padding: 1.2rem 1.2rem 1.4rem; background: var(--cream); }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.cal-head strong { font-family: var(--font-title); font-weight: 500; font-size: .95rem; letter-spacing: .08em; color: var(--navy); text-transform: capitalize; }
.cal-nav { background: none; border: 1px solid var(--line); width: 34px; height: 34px; border-radius: 50%; cursor: pointer; color: var(--navy); transition: .35s; font-size: .85rem; }
.cal-nav:hover { background: var(--navy); color: var(--cream); }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; text-align: center; }
.cal-grid .dow { font-size: .58rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); padding: .4rem 0; }
.cal-day { font-size: .78rem; font-weight: 300; padding: .55rem 0; cursor: pointer; border: 1px solid transparent; transition: .3s; color: var(--ink); }
.cal-day:hover:not(.off):not(.past) { border-color: var(--gold); color: var(--gold); }
.cal-day.off { visibility: hidden; }
.cal-day.past { color: #c9c2b6; cursor: default; text-decoration: line-through; text-decoration-color: rgba(201,194,182,.6); }
.cal-day.sel { background: var(--navy); color: var(--cream); border-color: var(--navy); }
.cal-picked { margin-top: 1rem; font-size: .72rem; letter-spacing: .1em; color: var(--gold); font-weight: 600; text-transform: uppercase; min-height: 1.2em; }

/* ---------- Contact ---------- */
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.c-card { border: 1px solid var(--line); background: #fff; padding: 2.4rem 2rem; text-align: center; transition: .5s var(--ease); }
.c-card:hover { transform: translateY(-6px); border-color: var(--gold); }
.c-card img { width: 40px; height: 40px; object-fit: contain; margin: 0 auto 1.2rem; }
.c-card h3 { font-family: var(--font-title); font-weight: 500; font-size: .95rem; letter-spacing: .1em; color: var(--navy); margin-bottom: .5rem; }
.c-card p, .c-card a { font-size: .85rem; font-weight: 300; color: var(--muted); }
.c-card a { display: block; transition: color .3s; }
.c-card a:hover { color: var(--gold); }
.map-shell { margin-top: 4.5rem; border: 1px solid var(--line); padding: 10px; background: #fff; }
.map-shell iframe { width: 100%; height: 420px; border: 0; display: block; filter: grayscale(.9) sepia(.12); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: var(--cream); padding: clamp(4rem, 8vw, 6.5rem) 0 0; position: relative; overflow: hidden; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 3rem; }
.f-brand img { width: 64px; margin-bottom: 1.2rem; }
.f-brand .f-word { font-family: var(--font-title); letter-spacing: .3em; font-size: .95rem; }
.f-brand .f-word em { font-style: normal; color: var(--gold); }
.f-brand p { font-size: .8rem; font-weight: 300; color: rgba(250,246,242,.55); margin-top: 1rem; max-width: 30ch; }
.site-footer h4 { font-size: .66rem; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.4rem; }
.f-links li { margin-bottom: .7rem; }
.f-links a { font-size: .82rem; font-weight: 300; color: rgba(250,246,242,.7); transition: color .3s, padding-left .3s; }
.f-links a:hover { color: var(--gold); padding-left: 6px; }
.f-contact li { display: flex; gap: .8rem; align-items: center; font-size: .82rem; font-weight: 300; color: rgba(250,246,242,.7); margin-bottom: .9rem; }
.f-contact svg { width: 15px; height: 15px; stroke: var(--gold); fill: none; stroke-width: 1.5; flex-shrink: 0; }
.f-contact a:hover { color: var(--gold); }
.footer-bottom { margin-top: 4rem; border-top: 1px solid rgba(212,175,55,.18); padding: 1.6rem 0; display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.footer-bottom p { font-size: .68rem; font-weight: 300; letter-spacing: .12em; color: rgba(250,246,242,.45); }
.footer-bottom .f-slogan { font-family: var(--font-accent); font-style: italic; color: var(--gold); font-size: .9rem; letter-spacing: .04em; }
.f-giant { position: absolute; right: -1vw; top: -3vw; font-family: var(--font-title); font-size: 16rem; line-height: 1; color: transparent; -webkit-text-stroke: 1px rgba(212,175,55,.07); pointer-events: none; user-select: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .main-nav, .header-cta { display: none; }
  .burger { display: block; }
  .pillars, .values { grid-template-columns: repeat(2, 1fr); }
  .testis { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .g-item.wide { grid-column: span 2; }
}
@media (max-width: 760px) {
  .scroll-cue { display: none; }
  .split, .split.rev, .service-block, .service-block.rev .s-media { grid-template-columns: 1fr; order: initial; }
  .service-block.rev .s-media { order: 0; }
  .svc-row { grid-template-columns: 44px 1fr auto; }
  .svc-row p, .svc-row .thumb { display: none; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .trio { grid-template-columns: 1fr; }
  .trio .frame:nth-child(2) { margin-top: 0; }
  .step { grid-template-columns: 64px 1fr; gap: 1.2rem; }
  .step .s-num { font-size: 1.8rem; }
  .hero-word { letter-spacing: .42em; font-size: .7rem; }
  .footer-bottom { justify-content: center; text-align: center; }
  .frame::after { transform: translate(12px, 12px); }
}
@media (max-width: 520px) {
  .pillars, .values, .gallery-grid, .footer-grid { grid-template-columns: 1fr; }
  .g-item.wide { grid-column: span 1; }
  .hero-ctas .btn { width: 100%; }
  .lb-prev { left: .6rem; } .lb-next { right: .6rem; }
}
