/* ═══════════════════════════════════════════════════════════
   STUDIO SILEX — Identity
   Warm charcoal + cream + ember spark.
   ═══════════════════════════════════════════════════════════ */

:root {
  --bg: #F5F1EB;
  --bg-alt: #ECE6DC;
  --bg-cream: #EFE9DF;
  --dark: #1A1611;
  --dark-2: #28221C;
  --dark-card: #221D17;
  --ember: #E07A2E;
  --ember-light: #F0934B;
  --copper: #B85F1F;
  --gold: #D9A86A;
  --white: #FFFFFF;
  --text: #1A1611;
  --text-light: #7C7269;
  --text-muted: #A39A8E;
  --border: rgba(26, 22, 17, 0.10);
  --border-strong: rgba(26, 22, 17, 0.22);

  --sans: "Sora", system-ui, -apple-system, sans-serif;

  --r: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 80px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button, input, select, textarea { font: inherit; border: none; outline: none; background: none; color: inherit; }
::selection { background: var(--ember); color: var(--white); }

.wrap { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ── Shared typography ── */
h1, h2, h3, h4 {
  font-family: var(--sans);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
h1 { font-size: clamp(40px, 7vw, 86px); font-weight: 800; }
h2 { font-size: clamp(30px, 4.8vw, 54px); line-height: 1.05; font-weight: 800; }
h3 { font-size: clamp(20px, 2.2vw, 24px); line-height: 1.2; font-weight: 700; }
h4 { font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }

em { font-style: normal; font-weight: 800; color: var(--ember); }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 18px;
}
.tag::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--ember);
}
.tag--light { color: var(--ember-light); }
.tag--light::before { background: var(--ember-light); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-light);
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.5);
  margin-bottom: 28px;
}
.spark {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 0 4px rgba(224, 122, 46, 0.18);
  animation: spark 1.8s ease-in-out infinite;
}
@keyframes spark {
  0%, 100% { box-shadow: 0 0 0 4px rgba(224, 122, 46, 0.18); }
  50% { box-shadow: 0 0 0 8px rgba(224, 122, 46, 0.04); }
}

.section-intro { margin-bottom: 64px; max-width: 760px; }
.section-lead {
  font-size: clamp(16px, 1.4vw, 18px);
  color: var(--text-light);
  max-width: 620px;
  margin-top: 20px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 16px 28px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  white-space: nowrap;
}
.btn--primary { background: var(--dark); color: var(--bg); }
.btn--primary:hover { background: var(--ember); color: var(--white); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(224, 122, 46, 0.28); }
.btn--ghost { color: var(--dark); border: 1px solid var(--border-strong); }
.btn--ghost:hover { background: var(--dark); color: var(--bg); border-color: var(--dark); }
.btn--sm { padding: 12px 20px; font-size: 13px; }
.btn--full { width: 100%; justify-content: center; }
.btn svg { transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }


/* ═══════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(245, 241, 235, 0.72);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.site-header.scrolled { border-bottom-color: var(--border); }
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  --logo-h: 52px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Big Shoulders Display", "Sora", system-ui, sans-serif;
  font-size: calc(var(--logo-h) * 0.99);
  font-weight: 900;
  color: var(--dark);
  letter-spacing: 0;
  text-transform: uppercase;
  line-height: 0.9;
  white-space: nowrap;
  flex-shrink: 0;
}
.logo svg { color: var(--ember); }
.logo-mark {
  height: var(--logo-h);
  width: auto;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.12));
}
.logo span { flex-shrink: 0; }
.logo--light .logo-mark {
  filter: drop-shadow(0 4px 16px rgba(224, 122, 46, 0.30));
}
.logo strong { font-weight: 800; }
.logo--light { color: var(--bg); }

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav a {
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  border-radius: 100px;
  transition: all 0.25s var(--ease);
}
.nav a:hover { color: var(--ember); }
.nav-cta {
  background: var(--dark);
  color: var(--bg) !important;
  padding: 10px 20px !important;
  margin-left: 8px;
}
.nav-cta:hover {
  background: var(--ember) !important;
  color: var(--white) !important;
}

.burger {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--dark);
  transition: transform 0.3s, opacity 0.3s;
}
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--bg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-bottom: 1px solid var(--border);
  transform: translateY(-110%);
  transition: transform 0.35s var(--ease);
  z-index: 49;
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav a {
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 12px;
  transition: background 0.2s;
}
.mobile-nav a:hover { background: var(--bg-alt); }


/* ═══════════════════════════════════════════════════════════
   HERO — CINÉMATIQUE FULL-BLEED
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  background: var(--dark);
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center 60%;
}
img.hero-bg-img { animation: hero-zoom 22s ease-in-out infinite alternate; }
@keyframes hero-zoom {
  from { transform: scale(1.02); }
  to   { transform: scale(1.10); }
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 30%, rgba(26, 22, 17, 0) 0%, rgba(26, 22, 17, 0.45) 60%, rgba(26, 22, 17, 0.85) 100%),
    linear-gradient(180deg, rgba(26, 22, 17, 0.45) 0%, rgba(26, 22, 17, 0) 30%, rgba(26, 22, 17, 0.6) 100%);
}

.hero-stage {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  min-height: 100dvh;
  max-width: 1440px;
  margin: 0 auto;
  padding: calc(var(--header-h) + 32px) 32px 120px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr auto;
  gap: 24px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(245, 241, 235, 0.82);
  padding: 8px 16px;
  border: 1px solid rgba(245, 241, 235, 0.20);
  border-radius: 100px;
  background: rgba(26, 22, 17, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  width: fit-content;
  margin: 0;
  animation: hero-fade-up 1s 0.1s var(--ease) both;
}

.hero-mega {
  font-size: clamp(64px, 13.5vw, 220px);
  line-height: 0.86;
  letter-spacing: -0.045em;
  color: var(--bg);
  font-weight: 800;
  align-self: center;
  margin: 0;
  text-shadow: 0 4px 60px rgba(0, 0, 0, 0.35);
  animation: hero-fade-up 1.2s 0.25s var(--ease) both;
}
.hero-mega em {
  font-style: normal;
  font-weight: 800;
  color: var(--ember);
  display: inline-block;
  background: linear-gradient(180deg, var(--ember-light) 0%, var(--ember) 60%, var(--copper) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-side {
  justify-self: end;
  max-width: 380px;
  text-align: left;
  align-self: end;
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: hero-fade-up 1.2s 0.55s var(--ease) both;
}
.hero-side-text {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(245, 241, 235, 0.85);
  margin: 0;
}
.hero-side-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.btn--hero {
  background: var(--bg);
  color: var(--dark);
  padding: 16px 24px;
  border-radius: 100px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.35s var(--ease);
  font-size: 14px;
  letter-spacing: 0.01em;
  border: none;
}
.btn--hero:hover {
  background: var(--ember);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(224, 122, 46, 0.35);
}
.btn--hero svg { transition: transform 0.3s var(--ease); }
.btn--hero:hover svg { transform: translateX(3px); }

.hero-link {
  font-size: 13px;
  font-weight: 500;
  color: rgba(245, 241, 235, 0.72);
  letter-spacing: 0.04em;
  transition: color 0.25s;
}
.hero-link:hover { color: var(--ember-light); }

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(245, 241, 235, 0.62);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 0.25s;
  animation: hero-fade-up 1.2s 1s var(--ease) both, hero-bounce 2.6s 2s ease-in-out infinite;
}
.hero-scroll:hover { color: var(--ember-light); }
.hero-scroll svg { opacity: 0.7; }

@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes hero-bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 8px); }
}

@media (max-width: 900px) {
  .hero-stage {
    padding: calc(var(--header-h) + 24px) 20px 90px;
  }
  .hero-side {
    justify-self: start;
    max-width: 100%;
  }
  .hero-scroll { bottom: 18px; }
}

@media (max-width: 640px) {
  .hero-mega { letter-spacing: -0.035em; }
}


/* ═══════════════════════════════════════════════════════════
   TRUST BAND
   ═══════════════════════════════════════════════════════════ */
.trust {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}
.trust-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
}
.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  list-style: none;
}
.trust-list li {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  position: relative;
}
.trust-list li:not(:last-child)::after {
  content: "·";
  position: absolute;
  right: -16px;
  color: var(--text-muted);
}


/* ═══════════════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════════════ */
.services { padding: 140px 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.svc {
  position: relative;
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: all 0.4s var(--ease);
  overflow: hidden;
}
.svc::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(224, 122, 46, 0.06), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
}
.svc:hover { transform: translateY(-4px); border-color: var(--border-strong); box-shadow: 0 24px 48px -24px rgba(26, 22, 17, 0.14); }
.svc:hover::before { opacity: 1; }
.svc > * { position: relative; z-index: 1; }
.svc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.svc-num {
  font-size: 20px;
  color: var(--ember);
}
.svc-icon {
  width: 32px;
  height: 32px;
  color: var(--dark);
}
.svc h3 { margin-bottom: 14px; }
.svc > p { color: var(--text-light); margin-bottom: 24px; line-height: 1.6; }
.svc-list {
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.svc-list li {
  font-size: 14px;
  color: var(--text);
  padding: 8px 0 8px 24px;
  position: relative;
}
.svc-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 12px;
  height: 1px;
  background: var(--ember);
}


/* ═══════════════════════════════════════════════════════════
   RÉALISATIONS
   ═══════════════════════════════════════════════════════════ */
.realisations {
  padding: 140px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.real-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.real-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: auto;
  gap: 20px;
}
.real-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.4s var(--ease);
}
.real-card:hover { transform: translateY(-4px); box-shadow: 0 32px 56px -24px rgba(26, 22, 17, 0.18); }
.real-card--lg { grid-column: span 2; }
.real-card--lg .real-visual { height: 380px; }

.real-visual {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: var(--dark);
}
.real-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.real-card:hover .real-visual img { transform: scale(1.04); }

.real-shape {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.16), transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(0, 0, 0, 0.20), transparent 60%);
}
.real-visual::after {
  content: "";
  position: absolute;
  bottom: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 50%;
  transition: transform 0.6s var(--ease);
}
.real-card:hover .real-visual::after { transform: scale(1.15) rotate(20deg); }

.real-body { padding: 28px 32px 32px; }
.real-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 12px;
}
.real-body h3 { margin-bottom: 12px; }
.real-body p { color: var(--text-light); font-size: 15px; line-height: 1.55; }
.real-meta {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.real-meta span {
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  background: var(--bg-alt);
  border-radius: 100px;
  color: var(--text-light);
}


/* ═══════════════════════════════════════════════════════════
   APPROCHE / PROCESS
   ═══════════════════════════════════════════════════════════ */
.approche { padding: 140px 0; }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: steps;
}
.step {
  position: relative;
  padding-top: 32px;
  border-top: 1px solid var(--border-strong);
}
.step-num {
  display: inline-block;
  font-size: 32px;
  color: var(--ember);
  margin-bottom: 20px;
  line-height: 1;
}
.step h3 { margin-bottom: 12px; }
.step p { font-size: 15px; color: var(--text-light); line-height: 1.55; }


/* ═══════════════════════════════════════════════════════════
   À PROPOS
   ═══════════════════════════════════════════════════════════ */
.apropos {
  padding: 140px 0;
  background: var(--bg-cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.apropos-inner {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 80px;
  align-items: center;
}
.apropos-left p {
  font-size: 16.5px;
  color: var(--text);
  margin-bottom: 18px;
  line-height: 1.65;
}
.apropos-left p:last-of-type { margin-bottom: 0; }
.apropos-left h2 { margin-bottom: 28px; }
.apropos-stats {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--border-strong);
}
.apropos-stats strong {
  display: block;
  font-size: clamp(28px, 3.4vw, 40px);
  color: var(--dark);
  margin-bottom: 4px;
  font-weight: 400;
  line-height: 1;
}
.apropos-stats span {
  font-size: 13px;
  color: var(--text-light);
  letter-spacing: 0.02em;
}

.apropos-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--dark);
  display: flex;
  align-items: flex-end;
  padding: 40px;
}
.apropos-shape {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 30%, rgba(224, 122, 46, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 30% 80%, rgba(184, 95, 31, 0.3) 0%, transparent 60%),
    linear-gradient(180deg, #28221C 0%, #1A1611 100%);
}
.apropos-visual blockquote {
  position: relative;
  color: var(--bg);
  z-index: 2;
}
.apropos-visual p {
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.25;
  margin-bottom: 16px;
  color: var(--bg);
}
.apropos-visual cite {
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ember-light);
}


/* ═══════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════ */
.contact { padding: 140px 0; }
.contact-card {
  position: relative;
  background: var(--dark);
  color: var(--bg);
  border-radius: var(--r-xl);
  padding: 72px;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 64px;
  overflow: hidden;
}
.contact-card::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(224, 122, 46, 0.32) 0%, transparent 60%);
  filter: blur(30px);
  pointer-events: none;
}
.contact-left { position: relative; z-index: 2; }
.contact-left h2 { margin-bottom: 24px; color: var(--bg); }
.contact-left h2 em { color: var(--ember-light); }
.contact-left > p {
  color: rgba(245, 241, 235, 0.7);
  font-size: 16px;
  margin-bottom: 36px;
  max-width: 420px;
}
.contact-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--bg);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.25s;
}
.contact-link:hover { color: var(--ember-light); }
.contact-link svg { color: var(--ember-light); }

.contact-form {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-form .form-row > label { flex: 1; min-width: 0; }
.contact-form label em {
  color: var(--ember);
  font-style: normal;
  font-weight: 400;
  margin-left: 2px;
}
.contact-form select {
  padding: 14px 38px 14px 18px;
  background: rgba(245, 241, 235, 0.06);
  border: 1px solid rgba(245, 241, 235, 0.14);
  border-radius: 12px;
  color: var(--bg);
  font-size: 15px;
  font-family: inherit;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1.5L6 6.5L11 1.5' stroke='%23F0934B' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  transition: border-color 0.25s, background-color 0.25s;
}
.contact-form select:focus {
  border-color: var(--ember);
  background-color: rgba(245, 241, 235, 0.10);
  outline: none;
}
.contact-form select option { background: var(--dark); color: var(--bg); }
.contact-form .hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  visibility: hidden;
  pointer-events: none;
}
.form-status {
  margin: 4px 0 0;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
}
.form-status[data-state="success"] {
  background: rgba(224, 122, 46, 0.12);
  border: 1px solid rgba(224, 122, 46, 0.35);
  color: var(--ember-light);
}
.form-status[data-state="error"] {
  background: rgba(220, 50, 50, 0.10);
  border: 1px solid rgba(220, 50, 50, 0.35);
  color: #ff9b9b;
}
.contact-form button[data-submit][disabled] {
  opacity: 0.7;
  cursor: progress;
}
@media (max-width: 640px) {
  .contact-form .form-row { grid-template-columns: 1fr; gap: 14px; }
}
.contact-form span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(245, 241, 235, 0.6);
}
.contact-form input,
.contact-form textarea {
  padding: 14px 18px;
  background: rgba(245, 241, 235, 0.06);
  border: 1px solid rgba(245, 241, 235, 0.14);
  border-radius: 12px;
  color: var(--bg);
  font-size: 15px;
  transition: border-color 0.25s, background 0.25s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(245, 241, 235, 0.35);
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--ember);
  background: rgba(245, 241, 235, 0.10);
}
.contact-form textarea { resize: vertical; min-height: 100px; }
.contact-form .btn { margin-top: 8px; background: var(--ember); color: var(--white); }
.contact-form .btn:hover { background: var(--ember-light); }


/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--dark);
  color: var(--bg);
  padding: 80px 0 40px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(245, 241, 235, 0.10);
}
.footer-brand p {
  margin-top: 16px;
  font-size: 14.5px;
  color: rgba(245, 241, 235, 0.6);
  max-width: 320px;
  line-height: 1.55;
}
.footer-col h4 {
  color: var(--ember-light);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a, .footer-col li {
  font-size: 14.5px;
  color: rgba(245, 241, 235, 0.7);
  transition: color 0.25s;
}
.footer-col a:hover { color: var(--ember-light); }

.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(245, 241, 235, 0.5);
}


/* ═══════════════════════════════════════════════════════════
   POURQUOI STUDIO SILEX
   ═══════════════════════════════════════════════════════════ */
.why { padding: 160px 0; }
.why-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 100px;
  align-items: start;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.why-text > p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 18px;
  max-width: 560px;
}
.why-text > p strong { color: var(--text); font-weight: 700; }
.why-text h2 { margin-bottom: 32px; max-width: 14ch; }
.why-cta { margin-top: 16px; }

.why-visual {
  position: sticky;
  top: 120px;
  aspect-ratio: 1 / 1;
}
.why-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--r-xl);
  display: block;
}

@media (max-width: 900px) {
  .why { padding: 80px 0; }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .why-visual { position: static; aspect-ratio: 16/10; }
}


/* ═══════════════════════════════════════════════════════════
   STUDIO NARRATIVE
   ═══════════════════════════════════════════════════════════ */
.story { padding: 80px 0 140px; }
.story-inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}
.story-p {
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 24px;
}
.story-p--final {
  font-weight: 700;
  color: var(--text);
  margin-top: 32px;
  font-size: clamp(17px, 1.6vw, 21px);
}

@media (max-width: 640px) {
  .story { padding: 40px 0 80px; }
}


/* ═══════════════════════════════════════════════════════════
   SERVICES NUMÉROTÉS + MARQUEE
   ═══════════════════════════════════════════════════════════ */
.srv-section {
  background: var(--dark);
  color: var(--bg);
  padding: 140px 0 80px;
  overflow: hidden;
}
.srv-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}
.srv-intro {
  text-align: center;
  margin-bottom: 120px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.tag--center {
  justify-content: center;
  display: inline-flex;
  padding: 8px 18px;
  border: 1px solid rgba(245, 241, 235, 0.18);
  border-radius: 100px;
  color: var(--bg);
  margin-bottom: 56px;
}
.tag--center::before { display: none; }
.srv-statement {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.08;
  color: var(--bg);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.srv-statement em { color: var(--ember-light); font-style: normal; font-weight: 800; }

.srv-list { display: flex; flex-direction: column; }
.srv-row {
  display: grid;
  grid-template-columns: 80px 1fr 280px;
  align-items: center;
  gap: 32px;
  padding: 56px 0 24px;
  border-top: 1px solid rgba(245, 241, 235, 0.10);
  transition: background 0.4s var(--ease);
  position: relative;
}
.srv-row:last-child { border-bottom: 1px solid rgba(245, 241, 235, 0.10); }

.srv-num {
  font-size: 16px;
  font-weight: 500;
  color: rgba(245, 241, 235, 0.4);
  letter-spacing: 0.04em;
}
.srv-title {
  font-size: clamp(40px, 6.5vw, 92px);
  font-weight: 800;
  line-height: 1;
  color: rgba(245, 241, 235, 0.22);
  letter-spacing: -0.03em;
  transition: color 0.4s var(--ease);
  text-align: center;
}
.srv-desc {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(245, 241, 235, 0.4);
  max-width: 280px;
  transition: color 0.4s var(--ease);
}

.srv-row:hover .srv-title,
.srv-row:focus-within .srv-title { color: var(--bg); }
.srv-row:hover .srv-desc,
.srv-row:focus-within .srv-desc { color: rgba(245, 241, 235, 0.75); }

.srv-marquee {
  grid-column: 1 / -1;
  overflow: hidden;
  margin-top: 24px;
  padding: 8px 0;
  mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
}
.srv-marquee-track {
  display: inline-flex;
  gap: 10px;
  width: max-content;
  animation: srv-marquee-scroll 40s linear infinite;
}
.srv-row:hover .srv-marquee-track { animation-play-state: paused; }
@keyframes srv-marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.srv-pill {
  display: inline-block;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(245, 241, 235, 0.78);
  background: transparent;
  border: 1px solid rgba(245, 241, 235, 0.18);
  border-radius: 10px;
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .srv-section { padding: 80px 0 40px; }
  .srv-intro { margin-bottom: 64px; }
  .srv-row {
    grid-template-columns: 60px 1fr;
    grid-template-areas: "num title" "num desc";
    gap: 12px 16px;
    padding: 32px 0 16px;
  }
  .srv-num { grid-area: num; align-self: start; padding-top: 8px; }
  .srv-title { grid-area: title; text-align: left; font-size: clamp(32px, 9vw, 56px); }
  .srv-desc { grid-area: desc; max-width: 100%; }
}


/* ═══════════════════════════════════════════════════════════
   AWARDS / STACK MARQUEE
   ═══════════════════════════════════════════════════════════ */
.awards {
  background: var(--dark);
  color: var(--bg);
  padding: 80px 0 100px;
}
.awards-intro { text-align: center; margin-bottom: 48px; }
.awards-pill {
  display: inline-block;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bg);
  border: 1px solid rgba(245, 241, 235, 0.18);
  border-radius: 100px;
}
.awards-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
}
.awards-track {
  display: inline-flex;
  gap: 48px;
  width: max-content;
  animation: awards-scroll 30s linear infinite;
  align-items: center;
}
.awards-item {
  display: inline-block;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: rgba(245, 241, 235, 0.55);
  padding: 12px 0;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.3s var(--ease);
}
.awards-item:hover { color: var(--ember-light); }
@keyframes awards-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}


/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════ */
.testimonials {
  background: var(--dark);
  color: var(--bg);
  padding: 80px 0 140px;
  border-top: 1px solid rgba(245, 241, 235, 0.08);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.testimonials-intro { padding-right: 16px; }
.testimonials-intro .tag { color: var(--bg); }
.testimonials-intro .tag::before { background: var(--bg); opacity: 0.5; }
.testimonials-intro h2 {
  color: var(--bg);
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.05;
  font-weight: 800;
}
.testimonials-intro h2 em { color: var(--ember-light); }

.testimonial {
  background: var(--bg);
  color: var(--text);
  padding: 32px 28px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
}
.testimonial p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 24px;
}
.testimonial footer { margin-top: auto; }
.testimonial strong {
  display: block;
  font-weight: 700;
  color: var(--ember);
  margin-bottom: 4px;
}
.testimonial span {
  font-size: 14px;
  color: var(--text-light);
}

.testimonials-deco {
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.testimonials-deco-cube {
  width: 60%;
  aspect-ratio: 1/1;
  background:
    linear-gradient(135deg, rgba(245, 241, 235, 0.10) 0%, rgba(245, 241, 235, 0.04) 100%);
  border: 1px solid rgba(245, 241, 235, 0.12);
  transform: rotate(45deg);
  border-radius: 12px;
  position: relative;
}
.testimonials-deco-cube::before,
.testimonials-deco-cube::after {
  content: "";
  position: absolute;
  background: rgba(224, 122, 46, 0.4);
  border: 1px solid rgba(245, 241, 235, 0.15);
  border-radius: 8px;
}
.testimonials-deco-cube::before {
  width: 30%; height: 30%; top: 12%; left: 12%;
}
.testimonials-deco-cube::after {
  width: 22%; height: 22%; bottom: 18%; right: 18%; background: rgba(184, 95, 31, 0.5);
}

@media (max-width: 900px) {
  .testimonials { padding: 60px 0 80px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
  .testimonial { min-height: 0; }
  .testimonials-deco { display: none; }
}


/* ═══════════════════════════════════════════════════════════
   À PROPOS — PHOTO COLLAGE
   ═══════════════════════════════════════════════════════════ */
.apropos-inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: start;
}
.apropos-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  position: sticky;
  top: 120px;
}
.apropos-photo {
  border-radius: var(--r-lg);
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.apropos-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.10), transparent 60%);
}
.apropos-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}
.apropos-photo--main { grid-column: 1 / -1; aspect-ratio: 4/3; }
.apropos-photo--side { aspect-ratio: 1/1; }
.apropos-photo--side2 { aspect-ratio: 1/1; }

.apropos-text > h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.1;
  margin-bottom: 32px;
}
.apropos-text > p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-light);
  margin-bottom: 18px;
  max-width: 560px;
}
.apropos-text > .btn { margin-top: 16px; }

@media (max-width: 900px) {
  .apropos-inner { grid-template-columns: 1fr; gap: 48px; }
  .apropos-photos { position: static; }
}


/* ═══════════════════════════════════════════════════════════
   FOOTER REDESIGN + GIANT BRAND TEXT
   ═══════════════════════════════════════════════════════════ */
.footer-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 60px;
}
.footer-col h4 {
  color: rgba(245, 241, 235, 0.5);
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a,
.footer-col li {
  font-size: 17px;
  font-weight: 500;
  color: var(--bg);
  transition: color 0.25s;
}
.footer-col a:hover { color: var(--ember-light); }
.footer-col--last { text-align: right; }

.footer-brandline {
  margin: 32px 0 24px;
  padding: 0 24px;
  overflow: hidden;
  text-align: center;
  line-height: 0.86;
}
.footer-brandline span {
  display: inline-block;
  font-size: clamp(80px, 19vw, 320px);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--bg);
  line-height: 0.86;
}

.footer-bottom {
  padding-top: 0;
  padding-bottom: 8px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(245, 241, 235, 0.5);
  border-top: none;
}

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-col--last { text-align: left; }
  .footer-brandline span { font-size: clamp(60px, 22vw, 200px); }
}


/* ═══════════════════════════════════════════════════════════
   STACK / OUTILS (legacy, kept for backwards safety)
   ═══════════════════════════════════════════════════════════ */
.stack {
  padding: 140px 0;
  background: var(--dark);
  color: var(--bg);
}
.stack .tag { color: var(--ember-light); }
.stack .tag::before { background: var(--ember-light); }
.stack h2 { color: var(--bg); }
.stack h2 em { color: var(--ember-light); }
.stack .section-lead { color: rgba(245, 241, 235, 0.6); }

.stack-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.stack-cell {
  aspect-ratio: 1.4 / 1;
  background: rgba(245, 241, 235, 0.04);
  border: 1px solid rgba(245, 241, 235, 0.08);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
  cursor: default;
}
.stack-cell span {
  font-size: 16px;
  font-weight: 700;
  color: var(--bg);
  letter-spacing: -0.01em;
}
.stack-cell:hover {
  background: rgba(224, 122, 46, 0.08);
  border-color: rgba(224, 122, 46, 0.4);
  transform: translateY(-3px);
}
.stack-cell:hover span { color: var(--ember-light); }

@media (max-width: 900px) {
  .stack { padding: 80px 0; }
  .stack-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 540px) {
  .stack-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .stack-cell span { font-size: 13px; }
}


/* ═══════════════════════════════════════════════════════════
   JOURNAL / NOTES
   ═══════════════════════════════════════════════════════════ */
.journal { padding: 140px 0; background: var(--bg-cream); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.journal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.journal-header > div { max-width: 620px; }
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.journal-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s var(--ease);
}
.journal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -24px rgba(26, 22, 17, 0.18);
  border-color: var(--border-strong);
}
.journal-visual {
  height: 200px;
  position: relative;
  overflow: hidden;
  background: var(--dark);
}
.journal-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.journal-card:hover .journal-visual img { transform: scale(1.05); }
.journal-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.14), transparent 60%);
}
.journal-visual::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  transition: transform 0.6s var(--ease);
}
.journal-card:hover .journal-visual::after { transform: scale(1.15) rotate(15deg); }

.journal-body { padding: 28px 28px 32px; }
.journal-meta {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 14px;
}
.journal-body h3 {
  margin-bottom: 12px;
  line-height: 1.2;
}
.journal-body p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 20px;
}
.journal-date {
  font-size: 13px;
  color: var(--text-muted);
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: block;
}

@media (max-width: 1024px) {
  .journal-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .journal { padding: 80px 0; }
  .journal-grid { grid-template-columns: 1fr; }
  .journal-body { padding: 24px; }
}


/* ═══════════════════════════════════════════════════════════
   VILLAGE INTERACTIF (hover-to-light)
   ═══════════════════════════════════════════════════════════ */
.village {
  padding: 140px 0 120px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}

.village-stage {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: #1A1611;
  box-shadow: 0 32px 64px -24px rgba(26, 22, 17, 0.4),
              0 0 0 1px rgba(26, 22, 17, 0.06);
  isolation: isolate;
}

.vill-vid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  z-index: 1;
  pointer-events: none;
}
.vill-vid[data-active="true"] {
  opacity: 1;
  z-index: 2;
}

.vill-zone {
  position: absolute;
  cursor: pointer;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 18px;
  padding: 0;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
  z-index: 5;
}
.vill-zone:focus-visible {
  outline: 2px solid rgba(224, 122, 46, 0.5);
  outline-offset: 2px;
}
.vill-zone--code  { left: 8%;  top: 8%;  width: 34%; height: 40%; }
.vill-zone--brand { left: 54%; top: 6%;  width: 38%; height: 44%; }
.vill-zone--seo   { left: 12%; top: 50%; width: 34%; height: 40%; }
.vill-zone--host  { left: 55%; top: 52%; width: 36%; height: 38%; }

.vill-hint {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--bg);
  background: rgba(26, 22, 17, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(245, 241, 235, 0.14);
  border-radius: 100px;
  z-index: 10;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
  white-space: nowrap;
}
.vill-hint svg { color: var(--ember-light); }
.village-stage[data-active="active"] .vill-hint { opacity: 0; }

.village-cards {
  margin: 32px auto 0;
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.vill-card {
  position: relative;
  height: 400px;
  padding: 24px 24px 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  cursor: pointer;
  overflow: hidden;
  transition: all 0.45s var(--ease);
  text-align: left;
  display: flex;
  flex-direction: column;
  font-family: inherit;
  width: 100%;
  isolation: isolate;
}
.vill-card::before {
  content: "";
  position: absolute;
  bottom: -90px;
  right: -90px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(224, 122, 46, 0.18), transparent 65%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
  z-index: 0;
}
.vill-card > * { position: relative; z-index: 1; }

.vill-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: auto;
}
.vill-card-num {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.08em;
  transition: color 0.3s var(--ease);
}
.vill-card-icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: transform 0.45s var(--ease), color 0.35s var(--ease);
}
.vill-card-icon svg { width: 100%; height: 100%; }

.vill-card-title {
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 18px 0 16px;
  font-weight: 800;
  transition: color 0.3s var(--ease);
}

.vill-card-content {
  position: relative;
  flex: 1;
  min-height: 200px;
}
.vill-card-sub,
.vill-card-detail {
  position: absolute;
  inset: 0;
  transition: opacity 0.4s var(--ease), transform 0.45s var(--ease);
  pointer-events: none;
}
.vill-card-sub {
  font-size: 14.5px;
  color: var(--text-light);
  line-height: 1.5;
  opacity: 1;
  margin: 0;
}
.vill-card-detail {
  opacity: 0;
  transform: translateY(10px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vill-card-detail p {
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.55;
  margin: 0;
}
.vill-card-detail ul { list-style: none; padding: 0; margin: 0; }
.vill-card-detail li {
  font-size: 13px;
  color: var(--text-light);
  padding: 3px 0 3px 14px;
  position: relative;
  line-height: 1.45;
}
.vill-card-detail li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 1px;
  background: var(--ember);
}

.vill-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ember);
  margin-top: 14px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s 0.05s var(--ease), transform 0.4s 0.05s var(--ease);
}
.vill-card-cta svg { transition: transform 0.3s var(--ease); }

/* HOVER / FOCUS / ACTIVE STATE */
.vill-card:hover,
.vill-card:focus-visible,
.vill-card[aria-pressed="true"] {
  border-color: var(--ember);
  transform: translateY(-6px);
  box-shadow: 0 28px 56px -22px rgba(224, 122, 46, 0.32);
  outline: none;
}
.vill-card:hover::before,
.vill-card:focus-visible::before,
.vill-card[aria-pressed="true"]::before { opacity: 1; }

.vill-card:hover .vill-card-num,
.vill-card:focus-visible .vill-card-num,
.vill-card[aria-pressed="true"] .vill-card-num { color: var(--ember); }

.vill-card:hover .vill-card-icon,
.vill-card:focus-visible .vill-card-icon,
.vill-card[aria-pressed="true"] .vill-card-icon {
  transform: scale(0.82) rotate(-6deg);
  color: var(--ember);
}

.vill-card:hover .vill-card-sub,
.vill-card:focus-visible .vill-card-sub,
.vill-card[aria-pressed="true"] .vill-card-sub {
  opacity: 0;
  transform: translateY(-8px);
}

.vill-card:hover .vill-card-detail,
.vill-card:focus-visible .vill-card-detail,
.vill-card[aria-pressed="true"] .vill-card-detail {
  opacity: 1;
  transform: translateY(0);
}

.vill-card:hover .vill-card-cta,
.vill-card:focus-visible .vill-card-cta,
.vill-card[aria-pressed="true"] .vill-card-cta {
  opacity: 1;
  transform: translateY(0);
}
.vill-card:hover .vill-card-cta svg,
.vill-card[aria-pressed="true"] .vill-card-cta svg {
  transform: translateX(3px);
}

@media (max-width: 1024px) {
  .village { padding: 80px 0; }
  .village-cards { grid-template-columns: repeat(2, 1fr); }
  .vill-hint { font-size: 12px; padding: 8px 14px; }
  .vill-card { height: 420px; }
}
@media (max-width: 540px) {
  .village-cards { grid-template-columns: 1fr; }
  .vill-card { height: auto; min-height: 380px; padding: 22px; }
}


/* ═══════════════════════════════════════════════════════════
   ARTICLE PAGES — éditorial cinématique
   ═══════════════════════════════════════════════════════════ */

/* === Sticky header avec progress bar === */
.article-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: 64px;
  background: rgba(245, 241, 235, 0.78);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.article-header.scrolled { border-bottom-color: var(--border); background: rgba(245, 241, 235, 0.92); }
.article-header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  max-width: 1440px;
  margin: 0 auto;
}
.article-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--dark);
  transition: color 0.25s var(--ease);
}
.article-back svg { transition: transform 0.3s var(--ease); }
.article-back:hover { color: var(--ember); }
.article-back:hover svg { transform: translateX(-3px); }

.article-progress {
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: rgba(224, 122, 46, 0.1);
}
.article-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--ember), var(--copper));
  transition: width 0.08s linear;
}

/* === Hero full-bleed cinématique === */
.article {
  background: var(--bg);
  padding-top: 64px;
}
.article-hero {
  position: relative;
  height: clamp(420px, 65vh, 680px);
  overflow: hidden;
  background: var(--dark);
  isolation: isolate;
}
.article-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: art-zoom 28s ease-in-out infinite alternate;
}
@keyframes art-zoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.12); }
}
.article-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 25%, rgba(26, 22, 17, 0) 0%, rgba(26, 22, 17, 0.55) 65%, rgba(26, 22, 17, 0.9) 100%),
    linear-gradient(180deg, rgba(26, 22, 17, 0.25) 0%, rgba(26, 22, 17, 0) 30%, rgba(26, 22, 17, 0.85) 100%);
}
.article-hero-content {
  position: absolute;
  inset: auto 0 0 0;
  padding: 0 24px 56px;
  max-width: 1280px;
  margin: 0 auto;
  z-index: 2;
}
.article-meta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--ember-light);
  margin-bottom: 24px;
}
.article-meta::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--ember-light);
}
.article-title {
  font-size: clamp(36px, 6.5vw, 88px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.98;
  color: var(--bg);
  margin: 0 0 28px;
  max-width: 22ch;
  text-shadow: 0 4px 60px rgba(0, 0, 0, 0.4);
}
.article-lead {
  font-size: clamp(17px, 1.5vw, 22px);
  color: rgba(245, 241, 235, 0.85);
  line-height: 1.55;
  max-width: 640px;
  margin: 0;
  font-weight: 400;
}

/* === Layout body : grid avec TOC sticky === */
.article-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 96px 24px 0;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 80px;
  position: relative;
}

.article-toc {
  position: sticky;
  top: 96px;
  align-self: start;
  padding-left: 8px;
  border-left: 1px solid var(--border-strong);
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}
.article-toc-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-light);
  margin: 0 0 18px;
}
.article-toc nav { display: flex; flex-direction: column; gap: 4px; }
.article-toc a {
  font-size: 13px;
  line-height: 1.45;
  color: var(--text-light);
  padding: 8px 0 8px 14px;
  border-left: 2px solid transparent;
  margin-left: -10px;
  transition: all 0.3s var(--ease);
  position: relative;
}
.article-toc a:hover { color: var(--dark); }
.article-toc a.active {
  color: var(--ember);
  font-weight: 600;
  border-left-color: var(--ember);
}

/* === Body : long-form lisible === */
.article-body {
  max-width: 680px;
  font-size: 18px;
}
.article-body > p,
.article-body > h2,
.article-body > h3,
.article-body > ul,
.article-body > ol,
.article-body > pre,
.article-body > blockquote {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.article-body.in > * { opacity: 1; transform: translateY(0); }

.article-body h2 {
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 72px 0 24px;
  scroll-margin-top: 96px;
  position: relative;
}
.article-body h2::before {
  content: "";
  position: absolute;
  top: -28px;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--ember);
}
.article-body h3 {
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.25;
  margin: 44px 0 16px;
  color: var(--dark);
}
.article-body p {
  font-size: 18px;
  line-height: 1.72;
  color: var(--text);
  margin: 0 0 22px;
}

/* Drop cap sur le premier paragraphe */
.article-body > p:first-of-type::first-letter {
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 900;
  font-size: 5.2em;
  line-height: 0.85;
  float: left;
  margin: 6px 14px 0 -4px;
  color: var(--ember);
  background: linear-gradient(180deg, var(--ember-light) 0%, var(--ember) 60%, var(--copper) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.article-body ul,
.article-body ol {
  margin: 24px 0 26px;
  padding-left: 0;
  list-style: none;
}
.article-body li {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 12px;
  padding-left: 32px;
  position: relative;
}
.article-body ul li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 13px;
  width: 14px;
  height: 1px;
  background: var(--ember);
}
.article-body ol { counter-reset: article-list; }
.article-body ol li { counter-increment: article-list; }
.article-body ol li::before {
  content: counter(article-list, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ember);
  letter-spacing: 0.03em;
}

.article-body a {
  color: var(--dark);
  background-image: linear-gradient(var(--ember), var(--ember));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 100% 2px;
  text-decoration: none;
  padding-bottom: 1px;
  transition: background-size 0.3s var(--ease), color 0.25s;
}
.article-body a:hover {
  color: var(--ember);
  background-size: 100% 100%;
  background-image: linear-gradient(rgba(224, 122, 46, 0.12), rgba(224, 122, 46, 0.12));
}
.article-body strong { font-weight: 700; color: var(--dark); }
.article-body em { color: var(--ember); font-style: normal; font-weight: 700; }

.article-body code {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 14.5px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2px 7px;
  color: var(--dark);
}
.article-body pre {
  margin: 28px 0;
  padding: 26px 28px;
  background: var(--dark);
  color: var(--bg);
  border-radius: var(--r);
  overflow-x: auto;
  font-size: 14px;
  line-height: 1.65;
  border: 1px solid rgba(245, 241, 235, 0.06);
}
.article-body pre code {
  background: transparent;
  border: none;
  color: var(--bg);
  padding: 0;
  font-size: 14px;
}

/* Section break SVG glyph centré */
.section-break {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 56px 0;
  color: var(--ember);
  opacity: 0.6;
}
.section-break svg { width: 24px; height: 24px; }

/* === Related articles === */
.article-related {
  margin-top: 120px;
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  border-top: 1px solid var(--border);
}
.article-related-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.article-related h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 48px;
}
.article-related h2 em { color: var(--ember); font-style: normal; font-weight: 800; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.related-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all 0.4s var(--ease);
}
.related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -24px rgba(26, 22, 17, 0.2);
  border-color: var(--border-strong);
}
.related-card-visual {
  height: 200px;
  position: relative;
  overflow: hidden;
  background: var(--dark);
}
.related-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.related-card:hover .related-card-visual img { transform: scale(1.06); }
.related-card-body { padding: 24px 26px 28px; }
.related-card-meta {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 12px;
}
.related-card h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 10px;
}
.related-card p {
  font-size: 14.5px;
  color: var(--text-light);
  line-height: 1.55;
  margin: 0;
}

/* === Article footer === */
.article-footer {
  padding: 56px 0 80px;
  background: var(--bg-alt);
  text-align: center;
}
.article-back-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  padding: 16px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  transition: all 0.35s var(--ease);
}
.article-back-cta:hover {
  border-color: var(--ember);
  color: var(--ember);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -12px rgba(224, 122, 46, 0.3);
}
.article-back-cta svg { transition: transform 0.3s var(--ease); }
.article-back-cta:hover svg { transform: translateX(-3px); }

/* === Scroll to top floating button === */
.article-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  color: var(--bg);
  border-radius: 50%;
  z-index: 40;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.4s var(--ease);
  box-shadow: 0 12px 32px -8px rgba(26, 22, 17, 0.4);
}
.article-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.article-top:hover {
  background: var(--ember);
  transform: translateY(-2px);
}

/* === Responsive === */
@media (max-width: 1024px) {
  .article-wrap {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 64px;
  }
  .article-toc { display: none; }
}
@media (max-width: 640px) {
  .article-hero-content { padding: 0 18px 36px; }
  .article-wrap { padding: 56px 18px 0; }
  .article-body { font-size: 16.5px; }
  .article-body p, .article-body li { font-size: 16.5px; }
  .article-body h2 { margin: 56px 0 18px; }
  .article-body > p:first-of-type::first-letter { font-size: 4.5em; margin: 4px 10px 0 0; }
  .related-grid { grid-template-columns: 1fr; }
  .article-top { bottom: 18px; right: 18px; width: 44px; height: 44px; }
}


/* ═══════════════════════════════════════════════════════════
   STORY H2 + FAQ + TESTIMONIALS DISCLAIMER
   ═══════════════════════════════════════════════════════════ */
.story-h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  line-height: 1.1;
}

.testimonials-disclaimer {
  margin-top: 18px;
  font-size: 12px;
  font-weight: 400;
  color: rgba(245, 241, 235, 0.5);
  font-style: normal;
  letter-spacing: 0.02em;
  max-width: 320px;
  line-height: 1.5;
}

.faq {
  padding: 140px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--white);
  transition: all 0.3s var(--ease);
  overflow: hidden;
}
.faq-item:hover {
  border-color: var(--border-strong);
}
.faq-item[open] {
  border-color: var(--ember);
  background: linear-gradient(180deg, var(--white) 0%, rgba(224, 122, 46, 0.03) 100%);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 56px 22px 26px;
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
  position: relative;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 400;
  color: var(--ember);
  transition: transform 0.3s var(--ease);
  line-height: 1;
}
.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}
.faq-item p {
  padding: 0 26px 22px;
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 640px) {
  .faq { padding: 80px 0; }
  .faq-item summary { padding: 18px 48px 18px 20px; font-size: 15px; }
  .faq-item p { padding: 0 20px 18px; }
}


/* ═══════════════════════════════════════════════════════════
   REVEAL ANIMATIONS (avec variantes)
   ═══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal--scale {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal--scale.in { opacity: 1; transform: scale(1); }

.reveal--left {
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal--left.in { opacity: 1; transform: translateX(0); }

.reveal--right {
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal--right.in { opacity: 1; transform: translateX(0); }

.reveal--rotate {
  opacity: 0;
  transform: translateY(36px) rotate(-2.5deg);
  transform-origin: bottom left;
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal--rotate.in { opacity: 1; transform: translateY(0) rotate(0); }

.reveal--blur {
  opacity: 0;
  transform: translateY(20px);
  filter: blur(8px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), filter 0.9s var(--ease);
}
.reveal--blur.in { opacity: 1; transform: translateY(0); filter: blur(0); }

/* Line-by-line reveal pour h2 avec <br> */
[data-reveal-lines] {
  display: block;
}
[data-reveal-lines] .rline {
  display: block;
  opacity: 0;
  transform: translateY(60%);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
  transition-delay: calc(var(--i, 0) * 140ms);
}
[data-reveal-lines].in .rline {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-lines] .rline:empty { display: none; }

/* Hero parallax bases */
.hero-bg,
.hero-mega,
.hero-eyebrow,
.hero-side,
.hero-scroll {
  will-change: transform, opacity;
}

/* Floating ember particles (sections sombres) */
.srv-section,
.testimonials,
.awards {
  position: relative;
}
.srv-section::after,
.testimonials::after,
.awards::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(2px 2px at 18% 32%, rgba(224, 122, 46, 0.55), transparent 60%),
    radial-gradient(1.5px 1.5px at 62% 68%, rgba(240, 147, 75, 0.45), transparent 60%),
    radial-gradient(2px 2px at 31% 82%, rgba(224, 122, 46, 0.40), transparent 60%),
    radial-gradient(1.5px 1.5px at 81% 22%, rgba(240, 147, 75, 0.35), transparent 60%),
    radial-gradient(2px 2px at 91% 54%, rgba(224, 122, 46, 0.45), transparent 60%),
    radial-gradient(1.5px 1.5px at 8% 64%, rgba(240, 147, 75, 0.30), transparent 60%),
    radial-gradient(2px 2px at 52% 14%, rgba(224, 122, 46, 0.35), transparent 60%);
  background-size: 100% 800px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
  animation: ember-drift 28s linear infinite;
}
.srv-section > *,
.testimonials > *,
.awards > * { position: relative; z-index: 1; }
@keyframes ember-drift {
  from { background-position: 0 0; }
  to   { background-position: 0 -800px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal--scale, .reveal--left, .reveal--right, .reveal--rotate, .reveal--blur,
  [data-reveal-lines] .rline {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}



/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav { display: none; }
  .burger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .real-grid { grid-template-columns: 1fr; }
  .real-card--lg { grid-column: span 1; }
  .real-card--lg .real-visual { height: 240px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .apropos-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-card { grid-template-columns: 1fr; padding: 48px; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 1024px) {
  :root { --header-h: 76px; }
  .logo { --logo-h: 48px; }
}

@media (max-width: 768px) {
  :root { --header-h: 68px; }
  .logo { --logo-h: 42px; }
}

@media (max-width: 480px) {
  :root { --header-h: 60px; }
  .logo { --logo-h: 38px; }
  .logo span { display: none; }
}

@media (max-width: 640px) {
  .wrap { padding: 0 18px; }
  .hero { padding: calc(var(--header-h) + 56px) 0 80px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .services, .realisations, .approche, .apropos, .contact { padding: 80px 0; }
  .steps { grid-template-columns: 1fr; }
  .apropos-stats { grid-template-columns: 1fr; gap: 12px; }
  .contact-card { padding: 32px 24px; }
  .footer-inner { grid-template-columns: 1fr; }
  .real-body { padding: 24px; }
  .svc { padding: 28px; }
}
