/* ==========================================================================
   KAIROS Hospitality Acquisition — Design System
   ========================================================================== */

:root {
  --green-deep: #2E3A22;
  --green: #3E4A2E;
  --green-soft: #5B6E42;
  --gold: #A9814A;
  --gold-deep: #8B6F3E;
  --cream: #FAF8F3;
  --white: #FFFFFF;
  --black: #14140F;
  --grey-line: #E7E3D8;
  --grey-soft: #F4F2EA;

  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1240px;
  --radius: 4px;
  --radius-lg: 18px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--black);
  line-height: 1.12;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.6rem, 5.5vw, 5rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 3.6vw, 3.1rem); font-weight: 400; }
h3 { font-size: clamp(1.35rem, 2vw, 1.7rem); }
h4 { font-size: 1.1rem; }

p { margin: 0 0 1.2em; color: #3A3A34; }
a { color: inherit; text-decoration: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
section { position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--gold-deep);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-primary:hover { background: var(--green-deep); border-color: var(--green-deep); transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(46,58,34,0.5); }
.btn-gold { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-deep); border-color: var(--gold-deep); transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(139,111,62,0.55); }
.btn-outline { background: transparent; color: var(--black); border-color: var(--black); }
.btn-outline:hover { background: var(--black); color: var(--white); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline-light:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.btn-block { width: 100%; }

/* ---------- Nav (solid deep-green editorial bar — Wellina-style) ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  background: var(--green-deep);
  padding: 0;
  transition: all 0.4s var(--ease);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav .container {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 16px 32px; background: transparent; border: none; box-shadow: none;
}
.nav.is-scrolled .container { padding: 12px 32px; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-style: italic; font-size: 1.2rem; letter-spacing: 0.01em; }
.nav-logo img { height: 30px; width: auto; filter: brightness(0) invert(1); }
.nav-logo-word { color: var(--white); }

.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-size: 0.76rem; font-weight: 500; letter-spacing: 0.02em; text-transform: none;
  color: rgba(255,255,255,0.82); padding: 8px 14px; border-radius: 999px; transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.nav-links a:hover { background: rgba(255,255,255,0.08); color: var(--white); }
.nav-links a.active { background: rgba(255,255,255,0.12); color: var(--white); }

.nav-right { display: flex; align-items: center; gap: 14px; }
.lang-toggle { display: flex; border: 1px solid rgba(255,255,255,0.25); border-radius: 20px; overflow: hidden; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.05em; color: rgba(255,255,255,0.85); }
.lang-toggle button { background: transparent; border: none; color: inherit; padding: 6px 12px; cursor: pointer; font: inherit; letter-spacing: inherit; }
.lang-toggle button.active { background: var(--gold); color: var(--white); }
.nav-right .btn-gold { padding: 10px 22px; font-size: 0.7rem; border-radius: 999px; }

.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-burger span { width: 24px; height: 2px; background: var(--white); transition: all 0.3s var(--ease); }

/* ---------- Split hero (diagonal two-tone intro, Wellina-style) ---------- */
.split-hero { position: relative; min-height: 560px; display: flex; align-items: center; overflow: hidden; background: var(--grey-soft); }
.split-hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, var(--grey-soft) 0%, var(--grey-soft) 42%, transparent 42.5%);
  z-index: 1;
}
.split-hero-img { position: absolute; inset: 0; z-index: 0; }
.split-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.split-hero-content { position: relative; z-index: 2; max-width: 560px; padding: 0 8vw; }
.split-hero .eyebrow { color: var(--gold-deep); }
.split-hero h1 { font-size: clamp(2.2rem, 4.2vw, 3.6rem); line-height: 1.05; margin: 0 0 20px; }
.split-hero h1 em { color: var(--gold-deep); font-style: italic; }
@media (max-width: 860px) {
  .split-hero { min-height: 480px; }
  .split-hero::before { background: linear-gradient(180deg, var(--grey-soft) 0%, var(--grey-soft) 55%, transparent 60%); }
  .split-hero-content { max-width: 100%; padding: 40px 24px 0; }
}

/* ---------- Category cards (3-up rounded, pill overlay) ---------- */
.cat-cards { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
@media (max-width: 960px) { .cat-cards { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .cat-cards { grid-template-columns: repeat(2, 1fr); } }

/* ---------- System chain (storytelling ticker) ---------- */
.system-intro { max-width: 720px; margin: 0 auto; text-align: center; }
.system-intro h2 em { color: var(--gold-deep); font-style: italic; }
.chain-marquee-wrap { overflow: hidden; background: var(--green-deep); padding: 28px 0; margin: 50px 0; }
.chain-marquee { display: flex; gap: 36px; width: max-content; animation: marquee 32s linear infinite; align-items: center; }
.chain-marquee span { font-family: var(--font-display); font-style: italic; font-size: 1.15rem; color: rgba(255,255,255,0.9); white-space: nowrap; }
.chain-marquee i { color: var(--gold); font-style: normal; }
.system-outro { max-width: 640px; margin: 0 auto; text-align: center; }
.system-outro strong { color: var(--gold-deep); }
.cat-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; }
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.cat-card:hover img { transform: scale(1.05); }
.cat-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(20,20,15,0.55) 100%); }
.cat-card-label { position: absolute; top: 20px; left: 20px; z-index: 2; color: var(--white); font-family: var(--font-display); font-size: 1.15rem; }
.cat-card-btn {
  position: absolute; left: 20px; bottom: 20px; z-index: 2;
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gold); color: var(--white); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase; padding: 9px 18px; border-radius: 999px;
}

/* ---------- Icon badge row (4-up circles) ---------- */
.icon-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.icon-badge-circle {
  width: 66px; height: 66px; border-radius: 50%; margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(46,58,34,0.07); color: var(--green-deep);
}
.icon-row h4 { font-family: var(--font-display); font-size: 1.05rem; margin: 0 0 8px; }
.icon-row p { font-size: 0.85rem; color: #6a6a60; margin: 0; }

/* ---------- Dark testimonial split (quote + verified badge) ---------- */
.dark-testimonial { background: var(--green-deep); padding: 100px 0; }
.dark-testimonial .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.dark-testimonial img { border-radius: var(--radius-lg); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.dark-testimonial blockquote {
  font-family: var(--font-display); font-style: italic; font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  color: var(--white); line-height: 1.4; margin: 0 0 28px;
}
.verified-badge { display: flex; align-items: center; gap: 12px; }
.verified-badge .av { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.verified-badge strong { color: var(--white); font-size: 0.92rem; display: block; }
.verified-badge span { display: flex; align-items: center; gap: 5px; color: var(--gold); font-size: 0.76rem; }
@media (max-width: 860px) { .dark-testimonial .container { grid-template-columns: 1fr; gap: 30px; } }

/* ---------- Big-serif stat cards (pale bg) ---------- */
.stat-serif-band { background: var(--grey-soft); padding: 90px 0; text-align: center; }
.stat-serif-band h2 { font-style: italic; margin-bottom: 46px; }
.stat-serif-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat-serif-card { background: var(--white); border-radius: var(--radius-lg); padding: 34px 20px; }
.stat-serif-card .n { font-family: var(--font-display); font-size: clamp(2.2rem, 3.4vw, 3rem); color: var(--green-deep); display: block; }
.stat-serif-card p { font-size: 0.82rem; color: #6a6a60; margin: 10px 0 0; }
@media (max-width: 760px) { .stat-serif-cards { grid-template-columns: 1fr 1fr; } }

/* ---------- Before / After slider ---------- */
.ba-slider { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/10; cursor: ew-resize; user-select: none; }
.ba-slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-slider .ba-after { clip-path: inset(0 0 0 50%); }
.ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: var(--white); transform: translateX(-50%); box-shadow: 0 0 0 1px rgba(0,0,0,0.1); }
.ba-handle::after {
  content: "\2194"; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 42px; height: 42px; border-radius: 50%; background: var(--white); color: var(--black);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem; box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}
.ba-pill { position: absolute; bottom: 16px; z-index: 3; background: rgba(20,20,15,0.55); color: var(--white); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; padding: 7px 14px; border-radius: 999px; backdrop-filter: blur(6px); }
.ba-pill.before { left: 16px; }
.ba-pill.after { right: 16px; }

/* ---------- Checkmark list ---------- */
.check-list { list-style: none; padding: 0; margin: 20px 0; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; padding: 7px 0; font-size: 0.9rem; }
.check-list li::before { content: "\2713"; flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; background: var(--green-deep); color: var(--white); font-size: 0.65rem; display: flex; align-items: center; justify-content: center; margin-top: 1px; }

/* ---------- Service rows (dark bg, icon + text + photo alternating) ---------- */
.service-rows { background: var(--green-deep); padding: 100px 0; }
.service-row { display: grid; grid-template-columns: auto 1fr 1fr; gap: 40px; align-items: center; padding: 34px 0; border-top: 1px solid rgba(255,255,255,0.1); }
.service-row:last-child { border-bottom: 1px solid rgba(255,255,255,0.1); }
.service-row .icon-badge-circle { background: rgba(255,255,255,0.1); color: var(--white); margin: 0; }
.service-row h3 { color: var(--white); font-size: 1.3rem; margin: 0 0 8px; }
.service-row p { color: rgba(255,255,255,0.65); font-size: 0.88rem; margin: 0 0 14px; max-width: 38ch; }
.service-row img { width: 100%; aspect-ratio: 16/10; object-fit: cover; border-radius: var(--radius-lg); }
@media (max-width: 860px) { .service-row { grid-template-columns: 1fr; text-align: left; } .service-row img { order: -1; } }

/* ---------- Full-bleed banner (Wellina-style dramatic photo hero) ---------- */
.full-banner { position: relative; min-height: 460px; display: flex; align-items: center; overflow: hidden; }
.full-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.full-banner::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,20,15,0.3) 0%, rgba(20,20,15,0.68) 100%); z-index: 1; }
.full-banner .container { position: relative; z-index: 2; text-align: center; }
.full-banner .eyebrow { justify-content: center; color: var(--gold); text-shadow: 0 2px 16px rgba(0,0,0,0.5); }
.full-banner h2 { color: var(--white); font-size: clamp(1.9rem, 4vw, 3.2rem); font-style: italic; max-width: 20ch; margin: 0 auto; text-shadow: 0 2px 16px rgba(0,0,0,0.5); }
@media (max-width: 640px) { .full-banner { min-height: 340px; } }

/* ---------- Footer teaser strip ---------- */
.footer-teaser { background: var(--white); padding: 60px 0; border-bottom: 1px solid var(--grey-line); }
.footer-teaser .container { display: grid; grid-template-columns: 1.2fr repeat(3, 1fr); gap: 30px; align-items: center; }
.footer-teaser h3 { font-size: 1.3rem; margin: 0; max-width: 16ch; }
.footer-teaser-item { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
.footer-teaser-item img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: var(--radius-lg); }
.footer-teaser-item a { display: inline-flex; align-items: center; gap: 6px; font-size: 0.82rem; font-weight: 600; color: var(--black); }
.footer-teaser-item a svg { width: 22px; height: 22px; border-radius: 50%; border: 1px solid var(--grey-line); padding: 5px; }
@media (max-width: 860px) { .footer-teaser .container { grid-template-columns: 1fr 1fr; } .footer-teaser h3 { grid-column: 1/-1; max-width: none; } }

/* ---------- Glow timeline (progression that builds over time) ---------- */
.glow-timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative; }
.glow-timeline::before { content: ""; position: absolute; top: 90px; left: 16.6%; right: 16.6%; height: 1px; background: var(--grey-line); z-index: 0; }
.glow-step { position: relative; z-index: 1; text-align: center; padding: 0 24px; }
.glow-step img { width: 84px; height: 84px; border-radius: 50%; object-fit: cover; margin: 0 auto 20px; border: 4px solid var(--white); box-shadow: 0 8px 24px rgba(20,20,15,0.15); }
.glow-week { display: inline-block; background: var(--gold); color: var(--white); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 5px 14px; border-radius: 999px; margin-bottom: 14px; }
.glow-step h4 { font-family: var(--font-display); font-size: 1.15rem; margin: 0 0 10px; }
.glow-step p { font-size: 0.86rem; color: #6a6a60; max-width: 26ch; margin: 0 auto; }
@media (max-width: 760px) {
  .glow-timeline { grid-template-columns: 1fr; gap: 40px; }
  .glow-timeline::before { display: none; }
}

/* ---------- Journey carousel (horizontal scroll play cards) ---------- */
.journey-carousel { display: flex; gap: 18px; overflow-x: auto; padding-bottom: 10px; scroll-snap-type: x mandatory; }
.journey-card { position: relative; flex: 0 0 240px; aspect-ratio: 3/4; border-radius: var(--radius-lg); overflow: hidden; scroll-snap-align: start; }
.journey-card img { width: 100%; height: 100%; object-fit: cover; }
.journey-play {
  position: absolute; top: 16px; right: 16px; width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.85); display: flex; align-items: center; justify-content: center;
}

/* ---------- Hero Video ---------- */
.hero {
  position: relative; height: 100vh; min-height: 640px;
  display: flex; align-items: flex-end;
  overflow: hidden; background: var(--black);
}
.hero-media { position: absolute; inset: 0; width: 100%; height: 100%; overflow: hidden; }
.hero-media video {
  position: absolute; top: 50%; left: 50%; width: 100%; height: 100%;
  object-fit: cover; transform: translate(-50%, -50%);
  opacity: 0; transition: opacity 1.4s ease;
}
.hero-media video.is-active { opacity: 1; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,20,15,0.5) 0%, rgba(20,20,15,0.45) 45%, rgba(20,20,15,0.65) 70%, rgba(20,20,15,0.9) 100%);
  z-index: 1;
}
.hero-fade { position: absolute; inset: 0; background: #000; opacity: 0; pointer-events: none; transition: opacity 0.6s ease; z-index: 2; }
.hero-fade.is-active { opacity: 1; }

.hero-content { position: relative; z-index: 3; width: 100%; padding: 0 0 90px; color: var(--white); }
.hero-content .eyebrow, .hero-content h1, .hero-content .hero-sub { text-shadow: 0 1px 3px rgba(0,0,0,0.8), 0 4px 20px rgba(0,0,0,0.6); }
.hero-content .eyebrow { color: var(--gold); }
.hero-content .eyebrow::before { display: none; }
.hero h1 { color: var(--white); max-width: 15ch; }
.hero h1.hero-title-sm { font-size: clamp(2.6rem, 6vw, 5.6rem); line-height: 0.98; letter-spacing: -0.02em; max-width: 16ch; font-weight: 400; }
.hero-sub { color: rgba(255,255,255,0.82); font-size: 1.1rem; max-width: 46ch; margin-bottom: 2em; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-controls { position: absolute; right: 32px; bottom: 40px; z-index: 4; display: flex; gap: 10px; }
.hero-controls button {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.5);
  background: rgba(20,20,15,0.25); backdrop-filter: blur(6px); color: var(--white);
  cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s;
}
.hero-controls button:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }
.hero-scroll {
  position: absolute; left: 50%; bottom: 34px; transform: translateX(-50%);
  z-index: 4; color: rgba(255,255,255,0.75); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero-scroll .line { width: 1px; height: 34px; background: rgba(255,255,255,0.4); overflow: hidden; }
.hero-scroll .line::after { content: ""; display: block; width: 100%; height: 40%; background: var(--gold); animation: scrollLine 2.2s ease-in-out infinite; }
@keyframes scrollLine { 0% { transform: translateY(-100%);} 100% { transform: translateY(250%);} }

/* Smaller page header (non-home hero) */
.page-header {
  position: relative; padding: 200px 0 100px; background: var(--green-deep); color: var(--white); overflow: hidden;
}
.page-header::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg, rgba(20,20,15,0.82) 0%, rgba(20,20,15,0.55) 45%, rgba(20,20,15,0.3) 100%);
}
.page-header .container { position: relative; z-index: 2; }
.page-header .eyebrow { color: var(--gold); text-shadow: 0 2px 14px rgba(0,0,0,0.5); }
.page-header .eyebrow::before { background: var(--gold); }
.page-header h1 { color: var(--white); max-width: 20ch; text-shadow: 0 2px 14px rgba(0,0,0,0.5); }
.page-header p { color: rgba(255,255,255,0.85); max-width: 60ch; font-size: 1.08rem; text-shadow: 0 2px 14px rgba(0,0,0,0.5); }
.page-header-img { position: absolute; inset: 0; z-index: 0; }
.page-header-img img { width: 100%; height: 100%; object-fit: cover; opacity: 1; }

/* ---------- Sections ---------- */
.section { padding: 130px 0; }
.section-sm { padding: 90px 0; }
.section-cream { background: var(--cream); }
.section-dark { background: var(--cream); color: var(--black); }
.section-dark h2, .section-dark h3 { color: var(--black); }
.section-dark p { color: rgba(20,20,15,0.72); }
.section-dark .eyebrow { color: var(--gold-deep); }
.section-dark .eyebrow::before { background: var(--gold-deep); }
.section-dark .pillar-card { background: rgba(20,20,15,0.03); border-color: rgba(20,20,15,0.12); }

.section-head { max-width: 720px; margin-bottom: 64px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }

/* ---------- Grid utilities ---------- */
.grid { display: grid; gap: 32px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Pillars / feature cards ---------- */
.pillar-card {
  background: var(--white); border: 1px solid var(--grey-line); padding: 44px 36px;
  transition: all 0.4s var(--ease);
}
.pillar-card:hover { border-color: var(--gold); transform: translateY(-6px); box-shadow: 0 24px 50px -30px rgba(0,0,0,0.25); }
.pillar-num { font-family: var(--font-display); font-size: 0.85rem; color: var(--gold-deep); letter-spacing: 0.15em; margin-bottom: 20px; display: block; }
.pillar-card h3 { margin-bottom: 14px; }
.pillar-card p { margin-bottom: 0; font-size: 0.95rem; }

/* ---------- Capsules (photo/video cards) ---------- */
.capsule-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.capsule {
  position: relative; aspect-ratio: 1/1; overflow: hidden; border-radius: var(--radius-lg);
  cursor: pointer;
}
.capsule img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.capsule:hover img { transform: scale(1.08); }
.capsule::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,0.72) 100%); }
.capsule-tag {
  position: absolute; left: 20px; bottom: 18px; z-index: 2; color: var(--white);
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600;
}
.capsule-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,0.9);
  display: flex; align-items: center; justify-content: center; z-index: 2;
  opacity: 0; transition: opacity 0.3s;
}
.capsule:hover .capsule-play { opacity: 1; }

/* ---------- Instagram feed mockup ---------- */
.feed-mock { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; border-radius: var(--radius-lg); overflow: hidden; }
.feed-mock img { aspect-ratio: 1/1; object-fit: cover; width: 100%; height: 100%; }

/* ---------- Phone mockup ---------- */
.phone-mockup {
  position: relative; width: 280px; height: 570px; margin: 0 auto;
  border-radius: 42px; background: var(--black); padding: 14px;
  box-shadow: 0 60px 90px -40px rgba(0,0,0,0.45);
}
.phone-mockup::before {
  content: ""; position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 90px; height: 22px; background: var(--black); border-radius: 0 0 16px 16px; z-index: 3;
}
.phone-screen { width: 100%; height: 100%; border-radius: 30px; overflow: hidden; position: relative; }
.phone-screen img, .phone-screen video { width: 100%; height: 100%; object-fit: cover; }
.phone-float { position: absolute; z-index: 2; }

/* ---------- Mosaic gallery (remplace le mockup téléphone) ---------- */
.mosaic-gallery {
  display: grid; grid-template-columns: 1.1fr 1fr; grid-template-rows: 130px 130px;
  gap: 14px; max-width: 440px; width: 100%;
}
.mosaic-gallery a, .mosaic-gallery .m-item { display: block; border-radius: 16px; overflow: hidden; box-shadow: 0 20px 40px -24px rgba(20,20,15,0.35); }
.mosaic-gallery img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s var(--ease); }
.mosaic-gallery .m-item:hover img { transform: scale(1.06); }
.mosaic-gallery .m-tall { grid-row: span 2; }
@media (max-width: 560px) { .mosaic-gallery { grid-template-rows: 105px 105px; max-width: 100%; } }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; }
.team-card { text-align: left; }
.team-photo { aspect-ratio: 3/4; overflow: hidden; border-radius: var(--radius); margin-bottom: 18px; background: var(--grey-soft); position: relative; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.team-card:hover .team-photo img { transform: scale(1.05); }
.team-role { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-deep); font-weight: 700; margin-bottom: 4px; }
.team-name { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 8px; }
.team-bio { font-size: 0.88rem; color: #5a5a52; margin: 0; }

/* ---------- Stats ---------- */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat-num { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.4rem); color: var(--gold); display: block; margin-bottom: 6px; }
.stat-label { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.7); }

/* ---------- Cards / process steps ---------- */
.step-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.step { padding-top: 28px; border-top: 1px solid var(--grey-line); }
.step-num { font-family: var(--font-display); font-size: 1.6rem; color: var(--gold); }

/* ---------- Problem/Solution split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.split-block { padding: 64px 56px; }
.split-problem { background: var(--cream); color: var(--black); }
.split-solution { background: var(--green-deep); color: var(--white); }
.split-block h3 { font-size: 1.5rem; }
.split-problem h3 { color: var(--black); }
.split-solution h3 { color: var(--white); }
.split-block ul { padding: 0; margin: 0; list-style: none; }
.split-block li { padding: 14px 0; font-size: 0.98rem; display: flex; gap: 12px; }
.split-problem li { border-top: 1px solid var(--grey-line); color: rgba(20,20,15,0.75); }
.split-solution li { border-top: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.85); }
.split-block li:first-of-type { border-top: none; }

/* ---------- Case study cards ---------- */
.case-card { border: 1px solid var(--grey-line); border-radius: var(--radius-lg); overflow: hidden; background: var(--white); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.case-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -34px rgba(20,20,15,0.3); }
.case-media { aspect-ratio: 16/10; overflow: hidden; position: relative; }
.case-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.case-card:hover .case-media img { transform: scale(1.05); }
.case-metric-badge { position: absolute; bottom: 16px; left: 16px; z-index: 1; background: rgba(250,248,243,0.95); backdrop-filter: blur(6px); border-radius: 10px; padding: 10px 18px; }
.case-metric-badge .num { font-family: var(--font-display); font-size: 1.6rem; color: var(--green-deep); display: block; line-height: 1; }
.case-metric-badge .label { font-size: 0.62rem; letter-spacing: 0.06em; text-transform: uppercase; color: #5a5a52; }
.case-body { padding: 32px; }
.case-tag { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-deep); font-weight: 700; margin-bottom: 10px; }
.case-metrics { display: flex; gap: 28px; margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--grey-line); }
.case-metric-num { font-family: var(--font-display); font-size: 1.7rem; color: var(--green); display: block; }
.case-metric-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: #7a7a70; }

/* ---------- Investment tiers ---------- */
.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: stretch; }
.tier-card { border: 1px solid var(--grey-line); padding: 40px 32px; display: flex; flex-direction: column; background: var(--white); position: relative; }
.tier-card.is-featured { border-color: var(--gold); background: var(--green-deep); color: var(--white); transform: scale(1.03); box-shadow: 0 30px 60px -30px rgba(46,58,34,0.5); }
.tier-card.is-featured h3, .tier-card.is-featured .tier-price { color: var(--white); }
.tier-name { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; color: var(--gold-deep); margin-bottom: 10px; }
.tier-card.is-featured .tier-name { color: var(--gold); }
.tier-price { font-family: var(--font-display); font-size: 2rem; margin-bottom: 18px; }
.tier-list { list-style: none; padding: 0; margin: 0 0 28px; flex: 1; }
.tier-list li { padding: 10px 0; border-top: 1px solid var(--grey-line); font-size: 0.92rem; display: flex; gap: 10px; }
.tier-card.is-featured .tier-list li { border-top-color: rgba(255,255,255,0.15); }
.tier-list li:first-child { border-top: none; }
.tier-intro { margin-bottom: 16px; }
.tier-intro strong { display: block; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.08em; color: #8a8a80; margin-bottom: 4px; }
.tier-card.is-featured .tier-intro strong { color: rgba(255,255,255,0.55); }
.tier-intro span { font-size: 0.86rem; }
.tier-group-title { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; color: var(--gold-deep); margin: 20px 0 4px; }
.tier-card.is-featured .tier-group-title { color: var(--gold); }
.tier-list { margin-bottom: 4px; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #55554d; }
.field input, .field select, .field textarea {
  border: none; border-bottom: 1px solid var(--grey-line); background: transparent;
  padding: 12px 4px; font-family: var(--font-body); font-size: 1rem; color: var(--black);
  transition: border-color 0.3s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field textarea { resize: vertical; min-height: 100px; }
.radio-group { display: flex; flex-wrap: wrap; gap: 10px; }
.radio-pill { position: relative; }
.radio-pill input { position: absolute; opacity: 0; }
.radio-pill span {
  display: inline-block; padding: 11px 20px; border: 1px solid var(--grey-line); border-radius: 30px;
  font-size: 0.85rem; cursor: pointer; transition: all 0.25s;
}
.radio-pill input:checked + span { background: var(--green); color: var(--white); border-color: var(--green); }
.form-note { font-size: 0.82rem; color: #7a7a70; margin-top: -8px; }
.form-success { display: none; text-align: center; padding: 60px 20px; }
.form-success.is-visible { display: block; }

/* ---------- Diagnostic tool ---------- */
.diag-box { background: var(--white); border: 1px solid var(--grey-line); border-radius: var(--radius-lg); padding: 56px; box-shadow: 0 40px 90px -50px rgba(0,0,0,0.3); }
.diag-progress { display: flex; gap: 6px; margin-bottom: 44px; }
.diag-progress span { flex: 1; height: 3px; background: var(--grey-line); border-radius: 2px; overflow: hidden; }
.diag-progress span i { display: block; height: 100%; width: 0%; background: var(--gold); transition: width 0.4s var(--ease); }
.diag-step { display: none; }
.diag-step.is-active { display: block; animation: fadeUp 0.5s var(--ease); }
.diag-step-label { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-deep); font-weight: 700; margin-bottom: 10px; }
.diag-question { font-family: var(--font-display); font-size: 1.6rem; margin-bottom: 30px; }
.diag-options { display: grid; gap: 14px; margin-bottom: 36px; }
.diag-option {
  border: 1px solid var(--grey-line); padding: 18px 22px; border-radius: 10px; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; transition: all 0.25s;
}
.diag-option:hover { border-color: var(--gold); background: var(--cream); }
.diag-option.is-selected { border-color: var(--green); background: var(--green); color: var(--white); }
.diag-nav { display: flex; justify-content: space-between; align-items: center; }
.diag-nav .btn-outline { border-color: var(--grey-line); color: #7a7a70; }
.diag-nav .btn-outline:hover { border-color: var(--black); color: var(--black); background:transparent; }

.diag-result { text-align: center; }
.diag-score-ring { width: 190px; height: 190px; margin: 0 auto 30px; position: relative; }
.diag-score-ring svg { transform: rotate(-90deg); }
.diag-score-ring .track { fill: none; stroke: var(--grey-line); stroke-width: 8; }
.diag-score-ring .fill { fill: none; stroke: var(--gold); stroke-width: 8; stroke-linecap: round; transition: stroke-dashoffset 1.4s var(--ease); }
.diag-score-value { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.diag-score-value .num { font-family: var(--font-display); font-size: 3rem; color: var(--black); }
.diag-score-value .max { font-size: 0.8rem; color: #7a7a70; }
.diag-grade { display: inline-block; padding: 8px 20px; border-radius: 30px; background: var(--cream); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; color: var(--green); margin-bottom: 24px; }
.diag-findings { text-align: left; max-width: 560px; margin: 0 auto 36px; display: grid; gap: 14px; }
.diag-finding { display: flex; gap: 14px; padding: 16px 18px; background: var(--cream); border-radius: 10px; font-size: 0.92rem; }
.diag-finding .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); margin-top: 7px; flex-shrink: 0; }

/* ---------- Testimonial / quote ---------- */
.quote-block { max-width: 780px; margin: 0 auto; text-align: center; }
.quote-block p { font-family: var(--font-display); font-size: clamp(1.3rem, 2.4vw, 1.9rem); color: var(--black); line-height: 1.5; font-weight: 400; }
.quote-attr { font-size: 0.82rem; letter-spacing: 0.05em; color: #7a7a70; text-transform: uppercase; margin-top: 20px; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--green-deep); color: var(--white); padding: 100px 0; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, rgba(169,129,74,0.3), transparent 60%); }
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); max-width: 18ch; margin-left: auto; margin-right: auto; }
.cta-band-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }

/* ---------- Footer ---------- */
.footer { background: var(--green-deep); color: rgba(255,255,255,0.72); padding: 90px 0 30px; overflow: hidden; }
.footer-wordmark {
  font-family: var(--font-display); font-size: clamp(4rem, 15vw, 12rem); line-height: 0.85;
  color: rgba(255,255,255,0.07); text-align: center; letter-spacing: 0.03em;
  margin-top: 50px; user-select: none; pointer-events: none; white-space: nowrap;
}
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.footer-logo img { height: 42px; filter: brightness(0) invert(1); }
.footer-logo span { font-family: var(--font-display); font-size: 1.1rem; color: var(--white); }
.footer-col h4 { color: var(--white); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 20px; font-family: var(--font-body); font-weight: 700; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer-col a { font-size: 0.9rem; transition: color 0.25s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; font-size: 0.78rem; flex-wrap: wrap; gap: 12px; }

/* ---------- Live badges (engagement / notification, floating on photos) ---------- */
.live-badge {
  position: absolute; z-index: 2; background: var(--white); border-radius: 15px; padding: 3px;
  box-shadow: 0 24px 46px -20px rgba(20,20,15,0.4), 0 0 0 1px rgba(20,20,15,0.05);
  animation: liveFloat 5.5s ease-in-out infinite;
}
.live-badge-inner {
  display: flex; align-items: center; gap: 10px; background: var(--cream);
  border-radius: 12px; padding: 11px 16px; box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}
.live-badge svg { flex-shrink: 0; }
.live-badge strong { display: block; font-family: var(--font-display); font-size: 0.98rem; color: var(--black); line-height: 1.2; }
.live-badge span { font-size: 0.68rem; color: #7a7a70; letter-spacing: 0.02em; }
.live-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #4a7c3f; flex-shrink: 0; box-shadow: 0 0 0 4px rgba(74,124,63,0.15); }
@keyframes liveFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@media (max-width: 640px) { .live-badge { transform: scale(0.85); } }
.hero-badge { display: block; }
@media (max-width: 860px) { .hero-badge { display: none; } }

/* ---------- Process cards (tinted, replaces plain step row where used) ---------- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.process-card { border-radius: var(--radius-lg); padding: 32px 26px; position: relative; overflow: hidden; }
.process-card:nth-child(1) { background: var(--grey-soft); }
.process-card:nth-child(2) { background: rgba(169,129,74,0.14); }
.process-card:nth-child(3) { background: var(--green-deep); }
.process-card:nth-child(4) { background: rgba(46,58,34,0.08); }
.process-card:nth-child(3) h4, .process-card:nth-child(3) .process-num { color: var(--white); }
.process-card:nth-child(3) p { color: rgba(255,255,255,0.78); }
.process-num { font-family: var(--font-display); font-size: 1.7rem; color: var(--gold-deep); display: block; margin-bottom: 16px; }
.process-card h4 { margin-bottom: 8px; }
.process-card p { font-size: 0.88rem; margin: 0; }
@media (max-width: 860px) { .process-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .process-grid { grid-template-columns: 1fr; } }

/* ---------- Reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); filter: blur(4px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), filter 0.9s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); filter: blur(0); }
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(14px);} to { opacity: 1; transform: translateY(0);} }

/* ---------- Brand reveal ---------- */
.brand-reveal { padding: 90px 0 70px; text-align: center; background: var(--white); }
.brand-reveal img { height: 128px; width: auto; margin: 0 auto 24px; }
.brand-reveal .word { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.4rem); letter-spacing: 0.04em; color: var(--green); margin: 0; }
.brand-reveal .tagline { font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-deep); margin-top: 10px; }

/* ---------- Trust strip (real clients, real numbers) ---------- */
.trust-strip { padding: 30px 0; border-bottom: 1px solid var(--grey-line); background: var(--white); }
.trust-strip .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px 40px; }
.trust-label { font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: #9a9a90; font-weight: 600; }
.trust-item strong { display: block; font-family: var(--font-display); font-size: 1.25rem; color: var(--green-deep); line-height: 1.15; }
.trust-item span { font-size: 0.7rem; letter-spacing: 0.06em; text-transform: uppercase; color: #7a7a70; }

/* ---------- Text link with arrow (secondary action, never a button) ---------- */
.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--black); border-bottom: 1px solid currentColor; padding-bottom: 3px;
  transition: opacity 0.25s var(--ease), gap 0.25s var(--ease);
}
.link-arrow:hover { opacity: 0.7; gap: 12px; }
.link-arrow.on-dark { color: rgba(255,255,255,0.9); }

/* ---------- Monthly report mockup (the deliverable, shown) ---------- */
.report-band { position: relative; padding: 130px 0; overflow: hidden; }
.report-band > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.report-band::before { content: ""; position: absolute; inset: 0; background: linear-gradient(95deg, rgba(20,20,15,0.82) 20%, rgba(20,20,15,0.35) 100%); }
.report-band .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.report-band .eyebrow { color: var(--gold); }
.report-band .eyebrow::before { background: var(--gold); }
.report-band h2 { color: var(--white); max-width: 16ch; }
.report-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 28px 30px;
  max-width: 420px; width: 100%; margin-left: auto;
  box-shadow: 0 50px 100px -40px rgba(0,0,0,0.6);
}
.report-head { display: flex; align-items: center; gap: 10px; padding-bottom: 16px; border-bottom: 1px solid var(--grey-line); }
.report-head img { height: 24px; width: auto; }
.report-head span { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green-deep); }
.report-head em { margin-left: auto; font-style: normal; font-size: 0.7rem; color: #9a9a90; }
.report-row { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--grey-line); }
.report-row .metric { font-size: 0.85rem; color: #55554d; }
.report-row .val { font-family: var(--font-display); font-size: 1.25rem; color: var(--green-deep); white-space: nowrap; }
.report-row .val small { font-size: 0.72rem; color: #4a7c3f; font-family: var(--font-body); font-weight: 700; margin-left: 6px; }
.report-spark { display: flex; gap: 5px; align-items: flex-end; height: 42px; margin-top: 18px; }
.report-spark i { flex: 1; background: var(--gold); border-radius: 3px 3px 0 0; opacity: 0.85; }
.report-spark i:last-child { background: var(--green-deep); opacity: 1; }
.report-caption { font-size: 0.7rem; color: #9a9a90; margin: 14px 0 0; text-align: right; }

/* ---------- Diagnostic teaser card ---------- */
.diag-teaser { background: var(--green-deep); border-radius: var(--radius-lg); padding: 48px; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; position: relative; overflow: hidden; }
.diag-teaser::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at 100% 0%, rgba(169,129,74,0.28), transparent 60%); }
.diag-teaser > * { position: relative; z-index: 1; }
.diag-teaser-copy { max-width: 460px; }
.diag-teaser .eyebrow { color: var(--gold); }
.diag-teaser .eyebrow::before { background: var(--gold); }
.diag-teaser h3 { color: var(--white); margin-bottom: 10px; font-size: 1.6rem; }
.diag-teaser p { color: rgba(255,255,255,0.75); margin-bottom: 0; }
.diag-teaser-bar { display: flex; gap: 5px; margin-top: 22px; max-width: 220px; }
.diag-teaser-bar span { flex: 1; height: 3px; background: rgba(255,255,255,0.2); border-radius: 2px; }
.diag-teaser-bar span:first-child { background: var(--gold); }

/* ---------- Stat overlay on photo ---------- */
.stat-photo { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 420px; display: flex; align-items: flex-end; }
.stat-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.stat-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,20,15,0.05) 0%, rgba(20,20,15,0.8) 100%); z-index: 0; }
.stat-photo-cards { position: relative; z-index: 1; padding: 40px; display: flex; gap: 16px; flex-wrap: wrap; width: 100%; }
.stat-photo-card { background: rgba(250,248,243,0.95); backdrop-filter: blur(8px); border-radius: 12px; padding: 18px 24px; }
.stat-photo-card .num { font-family: var(--font-display); font-size: 1.7rem; color: var(--green-deep); display: block; }
.stat-photo-card .label { font-size: 0.7rem; letter-spacing: 0.05em; text-transform: uppercase; color: #5a5a52; }

/* ---------- Marquee ---------- */
.marquee-wrap { overflow: hidden; border-top: 1px solid var(--grey-line); border-bottom: 1px solid var(--grey-line); padding: 26px 0; }
.marquee { display: flex; gap: 60px; width: max-content; animation: marquee 28s linear infinite; }
.marquee span { font-family: var(--font-display); font-size: 1.3rem; color: #c9c4b3; white-space: nowrap; }
@keyframes marquee { from { transform: translateX(0);} to { transform: translateX(-50%);} }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .tier-card.is-featured { transform: none; }
}

@media (max-width: 860px) {
  .nav-links, .nav-right .lang-toggle { display: none; }
  .nav-burger { display: flex; }
  /* Menu mobile : classe simple posée sur <nav>, pas de calcul JS —
     fiable sur tous les téléphones. */
  .nav.menu-open .nav-links {
    display: flex !important; flex-direction: column !important;
    position: fixed !important; top: 70px !important; left: 0 !important; right: 0 !important; z-index: 500 !important;
    background: #fff !important; padding: 24px 32px 16px !important;
    box-shadow: 0 20px 40px -20px rgba(0,0,0,.2) !important;
    gap: 4px !important;
  }
  .nav.menu-open .nav-links li { display: block !important; list-style: none !important; }
  .nav.menu-open .nav-links a {
    display: block !important; color: #14140F !important;
    padding: 10px 0 !important; font-size: 0.95rem !important;
  }
  .nav.menu-open .nav-right .lang-toggle {
    display: flex !important;
    position: fixed !important; top: 300px !important; left: 32px !important; z-index: 501 !important;
    color: #14140F !important; border-color: #14140F !important; background: #fff !important;
    box-shadow: 0 10px 24px -14px rgba(0,0,0,.25) !important;
  }
  .nav-right .btn-gold { padding: 10px 16px; font-size: 0.68rem; letter-spacing: 0.04em; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .capsule-grid { grid-template-columns: repeat(2, 1fr); }
  .feed-mock { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
  .step-row { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .tier-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .section { padding: 90px 0; }
  .diag-box { padding: 32px 22px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }

  /* Hero mobile : hauteur FIXE en pixels (jamais en vh/svh) pour éviter
     tout redimensionnement pendant le défilement — plus de "zoom" qui saute. */
  .hero { height: 640px; min-height: 0; align-items: center; }
  .hero-content { padding-bottom: 0; }
  .hero h1.hero-title-sm { font-size: 2.2rem; max-width: 12ch; line-height: 1.05; }
  .hero .link-arrow { margin: 14px 0 0; }
  .nav .container { padding: 0 16px; }
  .nav-logo { padding: 6px 14px 6px 8px; }
  .nav-logo img { height: 26px; }
  .report-band { padding: 90px 0; }
  .report-band .container { grid-template-columns: 1fr; gap: 36px; }
  .report-card { margin: 0 auto; }
  .trust-strip .container { justify-content: flex-start; gap: 18px 28px; }
  .footer-wordmark { margin-top: 30px; }
  .hero-sub { font-size: 0.95rem; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions .btn { width: 100%; padding: 15px 20px; }
  .eyebrow { font-size: 0.66rem; letter-spacing: 0.16em; margin-bottom: 12px; }
  .diag-teaser { padding: 32px 24px; flex-direction: column; align-items: flex-start; }
  .diag-teaser .btn { width: 100%; }
  .stat-photo-cards { padding: 22px; gap: 10px; }
  .stat-photo-card { padding: 14px 18px; }
  .proof-strip .container { gap: 20px 14px; }
  .proof-item { min-width: 42%; }
}

@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .capsule-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}
