/* =====================================================
   CARRÉ VERT — Design Cinématique Premium v5.0
   Dark Luxury · Cormorant Garant · Inter
   ===================================================== */

/* ——— GOOGLE FONTS sont dans header.php ——— */

/* ——— TOKENS ——— */
:root {
  --cream:      #EDE8DC;
  --cream-2:    #D8D0BE;
  --white:      #F8F5EF;
  --black:      #07100A;
  --green-950:  #060E08;
  --green-900:  #0B1A0E;
  --green-800:  #122016;
  --green-700:  #1A2F1E;
  --green-600:  #234228;
  --green-500:  #2E5A34;
  --green-400:  #3D7445;
  --green-300:  #5A9464;
  --green-200:  #84BC8E;
  --sage:       #7AAB84;
  --gold:       #C8A96E;
  --gold-light: #DFC48E;
  --text:       #1A2A1C;
  --muted:      #556858;
  --line:       rgba(7,16,10,.09);
  --line-light: rgba(237,232,220,.12);
  --r:          3px;
}

/* ——— RESET ——— */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  background: var(--white);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
p { color: var(--muted); font-size: .96rem; line-height: 1.82; }

/* ——— GRAIN ——— */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9998;
  opacity: .032;
  mix-blend-mode: overlay;
}

/* ——— CURSOR ——— */
#cursor {
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  mix-blend-mode: difference;
}
#cursor-dot {
  width: 6px; height: 6px;
  background: var(--cream);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  transition: width .25s, height .25s;
}
#cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid rgba(237,232,220,.4);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  transition: width .4s ease, height .4s ease, border-color .3s ease;
  pointer-events: none;
  z-index: 9999;
}
body.cursor-hover #cursor-dot { width: 10px; height: 10px; }
body.cursor-hover #cursor-ring { width: 56px; height: 56px; border-color: rgba(237,232,220,.7); }
@media (hover: none) { #cursor, #cursor-ring { display: none; } }

/* ——— CONTAINER ——— */
.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 2.5vw, 48px);
  box-sizing: border-box;
}

/* ——— TYPOGRAPHY ——— */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garant', Georgia, serif;
  letter-spacing: -.02em;
  color: var(--black);
  line-height: 1.0;
}
h1 { font-size: clamp(3.4rem, 9.5vw, 9rem); font-weight: 300; }
h2 { font-size: clamp(2.4rem, 6vw, 5.8rem); font-weight: 300; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); font-weight: 400; line-height: 1.15; }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--green-400);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}

/* On hero sombre */
.eyebrow-light { color: var(--sage); }
.eyebrow-light::before { background: var(--sage); }

/* ——— UTILITY ——— */
.section { position: relative; padding: 130px 0; }
.section-head { max-width: 860px; margin-bottom: 72px; }
.center { text-align: center; margin-top: 60px; }

/* ——— BUTTONS ——— */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 56px;
  padding: 0 32px;
  border: 1px solid transparent;
  border-radius: var(--r);
  font-family: 'Inter', sans-serif;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .08em;
  cursor: pointer;
  transition: all .3s cubic-bezier(.25,.46,.45,.94);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-icon { font-size: 1rem; transition: transform .3s ease; }
.btn:hover .btn-icon { transform: translateX(4px); }

.btn-primary {
  background: var(--green-500);
  color: var(--cream);
  border-color: var(--green-500);
}
.btn-primary:hover {
  background: var(--green-400);
  border-color: var(--green-400);
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(30,61,40,.3);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: rgba(7,16,10,.18);
}
.btn-secondary:hover {
  background: var(--black);
  color: var(--cream);
  border-color: var(--black);
  transform: translateY(-2px);
}

/* Variante crème (sur fond sombre) */
.btn-cream {
  background: transparent;
  color: var(--cream);
  border-color: rgba(237,232,220,.3);
}
.btn-cream:hover {
  background: var(--cream);
  color: var(--black);
  transform: translateY(-2px);
}

/* ——— SITE HEADER ——— */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7,16,10,.0);
  backdrop-filter: blur(0px);
  transition: background .5s ease, backdrop-filter .5s ease;
  border-bottom: 1px solid transparent;
  transition: all .5s ease;
  z-index: -1;
}
.site-header.scrolled::before {
  background: rgba(7,16,10,.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: var(--line-light);
}

.header-inner {
  width: 100%;
  max-width: 1280px;
  height: 84px;
  margin-inline: auto;
  padding-inline: clamp(20px, 2.5vw, 48px);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cream);
}
.brand img {
  width: 38px; height: 38px;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid var(--line-light);
  padding: 4px;
  background: rgba(255,255,255,.08);
}

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: .82rem;
  font-weight: 400;
}
.nav a {
  color: rgba(237,232,220,.65);
  transition: color .22s ease;
  position: relative;
  letter-spacing: .03em;
}
.nav a::after {
  content: "";
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--sage);
  transition: width .3s ease;
}
.nav a:hover { color: var(--cream); }
.nav a:hover::after { width: 100%; }

.nav-cta {
  height: 40px;
  padding: 0 20px;
  border: 1px solid rgba(237,232,220,.25);
  border-radius: var(--r);
  color: var(--cream) !important;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .08em;
  transition: all .25s ease;
  display: inline-flex;
  align-items: center;
}
.nav-cta:hover {
  background: var(--cream);
  color: var(--black) !important;
  border-color: var(--cream);
}
.nav-cta::after { display: none !important; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block; height: 1px;
  background: var(--cream);
  transition: .25s ease; border-radius: 1px;
}
.burger span:nth-child(2) { width: 70%; }
.burger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; width: 100%; }
.burger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

main { padding-top: 84px; }

/* ——— HERO MEDIA SYSTEM ——— */
/*
  COMMENT CHANGER LE FOND :
  - Vidéo : mettez votre fichier dans assets/video/hero.mp4
  - Image : mettez votre fichier dans assets/img/hero-bg.jpg
  Dans le HTML de chaque page, décommentez video OU img.
*/
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-video,
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1.13); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(7,16,10,.92) 0%, rgba(7,16,10,.62) 50%, rgba(7,16,10,.28) 100%),
    linear-gradient(to top, rgba(7,16,10,.7) 0%, transparent 45%);
}
/* Fallback quand pas de media */
.hero-fallback {
  background:
    radial-gradient(ellipse 70% 90% at 25% 50%, rgba(30,61,40,.5), transparent),
    var(--green-900);
}

/* ——— HERO PRINCIPAL (index) ——— */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 100px;
  overflow: hidden;
  isolation: isolate;
  margin-top: -84px;
  padding-top: calc(84px + 80px);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-label {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}

.hero-content h1 {
  color: var(--cream);
  font-style: italic;
  font-weight: 300;
}
.hero-content h1 em {
  font-style: normal;
  color: var(--sage);
}
.hero-content .hero-sub {
  color: rgba(237,232,220,.62);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 24px auto 0;
  line-height: 1.78;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 44px;
  justify-content: center;
}

.hero-meta { align-self: end; }

.hero-stats {
  border: 1px solid var(--line-light);
  border-radius: var(--r);
  overflow: hidden;
  background: rgba(7,16,10,.4);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.hero-stat {
  padding: 24px 28px;
  border-bottom: 1px solid var(--line-light);
  transition: background .25s ease;
}
.hero-stat:last-child { border-bottom: none; }
.hero-stat:hover { background: rgba(255,255,255,.04); }
.hero-stat strong {
  display: block;
  font-family: 'Cormorant Garant', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
  letter-spacing: -.04em;
}
.hero-stat span {
  font-size: .7rem;
  color: rgba(237,232,220,.45);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-top: 5px;
  display: block;
  font-weight: 500;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll span {
  font-size: .64rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(237,232,220,.3);
  font-weight: 500;
}
.hero-scroll-line {
  width: 1px;
  height: 44px;
  background: rgba(237,232,220,.2);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--sage);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0%   { top: -100%; }
  50%  { top: 0%; }
  100% { top: 100%; }
}

/* ——— PAGE HERO (autres pages) ——— */
.page-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
  isolation: isolate;
  margin-top: -84px;
  padding-top: calc(84px + 60px);
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}
.page-hero h1 {
  color: var(--cream);
  font-style: italic;
  font-weight: 300;
  max-width: 900px;
}
.page-hero .hero-sub {
  color: rgba(237,232,220,.55);
  font-size: 1.08rem;
  max-width: 660px;
  margin-top: 22px;
}

/* ——— MARQUEE ——— */
.marquee-band {
  overflow: hidden;
  padding: 16px 0;
  background: var(--green-900);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}
.marquee-track {
  display: flex;
  animation: marquee 26s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 0 30px;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(237,232,220,.35);
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
}
.marquee-sep {
  color: var(--green-300);
  font-size: 1.2rem;
  line-height: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ——— INTRO ÉDITORIALE ——— */
.intro-edito {
  padding: 140px 0;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.intro-edito-grid { display: grid; gap: 60px; align-items: end; }
.intro-number-ghost {
  font-family: 'Cormorant Garant', serif;
  font-size: clamp(9rem, 22vw, 20rem);
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px rgba(7,16,10,.08);
  line-height: .85;
  letter-spacing: -.07em;
  user-select: none;
  flex-shrink: 0;
}
.intro-edito-text h2 { font-style: italic; }
.intro-edito-text h2 em { font-style: normal; color: var(--green-500); }
.intro-edito-text p { margin-top: 24px; max-width: 540px; font-size: 1.02rem; line-height: 1.82; }

/* ——— IMMERSIVE ——— */
.immersive-section {
  position: relative;
  height: 90vh;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: center;
  isolation: isolate;
}
.immersive-bg {
  position: absolute;
  inset: -12%;
  will-change: transform;
  z-index: 0;
}
.immersive-bg img, .immersive-bg video {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.6) saturate(.75);
}
.immersive-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(7,16,10,.82), rgba(7,16,10,.3)),
    linear-gradient(to top, rgba(7,16,10,.5) 0%, transparent 50%);
}
.immersive-content {
  position: relative;
  z-index: 2;
  width: min(800px, calc(100% - 52px));
  margin-inline: auto;
  padding: clamp(32px, 5vw, 64px);
  border: 1px solid var(--line-light);
  background: rgba(7,16,10,.28);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--r);
}
.immersive-content h2 { color: var(--cream); font-style: italic; font-weight: 300; }
.immersive-content p { color: rgba(237,232,220,.6); margin-top: 22px; font-size: 1.05rem; line-height: 1.78; }
.immersive-content .eyebrow { color: var(--sage); }
.immersive-content .eyebrow::before { background: var(--sage); }

/* ——— PORTRAIT JÉRÔME ——— */
.portrait-section {
  padding: 130px 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.portrait-grid {
  display: grid;
  gap: 80px;
  align-items: center;
}
@media (min-width: 900px) {
  .portrait-grid { grid-template-columns: .85fr 1.15fr; gap: 100px; }
}

/* Visual */
.portrait-visual { position: relative; }
.portrait-img-wrap {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--green-800);
}
.portrait-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: saturate(.7);
  transition: filter .6s ease, transform .8s ease;
}
.portrait-img-wrap:hover img { filter: saturate(1); transform: scale(1.03); }
.portrait-placeholder {
  width: 100%; height: 100%;
  min-height: 480px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(237,232,220,.18);
  font-family: 'Cormorant Garant', serif;
  font-size: 1.1rem;
  font-style: italic;
  text-align: center;
  line-height: 1.6;
  background: linear-gradient(145deg, var(--green-800), var(--green-900));
}
/* Fine ligne décorative sur le côté */
.portrait-img-wrap::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px; bottom: -1px;
  width: 3px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  z-index: 2;
}

/* Badge France */
.portrait-badge {
  position: absolute;
  bottom: -22px; right: -22px;
  background: var(--green-900);
  border: 1px solid var(--line-light);
  border-radius: var(--r);
  padding: 18px 22px;
  text-align: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.portrait-badge strong {
  display: block;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: .66rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.portrait-badge span {
  display: block;
  color: rgba(237,232,220,.45);
  font-size: .78rem;
  letter-spacing: .08em;
}

/* Text */
.portrait-intro {
  color: var(--text);
  font-size: 1.06rem;
  line-height: 1.85;
  margin-top: 28px;
}

.portrait-quote {
  margin: 38px 0;
  padding: 28px 32px;
  border-left: 2px solid var(--gold);
  background: linear-gradient(to right, rgba(200,169,110,.06), transparent);
  border-radius: 0 var(--r) var(--r) 0;
}
.portrait-quote blockquote {
  font-family: 'Cormorant Garant', serif;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-style: italic;
  font-weight: 300;
  color: var(--text);
  line-height: 1.5;
  margin: 0 0 10px;
}
.portrait-quote cite {
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
}

.portrait-stats {
  display: flex;
  gap: 0;
  margin-top: 40px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}
.portrait-stat {
  flex: 1;
  padding: 22px 20px;
  text-align: center;
  border-right: 1px solid var(--line);
  transition: background .25s ease;
}
.portrait-stat:last-child { border-right: none; }
.portrait-stat:hover { background: #F3F2EE; }
.portrait-stat strong {
  display: block;
  font-family: 'Cormorant Garant', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  color: var(--green-600);
  line-height: 1;
  margin-bottom: 6px;
}
.portrait-stat span {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ——— SERVICES ——— */
.services-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}
.service-item {
  background: var(--white);
  padding: 44px 40px;
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 0 26px;
  align-items: start;
  transition: background .3s ease;
  position: relative;
  overflow: hidden;
}
.service-item::after {
  content: "";
  position: absolute;
  bottom: 0; left: 40px; right: 40px;
  height: 1px;
  background: var(--green-400);
  transform: scaleX(0);
  transition: transform .5s ease;
  transform-origin: left;
}
.service-item:hover { background: #F3F2EE; }
.service-item:hover::after { transform: scaleX(1); }
.service-item-num {
  font-family: 'Cormorant Garant', serif;
  font-size: 1.1rem;
  color: rgba(7,16,10,.2);
  font-weight: 300;
  letter-spacing: .1em;
  padding-top: 5px;
  line-height: 1;
}
.service-item h3 { font-size: 1.22rem; margin-bottom: 10px; font-weight: 400; }
.service-item p { font-size: .9rem; line-height: 1.75; }
.service-arrow {
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
  flex-shrink: 0;
  color: var(--muted);
  font-size: .9rem;
  margin-top: 3px;
}
.service-item:hover .service-arrow {
  background: var(--green-500);
  border-color: var(--green-500);
  color: var(--cream);
  transform: rotate(45deg);
}

/* ——— SHOWCASE TRIO ——— */
.premium-showcase { overflow: hidden; }
.trio-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.trio-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: box-shadow .3s ease, transform .3s ease;
}
.trio-card:hover {
  box-shadow: 0 12px 40px rgba(7,16,10,.10);
  transform: translateY(-4px);
}
.trio-card-img {
  overflow: hidden;
  aspect-ratio: 4/3;
}
.trio-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(.65);
  transition: transform .7s ease, filter .5s ease;
}
.trio-card:hover .trio-card-img img {
  transform: scale(1.07);
  filter: saturate(1);
}
.trio-card-body {
  padding: 24px 26px 28px;
  border-top: 1px solid var(--line);
}
.trio-cat {
  font-family: 'Inter', sans-serif;
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--green-400);
  margin-bottom: 10px;
}
.trio-card-body h3 {
  font-family: 'Cormorant Garant', serif;
  font-size: 1.35rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.2;
  margin-bottom: 8px;
  color: var(--text);
}
.trio-card-body p {
  font-size: .87rem;
  line-height: 1.7;
  color: var(--muted);
}

/* ——— METHOD (fond sombre) ——— */
.sticky-method {
  background: var(--green-900);
  padding: 130px 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}
.sticky-grid { display: grid; gap: 70px; align-items: start; }
.sticky-title { align-self: start; }
.sticky-title h2 { color: var(--cream); font-style: italic; font-weight: 300; }
.sticky-title .eyebrow { color: var(--sage); }
.sticky-title .eyebrow::before { background: var(--sage); }
.sticky-title p { color: rgba(237,232,220,.4); margin-top: 22px; max-width: 440px; font-size: .97rem; }

.method-premium-list {
  display: grid;
  gap: 1px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
  border-radius: var(--r);
  overflow: hidden;
}
.method-premium-card {
  background: var(--green-900);
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 0 24px;
  align-items: start;
  transition: background .3s ease;
}
.method-premium-card:hover { background: var(--green-800); }
.method-premium-card strong {
  font-family: 'Cormorant Garant', serif;
  font-size: 2.6rem;
  font-weight: 300;
  color: rgba(237,232,220,.08);
  line-height: 1;
  display: block;
  padding-top: 4px;
}
.method-premium-card h3 {
  color: rgba(237,232,220,.88);
  font-family: 'Inter', sans-serif;
  font-size: .97rem;
  font-weight: 500;
  letter-spacing: .01em;
  margin-bottom: 8px;
  line-height: 1.4;
}
.method-premium-card p { color: rgba(237,232,220,.35); font-size: .88rem; line-height: 1.72; }

/* ——— REALISATIONS ——— */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 56px;
}
.filter-btn {
  height: 40px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .08em;
  cursor: pointer;
  color: var(--muted);
  transition: all .25s ease;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--black);
  color: var(--cream);
  border-color: var(--black);
}

.work-grid {
  display: grid;
  gap: 24px;
}
.work-card {
  overflow: hidden;
  background: transparent;
  transition: .3s ease;
  position: relative;
}
.work-card-img {
  position: relative;
  overflow: hidden;
  border-radius: var(--r);
}
.work-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.25,.46,.45,.94), filter .5s ease;
  filter: saturate(.6) brightness(.95);
  display: block;
}
.work-card:hover img {
  transform: scale(1.08);
  filter: saturate(1) brightness(.9);
}
.work-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7,16,10,.0);
  transition: background .4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.work-card:hover .work-card-overlay {
  background: rgba(7,16,10,.3);
}
.work-card-zoom {
  width: 52px; height: 52px;
  border: 1px solid rgba(237,232,220,.6);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--cream);
  font-size: 1.1rem;
  opacity: 0;
  transform: scale(.7);
  transition: all .35s ease;
}
.work-card:hover .work-card-zoom { opacity: 1; transform: scale(1); }
.work-card-info { padding: 18px 0 24px; border-bottom: 1px solid var(--line); }
.work-card span {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--green-400);
  display: block;
  margin-bottom: 6px;
}
.work-card h3 { font-size: 1.15rem; font-weight: 400; margin-bottom: 4px; }
.work-card.hidden { display: none; }

.work-card.placeholder {
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: #F3F2EE;
  display: flex;
  align-items: flex-end;
}
.work-card.placeholder .work-card-info {
  padding: 24px 24px 28px;
  border-bottom: none;
}

/* ——— BLOG ——— */
.blog-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}
.blog-card {
  background: var(--white);
  overflow: hidden;
  transition: background .3s ease;
}
.blog-card:hover { background: #F3F2EE; }
.blog-card-img {
  overflow: hidden;
  position: relative;
}
.blog-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform .8s ease, filter .5s ease;
  filter: saturate(.55);
  display: block;
}
.blog-card:hover img { transform: scale(1.05); filter: saturate(1); }
.blog-card-body { padding: 28px 28px 34px; }
.blog-card-meta {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--green-400);
  margin-bottom: 12px;
}
.blog-card h3 { font-size: clamp(1.05rem, 2vw, 1.42rem); font-weight: 400; margin-bottom: 10px; line-height: 1.2; }
.blog-card p { font-size: .88rem; line-height: 1.72; }
.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-500);
  transition: gap .25s ease;
}
.blog-card-link::after { content: "→"; }
.blog-card:hover .blog-card-link { gap: 14px; }

/* ——— CTA FINAL ——— */
.cta-final {
  text-align: center;
  padding: 170px 0;
  background: var(--green-900);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: "CV";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  font-family: 'Cormorant Garant', serif;
  font-size: 50vw;
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px rgba(237,232,220,.03);
  pointer-events: none;
  user-select: none;
  letter-spacing: -.08em;
  line-height: 1;
}
.cta-final .eyebrow { color: var(--sage); justify-content: center; }
.cta-final .eyebrow::before { background: var(--sage); }
.cta-final h2 { color: var(--cream); font-style: italic; font-weight: 300; position: relative; z-index: 1; }
.cta-final p { color: rgba(237,232,220,.45); margin: 22px auto 40px; max-width: 520px; position: relative; z-index: 1; }

/* ——— FOOTER ——— */
.site-footer {
  background: var(--green-950);
  padding: 100px 0 0;
  border-top: 1px solid var(--line-light);
}
.footer-top {
  display: grid;
  gap: 60px;
  padding-bottom: 70px;
  border-bottom: 1px solid var(--line-light);
}
.footer-brand .brand { margin-bottom: 20px; display: inline-flex; }
.footer-brand .brand img { background: rgba(255,255,255,.06); }
.site-footer .footer-desc {
  color: rgba(237,232,220,.35);
  max-width: 360px;
  font-size: .87rem;
  line-height: 1.75;
}
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(237,232,220,.45);
  margin-bottom: 24px;
}
.footer-col a, .footer-col span {
  display: block;
  margin-bottom: 12px;
  color: rgba(237,232,220,.32);
  font-size: .87rem;
  transition: color .22s ease;
  line-height: 1.5;
}
.footer-col a:hover { color: rgba(237,232,220,.8); }
.footer-col .footer-contact-item {
  padding: 16px 18px;
  border: 1px solid var(--line-light);
  border-radius: var(--r);
  margin-bottom: 8px;
  transition: background .25s ease, border-color .25s ease;
}
.footer-col .footer-contact-item:hover {
  background: rgba(255,255,255,.04);
  border-color: rgba(237,232,220,.18);
}
.footer-col .footer-contact-label {
  font-size: .64rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sage);
  display: block;
  margin-bottom: 4px;
}
.footer-col .footer-contact-value {
  color: rgba(237,232,220,.7);
  font-size: .9rem;
}

.footer-bottom {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding: 24px clamp(20px, 2.5vw, 48px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: .76rem;
  color: rgba(237,232,220,.22);
}
.footer-bottom a { color: rgba(237,232,220,.22); transition: color .22s ease; }
.footer-bottom a:hover { color: rgba(237,232,220,.65); }

/* ——— CONTACT ——— */
.contact-grid { display: grid; gap: 3px; align-items: start; }
.contact-info-panel {
  padding: 48px;
  background: var(--green-900);
  border-radius: var(--r);
  border: 1px solid var(--line-light);
  position: relative;
  overflow: hidden;
}
.contact-info-panel::after {
  content: "";
  position: absolute;
  right: -80px; bottom: -80px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(90,148,100,.08);
}
.contact-info-panel h2 { color: var(--cream); font-style: italic; font-size: clamp(1.8rem, 3.5vw, 3.2rem); }
.contact-info-panel .eyebrow { color: var(--sage); }
.contact-info-panel .eyebrow::before { background: var(--sage); }
.contact-info-panel > p { color: rgba(237,232,220,.38); margin-top: 18px; font-size: .9rem; }
.contact-info-list { position: relative; z-index: 2; display: grid; gap: 10px; margin-top: 34px; }
.contact-info-item {
  display: block;
  padding: 18px 22px;
  border: 1px solid var(--line-light);
  border-radius: var(--r);
  background: rgba(255,255,255,.03);
  transition: .3s ease;
}
a.contact-info-item:hover { background: rgba(255,255,255,.06); transform: translateX(5px); }
.contact-info-label {
  display: block;
  color: var(--sage);
  font-size: .66rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .18em;
  margin-bottom: 5px;
  font-family: 'Inter', sans-serif;
}
.contact-info-value { color: rgba(237,232,220,.75); font-size: .95rem; }

.contact-form-panel {
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: rgba(255,255,255,.82);
}
.form-head { margin-bottom: 34px; }
.form-head h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-style: italic; }
.form-row { display: grid; gap: 14px; }

input, select, textarea, button[type="submit"] {
  font-family: 'Inter', sans-serif;
}
input, select, textarea {
  width: 100%;
  font-size: .9rem;
  font-weight: 400;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--text);
  border-radius: var(--r);
  padding: 16px 18px;
  outline: none;
  transition: border-color .22s ease, box-shadow .22s ease;
  -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--green-400);
  box-shadow: 0 0 0 3px rgba(30,90,52,.08);
}
input::placeholder, textarea::placeholder { color: var(--muted); opacity: .6; }
textarea { min-height: 150px; resize: vertical; }
select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A6E5C' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 18px center; padding-right: 44px; }

/* ——— ARTICLE ——— */
.article-hero { min-height: 65vh; }
.article-layout {
  display: grid;
  gap: 48px;
  align-items: start;
}
.article-content {
  font-size: 1.02rem;
  line-height: 1.88;
}
.article-content h2 { margin: 50px 0 18px; font-style: italic; font-size: clamp(1.8rem, 4vw, 3.2rem); }
.article-content p { margin-bottom: 22px; }
.article-content ul, .article-content ol { margin: 0 0 22px 22px; color: var(--muted); line-height: 1.88; }
.article-content img { width: 100%; border-radius: var(--r); margin: 24px 0; }
.article-sidebar { position: sticky; top: 110px; }
.sidebar-card {
  padding: 28px;
  background: var(--green-900);
  border: 1px solid var(--line-light);
  border-radius: var(--r);
}
.sidebar-card h4 {
  font-family: 'Cormorant Garant', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 12px;
}
.sidebar-card p { color: rgba(237,232,220,.4); font-size: .88rem; line-height: 1.7; }
.sidebar-card a[href="services.php"] { color: rgba(237,232,220,.55); font-size: .88rem; transition: color .2s; }
.sidebar-card a[href="services.php"]:hover { color: var(--cream); }
@media (min-width: 980px) { .article-layout { grid-template-columns: 1fr 300px; } }

/* ——— CONTACT extras ——— */
.contact-info-items { display: grid; gap: 10px; margin-top: 32px; position: relative; z-index: 2; }
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 20px;
  border: 1px solid var(--line-light);
  border-radius: var(--r);
  background: rgba(255,255,255,.03);
  transition: .3s ease;
}
a.contact-info-item:hover { background: rgba(255,255,255,.06); transform: translateX(5px); }
.contact-info-icon {
  font-size: 1.1rem;
  opacity: .6;
  flex-shrink: 0;
  padding-top: 1px;
}
.contact-info-item strong { display: block; color: var(--sage); font-family: 'Inter', sans-serif; font-size: .66rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 4px; }
.contact-info-item span { display: block; color: rgba(237,232,220,.72); font-size: .9rem; }

.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-family: 'Inter', sans-serif; font-size: .74rem; font-weight: 500; letter-spacing: .06em; color: var(--muted); }
.form-group + .form-group { margin-top: 14px; }

.form-success {
  padding: 48px 36px;
  background: rgba(30,90,52,.06);
  border: 1px solid rgba(30,90,52,.15);
  border-radius: var(--r);
  text-align: center;
}
.form-success h3 { font-style: italic; font-size: 2rem; margin-bottom: 12px; }
.form-success p { color: var(--muted); }

.form-errors {
  padding: 16px 20px;
  background: rgba(200,60,60,.06);
  border: 1px solid rgba(200,60,60,.18);
  border-radius: var(--r);
  margin-bottom: 22px;
}
.form-errors p { color: #9B3535; font-size: .88rem; margin: 0 0 6px; }
.form-errors p:last-child { margin-bottom: 0; }

/* ——— MENTIONS ——— */
.mentions-content { padding: 80px 0 120px; }
.mentions-content .container { max-width: 820px; }
.mentions-content h2 { font-size: 1.8rem; margin: 44px 0 14px; font-style: italic; }
.mentions-content p, .mentions-content li { font-size: .98rem; line-height: 1.82; margin-bottom: 14px; }

/* ——— REVEALS ——— */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1s cubic-bezier(.25,.46,.45,.94),
              transform 1s cubic-bezier(.25,.46,.45,.94);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay  { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }
.delay-3 { transition-delay: .36s; }

/* Split text */
.split-text .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity .7s cubic-bezier(.25,.46,.45,.94),
              transform .7s cubic-bezier(.25,.46,.45,.94);
}
.split-text.visible .char { opacity: 1; transform: translateY(0); }

/* ——— RESPONSIVE ——— */
@media (min-width: 760px) {
  /* hero-grid: centré, pas de colonnes */
  .intro-edito-grid { grid-template-columns: auto 1fr; align-items: end; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1.4fr .7fr 1fr; }
}

@media (min-width: 980px) {
  .showcase-grid {
    grid-template-columns: 1.25fr .75fr;
    grid-template-rows: 600px;
    align-items: stretch;
  }
  .showcase-card { height: 100%; }
  .work-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
  .sticky-grid { grid-template-columns: .72fr 1.28fr; }
  .sticky-title { position: sticky; top: 110px; }
  .contact-grid { grid-template-columns: .7fr 1.3fr; }
  .contact-info-panel { position: sticky; top: 110px; }
}

@media (max-width: 860px) {
  .burger { display: flex; }
  .nav {
    position: fixed;
    top: 96px; left: 12px; right: 12px;
    display: grid; gap: 0;
    background: rgba(7,16,10,.97);
    border: 1px solid var(--line-light);
    border-radius: var(--r);
    box-shadow: 0 24px 70px rgba(0,0,0,.4);
    opacity: 0; transform: translateY(-10px);
    pointer-events: none; transition: .28s ease;
  }
  .nav.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav a {
    padding: 16px 22px;
    border-bottom: 1px solid var(--line-light);
    color: rgba(237,232,220,.65);
  }
  .nav a::after { display: none; }
  .nav-cta { margin: 10px 22px 20px; justify-content: center; }

  .hero { min-height: 100svh; padding: 100px 0 80px; }
  .hero-scroll { display: none; }
  .page-hero { min-height: 65vh; }
  .intro-number-ghost { font-size: clamp(5rem, 28vw, 9rem); }
  .immersive-content { padding: 28px 22px; }
  .section { padding: 90px 0; }
  .method-premium-card { grid-template-columns: 1fr; gap: 10px; }
  .method-premium-card strong { font-size: 1rem; opacity: .5; }
  .hero-stats { display: flex; flex-wrap: wrap; }
  .hero-stat { flex: 1; min-width: 120px; }
}

@media (max-width: 580px) {
  .container { padding-inline: 18px; }
  .header-inner { padding-inline: 18px; }
  .footer-bottom { padding-inline: 18px; }
  h1 { font-size: clamp(2.8rem, 15vw, 4.5rem); }
  h2 { font-size: clamp(2rem, 11vw, 3.6rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .section { padding: 72px 0; }
  .cta-final { padding: 110px 0; }
  .service-item { grid-template-columns: 1fr; }
  .service-item-num, .service-arrow { display: none; }
  .showcase-card img { min-height: 320px; }
  .immersive-section { height: 80vh; }
}