/* Ana Est bundle — généré automatiquement */

/* ---- styles.css ---- */
/* ============================================
   ANAEST — Cinematic Dark Luxury UI
   ============================================ */

:root {
  color-scheme: dark;
  --bg: #080808;
  --bg-elevated: #0f0f0f;
  --bg-card: #131313;
  --text: #f7f2ec;
  --text-muted: rgba(247, 242, 236, 0.82);
  --text-dim: rgba(247, 242, 236, 0.65);
  --accent: #d4b06a;
  --accent-glow: rgba(212, 176, 106, 0.4);
  --accent-soft: rgba(212, 176, 106, 0.1);
  --line: rgba(247, 242, 236, 0.09);
  --line-strong: rgba(247, 242, 236, 0.16);
  --font-display: 'Syne', sans-serif;
  --font-serif: 'Instrument Serif', Georgia, serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out-expo: cubic-bezier(0.87, 0, 0.13, 1);
}

html[data-theme="dark"] {
  color-scheme: dark;
}

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

html {
  font-size: 16px;
  scroll-behavior: auto;
}

html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

body {
  font-family: var(--font-display);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

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

.cursor,
.cursor-dot {
  display: none !important;
}

/* ---- Loader ---- */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease-out-expo), visibility 0.8s;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  text-align: center;
}

.loader-label {
  display: none;
}

.loader-logo {
  height: 64px;
  width: auto;
  display: block;
  margin: 0 auto 2rem;
}

.loader-bar {
  width: 200px;
  height: 1px;
  background: var(--line);
  margin: 0 auto 1rem;
  overflow: hidden;
}

.loader-progress {
  height: 100%;
  width: 0%;
  background: var(--accent);
  transition: width 0.1s linear;
}

.loader-percent {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

/* ---- WebGL Canvas (hero only) ---- */
.hero-canvas-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

#webgl-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.65) 45%, rgba(10, 10, 10, 0.4) 100%),
    linear-gradient(to top, var(--bg) 0%, transparent 35%);
  pointer-events: none;
}

/* ---- Header ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 3rem;
  padding-top: max(1rem, env(safe-area-inset-top));
  transition: transform 0.6s var(--ease-out-expo), background 0.4s, border-color 0.4s, box-shadow 0.4s;
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.92) 0%, rgba(8, 8, 8, 0.72) 55%, rgba(8, 8, 8, 0.2) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  isolation: isolate;
}

.header.scrolled {
  background: rgba(8, 8, 8, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--line-strong);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.header.hidden {
  transform: translateY(-100%);
}

.logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  flex-shrink: 0;
}

.logo-img {
  height: 44px;
  width: auto;
  display: block;
  transition: opacity 0.3s, filter 0.4s var(--ease-out-expo);
}

.logo:hover .logo-img {
  filter: drop-shadow(0 0 20px rgba(212, 176, 106, 0.25));
}

.logo-dot {
  display: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  min-width: 0;
  flex-wrap: nowrap;
  gap: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  flex-wrap: nowrap;
  min-width: 0;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  margin-left: clamp(0.5rem, 1.5vw, 1.5rem);
  padding-left: clamp(0.75rem, 1.5vw, 1.5rem);
  border-left: 1px solid var(--line);
}

.nav a,
.nav-dropdown-btn {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  white-space: nowrap;
}

.nav-links > a,
.nav-dropdown-btn {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  position: relative;
  transition: color 0.3s;
}

.nav-links > a:hover,
.nav-dropdown-btn:hover {
  color: var(--accent);
}

.nav-links > a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.4s var(--ease-out-expo);
}

.nav-links > a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--text);
  transition: transform 0.3s;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 195;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav a {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---- Sections ---- */
main {
  position: relative;
  z-index: 1;
}

.section {
  position: relative;
  padding: clamp(6rem, 12vw, 12rem) clamp(1.5rem, 5vw, 5rem);
  background: var(--bg);
}

.section--alt {
  background: var(--bg-elevated);
}

.section--dark {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elevated) 50%, var(--bg) 100%);
}

.section-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.label-num {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--accent);
}

.label-text {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.section-title {
  font-size: clamp(1.85rem, 4.2vw, 3.25rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.section-header.centered {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-desc {
  margin-top: 1.5rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- Hero ---- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 clamp(1.5rem, 5vw, 5rem);
  position: relative;
  background: var(--bg);
  overflow: hidden;
}

.hero-content {
  max-width: 1200px;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: clamp(2.75rem, 7.5vw, 6.5rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  text-shadow: 0 4px 60px rgba(0, 0, 0, 0.8);
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
  opacity: 0;
}


.hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-title .line-accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.hero-badge {
  opacity: 0;
}

.hero-actions {
  opacity: 0;
}

.hero-sub {
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  line-height: 1.8;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  opacity: 0;
}

.hero-sub strong {
  color: var(--text);
  font-weight: 600;
}

.hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: clamp(1.5rem, 5vw, 5rem);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.scroll-line {
  width: 60px;
  height: 1px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  animation: scrollPulse 2s var(--ease-in-out-expo) infinite;
}

@keyframes scrollPulse {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.hero-stats {
  position: absolute;
  bottom: 3rem;
  right: clamp(1.5rem, 5vw, 5rem);
  display: flex;
  gap: 3rem;
  z-index: 2;
}

.stat {
  text-align: right;
}

.stat-num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  display: inline;
  color: #ffffff;
}

.stat-plus {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--accent);
  font-weight: 700;
}

.stat-label {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* ---- Manifeste ---- */
.manifeste {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 100vh;
}

.section-grid {
  grid-column: 1;
}

.manifeste-quote {
  margin-bottom: 3rem;
}

.quote-line {
  font-size: clamp(1.75rem, 3.8vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  overflow: hidden;
}

.quote-accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  color: var(--accent);
}

.manifeste-text {
  max-width: 480px;
}

.manifeste-text p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.manifeste-text em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--text);
}

.manifeste-visual {
  grid-column: 2;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.manifeste-visual .manifeste-photo {
  flex: 1;
  min-height: 45vh;
}

.visual-frame {
  width: 100%;
  height: 100%;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-elevated) 0%, var(--bg) 100%);
}

.visual-shine {
  position: absolute;
  inset: -50%;
  background: conic-gradient(from 180deg at 50% 50%, transparent, var(--accent-soft), transparent, var(--accent-soft), transparent);
  animation: rotateShine 12s linear infinite;
}

@keyframes rotateShine {
  to { transform: rotate(360deg); }
}

.visual-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
}

/* ---- Services ---- */
.services {
  min-height: 300vh;
  position: relative;
}

.services .section-header {
  margin-bottom: 4rem;
}

.services-track {
  position: relative;
}

.service-card {
  position: sticky;
  top: 15vh;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 3rem;
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem);
  margin-bottom: 5vh;
  background: var(--bg-card);
  border: 1px solid var(--line);
  min-height: 50vh;
  transform-origin: center top;
  will-change: transform, opacity;
}

.service-num {
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  font-weight: 800;
  color: var(--line-strong);
  line-height: 1;
  letter-spacing: -0.05em;
}

.service-body h3 {
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.service-body p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 450px;
  margin-bottom: 1.5rem;
}

.service-tags {
  list-style: none;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.service-tags li {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--line);
  color: var(--text-muted);
}

.service-visual {
  width: 120px;
  height: 120px;
  position: relative;
}

.service-orb {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: relative;
}

.service-orb--1 {
  background: radial-gradient(circle at 30% 30%, rgba(201, 169, 98, 0.4), transparent 70%);
  box-shadow: 0 0 60px var(--accent-glow);
  animation: orbFloat 6s ease-in-out infinite;
}

.service-orb--2 {
  background: radial-gradient(circle at 60% 40%, rgba(255, 255, 255, 0.15), transparent 70%);
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.08);
  animation: orbFloat 8s ease-in-out infinite reverse;
}

.service-orb--3 {
  background: radial-gradient(circle at 50% 50%, var(--accent-soft), transparent 70%);
  box-shadow: inset 0 0 30px var(--accent-glow);
  animation: orbFloat 7s ease-in-out infinite;
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-15px) scale(1.05); }
}

/* ---- Process ---- */
.process {
  min-height: 200vh;
  padding-top: 0;
}

.process-sticky {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(6rem, 12vw, 12rem) clamp(1.5rem, 5vw, 5rem);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.process-step {
  padding: 2rem;
  border: 1px solid var(--line);
  transition: border-color 0.5s, background 0.5s, opacity 0.5s;
  opacity: 0.3;
  cursor: pointer;
}

.process-step.active {
  opacity: 1;
  border-color: var(--accent);
  background: var(--accent-soft);
}

.step-num {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  display: block;
  margin-bottom: 1rem;
}

.process-step h3 {
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.process-step p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.process-progress {
  height: 1px;
  background: var(--line);
  position: relative;
}

.process-bar {
  height: 100%;
  width: 0%;
  background: var(--accent);
  transition: width 0.1s linear;
}

/* ---- Clients ---- */
.clients {
  overflow: hidden;
}

.clients-marquee {
  margin: 4rem 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: flex;
  gap: 4rem;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
  transition: color 0.3s;
}

.marquee-track span:hover {
  color: var(--accent);
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.client-card {
  padding: 2.5rem;
  border: 1px solid var(--line);
  transition: border-color 0.4s;
}

.client-card:hover {
  border-color: var(--accent);
}

.client-sector {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 1rem;
}

.client-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ---- Territoire ---- */
.territoire {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 100vh;
}

.territoire-map {
  position: relative;
  height: 60vh;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--bg-elevated);
}

.map-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.map-glow--1 {
  width: 300px;
  height: 300px;
  background: var(--accent-glow);
  top: 20%;
  left: 30%;
  animation: glowPulse 8s ease-in-out infinite;
}

.map-glow--2 {
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  bottom: 20%;
  right: 20%;
  animation: glowPulse 10s ease-in-out infinite reverse;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

.map-pin {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  cursor: pointer;
}

.map-pin::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  animation: pinRing 2s ease-out infinite;
}

@keyframes pinRing {
  0% { transform: scale(0.5); opacity: 1; }
  100% { transform: scale(2); opacity: 0; }
}

.pin-label {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--text-muted);
}

.map-pin--metz { top: 45%; left: 42%; }
.map-pin--nancy { top: 55%; left: 48%; }
.map-pin--strasbourg { top: 50%; left: 62%; }
.map-pin--lux { top: 65%; left: 55%; }

.map-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
}

.map-line {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1;
  stroke-dasharray: 4 4;
}

.territoire-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin: 1.5rem 0 2rem;
  max-width: 450px;
}

.territoire-zones {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.territoire-zones span {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border: 1px solid var(--line-strong);
}

/* ---- CTA / Contact ---- */
.cta {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elevated) 50%, var(--bg) 100%);
}

.cta-inner {
  max-width: 700px;
  width: 100%;
  text-align: center;
}

.cta-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.cta-title {
  font-size: clamp(1.85rem, 4.2vw, 3.25rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin-bottom: 3rem;
}

.contact-form {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  transition: border-color 0.3s;
  outline: none;
  appearance: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-dim);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
}

.contact-form select {
  cursor: pointer;
}

.contact-form select option {
  background: var(--bg);
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.25rem 2.5rem;
  background: var(--accent);
  color: var(--bg);
  border: none;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s;
  margin-top: 0.5rem;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px var(--accent-glow);
}

.btn-submit svg {
  transition: transform 0.3s var(--ease-out-expo);
}

.btn-submit:hover svg {
  transform: translateX(4px);
}

.cta-info {
  margin-top: 2.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.cta-info a {
  transition: color 0.3s;
}

.cta-info a:hover {
  color: var(--accent);
}

.cta-info .sep {
  margin: 0 1rem;
  color: var(--text-dim);
}

/* ---- Footer ---- */
.footer {
  padding: 3rem clamp(1.5rem, 5vw, 5rem);
  border-top: 1px solid var(--line);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.footer-logo-link {
  display: inline-flex;
  line-height: 0;
}

.footer-logo {
  display: none;
}

.logo-img--footer {
  height: 38px;
  opacity: 0.9;
}

.logo-img--footer:hover {
  opacity: 1;
}

.footer-top p {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--accent);
}

/* ---- Split text animation helper ---- */
.split-char,
.split-word {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
}

.split-char.revealed,
.split-word.revealed {
  transform: translateY(0);
  opacity: 1;
  transition: transform 1s var(--ease-out-expo), opacity 0.8s;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .manifeste,
  .territoire {
    grid-template-columns: 1fr;
  }

  .manifeste-visual {
    height: auto;
    min-height: 0;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .clients-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-visual {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-stats {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 3rem;
    justify-content: flex-start;
    gap: 2rem;
  }

  .hero-scroll {
    display: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .footer-top,
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* ---- Nav Dropdown ---- */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-btn {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  font-family: var(--font-display);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-dropdown-btn svg {
  width: 10px;
  transition: transform 0.3s;
}

.nav-dropdown.open .nav-dropdown-btn svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 260px;
  background: rgba(14, 14, 14, 0.98);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
  padding: 0.5rem 0;
}

.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.75rem 1.25rem;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  transition: background 0.2s, color 0.2s;
}

.nav-dropdown-menu a:hover {
  background: var(--accent-soft);
  color: var(--accent);
}

.mobile-nav .mobile-services {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  margin-top: -0.5rem;
}

.mobile-nav .mobile-services a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

/* ---- Services Grid ---- */
.services-grid-section {
  padding-bottom: clamp(4rem, 8vw, 8rem);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-tile {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  transition: border-color 0.4s, transform 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.service-tile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out-expo);
}

.service-tile:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
}

.service-tile:hover::before {
  transform: scaleX(1);
}

.service-tile-num {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.service-tile h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

.service-tile p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-muted);
  flex: 1;
}

.service-tile-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

.service-tile-link svg {
  transition: transform 0.3s;
}

.service-tile:hover .service-tile-link svg {
  transform: translateX(4px);
}

/* ---- Testimonials ---- */
.testimonials {
  overflow: hidden;
}

.testimonials-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.8s var(--ease-out-expo);
}

.testimonial-card {
  flex: 0 0 100%;
  padding: 0;
  text-align: center;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.testimonial-name {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.testimonial-role {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

.testimonial-stars {
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
}

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.testimonial-prev,
.testimonial-next {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, background 0.3s;
}

.testimonial-prev:hover,
.testimonial-next:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.testimonial-dots {
  display: flex;
  gap: 0.5rem;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, border-color 0.3s;
}

.testimonial-dot.active {
  background: var(--accent);
  border-color: var(--accent);
}

.testimonials-cta {
  text-align: center;
  margin-top: 3rem;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border: 1px solid var(--line-strong);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  transition: border-color 0.3s, background 0.3s, color 0.3s;
}

.btn-outline:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
}

/* ---- Why Us ---- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.why-item {
  padding: 2rem;
  border: 1px solid var(--line);
  transition: border-color 0.4s;
}

.why-item:hover {
  border-color: var(--accent);
}

.why-icon {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.why-item h3 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.why-item p {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  padding: clamp(8rem, 15vw, 12rem) clamp(1.5rem, 5vw, 5rem) clamp(4rem, 8vw, 6rem);
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 150%;
  background: radial-gradient(ellipse, var(--accent-soft) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.page-hero-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.page-hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.page-hero-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 550px;
}

.breadcrumb {
  display: flex;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 2rem;
}

.breadcrumb a {
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb span {
  color: var(--text-muted);
}

/* ---- Page Content ---- */
.page-content {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: start;
}

.page-main h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 1.5rem;
}

.page-main p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.feature-item {
  padding: 1.5rem;
  border: 1px solid var(--line);
}

.feature-item h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.feature-item p {
  font-size: 0.8rem;
  margin-bottom: 0;
}

.page-sidebar {
  position: sticky;
  top: 120px;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
}

.page-sidebar h3 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.page-sidebar ul {
  list-style: none;
  margin-bottom: 2rem;
}

.page-sidebar li {
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.page-sidebar li::before {
  content: '→';
  color: var(--accent);
  font-size: 0.7rem;
}

.page-testimonials-mini {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.page-testimonial {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.page-testimonial blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.page-testimonial cite {
  font-size: 0.7rem;
  font-style: normal;
  letter-spacing: 0.08em;
  color: var(--text-dim);
}

.other-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.other-service-link {
  padding: 1.25rem;
  border: 1px solid var(--line);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color 0.3s, color 0.3s;
}

.other-service-link:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.footer-col a {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  padding: 0.35rem 0;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--text);
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-content {
    grid-template-columns: 1fr;
  }

  .page-sidebar {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .other-services {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .features-list {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---- css/visual.css ---- */
/* ANAEST — Visual Enhancements v2 */

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-mesh-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: blobDrift 20s ease-in-out infinite;
}

.hero-mesh-blob--1 {
  width: 500px;
  height: 500px;
  background: rgba(212, 176, 106, 0.08);
  top: -10%;
  right: -5%;
}

.hero-mesh-blob--2 {
  width: 350px;
  height: 350px;
  background: rgba(212, 176, 106, 0.05);
  bottom: 10%;
  left: 20%;
  animation-delay: -7s;
}

.hero-mesh-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.15;
  animation: lineSweep 8s linear infinite;
}

.hero-mesh-line--1 { width: 40%; top: 30%; left: -40%; }
.hero-mesh-line--2 { width: 30%; top: 60%; left: -30%; animation-delay: -4s; }

@keyframes blobDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

@keyframes lineSweep {
  to { transform: translateX(calc(100vw + 100%)); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border: 1px solid var(--line-strong);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: var(--accent);
  color: var(--bg);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px var(--accent-glow);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border: 1px solid var(--line-strong);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: border-color 0.3s, background 0.3s;
}

.btn-ghost:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.btn-ghost--subtle {
  border-color: transparent;
  color: var(--text-muted);
}

.btn-ghost--subtle:hover {
  border-color: var(--line-strong);
  color: var(--text);
  background: transparent;
}


.nav-cta {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 1.15rem !important;
  line-height: 1;
  background: var(--accent) !important;
  color: var(--bg) !important;
  font-size: 0.65rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-sizing: border-box;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  box-shadow: 0 8px 24px var(--accent-glow);
}

.stat {
  padding: 1.25rem;
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  background: rgba(20, 20, 20, 0.6);
  min-width: 120px;
  transition: border-color 0.4s;
}

.stat:hover { border-color: var(--accent); }

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.3;
  margin: 0 auto;
  max-width: 200px;
}

.service-tile {
  background: linear-gradient(145deg, var(--bg-card) 0%, rgba(20, 20, 20, 0.8) 100%);
}

.service-tile-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  transition: background 0.4s, border-color 0.4s;
}

.service-tile:hover .service-tile-icon {
  background: var(--accent-soft);
  border-color: var(--accent);
}

.visual-frame {
  background: linear-gradient(135deg, #1a1814 0%, var(--bg-elevated) 50%, #0d0d0d 100%);
}

.visual-frame::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 55%;
  height: auto;
  aspect-ratio: 220 / 72;
  background: url('../assets/logo-anaest.png') center / contain no-repeat;
  opacity: 0.12;
  pointer-events: none;
}

.testimonial-card {
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-size: 6rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.12;
  pointer-events: none;
}

.testimonials-slider {
  border: 1px solid var(--line);
  background: var(--bg-card);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-card);
  transition: border-color 0.4s;
}

.gallery-item:hover { border-color: var(--accent); }

.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }

.gallery-item-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
}

.gallery-item-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--bg-elevated), var(--bg-card));
  transition: transform 0.6s var(--ease-out-expo);
}

.gallery-item:nth-child(1) .gallery-item-bg { background: linear-gradient(135deg, #1a1810, #2a2418); }
.gallery-item:nth-child(2) .gallery-item-bg { background: linear-gradient(135deg, #101418, #1a2030); }
.gallery-item:nth-child(3) .gallery-item-bg { background: linear-gradient(135deg, #181410, #282018); }
.gallery-item:nth-child(4) .gallery-item-bg { background: linear-gradient(135deg, #101010, #1a1a1a); }
.gallery-item:nth-child(5) .gallery-item-bg { background: linear-gradient(135deg, #141810, #202818); }
.gallery-item:nth-child(6) .gallery-item-bg { background: linear-gradient(135deg, #181018, #281820); }

.gallery-item:hover .gallery-item-bg { transform: scale(1.05); }

.gallery-tag {
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.gallery-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: left;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: color 0.3s;
}

.faq-question:hover { color: var(--accent); }

.faq-icon {
  font-size: 1.25rem;
  color: var(--accent);
  transition: transform 0.4s var(--ease-out-expo);
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out-expo), padding 0.5s;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding-bottom: 1.5rem;
}

.faq-answer p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* floating-cta remplacé par quick-bar.css */

.page-hero-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(212, 176, 106, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(212, 176, 106, 0.06) 0%, transparent 50%);
}

.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.3;
  mask-image: linear-gradient(to bottom, black, transparent);
}

.process-step {
  backdrop-filter: blur(10px);
  background: rgba(20, 20, 20, 0.5);
}

.why-item {
  backdrop-filter: blur(8px);
  background: rgba(20, 20, 20, 0.4);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-card {
  padding: 2rem;
  border: 1px solid var(--line);
  text-align: center;
  transition: border-color 0.4s;
}

.contact-card:hover { border-color: var(--accent); }

.contact-card-icon {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.contact-card h3 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.contact-card p, .contact-card a {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.legal-content {
  max-width: 720px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 2.5rem 0 1rem;
  color: var(--accent);
}

.legal-content p, .legal-content li {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.legal-content ul { padding-left: 1.25rem; margin-bottom: 1rem; }

.legal-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content a:hover {
  color: var(--text);
}

.legal-content .legal-meta {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--text-dim);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.team-card {
  text-align: center;
  padding: 2rem;
  border: 1px solid var(--line);
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-soft), var(--bg-elevated));
  border: 1px solid var(--line-strong);
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
}

.team-card h3 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}

.team-card p {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.value-card {
  padding: 2rem;
  border-left: 2px solid var(--accent);
  background: var(--bg-card);
}

.value-card h3 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.value-card p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.service-page-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 2.5rem 0;
}

.service-page-step {
  padding: 1.5rem;
  border: 1px solid var(--line);
  text-align: center;
}

.service-page-step-num {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  display: block;
  margin-bottom: 0.75rem;
}

.service-page-step h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--wide { grid-column: span 1; }
  .contact-cards { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .service-page-process { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 180px; }
  .gallery-item--tall { grid-row: span 1; }
  .hero-actions { flex-direction: column; }
  .btn-ghost--subtle { display: none; }
  .values-grid { grid-template-columns: 1fr; }
  .service-page-process { grid-template-columns: 1fr; }
}

/* ---- css/before-after.css ---- */
/* Before / After comparison sliders */

.ba-section-header {
  max-width: 640px;
  margin-bottom: 3rem;
}

.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.ba-grid--honest {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 960px) {
  .ba-grid--honest {
    grid-template-columns: 1fr;
  }
}

.ba-card {
  border: 1px solid var(--line);
  background: var(--bg-card);
  overflow: hidden;
}

/* Preuves photo terrain (vitrines clients) */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.proof-card {
  border: 1px solid var(--line);
  background: var(--bg-card);
  overflow: hidden;
  transition: border-color 0.35s, box-shadow 0.35s;
}

.proof-card:hover {
  border-color: rgba(212, 176, 106, 0.45);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.proof-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-elevated);
}

.proof-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s var(--ease-out-expo, cubic-bezier(0.16, 1, 0.3, 1));
}

.proof-card:hover .proof-card__media img {
  transform: scale(1.04);
}

.proof-card--portrait .proof-card__media {
  aspect-ratio: 3 / 4;
}

.proof-card__caption {
  padding: 1rem 1.1rem 1.15rem;
}

.proof-card__caption h3 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.35rem;
}

.proof-card__caption p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.proof-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.75rem;
}

.proof-card__meta span {
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(212, 176, 106, 0.35);
  padding: 0.25rem 0.5rem;
}

.ba-card--photo .ba-photo {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-elevated);
}

.ba-card--photo .ba-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 960px) {
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .proof-card--portrait .proof-card__media {
    aspect-ratio: 4 / 3;
  }
}

.ba-slider {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
  -webkit-touch-callout: none;
}

.ba-slider.is-dragging {
  cursor: grabbing;
}

.ba-range {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
  cursor: ew-resize;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  touch-action: none;
}

/* Mobile / tactile : le range natif ne doit pas voler le geste */
@media (pointer: coarse) {
  .ba-range {
    pointer-events: none;
  }

  .ba-handle {
    width: 3px;
  }

  .ba-handle::after {
    width: 48px;
    height: 48px;
  }
}

.ba-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 1px;
  height: 1px;
}

.ba-range::-moz-range-thumb {
  width: 1px;
  height: 1px;
  border: 0;
  background: transparent;
}

.ba-slider:has(.ba-range:focus-visible) {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.ba-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  pointer-events: none;
}

.ba-before-wrap {
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
  z-index: 2;
  border-right: 2px solid var(--accent);
}

.ba-before-wrap img {
  position: absolute;
  left: 0;
  top: 0;
  width: calc(100% * (100 / var(--ba-pct, 50)));
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: var(--accent);
  z-index: 3;
  transform: translateX(-50%);
  box-shadow: 0 0 20px var(--accent-glow);
}

.ba-hint {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  padding: 0.4rem 0.75rem;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg);
  background: rgba(212, 176, 106, 0.92);
  border-radius: 2px;
  pointer-events: none;
  animation: baHintPulse 2s ease-in-out infinite;
  transition: opacity 0.35s, transform 0.35s;
}

.ba-hint--hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(6px);
}

@keyframes baHintPulse {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 1; }
}

.ba-handle::after {
  content: '↔';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.ba-labels {
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  justify-content: space-between;
  z-index: 4;
  pointer-events: none;
}

.ba-labels span {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
}

.ba-labels span:last-child {
  border-color: var(--accent);
  color: var(--accent);
}

.ba-caption {
  padding: 1.25rem 1.5rem;
}

.ba-caption h3 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
}

.ba-caption p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.ba-caption-meta {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}

.ba-caption-meta span {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

/* Portfolio accueil — effet wow */
.realisations-preview--wow .section-header {
  position: relative;
}

.realisations-preview--wow .section-title {
  background: linear-gradient(135deg, #fff 0%, rgba(212, 176, 106, 0.85) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.realisations-preview--wow .ba-grid {
  gap: 2.5rem;
}

.realisations-preview--wow .ba-card {
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  transition: transform 0.5s var(--ease-out-expo, cubic-bezier(0.16, 1, 0.3, 1)),
    box-shadow 0.5s,
    border-color 0.5s;
}

.realisations-preview--wow .ba-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 176, 106, 0.5);
  box-shadow:
    0 32px 90px rgba(0, 0, 0, 0.55),
    0 0 48px rgba(212, 176, 106, 0.14);
}

.realisations-preview--wow .ba-slider {
  aspect-ratio: 16 / 9;
}

.realisations-preview--wow .ba-slider::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 42%, rgba(255, 255, 255, 0.12) 50%, transparent 58%);
  opacity: 0;
}

.realisations-preview--wow .ba-card:hover .ba-slider::after {
  animation: baShine 1.1s ease-out forwards;
}

@keyframes baShine {
  0% { opacity: 0; transform: translateX(-30%); }
  15% { opacity: 1; }
  100% { opacity: 0; transform: translateX(30%); }
}

.realisations-preview--wow .ba-handle {
  width: 3px;
  box-shadow: 0 0 28px var(--accent-glow);
}

.realisations-preview--wow .ba-card:hover .ba-handle {
  box-shadow: 0 0 40px var(--accent-glow), 0 0 80px rgba(212, 176, 106, 0.25);
}

.realisations-preview--wow .ba-handle::after {
  width: 48px;
  height: 48px;
  font-size: 0.95rem;
  box-shadow:
    0 0 0 4px rgba(212, 176, 106, 0.28),
    0 8px 32px rgba(0, 0, 0, 0.55);
}

.ba-card--featured {
  border-color: rgba(212, 176, 106, 0.35);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.48), 0 0 60px rgba(212, 176, 106, 0.08);
}

.ba-card--featured .ba-slider {
  aspect-ratio: 16 / 9;
}

.ba-card--featured .ba-handle::after {
  width: 46px;
  height: 46px;
}

/* Hero with photo */
.page-hero--photo {
  min-height: 75vh;
  align-items: flex-end;
  background: var(--bg);
}

.page-hero--photo::before {
  display: none;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, var(--bg) 0%, rgba(10,10,10,0.85) 40%, rgba(10,10,10,0.5) 100%),
    linear-gradient(to right, rgba(10,10,10,0.9) 0%, transparent 60%);
}

.page-hero--photo .page-hero-content {
  z-index: 2;
}

/* Service stats band */
.service-stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-stat-item {
  background: var(--bg-elevated);
  padding: 2rem 1.5rem;
  text-align: center;
}

.service-stat-item strong {
  display: block;
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.service-stat-item span {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Split content + image */
.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split-block--reverse {
  direction: rtl;
}

.split-block--reverse > * {
  direction: ltr;
}

.split-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border: 1px solid var(--line);
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

.split-image:hover img {
  transform: scale(1.05);
}

.split-image-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  background: rgba(10,10,10,0.8);
  border: 1px solid var(--accent);
  color: var(--accent);
}

/* Checklist */
.checklist {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 2rem;
  margin: 1.5rem 0;
}

.checklist li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 1.5rem;
  position: relative;
}

.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* Case study */
.case-study {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  overflow: hidden;
  margin: 2.5rem 0;
}

.case-study-image {
  min-height: 320px;
}

.case-study-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}

.case-study-body {
  padding: 2.5rem;
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.case-study-tag {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.case-study-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.case-study-body p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.case-metrics {
  display: flex;
  gap: 2rem;
}

.case-metrics div strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
}

.case-metrics div span {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* Photo strip */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-top: 2rem;
}

.photo-strip-item {
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid var(--line);
}

.photo-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  filter: grayscale(30%);
}

.photo-strip-item:hover img {
  transform: scale(1.08);
  filter: grayscale(0%);
}

/* Manifeste with real photo */
.manifeste-photo {
  position: relative;
  height: 70vh;
  overflow: hidden;
  border: 1px solid var(--line);
}

.manifeste-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.manifeste-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}

.manifeste-mini-ba {
  margin-top: 1rem;
}

/* Trust band */
.trust-band {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.trust-band-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}

.trust-band-logos {
  display: flex;
  gap: 2.5rem;
  animation: marquee 25s linear infinite;
  width: max-content;
}

.trust-band-logos span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  white-space: nowrap;
}

@media (max-width: 1200px) {
  .ba-grid { grid-template-columns: 1fr; }
  .split-block, .case-study { grid-template-columns: 1fr; }
  .split-block--reverse { direction: ltr; }
  .service-stats-band { grid-template-columns: repeat(2, 1fr); }
  .checklist { grid-template-columns: 1fr; }
  .photo-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .service-stats-band { grid-template-columns: repeat(2, 1fr); }
}

/* ---- css/sections.css ---- */
/* Sections accueil — refonte visuelle */

/* ---- Contraste texte (surcharge locale si besoin) ---- */

/* ---- Manifeste mobile ---- */
@media (max-width: 768px) {
  .manifeste {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-bottom: 2.5rem;
  }

  .manifeste .section-grid {
    order: 1;
  }

  .manifeste-visual {
    order: 2;
    gap: 1.25rem;
  }

  /* Mobile : photo « Sur le terrain » retirée — on garde le mini avant/après */
  .manifeste-photo {
    display: none;
  }

  .manifeste-mini-ba .ba-card {
    border-color: var(--line-strong);
  }

  .manifeste-mini-ba .ba-caption p {
    font-size: 0.78rem;
    line-height: 1.55;
  }

  .manifeste-quote {
    margin-bottom: 1rem;
  }

  .quote-line {
    font-size: clamp(1.55rem, 7vw, 2.1rem);
  }
}

/* ---- Méthode — voir css/method.css ---- */

/* Legacy timeline — conservé pour compatibilité pages services */
.process-timeline {
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 1.35rem;
  top: 1.5rem;
  bottom: 1.5rem;
  width: 1px;
  background: linear-gradient(to bottom, var(--accent), rgba(201, 169, 98, 0.15));
  opacity: 0;
}

@media (max-width: 768px) {
  .process {
    background:
      radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201, 169, 98, 0.08) 0%, transparent 55%),
      var(--bg-elevated);
  }

  .process-sticky {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .process-timeline::before {
    opacity: 1;
  }

  .process-steps {
    position: relative;
    z-index: 1;
    gap: 1rem;
  }

  .process-step {
    position: relative;
    opacity: 1 !important;
    padding: 1.35rem 1.35rem 1.35rem 3.5rem;
    border-color: var(--line-strong);
    background: rgba(14, 14, 14, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  }

  .process-step::before {
    content: '';
    position: absolute;
    left: 0.85rem;
    top: 1.45rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--bg);
    border: 2px solid var(--line-strong);
    box-shadow: 0 0 0 4px rgba(10, 10, 10, 0.9);
    transition: border-color 0.4s, box-shadow 0.4s;
  }

  .process-step.active {
    border-color: rgba(201, 169, 98, 0.45);
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.12) 0%, rgba(14, 14, 14, 0.9) 100%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(201, 169, 98, 0.15);
  }

  .process-step.active::before {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(10, 10, 10, 0.9), 0 0 16px var(--accent-glow);
    background: var(--accent);
  }

  .process-step .step-num {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.55rem;
    padding: 0.25rem 0.5rem;
    border: 1px solid var(--line);
    background: rgba(10, 10, 10, 0.6);
  }

  .process-progress {
    margin-top: 1.5rem;
    height: 2px;
    background: rgba(255, 255, 255, 0.06);
  }

  .process-bar {
    box-shadow: 0 0 12px var(--accent-glow);
  }
}

/* ---- Témoignages — grille éditoriale ---- */
.reviews-scroll {
  max-width: 1100px;
  margin: 0 auto;
}

.reviews-scroll__hint {
  display: none;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}

.review-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.75rem;
  border: 1px solid var(--line-strong);
  background: linear-gradient(160deg, rgba(22, 22, 22, 0.95) 0%, rgba(12, 12, 12, 0.98) 100%);
  transition: border-color 0.35s, transform 0.35s var(--ease-out-expo), box-shadow 0.35s;
  min-height: 100%;
}

.review-card:hover {
  border-color: rgba(201, 169, 98, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.review-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.review-tag {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 0.35rem 0.65rem;
  border: 1px solid rgba(201, 169, 98, 0.25);
  background: var(--accent-soft);
}

.review-stars {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.review-text {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-style: italic;
  line-height: 1.65;
  color: var(--text);
  margin: 0;
  flex: 1;
}

.review-footer {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.review-name {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}

.review-role {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.reviews-cta {
  text-align: center;
  margin-top: 2.5rem;
}

@media (max-width: 900px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .reviews-scroll {
    margin-inline: -1.25rem;
    padding-inline: 1.25rem;
    overflow: visible;
  }

  .reviews-grid {
    display: flex;
    gap: 0.85rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 1.25rem;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    padding-bottom: 0.35rem;
    margin: 0;
    max-width: none;
  }

  .reviews-grid::-webkit-scrollbar {
    height: 3px;
  }

  .reviews-grid::-webkit-scrollbar-thumb {
    background: rgba(212, 176, 106, 0.45);
  }

  .reviews-grid .review-card {
    flex: 0 0 min(86vw, 320px);
    width: min(86vw, 320px);
    max-width: min(86vw, 320px);
    scroll-snap-align: start;
    min-height: auto;
    padding: 1.25rem;
  }

  .reviews-scroll__hint {
    display: block;
    margin: 0.85rem 0 0;
    font-size: 0.58rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-dim);
  }

  .review-text {
    font-size: 0.95rem;
  }
}

/* ---- Références — bande logos premium ---- */
.clients--logos {
  overflow: hidden;
}

.partners-rail {
  position: relative;
  margin: 2.5rem auto 0;
  max-width: 1100px;
  padding: 1.75rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.partners-rail--interactive {
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}

.partners-rail--interactive.is-dragging {
  cursor: grabbing;
}

.partners-rail--interactive .partners-rail__track {
  animation: none;
  will-change: transform;
  cursor: inherit;
}

.partners-rail--interactive .partners-rail__item img {
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}

.partners-rail__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(2.5rem, 8vw, 5rem);
  z-index: 2;
  pointer-events: none;
}

.partners-rail__fade--left {
  left: 0;
  background: linear-gradient(90deg, var(--bg) 10%, transparent);
}

.partners-rail__fade--right {
  right: 0;
  background: linear-gradient(270deg, var(--bg) 10%, transparent);
}

.partners-rail__track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 4.25rem;
  padding-inline: 2rem;
  animation: partners-rail 28s linear infinite;
}

.partners-rail:hover .partners-rail__track {
  animation-play-state: paused;
}

/* Fallback si JS off : pause au touch via hover approx. */
.partners-rail:active .partners-rail__track {
  animation-play-state: paused;
}

.partners-rail__item {
  margin: 0;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 88px;
  opacity: 0.95;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.partners-rail__item img {
  display: block;
  width: auto;
  height: auto;
  max-height: 66px;
  max-width: 200px;
  object-fit: contain;
  filter: none;
}

/* Logos noirs → blancs sur fond sombre (lisibles) */
.partners-rail__item--ink img {
  filter: invert(1);
  max-height: 60px;
}

.partners-rail__item--mark img {
  max-height: 72px;
  max-width: 210px;
  border-radius: 2px;
}

.partners-rail__item:hover {
  opacity: 1;
  transform: scale(1.04);
}

@keyframes partners-rail {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .partners-rail__track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    justify-content: center;
    gap: 1.75rem 2.5rem;
    row-gap: 1.5rem;
  }

  .partners-rail__item[aria-hidden="true"] {
    display: none;
  }
}

@media (max-width: 768px) {
  .partners-rail {
    margin-top: 1.75rem;
    padding: 1.35rem 0;
  }

  .partners-rail__track {
    gap: 2.25rem;
    animation-duration: 32s;
  }

  .partners-rail__item {
    height: 70px;
  }

  .partners-rail__item img,
  .partners-rail__item--ink img {
    max-height: 50px;
    max-width: 155px;
  }

  .partners-rail__item--mark img {
    max-height: 58px;
    max-width: 165px;
  }
}

html[data-theme="light"] .partners-rail__fade--left {
  background: linear-gradient(90deg, var(--bg) 15%, transparent);
}

html[data-theme="light"] .partners-rail__fade--right {
  background: linear-gradient(270deg, var(--bg) 15%, transparent);
}

html[data-theme="light"] .partners-rail__item--ink img {
  filter: none;
}

/* ---- Territoire — vraie carte ---- */
.territoire-map {
  position: relative;
  height: auto;
  min-height: 340px;
  aspect-ratio: 4 / 5;
  max-height: 520px;
  border: 1px solid var(--line-strong);
  background:
    radial-gradient(ellipse at 50% 30%, rgba(201, 169, 98, 0.1) 0%, transparent 55%),
    #0c0c0c;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.territoire-map img,
.territoire-map svg {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 0.92;
}

.territoire-map-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.95), transparent);
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}

.territoire-map .map-glow,
.territoire-map .map-pin,
.territoire-map .map-lines {
  display: none;
}

@media (max-width: 768px) {
  .territoire {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .territoire-map {
    order: -1;
    min-height: 280px;
    aspect-ratio: 1 / 1;
    max-height: 360px;
  }

  .territoire-content .section-title {
    font-size: clamp(1.75rem, 8vw, 2.35rem);
  }
}

/* ---- FAQ (toutes pages hors page FAQ dédiée) ---- */
.section .faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 720px;
}

.section .faq-list .faq-item {
  border: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  background: rgba(16, 16, 16, 0.8);
  transition: border-color 0.35s, box-shadow 0.35s;
}

.section .faq-list .faq-item.open {
  border-color: rgba(201, 169, 98, 0.45);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.section .faq-list .faq-question {
  padding: 1.15rem 1.25rem;
}

.section .faq-list .faq-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  flex-shrink: 0;
}

.section .faq-list .faq-item.open .faq-answer {
  padding: 0 1.25rem 1.25rem;
}

.section .faq-list .faq-answer p {
  border-left: 2px solid var(--accent);
  padding-left: 1rem;
  line-height: 1.75;
}

/* ---- FAQ pages services — accordéon éditorial ---- */
body[data-page="service"] .section .faq-list,
body[data-page="service"] .svc-faq {
  max-width: 680px;
  margin: 2.5rem auto 0;
  gap: 0;
  border-top: 1px solid var(--line-strong);
}

body[data-page="service"] .section .faq-list .faq-item,
body[data-page="service"] .svc-faq .faq-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  box-shadow: none;
  border-radius: 0;
  transition: background 0.35s ease, border-color 0.35s ease;
}

body[data-page="service"] .section .faq-list .faq-item:hover,
body[data-page="service"] .svc-faq .faq-item:hover {
  background: linear-gradient(90deg, rgba(212, 176, 106, 0.05), transparent 55%);
}

body[data-page="service"] .section .faq-list .faq-item.open,
body[data-page="service"] .svc-faq .faq-item.open {
  background: linear-gradient(90deg, rgba(212, 176, 106, 0.08), transparent 60%);
  border-bottom-color: rgba(212, 176, 106, 0.35);
  box-shadow: none;
}

body[data-page="service"] .section .faq-list .faq-question,
body[data-page="service"] .svc-faq .faq-question {
  padding: 1.35rem 0.15rem 1.35rem 0;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.4;
  gap: 1.25rem;
  align-items: flex-start;
}

body[data-page="service"] .section .faq-list .faq-icon,
body[data-page="service"] .svc-faq .faq-icon {
  width: 1.75rem;
  height: 1.75rem;
  margin-top: 0.05rem;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  color: var(--accent);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1;
  background: transparent;
  transition: border-color 0.3s, background 0.3s, transform 0.4s var(--ease-out-expo);
}

body[data-page="service"] .section .faq-list .faq-item.open .faq-icon,
body[data-page="service"] .svc-faq .faq-item.open .faq-icon {
  border-color: rgba(212, 176, 106, 0.55);
  background: var(--accent-soft);
}

body[data-page="service"] .section .faq-list .faq-item.open .faq-answer,
body[data-page="service"] .svc-faq .faq-item.open .faq-answer {
  padding: 0 2.2rem 1.35rem 0;
}

body[data-page="service"] .section .faq-list .faq-answer p,
body[data-page="service"] .svc-faq .faq-answer p {
  margin: 0;
  border-left: 2px solid var(--accent);
  padding-left: 1rem;
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 36rem;
}

/* ---- FAQ accueil ---- */
.faq-preview .faq-list {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-preview .faq-item {
  border: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  background: rgba(16, 16, 16, 0.8);
  transition: border-color 0.35s, box-shadow 0.35s;
}

.faq-preview .faq-item:hover {
  border-color: rgba(201, 169, 98, 0.25);
}

.faq-preview .faq-item.open {
  border-color: rgba(201, 169, 98, 0.45);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  background: linear-gradient(145deg, rgba(201, 169, 98, 0.06), rgba(12, 12, 12, 0.95));
}

.faq-preview .faq-question {
  padding: 1.15rem 1.25rem;
  font-size: 0.88rem;
  gap: 1rem;
}

.faq-preview .faq-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.35s, border-color 0.35s, color 0.35s;
}

.faq-preview .faq-item.open .faq-icon {
  border-color: var(--accent);
  color: var(--accent);
}

.faq-preview .faq-answer {
  padding: 0 1.25rem;
}

.faq-preview .faq-item.open .faq-answer {
  padding-bottom: 1.25rem;
}

.faq-preview .faq-answer p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--text-muted);
  border-left: 2px solid var(--accent);
  padding-left: 1rem;
  margin-left: 0.15rem;
}

@media (max-width: 768px) {
  .faq-preview .faq-question {
    padding: 1rem;
    font-size: 0.82rem;
  }

  .faq-preview .faq-answer p {
    font-size: 0.84rem;
  }
}

/* ---- Déménagement (accueil) ---- */
.demenagement-block {
  padding-top: clamp(4rem, 8vw, 6rem);
  padding-bottom: clamp(4rem, 8vw, 6rem);
}

.demenagement-block__grid {
  align-items: center;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.demenagement-block__lead {
  max-width: 34rem;
  margin-top: 1.25rem;
  line-height: 1.75;
}

.demenagement-block__checks {
  margin-top: 1.75rem;
}

.demenagement-block__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.demenagement-block__visual .ba-card {
  max-width: 100%;
}

.demenagement-block__photo {
  margin: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 320px;
  background: var(--bg-card);
}

.demenagement-block__photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.demenagement-block__photo figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
  color: #f5f0eb;
}

.demenagement-block__photo figcaption strong {
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.demenagement-block__photo figcaption span {
  font-size: 0.75rem;
  color: rgba(245, 240, 235, 0.72);
}

@media (max-width: 768px) {
  .demenagement-block__actions {
    flex-direction: column;
  }

  .demenagement-block__actions .btn-primary,
  .demenagement-block__actions .btn-ghost {
    width: 100%;
    justify-content: center;
  }
}

/* ---- css/quick-bar.css ---- */
/* Barre contact rapide — appel + devis */

.quick-bar {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 180;
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
  max-width: calc(100vw - 2rem);
}

.quick-bar__call,
.quick-bar__devis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.15rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease-out-expo), box-shadow 0.35s, border-color 0.35s;
  white-space: nowrap;
}

.quick-bar__call {
  background: rgba(18, 18, 18, 0.92);
  color: var(--text);
  border-color: var(--line-strong);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.quick-bar__call svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

.quick-bar__call:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.quick-bar__devis {
  background: var(--accent);
  color: var(--bg);
  box-shadow: 0 10px 36px var(--accent-glow);
}

.quick-bar__devis:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 44px var(--accent-glow);
}

.nav-phone {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  height: 36px;
  padding: 0 0.85rem !important;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  line-height: 1;
  box-sizing: border-box;
  transition: color 0.3s, border-color 0.3s, background 0.3s;
}

.nav-phone svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
}

.nav-phone:hover {
  color: var(--accent);
}

.mobile-nav-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 0.5rem;
  padding: 1rem 1.5rem !important;
  font-size: 0.85rem !important;
  background: var(--accent-soft);
  border: 1px solid rgba(201, 169, 98, 0.35);
  border-radius: 0;
}

@media (min-width: 1025px) and (max-width: 1280px) {
  .header {
    padding: 1rem 1.75rem;
  }

  .nav-links {
    gap: 0.85rem;
  }

  .nav-links > a,
  .nav-dropdown-btn {
    font-size: 0.62rem;
    letter-spacing: 0.1em;
  }

  .nav-phone {
    font-size: 0.58rem;
    padding: 0 0.65rem !important;
  }
}

@media (min-width: 1025px) {
  .nav-phone {
    display: inline-flex;
  }
}

@media (max-width: 768px) {
  main {
    padding-bottom: 5.5rem;
  }

  .quick-bar {
    left: 1rem;
    right: 1rem;
    bottom: max(0.85rem, env(safe-area-inset-bottom));
    transition: bottom 0.45s var(--ease-out-expo, cubic-bezier(0.16, 1, 0.3, 1));
  }

  /* Remonter la barre CTA au-dessus de la bannière cookies */
  body.cookie-banner-open .quick-bar {
    bottom: calc(7.5rem + env(safe-area-inset-bottom, 0px));
  }

  body.cookie-banner-open main {
    padding-bottom: calc(12.5rem + env(safe-area-inset-bottom, 0px));
  }

  .quick-bar__call,
  .quick-bar__devis {
    flex: 1;
    padding: 0.85rem 0.75rem;
    font-size: 0.58rem;
  }

  body:has(.mobile-nav.open) .quick-bar {
    display: none;
  }
}

@media (max-width: 380px) {
  .quick-bar__call span:not(.sr-only) {
    display: none;
  }

  .quick-bar__call {
    flex: 0 0 52px;
    padding: 0.85rem;
  }
}

/* ---- css/polish.css ---- */
/* Ana Est — polish visuel global (complète visual.css) */

/* Header premium */
.header.scrolled {
  background: rgba(8, 8, 8, 0.97);
  backdrop-filter: blur(20px) saturate(1.2);
  box-shadow: 0 1px 0 var(--line-strong), 0 16px 48px rgba(0, 0, 0, 0.45);
}

.nav-links > a,
.nav-dropdown-btn {
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

.logo-img {
  width: auto;
  height: 72px;
  max-width: min(210px, 52vw);
  object-fit: contain;
  filter: none;
  transition: opacity 0.3s;
}

.logo-img--footer {
  height: 58px;
  max-width: 160px;
}

.loader-logo {
  height: 88px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

/* Sections alternées */
.section--alt {
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(212, 176, 106, 0.04) 0%, transparent 55%),
    var(--bg-elevated);
}

.section::after {
  content: '';
  position: absolute;
  top: 0;
  left: clamp(1.5rem, 5vw, 5rem);
  right: clamp(1.5rem, 5vw, 5rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong) 15%, var(--accent) 50%, var(--line-strong) 85%, transparent);
  opacity: 0.35;
}

.section:first-of-type::after,
.hero + .section::after,
.page-hero + .service-stats-band + .section::after,
.service-stats-band::after,
.cta::after {
  display: none;
}

.section-label .label-num {
  position: relative;
  padding-right: 1rem;
}

.section-label .label-num::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 8px;
  height: 1px;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
}

.section-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  text-shadow: 0 0 60px rgba(212, 176, 106, 0.15);
}

/* Hero accueil */
.hero {
  background:
    radial-gradient(ellipse 70% 55% at 15% 85%, rgba(212, 176, 106, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 85% 15%, rgba(212, 176, 106, 0.04) 0%, transparent 45%),
    var(--bg);
}

/* Boutons premium */
.btn-primary {
  background: linear-gradient(135deg, #e0c078 0%, var(--accent) 45%, #b8944f 100%);
  box-shadow: 0 4px 20px rgba(212, 176, 106, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  box-shadow: 0 16px 48px var(--accent-glow), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-ghost {
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.02);
}

/* Service tiles */
.service-tile {
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.25);
  transition: border-color 0.4s, transform 0.5s var(--ease-out-expo), box-shadow 0.5s;
  border: 1px solid var(--line);
}

.service-tile:hover {
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(212, 176, 106, 0.2);
  transform: translateY(-8px);
  border-color: rgba(212, 176, 106, 0.35);
}

/* Stats band */
.service-stats-band {
  background: linear-gradient(180deg, rgba(212, 176, 106, 0.06) 0%, transparent 100%);
  border-bottom: 1px solid var(--line);
}

.service-stat-item strong {
  text-shadow: 0 0 48px var(--accent-glow);
  background: linear-gradient(180deg, var(--text) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Page hero photo */
.page-hero--photo .page-hero-bg::after {
  background:
    linear-gradient(to top, var(--bg) 0%, rgba(8, 8, 8, 0.9) 40%, rgba(8, 8, 8, 0.5) 100%),
    linear-gradient(to right, rgba(8, 8, 8, 0.95) 0%, rgba(8, 8, 8, 0.45) 50%, transparent 100%);
}

.page-hero--photo .page-hero-title {
  text-shadow: 0 4px 80px rgba(0, 0, 0, 0.6);
}

/* Pages intérieures — titres alignés sur l'échelle de l'accueil */
body:not([data-page="home"]) .page-hero-title {
  font-size: clamp(1.75rem, 3.6vw, 2.5rem);
  line-height: 1.05;
}

body:not([data-page="home"]) .section-title,
body:not([data-page="home"]) .cta-title {
  font-size: clamp(1.6rem, 3.4vw, 2.5rem);
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.page-hero-actions .btn-primary,
.page-hero-actions .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Case study */
.case-study {
  border: 1px solid var(--line-strong);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  background: var(--bg-card);
}

.case-study-image img {
  transition: transform 0.8s var(--ease-out-expo);
}

.case-study:hover .case-study-image img {
  transform: scale(1.04);
}

.case-study-tag {
  color: var(--accent);
  letter-spacing: 0.15em;
}

.case-metrics div {
  border: 1px solid var(--line);
  background: rgba(212, 176, 106, 0.04);
  transition: border-color 0.35s;
}

.case-study:hover .case-metrics div {
  border-color: rgba(212, 176, 106, 0.3);
}

/* Features & checklist */
.feature-item {
  border-left: 2px solid transparent;
  padding-left: 1.25rem;
  transition: border-color 0.35s, transform 0.35s var(--ease-out-expo);
}

.feature-item:hover {
  border-left-color: var(--accent);
  transform: translateX(4px);
}

.checklist li {
  position: relative;
}

.checklist li::marker {
  color: var(--accent);
}

/* Sidebar */
.page-sidebar {
  border: 1px solid var(--line-strong);
  background: linear-gradient(160deg, rgba(18, 18, 18, 0.95), rgba(10, 10, 10, 0.98));
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.page-sidebar h3 {
  color: var(--accent);
  letter-spacing: 0.12em;
}

/* Photo strip */
.photo-strip-item {
  overflow: hidden;
  border: 1px solid var(--line);
  transition: border-color 0.4s;
}

.photo-strip-item:hover {
  border-color: rgba(212, 176, 106, 0.4);
}

.photo-strip-item img {
  transition: transform 0.7s var(--ease-out-expo);
}

.photo-strip-item:hover img {
  transform: scale(1.06);
}

/* Other services */
.other-service-link {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.35s, background 0.35s, transform 0.35s var(--ease-out-expo);
}

.other-service-link:hover {
  border-color: rgba(212, 176, 106, 0.4);
  background: var(--accent-soft);
  transform: translateY(-2px);
}

/* Review cards */
.review-card {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line-strong);
  transition: border-color 0.4s, transform 0.4s var(--ease-out-expo);
}

.review-card:hover {
  border-color: rgba(212, 176, 106, 0.35);
  transform: translateY(-4px);
}

/* Why items */
.why-item {
  border: 1px solid var(--line-strong);
  transition: border-color 0.4s, transform 0.4s var(--ease-out-expo), box-shadow 0.4s;
}

.why-item:hover {
  border-color: rgba(212, 176, 106, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

/* Split image */
.split-image {
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--line-strong);
}

.split-image img {
  transition: transform 0.8s var(--ease-out-expo);
}

.split-block:hover .split-image img {
  transform: scale(1.03);
}

/* CTA sections */
.cta-inner {
  padding: clamp(2.5rem, 6vw, 4rem);
  border: 1px solid var(--line-strong);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212, 176, 106, 0.1) 0%, transparent 55%),
    rgba(12, 12, 12, 0.7);
  backdrop-filter: blur(12px);
}

/* Loader */
.loader-logo {
  filter: drop-shadow(0 0 40px rgba(212, 176, 106, 0.25));
}

/* Footer */
.footer {
  border-top: 1px solid var(--line-strong);
  background: linear-gradient(180deg, var(--bg) 0%, #050505 100%);
}

/* Nav phone — styles complémentaires */
.nav-phone {
  border: 1px solid var(--line-strong);
}

.nav-phone:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.nav-phone::after { display: none !important; }

/* ---- Service page blocks ---- */
.svc-for-who {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.svc-for-who span {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-muted);
}

.svc-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.svc-benefit {
  padding: 1.75rem;
  border: 1px solid var(--line-strong);
  background: linear-gradient(160deg, rgba(22, 22, 22, 0.9), rgba(10, 10, 10, 0.95));
  transition: border-color 0.35s, transform 0.35s var(--ease-out-expo);
}

.svc-benefit:hover {
  border-color: rgba(212, 176, 106, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.svc-benefit-icon {
  font-size: 1.25rem;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}

.svc-benefit h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.svc-benefit p {
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.svc-process-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.svc-process-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  border: 1px solid var(--line-strong);
  background: rgba(14, 14, 14, 0.8);
  align-items: flex-start;
}

.svc-process-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--accent);
  border: 1px solid rgba(212, 176, 106, 0.35);
  background: var(--accent-soft);
}

.svc-process-item h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}

.svc-process-item p {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ---- Prestations / Inclus (refonte) ---- */
.svc-inclus__inner {
  max-width: 960px;
  margin: 0 auto;
}

.svc-inclus__features {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
  margin-bottom: 2.5rem;
}

.svc-inclus__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem 1.75rem;
  align-items: start;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.svc-inclus__num {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--accent);
  padding-top: 0.2rem;
}

.svc-inclus__item h3 {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.svc-inclus__item p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
  max-width: 52ch;
}

.svc-inclus__panel {
  margin-bottom: 2rem;
  padding: 1.75rem 0 0;
  border-top: 1px solid var(--line);
}

.svc-inclus__panel-title {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.svc-inclus__checks {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 1.5rem;
  margin: 0;
  padding: 0;
}

.svc-inclus__checks li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.svc-inclus__checks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--accent);
}

.svc-inclus__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 3rem;
  margin: 2rem 0 0;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.svc-inclus__col h3 {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.svc-inclus__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.svc-inclus__col li {
  font-size: 0.86rem;
  color: var(--text-muted);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.45;
}

.svc-inclus__col li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.72rem;
}

.svc-inclus__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-top: 2.5rem;
  padding: 1.5rem 0 0;
  border-top: 1px solid rgba(212, 176, 106, 0.28);
}

.svc-inclus__cta-label {
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.svc-inclus__cta-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

.svc-inclus__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Legacy deliverables (si encore présents hors pages services) */
.svc-deliverables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.svc-deliverables-block {
  padding: 1.75rem;
  border: 1px solid var(--line-strong);
  background: rgba(12, 12, 12, 0.8);
}

.svc-deliverables-block h3 {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.svc-deliverables-block ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.svc-deliverables-block li {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding-left: 1.25rem;
  position: relative;
}

.svc-deliverables-block li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.75rem;
}

@media (max-width: 768px) {
  .svc-inclus__checks,
  .svc-inclus__cols {
    grid-template-columns: 1fr;
  }

  .svc-inclus__cta {
    flex-direction: column;
    align-items: stretch;
  }

  .svc-inclus__cta-actions .btn-primary,
  .svc-inclus__cta-actions .btn-ghost {
    flex: 1;
    justify-content: center;
    text-align: center;
  }
}

.svc-review {
  margin: 2.5rem 0;
  padding: 2rem;
  border: 1px solid rgba(212, 176, 106, 0.25);
  background: linear-gradient(135deg, rgba(212, 176, 106, 0.1), rgba(10, 10, 10, 0.9));
  border-left: 3px solid var(--accent);
}

.svc-review blockquote {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.65;
  margin: 0.75rem 0 1rem;
  color: var(--text);
}

.svc-review cite {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-style: normal;
}

.svc-mid-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.5rem clamp(1.5rem, 5vw, 3rem);
  border: 1px solid var(--line-strong);
  background:
    radial-gradient(ellipse at 0% 50%, rgba(212, 176, 106, 0.12) 0%, transparent 50%),
    rgba(12, 12, 12, 0.95);
  flex-wrap: wrap;
}

.svc-mid-cta-text h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
}

.svc-mid-cta-text p {
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 480px;
}

.svc-mid-cta-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.svc-zones-note {
  margin-top: 1.25rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

@media (max-width: 1024px) {
  .svc-benefits { grid-template-columns: 1fr; }
  .svc-process-list { grid-template-columns: 1fr; }
  .svc-deliverables { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .svc-mid-cta {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .svc-mid-cta-text p { max-width: none; }

  .svc-mid-cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .svc-mid-cta-actions .btn-primary,
  .svc-mid-cta-actions .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .page-hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .page-hero-actions .btn-primary,
  .page-hero-actions .btn-ghost {
    width: 100%;
    justify-content: center;
  }
}

/* ---- Service pages — CTA compact (pas un écran vide) ---- */
body[data-page="service"] .section.cta,
.section.cta.cta--service {
  min-height: 0;
  padding: clamp(4rem, 8vw, 6.5rem) 1.5rem;
  align-items: center;
}

body[data-page="service"] .section.cta .cta-inner,
.section.cta.cta--service .cta-inner {
  max-width: 640px;
}

body[data-page="service"] .section.cta .cta-title,
.section.cta.cta--service .cta-title {
  margin-bottom: 0;
  text-transform: none;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.cta-sub {
  margin: 1.15rem auto 0;
  max-width: 420px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ---- Processus en parcours (4 étapes) ---- */
.svc-process-list--flow {
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
  position: relative;
}

.svc-process-list--flow .svc-process-item {
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.5rem 1.25rem;
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(212, 176, 106, 0.06), transparent 42%),
    rgba(14, 14, 14, 0.8);
}

.svc-process-list--flow .svc-process-num {
  width: 44px;
  height: 44px;
  font-size: 0.72rem;
}

.svc-process-list--flow .svc-process-item h4 {
  font-size: 0.82rem;
  margin-bottom: 0.5rem;
}

@media (max-width: 900px) {
  .svc-process-list--flow {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .svc-process-list--flow {
    grid-template-columns: 1fr;
  }
}

/* Light theme process cards → css/theme-light.css */

/* ---- Crédit d'impôt / Services à la personne ---- */
.tax-credit {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.tax-credit img {
  display: block;
  width: auto;
  height: auto;
  max-width: 160px;
  max-height: 68px;
  object-fit: contain;
  flex-shrink: 0;
}

.tax-credit--banner {
  margin: 2.5rem auto 0;
  max-width: 720px;
  padding: 1.35rem 1.5rem;
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(105deg, rgba(212, 176, 106, 0.08), transparent 55%),
    rgba(255, 255, 255, 0.02);
}

.tax-credit__title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text);
}

.tax-credit__text {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.tax-credit--footer {
  margin-top: 1.35rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line);
  align-items: flex-start;
  gap: 0.85rem;
}

.tax-credit--footer img {
  max-width: 118px;
  max-height: 52px;
}

.tax-credit--footer p {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.tax-credit--footer strong {
  color: var(--accent);
  font-weight: 700;
}

.tax-credit--footer span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.tax-credit--aside {
  margin-top: 1.75rem;
  padding: 1.15rem 1.2rem;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.02);
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
}

.contact-form__note + .tax-credit--inline,
.tax-credit--inline {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.15rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line);
}

.tax-credit--inline img {
  max-width: 120px;
  max-height: 52px;
}

.tax-credit--inline .tax-credit__title {
  font-size: 0.82rem;
}

.tax-credit--inline .tax-credit__text {
  font-size: 0.75rem;
}

@media (max-width: 600px) {
  .tax-credit--banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 1.15rem 1.2rem;
  }

  .tax-credit img {
    max-width: 140px;
  }
}

/* ---- css/cinematic.css ---- */
/* ANAEST — Cinematic / editorial / scroll-driven layer */

/* ---- Global atmosphere ---- */
.cin-vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 40;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(0, 0, 0, 0.45) 100%);
}

.cin-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 210;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.cin-progress__bar {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), #f0d090);
  box-shadow: 0 0 12px var(--accent-glow);
  transform-origin: left center;
}

.cin-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 30% 20%, black 0%, transparent 70%);
}

/* ---- Hero — laisser respirer le WebGL ---- */
.hero-overlay {
  background:
    linear-gradient(105deg, rgba(8, 8, 8, 0.9) 0%, rgba(8, 8, 8, 0.52) 40%, rgba(8, 8, 8, 0.18) 72%, rgba(8, 8, 8, 0.35) 100%),
    linear-gradient(to top, var(--bg) 0%, transparent 38%);
}

.hero-canvas-wrap {
  will-change: transform, opacity;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: linear-gradient(to top, var(--bg), transparent);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  will-change: transform, opacity;
}

.hero-title .split-char {
  transform: translateY(120%) rotateX(-28deg);
  transform-origin: 50% 100%;
  opacity: 0;
}

.hero-title .split-char.revealed {
  transform: translateY(0) rotateX(0deg);
  opacity: 1;
}

.hero-scroll {
  will-change: opacity;
}

/* ---- Section scenes ---- */
.section.cin-scene {
  position: relative;
}

.cin-scene::before,
.cin-scene::after {
  content: '';
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: rgba(212, 176, 106, 0.22);
  pointer-events: none;
  z-index: 2;
}

.cin-scene::before {
  top: clamp(2rem, 5vw, 4rem);
  left: clamp(1.5rem, 5vw, 5rem);
  border-top: 1px solid;
  border-left: 1px solid;
}

.cin-scene::after {
  bottom: clamp(2rem, 5vw, 4rem);
  right: clamp(1.5rem, 5vw, 5rem);
  border-bottom: 1px solid;
  border-right: 1px solid;
}

.cin-reveal {
  clip-path: inset(8% 6% 8% 6% round 2px);
  transition: clip-path 1.2s var(--ease-out-expo);
}

.cin-reveal.is-visible {
  clip-path: inset(0% 0% 0% 0% round 0);
}

/* ---- Manifeste editorial ---- */
.manifeste-visual {
  will-change: transform;
}

.manifeste-photo {
  overflow: hidden;
}

.manifeste-photo img {
  will-change: transform;
  transform: scale(1.08);
}

.quote-line {
  will-change: transform, opacity;
}

.manifeste-quote,
.reviews-grid {
  perspective: 1400px;
}

/* ---- Services horizontal scroll scene ---- */
.cin-services-scene {
  overflow: hidden;
}

.cin-services-head {
  position: relative;
  z-index: 2;
}

.cin-services-wrap {
  position: relative;
  z-index: 1;
}

@media (min-width: 769px) {
  /* Pendant le pin : contenu centré verticalement dans le viewport */
  .services-grid-section.cin-services-scene {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: clamp(3.5rem, 7vh, 5.5rem);
    padding-bottom: clamp(2.5rem, 6vh, 4.5rem);
    box-sizing: border-box;
  }

  .cin-services-wrap {
    margin-top: 1.25rem;
    overflow: visible;
  }

  .cin-services-track {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 1.25rem;
    width: max-content;
    will-change: transform;
  }

  .cin-services-track .service-tile {
    width: clamp(280px, 28vw, 360px);
    min-height: clamp(260px, 38vh, 340px);
    flex-shrink: 0;
  }

  .cin-services-scene > [data-fade] {
    margin-top: 1.75rem !important;
  }
}

.cin-services-hint {
  display: none;
  margin-top: 1.5rem;
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
}

@media (min-width: 769px) {
  .cin-services-hint {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .cin-services-hint::after {
    content: '';
    flex: 1;
    max-width: 120px;
    height: 1px;
    background: linear-gradient(90deg, var(--accent), transparent);
  }
}

/* ---- Reviews cinematic stack ---- */
.reviews-grid .review-card {
  opacity: 1;
  transform: none;
}

/* ---- CTA finale ---- */
.cta.cin-scene .cta-inner {
  position: relative;
  overflow: hidden;
}

.cta.cin-scene .cta-inner::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: conic-gradient(from 180deg at 50% 50%, transparent, rgba(212, 176, 106, 0.06), transparent 40%);
  animation: cinRotate 18s linear infinite;
  pointer-events: none;
}

@keyframes cinRotate {
  to { transform: rotate(360deg); }
}

/* ---- Page hero intérieur ---- */
.page-hero {
  overflow: hidden;
}

.page-hero-mesh,
.page-hero-grid,
.page-hero-bg {
  will-change: transform;
}

.page-hero--photo .page-hero-bg img {
  transform: scale(1.12);
  will-change: transform;
}

.page-hero-content {
  will-change: transform, opacity;
}

/* ---- Split text 3D editorial ---- */
.split-line {
  display: block;
}

.section-title .split-word,
.cta-title .split-word,
.page-hero-title .split-word {
  display: inline-block;
  transform: translateY(105%) rotateX(-22deg);
  transform-origin: 50% 100%;
}

.section-title .split-word.revealed,
.cta-title .split-word.revealed,
.page-hero-title .split-word.revealed {
  transform: translateY(0) rotateX(0deg);
}

/* ---- Loader cinéma ---- */
.loader {
  background: #050505;
}

.loader::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(212, 176, 106, 0.08), transparent 55%);
  animation: loaderPulse 2s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

@media (max-width: 768px) {
  .cin-vignette {
    opacity: 0.5;
  }

  .cin-grid {
    display: none;
  }

  .cin-scene::before,
  .cin-scene::after {
    display: none;
  }

  .hero-title .split-char,
  .section-title .split-word,
  .cta-title .split-word,
  .page-hero-title .split-word {
    transform: none;
  }
}

/* ---- css/images.css ---- */
/* Images — rendu fiable et premium */

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-hero-bg img,
.manifeste-photo img,
.split-image img,
.case-study-image img,
.photo-strip-item img,
.ba-slider img,
.page-hero--photo .page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: var(--bg-elevated);
}

.page-hero-bg,
.manifeste-photo,
.case-study-image,
.photo-strip-item,
.split-image {
  background: linear-gradient(145deg, #141414, #0a0a0a);
  overflow: hidden;
}

.ba-slider {
  background: var(--bg-elevated);
}

.territoire-map {
  background:
    radial-gradient(ellipse at 50% 35%, rgba(212, 176, 106, 0.12) 0%, transparent 58%),
    #0a0a0a !important;
}

.territoire-map img,
.territoire-map svg {
  opacity: 1 !important;
  filter: drop-shadow(0 12px 40px rgba(0, 0, 0, 0.45));
}

.territoire-map-caption {
  background: linear-gradient(to top, rgba(8, 8, 8, 0.96) 0%, rgba(8, 8, 8, 0.55) 70%, transparent 100%) !important;
  color: var(--text-muted) !important;
}

/* ---- css/contact.css ---- */
/* Formulaire contact — premium dark */

/* ---- Page contact dédiée ---- */
.contact-hero .page-hero-desc {
  max-width: 480px;
}

.contact-page {
  background:
    radial-gradient(ellipse 70% 50% at 0% 0%, rgba(212, 176, 106, 0.07) 0%, transparent 55%),
    var(--bg);
}

.contact-layout--page {
  max-width: 1180px;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.15fr);
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}

.contact-aside .section-label {
  margin-bottom: 1.25rem;
}

.contact-aside .contact-layout__title {
  margin-bottom: 1rem;
}

.contact-aside .contact-layout__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  color: var(--accent);
  letter-spacing: -0.01em;
}

.contact-steps {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}

.contact-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-steps__num {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent);
  padding-top: 0.15rem;
}

.contact-steps strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 0.3rem;
}

.contact-steps p {
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

.contact-layout--compact {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: stretch;
}

.contact-layout__eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.contact-layout__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.contact-layout__desc {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 380px;
  margin-bottom: 2rem;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.02);
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.35s, background 0.35s;
}

.contact-channel:hover {
  border-color: rgba(212, 176, 106, 0.4);
  background: var(--accent-soft);
}

.contact-channel__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 176, 106, 0.3);
  color: var(--accent);
  font-size: 0.85rem;
}

.contact-channel__label {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.15rem;
}

.contact-channel__value {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.contact-zones {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.contact-zones span {
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--line);
  color: var(--text-muted);
}

/* Carte formulaire */
.contact-form-card {
  position: relative;
  padding: clamp(2rem, 4vw, 2.75rem);
  border: 1px solid rgba(212, 176, 106, 0.18);
  background:
    linear-gradient(165deg, rgba(28, 26, 22, 0.98) 0%, rgba(8, 8, 8, 0.99) 55%, rgba(12, 11, 9, 0.98) 100%);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.contact-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 2rem;
  right: 2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 176, 106, 0.65), transparent);
}

.contact-form-card__head {
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.contact-form-card__head h3 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.contact-form-card__head p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Champs — override styles.css legacy */
.contact-form--premium {
  gap: 1.35rem;
}

.contact-form__botcheck {
  display: none !important;
}

.contact-form--premium .form-row {
  gap: 1.35rem;
}

.contact-form--premium .form-field input,
.contact-form--premium .form-field select,
.contact-form--premium .form-field textarea {
  width: 100%;
  padding: 1rem 1.1rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  outline: none;
  appearance: none;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
  border-radius: 0;
}

.contact-form--premium .form-field input::placeholder,
.contact-form--premium .form-field textarea::placeholder {
  color: rgba(247, 242, 236, 0.32);
}

.contact-form--premium .form-field input:focus,
.contact-form--premium .form-field select:focus,
.contact-form--premium .form-field textarea:focus {
  border-color: rgba(212, 176, 106, 0.6);
  background: rgba(212, 176, 106, 0.05);
  box-shadow: 0 0 0 1px rgba(212, 176, 106, 0.12);
}

.contact-form--premium .form-field select {
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.35);
  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='%23d4b06a' stroke-width='1.2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.contact-form--premium .form-field select option {
  background: #111;
  color: var(--text);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-field label {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.form-field--full {
  grid-column: 1 / -1;
}

.contact-form--premium .form-field textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.6;
}

.contact-form__submit {
  width: 100%;
  margin-top: 0.5rem;
  padding: 1.15rem 2rem;
  background: linear-gradient(135deg, #e0c078 0%, var(--accent) 50%, #b8944f 100%);
  color: var(--bg);
  border: none;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: transform 0.35s var(--ease-out-expo), box-shadow 0.35s;
  box-shadow: 0 8px 32px rgba(212, 176, 106, 0.25);
}

.contact-form__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px var(--accent-glow);
}

.contact-form__note {
  margin-top: 1rem;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  text-align: center;
}

/* CTA accueil — override */
.section.cta .cta-inner {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.5rem);
  background: transparent;
  border: none;
  backdrop-filter: none;
  text-align: left;
}

.section.cta.cin-scene .cta-inner::before,
.section.cta .cta-inner::before {
  display: none;
}

.section.cta .contact-layout__intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 0.5rem;
}

.section.cta .contact-layout--compact .cta-title {
  margin-bottom: 1rem;
  text-align: left;
}

.section.cta .cta-eyebrow {
  margin-bottom: 0.75rem;
}

/* Accueil — CTA court vers la page contact (plus de formulaire) */
.cta-inner--home {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.cta-inner--home .cta-title {
  margin-bottom: 1rem;
  text-align: center;
}

.cta-inner--home .cta-desc {
  margin: 0 auto 1.75rem;
  max-width: 28rem;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.cta-inner--home .cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (max-width: 900px) {
  .contact-layout,
  .contact-layout--compact,
  .contact-layout--page {
    grid-template-columns: 1fr;
  }

  .contact-layout__desc {
    max-width: none;
  }

  .contact-form--premium .form-row {
    grid-template-columns: 1fr;
  }

  .contact-aside {
    order: 2;
  }

  .contact-layout--page .contact-form-card {
    order: 1;
  }
}

@media (max-width: 768px) {
  .section.cta {
    padding: 3rem 0 calc(3.5rem + env(safe-area-inset-bottom, 0px));
  }

  .section.cta .cta-inner {
    padding: 1.25rem 1rem 2rem;
    border-left: none;
    border-right: none;
    border-radius: 0;
    max-width: 100%;
  }

  .section.cta .contact-layout--compact {
    gap: 1.5rem;
    width: 100%;
  }

  .section.cta .contact-form-card {
    padding: 1.15rem;
    width: 100%;
    margin: 0;
  }

  .section.cta .contact-layout__intro {
    padding: 0 0.15rem;
  }

  .section.cta .cta-inner--home {
    padding: 1.5rem 1rem 2rem;
  }

  .contact-layout,
  .contact-layout--compact {
    width: 100%;
  }

  .contact-form-card {
    padding: 1.15rem;
  }

  .contact-form--premium .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-form__submit {
    width: 100%;
  }
}

/* ---- css/method.css ---- */
/* Méthode — deck premium (cartes empilables) */

.section.method-stack {
  padding-top: clamp(5rem, 11vw, 8rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  overflow: visible;
}

.method-stack {
  background:
    radial-gradient(ellipse 90% 60% at 0% 20%, rgba(212, 176, 106, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 70% 50% at 100% 80%, rgba(212, 176, 106, 0.04) 0%, transparent 45%),
    var(--bg-elevated);
}

.method-stack__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
}

.method-stack__side {
  position: sticky;
  top: clamp(5rem, 10vh, 7rem);
  padding-top: 0.5rem;
}

.method-stack__side .section-title {
  margin: 0.85rem 0 1rem;
  text-align: left;
}

.method-stack__title-accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  color: var(--accent);
  display: inline-block;
}

.method-stack__intro {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 340px;
  margin-bottom: 2.5rem;
}

.method-stack__rail {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 1px solid var(--line);
  padding-left: 1.25rem;
}

.method-stack__rail-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 0;
  border: none;
  background: none;
  color: var(--text-dim);
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: default;
  text-align: left;
  transition: color 0.4s, transform 0.4s var(--ease-out-expo);
}

.method-stack__rail-item span:first-child {
  flex-shrink: 0;
  width: 2rem;
  color: var(--text-dim);
  transition: color 0.4s;
}

.method-stack__rail-item.is-active {
  color: var(--text);
  transform: translateX(4px);
}

.method-stack__rail-item.is-active span:first-child {
  color: var(--accent);
}

.method-stack__rail-item.is-done {
  color: var(--text-muted);
}

.method-stack__deck {
  display: flex;
  flex-direction: column;
  position: relative;
}

/* ---- Carte ---- */
.method-card {
  --stack-base: 6rem;
  --stack-step: 1.5rem;
  position: sticky;
  top: calc(var(--stack-base) + var(--i) * var(--stack-step));
  z-index: calc(var(--i) + 1);
  margin-bottom: clamp(3.5rem, 11vh, 5.5rem);
  display: grid;
  grid-template-columns: 42% 1fr;
  min-height: clamp(220px, 28vw, 280px);
  border: 1px solid rgba(212, 176, 106, 0.2);
  background: #0c0c0c;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  overflow: hidden;
  transform-origin: center top;
}

.method-card:last-child {
  margin-bottom: 0;
}

.method-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.7;
  z-index: 2;
}

.method-card:nth-child(even) {
  grid-template-columns: 1fr 42%;
}

.method-card:nth-child(even) .method-card__media {
  order: 2;
}

.method-card__media {
  position: relative;
  overflow: hidden;
  min-height: 100%;
}

.method-card__media img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
  transition: transform 0.8s var(--ease-out-expo);
}

.method-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 8, 8, 0.15) 0%, rgba(8, 8, 8, 0.55) 100%);
}

.method-card:hover .method-card__media img {
  transform: scale(1.04);
}

.method-card__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1.5rem, 3vw, 2rem);
  z-index: 1;
}

.method-card__index {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 0.65rem;
}

.method-card__content h3 {
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.6rem;
  line-height: 1.1;
}

.method-card__content p {
  font-size: 0.86rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.method-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.method-card__tags li {
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border: 1px solid var(--line);
  color: var(--text-dim);
}

.method-card__ghost {
  position: absolute;
  right: 0.75rem;
  bottom: -0.15rem;
  font-size: clamp(4.5rem, 10vw, 7rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(212, 176, 106, 0.07);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

@media (max-width: 960px) {
  .method-stack__layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .method-stack__side {
    position: relative;
    top: auto;
    text-align: center;
  }

  .method-stack__side .section-title {
    text-align: center;
  }

  .method-stack__intro {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .method-stack__rail {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    border-left: none;
    padding-left: 0;
    gap: 0.5rem;
  }

  .method-stack__rail-item {
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--line);
  }

  .method-stack__rail-item.is-active {
    border-color: rgba(212, 176, 106, 0.45);
    background: var(--accent-soft);
    transform: none;
  }
}

@media (max-width: 768px) {
  .method-card,
  .method-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .method-card:nth-child(even) .method-card__media {
    order: 0;
  }

  .method-card {
    --stack-base: 4.5rem;
    --stack-step: 0.9rem;
    margin-bottom: clamp(2rem, 8vh, 3rem);
    min-height: auto;
  }

  .method-card__media img {
    min-height: 180px;
    max-height: 200px;
  }

  .method-card__ghost {
    font-size: 4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .method-card {
    position: relative;
    top: auto;
    margin-bottom: 1.25rem;
  }

  .method-card__media img {
    transform: none !important;
  }
}

/* ---- css/why.css ---- */
/* Section 05 — Pourquoi Anaest / Excellence en chiffres */

.why-scene {
  overflow: hidden;
}

.why-scene .section-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.why-dashboard {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: stretch;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.why-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.85rem, 1.5vw, 1rem);
}

.why-stat {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--bg-card);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 0.4s, transform 0.4s var(--ease-out-expo), box-shadow 0.4s;
}

.why-stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0.7;
}

.why-stat:hover {
  border-color: rgba(212, 176, 106, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
}

.why-stat__num {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 0.65rem;
}

.why-stat__num--text {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

.why-stat__suffix {
  font-size: 0.55em;
  font-weight: 700;
  color: var(--text);
}

.why-stat p {
  font-size: 0.72rem;
  line-height: 1.55;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  max-width: 16ch;
}

.why-visual {
  position: relative;
  min-height: 100%;
  border: 1px solid var(--line);
  overflow: hidden;
  isolation: isolate;
}

.why-visual img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease-out-expo);
}

.why-visual:hover img {
  transform: scale(1.04);
}

.why-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(8, 8, 8, 0.92) 100%);
  pointer-events: none;
}

.why-visual__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: clamp(1.25rem, 3vw, 1.75rem);
}

.why-visual__caption span {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.why-visual__caption p {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-style: italic;
  line-height: 1.35;
  color: var(--text);
}

.why-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.85rem, 1.5vw, 1.25rem);
}

.why-pillar {
  padding: clamp(1.35rem, 2.5vw, 1.75rem);
  background: var(--bg-elevated);
  border: 1px solid var(--line-strong);
  transition: border-color 0.4s, transform 0.4s var(--ease-out-expo), box-shadow 0.4s;
}

.why-pillar:hover {
  border-color: rgba(212, 176, 106, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.why-pillar__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--accent);
  border: 1px solid rgba(212, 176, 106, 0.25);
  background: rgba(212, 176, 106, 0.06);
}

.why-pillar h3 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
}

.why-pillar p {
  font-size: 0.78rem;
  line-height: 1.65;
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .why-dashboard {
    grid-template-columns: 1fr;
  }

  .why-visual {
    min-height: 280px;
  }

  .why-pillars {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .why-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-stat p {
    font-size: 0.65rem;
  }

  .why-pillars {
    grid-template-columns: 1fr;
  }
}

/* ---- css/tile-lazy.css ---- */
/* Tuiles services — fond chargé au scroll (perf LCP) */
.service-tile--visual[data-tile-bg]:not(.is-tile-loaded)::after {
  background-image: linear-gradient(
    180deg,
    rgba(8, 8, 8, 0.15) 0%,
    rgba(8, 8, 8, 0.55) 38%,
    rgba(8, 8, 8, 0.94) 100%
  );
}

/* ---- css/services-mobile.css ---- */
/* Expertises — carrousel mobile (accueil) */

@media (max-width: 768px) {
  .services-grid-section.cin-services-scene {
    padding-left: 0;
    padding-right: 0;
    overflow: visible;
  }

  .cin-services-head {
    padding-left: clamp(1.25rem, 5vw, 1.5rem);
    padding-right: clamp(1.25rem, 5vw, 1.5rem);
  }

  .cin-services-head .section-header {
    text-align: left;
  }

  .cin-services-wrap {
    position: relative;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: clamp(1.25rem, 5vw, 1.5rem);
    padding: 0.75rem clamp(1.25rem, 5vw, 1.5rem) 1.25rem;
    margin-bottom: 0.5rem;
    min-height: 340px;
    scrollbar-width: none;
    /* pas de mask-image — bug d'affichage iOS/Safari */
  }

  .cin-services-wrap::-webkit-scrollbar {
    display: none;
  }

  .cin-services-track {
    display: flex !important;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0.85rem;
    width: max-content;
    min-height: 320px;
    transform: none !important;
    grid-template-columns: unset !important;
  }

  .cin-services-track .service-tile {
    width: min(84vw, 300px);
    flex-shrink: 0;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    min-height: 320px;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none;
    transition: border-color 0.35s, box-shadow 0.35s;
  }

  .cin-services-track .service-tile.is-active {
    border-color: rgba(212, 176, 106, 0.5);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  }

  /* Tuiles avec photo de fond */
  .service-tile--visual {
    isolation: isolate;
    border-color: rgba(212, 176, 106, 0.2);
    background-color: #0c0c0c;
  }

  .service-tile--visual::before {
    transform: scaleX(1);
    opacity: 0.85;
  }

  .service-tile--visual::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background-color: #0c0c0c;
    background-image:
      linear-gradient(180deg, rgba(8, 8, 8, 0.25) 0%, rgba(8, 8, 8, 0.78) 42%, rgba(8, 8, 8, 0.97) 100%),
      var(--tile-bg, none);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .service-tile--visual > * {
    position: relative;
    z-index: 1;
  }

  .service-tile--visual .service-tile-icon {
    background: rgba(8, 8, 8, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-color: rgba(212, 176, 106, 0.35);
  }

  .service-tile--visual h3,
  .service-tile--visual p,
  .service-tile--visual .service-tile-link,
  .service-tile--visual .service-tile-num {
    color: var(--text);
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.8);
  }

  .service-tile--visual p {
    color: var(--text-muted);
  }

  /* UI mobile : compteur + dots */
  .cin-services-mobile-ui {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0 clamp(1.25rem, 5vw, 1.5rem);
    margin-bottom: 0.75rem;
  }

  .cin-services-mobile-count {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-dim);
    flex-shrink: 0;
  }

  .cin-services-mobile-count strong {
    color: var(--accent);
    font-weight: 700;
  }

  .cin-services-mobile-dots {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex: 1;
    justify-content: flex-end;
  }

  .cin-services-mobile-dot {
    width: 6px;
    height: 6px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transition: width 0.35s var(--ease-out-expo), background 0.35s;
  }

  .cin-services-mobile-dot.is-active {
    width: 22px;
    border-radius: 3px;
    background: var(--accent);
  }

  .cin-services-hint__desktop {
    display: none;
  }

  .cin-services-hint--dual {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0 1.25rem;
    margin-top: 0.25rem;
    color: var(--text-dim);
    transition: opacity 0.4s;
  }

  .cin-services-hint__arrow {
    color: var(--accent);
    animation: svcSwipeNudge 1.8s ease-in-out infinite;
  }

  .cin-services-hint--dual.is-hidden {
    opacity: 0.35;
  }

  .services-grid-section .btn-outline {
    margin-top: 2rem !important;
    margin-left: clamp(1.25rem, 5vw, 1.5rem);
    margin-right: clamp(1.25rem, 5vw, 1.5rem);
  }
}

@keyframes svcSwipeNudge {
  0%, 100% { transform: translateX(0); opacity: 0.6; }
  50% { transform: translateX(5px); opacity: 1; }
}

@media (min-width: 769px) {
  .cin-services-mobile-ui {
    display: none;
  }

  .cin-services-hint__mobile,
  .cin-services-hint__arrow {
    display: none;
  }

  .cin-services-hint__desktop {
    display: inline;
  }

  .service-tile--visual {
    isolation: isolate;
    border-color: rgba(212, 176, 106, 0.18);
    background-color: #0c0c0c;
    overflow: hidden;
  }

  .service-tile--visual::before {
    transform: scaleX(1);
    opacity: 0.75;
  }

  .service-tile--visual::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background-color: #0c0c0c;
    background-image:
      linear-gradient(180deg, rgba(8, 8, 8, 0.15) 0%, rgba(8, 8, 8, 0.55) 38%, rgba(8, 8, 8, 0.94) 100%),
      var(--tile-bg, none);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.6s var(--ease-out-expo);
  }

  .service-tile--visual:hover::after {
    transform: scale(1.04);
  }

  .service-tile--visual > * {
    position: relative;
    z-index: 1;
  }

  .service-tile--visual .service-tile-icon {
    background: rgba(8, 8, 8, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-color: rgba(212, 176, 106, 0.3);
  }

  .service-tile--visual h3,
  .service-tile--visual p,
  .service-tile--visual .service-tile-link,
  .service-tile--visual .service-tile-num {
    color: var(--text);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.75);
  }

  .service-tile--visual p {
    color: var(--text-muted);
  }
}

/* Page services.html — grille desktop, carrousel mobile */
@media (min-width: 769px) {
  .cin-services-scene--static-grid .cin-services-wrap {
    overflow: visible;
  }

  .cin-services-scene--static-grid .cin-services-track {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    width: 100% !important;
    transform: none !important;
    gap: 1.5rem;
  }

  .cin-services-scene--static-grid .cin-services-track .service-tile {
    width: auto;
  }

  .cin-services-scene--static-grid .cin-services-hint {
    display: none;
  }
}

/* ---- css/hero.css ---- */
/* Hero photo — accueil */

.hero--photo {
  background: #080808;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.02);
}

.hero--photo .hero-overlay {
  background:
    linear-gradient(105deg, rgba(6, 6, 6, 0.94) 0%, rgba(8, 8, 8, 0.78) 36%, rgba(8, 8, 8, 0.52) 58%, rgba(8, 8, 8, 0.72) 100%),
    linear-gradient(to top, var(--bg) 0%, transparent 48%);
  z-index: 1;
}

.hero--photo .hero-mesh {
  z-index: 1;
  opacity: 0.18;
}

.hero--photo .hero-canvas-wrap {
  z-index: 1;
  opacity: 0.22;
}

.hero--photo .hero-content,
.hero--photo .hero-scroll,
.hero--photo .hero-stats {
  z-index: 3;
}

.hero--photo .hero-title,
.hero--photo .hero-title .line {
  color: #ffffff;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.65), 0 0 80px rgba(0, 0, 0, 0.35);
}

.hero--photo .hero-sub {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.55);
}

.hero--photo .hero-eyebrow {
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

.hero--photo .hero-sub strong {
  color: #ffffff;
}

.hero--photo .stat-num {
  color: #ffffff;
  font-size: clamp(1.45rem, 2.8vw, 2.35rem);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

@media (min-width: 769px) {
  .hero-sub__break {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero--photo .stat-num {
    white-space: normal;
    font-size: clamp(1.05rem, 4.5vw, 1.25rem);
  }
}

@media (max-width: 768px) {
  .hero--photo .hero-mesh {
    display: none;
  }

  /* Garder l'overlay — ne pas masquer .hero-canvas-wrap entier */
  .hero--photo .hero-canvas-wrap #webgl-canvas {
    display: none;
  }

  .hero--photo .hero-canvas-wrap {
    display: block;
    z-index: 1;
    pointer-events: none;
  }

  .hero--photo .hero-badge {
    display: none;
  }

  .hero--photo .hero-bg {
    z-index: 0;
  }

  .hero--photo .hero-bg img {
    object-position: center 50%;
    opacity: 0.55;
    filter: brightness(0.45) saturate(0.75);
  }

  .hero--photo .hero-overlay {
    background:
      linear-gradient(180deg, rgba(6, 6, 6, 0.72) 0%, rgba(6, 6, 6, 0.88) 42%, rgba(6, 6, 6, 0.96) 78%, var(--bg) 100%),
      linear-gradient(105deg, rgba(6, 6, 6, 0.55) 0%, transparent 55%);
  }

  .hero--photo .hero-content,
  .hero--photo .hero-stats {
    position: relative;
    z-index: 3;
  }

  .hero--photo .hero-title,
  .hero--photo .hero-title .line,
  .hero--photo .hero-title .line-accent {
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.65);
  }

  .hero--photo .hero-eyebrow {
    color: var(--accent);
    text-shadow: none;
  }

  .hero--photo .hero-sub {
    color: rgba(255, 255, 255, 0.88);
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
  }

  .hero--photo .hero-sub strong {
    color: #ffffff;
  }

  .hero--photo .stat-num,
  .hero--photo .stat-plus {
    color: #ffffff;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
  }

  .hero--photo .stat-label {
    color: rgba(255, 255, 255, 0.55);
  }

  .hero--photo .hero-actions .btn-ghost {
    color: #ffffff;
    background: rgba(12, 12, 12, 0.65);
    border-color: rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero--photo .hero-canvas-wrap,
  .hero--photo .hero-mesh {
    display: none;
  }
}

/* ---- css/cookies.css ---- */
/* Bannière cookies RGPD */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  padding: 1rem clamp(1rem, 4vw, 1.5rem);
  padding-bottom: max(1rem, env(safe-area-inset-bottom));
  transform: translateY(110%);
  transition: transform 0.5s var(--ease-out-expo);
  pointer-events: none;
}

.cookie-banner.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-banner__inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  padding: 1.15rem 1.35rem;
  border: 1px solid rgba(212, 176, 106, 0.25);
  background: rgba(10, 10, 10, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 -12px 48px rgba(0, 0, 0, 0.45);
}

.cookie-banner__text {
  flex: 1 1 280px;
  font-size: 0.78rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}

.cookie-banner__text strong {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  flex-shrink: 0;
}

.cookie-banner__link {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner__link:hover {
  color: var(--accent);
}

.cookie-banner__accept {
  padding: 0.75rem 1.35rem;
  border: none;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.cookie-banner__accept:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--accent-glow);
}

@media (max-width: 768px) {
  .cookie-banner {
    padding: 0.5rem 0.75rem;
    padding-bottom: max(0.5rem, env(safe-area-inset-bottom));
  }

  .cookie-banner__inner {
    flex-direction: row;
    align-items: center;
    gap: 0.65rem;
    padding: 0.65rem 0.75rem;
  }

  .cookie-banner__text {
    flex: 1 1 auto;
    font-size: 0.62rem;
    line-height: 1.45;
  }

  .cookie-banner__text strong {
    display: inline;
    font-size: 0.58rem;
    margin-bottom: 0;
    margin-right: 0.35rem;
  }

  .cookie-banner__actions {
    flex-shrink: 0;
    gap: 0.45rem;
  }

  .cookie-banner__link {
    display: none;
  }

  .cookie-banner__accept {
    padding: 0.5rem 0.75rem;
    font-size: 0.55rem;
    white-space: nowrap;
  }
}

/* ---- css/a11y.css ---- */
/* Accessibilité — focus & navigation clavier */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.menu-toggle:focus-visible,
.nav-dropdown-btn:focus-visible,
.cookie-banner__accept:focus-visible,
.cin-services-mobile-dot:focus-visible,
.method-stack__rail-item:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.mobile-nav.open {
  visibility: visible;
}

.mobile-nav a:focus-visible {
  outline-offset: -2px;
  background: var(--accent-soft);
}

#servicesCarousel:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.service-tile:focus-visible {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(212, 176, 106, 0.25);
}

@media (prefers-reduced-motion: reduce) {
  .cookie-banner {
    transition: none;
  }
}

/* ---- css/mobile.css ---- */
/* Ana Est — adaptations mobile & tablette */

@media (max-width: 1024px) {
  .manifeste-visual {
    height: auto;
    min-height: 0;
  }

  .manifeste {
    min-height: auto;
    gap: 2.5rem;
  }

  .territoire {
    min-height: auto;
    gap: 2.5rem;
  }

  .process-stack,
  .method-stack {
    min-height: auto;
  }

  .cta {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .split-char,
  .split-word {
    transform: translateY(0) !important;
    opacity: 1 !important;
  }

  /* Header & navigation — logo grand, contrôles toujours visibles */
  .header {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 0.85rem;
    padding-top: max(0.55rem, env(safe-area-inset-top));
  }

  .header .logo {
    flex: 1 1 auto;
    min-width: 0;
    max-width: calc(100% - 6.5rem); /* place réservée thème + burger */
  }

  .logo-img {
    height: 70px;
    width: auto;
    max-width: 100%;
  }

  .theme-toggle--mobile {
    flex: 0 0 auto;
    flex-shrink: 0;
    z-index: 220;
    margin-left: 0 !important;
    margin-right: 0.15rem;
  }

  .menu-toggle {
    display: flex;
    flex: 0 0 auto;
    flex-shrink: 0;
    z-index: 220;
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    -webkit-tap-highlight-color: transparent;
  }

  .menu-toggle span {
    width: 20px;
    height: 2px;
    background: #fff;
  }

  .menu-toggle.active span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle.active span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-nav {
    justify-content: flex-start;
    align-items: stretch;
    padding: max(7.25rem, calc(env(safe-area-inset-top) + 6.25rem)) 1.5rem 2rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
  }

  .mobile-nav > a:not(.mobile-services a) {
    font-size: 1.35rem;
    padding: 0.35rem 0;
  }

  .mobile-nav .mobile-services {
    align-items: stretch;
    padding: 0.75rem 0 0.5rem;
    border-top: 1px solid var(--line);
    margin-top: 0.5rem;
  }

  .mobile-nav .mobile-services a {
    font-size: 0.8rem;
    padding: 0.5rem 0;
    text-align: left;
  }

  body:has(.mobile-nav.open) .quick-bar {
    display: none;
  }

  .hero-actions .btn-ghost--subtle {
    width: 100%;
  }

  /* Hero accueil */
  .hero {
    min-height: 100svh;
    min-height: 100dvh;
    padding: 5rem 1.25rem 1.5rem;
    justify-content: flex-end;
  }

  .hero-title {
    font-size: clamp(1.35rem, 7.2vw, 1.85rem);
    margin-bottom: 1rem;
    line-height: 1.08;
    max-width: 100%;
    letter-spacing: -0.03em;
  }

  .hero-title .line,
  .hero-title .line:first-child {
    display: block;
    max-width: 100%;
    font-size: inherit;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: clip;
  }

  .hero-title .line-accent {
    font-size: clamp(1.55rem, 8.2vw, 2.15rem);
    white-space: nowrap;
  }

  .hero-eyebrow {
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    margin-bottom: 0.85rem;
  }

  .hero-badge {
    display: none;
  }

  .hero-content {
    padding-inline: 1.35rem;
    width: 100%;
    box-sizing: border-box;
  }

  .hero-sub {
    font-size: 0.74rem;
    line-height: 1.65;
    max-width: 100%;
    letter-spacing: 0.02em;
    overflow-wrap: break-word;
    hyphens: none;
  }

  .hero-sub br,
  .hero-sub__break {
    display: block;
  }

  .hero-sub__line2 {
    display: block;
    margin-top: 0.4rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    margin-top: 1.25rem;
    gap: 0.75rem;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    width: 100%;
    justify-content: center;
    padding: 0.95rem 1.25rem;
  }

  .hero-stats {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.45rem;
    width: 100%;
  }

  .stat {
    min-width: 0;
    text-align: left;
    padding: 0.65rem 0.85rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.65rem;
    align-items: baseline;
    border: 1px solid var(--line);
    background: rgba(0, 0, 0, 0.25);
  }

  .stat-num {
    font-size: 1.15rem;
  }

  .stat-plus {
    font-size: 1rem;
  }

  .stat-label {
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    line-height: 1.35;
    margin-top: 0;
  }

  /* Sections générales */
  .section {
    padding: 3.25rem 1.25rem;
  }

  .section-title,
  .cta-title {
    font-size: clamp(1.35rem, 6.2vw, 1.95rem);
    line-height: 1.15;
    letter-spacing: -0.025em;
    max-width: 100%;
    overflow-wrap: break-word;
    hyphens: none;
  }

  .section-title .split-line,
  .cta-title .split-line,
  .page-hero-title .split-line {
    display: block;
    max-width: 100%;
  }

  .quote-line {
    font-size: clamp(1.4rem, 6.5vw, 2rem) !important;
    line-height: 1.18 !important;
    max-width: 100%;
    overflow-wrap: break-word;
    hyphens: none;
  }

  .about-hero__brand {
    font-size: clamp(1.85rem, 10vw, 2.6rem);
    line-height: 1.05;
  }

  .about-manifeste__quote .quote-line {
    font-size: clamp(1.45rem, 7vw, 2.1rem) !important;
  }

  .about-zone__block li,
  .about-split__title {
    overflow-wrap: break-word;
    hyphens: none;
  }

  .section-header.centered {
    margin-bottom: 2rem;
  }

  .section-desc {
    font-size: 0.88rem;
  }

  /* Manifeste & process — voir sections.css */

  .territoire-zones span {
    font-size: 0.58rem;
    padding: 0.4rem 0.75rem;
  }

  /* Références : logos visibles, anciennes cartes secteur masquées si présentes */
  .clients-grid {
    display: none;
  }

  /* Services grid */
  .service-tile {
    min-height: auto;
    padding: 1.35rem;
  }

  .service-tile h3 {
    font-size: 1rem;
  }

  .service-tile p {
    font-size: 0.8rem;
  }

  /* Témoignages — voir sections.css */

  /* CTA & formulaire */
  .cta {
    padding: 3.5rem 1.25rem;
  }

  .cta-title {
    font-size: clamp(1.65rem, 7.5vw, 2.35rem);
    margin-bottom: 1.5rem;
  }

  .btn-submit {
    width: 100%;
    padding: 1rem 1.5rem;
  }

  .cta-info {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.35rem 0.75rem;
    font-size: 0.75rem;
  }

  .cta-info .sep {
    display: none;
  }

  /* Bouton flottant — voir quick-bar.css */
  .page-hero {
    min-height: auto;
    padding: 5rem 1.25rem 2rem;
  }

  .page-hero--photo {
    min-height: 380px;
    padding: 5.5rem 1.25rem 2rem;
    align-items: flex-end;
  }

  .page-hero--photo .page-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
  }

  .page-hero-title {
    font-size: clamp(1.25rem, 5.8vw, 1.8rem);
    margin-bottom: 1rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
    max-width: 100%;
    overflow-wrap: break-word;
    hyphens: none;
  }

  body:not([data-page="home"]) .page-hero-title {
    font-size: clamp(1.25rem, 5.5vw, 1.75rem);
  }

  body:not([data-page="home"]) .section-title,
  body:not([data-page="home"]) .cta-title {
    font-size: clamp(1.3rem, 5.8vw, 1.85rem);
  }

  html, body {
    overflow-x: clip;
  }

  .page-hero-content,
  .hero-content,
  .section-header,
  .about-hero__content {
    max-width: 100%;
    min-width: 0;
  }

  .page-hero-desc {
    font-size: 0.88rem;
    max-width: none;
  }

  .page-hero-content .btn-primary {
    width: 100%;
    justify-content: center;
    margin-top: 1.25rem !important;
  }

  .breadcrumb {
    flex-wrap: wrap;
    row-gap: 0.25rem;
    font-size: 0.55rem;
    margin-bottom: 1rem;
  }

  .page-content {
    gap: 2rem;
  }

  .page-sidebar {
    padding: 1.25rem;
  }

  .page-sidebar .btn-submit,
  .page-sidebar .btn-outline {
    font-size: 0.7rem;
  }

  .features-list {
    gap: 0.75rem;
  }

  .feature-item {
    padding: 1.15rem;
  }

  .other-services {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  /* Avant / après */
  .ba-grid {
    gap: 1.25rem;
  }

  .ba-slider {
    touch-action: none;
  }

  .ba-handle {
    width: 3px;
  }

  .ba-handle::after {
    width: 44px;
    height: 44px;
    font-size: 0.75rem;
  }

  .ba-labels {
    top: 0.65rem;
    left: 0.65rem;
    right: 0.65rem;
  }

  .ba-labels span {
    font-size: 0.55rem;
    padding: 0.3rem 0.55rem;
  }

  .ba-caption {
    padding: 1rem;
  }

  .ba-caption h3 {
    font-size: 0.78rem;
  }

  .ba-caption p {
    font-size: 0.75rem;
  }

  .ba-section-header {
    margin-bottom: 1.5rem;
  }

  .split-block {
    gap: 1.5rem;
  }

  .split-image {
    aspect-ratio: 16 / 10;
  }

  .case-study {
    margin: 1.5rem 0;
  }

  .case-study-image,
  .case-study-image img {
    min-height: 200px;
  }

  .case-study-body {
    padding: 1.35rem;
  }

  .case-study-body h3 {
    font-size: 1rem;
  }

  .case-metrics {
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
  }

  .service-stats-band .service-stat-item {
    padding: 1.15rem 0.85rem;
  }

  .service-stat-item strong {
    font-size: 1.5rem;
  }

  .service-page-process {
    gap: 0.5rem;
    margin: 1.25rem 0;
  }

  .service-page-step {
    padding: 1rem 0.75rem;
  }

  .photo-strip {
    gap: 0.35rem;
  }

  .checklist {
    gap: 0.5rem 1rem;
  }

  /* FAQ — voir sections.css */

  /* Footer */
  .footer {
    padding: 2.5rem 1.25rem 1.25rem;
  }

  .footer-grid {
    gap: 2rem;
  }

  .footer-bottom {
    padding-top: 1.5rem;
    margin-top: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: clamp(1.25rem, 7vw, 1.7rem);
  }

  .hero-title .line-accent {
    font-size: clamp(1.4rem, 7.8vw, 1.95rem);
  }

  .hero-sub {
    font-size: 0.68rem;
  }

  .mobile-nav > a:not(.mobile-services a) {
    font-size: 1.15rem;
  }

  .stat-label {
    font-size: 0.52rem;
  }

  .clients-marquee {
    margin: 2rem 0;
  }

  .marquee-track span {
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding-top: 4.5rem;
    padding-bottom: 1.5rem;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .mobile-nav {
    padding-top: 4rem;
  }
}

/* ---- css/service-page-mobile.css ---- */
/* Pages service individuelles — mobile & tablette */

@media (max-width: 768px) {
  body[data-page="service"] .section {
    padding: 2.75rem 1.15rem;
  }

  body[data-page="service"] .section--alt + .section,
  body[data-page="service"] .section + .section--alt {
    border-top: none;
  }

  /* Hero plus compact */
  body[data-page="service"] .page-hero--photo {
    min-height: min(72svh, 420px);
    padding: 5rem 1.15rem 1.75rem;
  }

  body[data-page="service"] .page-hero-title {
    font-size: clamp(1.35rem, 6.5vw, 1.75rem);
    line-height: 1.08;
  }

  body[data-page="service"] .page-hero-desc {
    font-size: 0.84rem;
    line-height: 1.65;
  }

  body[data-page="service"] .page-hero-actions .btn-ghost {
    display: none;
  }

  body[data-page="service"] .page-hero-actions .btn-primary {
    margin-top: 1rem !important;
    font-size: 0.68rem;
    padding: 1rem 1.25rem;
  }

  /* Stats 2×2 au lieu de 4 lignes */
  body[data-page="service"] .service-stats-band {
    grid-template-columns: repeat(2, 1fr);
  }

  body[data-page="service"] .service-stat-item {
    padding: 1rem 0.65rem;
  }

  body[data-page="service"] .service-stat-item strong {
    font-size: 1.35rem;
  }

  body[data-page="service"] .service-stat-item span {
    font-size: 0.58rem;
    line-height: 1.35;
  }

  /* Intro : image d'abord */
  body[data-page="service"] .split-block {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  body[data-page="service"] .split-image {
    order: -1;
    aspect-ratio: 16 / 11;
  }

  body[data-page="service"] .split-block .section-title {
    font-size: clamp(1.25rem, 5.5vw, 1.55rem) !important;
  }

  body[data-page="service"] .svc-for-who {
    gap: 0.4rem;
  }

  body[data-page="service"] .svc-for-who span {
    font-size: 0.58rem;
    padding: 0.38rem 0.65rem;
  }

  /* Avantages : carrousel horizontal */
  body[data-page="service"] .section-header.centered {
    text-align: left;
    margin-bottom: 1.5rem;
  }

  body[data-page="service"] .section-header.centered .section-desc {
    margin-left: 0;
    margin-right: 0;
  }

  body[data-page="service"] .svc-benefits {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 0.85rem;
    margin: 0 -1.15rem;
    padding: 0 1.15rem 0.35rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  body[data-page="service"] .svc-benefits::-webkit-scrollbar {
    display: none;
  }

  body[data-page="service"] .svc-benefit {
    flex: 0 0 min(78vw, 260px);
    scroll-snap-align: start;
    padding: 1.25rem;
  }

  body[data-page="service"] .svc-benefit h4 {
    font-size: 0.72rem;
  }

  body[data-page="service"] .svc-benefit p {
    font-size: 0.78rem;
  }

  /* Avant / après */
  body[data-page="service"] .ba-section-header {
    text-align: left;
    margin-bottom: 1.25rem;
  }

  body[data-page="service"] .ba-section-header .section-title {
    font-size: clamp(1.3rem, 5.8vw, 1.7rem);
  }

  body[data-page="service"] .ba-section-header p {
    max-width: none !important;
    font-size: 0.82rem !important;
  }

  /* Processus */
  body[data-page="service"] .svc-process-list {
    gap: 0.75rem;
    margin-top: 1.25rem;
  }

  body[data-page="service"] .svc-process-item {
    padding: 1.1rem;
    gap: 0.85rem;
  }

  body[data-page="service"] .svc-process-num {
    width: 34px;
    height: 34px;
    font-size: 0.62rem;
  }

  /* CTA milieu — un seul bouton principal */
  body[data-page="service"] .svc-mid-cta {
    padding: 1.5rem 1.15rem;
    text-align: left;
    align-items: stretch;
  }

  body[data-page="service"] .svc-mid-cta-text h3 {
    font-size: 1.1rem;
  }

  body[data-page="service"] .svc-mid-cta-actions .btn-ghost {
    display: none;
  }

  /* Étude de cas */
  body[data-page="service"] .case-study {
    display: flex;
    flex-direction: column;
    margin: 0;
  }

  body[data-page="service"] .case-study-image {
    aspect-ratio: 16 / 10;
  }

  body[data-page="service"] .case-study-image,
  body[data-page="service"] .case-study-image img {
    min-height: 0;
  }

  body[data-page="service"] .case-study-body {
    padding: 1.15rem;
  }

  body[data-page="service"] .case-study-body h3 {
    font-size: 0.95rem;
  }

  body[data-page="service"] .case-study-body p {
    font-size: 0.82rem;
  }

  /* Prestations : CTA sidebar en premier, version allégée */
  body[data-page="service"] .page-content {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
  }

  body[data-page="service"] .page-sidebar {
    order: -1;
    padding: 1.15rem;
    position: static;
  }

  body[data-page="service"] .page-sidebar > h3,
  body[data-page="service"] .page-sidebar > ul {
    display: none;
  }

  body[data-page="service"] .page-sidebar .btn-outline {
    display: none;
  }

  body[data-page="service"] .page-sidebar .btn-ghost {
    display: none;
  }

  body[data-page="service"] .page-main h2 {
    font-size: clamp(1.2rem, 5.2vw, 1.45rem);
    margin-bottom: 1rem;
  }

  body[data-page="service"] .features-list {
    gap: 0.65rem;
    margin: 1.25rem 0;
  }

  body[data-page="service"] .feature-item {
    padding: 1rem;
  }

  body[data-page="service"] .checklist {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  body[data-page="service"] .checklist li {
    font-size: 0.78rem;
  }

  body[data-page="service"] .svc-deliverables {
    gap: 0.85rem;
    margin-top: 1.25rem;
  }

  body[data-page="service"] .svc-deliverables-block {
    padding: 1.15rem;
  }

  body[data-page="service"] .svc-review {
    margin: 1.5rem 0 0;
    padding: 1.25rem;
  }

  body[data-page="service"] .svc-review blockquote {
    font-size: 0.95rem;
  }

  /* FAQ services */
  body[data-page="service"] .section .faq-list {
    max-width: none;
    margin-top: 1.5rem;
  }

  body[data-page="service"] .section .faq-list .faq-question {
    font-size: 0.86rem;
    padding: 1.15rem 0.1rem 1.15rem 0;
    gap: 1rem;
  }

  body[data-page="service"] .section .faq-list .faq-icon {
    width: 1.6rem;
    height: 1.6rem;
    font-size: 0.95rem;
  }

  body[data-page="service"] .section .faq-list .faq-item.open .faq-answer {
    padding: 0 1.8rem 1.15rem 0;
  }

  body[data-page="service"] .section .faq-list .faq-answer p {
    font-size: 0.82rem;
  }

  /* Autres services */
  body[data-page="service"] .other-services {
    gap: 0.65rem;
  }

  body[data-page="service"] .other-service-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.15rem;
    font-size: 0.78rem;
  }

  /* CTA final */
  body[data-page="service"] .section.cta .page-hero-actions .btn-ghost {
    display: flex;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  body[data-page="service"] .page-hero--photo {
    min-height: 360px;
  }
}

/* ---- css/temoignages.css ---- */
/* Page Témoignages — alignée sur l'accueil */

body[data-page="temoignages"] .page-hero--photo .page-hero-desc {
  max-width: 520px;
}

/* Vedette */
.temoignages-featured {
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.temoignages-featured__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  max-width: 1140px;
  margin: 0 auto;
}

.temoignages-featured__tag {
  display: inline-block;
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(212, 176, 106, 0.35);
  padding: 0.35rem 0.75rem;
  margin-bottom: 1.25rem;
}

.temoignages-featured__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 3.2vw, 2.1rem);
  font-style: italic;
  line-height: 1.45;
  color: var(--text);
  margin-bottom: 2rem;
}

.temoignages-featured__quote::before {
  content: '\201C';
  display: block;
  font-size: 2.5rem;
  line-height: 1;
  color: rgba(212, 176, 106, 0.35);
  margin-bottom: 0.5rem;
}

.temoignages-featured__author strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.temoignages-featured__author span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.temoignages-featured__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(212, 176, 106, 0.2);
}

.temoignages-featured__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.temoignages-featured__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 8, 8, 0.7) 0%, transparent 45%);
}

.temoignages-featured__badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 1;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(212, 176, 106, 0.4);
  padding: 0.45rem 0.85rem;
  backdrop-filter: blur(8px);
  background: rgba(8, 8, 8, 0.45);
}

/* Grille principale */
.temoignages-reviews {
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.temoignages-reviews .reviews-grid {
  max-width: 1100px;
  margin: 0 auto;
}

.temoignages-reviews .reviews-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* Preuve visuelle */
.temoignages-proof__ba {
  max-width: 880px;
  margin: 0 auto;
}

.temoignages-proof__ba .ba-card {
  border: 1px solid rgba(212, 176, 106, 0.15);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35);
}

/* Références — même bande logos que l'accueil */
.temoignages-trust .partners-rail {
  margin-top: 2rem;
}

/* CTA contact */
body[data-page="temoignages"] .section.cta .cta-inner {
  max-width: 1140px;
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  backdrop-filter: none;
  padding: clamp(2rem, 5vw, 3.5rem);
}

@media (max-width: 900px) {
  .temoignages-featured__grid {
    grid-template-columns: 1fr;
  }

  .temoignages-featured__visual {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 768px) {
  body[data-page="temoignages"] .section.cta {
    padding-left: 0;
    padding-right: 0;
  }

  body[data-page="temoignages"] .section.cta .cta-inner {
    padding: 1.25rem 1rem 2rem;
    border: none;
  }
}

/* ---- css/faq.css ---- */
/* Page FAQ */

.faq-page-hero .page-hero-desc {
  max-width: 520px;
}

.faq-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.faq-stat {
  padding: 1.35rem 1rem;
  background: var(--bg);
  text-align: center;
}

.faq-stat strong {
  display: block;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.faq-stat span {
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.faq-page__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.75rem;
}

.faq-page__nav a {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-muted);
  padding: 0.6rem 0.95rem;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.3s, color 0.3s, background 0.3s, box-shadow 0.3s;
}

.faq-page__nav a:hover,
.faq-page__nav a.is-active {
  color: var(--accent);
  border-color: rgba(212, 176, 106, 0.5);
  background: var(--accent-soft);
}

.faq-category {
  margin-bottom: 3.75rem;
  scroll-margin-top: 6rem;
}

.faq-category:last-of-type {
  margin-bottom: 0;
}

.faq-category__head {
  max-width: 640px;
  margin-bottom: 1.75rem;
}

.faq-category__head .section-title {
  margin-top: 0.5rem;
}

.faq-page .faq-list {
  max-width: 820px;
}

.faq-page .faq-item {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.025);
}

.faq-page .faq-item.open {
  border-color: rgba(212, 176, 106, 0.4);
  background: rgba(212, 176, 106, 0.05);
}

.faq-page-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1rem;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  border: 1px solid rgba(212, 176, 106, 0.28);
  background:
    radial-gradient(ellipse at 0% 50%, rgba(212, 176, 106, 0.1) 0%, transparent 55%),
    var(--bg-elevated);
}

.faq-page-cta h3 {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.faq-page-cta p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.faq-page-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (min-width: 960px) {
  .faq-category {
    display: grid;
    grid-template-columns: minmax(220px, 0.85fr) minmax(0, 1.35fr);
    gap: 2rem 3.25rem;
    align-items: start;
    padding-bottom: 3.25rem;
    margin-bottom: 3.25rem;
    border-bottom: 1px solid var(--line);
  }

  .faq-category:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .faq-category__head {
    position: sticky;
    top: 6.5rem;
    max-width: none;
    margin-bottom: 0;
  }

  .faq-page .faq-list {
    max-width: none;
    margin: 0;
  }
}

@media (max-width: 768px) {
  .faq-stats {
    grid-template-columns: 1fr;
  }

  .faq-page__nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.25rem;
    margin-left: -0.25rem;
    margin-right: -0.25rem;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .faq-page__nav::-webkit-scrollbar {
    display: none;
  }

  .faq-page__nav a {
    flex-shrink: 0;
  }

  .faq-page-cta {
    grid-template-columns: 1fr;
  }

  .faq-page-cta__actions {
    width: 100%;
  }

  .faq-page-cta__actions .btn-primary,
  .faq-page-cta__actions .btn-ghost {
    flex: 1;
    justify-content: center;
    text-align: center;
  }
}

/* ---- css/a-propos.css ---- */
/* ── À propos — composition éditoriale ── */

.about-hero.page-hero {
  min-height: min(92vh, 860px);
}

.about-hero .page-hero-bg img {
  object-position: center 35%;
  filter: brightness(0.72) saturate(0.95);
}

.about-hero__content {
  max-width: 44rem;
  padding-bottom: 2rem;
}

.about-hero__brand {
  font-family: var(--font-serif, "Instrument Serif", Georgia, serif);
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: #fff;
  margin: 0.35rem 0 0.85rem;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.45);
}

.about-hero .page-hero-title {
  font-size: clamp(1.65rem, 4.2vw, 2.75rem);
  margin-bottom: 0.75rem;
}

.about-hero .page-hero-title em {
  font-family: var(--font-serif, "Instrument Serif", Georgia, serif);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  color: var(--accent);
}

.about-hero .page-hero-desc {
  max-width: 28rem;
}

/* Pulse — fine bande, pas dashboard */
.about-pulse {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(212, 176, 106, 0.04), transparent 70%),
    var(--bg);
}

.about-pulse__item {
  padding: 1.35rem 1.25rem;
  border-right: 1px solid var(--line);
  text-align: center;
}

.about-pulse__item:last-child {
  border-right: none;
}

.about-pulse__item strong {
  display: block;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.about-pulse__item span {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Manifeste */
.about-manifeste {
  padding-top: clamp(4rem, 9vw, 7rem);
  padding-bottom: clamp(3.5rem, 8vw, 6rem);
}

.about-manifeste__grid {
  display: grid;
  grid-template-columns: 7rem minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
  max-width: 1100px;
}

.about-manifeste__quote {
  margin: 0 0 2rem;
}

.about-manifeste__quote .quote-line {
  font-family: var(--font-serif, "Instrument Serif", Georgia, serif);
  font-size: clamp(2.4rem, 6.5vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 400;
}

.about-manifeste__quote .quote-accent {
  color: var(--accent);
  font-style: italic;
}

.about-manifeste__text {
  max-width: 36rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-manifeste__text p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin: 0;
}

.about-manifeste__text strong {
  color: var(--text);
  font-weight: 600;
}

/* Split maison */
.about-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: min(78vh, 720px);
  border-top: 1px solid var(--line);
}

.about-split__media {
  margin: 0;
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

.about-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) contrast(1.05);
  transform: scale(1.02);
}

.about-split__panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.75rem, 4vw, 3.5rem);
  background:
    radial-gradient(ellipse at 100% 0%, rgba(212, 176, 106, 0.1) 0%, transparent 55%),
    var(--bg-elevated, var(--bg-card, var(--bg)));
  border-left: 1px solid var(--line);
}

.about-split__title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 0.85rem 0 1.25rem;
}

.about-split__title em {
  font-family: var(--font-serif, "Instrument Serif", Georgia, serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

.about-split__panel > p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 28rem;
  margin: 0 0 2rem;
}

.about-split__meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}

.about-split__meta li {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 0.75rem;
  align-items: baseline;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.about-split__meta span {
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--accent);
}

.about-split__meta a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 176, 106, 0.4);
}

.about-split__meta a:hover {
  color: var(--accent);
}

/* Mosaïque terrain */
.about-mosaic {
  padding: clamp(4rem, 8vw, 6.5rem) clamp(1.25rem, 4vw, 3rem);
}

.about-mosaic__head {
  max-width: 36rem;
  margin-bottom: 2.25rem;
}

.about-mosaic__head .section-title {
  margin-top: 0.75rem;
}

.about-mosaic__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 0.65rem;
}

.about-mosaic__cell {
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: #fff;
  background: var(--bg-card, #0c0c0c);
}

.about-mosaic__cell--a {
  grid-row: 1 / span 2;
}

.about-mosaic__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease;
  filter: saturate(0.88) brightness(0.88);
}

.about-mosaic__cell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 45%, rgba(0, 0, 0, 0.72));
  pointer-events: none;
}

.about-mosaic__cell span {
  position: absolute;
  left: 1.1rem;
  bottom: 1rem;
  z-index: 1;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}

.about-mosaic__cell:hover img {
  transform: scale(1.06);
  filter: saturate(1) brightness(0.95);
}

/* Partenaires — même design logos que l'accueil */
.about-partners {
  padding-top: clamp(3rem, 7vw, 5rem);
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
}

.about-names__label {
  text-align: center;
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1.35rem;
}

.about-names__track {
  display: flex;
  width: max-content;
  gap: 2.75rem;
  animation: about-marquee 38s linear infinite;
  will-change: transform;
}

.about-names__track span {
  font-family: var(--font-serif, "Instrument Serif", Georgia, serif);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-style: italic;
  white-space: nowrap;
  color: var(--text);
  opacity: 0.78;
}

@keyframes about-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .about-names__track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    gap: 1.25rem 2rem;
    padding: 0 1.5rem;
  }

  .about-names__track span[aria-hidden="true"] {
    display: none;
  }
}

/* Axes */
.about-axes {
  padding: clamp(4rem, 8vw, 6rem) clamp(1.25rem, 4vw, 3rem);
  max-width: 1100px;
  margin: 0 auto;
}

.about-axes__intro {
  margin-bottom: 2rem;
  max-width: 32rem;
}

.about-axes__intro .section-title {
  margin-top: 0.75rem;
}

.about-axes__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.about-axes__list a {
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 1.25rem;
  align-items: baseline;
  padding: 1.5rem 0.25rem;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: padding-left 0.3s ease, background 0.3s ease;
}

.about-axes__list a:hover {
  padding-left: 0.65rem;
  background: linear-gradient(90deg, rgba(212, 176, 106, 0.07), transparent 60%);
}

.about-axes__list em {
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: var(--accent);
}

.about-axes__list strong {
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.about-axes__list span {
  font-size: 0.88rem;
  color: var(--text-muted);
  justify-self: end;
  text-align: right;
}

.about-axes__more {
  margin: 1.5rem 0 0;
}

.about-axes__more a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 176, 106, 0.35);
}

.about-axes__more a:hover {
  border-bottom-color: var(--accent);
}

/* Zone d'intervention */
.about-zone {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 15% 20%, rgba(212, 176, 106, 0.12) 0%, transparent 42%),
    linear-gradient(180deg, rgba(18, 18, 18, 0.5) 0%, transparent 40%),
    var(--bg);
}

.about-zone__top {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
  padding: clamp(3.5rem, 8vw, 6.5rem) clamp(1.5rem, 5vw, 4rem) clamp(2rem, 4vw, 3rem);
  max-width: 1200px;
  margin: 0 auto;
}

.about-zone__top--map {
  align-items: center;
}

.about-zone__facts {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.about-zone__facts li {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.about-zone__facts strong {
  display: inline-block;
  min-width: 4.5rem;
  margin-right: 0.5rem;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

.about-zone__map {
  margin: 0;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  overflow: hidden;
  background: #e8eef2;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.about-zone__map-canvas {
  display: block;
  width: 100%;
  height: min(52vh, 420px);
  min-height: 300px;
  background: #e8eef2;
  z-index: 0;
}

.about-zone__map .leaflet-container {
  background: #e8eef2;
  font: inherit;
}

.about-zone__map .leaflet-control-zoom a {
  background: rgba(255, 255, 255, 0.95);
  color: #1a1814;
  border-color: rgba(0, 0, 0, 0.12);
  width: 32px;
  height: 32px;
  line-height: 32px;
}

.about-zone__map .leaflet-control-zoom a:hover {
  background: #fff;
  color: #b8923f;
}

.about-zone__map .leaflet-control-attribution {
  background: rgba(255, 255, 255, 0.82);
  color: #5a564e;
  font-size: 0.58rem;
  max-width: 70%;
}

.about-zone__map .leaflet-control-attribution a {
  color: #3a3630;
}

.about-zone__map .leaflet-popup-content-wrapper {
  background: #fff;
  color: #1a1814;
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.about-zone__map .leaflet-popup-tip {
  background: #fff;
}

.about-zone__map .leaflet-popup-content {
  margin: 0.75rem 0.9rem;
  font-size: 0.85rem;
  line-height: 1.45;
}

.zone-map-marker {
  position: relative;
  background: none;
  border: 0;
}

.zone-map-marker__dot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  margin: -6px 0 0 -6px;
  border-radius: 50%;
  background: var(--accent, #d4b06a);
  box-shadow: 0 0 0 3px rgba(212, 176, 106, 0.35), 0 2px 8px rgba(0, 0, 0, 0.45);
  z-index: 2;
}

.zone-map-marker__pulse {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 28px;
  height: 28px;
  margin: -14px 0 0 -14px;
  border-radius: 50%;
  background: rgba(212, 176, 106, 0.28);
  animation: zone-map-pulse 2.4s ease-out infinite;
  z-index: 1;
}

@keyframes zone-map-pulse {
  0% { transform: scale(0.55); opacity: 0.9; }
  70% { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .zone-map-marker__pulse {
    animation: none;
    opacity: 0.35;
  }
}

.about-zone__map figcaption {
  padding: 0.85rem 1rem 1rem;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  background: #141414;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

html[data-theme="light"] .about-zone__map-canvas,
html[data-theme="light"] .about-zone__map .leaflet-container {
  background: #e8e4dc;
}

html[data-theme="light"] .about-zone__map .leaflet-control-zoom a {
  background: rgba(255, 255, 255, 0.94);
  color: #1a1814;
}

html[data-theme="light"] .about-zone__map .leaflet-control-attribution {
  background: rgba(255, 255, 255, 0.78);
}

html[data-theme="light"] .about-zone__map .leaflet-popup-content-wrapper,
html[data-theme="light"] .about-zone__map .leaflet-popup-tip {
  background: #fff;
  color: #1a1814;
}

.about-zone__title {
  font-size: clamp(2.6rem, 6.5vw, 4.25rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.98;
  margin: 0.85rem 0 1.25rem;
  color: var(--text);
}

.about-zone__desc {
  margin: 0;
  max-width: 26rem;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.about-zone__places {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 2rem 3rem;
  position: relative;
  padding: 0.25rem 0 0.25rem clamp(1.5rem, 4vw, 2.75rem);
}

.about-zone__places::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  bottom: 0.35rem;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), rgba(212, 176, 106, 0.15));
}

.about-zone__block h3 {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1.15rem;
  font-weight: 600;
}

.about-zone__block ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.about-zone__block li {
  font-family: var(--font-serif, "Instrument Serif", Georgia, serif);
  font-size: clamp(1.75rem, 3.6vw, 2.45rem);
  font-style: italic;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text);
}

.about-zone__block li.is-base {
  color: var(--accent) !important;
}

.about-zone__block--soft li {
  font-size: clamp(1.35rem, 2.6vw, 1.75rem);
  color: var(--text-muted);
}

.about-zone__cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem 2rem;
  align-items: center;
  margin: 0 clamp(1.5rem, 5vw, 4rem) clamp(2.5rem, 5vw, 3.5rem);
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid rgba(212, 176, 106, 0.28);
  background:
    linear-gradient(120deg, rgba(212, 176, 106, 0.1) 0%, transparent 50%),
    var(--bg-card, rgba(12, 12, 12, 0.65));
}

.about-zone__cta-label {
  margin: 0 0 0.3rem;
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.about-zone__cta-text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.about-zone__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Light theme */
html[data-theme="light"] .about-split__panel {
  background:
    radial-gradient(ellipse at 100% 0%, rgba(154, 120, 64, 0.1) 0%, transparent 55%),
    linear-gradient(160deg, #f7f4ee 0%, #efe9df 100%);
  border-left-color: var(--line);
}

html[data-theme="light"] .about-names {
  background: rgba(154, 120, 64, 0.05);
}

html[data-theme="light"] .about-zone {
  background:
    radial-gradient(ellipse at 15% 20%, rgba(154, 120, 64, 0.12) 0%, transparent 42%),
    var(--bg);
}

html[data-theme="light"] .about-zone__block li {
  color: #1a1814;
}

html[data-theme="light"] .about-zone__block li.is-base {
  color: #9a7840 !important;
}

html[data-theme="light"] .about-zone__block--soft li {
  color: rgba(26, 24, 20, 0.45);
}

html[data-theme="light"] .about-zone__map {
  background: #e8eef2;
  border-color: rgba(26, 24, 20, 0.12);
  box-shadow: 0 18px 40px rgba(26, 24, 20, 0.08);
}

html[data-theme="light"] .about-zone__map figcaption {
  color: rgba(255, 255, 255, 0.9);
  background: #1a1814;
  border-top-color: rgba(255, 255, 255, 0.1);
}

html[data-theme="light"] .about-zone__cta {
  border-color: rgba(154, 120, 64, 0.35);
  background:
    linear-gradient(120deg, rgba(154, 120, 64, 0.1) 0%, transparent 50%),
    #fff;
}

html[data-theme="light"] .about-axes__list a:hover {
  background: linear-gradient(90deg, rgba(154, 120, 64, 0.1), transparent 60%);
}

/* Responsive */
@media (max-width: 960px) {
  .about-pulse {
    grid-template-columns: 1fr 1fr;
  }

  .about-pulse__item:nth-child(2) {
    border-right: none;
  }

  .about-pulse__item:nth-child(1),
  .about-pulse__item:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .about-manifeste__grid {
    grid-template-columns: 1fr;
  }

  .about-split {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .about-split__media {
    min-height: 320px;
    max-height: 420px;
  }

  .about-split__panel {
    border-left: none;
    border-top: 1px solid var(--line);
  }

  .about-mosaic__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px 220px;
  }

  .about-mosaic__cell--a {
    grid-row: auto;
    grid-column: 1 / -1;
    min-height: 260px;
  }

  .about-axes__list a {
    grid-template-columns: 2.75rem 1fr;
    gap: 0.75rem 1rem;
  }

  .about-axes__list span {
    grid-column: 2;
    justify-self: start;
    text-align: left;
  }

  .about-zone__top {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .about-zone__places {
    border-top: 1px solid var(--line);
    padding-left: 0;
    padding-top: 1.75rem;
  }

  .about-zone__places::before {
    display: none;
  }

  .about-zone__cta {
    grid-template-columns: 1fr;
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }
}

@media (max-width: 640px) {
  .about-pulse {
    grid-template-columns: 1fr 1fr;
  }

  .about-split__meta li {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .about-zone__places {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .about-mosaic__grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .about-mosaic__cell,
  .about-mosaic__cell--a {
    min-height: 220px;
    grid-column: auto;
  }

  .about-hero__content {
    padding-inline: 1.35rem;
    box-sizing: border-box;
  }

  .about-hero__brand {
    font-size: clamp(1.85rem, 10vw, 2.6rem);
    line-height: 1.05;
    max-width: 100%;
  }

  .about-hero .page-hero-title {
    font-size: clamp(1.35rem, 6vw, 1.75rem);
    letter-spacing: -0.02em;
  }

  .about-manifeste__quote .quote-line,
  .about-split__title,
  .about-mosaic__head .section-title,
  .about-axes__intro .section-title {
    overflow-wrap: break-word;
    hyphens: none;
    max-width: 100%;
  }
}

/* ---- css/theme-light.css ---- */
/* Mode clair — Anaest (opt-in via html[data-theme="light"]) */

html[data-theme="light"] {
  color-scheme: light;
  --bg: #f6f3ed;
  --bg-elevated: #ebe6dc;
  --bg-card: #fffcf7;
  --text: #1a1814;
  --text-muted: rgba(26, 24, 20, 0.7);
  --text-dim: rgba(26, 24, 20, 0.52);
  --accent: #9a7840;
  --accent-glow: rgba(154, 120, 64, 0.32);
  --accent-soft: rgba(154, 120, 64, 0.12);
  --line: rgba(26, 24, 20, 0.1);
  --line-strong: rgba(26, 24, 20, 0.18);
}

html[data-theme="light"] body,
html[data-theme="light"] .loader {
  background: var(--bg);
  color: var(--text);
}

/* ---- Theme toggle — balai Anaest ---- */
.theme-toggle {
  --tt-size: 42px;
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--tt-size);
  height: var(--tt-size);
  border: 1px solid rgba(212, 176, 106, 0.4);
  background:
    radial-gradient(circle at 32% 28%, rgba(212, 176, 106, 0.2), transparent 58%),
    rgba(255, 255, 255, 0.04);
  color: var(--accent);
  border-radius: 50%;
  cursor: pointer;
  flex-shrink: 0;
  overflow: hidden;
  isolation: isolate;
  transition:
    border-color 0.35s,
    background 0.35s,
    color 0.35s,
    transform 0.35s var(--ease-out-expo, cubic-bezier(0.16, 1, 0.3, 1)),
    box-shadow 0.35s;
}

.theme-toggle:hover {
  border-color: var(--accent);
  color: var(--accent);
  background:
    radial-gradient(circle at 32% 28%, rgba(212, 176, 106, 0.3), transparent 62%),
    var(--accent-soft);
  transform: translateY(-1px) scale(1.04);
  box-shadow: 0 10px 26px rgba(212, 176, 106, 0.22);
}

.theme-toggle:active {
  transform: translateY(0) scale(0.96);
}

.theme-toggle__ring {
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  border: 1px solid rgba(212, 176, 106, 0.18);
  pointer-events: none;
  transition: border-color 0.35s, transform 0.5s var(--ease-out-expo, cubic-bezier(0.16, 1, 0.3, 1));
}

.theme-toggle:hover .theme-toggle__ring {
  border-color: rgba(212, 176, 106, 0.45);
  transform: scale(1.08);
}

.theme-toggle__broom {
  width: 22px;
  height: 22px;
  display: block;
  position: relative;
  z-index: 1;
  transform-origin: 72% 18%;
  transition: transform 0.4s var(--ease-out-expo, cubic-bezier(0.16, 1, 0.3, 1));
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.25));
}

.theme-toggle:hover .theme-toggle__broom {
  transform: rotate(-18deg) translate(-1px, 1px);
}

.theme-toggle.is-sweeping .theme-toggle__broom {
  animation: themeBroomClick 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.theme-toggle.is-sweeping .theme-toggle__ring {
  animation: themeRingPulse 0.7s ease-out;
}

@keyframes themeBroomClick {
  0% { transform: rotate(0deg) translate(0, 0); }
  22% { transform: rotate(-42deg) translate(-3px, 4px) scale(1.05); }
  55% { transform: rotate(26deg) translate(4px, -2px) scale(1.08); }
  78% { transform: rotate(-10deg) translate(-1px, 1px); }
  100% { transform: rotate(0deg) translate(0, 0); }
}

@keyframes themeRingPulse {
  0% { transform: scale(1); opacity: 1; }
  40% { transform: scale(1.35); opacity: 0.35; }
  100% { transform: scale(1.55); opacity: 0; }
}

/* ---- Full-page wipe (transform only — pas de width animée) ---- */
.theme-wipe {
  position: fixed;
  inset: 0;
  z-index: 99999;
  pointer-events: none;
  overflow: hidden;
}

.theme-wipe__panel {
  position: absolute;
  inset: 0;
  transform: translate3d(-102%, 0, 0);
  will-change: transform;
  color: #d4b06a;
}

.theme-wipe--to-light .theme-wipe__panel {
  background: #f4f1eb;
  color: #9a7840;
  box-shadow: 18px 0 40px rgba(26, 24, 20, 0.12);
}

.theme-wipe--to-dark .theme-wipe__panel {
  background: #141414;
  color: #d4b06a;
  box-shadow: 18px 0 40px rgba(0, 0, 0, 0.35);
}

.theme-wipe__edge {
  position: absolute;
  top: 0;
  right: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    currentColor 20%,
    currentColor 80%,
    transparent 100%
  );
  opacity: 0.55;
}

.theme-wipe__broom {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 52px;
  height: 52px;
  transform: translateY(-50%) rotate(-22deg);
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.28));
}

.theme-wipe.is-active .theme-wipe__panel {
  animation: themeWipeSlide 0.9s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

.theme-wipe.is-active .theme-wipe__broom {
  animation: themeWipeBroom 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes themeWipeSlide {
  0%   { transform: translate3d(-102%, 0, 0); }
  42%  { transform: translate3d(0, 0, 0); }
  58%  { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(102%, 0, 0); }
}

@keyframes themeWipeBroom {
  0%   { transform: translateY(-50%) rotate(-32deg) scale(0.92); }
  42%  { transform: translateY(-52%) rotate(-14deg) scale(1.04); }
  58%  { transform: translateY(-48%) rotate(-24deg) scale(1); }
  100% { transform: translateY(-50%) rotate(-18deg) scale(1); }
}

html.theme-is-wiping {
  cursor: progress;
}

html.theme-is-wiping body {
  pointer-events: none;
  user-select: none;
}

html[data-theme="light"] .theme-toggle {
  border-color: rgba(154, 120, 64, 0.45);
  background:
    radial-gradient(circle at 32% 28%, rgba(154, 120, 64, 0.18), transparent 58%),
    #fff;
  color: var(--accent);
  box-shadow: 0 4px 14px rgba(26, 24, 20, 0.07);
}

html[data-theme="light"] .theme-toggle:hover {
  box-shadow: 0 10px 26px rgba(154, 120, 64, 0.2);
}

html[data-theme="light"] .theme-toggle__ring {
  border-color: rgba(154, 120, 64, 0.2);
}

@media (max-width: 900px) {
  .theme-toggle { --tt-size: 38px; }
  .theme-toggle__broom { width: 20px; height: 20px; }
  .theme-wipe__broom { width: 42px; height: 42px; right: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  .theme-toggle,
  .theme-toggle__broom,
  .theme-toggle__ring {
    transition: none !important;
    animation: none !important;
  }

  .theme-toggle:hover .theme-toggle__broom {
    transform: none;
  }

  .theme-wipe { display: none !important; }
}

/* ---- Logos ---- */
.logo-mark {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  position: relative;
}

.logo-img--light,
.loader-logo--light {
  display: none;
}

html[data-theme="light"] .logo-img--dark,
html[data-theme="light"] .loader-logo--dark {
  display: none;
}

html[data-theme="light"] .logo-img--light,
html[data-theme="light"] .loader-logo--light {
  display: block;
}

html[data-theme="light"] .logo-img {
  filter: none;
}

/* Logo client : pastille blanche en sombre, fond transparent en clair */
html[data-theme="light"] .logo-img--light {
  background: transparent;
}

/* ---- Header / nav ---- */
/* Barre solide en clair : logo sombre toujours lisible (y compris sur hero photo) */
html[data-theme="light"] .header,
html[data-theme="light"] .header.scrolled {
  background: rgba(246, 243, 237, 0.96) !important;
  border-bottom: 1px solid var(--line) !important;
  box-shadow: 0 8px 24px rgba(26, 24, 20, 0.06) !important;
  backdrop-filter: blur(16px) saturate(1.1);
  -webkit-backdrop-filter: blur(16px) saturate(1.1);
}

.nav-actions .theme-toggle--desktop {
  margin-right: 0.25rem;
  flex-shrink: 0;
}

.theme-toggle--mobile {
  display: none;
  flex-shrink: 0;
  z-index: 210;
}

@media (max-width: 768px) {
  .theme-toggle--desktop {
    display: none !important;
  }

  .theme-toggle--mobile {
    display: inline-flex;
    order: 2;
    margin-left: 0;
    margin-right: 0.15rem;
  }

  .header .logo { order: 1; }
  .header .menu-toggle { order: 3; }

  html[data-theme="light"] .menu-toggle {
    background: rgba(26, 24, 20, 0.06);
    border-color: rgba(26, 24, 20, 0.14);
  }

  html[data-theme="light"] .menu-toggle span {
    background: var(--text);
  }
}

html[data-theme="light"] .nav-links > a,
html[data-theme="light"] .nav-dropdown-btn {
  text-shadow: none !important;
  color: var(--text);
}

html[data-theme="light"] .nav-dropdown-menu {
  background: var(--bg-card);
  border-color: var(--line-strong);
  box-shadow: 0 16px 40px rgba(26, 24, 20, 0.12);
}

html[data-theme="light"] .mobile-nav {
  background: rgba(246, 243, 237, 0.99);
}

html[data-theme="light"] .menu-toggle span {
  background: var(--text);
}

html[data-theme="light"] .nav-cta {
  background: var(--accent);
  color: #fff;
  box-shadow: none;
}

html[data-theme="light"] .nav-phone {
  color: var(--text);
}

/* ---- Atmosphere ---- */
html[data-theme="light"] .cin-vignette {
  opacity: 0.12;
  background: radial-gradient(ellipse at center, transparent 45%, rgba(26, 24, 20, 0.1) 100%);
}

html[data-theme="light"] .cin-grid {
  opacity: 0.2;
}

html[data-theme="light"] .cin-progress {
  background: rgba(26, 24, 20, 0.08);
}

html[data-theme="light"] .cin-progress__bar {
  background: var(--accent);
  box-shadow: none;
}

/* ---- Hero (photo reste sombre pour lisibilité) ---- */
html[data-theme="light"] .hero--photo {
  background: #1a1814;
}

html[data-theme="light"] .hero--photo .hero-overlay {
  background:
    linear-gradient(105deg, rgba(20, 18, 14, 0.84) 0%, rgba(20, 18, 14, 0.55) 40%, rgba(20, 18, 14, 0.32) 65%, rgba(246, 243, 237, 0.65) 100%),
    linear-gradient(to top, var(--bg) 0%, transparent 48%);
}

html[data-theme="light"] .hero--photo .hero-mesh,
html[data-theme="light"] .hero--photo .hero-canvas-wrap {
  opacity: 0.1;
}

html[data-theme="light"] .hero--photo .hero-title,
html[data-theme="light"] .hero--photo .hero-title .line,
html[data-theme="light"] .hero--photo .hero-sub,
html[data-theme="light"] .hero--photo .stat-num,
html[data-theme="light"] .hero--photo .stat-plus {
  color: #ffffff;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.55);
}

html[data-theme="light"] .hero--photo .hero-sub {
  color: rgba(255, 255, 255, 0.92);
}

.hero-sub__line2 {
  display: inline-block;
  margin-top: 0.35rem;
}

html[data-theme="light"] .hero--photo .stat-label {
  color: rgba(255, 255, 255, 0.65);
}

html[data-theme="light"] .hero--photo .hero-actions .btn-ghost {
  color: #ffffff;
  background: rgba(20, 18, 14, 0.45);
  border-color: rgba(255, 255, 255, 0.35);
}

/* Stats hero — cartes claires hors photo (mobile), lisibles */
html[data-theme="light"] .stat {
  background: rgba(255, 252, 247, 0.92) !important;
  border-color: var(--line-strong);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(26, 24, 20, 0.08);
}

html[data-theme="light"] .stat .stat-num {
  color: var(--text) !important;
  text-shadow: none !important;
}

html[data-theme="light"] .stat .stat-label {
  color: var(--text-muted) !important;
}

html[data-theme="light"] .stat .stat-plus {
  color: var(--accent) !important;
}

/* Sur desktop, stats dans le hero photo : garder contraste blanc */
@media (min-width: 769px) {
  html[data-theme="light"] .hero--photo .hero-stats .stat {
    background: rgba(20, 18, 14, 0.55) !important;
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: none;
  }

  html[data-theme="light"] .hero--photo .hero-stats .stat .stat-num {
    color: #fff !important;
  }

  html[data-theme="light"] .hero--photo .hero-stats .stat .stat-label {
    color: rgba(255, 255, 255, 0.7) !important;
  }
}

html[data-theme="light"] .page-hero-bg,
html[data-theme="light"] .manifeste-photo,
html[data-theme="light"] .case-study-image,
html[data-theme="light"] .photo-strip-item,
html[data-theme="light"] .split-image {
  background: linear-gradient(145deg, #d8d2c6, #c4bdb0);
}

html[data-theme="light"] .page-hero-bg::after {
  background:
    linear-gradient(to top, var(--bg) 0%, rgba(20, 18, 14, 0.72) 42%, rgba(20, 18, 14, 0.38) 100%),
    linear-gradient(to right, rgba(20, 18, 14, 0.82) 0%, transparent 60%);
}

html[data-theme="light"] .page-hero--photo .page-hero-title,
html[data-theme="light"] .page-hero--photo .page-hero-desc,
html[data-theme="light"] .page-hero--photo .page-hero-eyebrow,
html[data-theme="light"] .page-hero--photo .breadcrumb,
html[data-theme="light"] .page-hero--photo .breadcrumb a {
  color: #ffffff;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.45);
}

html[data-theme="light"] .page-hero--photo .breadcrumb a {
  color: rgba(255, 255, 255, 0.75);
}

/* ---- Cartes (écraser les dégradés sombres) ---- */
html[data-theme="light"] .service-tile,
html[data-theme="light"] .review-card,
html[data-theme="light"] .ba-card,
html[data-theme="light"] .client-card,
html[data-theme="light"] .why-stat,
html[data-theme="light"] .why-pillar,
html[data-theme="light"] .faq-preview .faq-item,
html[data-theme="light"] .faq-preview .faq-item.open,
html[data-theme="light"] .contact-form-card,
html[data-theme="light"] .contact-channel,
html[data-theme="light"] .method-card,
html[data-theme="light"] .svc-benefit,
html[data-theme="light"] .page-sidebar,
html[data-theme="light"] .case-study-body,
html[data-theme="light"] .svc-deliverables-block,
html[data-theme="light"] .feature-item,
html[data-theme="light"] .svc-process-item {
  background: var(--bg-card) !important;
  border-color: var(--line) !important;
  box-shadow: 0 10px 32px rgba(26, 24, 20, 0.06);
}

html[data-theme="light"] .svc-process-item h4 {
  color: var(--text);
}

html[data-theme="light"] .svc-process-item p {
  color: var(--text-muted);
}

html[data-theme="light"] .svc-process-num {
  color: var(--accent);
  border-color: rgba(154, 120, 64, 0.4);
  background: var(--accent-soft);
}

html[data-theme="light"] .svc-process-list--flow .svc-process-item {
  background:
    linear-gradient(180deg, rgba(154, 120, 64, 0.08), transparent 42%),
    var(--bg-card) !important;
}

html[data-theme="light"] .tax-credit--banner,
html[data-theme="light"] .tax-credit--aside {
  background:
    linear-gradient(105deg, rgba(154, 120, 64, 0.1), transparent 55%),
    #fff;
  border-color: var(--line-strong);
  box-shadow: 0 10px 28px rgba(26, 24, 20, 0.05);
}

html[data-theme="light"] .tax-credit--footer {
  border-top-color: var(--line);
}

/* FAQ services : pas de cartes blanches — stack éditorial */
html[data-theme="light"] body[data-page="service"] .section .faq-list .faq-item,
html[data-theme="light"] body[data-page="service"] .section .faq-list .faq-item.open {
  background: transparent !important;
  border-color: var(--line) !important;
  box-shadow: none !important;
}

html[data-theme="light"] body[data-page="service"] .section .faq-list .faq-item:hover {
  background: linear-gradient(90deg, rgba(154, 120, 64, 0.06), transparent 55%) !important;
}

html[data-theme="light"] body[data-page="service"] .section .faq-list .faq-item.open,
html[data-theme="light"] body[data-page="service"] .svc-faq .faq-item.open {
  background: linear-gradient(90deg, rgba(154, 120, 64, 0.09), transparent 60%) !important;
  border: none !important;
  border-bottom: 1px solid rgba(154, 120, 64, 0.45) !important;
  box-shadow: none !important;
}

html[data-theme="light"] body[data-page="service"] .section .faq-list .faq-question {
  color: var(--text);
}

html[data-theme="light"] body[data-page="service"] .section .faq-list .faq-icon {
  border-color: var(--line-strong);
  background: #fff;
  color: var(--accent);
}

html[data-theme="light"] body[data-page="service"] .section .faq-list .faq-item.open .faq-icon {
  border-color: rgba(154, 120, 64, 0.55);
  background: var(--accent-soft);
}

html[data-theme="light"] .svc-inclus__item,
html[data-theme="light"] .svc-inclus__panel,
html[data-theme="light"] .svc-inclus__cols,
html[data-theme="light"] .svc-inclus__features {
  border-color: var(--line);
}

html[data-theme="light"] .svc-inclus__cta {
  border-color: rgba(154, 120, 64, 0.35);
}

/* Mid-CTA : bandeau sombre volontaire — forcer texte clair */
html[data-theme="light"] .svc-mid-cta {
  background:
    radial-gradient(ellipse at 0% 50%, rgba(154, 120, 64, 0.2) 0%, transparent 55%),
    #1a1814 !important;
  border-color: rgba(154, 120, 64, 0.4) !important;
  color: #f7f2ec;
  box-shadow: 0 18px 44px rgba(26, 24, 20, 0.14);
}

html[data-theme="light"] .svc-mid-cta-text h3 {
  color: #f7f2ec !important;
}

html[data-theme="light"] .svc-mid-cta-text p {
  color: rgba(247, 242, 236, 0.72) !important;
}

html[data-theme="light"] .svc-mid-cta .btn-ghost {
  color: #f7f2ec !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
  background: transparent !important;
}

html[data-theme="light"] .svc-mid-cta .btn-ghost:hover {
  color: #e8c98a !important;
  border-color: rgba(232, 201, 138, 0.85) !important;
  background: rgba(255, 255, 255, 0.06) !important;
}

html[data-theme="light"] .review-card:hover,
html[data-theme="light"] .why-stat:hover,
html[data-theme="light"] .why-pillar:hover,
html[data-theme="light"] .client-card:hover {
  box-shadow: 0 16px 40px rgba(26, 24, 20, 0.1);
  border-color: rgba(154, 120, 64, 0.35) !important;
}

/* Tuiles services avec photo : restent sombres (texte clair) */
html[data-theme="light"] .service-tile--visual {
  background-color: #1a1814 !important;
  border-color: rgba(154, 120, 64, 0.28) !important;
}

html[data-theme="light"] .service-tile--visual h3,
html[data-theme="light"] .service-tile--visual p,
html[data-theme="light"] .service-tile--visual .service-tile-link,
html[data-theme="light"] .service-tile--visual .service-tile-num {
  color: #f7f2ec;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.65);
}

html[data-theme="light"] .service-tile--visual p {
  color: rgba(247, 242, 236, 0.78);
}

html[data-theme="light"] .service-tile--visual .service-tile-icon {
  background: rgba(8, 8, 8, 0.55);
  color: #e8c98a;
  border-color: rgba(232, 201, 138, 0.35);
}

html[data-theme="light"] .realisations-preview--wow .section-title {
  background: linear-gradient(135deg, #1a1814 0%, #9a7840 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

html[data-theme="light"] .ba-labels span {
  background: rgba(26, 24, 20, 0.72);
  color: #f7f2ec;
  border-color: rgba(247, 242, 236, 0.2);
}

html[data-theme="light"] .proof-card {
  background: #fff !important;
  border-color: var(--line-strong) !important;
  box-shadow: 0 10px 28px rgba(26, 24, 20, 0.05);
}

html[data-theme="light"] .proof-card:hover {
  border-color: rgba(154, 120, 64, 0.45) !important;
  box-shadow: 0 16px 36px rgba(26, 24, 20, 0.08);
}

html[data-theme="light"] .ba-labels span:last-child {
  color: #e8c98a;
  border-color: rgba(232, 201, 138, 0.55);
}

/* ---- Boutons ---- */
html[data-theme="light"] .btn-primary,
html[data-theme="light"] .contact-form__submit,
html[data-theme="light"] .btn-submit {
  color: #1a1814;
}

html[data-theme="light"] .btn-ghost,
html[data-theme="light"] .btn-outline {
  border-color: var(--line-strong);
  color: var(--text);
  background: transparent;
}

html[data-theme="light"] .btn-ghost:hover,
html[data-theme="light"] .btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}

/* Ghost sur photo : garder le contraste clair */
html[data-theme="light"] .page-hero--photo .btn-ghost {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.62) !important;
  background: rgba(0, 0, 0, 0.28) !important;
}

html[data-theme="light"] .page-hero--photo .btn-ghost:hover {
  color: #e8c98a !important;
  border-color: rgba(232, 201, 138, 0.85) !important;
  background: rgba(0, 0, 0, 0.42) !important;
}

/* ---- Quick bar (contraste critique) ---- */
html[data-theme="light"] .quick-bar__call {
  background: #fffcf7 !important;
  color: var(--text) !important;
  border-color: var(--line-strong) !important;
  box-shadow: 0 8px 24px rgba(26, 24, 20, 0.1);
}

html[data-theme="light"] .quick-bar__call svg {
  color: var(--accent);
}

html[data-theme="light"] .quick-bar__call:hover {
  border-color: var(--accent) !important;
  box-shadow: 0 12px 28px rgba(26, 24, 20, 0.12);
}

html[data-theme="light"] .quick-bar__devis {
  color: #fff;
}

html[data-theme="light"] .cookie-banner {
  background: rgba(255, 252, 247, 0.98);
  border-color: var(--line-strong);
  box-shadow: 0 12px 40px rgba(26, 24, 20, 0.12);
  color: var(--text);
}

/* ---- Formulaires ---- */
html[data-theme="light"] input,
html[data-theme="light"] select,
html[data-theme="light"] textarea,
html[data-theme="light"] .contact-form--premium .form-field input,
html[data-theme="light"] .contact-form--premium .form-field select,
html[data-theme="light"] .contact-form--premium .form-field textarea {
  background: #fff !important;
  background-color: #fff !important;
  border-color: var(--line-strong) !important;
  color: var(--text) !important;
  box-shadow: none;
}

html[data-theme="light"] .contact-form--premium .form-field input::placeholder,
html[data-theme="light"] .contact-form--premium .form-field textarea::placeholder {
  color: rgba(26, 24, 20, 0.4);
}

html[data-theme="light"] .contact-form--premium .form-field input:focus,
html[data-theme="light"] .contact-form--premium .form-field select:focus,
html[data-theme="light"] .contact-form--premium .form-field textarea:focus {
  background: #fff !important;
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 1px rgba(154, 120, 64, 0.2);
}

html[data-theme="light"] .contact-form--premium .form-field select {
  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='%239a7840' stroke-width='1.2' fill='none'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 1rem center !important;
}

html[data-theme="light"] .contact-form--premium .form-field select option {
  background: #fff;
  color: var(--text);
}

html[data-theme="light"] .contact-form-card {
  background: var(--bg-card) !important;
  border-color: rgba(154, 120, 64, 0.28) !important;
  box-shadow: 0 20px 48px rgba(26, 24, 20, 0.08);
}

html[data-theme="light"] .contact-channel {
  background: #fff !important;
}

html[data-theme="light"] .contact-page {
  background:
    radial-gradient(ellipse 70% 50% at 0% 0%, rgba(154, 120, 64, 0.08) 0%, transparent 55%),
    var(--bg);
}

html[data-theme="light"] .contact-steps {
  border-color: var(--line);
}

html[data-theme="light"] .contact-steps li {
  border-color: var(--line);
}

html[data-theme="light"] .contact-stats .service-stat-item {
  background: #fff;
}

/* ---- Sections ---- */
html[data-theme="light"] .section--alt,
html[data-theme="light"] .section--dark,
html[data-theme="light"] .method-stack {
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(154, 120, 64, 0.06) 0%, transparent 55%),
    var(--bg-elevated);
}

html[data-theme="light"] .cta {
  background: var(--bg-elevated);
}

html[data-theme="light"] .marquee-track span {
  color: var(--text-dim);
}

html[data-theme="light"] .footer {
  border-top-color: var(--line);
  background: var(--bg);
}

html[data-theme="light"] .manifeste-photo-overlay {
  background: linear-gradient(to top, rgba(26, 24, 20, 0.88) 0%, transparent 55%);
}

html[data-theme="light"] .why-visual::after {
  background: linear-gradient(180deg, transparent 35%, rgba(26, 24, 20, 0.85) 100%);
}

html[data-theme="light"] .why-visual__caption,
html[data-theme="light"] .split-image-badge {
  color: #f7f2ec;
}

html[data-theme="light"] .why-visual__caption span,
html[data-theme="light"] .split-image-badge {
  color: #e8c98a;
}

html[data-theme="light"] .why-visual__caption p {
  color: #f7f2ec;
}

html[data-theme="light"] .service-stats-band {
  background: var(--line);
}

html[data-theme="light"] .service-stat-item {
  background: var(--bg-card);
}

html[data-theme="light"] .method-card {
  border-color: rgba(154, 120, 64, 0.28) !important;
}

html[data-theme="light"] .method-card__media::after {
  background: linear-gradient(135deg, rgba(26, 24, 20, 0.04) 0%, rgba(26, 24, 20, 0.25) 100%);
}

html[data-theme="light"] .method-stack__rail-item.is-active {
  color: var(--text);
}

html[data-theme="light"] .legal-content {
  color: var(--text);
}

html[data-theme="light"] .section-title .line-accent,
html[data-theme="light"] .method-stack__title-accent {
  color: var(--accent);
}

html[data-theme="light"] ::selection {
  background: var(--accent);
  color: #fff;
}

/* ---- FAQ page (clair) ---- */
html[data-theme="light"] .faq-stats {
  background: rgba(26, 24, 20, 0.12);
  border-color: rgba(26, 24, 20, 0.12);
}

html[data-theme="light"] .faq-stat {
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

html[data-theme="light"] .section.faq-page {
  background:
    radial-gradient(ellipse 70% 45% at 0% 8%, rgba(154, 120, 64, 0.08) 0%, transparent 58%),
    radial-gradient(ellipse 55% 40% at 100% 70%, rgba(154, 120, 64, 0.05) 0%, transparent 55%),
    var(--bg);
}

html[data-theme="light"] .faq-page__nav a {
  color: var(--text-muted);
  background: #fff;
  border-color: var(--line-strong);
  box-shadow: 0 2px 10px rgba(26, 24, 20, 0.04);
}

html[data-theme="light"] .faq-page__nav a:hover,
html[data-theme="light"] .faq-page__nav a.is-active {
  color: var(--accent);
  background: var(--accent-soft);
  border-color: rgba(154, 120, 64, 0.5);
  box-shadow: 0 6px 18px rgba(154, 120, 64, 0.12);
}

html[data-theme="light"] .faq-category {
  background: transparent !important;
  border-color: rgba(26, 24, 20, 0.12) !important;
  color: var(--text);
}

html[data-theme="light"] .faq-page .faq-list {
  background: #fff;
  border: 1px solid var(--line-strong);
  box-shadow: 0 14px 40px rgba(26, 24, 20, 0.06);
  gap: 0;
  overflow: hidden;
}

html[data-theme="light"] .faq-page .faq-item {
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid var(--line) !important;
  box-shadow: none !important;
}

html[data-theme="light"] .faq-page .faq-item:last-child {
  border-bottom: none !important;
}

html[data-theme="light"] .faq-page .faq-item:hover {
  background: rgba(154, 120, 64, 0.04) !important;
}

html[data-theme="light"] .faq-page .faq-item.open {
  background: rgba(154, 120, 64, 0.07) !important;
  border-color: var(--line) !important;
  box-shadow: none !important;
}

html[data-theme="light"] .faq-page .faq-question {
  color: var(--text);
}

html[data-theme="light"] .faq-page .faq-icon {
  border-color: var(--line-strong);
  color: var(--accent);
  background: var(--accent-soft);
}

html[data-theme="light"] .faq-page .faq-item.open .faq-icon {
  border-color: rgba(154, 120, 64, 0.55);
  background: rgba(154, 120, 64, 0.16);
}

html[data-theme="light"] .faq-page .faq-answer p {
  color: var(--text-muted);
}

html[data-theme="light"] .faq-page-cta {
  background:
    radial-gradient(ellipse at 0% 50%, rgba(154, 120, 64, 0.14) 0%, transparent 55%),
    #fff !important;
  border-color: rgba(154, 120, 64, 0.38) !important;
  color: var(--text);
  box-shadow: 0 12px 28px rgba(26, 24, 20, 0.05);
}

/* Pages à propos / témoignages — blocs souvent en dur */
html[data-theme="light"] .temoignage-card,
html[data-theme="light"] .svc-review {
  background: var(--bg-card) !important;
  border-color: var(--line) !important;
  color: var(--text);
}

html[data-theme="light"] .about-pulse {
  background: linear-gradient(180deg, rgba(154, 120, 64, 0.06), transparent 70%), var(--bg);
}

html[data-theme="light"] .about-mosaic__cell span {
  color: #fff;
}

html[data-theme="light"] .about-axes__list a:hover {
  background: linear-gradient(90deg, rgba(154, 120, 64, 0.1), transparent 60%);
}

html[data-theme="light"] .demenagement-block__photo figcaption {
  color: rgba(26, 24, 20, 0.8);
  background: linear-gradient(transparent, rgba(244, 241, 235, 0.92));
}

