/* ============================================================
   HOZE — CSS commun. Design system : voir skill hoze-brand.
   Monochrome strict, angles droits, Manrope uniquement.
   ============================================================ */

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

:root {
  --white: #FFFFFF;
  --cloud: #EDEFF7;
  --smoke: #D3D6E0;
  --steel: #BCBFCC;
  --space: #9DA2B3;
  --graphite: #6E7180;
  --arsenic: #40424D;
  --phantom: #1E1E24;
  --black: #0F0F0F;

  --nav-h: 68px;
  --pad-desktop: 80px;
  --pad-mobile: 24px;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: 'Manrope', sans-serif;
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
}

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

a { color: inherit; }

button { font-family: 'Manrope', sans-serif; }

:focus-visible {
  outline: 2px solid var(--black);
  outline-offset: 2px;
}

.pt-nav { padding-top: var(--nav-h); }

/* ─── NAV ─── */
nav.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--pad-desktop); height: var(--nav-h);
  background: rgba(255,255,255,0.95); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--smoke);
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 22px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-link {
  font-size: 12px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--graphite); text-decoration: none;
  transition: color 0.2s; padding-bottom: 2px; border-bottom: 1px solid transparent;
}
.nav-link:hover, .nav-link[aria-current="page"] { color: var(--black); border-bottom-color: var(--black); }
.nav-cta { padding: 11px 22px; }
.nav-toggle {
  display: none; width: 24px; height: 16px; position: relative;
  background: none; border: none; cursor: pointer; flex-shrink: 0;
}
.nav-toggle span {
  position: absolute; left: 0; right: 0; height: 2px; background: var(--black);
}
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 7px; }
.nav-toggle span:nth-child(3) { top: 14px; }

.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  font-family: 'Manrope', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--graphite); background: none; border: none; cursor: pointer;
  padding-bottom: 2px; border-bottom: 1px solid transparent; transition: color 0.2s;
}
.nav-dropdown-toggle:hover, .nav-dropdown-toggle[aria-current="page"] { color: var(--black); border-bottom-color: var(--black); }
.nav-dropdown-panel {
  display: none; position: absolute; top: calc(100% + 16px); left: 0;
  background: var(--white); border: 1px solid var(--smoke); min-width: 220px;
  padding: 8px 0; z-index: 250;
}
.nav-dropdown-panel.is-open { display: block; }
.nav-dropdown-panel a {
  display: block; padding: 11px 20px; font-size: 12px; font-weight: 600;
  letter-spacing: 0.04em; color: var(--graphite); text-decoration: none;
}
.nav-dropdown-panel a:hover { background: var(--cloud); color: var(--black); }

/* ─── BOUTONS ─── */
.btn {
  display: inline-block; font-family: 'Manrope', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase;
  padding: 16px 32px; border: none; cursor: pointer; text-decoration: none; text-align: center;
  transition: background 0.2s, color 0.2s;
}
.btn--black { color: var(--white); background: var(--black); }
.btn--black:hover { background: var(--arsenic); }
.btn--white { color: var(--black); background: var(--white); }
.btn--white:hover { background: var(--cloud); }
.btn--ghost { color: var(--steel); background: transparent; padding: 16px 0; font-weight: 600; letter-spacing: 0.07em; }
.btn--ghost:hover { color: var(--white); }
.btn-link {
  font-size: 12px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--black); background: none; border: none; cursor: pointer; text-decoration: underline;
  text-underline-offset: 4px; transition: color 0.2s;
}
.btn-link:hover { color: var(--graphite); }

/* ─── TEXTES PARTAGÉS ─── */
.section-label { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--graphite); margin-bottom: 14px; }
.section-title { font-size: clamp(28px, 3vw, 44px); font-weight: 300; letter-spacing: -0.03em; line-height: 1.15; color: var(--black); }
.section-title strong { font-weight: 700; }
.section-intro { font-size: 15px; color: var(--graphite); line-height: 1.8; max-width: 560px; }

/* ══════════════════════════════════════════
   ACCUEIL
══════════════════════════════════════════ */
.home-hero {
  position: relative; min-height: calc(100vh - var(--nav-h));
  display: flex; align-items: flex-end;
  padding: 140px var(--pad-desktop) 88px;
  background: var(--black); overflow: hidden;
}
.home-hero-media { position: absolute; inset: 0; }
.home-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.home-hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.35); }
.home-hero-content { position: relative; z-index: 1; max-width: 920px; }
.home-hero-tag { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.72); margin-bottom: 24px; }
.home-hero-h1 { font-size: clamp(42px, 6vw, 88px); font-weight: 300; line-height: 1.04; color: var(--white); letter-spacing: -0.04em; margin-bottom: 28px; }
.home-hero-h1 .hero-line { display: block; }
.home-hero-h1 strong { font-weight: 800; }
.home-hero-sub { font-size: 16px; line-height: 1.8; color: rgba(255,255,255,0.78); max-width: 460px; margin-bottom: 44px; }
.home-hero-sub em { font-style: normal; color: var(--white); font-weight: 600; }
.home-hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

/* Flèche scroll minimaliste */
.hero-scroll {
  position: absolute; right: var(--pad-desktop); bottom: 40px; z-index: 1;
  display: flex; flex-direction: column; align-items: center; width: 24px; height: 88px;
}
.hero-scroll-ligne { display: block; width: 1px; flex: 1; background: rgba(255,255,255,0.55); position: relative; }
.hero-scroll-ligne::after {
  content: ''; position: absolute; bottom: 0; left: -3.5px;
  width: 7px; height: 7px;
  border-right: 1px solid rgba(255,255,255,0.55); border-bottom: 1px solid rgba(255,255,255,0.55);
  transform: rotate(45deg);
}
@media (prefers-reduced-motion: no-preference) {
  .motion .hero-scroll { animation: hero-pulse 2.8s ease-in-out infinite; }
}
@keyframes hero-pulse {
  0%, 100% { transform: translateY(0); opacity: 0.9; }
  50% { transform: translateY(10px); opacity: 0.45; }
}

/* Stats */
.home-stats { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--smoke); }
.stat-item { position: relative; padding: 36px 40px; border-right: 1px solid var(--smoke); }
.stat-item:last-child { border-right: none; }
.stat-item .ligne { margin-bottom: 24px; }
.stat-num { font-size: clamp(30px, 2.8vw, 42px); font-weight: 800; letter-spacing: -0.04em; color: var(--black); line-height: 1; }
.stat-label { font-size: 12px; color: var(--graphite); margin-top: 8px; line-height: 1.5; }

/* Manifeste — phrase révélée mot à mot au scrub */
.home-manifeste { background: var(--phantom); padding: clamp(120px, 18vh, 200px) var(--pad-desktop); }
.manifeste-phrase { font-size: clamp(30px, 4.2vw, 60px); font-weight: 300; letter-spacing: -0.04em; line-height: 1.14; color: var(--white); max-width: 1100px; }
.manifeste-phrase strong { font-weight: 800; }
.manifeste-para { font-size: clamp(18px, 1.8vw, 24px); font-weight: 400; letter-spacing: -0.01em; line-height: 1.55; color: var(--steel); max-width: 760px; margin-top: 28px; }
.manifeste-phrase + .manifeste-para { margin-top: 56px; }
.manifeste-para strong { font-weight: 600; color: var(--white); }

/* Réalisations — sections projets épinglées */
.projets-suite { background: var(--black); }
.projet { position: relative; height: 100vh; overflow: hidden; }
.projet-img { position: absolute; inset: 0; }
.projet-img img { width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.projet-ombre { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.2) 45%, rgba(0,0,0,0) 70%); }
.projet-infos { position: absolute; left: var(--pad-desktop); right: var(--pad-desktop); bottom: 64px; z-index: 2; color: var(--white); max-width: 560px; }
.projet-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-bottom: 12px; }
.projet-nom { font-size: clamp(30px, 3.4vw, 52px); font-weight: 800; letter-spacing: -0.04em; line-height: 1.05; margin-bottom: 24px; }
.projet-specs { display: flex; gap: 36px; flex-wrap: wrap; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.25); margin-bottom: 28px; }
.projet-specs .spec-label { color: rgba(255,255,255,0.5); }
.projet-specs .spec-value { color: var(--white); }
.projet-specs .todo-value { color: rgba(255,255,255,0.6); }
.projet-volet { position: absolute; inset: 0; z-index: 3; background: var(--black); transform: scaleY(0); transform-origin: bottom; pointer-events: none; }
@media (max-width: 767px) {
  .projet { height: 72svh; min-height: 480px; }
  .projet-infos { left: var(--pad-mobile); right: var(--pad-mobile); bottom: 32px; }
}

/* Approche rapide */
.home-approach { padding: 100px var(--pad-desktop); background: var(--white); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.approach-text .section-title { margin-bottom: 20px; }
.approach-text .section-intro { margin-bottom: 36px; }
.approach-visual { position: relative; height: 480px; }
.approach-img-main { position: absolute; top: 0; left: 0; right: 60px; bottom: 60px; overflow: hidden; }
.approach-img-main img { width: 100%; height: 100%; object-fit: cover; }
.approach-img-secondary { position: absolute; bottom: 0; right: 0; width: 220px; height: 220px; border: 4px solid var(--white); overflow: hidden; }
.approach-img-secondary img { width: 100%; height: 100%; object-fit: cover; }

/* Extrait réalisations — en-tête au-dessus des sections épinglées */
.home-projects { padding: 100px var(--pad-desktop) 64px; }
.home-projects-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }

/* Offre résumée */
.home-offer { padding: 100px var(--pad-desktop); background: var(--phantom); display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
.home-offer-left .section-label { color: var(--graphite); }
.home-offer-left .section-title { color: var(--white); margin-bottom: 20px; }
.home-offer-left .section-intro { color: var(--space); margin-bottom: 36px; }
.home-offer-grid { display: flex; flex-direction: column; gap: 2px; }
.offer-mini { padding: 28px 32px; border: 1px solid rgba(255,255,255,0.07); background: rgba(255,255,255,0.03); transition: background 0.2s; text-decoration: none; }
.offer-mini:hover { background: rgba(255,255,255,0.07); }
.offer-mini-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; gap: 12px; }
.offer-mini-name { font-size: 16px; font-weight: 700; color: var(--white); }
.offer-mini-arrow { font-size: 18px; color: var(--graphite); }
.offer-mini-desc { font-size: 13px; color: var(--graphite); line-height: 1.65; }

/* Bande CTA générique */
.cta-band { padding: 80px; background: var(--cloud); display: flex; align-items: center; justify-content: space-between; gap: 40px; border-top: 1px solid var(--smoke); flex-wrap: wrap; }
.cta-band--white { background: var(--white); }
.cta-band--black { background: var(--black); border-top: none; }
.cta-band-text { font-size: clamp(22px, 2.5vw, 36px); font-weight: 300; letter-spacing: -0.03em; color: var(--black); line-height: 1.2; }
.cta-band--black .cta-band-text { color: var(--white); }
.cta-band-text strong { font-weight: 700; }

/* ══════════════════════════════════════════
   APPROCHE
══════════════════════════════════════════ */
.approach-hero { padding: 140px var(--pad-desktop) 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; background: var(--white); border-bottom: 1px solid var(--smoke); }
.approach-hero-left .section-title { margin-bottom: 20px; }
.approach-hero-right { font-size: 15px; color: var(--graphite); line-height: 1.85; }
.approach-hero-right p + p { margin-top: 18px; }

.approach-pillars { padding: 80px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--smoke); }
.pillar { background: var(--white); padding: 48px 40px; }
.pillar-num { font-size: 42px; font-weight: 800; letter-spacing: -0.05em; color: var(--cloud); line-height: 1; margin-bottom: 24px; }
.pillar-title { font-size: 18px; font-weight: 700; letter-spacing: -0.02em; color: var(--black); margin-bottom: 12px; }
.pillar-text { font-size: 14px; color: var(--graphite); line-height: 1.75; }

.approach-conviction { padding: 100px var(--pad-desktop); background: var(--black); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.conviction-quote { font-size: clamp(22px, 2.5vw, 34px); font-weight: 300; letter-spacing: -0.03em; line-height: 1.4; color: var(--white); margin-bottom: 32px; }
.conviction-quote strong { font-weight: 700; font-style: italic; }
.conviction-author { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--graphite); }
.conviction-right { display: flex; flex-direction: column; gap: 24px; }
.conviction-item { border-left: 2px solid var(--arsenic); padding-left: 24px; }
.conviction-item-title { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.conviction-item-text { font-size: 13px; color: var(--space); line-height: 1.65; }

.approach-process-full { padding: 100px var(--pad-desktop); background: var(--white); overflow: hidden; }

/* Méthode — ligne verticale qui se trace, numéros géants en arrière-plan */
.methode-flow { position: relative; margin-top: 72px; }
.methode-ligne { position: absolute; top: 0; bottom: 0; left: 0; width: 1px; background: var(--black); transform-origin: top; }
.methode-etape { position: relative; padding: 72px 0 72px 72px; }
.methode-etape::before {
  content: ''; position: absolute; left: -3px; top: 94px;
  width: 7px; height: 7px; background: var(--black);
}
.methode-num {
  position: absolute; right: 0; top: 12px; z-index: 0;
  font-size: clamp(110px, 15vw, 220px); font-weight: 800;
  letter-spacing: -0.06em; line-height: 0.8; color: var(--cloud);
  pointer-events: none; user-select: none;
}
.methode-body { position: relative; z-index: 1; max-width: 560px; }
.methode-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--steel); margin-bottom: 14px; }
.methode-nom { font-size: 24px; font-weight: 700; letter-spacing: -0.02em; color: var(--black); margin-bottom: 12px; }
.methode-texte { font-size: 14px; color: var(--graphite); line-height: 1.8; }
@media (max-width: 767px) {
  .methode-etape { padding: 48px 0 48px 32px; }
  .methode-etape::before { top: 68px; }
  .methode-num { font-size: 96px; top: 20px; }
}

/* ══════════════════════════════════════════
   PRESTATIONS
══════════════════════════════════════════ */
.offer-hero { padding: 140px var(--pad-desktop) 80px; background: var(--white); border-bottom: 1px solid var(--smoke); }
.offer-hero .section-title { margin-bottom: 20px; }

.offer-cards { padding: 80px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--smoke); }
.offer-full-card { background: var(--white); padding: 56px 44px; display: flex; flex-direction: column; }
.offer-full-card.featured { background: var(--black); border: 1px solid var(--black); }
@media (min-width: 1025px) {
  .offer-full-card.featured { position: relative; top: -16px; }
  .offer-cards { padding-top: 96px; }
}
.ofc-badge { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--space); margin-bottom: 24px; }
.offer-full-card.featured .ofc-badge { color: var(--graphite); }
.ofc-name { font-size: 22px; font-weight: 700; letter-spacing: -0.03em; color: var(--black); margin-bottom: 8px; }
.offer-full-card.featured .ofc-name { color: var(--white); }
.ofc-pitch { font-size: 14px; color: var(--graphite); line-height: 1.65; margin-bottom: 36px; }
.offer-full-card.featured .ofc-pitch { color: var(--space); }
.ofc-list { list-style: none; flex: 1; display: flex; flex-direction: column; gap: 13px; }
.ofc-item { display: flex; gap: 12px; font-size: 13px; line-height: 1.6; color: var(--arsenic); }
.offer-full-card.featured .ofc-item { color: var(--steel); }
.ofc-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--steel); flex-shrink: 0; margin-top: 7px; }
.offer-full-card.featured .ofc-dot { background: var(--arsenic); }
.ofc-footer { margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--smoke); }
.offer-full-card.featured .ofc-footer { border-top-color: rgba(255,255,255,0.08); }
.ofc-price-label { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--graphite); margin-bottom: 6px; }
.ofc-price { font-size: 14px; font-weight: 600; color: var(--arsenic); }
.offer-full-card.featured .ofc-price { color: var(--space); }
.ofc-price-note { font-size: 12px; color: var(--graphite); }
.offer-full-card.featured .ofc-price-note { color: var(--space); }

.offer-faq { padding: 100px var(--pad-desktop); background: var(--cloud); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 48px; background: var(--smoke); }
.faq-item { background: var(--cloud); padding: 36px 40px; }
.faq-grid .faq-item:last-child:nth-child(odd) { grid-column: 1 / -1; }
.faq-q { font-size: 15px; font-weight: 700; letter-spacing: -0.01em; color: var(--black); margin-bottom: 10px; }
.faq-a { font-size: 13px; color: var(--graphite); line-height: 1.75; }

/* Accordéons FAQ (montés par motion.js — sans JS tout reste visible) */
.faq-item.is-accordion { padding: 0; }
.faq-toggle {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  background: none; border: none; cursor: pointer; padding: 26px 40px; text-align: left;
}
.faq-toggle .faq-q { margin-bottom: 0; }
.faq-plus { position: relative; width: 14px; height: 14px; flex-shrink: 0; transition: transform 0.35s ease; }
.faq-plus::before, .faq-plus::after { content: ''; position: absolute; background: var(--black); }
.faq-plus::before { left: 0; right: 0; top: 50%; height: 1px; }
.faq-plus::after { top: 0; bottom: 0; left: 50%; width: 1px; }
.faq-item.is-open .faq-plus { transform: rotate(45deg); }
.faq-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.45s cubic-bezier(0.22, 0.61, 0.36, 1); }
.faq-item.is-open .faq-panel { grid-template-rows: 1fr; }
.faq-panel-inner { overflow: hidden; min-height: 0; }
.faq-panel .faq-a { padding: 0 40px 26px; }
@media (prefers-reduced-motion: reduce) {
  .faq-panel, .faq-plus { transition: none; }
}

/* ══════════════════════════════════════════
   RÉALISATIONS
══════════════════════════════════════════ */
.portfolio-hero { padding: 120px var(--pad-desktop) 60px; background: var(--white); border-bottom: 1px solid var(--smoke); }

/* Galerie horizontale pilotée par le scroll vertical (desktop),
   défilement natif avec snap en mobile */
.galerie { background: var(--white); border-bottom: 1px solid var(--smoke); }
.galerie-track { display: flex; width: max-content; }
.galerie-card { display: block; text-decoration: none; flex-shrink: 0; }
.galerie-card-img { display: block; aspect-ratio: 3 / 2; overflow: hidden; background: var(--cloud); }
.galerie-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.galerie-card:hover .galerie-card-img img { transform: scale(1.04); }
.galerie-card-meta { display: flex; align-items: baseline; gap: 14px; padding-top: 16px; }
.galerie-card-num { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; color: var(--steel); }
.galerie-card-nom { font-size: 16px; font-weight: 700; letter-spacing: -0.02em; color: var(--black); }
@media (min-width: 768px) {
  .galerie { height: 100vh; display: flex; align-items: center; overflow: hidden; }
  .galerie-track { gap: 48px; padding: 0 var(--pad-desktop); will-change: transform; }
  .galerie-card { width: 44vw; max-width: 720px; }
}
@media (max-width: 767px) {
  .galerie { overflow-x: auto; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; }
  .galerie-track { gap: 16px; padding: 40px var(--pad-mobile); }
  .galerie-card { width: 78vw; scroll-snap-align: start; }
}

.portfolio-project { display: grid; grid-template-columns: 1fr 1fr; min-height: 80vh; border-top: 1px solid var(--smoke); scroll-margin-top: var(--nav-h); }
.portfolio-project.reverse { direction: rtl; }
.portfolio-project.reverse > * { direction: ltr; }
/* Médias en absolu : sans ça, la hauteur intrinsèque d'une photo ou d'une
   vidéo portrait ferait exploser la hauteur de la grille à son chargement */
.portfolio-imgs { display: grid; grid-template-rows: minmax(0, 1fr) minmax(0, 1fr); gap: 2px; background: var(--smoke); min-height: 0; }
.portfolio-imgs.single { grid-template-rows: minmax(0, 1fr); }
.portfolio-img { position: relative; overflow: hidden; min-height: 0; }
.portfolio-img img, .portfolio-img video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.portfolio-img:hover img { transform: scale(1.03); }
.portfolio-info { padding: 72px 64px; display: flex; flex-direction: column; justify-content: center; background: var(--white); }
.portfolio-info--cloud { background: var(--cloud); }
.portfolio-tag { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--graphite); margin-bottom: 20px; }
.portfolio-name { font-size: clamp(26px, 2.8vw, 40px); font-weight: 700; letter-spacing: -0.03em; color: var(--black); line-height: 1.1; margin-bottom: 20px; }
.portfolio-desc { font-size: 14px; color: var(--graphite); line-height: 1.8; margin-bottom: 36px; }
.portfolio-specs { display: flex; gap: 32px; padding-top: 28px; border-top: 1px solid var(--smoke); flex-wrap: wrap; }
.spec-label { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--steel); margin-bottom: 4px; }
.spec-value { font-size: 14px; font-weight: 600; color: var(--black); }
.portfolio-status { display: inline-block; margin-top: 24px; font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--graphite); background: var(--cloud); padding: 6px 14px; }

.conception-section { padding: 100px var(--pad-desktop); background: var(--cloud); border-top: 1px solid var(--smoke); }
.conception-section .section-intro { margin-top: 6px; margin-bottom: 48px; }
.conception-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--smoke); }
.conception-card { overflow: hidden; background: var(--white); }
.conception-card img { display: block; width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; }
@media (max-width: 1024px) { .conception-grid { grid-template-columns: 1fr 1fr; } }

/* ══════════════════════════════════════════
   À PROPOS
══════════════════════════════════════════ */
.about-hero { padding: 140px var(--pad-desktop) 80px; background: var(--white); border-bottom: 1px solid var(--smoke); }
.about-hero-inner { max-width: 720px; }
.about-hero .section-title { margin-bottom: 24px; }
.about-hero-body { font-size: 16px; color: var(--graphite); line-height: 1.9; }
.about-hero-body p + p { margin-top: 18px; }

/* Portraits fondateurs — blocs alternés photo/texte, parallax léger */
.team-row { display: grid; grid-template-columns: 5fr 7fr; gap: 80px; align-items: center; padding: 96px var(--pad-desktop); background: var(--white); }
.team-row--dark { background: var(--black); }
.team-row--reverse { grid-template-columns: 7fr 5fr; }
.team-row--reverse .team-photo { order: 2; }
.team-photo { aspect-ratio: 4 / 5; overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.motion .parallax-img img { height: 120%; position: relative; top: -10%; will-change: transform; }
.team-role { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--graphite); margin-bottom: 8px; }
.team-name { font-size: clamp(26px, 2.6vw, 36px); font-weight: 700; letter-spacing: -0.03em; color: var(--black); margin-bottom: 20px; }
.team-row--dark .team-name { color: var(--white); }
.team-bio { font-size: 14px; color: var(--graphite); line-height: 1.8; max-width: 560px; }
.team-row--dark .team-bio { color: var(--space); }
.team-bio p + p { margin-top: 14px; }
.team-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.team-tag { font-size: 11px; font-weight: 600; letter-spacing: 0.06em; color: var(--arsenic); background: var(--cloud); padding: 6px 12px; }
.team-row--dark .team-tag { background: var(--arsenic); color: var(--steel); }
@media (max-width: 1024px) {
  .team-row { grid-template-columns: 1fr; gap: 40px; padding: 64px var(--pad-mobile); }
  .team-row--reverse .team-photo { order: 0; }
  .team-photo { max-width: 420px; }
}

.about-values { padding: 100px var(--pad-desktop); background: var(--phantom); }
.about-values .section-label { color: var(--graphite); }
.about-values .section-title { color: var(--white); margin-bottom: 60px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: rgba(255,255,255,0.06); }
.value-item { background: var(--phantom); padding: 40px 36px; border: 1px solid rgba(255,255,255,0.06); }
.value-title { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.value-text { font-size: 13px; color: var(--space); line-height: 1.7; }

.about-zone { padding: 100px var(--pad-desktop); background: var(--white); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.zone-map {
  height: 400px; background: var(--cloud); position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.zone-map-inner {
  width: 280px; height: 280px; border-radius: 50%;
  border: 2px solid var(--smoke);
  display: flex; align-items: center; justify-content: center; position: relative;
}
.zone-map-inner::before {
  content: ''; position: absolute;
  width: 160px; height: 160px; border-radius: 50%;
  background: var(--black); opacity: 0.08;
}
.zone-map-inner::after {
  content: ''; position: absolute;
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--black); opacity: 0.15;
}
.zone-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--black); z-index: 1; }
.zone-text .section-title { margin-bottom: 16px; }
.zone-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 28px; }
.zone-item { font-size: 14px; color: var(--arsenic); display: flex; align-items: center; gap: 10px; }
.zone-item::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--steel); flex-shrink: 0; }

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.contact-page { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; }
.contact-left { background: var(--black); padding: 100px 72px; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.contact-left-grid {
  position: absolute; inset: 0; opacity: 0.04;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(255,255,255,1) 59px, rgba(255,255,255,1) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(255,255,255,1) 59px, rgba(255,255,255,1) 60px);
}
.contact-left-inner { position: relative; z-index: 1; }
.contact-tag { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--space); margin-bottom: 24px; }
.contact-h { font-size: clamp(32px, 3.5vw, 52px); font-weight: 300; letter-spacing: -0.04em; color: var(--white); line-height: 1.1; margin-bottom: 28px; }
.contact-h strong { font-weight: 800; display: block; }
.contact-sub { font-size: 15px; color: var(--steel); line-height: 1.8; max-width: 400px; margin-bottom: 60px; }
.contact-infos { display: flex; flex-direction: column; gap: 24px; }
.contact-info-item { display: flex; flex-direction: column; gap: 4px; }
.ci-label { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--graphite); }
.ci-value { font-size: 15px; font-weight: 600; color: var(--white); }
.ci-value a { color: var(--white); text-decoration: none; }

.contact-right { background: var(--cloud); padding: 100px 72px; display: flex; flex-direction: column; justify-content: center; }
.contact-form-title { font-size: 24px; font-weight: 700; letter-spacing: -0.03em; color: var(--black); margin-bottom: 8px; }
.contact-form-sub { font-size: 13px; color: var(--graphite); margin-bottom: 36px; line-height: 1.6; }

.contact-tally { width: 100%; background: transparent; }
.contact-tally iframe { width: 100%; border: none; display: block; }
.contact-tally-fallback { font-size: 11px; color: var(--space); margin-top: 14px; line-height: 1.6; text-align: center; }
.contact-tally-fallback a { color: var(--black); text-decoration: underline; text-underline-offset: 3px; }

.thank-you-msg { display: none; text-align: center; padding: 48px 0; }
.thank-you-msg.is-visible { display: block; }
.ty-icon { width: 52px; height: 52px; background: var(--black); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.thank-you-msg h3 { font-size: 20px; font-weight: 700; color: var(--black); margin-bottom: 8px; }
.thank-you-msg p { font-size: 14px; color: var(--graphite); line-height: 1.7; }

/* ══════════════════════════════════════════
   MENTIONS LÉGALES
══════════════════════════════════════════ */
.legal-hero { padding: 140px var(--pad-desktop) 60px; background: var(--white); border-bottom: 1px solid var(--smoke); }
.legal-body { padding: 80px var(--pad-desktop) 100px; max-width: 860px; }
.legal-block + .legal-block { margin-top: 44px; }
.legal-block h2 { font-size: 18px; font-weight: 700; letter-spacing: -0.02em; color: var(--black); margin-bottom: 14px; }
.legal-block p { font-size: 14px; color: var(--graphite); line-height: 1.85; }
.legal-block p + p { margin-top: 10px; }
.legal-block a { color: var(--black); text-decoration: underline; text-underline-offset: 3px; }
.legal-todo, .todo-value { color: var(--space); font-style: italic; }

/* ══════════════════════════════════════════
   OUTILS (simulateur, diagnostic)
══════════════════════════════════════════ */
.tool-hero { padding: 140px var(--pad-desktop) 60px; background: var(--white); border-bottom: 1px solid var(--smoke); }
.tool-hero .section-title { margin-bottom: 20px; }

.tool-body { padding: 80px var(--pad-desktop) 120px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.tool-form { display: flex; flex-direction: column; gap: 40px; }

.sim-step-label { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--graphite); margin-bottom: 16px; }

.choice-row { display: flex; flex-wrap: wrap; gap: 10px; }
.choice-btn {
  font-family: 'Manrope', sans-serif; font-size: 13px; font-weight: 600; color: var(--arsenic);
  background: var(--white); border: 1px solid var(--smoke); padding: 14px 20px; cursor: pointer;
  text-align: left; transition: border-color 0.2s, background 0.2s, color 0.2s; flex: 1 1 auto; min-width: 140px;
}
.choice-btn:hover { border-color: var(--steel); }
.choice-btn.is-selected { background: var(--black); border-color: var(--black); color: var(--white); }
.choice-btn-title { display: block; font-weight: 700; margin-bottom: 3px; }
.choice-btn-desc { display: block; font-size: 12px; color: var(--graphite); font-weight: 400; line-height: 1.5; }
.choice-btn.is-selected .choice-btn-desc { color: var(--steel); }

.sim-slider-row { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 14px; }
.sim-slider-value { font-size: 28px; font-weight: 800; letter-spacing: -0.03em; color: var(--black); }
input[type="range"].sim-slider {
  width: 100%; height: 2px; background: var(--smoke); appearance: none; outline: none; margin: 8px 0;
}
input[type="range"].sim-slider::-webkit-slider-thumb {
  appearance: none; width: 18px; height: 18px; border-radius: 50%; background: var(--black); cursor: pointer;
}
input[type="range"].sim-slider::-moz-range-thumb {
  width: 18px; height: 18px; border-radius: 50%; background: var(--black); border: none; cursor: pointer;
}
.sim-slider-bounds { display: flex; justify-content: space-between; font-size: 11px; color: var(--space); }

.tool-result { background: var(--cloud); border: 1px solid var(--smoke); padding: 48px 40px; position: sticky; top: 100px; }
.result-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--graphite); margin-bottom: 16px; }
.result-figure { font-size: clamp(30px, 3.4vw, 44px); font-weight: 800; letter-spacing: -0.03em; color: var(--black); line-height: 1.1; }
.result-grid { display: flex; flex-direction: column; gap: 22px; margin-top: 28px; padding-top: 28px; border-top: 1px solid var(--smoke); }
.result-item-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--graphite); margin-bottom: 6px; }
.result-item-value { font-size: 18px; font-weight: 700; color: var(--black); }
.result-disclaimer { font-size: 12px; color: var(--graphite); line-height: 1.7; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--smoke); }
.tool-result .btn { margin-top: 24px; width: 100%; }

@media (max-width: 1024px) {
  .tool-body { grid-template-columns: 1fr; }
  .tool-result { position: static; }
}

.diag-progress { font-size: 12px; font-weight: 600; color: var(--graphite); margin-bottom: 4px; }

/* ══════════════════════════════════════════
   ARTICLES / PAGES D'AUTORITÉ (reprend legal-hero/legal-body/legal-block)
══════════════════════════════════════════ */
.callout { background: var(--cloud); border-left: 3px solid var(--black); padding: 24px 28px; margin: 8px 0 32px; font-size: 14px; color: var(--arsenic); line-height: 1.75; }
.callout strong { color: var(--black); }
.callout a { color: var(--black); text-decoration: underline; text-underline-offset: 2px; }
.callout-label { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--graphite); margin-bottom: 8px; display: block; }

.compare-table-wrap { overflow-x: auto; margin: 8px 0 8px; }
.compare-table-hint { display: none; font-size: 12px; color: var(--space); margin: 0 0 40px; }
@media (max-width: 700px) {
  .compare-table-hint { display: block; }
}
table.compare-table { width: 100%; min-width: 640px; border-collapse: collapse; font-size: 13px; }
.compare-table th, .compare-table td { padding: 16px 18px; border: 1px solid var(--smoke); text-align: left; vertical-align: top; line-height: 1.6; color: var(--arsenic); }
.compare-table thead th { background: var(--cloud); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--graphite); }
.compare-table th.compare-col-hoze, .compare-table td.compare-col-hoze { background: var(--black); color: var(--white); }
.compare-table thead th.compare-col-hoze { color: var(--space); }
.compare-table tbody th { font-weight: 700; color: var(--black); background: var(--white); font-size: 13px; white-space: nowrap; }

.article-cta { margin: 48px 0 8px; }

.journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--smoke); margin: 8px 0 40px; }
.journal-card { background: var(--white); padding: 40px 32px; display: flex; flex-direction: column; text-decoration: none; transition: background 0.2s; }
.journal-card:hover { background: var(--cloud); }
.journal-card-date { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--graphite); margin-bottom: 14px; }
.journal-card-title { font-size: 18px; font-weight: 700; letter-spacing: -0.02em; color: var(--black); line-height: 1.3; margin-bottom: 10px; }
.journal-card-excerpt { font-size: 13px; color: var(--graphite); line-height: 1.7; }
@media (max-width: 1024px) { .journal-grid { grid-template-columns: 1fr; } }

.article-chapo { font-size: 17px; color: var(--arsenic); line-height: 1.7; font-weight: 500; }
.article-meta { font-size: 12px; color: var(--space); margin-bottom: 20px; }

.glossary-index { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 8px 0 48px; }
.glossary-index a { font-size: 12px; font-weight: 600; letter-spacing: 0.03em; color: var(--arsenic); background: var(--cloud); padding: 7px 14px; text-decoration: none; }
.glossary-index a:hover { background: var(--smoke); }
.glossary-term { padding: 26px 0; border-bottom: 1px solid var(--smoke); scroll-margin-top: 96px; }
.glossary-term:first-of-type { border-top: 1px solid var(--smoke); }
.glossary-term h2 { font-size: 17px; font-weight: 700; letter-spacing: -0.01em; color: var(--black); margin-bottom: 8px; }
.glossary-term p { font-size: 14px; color: var(--graphite); line-height: 1.7; }

.link-list { list-style: none; }
.link-list a { color: var(--black); text-decoration: underline; text-underline-offset: 3px; }
.link-list a:hover { color: var(--graphite); }

/* ─── FOOTER ─── */
footer.site-footer {
  background: var(--phantom); padding: 64px var(--pad-desktop) 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.footer-top {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; margin-bottom: 48px;
}
.footer-logo { display: flex; align-items: center; }
.footer-logo img { height: 18px; width: auto; }
.footer-tagline { font-size: 12px; color: var(--graphite); line-height: 1.8; text-align: right; }
.footer-columns {
  display: grid; grid-template-columns: 1fr 1.3fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.footer-col-title { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--space); margin-bottom: 18px; }
.footer-col { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 12px; color: var(--graphite); text-decoration: none; line-height: 1.5; transition: color 0.2s; }
.footer-col a:hover { color: var(--steel); }
.footer-bottom { padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 11px; color: var(--graphite); flex-wrap: wrap; gap: 12px; }
.footer-bottom a { color: var(--graphite); text-decoration: none; }
.footer-bottom a:hover { color: var(--steel); }

/* ══════════════════════════════════════════
   ANIMATIONS — socle (voir skill scroll-craft)
══════════════════════════════════════════ */

/* Lenis : recommandations officielles. Quand Lenis pilote le défilement,
   le scroll-behavior CSS doit être neutralisé (sinon les deux se battent). */
html.lenis, html.lenis body { height: auto; }
html.lenis { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

/* Les éléments du hero ne sont masqués QUE si JS + motion sont actifs
   (classe .motion posée dans <head>, retirée si GSAP absent ou en erreur) */
.motion .anim-hero { opacity: 0; }

/* Nav compacte après 80px de scroll */
nav.site-nav { transition: height 0.35s ease, box-shadow 0.35s ease; }
nav.site-nav.is-compact { height: 56px; box-shadow: 0 8px 30px rgba(15,15,15,0.06); }

/* Lignes 1px qui se tracent */
.ligne { display: block; width: 100%; height: 1px; background: var(--black); transform-origin: left; }

/* Lignes du footer (injectées par motion.js, remplacent les bordures statiques) */
.motion footer.site-footer { border-top-color: transparent; }
.motion .footer-columns { border-bottom-color: transparent; }
.footer-ligne { position: absolute; left: 0; right: 0; height: 1px; background: rgba(255,255,255,0.14); transform-origin: left; }
.footer-ligne--top { top: -1px; }
.footer-ligne--bottom { bottom: -1px; }

/* Transitions de page : fondu court si supporté */
@media (prefers-reduced-motion: no-preference) {
  @view-transition { navigation: auto; }
  ::view-transition-old(root), ::view-transition-new(root) { animation-duration: 0.2s; }
}

@media (prefers-reduced-motion: reduce) {
  nav.site-nav { transition: none; }
  .galerie-card-img img, .portfolio-img img, .project-mini-card img { transition: none; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 4px;
    background: var(--white); border-bottom: 1px solid var(--smoke);
    padding: 12px 28px 24px;
  }
  .nav-links.is-open { display: flex; }
  .nav-link, .nav-links .nav-cta, .nav-dropdown { width: 100%; }
  .nav-link, .nav-dropdown-toggle { padding: 12px 0; border-bottom: 1px solid var(--smoke); width: 100%; text-align: left; }
  .nav-links .nav-cta { text-align: left; border-bottom: none; margin-top: 8px; padding: 14px 22px; }
  .nav-dropdown-panel { display: none; position: static; border: none; padding: 0 0 0 16px; }
  .nav-dropdown-panel.is-open { display: block; }
  .nav-dropdown-panel a { padding: 10px 0; border-bottom: 1px solid var(--smoke); }
}

@media (max-width: 1024px) {
  nav.site-nav { padding: 0 28px; }
  .nav-links { gap: 20px; }
  .contact-page { grid-template-columns: 1fr; }
  .home-approach, .approach-conviction, .about-zone, .home-offer, .approach-hero { grid-template-columns: 1fr; gap: 40px; }
  .approach-visual { height: 320px; }
  .offer-cards, .approach-pillars, .values-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-project { grid-template-columns: 1fr; }
  .portfolio-imgs { grid-template-rows: none; grid-auto-rows: 300px; grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .approach-hero, .offer-hero, .portfolio-hero, .about-hero, .legal-hero,
  .home-approach, .offer-faq, .about-values, .about-zone,
  .approach-process-full, .home-offer, .home-projects, .legal-body { padding-left: 28px; padding-right: 28px; }
  .offer-cards, .approach-pillars { padding: 2px; }
  .cta-band { padding: 56px 28px; flex-direction: column; align-items: flex-start; }
  footer.site-footer { padding: 48px 28px 28px; }
  .footer-columns { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-top { flex-direction: column; }
  .footer-tagline { text-align: left; }
  .contact-left, .contact-right { padding: 72px 28px; }
  .home-hero { padding: 120px 28px 64px; }
  .hero-scroll { right: 28px; }
}

@media (max-width: 640px) {
  .home-stats { grid-template-columns: 1fr; }
  .stat-item { border-right: none; }
  .stat-item:nth-child(n+2) { border-top: 1px solid var(--smoke); }
  .stat-item { padding: 28px 24px; }
  .offer-cards, .approach-pillars, .values-grid { grid-template-columns: 1fr; }
  .footer-columns { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ══════════════════════════════════════════
   LIGHTBOX GALERIE PROJET (assets/js/lightbox.js)
══════════════════════════════════════════ */

/* Affordance : toute photo cliquable = curseur zoom + léger scale au hover */
.lb-trigger { cursor: zoom-in; }
.lb-trigger:focus-visible { outline: 2px solid var(--black); outline-offset: 2px; }
.galerie-card-img { cursor: zoom-in; }
.conception-card img { transition: transform 0.6s ease; }
.conception-card:hover img { transform: scale(1.03); }

/* Vidéo dans les fiches : vrai ratio sur fond noir, jamais recadrée */
.portfolio-img--video { background: var(--black); }
.portfolio-img--video video { object-fit: contain; }

.lb {
  position: fixed; inset: 0; z-index: 500;
  display: flex; flex-direction: column;
  background: rgba(15, 15, 15, 0.95); color: var(--white);
  opacity: 0; transition: opacity 0.35s ease;
}
.lb.is-open { opacity: 1; }
.lb[hidden] { display: none; }
html.lb-open, html.lb-open body { overflow: hidden; }

.lb-close {
  position: absolute; top: 20px; right: 20px; z-index: 2;
  width: 48px; height: 48px; display: grid; place-items: center;
  background: transparent; border: 1px solid rgba(255,255,255,0.25);
  color: var(--white); cursor: pointer; transition: border-color 0.2s;
}
.lb-close:hover { border-color: var(--white); }

.lb-head { display: flex; align-items: baseline; gap: 20px; padding: 26px 96px 14px 40px; }
.lb-tag { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--space); white-space: nowrap; }
.lb-name { font-size: 22px; font-weight: 800; letter-spacing: -0.03em; color: var(--white); line-height: 1.1; }
.lb-count { margin-left: auto; font-size: 12px; font-weight: 600; letter-spacing: 0.12em; color: var(--steel); font-variant-numeric: tabular-nums; white-space: nowrap; }

.lb-stage { position: relative; flex: 1; min-height: 0; display: flex; }
.lb-media { flex: 1; min-width: 0; display: flex; align-items: center; justify-content: center; padding: 0 96px; }
.lb-media img, .lb-media video { max-width: 100%; max-height: 100%; object-fit: contain; }

.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 48px; height: 48px; display: grid; place-items: center;
  background: rgba(15,15,15,0.5); border: 1px solid rgba(255,255,255,0.25);
  color: var(--white); cursor: pointer; transition: border-color 0.2s;
}
.lb-nav:hover { border-color: var(--white); }
.lb-prev { left: 24px; }
.lb-next { right: 24px; }

.lb-foot { padding: 14px 40px 20px; }
.lb-desc { font-size: 13px; line-height: 1.6; color: var(--steel); max-width: 72ch; }
.lb-specs { display: flex; gap: 32px; margin-top: 10px; flex-wrap: wrap; }
.lb-specs .spec-label { color: var(--space); }
.lb-specs .spec-value { color: var(--white); }

.lb-thumbs { display: flex; gap: 8px; margin-top: 16px; overflow-x: auto; padding-bottom: 4px; }
.lb-thumb {
  flex: 0 0 auto; width: 76px; height: 50px; padding: 0;
  border: 1px solid transparent; background: none;
  opacity: 0.45; cursor: pointer; transition: opacity 0.2s;
}
.lb-thumb:hover { opacity: 0.8; }
.lb-thumb.is-current { opacity: 1; border-color: var(--white); }
.lb-thumb img { display: block; width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 767px) {
  .lb-head { padding: 18px 76px 8px 20px; flex-wrap: wrap; gap: 6px 16px; }
  .lb-close { top: 12px; right: 12px; width: 44px; height: 44px; }
  .lb-media { padding: 0 8px; }
  .lb-nav { width: 42px; height: 42px; }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
  .lb-foot { padding: 10px 20px 16px; }
  .lb-desc { font-size: 12px; }
  .lb-thumbs { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .lb { transition: none; }
  .conception-card img { transition: none; }
  .lb-trigger { cursor: zoom-in; }
}
