/* ============================================================
   WOODYWOOD BELGIUM — Design System v2 (Production)
   Gestes Ancestraux · Maîtrise Contemporaine
   ============================================================ */

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

:root {
  --ink:        #0C0A07;
  --walnut:     #181410;
  --char:       #272018;
  --gold:       #BF9A54;
  --gold-lt:    #D4AF6C;
  --gold-pale:  #E8CF9A;
  --parchment:  #F5EDD8;
  --chalk:      #FAF8F3;
  --linen:      #EDE4CE;
  --text-light: #E2D8C6;
  --text-dim:   #8C7E6C;
  --text-dark:  #2A2018;
  --text-mid:   #5A4E3C;
  --font-d: 'Playfair Display', Georgia, serif;
  --font-b: 'Inter', system-ui, sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-b); background: var(--ink); color: var(--text-light); overflow-x: hidden; }
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }

/* ---- UTILS ---- */
.wrap   { max-width: 1320px; margin: 0 auto; padding: 0 2.5rem; }
.wrap-n { max-width: 900px;  margin: 0 auto; padding: 0 2.5rem; }
.eyebrow {
  display: inline-block; font-family: var(--font-b); font-size: .65rem;
  font-weight: 600; letter-spacing: .28em; text-transform: uppercase; color: var(--gold);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  transition: background .5s var(--ease), backdrop-filter .5s;
}
#nav.scrolled {
  background: rgba(24,20,16,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  height: 76px;
  border-bottom: 1px solid rgba(191,154,84,.14);
}
#nav.scrolled .nav-inner { border-bottom-color: transparent; }

/* Logo */
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo svg, .nav-logo img { height: 52px; width: auto; transition: opacity .3s; }
.nav-logo:hover svg, .nav-logo:hover img { opacity: .75; }

/* Nav links */
.nav-links {
  display: flex; align-items: center; justify-content: center;
  gap: 2.2rem; flex-wrap: wrap;
}
.nav-links a {
  font-size: .72rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-dim); position: relative; transition: color .25s; white-space: nowrap;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px;
  background: var(--gold); transition: width .35s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-lt); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* Nav CTA */
.nav-cta {
  padding: .52rem 1.4rem !important;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  font-size: .67rem !important;
  transition: background .25s, color .25s !important;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--ink) !important; }
.nav-cta::after { display: none !important; }

/* Mobile burger */
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: .5rem;
}
.nav-burger span {
  display: block; width: 24px; height: 1px; background: var(--text-light);
  transition: transform .3s, opacity .3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile nav panel */
.nav-mobile {
  display: none; position: fixed; top: 76px; left: 0; right: 0;
  background: var(--walnut); padding: 2rem 2.5rem;
  border-bottom: 1px solid rgba(191,154,84,.15);
  z-index: 899;
}
.nav-mobile.open { display: block; }
.nav-mobile ul { display: flex; flex-direction: column; gap: 1.4rem; }
.nav-mobile ul a {
  font-size: .85rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  color: var(--text-dim); transition: color .25s;
}
.nav-mobile ul a:hover, .nav-mobile ul a.active { color: var(--gold-lt); }
.nav-mobile .nav-cta {
  display: inline-block; margin-top: .8rem;
  padding: .7rem 1.8rem !important;
}

/* ============================================================
   HERO — shared base
   ============================================================ */
.hero {
  position: relative; min-height: 100svh; display: flex;
  align-items: center; justify-content: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; overflow: hidden;
  transform: scale(1.06); transition: transform 9s ease-out;
}
.hero-bg video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero.loaded .hero-bg { transform: scale(1); }
.hero-bg.zoom-light { transform: scale(1.025); }
.hero.loaded .hero-bg.zoom-light { transform: scale(1); }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(12,10,7,.52) 0%, rgba(12,10,7,.42) 45%, rgba(12,10,7,.88) 100%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  padding: 5rem 2rem 2.5rem; max-width: min(1400px, 95vw);
}

/* Hero — sub-page (shorter) */
.hero-sub { min-height: 55vh; align-items: flex-end; }
.hero-sub .hero-content { padding-bottom: 5rem; }

/* Hero logo (home only) */
.hero-logo { display: flex; justify-content: center; margin-bottom: 2.4rem; }
.hero-logo svg, .hero-logo img {
  height: clamp(110px, 14vw, 190px); width: auto;
  opacity: 0; transform: translateY(18px);
  transition: opacity 1.4s .3s var(--ease), transform 1.4s .3s var(--ease);
}
.hero.loaded .hero-logo svg, .hero.loaded .hero-logo img { opacity: 1; transform: none; }

/* Hero eyebrow */
.hero-eyebrow {
  display: inline-block; font-size: .62rem; font-weight: 500; letter-spacing: .32em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 2.8rem;
  opacity: 0; transform: translateY(14px);
  transition: opacity 1.2s .7s var(--ease), transform 1.2s .7s var(--ease);
}
.hero-sub .hero-eyebrow {
  transition: opacity 1.2s .3s var(--ease), transform 1.2s .3s var(--ease);
}
.hero.loaded .hero-eyebrow { opacity: 1; transform: none; }

/* Hero headline */
.hero-h1 { font-family: var(--font-d); line-height: .95; margin-bottom: 2.2rem; }
.h1-main {
  display: block; font-size: clamp(3.5rem, 8.5vw, 9rem); font-weight: 700;
  letter-spacing: -.025em; color: var(--chalk);
  opacity: 0; transform: translateY(36px);
  transition: opacity 1.3s 1.3s var(--ease), transform 1.3s 1.3s var(--ease);
}
.hero-sub .h1-main {
  font-size: clamp(2.4rem, 5.5vw, 5.5rem);
  transition: opacity 1.3s .5s var(--ease), transform 1.3s .5s var(--ease);
}
.hero.loaded .h1-main { opacity: 1; transform: none; }

.h1-of {
  display: block; font-size: clamp(1rem, 2.2vw, 1.9rem); font-style: italic;
  font-weight: 400; color: var(--gold-lt); letter-spacing: .04em; margin: .5rem 0;
  opacity: 0; transform: translateY(24px);
  transition: opacity 1.3s 1.8s var(--ease), transform 1.3s 1.8s var(--ease);
}
.hero-sub .h1-of { transition: opacity 1.3s .9s var(--ease), transform 1.3s .9s var(--ease); }
.hero.loaded .h1-of { opacity: 1; transform: none; }

.h1-sub {
  display: block; font-size: clamp(1.7rem, 4.2vw, 4.6rem); font-weight: 400;
  letter-spacing: .05em; color: var(--chalk);
  opacity: 0; transform: translateY(24px);
  transition: opacity 1.3s 2.2s var(--ease), transform 1.3s 2.2s var(--ease);
}
.hero.loaded .h1-sub { opacity: 1; transform: none; }

.hero-rule {
  width: 0; height: 1px; background: var(--gold); margin: 2rem auto;
  opacity: 0; transition: width 1.1s 2.7s var(--ease), opacity .6s 2.7s;
}
.hero-sub .hero-rule {
  transition: width 1.1s .8s var(--ease), opacity .6s .8s;
}
.hero.loaded .hero-rule { width: 72px; opacity: 1; }

.hero-tagline {
  font-size: .68rem; font-weight: 400; letter-spacing: .28em; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 3.2rem;
  opacity: 0; transition: opacity 1.1s 3.0s var(--ease);
}
.hero-sub .hero-tagline { transition: opacity 1.1s 1.1s var(--ease); }
.hero.loaded .hero-tagline { opacity: 1; }

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 2.8rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  z-index: 2; opacity: 0; animation: fadeIn 1.0s 3.9s forwards;
}
.hero-sub .hero-scroll { display: none; }
.hero-scroll span {
  font-size: .55rem; letter-spacing: .22em; text-transform: uppercase; color: var(--text-dim);
}
.scroll-bar {
  width: 1px; height: 46px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: pulse 2.2s infinite;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-outline {
  display: inline-flex; align-items: center; gap: .75rem;
  padding: .88rem 2.6rem;
  border: 1px solid var(--gold); font-size: .68rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: var(--gold);
  transition: background .25s, color .25s;
}
.btn-outline:hover { background: var(--gold); color: var(--ink); }

.btn-gold-fill {
  display: inline-flex; align-items: center; gap: .75rem;
  padding: .92rem 2.2rem; background: var(--gold);
  color: var(--ink); font-size: .68rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; transition: background .25s, color .25s, transform .2s;
}
.btn-gold-fill:hover { background: var(--gold-lt); transform: translateY(-2px); }

.btn-dark {
  display: inline-block; padding: .82rem 2.2rem;
  border: 1px solid var(--text-dark); font-size: .68rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: var(--text-dark);
  transition: background .25s, color .25s;
}
.btn-dark:hover { background: var(--text-dark); color: var(--chalk); }

.btn-outline svg, .btn-gold-fill svg { flex-shrink: 0; width: 15px; height: 15px; stroke: currentColor; }

.cta-btns { display: flex; gap: 1.4rem; justify-content: center; flex-wrap: wrap; align-items: center; }

/* ============================================================
   SECTION SHARED
   ============================================================ */
.s-header { text-align: center; margin-bottom: 5rem; }
.s-header .eyebrow { display: block; margin-bottom: 1.2rem; }
.s-title {
  font-family: var(--font-d); font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 400; color: var(--chalk); line-height: 1.2; margin-bottom: 1.1rem;
}
.s-title-dark {
  font-family: var(--font-d); font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 400; color: var(--text-dark); line-height: 1.2; margin-bottom: 1.1rem;
}
.s-lead { font-size: .95rem; color: var(--text-dim); max-width: 540px; margin: 0 auto; line-height: 1.8; }
.s-lead-dark { font-size: .95rem; color: var(--text-mid); max-width: 540px; margin: 0 auto; line-height: 1.8; }

/* ============================================================
   SECTION MISSION (home)
   ============================================================ */
.s-mission { background: var(--parchment); padding: 7rem 0; color: var(--text-dark); }
.mission-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 7rem; align-items: start;
}
.mission-sticky { position: sticky; top: 120px; }
.quote-glyph {
  font-family: var(--font-d); font-size: 9rem; line-height: .6; color: var(--gold);
  opacity: .22; font-weight: 700; margin-bottom: 1.5rem; user-select: none;
}
.quote-body {
  font-family: var(--font-d); font-size: clamp(1.3rem, 2.4vw, 1.95rem);
  font-style: italic; font-weight: 400; line-height: 1.55; color: var(--text-dark);
}
.mission-text .eyebrow { margin-bottom: 1.4rem; }
.mission-text h2 {
  font-family: var(--font-d); font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 500; color: var(--text-dark); margin-bottom: 1.8rem; line-height: 1.25;
}
.mission-text p {
  font-size: 1.02rem; line-height: 1.85; color: var(--text-mid); margin-bottom: 1.1rem;
}
.mission-text p strong { color: var(--text-dark); font-weight: 600; }

/* ============================================================
   SECTION SERVICES
   ============================================================ */
.s-services { background: var(--walnut); padding: 7rem 0; }
.svc-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: rgba(191,154,84,.22);
}
.svc-grid--3col { grid-template-columns: repeat(3, 1fr); }
.svc-card {
  padding: 3.2rem 2.8rem; background: var(--walnut);
  position: relative; overflow: hidden; transition: background .4s var(--ease);
}
.svc-card:hover { background: var(--char); }
.svc-bar {
  width: 36px; height: 2px; background: var(--gold); margin-bottom: 2.2rem;
  transition: width .4s var(--ease);
}
.svc-card:hover .svc-bar { width: 56px; }
.svc-card h3 {
  font-family: var(--font-d); font-size: 1.25rem; font-weight: 500;
  color: var(--chalk); margin-bottom: 1rem; line-height: 1.3;
}
.svc-card p { font-size: .9rem; line-height: 1.85; color: var(--text-dim); margin-bottom: 1.8rem; }
.link-gold {
  font-size: .67rem; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold); transition: letter-spacing .25s;
}
.link-gold:hover { letter-spacing: .25em; }

/* ============================================================
   SECTION MANIFESTO
   ============================================================ */
.s-manifesto { background: var(--parchment); padding: 7rem 0; text-align: center; }
.manifesto-rule { width: 48px; height: 1px; background: var(--gold); margin: 0 auto 3.5rem; }
.manifesto-q {
  font-family: var(--font-d); font-size: clamp(1.4rem, 2.8vw, 2.6rem);
  font-style: italic; font-weight: 400; color: var(--text-dark);
  line-height: 1.55; max-width: 780px; margin: 0 auto 2.2rem;
}
.manifesto-cite {
  font-size: .65rem; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold); font-style: normal;
}

/* ============================================================
   SECTION CERTIF BAR
   ============================================================ */
.s-certif {
  background: var(--walnut); padding: 3rem 0;
  border-top: 1px solid rgba(191,154,84,.12);
  border-bottom: 1px solid rgba(191,154,84,.12);
}
.certif-row { display: flex; align-items: center; gap: 3rem; flex-wrap: wrap; }
.certif-sep { width: 1px; height: 36px; background: rgba(191,154,84,.25); flex-shrink: 0; }
.certif-pills { display: flex; flex-wrap: wrap; gap: .8rem; }
.certif-pills span {
  font-size: .62rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-dim); padding: .38rem 1rem; border: 1px solid rgba(191,154,84,.2);
}
.certif-logo { height: 48px; width: auto; opacity: .85; }

/* ============================================================
   GALLERY PREVIEW (home)
   ============================================================ */
.s-gallery { background: var(--ink); }
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 520px;
}
.gal-item { position: relative; overflow: hidden; }
.gal-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s var(--ease);
}
.gal-item:hover img { transform: scale(1.05); }
.gal-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,10,7,.82) 0%, transparent 55%);
  display: flex; align-items: flex-end; padding: 2.2rem;
}
.gal-overlay-label {
  font-size: .6rem; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold);
}
.gal-cta {
  background: var(--char); display: flex; align-items: center; justify-content: center;
  border-left: 1px solid rgba(191,154,84,.15); cursor: pointer; transition: background .4s;
}
.gal-cta:hover { background: var(--walnut); }
.gal-cta-inner { text-align: center; padding: 2rem; }
.gal-cta-text {
  font-family: var(--font-d); font-size: 1.9rem; font-style: italic;
  font-weight: 400; color: var(--chalk); line-height: 1.3;
}
.gal-cta-arrow { display: block; font-size: 1.6rem; color: var(--gold); margin-top: .8rem; }

/* ============================================================
   HOME CTA STRIP
   ============================================================ */
.s-hcta {
  background: var(--ink); padding: 6rem 0; text-align: center;
  border-top: 1px solid rgba(191,154,84,.15);
}
.s-hcta .eyebrow { display: block; margin-bottom: 1.5rem; }
.s-hcta h2 {
  font-family: var(--font-d); font-size: clamp(1.8rem, 4vw, 3.4rem);
  font-weight: 400; font-style: italic; color: var(--chalk);
  line-height: 1.3; margin-bottom: 1.1rem;
}
.s-hcta p { font-size: .92rem; color: var(--text-dim); margin-bottom: 2.8rem; }

/* ============================================================
   INTRO SECTION (sub-pages)
   ============================================================ */
.s-intro { background: var(--parchment); padding: 7rem 0; color: var(--text-dark); }
.s-intro .s-header { text-align: left; margin-bottom: 3rem; }
.intro-inner .eyebrow { margin-bottom: 1.2rem; }
.intro-inner h2 {
  font-family: var(--font-d); font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  font-weight: 400; color: var(--text-dark); margin-bottom: 2.2rem; line-height: 1.25;
}
.intro-inner p {
  font-size: 1.03rem; line-height: 1.9; color: var(--text-mid); margin-bottom: 1.2rem;
}
.intro-inner p strong { color: var(--text-dark); font-weight: 600; }
.intro-cols { display: grid; grid-template-columns: 1.1fr 1fr; gap: 5rem; align-items: start; }
.intro-img-wrap { position: relative; }
.intro-img-wrap img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.intro-img-accent {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  width: 50%; aspect-ratio: 1; object-fit: cover;
  border: 6px solid var(--parchment);
}

/* ============================================================
   PILLARS (architectes / services detail)
   ============================================================ */
.s-pillars { background: var(--walnut); padding: 7rem 0; }
.pillars-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: rgba(191,154,84,.1); margin-top: 4.5rem;
}
.pillar {
  background: var(--walnut); padding: 3.5rem 2.8rem;
  transition: background .35s var(--ease);
}
.pillar:hover { background: var(--char); }
.pillar-num {
  font-family: var(--font-d); font-size: 3.5rem; font-weight: 700; font-style: italic;
  color: var(--gold); opacity: .3; line-height: 1; margin-bottom: 1.5rem;
}
.pillar h3 {
  font-family: var(--font-d); font-size: 1.2rem; font-weight: 500;
  color: var(--chalk); margin-bottom: 1rem; line-height: 1.35;
}
.pillar p { font-size: .88rem; line-height: 1.85; color: var(--text-dim); }

/* ============================================================
   PARTICULIERS — SERVICE CARDS
   ============================================================ */
.s-part-services { background: var(--parchment); padding: 7rem 0; }
.part-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; margin-top: 4rem; }
.part-card {
  background: var(--chalk); padding: 3.5rem 3rem; position: relative;
  border-left: 3px solid transparent; transition: border-color .3s, background .3s;
}
.part-card:hover { border-left-color: var(--gold); background: var(--linen); }
.part-card-icon {
  width: 40px; height: 2px; background: var(--gold); margin-bottom: 2rem;
  transition: width .3s;
}
.part-card:hover .part-card-icon { width: 60px; }
.part-card h3 {
  font-family: var(--font-d); font-size: 1.3rem; font-weight: 500;
  color: var(--text-dark); margin-bottom: 1rem; line-height: 1.3;
}
.part-card p { font-size: .92rem; line-height: 1.85; color: var(--text-mid); }

/* ============================================================
   TESTIMONIAL
   ============================================================ */
.s-testimonial { background: var(--walnut); padding: 6rem 0; }
.testimonial-inner {
  max-width: 740px; margin: 0 auto; text-align: center;
}
.testimonial-q {
  font-family: var(--font-d); font-size: clamp(1.15rem, 2.4vw, 1.75rem);
  font-style: italic; font-weight: 400; color: var(--text-light);
  line-height: 1.65; margin-bottom: 2.2rem;
}
.testimonial-quote-mark {
  font-family: var(--font-d); font-size: 5rem; color: var(--gold);
  opacity: .35; line-height: 0; display: block; margin-bottom: 1.5rem;
}
.testimonial-author {
  font-size: .65rem; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold);
}
.testimonial-role { font-size: .78rem; color: var(--text-dim); margin-top: .3rem; }

/* ============================================================
   ARCHITECTES — PARTNERS
   ============================================================ */
.s-partners { background: var(--parchment); padding: 7rem 0; }
.partners-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 4rem; }
.partner-card {
  background: var(--chalk); padding: 3rem 2.6rem;
  transition: background .3s;
}
.partner-card:hover { background: var(--linen); }
.partner-card h3 {
  font-family: var(--font-d); font-size: 1.1rem; font-weight: 500;
  color: var(--text-dark); margin-bottom: .3rem; line-height: 1.3;
}
.partner-name {
  font-size: .72rem; font-weight: 600; letter-spacing: .1em; color: var(--gold);
  margin-bottom: 1.2rem; text-transform: uppercase;
}
.partner-card p { font-size: .88rem; line-height: 1.8; color: var(--text-mid); margin-bottom: 1.5rem; }
.partner-link {
  font-size: .65rem; font-weight: 600; letter-spacing: .15em;
  text-transform: uppercase; color: var(--gold); border-bottom: 1px solid rgba(191,154,84,.3);
  padding-bottom: 2px; transition: border-color .25s;
}
.partner-link:hover { border-color: var(--gold); }

/* Statement block */
.s-statement { background: var(--ink); padding: 6rem 0; text-align: center; }
.statement-rule { width: 48px; height: 1px; background: var(--gold); margin: 0 auto 3rem; }
.statement-body {
  font-family: var(--font-d); font-size: clamp(1.3rem, 2.6vw, 2.2rem);
  font-style: italic; font-weight: 400; color: var(--text-light);
  line-height: 1.6; max-width: 820px; margin: 0 auto 3rem;
}

/* ============================================================
   GALERIE PAGE
   ============================================================ */
.s-galerie { background: var(--ink); padding: 5rem 0 7rem; }
.galerie-section-title {
  font-family: var(--font-d); font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 400; font-style: italic; color: var(--gold-lt);
  margin-bottom: 2.5rem; padding-bottom: 1rem;
  border-bottom: 1px solid rgba(191,154,84,.2);
}
.galerie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px; margin-bottom: 5rem;
}
.galerie-item {
  position: relative; overflow: hidden; aspect-ratio: 4/3; cursor: pointer;
  background: var(--char);
}
.galerie-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--ease), filter .7s;
}
.galerie-item:hover img { transform: scale(1.06); filter: brightness(.85); }
.galerie-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,10,7,.75) 0%, transparent 50%);
  opacity: 0; transition: opacity .4s; display: flex; align-items: flex-end; padding: 1.5rem;
}
.galerie-item:hover .galerie-item-overlay { opacity: 1; }
.galerie-item-label {
  font-size: .6rem; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold);
}
.galerie-placeholder {
  aspect-ratio: 4/3; background: var(--char);
  border: 1px dashed rgba(191,154,84,.2);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: .8rem;
}
.galerie-placeholder span {
  font-size: .65rem; letter-spacing: .15em; text-transform: uppercase;
  color: rgba(191,154,84,.35); text-align: center; padding: 0 1rem;
}

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(12,10,7,.97); align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 92vw; max-height: 88vh; object-fit: contain;
  animation: fadeIn .3s ease;
}
.lightbox-close {
  position: absolute; top: 2rem; right: 2rem;
  width: 44px; height: 44px; cursor: pointer; display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(191,154,84,.3); color: var(--gold); font-size: 1.4rem;
  background: none; transition: background .2s;
}
.lightbox-close:hover { background: rgba(191,154,84,.15); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; cursor: pointer; display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(191,154,84,.3); color: var(--gold); font-size: 1.3rem;
  background: none; transition: background .2s;
}
.lightbox-nav:hover { background: rgba(191,154,84,.15); }
.lightbox-prev { left: 2rem; }
.lightbox-next { right: 2rem; }

/* ============================================================
   PROJETS PAGE
   ============================================================ */
.s-projets { background: var(--ink); padding: 5rem 0 7rem; }
.projet-entry {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: start; padding: 5rem 0;
  border-bottom: 1px solid rgba(191,154,84,.1);
}
.projet-entry:first-child { padding-top: 2rem; }
.projet-entry:last-child { border-bottom: none; }
.projet-entry.reverse { direction: rtl; }
.projet-entry.reverse > * { direction: ltr; }
.projet-img {
  position: relative; overflow: hidden;
  aspect-ratio: 4/3;
}
.projet-img.is-portrait { aspect-ratio: 3/4; max-width: 62%; margin: 0 auto; }
@media (max-width: 860px) {
  .projet-img.is-portrait { max-width: 75%; }
}
.projet-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
}
.projet-entry:hover .projet-img img { transform: scale(1.04); }
.projet-tag {
  position: absolute; top: 1.5rem; left: 1.5rem;
  font-size: .58rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink); background: var(--gold); padding: .3rem .9rem;
}
.projet-tags-multi {
  position: absolute; top: 1.5rem; left: 1.5rem; z-index: 2;
  display: flex; flex-direction: column; align-items: flex-start; gap: .5rem;
}
.projet-tags-multi .projet-tag { position: static; top: auto; left: auto; }
.projet-body { display: flex; flex-direction: column; justify-content: center; gap: 1.2rem; }
.projet-body .eyebrow { margin-bottom: .4rem; }
.projet-body h2 {
  font-family: var(--font-d); font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 500; color: var(--chalk); line-height: 1.2;
}
.projet-body p { font-size: .93rem; line-height: 1.85; color: var(--text-dim); }
.projet-link {
  font-size: .65rem; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold);
  border-bottom: 1px solid rgba(191,154,84,.3); padding-bottom: 2px;
  width: fit-content; transition: border-color .25s;
}
.projet-link:hover { border-color: var(--gold); }

/* ============================================================
   À PROPOS
   ============================================================ */
.s-about { background: var(--parchment); padding: 7rem 0; }
.about-grid { display: grid; grid-template-columns: 1fr auto; gap: 5rem; align-items: start; }
.about-img { position: sticky; top: 120px; }
.about-img img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.about-body .eyebrow { margin-bottom: 1.4rem; }
.about-body h2 {
  font-family: var(--font-d); font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 500; color: var(--text-dark); margin-bottom: 2rem; line-height: 1.2;
}
.about-body p {
  font-size: 1rem; line-height: 1.9; color: var(--text-mid); margin-bottom: 1.3rem;
}
.about-body p strong { color: var(--text-dark); font-weight: 600; }
.team-grid { display: grid; grid-template-columns: auto 1fr; gap: 5rem; align-items: start; }
.team-img { position: sticky; top: 120px; max-width: 420px; }
.team-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.team-img-placeholder {
  width: 420px; aspect-ratio: 4/3; background: rgba(191,154,84,.07);
  border: 1.5px dashed rgba(191,154,84,.35); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: .8rem; color: var(--gold); opacity: .7;
}
.team-img-placeholder svg { width: 36px; height: 36px; stroke: var(--gold); }
.team-img-placeholder span { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; }
.about-values { margin-top: 3rem; border-top: 1px solid rgba(191,154,84,.2); padding-top: 3rem; }
.about-values h3 {
  font-family: var(--font-d); font-size: 1.1rem; font-weight: 500;
  color: var(--text-dark); margin-bottom: 1.8rem;
}
.values-list { display: flex; flex-direction: column; gap: 1.2rem; }
.value-item { display: flex; align-items: flex-start; gap: 1.2rem; }
.value-bar { width: 28px; height: 1px; background: var(--gold); margin-top: .8rem; flex-shrink: 0; }
.value-text { font-size: .9rem; line-height: 1.7; color: var(--text-mid); }
.value-text strong { color: var(--text-dark); font-weight: 600; display: block; margin-bottom: .2rem; }

.s-compagnons { background: var(--walnut); padding: 5rem 0; }
.compagnons-inner {
  display: flex; align-items: center; gap: 4rem; flex-wrap: wrap;
}
.compagnons-logo { flex-shrink: 0; }
.compagnons-logo img { height: 64px; width: auto; opacity: .9; }
.compagnons-text h3 {
  font-family: var(--font-d); font-size: 1.1rem; font-weight: 500;
  color: var(--chalk); margin-bottom: .8rem;
}
.compagnons-text p { font-size: .9rem; line-height: 1.75; color: var(--text-dim); max-width: 580px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.s-contact { background: var(--parchment); padding: 7rem 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 6rem; }
.contact-info .eyebrow { margin-bottom: 1.4rem; }
.contact-info h2 {
  font-family: var(--font-d); font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400; color: var(--text-dark); margin-bottom: 2rem; line-height: 1.25;
}
.contact-info p { font-size: .95rem; line-height: 1.85; color: var(--text-mid); margin-bottom: 2.5rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.6rem; margin-bottom: 2.5rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 1.2rem; }
.contact-detail-icon {
  width: 40px; height: 40px; border: 1px solid rgba(191,154,84,.3);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  color: var(--gold);
}
.contact-detail-icon svg { width: 17px; height: 17px; stroke: currentColor; fill: none; }
.contact-detail-body { }
.contact-detail-label {
  font-size: .6rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--text-mid); margin-bottom: .3rem;
}
.contact-detail-val {
  font-size: .95rem; color: var(--text-dark); font-weight: 500;
}
.contact-detail-val a { color: var(--text-dark); transition: color .2s; }
.contact-detail-val a:hover { color: var(--gold); }

/* Contact form */
.contact-form form { display: flex; flex-direction: column; gap: 1.4rem; }
.form-group { display: flex; flex-direction: column; gap: .5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.form-group label {
  font-size: .62rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase;
  color: var(--text-mid);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-b); font-size: .92rem; color: var(--text-dark);
  background: white; border: 1px solid rgba(42,32,24,.2); padding: .85rem 1rem;
  transition: border-color .25s; outline: none; -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { min-height: 150px; resize: vertical; }
.form-note {
  font-size: .75rem; color: var(--text-mid); line-height: 1.6;
}
.form-submit { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.form-success {
  display: none; padding: 1rem 1.5rem;
  background: rgba(191,154,84,.1); border: 1px solid rgba(191,154,84,.3);
  color: var(--text-dark); font-size: .88rem; line-height: 1.6;
}
.form-success.show { display: block; }

/* ============================================================
   SECTION ACTA (sub-pages CTA)
   ============================================================ */
.s-acta {
  background: var(--ink); padding: 6rem 0; text-align: center;
  border-top: 1px solid rgba(191,154,84,.15);
}
.s-acta .eyebrow { display: block; margin-bottom: 1.5rem; }
.s-acta h2 {
  font-family: var(--font-d); font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 400; font-style: italic; color: var(--chalk);
  line-height: 1.35; margin-bottom: 2.5rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--walnut); padding: 5rem 0 2.5rem;
  border-top: 1px solid rgba(191,154,84,.12);
}
.footer-grid {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 4rem; margin-bottom: 4rem;
}
.footer-brand .footer-logo svg, .footer-brand .footer-logo img { height: 60px; width: auto; margin-bottom: 1.5rem; }
.footer-brand p {
  font-size: .84rem; line-height: 1.8; color: var(--text-dim); max-width: 260px; margin-bottom: 1.2rem;
}
.certif-badges { display: flex; gap: 1.2rem; margin-top: 2rem; flex-wrap: wrap; }
.certif-badge  { height: 100px; width: auto; opacity: .92; }
.footer-social { display: flex; gap: .8rem; }
.footer-social a {
  width: 36px; height: 36px; border: 1px solid rgba(191,154,84,.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim); transition: color .2s, border-color .2s;
}
.footer-social a:hover { color: var(--gold); border-color: var(--gold); }
.footer-social a svg { width: 15px; height: 15px; stroke: currentColor; fill: none; }

.footer-col h4 {
  font-size: .62rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.6rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .7rem; }
.footer-col ul a {
  font-size: .84rem; color: var(--text-dim); transition: color .2s;
}
.footer-col ul a:hover { color: var(--text-light); }
.footer-col p { font-size: .84rem; color: var(--text-dim); line-height: 1.75; }
.footer-col a.footer-contact-link {
  font-size: .84rem; color: var(--text-dim); display: block; margin-bottom: .5rem;
  transition: color .2s;
}
.footer-col a.footer-contact-link:hover { color: var(--gold); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  padding-top: 2rem; border-top: 1px solid rgba(191,154,84,.1);
}
.footer-copy { font-size: .75rem; color: var(--text-dim); }
.footer-legal { display: flex; gap: 1.8rem; flex-wrap: wrap; }
.footer-legal a { font-size: .72rem; color: var(--text-dim); transition: color .2s; }
.footer-legal a:hover { color: var(--text-light); }

/* ============================================================
   LANGUAGE SWITCHER
   ============================================================ */

/* Visibility rules — set on <html lang="fr|nl"> */
html[lang="fr"] .t-nl,
html[lang="nl"] .t-fr { display: none !important; }

/* Switcher widget */
.nav-end {
  display: flex; align-items: center; gap: 1rem;
}
.lang-switcher {
  display: flex; align-items: center; gap: .35rem;
}
.lang-switcher > span {
  color: rgba(191,154,84,.3); font-size: .6rem; user-select: none;
}
.lang-btn {
  background: none; border: none; cursor: pointer;
  font-family: var(--font-b); font-size: .62rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-dim); padding: .25rem .15rem;
  transition: color .2s; line-height: 1;
}
.lang-btn:hover { color: var(--gold-lt); }
.lang-btn.active { color: var(--gold); }

/* Mobile lang switcher inside nav panel */
.nav-mobile .lang-switcher {
  padding: 1rem 0 .5rem; border-top: 1px solid rgba(191,154,84,.12);
  margin-top: .5rem;
}
.nav-mobile .lang-btn { font-size: .75rem; padding: .3rem .2rem; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeIn { to { opacity: 1; } }
@keyframes pulse  { 0%,100% { opacity:.35; } 50% { opacity:1; } }

/* Scroll-reveal */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .mission-grid     { grid-template-columns: 1fr; gap: 3.5rem; }
  .mission-sticky   { position: static; }
  .gallery-grid     { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-grid .gal-item:first-child { grid-column: 1 / -1; height: 380px; }
  .gallery-grid .gal-item:nth-child(2) { height: 260px; }
  .gallery-grid .gal-cta { height: 260px; }
  .project-entry    { grid-template-columns: 1fr; }
  .intro-cols       { grid-template-columns: 1fr; }
  .about-grid       { grid-template-columns: 1fr; }
  .about-img        { position: static; }
  .contact-grid     { grid-template-columns: 1fr; }
  .footer-grid      { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .wrap { padding: 0 1.5rem; }
  .nav-inner { grid-template-columns: auto 1fr; }
  .nav-inner > nav { display: none; }        /* masque les liens desktop pour ne garder qu'une seule ligne */
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-end { justify-content: flex-end; }     /* langue + burger alignés à droite, au niveau du logo */
  .svc-grid    { grid-template-columns: 1fr; }
  .svc-card    { border-right: none; border-bottom: 1px solid rgba(191,154,84,.15); }
  .svc-card:last-child { border-bottom: none; }
  .pillars-grid { grid-template-columns: 1fr; }
  .part-grid   { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: 1fr; }
  .galerie-grid  { grid-template-columns: 1fr 1fr; }
  .projet-entry  { grid-template-columns: 1fr; gap: 2rem; direction: ltr !important; }
  .projet-entry.reverse > * { direction: ltr; }
  .gallery-grid  { grid-template-columns: 1fr; }
  .gallery-grid .gal-item:first-child { height: 280px; }
  .gallery-grid .gal-item:nth-child(2) { height: 200px; }
  .gallery-grid .gal-cta { height: 200px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .certif-row { gap: 1.5rem; }
  /* Hero de sous-page plus compact sur mobile (moins d'image vide au-dessus du titre) */
  .hero-sub { min-height: 42vh; }
  .hero-sub .hero-content { padding: 3rem 1.5rem 3rem; }
  /* Accueil : le hero épouse la hauteur du contenu (logo → CTA) ; la vidéo (cover) remplit ce bloc, quitte à rogner les bords horizontaux — plus de bandes noires au-dessus/en dessous */
  .hero:not(.hero-sub) { min-height: auto; }
  .hero:not(.hero-sub) .hero-scroll { display: none; }
}

@media (max-width: 480px) {
  .galerie-grid { grid-template-columns: 1fr; }
  .hero-sub { min-height: 38vh; }
  .hero-sub .hero-content { padding: 2.5rem 1.25rem 2.75rem; }
  .s-header { margin-bottom: 3rem; }
}
