/* ============================================================
   FACINPRIMEUR — Design System
   Maison française de stands d'exception
   ============================================================ */

/* === 1. CSS CUSTOM PROPERTIES === */
:root {
  --noir:        #0A0A0A;
  --ivoire:      #FFFFFF;
  --or:          #C9A961;
  --or-rose:     #B76E79;
  --creme:       #FAF8F5;
  --encre:       #14110F;
  --anthracite:  #1A1A1A;
  --gris:        #6B6B6B;
  --or-pale:     #D4C9A8;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-sub:     'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --container-max: 1440px;
  --container-pad: 80px;
  --section-pad:   120px;

  --transition:       0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast:  0.2s ease;
  --transition-slow:  0.8s ease-out;
}

/* === 2. RESET & BASE === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--anthracite);
  background-color: var(--creme);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  cursor: none;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { font-family: var(--font-body); }
input, select, textarea { font-family: var(--font-body); }
ul, ol { list-style: none; }

/* === 3. TYPOGRAPHY === */
h1 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.01em;
}
h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.14;
}
h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.2;
}
h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
}
p { line-height: 1.75; }

.subtitle {
  font-family: var(--font-sub);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(17px, 1.8vw, 24px);
  line-height: 1.5;
  color: var(--gris);
}

.section-number {
  display: block;
  font-family: var(--font-sub);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.25em;
  color: var(--or);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 12px;
}

.required-mark { color: var(--or); }

/* === 4. LAYOUT === */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section {
  padding: var(--section-pad) 0;
}

.section-creme  { background: var(--creme); }
.section-white  { background: #FFFFFF; }
.section-dark   { background: var(--encre); color: var(--ivoire); }
.section-noir   { background: var(--noir); color: var(--ivoire); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }

.text-center { text-align: center; }
.text-or     { color: var(--or); }
.text-gris   { color: var(--gris); }

/* Section header */
.section-header { margin-bottom: 64px; }
.section-header .subtitle { margin-top: 16px; max-width: 600px; }

/* Gold horizontal rule */
.gold-rule {
  height: 1px;
  background: var(--or-pale);
  width: 0;
  margin-top: 28px;
  transition: width 1.2s ease-out;
}
.gold-rule.drawn { width: 100%; }
.gold-rule-sm { max-width: 80px; }
.gold-rule-center { margin-left: auto; margin-right: auto; }

/* === 5. SKIP LINK === */
.skip-link {
  position: absolute;
  top: -100px;
  left: 24px;
  z-index: 10000;
  background: var(--or);
  color: var(--noir);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 20px;
  letter-spacing: 0.05em;
  transition: top 0.2s;
}
.skip-link:focus { top: 24px; }

/* === 6. CUSTOM CURSOR === */
.cursor {
  position: fixed;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--or);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--transition),
              height 0.25s var(--transition),
              opacity 0.25s ease;
  mix-blend-mode: difference;
  will-change: transform;
}
.cursor.large { width: 36px; height: 36px; }
.cursor.hidden { opacity: 0; }

/* === 7. HEADER & NAV === */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 28px 0;
  transition: background var(--transition), padding var(--transition);
}

.site-header.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 16px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo-block { text-decoration: none; flex-shrink: 0; }
.logo-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.28em;
  color: var(--ivoire);
  display: block;
  text-transform: uppercase;
  line-height: 1;
}
.logo-tagline {
  font-family: var(--font-sub);
  font-style: italic;
  font-size: 10.5px;
  color: rgba(212, 201, 168, 0.7);
  display: block;
  letter-spacing: 0.06em;
  margin-top: 5px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.main-nav a {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  position: relative;
  transition: color var(--transition-fast);
  white-space: nowrap;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--or);
  transition: width var(--transition);
}
.main-nav a:hover,
.main-nav a.active { color: var(--or); }
.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }

.header-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
  flex-shrink: 0;
  transition: color var(--transition-fast);
}
.header-phone:hover { color: var(--or); }
.header-phone i { font-size: 15px; }

.header-rule {
  position: absolute;
  bottom: 0; left: 0;
  height: 1px;
  background: rgba(201, 169, 97, 0.35);
  width: 0;
  transition: width 1s ease-out;
}
.site-header.scrolled .header-rule { width: 100%; }

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--ivoire);
  cursor: none;
  padding: 6px;
  font-size: 26px;
}

/* Mobile drawer */
.mobile-nav {
  position: fixed;
  top: 0; right: -100%;
  width: min(420px, 100%);
  height: 100vh;
  background: var(--encre);
  z-index: 998;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 48px 48px;
  transition: right 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow-y: auto;
}
.mobile-nav.open { right: 0; }

.mobile-nav-close {
  position: absolute;
  top: 24px; right: 20px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  cursor: none;
  font-size: 28px;
  transition: color var(--transition-fast);
}
.mobile-nav-close:hover { color: var(--or); }

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid rgba(201,169,97,0.12);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}
.mobile-nav-link:first-of-type { border-top: 1px solid rgba(201,169,97,0.12); }
.mobile-nav-link:hover { color: var(--or); padding-left: 12px; }

.mobile-nav-footer {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(201,169,97,0.2);
}
.mobile-nav-footer p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
}
.mobile-nav-footer a {
  font-size: 13px;
  color: var(--or-pale);
  transition: color var(--transition-fast);
}
.mobile-nav-footer a:hover { color: var(--or); }

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 997;
  display: none;
}
.nav-overlay.open { display: block; }

/* === 8. HERO (homepage, full-screen) === */
.hero-home {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--encre);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(1) contrast(1.05);
  transform: scale(1.03);
  transition: transform 8s ease;
}
.hero-home.loaded .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.44);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}
.hero-content .section-number { color: var(--or); }
.hero-content h1 { color: var(--ivoire); margin-bottom: 24px; }
.hero-content .subtitle { color: rgba(255,255,255,0.82); max-width: 580px; margin-bottom: 52px; }

.cta-group {
  display: flex;
  align-items: center;
  gap: 44px;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 1;
}
.scroll-line {
  width: 1px;
  height: 52px;
  background: var(--or);
  animation: scrollAnim 2.4s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollAnim {
  0%   { transform: scaleY(0); opacity: 0; }
  30%  { opacity: 1; }
  70%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}
.scroll-text {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

/* === 9. PAGE HERO (interior pages) === */
.page-hero {
  position: relative;
  height: 58vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 72px;
  overflow: hidden;
  background: var(--encre);
}
.page-hero .hero-bg { filter: grayscale(1) brightness(0.85); }
.page-hero .hero-overlay { background: rgba(0,0,0,0.52); }
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--ivoire); }
.page-hero .subtitle {
  color: rgba(255,255,255,0.65);
  margin-top: 18px;
  font-size: clamp(15px, 1.6vw, 20px);
}

/* === 10. BUTTONS & LINKS === */
.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  border: 1px solid var(--or);
  color: var(--or);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: transparent;
  cursor: none;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn-outline-gold:hover { background: var(--or); color: var(--noir); }

.btn-solid-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 36px;
  background: var(--noir);
  color: var(--ivoire);
  border: 1px solid var(--noir);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  width: 100%;
}
.btn-solid-dark:hover { background: var(--or); color: var(--noir); border-color: var(--or); }

.link-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--or);
  border-bottom: 1px solid rgba(201, 169, 97, 0.35);
  padding-bottom: 3px;
  transition: border-color var(--transition-fast), gap var(--transition-fast);
}
.link-gold:hover { border-color: var(--or); gap: 12px; }

.link-underline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--anthracite);
  border-bottom: 1px solid var(--or-pale);
  padding-bottom: 2px;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}
.link-underline:hover { color: var(--or); border-color: var(--or); }

/* === 11. LEAD FORM SECTION === */
.lead-form-section {
  position: relative;
  background: var(--creme);
  overflow: hidden;
}
.lead-form-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  background-size: 300px;
  pointer-events: none;
  opacity: 0.6;
}

.form-header { max-width: 600px; margin-bottom: 56px; }
.form-header h2 { margin-bottom: 12px; }

.form-box {
  border: 1px solid var(--or-pale);
  padding: 56px 60px;
  background: rgba(255, 255, 255, 0.55);
  position: relative;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 52px;
}
.form-full { grid-column: 1 / -1; }

.form-group { position: relative; }

.form-group label {
  display: block;
  font-family: var(--font-sub);
  font-style: italic;
  font-size: 12.5px;
  color: var(--gris);
  margin-bottom: 9px;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--or-pale);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--anthracite);
  padding: 10px 0;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.25s ease;
  border-radius: 0;
}
.form-group select {
  cursor: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23C9A961'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  padding-right: 20px;
}
.form-group textarea {
  resize: vertical;
  min-height: 90px;
  line-height: 1.65;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: transparent; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-bottom-color: var(--or); }
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea { border-bottom-color: #b03030; }

.form-error {
  font-family: var(--font-sub);
  font-style: italic;
  font-size: 11.5px;
  color: #b03030;
  margin-top: 5px;
  display: none;
}
.form-group.has-error .form-error { display: block; }

.checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.checkbox-wrap input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  border: 1px solid var(--or-pale);
  background: transparent;
  margin-top: 1px;
  accent-color: var(--or);
  cursor: none;
}
.checkbox-wrap label {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 12px;
  color: var(--gris);
  line-height: 1.65;
  cursor: none;
}
.checkbox-wrap label a { color: var(--or); border-bottom: 1px solid rgba(201,169,97,0.3); }
.checkbox-wrap label a:hover { border-color: var(--or); }

.form-submit { margin-top: 44px; }

.form-notice {
  margin-top: 14px;
  font-family: var(--font-sub);
  font-style: italic;
  font-size: 11.5px;
  color: var(--gris);
  text-align: center;
  letter-spacing: 0.02em;
}

.form-alert {
  padding: 20px 28px;
  border: 1px solid;
  font-family: var(--font-sub);
  font-style: italic;
  font-size: 16px;
  margin-bottom: 36px;
  display: none;
}
.form-alert.success { border-color: var(--or); color: var(--or); background: rgba(201,169,97,0.06); }
.form-alert.error   { border-color: #b03030; color: #b03030; background: rgba(176,48,48,0.05); }
.form-alert.visible { display: block; }

/* === 12. MANIFESTE SECTION (homepage) === */
.manifeste-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.manifeste-text { padding-right: 20px; }
.manifeste-text .section-number { margin-bottom: 20px; }
.manifeste-text p {
  font-size: 15px;
  color: var(--gris);
  line-height: 1.9;
  margin-bottom: 18px;
}
.manifeste-text p.lead {
  font-size: 17px;
  color: var(--anthracite);
  font-weight: 300;
  line-height: 1.8;
}
.manifeste-text .link-gold { margin-top: 20px; }

.manifeste-figure {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.manifeste-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: transform 0.6s ease;
}
.manifeste-figure:hover img { transform: scale(1.03); }
.manifeste-figure::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(201, 169, 97, 0.28);
  z-index: 1;
  pointer-events: none;
  transition: inset 0.4s ease;
}
.manifeste-figure:hover::before { inset: 10px; }

/* === 13. MÉTIERS CARDS === */
.metiers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--or-pale);
  margin-top: 56px;
}
.metier-card {
  padding: 52px 40px;
  border-right: 1px solid var(--or-pale);
  transition: background var(--transition-fast);
}
.metier-card:last-child { border-right: none; }
.metier-card:hover { background: rgba(201, 169, 97, 0.03); }

.metier-icon {
  font-size: 34px;
  color: var(--or);
  margin-bottom: 24px;
  display: block;
}
.metier-card h3 {
  font-size: 19px;
  margin-bottom: 14px;
}
.metier-card p {
  font-size: 13.5px;
  color: var(--gris);
  line-height: 1.78;
  margin-bottom: 28px;
}

/* === 14. PORTFOLIO GRID (homepage 6 items) === */
.portfolio-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-top: 56px;
}
.portfolio-mosaic .proj-card:nth-child(1) { grid-row: span 2; }
.portfolio-mosaic .proj-card:nth-child(4) { grid-row: span 2; }

.proj-card {
  position: relative;
  overflow: hidden;
  cursor: none;
  background: var(--encre);
  min-height: 280px;
}
.proj-card-img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  filter: grayscale(0.2);
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.45s ease;
  display: block;
}
.proj-card:hover .proj-card-img { transform: scale(1.06); filter: grayscale(0.7); }

.proj-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 28px;
  transition: background 0.45s ease;
}
.proj-card:hover .proj-card-overlay { background: rgba(0, 0, 0, 0.74); }

.proj-card-info {
  transform: translateY(18px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.proj-card:hover .proj-card-info { transform: translateY(0); opacity: 1; }

.proj-card-client {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--ivoire);
  margin-bottom: 5px;
}
.proj-card-meta {
  font-family: var(--font-sub);
  font-style: italic;
  font-size: 12.5px;
  color: var(--or-pale);
  letter-spacing: 0.04em;
}

/* === 15. PROCESS TIMELINE (homepage) === */
.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 64px;
  padding-top: 24px;
}
.process-timeline::before {
  content: '';
  position: absolute;
  top: 29px; left: 6px; right: 6px;
  height: 1px;
  background: var(--or-pale);
}

.timeline-step { padding-right: 24px; }
.timeline-step:last-child { padding-right: 0; }

.timeline-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--or);
  background: var(--creme);
  position: relative;
  z-index: 1;
  margin-bottom: 28px;
  transition: background var(--transition-fast);
}
.timeline-step:hover .timeline-dot { background: var(--or); }

.section-dark .timeline-dot { background: var(--encre); }
.section-dark .timeline-step:hover .timeline-dot { background: var(--or); }

.step-number {
  font-family: var(--font-sub);
  font-style: italic;
  font-size: 11px;
  color: var(--or);
  letter-spacing: 0.18em;
  display: block;
  margin-bottom: 8px;
}
.timeline-step h4 {
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 6px;
}
.timeline-step .duration {
  font-family: var(--font-sub);
  font-style: italic;
  font-size: 11.5px;
  color: var(--or);
  display: block;
  margin-bottom: 10px;
}
.timeline-step p {
  font-size: 12px;
  color: var(--gris);
  line-height: 1.65;
}
.section-dark .timeline-step p { color: rgba(212, 201, 168, 0.7); }
.section-dark .timeline-step h4 { color: var(--ivoire); }

/* === 16. TESTIMONIALS === */
.testimonials-section { position: relative; }

.carousel-container {
  max-width: 860px;
  margin: 0 auto;
}
.carousel-track {
  position: relative;
  min-height: 320px;
}
.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 40px;
}
.carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

.quote-icon {
  font-family: var(--font-heading);
  font-size: 130px;
  line-height: 0.8;
  color: var(--or);
  opacity: 0.18;
  margin-bottom: -30px;
  display: block;
  user-select: none;
}
.testimonial-body {
  font-family: var(--font-sub);
  font-style: italic;
  font-size: clamp(16px, 1.8vw, 21px);
  line-height: 1.7;
  color: var(--anthracite);
  margin-bottom: 36px;
}
.testimonial-sig { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.sig-initials {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.sig-role {
  font-family: var(--font-sub);
  font-style: italic;
  font-size: 13.5px;
  color: var(--gris);
}
.sig-sep {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--or-pale);
  margin: 10px auto;
}

.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 48px;
}
.carousel-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--or-pale);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  color: var(--or);
  font-size: 20px;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}
.carousel-btn:hover { border-color: var(--or); background: rgba(201,169,97,0.08); }

.carousel-dots { display: flex; gap: 10px; align-items: center; }
.carousel-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--or-pale);
  cursor: none;
  transition: background var(--transition-fast), transform var(--transition-fast);
  border: none;
  padding: 0;
}
.carousel-dot.active { background: var(--or); transform: scale(1.5); }

/* === 17. STATS BAND === */
.stats-band {
  background: var(--noir);
  padding: 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 80px 40px;
  text-align: center;
  border-right: 1px solid rgba(201, 169, 97, 0.15);
  transition: background var(--transition-fast);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(201, 169, 97, 0.04); }
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 700;
  color: var(--or);
  display: block;
  line-height: 1;
  margin-bottom: 14px;
}
.stat-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(212, 201, 168, 0.6);
  font-weight: 400;
}

/* === 18. FOOTER === */
.site-footer {
  background: var(--encre);
  color: var(--ivoire);
  padding-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
}
.footer-logo-name {
  font-family: var(--font-heading);
  font-size: 16px;
  letter-spacing: 0.24em;
  color: var(--ivoire);
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
  line-height: 1;
}
.footer-tagline {
  font-family: var(--font-sub);
  font-style: italic;
  font-size: 11.5px;
  color: var(--or-pale);
  opacity: 0.7;
  display: block;
  margin-bottom: 22px;
}
.footer-addr {
  font-size: 12.5px;
  color: rgba(255,255,255,0.38);
  line-height: 1.8;
}

.footer-col-label {
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--or);
  font-weight: 500;
  display: block;
  margin-bottom: 22px;
}
.footer-links li { margin-bottom: 11px; }
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition-fast);
  letter-spacing: 0.01em;
}
.footer-links a:hover { color: rgba(255,255,255,0.9); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-bottom: 18px;
  font-size: 12.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.45);
}
.footer-contact-item i {
  font-size: 16px;
  color: var(--or);
  flex-shrink: 0;
  margin-top: 1px;
}
.footer-contact-item a { color: rgba(255,255,255,0.65); transition: color var(--transition-fast); }
.footer-contact-item a:hover { color: var(--or); }

.footer-bottom {
  border-top: 1px solid rgba(201, 169, 97, 0.15);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-legal { display: flex; gap: 24px; align-items: center; }
.footer-legal a {
  font-size: 10.5px;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.05em;
  transition: color var(--transition-fast);
}
.footer-legal a:hover { color: rgba(255,255,255,0.55); }
.footer-legal-sep {
  display: inline-block;
  width: 1px;
  height: 10px;
  background: rgba(255,255,255,0.15);
}
.footer-copy {
  font-size: 10.5px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.04em;
}

/* === 19. ANIMATIONS === */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.82s ease-out, transform 0.82s ease-out;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }

/* Roman numeral pulse */
.section-number.pulse {
  animation: numPulse 0.8s ease-out;
}
@keyframes numPulse {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.06); color: var(--or); }
  100% { transform: scale(1); }
}

/* === 20. MAISON PAGE === */
.history-wrap {
  position: relative;
  padding-left: 160px;
  max-width: 860px;
}
.history-wrap::before {
  content: '';
  position: absolute;
  left: 116px; top: 0; bottom: 0;
  width: 1px;
  background: var(--or-pale);
}
.history-item {
  position: relative;
  margin-bottom: 72px;
}
.history-item:last-child { margin-bottom: 0; }
.history-year {
  position: absolute;
  left: -160px;
  top: 0;
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 700;
  color: var(--or);
  opacity: 0.22;
  width: 110px;
  text-align: right;
  line-height: 1;
}
.history-dot {
  position: absolute;
  left: -48px;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--or);
  background: var(--creme);
}
.history-item h3 { font-size: 22px; margin-bottom: 14px; }
.history-item p { font-size: 15px; color: var(--gris); line-height: 1.82; }

.manifeste-body {
  column-count: 2;
  column-gap: 60px;
  column-rule: 1px solid var(--or-pale);
}
.manifeste-body p {
  font-size: 15px;
  color: var(--gris);
  line-height: 1.9;
  margin-bottom: 18px;
  break-inside: avoid;
}
.manifeste-body p.lead {
  font-size: 17px;
  color: var(--anthracite);
  font-weight: 300;
}

.atelier-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  margin-top: 52px;
}
.atelier-figure {
  position: relative;
  overflow: hidden;
}
.atelier-figure img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: grayscale(1);
  display: block;
  transition: transform 0.5s ease;
}
.atelier-figure:hover img { transform: scale(1.04); }
.atelier-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 20px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.68));
  font-family: var(--font-sub);
  font-style: italic;
  font-size: 12.5px;
  color: rgba(255,255,255,0.82);
}

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 52px; }
.team-card {}
.team-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: grayscale(1);
  display: block;
  margin-bottom: 20px;
  transition: filter 0.4s ease;
}
.team-card:hover .team-photo { filter: grayscale(0.5); }
.team-name {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 4px;
}
.team-role {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 14px;
  display: block;
}
.team-quote {
  font-family: var(--font-sub);
  font-style: italic;
  font-size: 13px;
  color: var(--gris);
  line-height: 1.7;
  border-left: 2px solid var(--or-pale);
  padding-left: 14px;
}

.rse-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.rse-card {
  padding: 40px 32px;
  border: 1px solid var(--or-pale);
  text-align: center;
  transition: border-color var(--transition-fast);
}
.rse-card:hover { border-color: var(--or); }
.rse-icon { font-size: 36px; color: var(--or); display: block; margin-bottom: 18px; }
.rse-card h4 { font-size: 15px; margin-bottom: 12px; }
.rse-card p { font-size: 13px; color: var(--gris); line-height: 1.72; }

.distinctions-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  align-items: center;
  margin-top: 44px;
}
.distinction-placeholder {
  height: 50px;
  border: 1px solid var(--or-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sub);
  font-style: italic;
  font-size: 10.5px;
  color: var(--gris);
  opacity: 0.5;
  letter-spacing: 0.04em;
  transition: opacity var(--transition-fast);
}
.distinction-placeholder:hover { opacity: 0.9; }

/* === 21. SAVOIR-FAIRE PAGE === */
.intro-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.service-block.reverse .service-img-wrap { order: 2; }
.service-block.reverse .service-content { order: 1; }

.service-img-wrap { overflow: hidden; position: relative; }
.service-img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  filter: grayscale(1);
  display: block;
  transition: transform 0.6s ease;
}
.service-img-wrap:hover .service-img { transform: scale(1.03); }

.service-content {
  padding: 80px 68px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--creme);
}
.section-white .service-content { background: #FFFFFF; }

.service-content h2 { margin-bottom: 22px; }
.service-content .body-text {
  font-size: 15px;
  color: var(--gris);
  line-height: 1.88;
  margin-bottom: 32px;
}
.service-list { margin-bottom: 32px; }
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--anthracite);
  padding: 9px 0;
  border-bottom: 1px solid rgba(212, 201, 168, 0.35);
  line-height: 1.5;
}
.service-list li:last-child { border-bottom: none; }
.service-list li i { font-size: 13px; color: var(--or); flex-shrink: 0; margin-top: 1px; }

.service-encadre {
  border-left: 3px solid var(--or);
  border: 1px solid var(--or-pale);
  border-left-width: 3px;
  padding: 18px 22px;
  background: rgba(201, 169, 97, 0.04);
}
.service-encadre p {
  font-family: var(--font-sub);
  font-style: italic;
  font-size: 13.5px;
  color: var(--anthracite);
  line-height: 1.62;
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  margin-top: 48px;
}
.material-card {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: none;
}
.material-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
  display: block;
}
.material-card:hover img { transform: scale(1.07); }
.material-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 14px 12px;
  background: linear-gradient(transparent, rgba(0,0,0,0.72));
  font-family: var(--font-sub);
  font-style: italic;
  font-size: 12.5px;
  color: var(--ivoire);
}

.techniques-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 36px;
  font-size: 13px;
}
.techniques-table thead th {
  padding: 14px 20px;
  text-align: left;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--or);
  font-weight: 500;
  font-family: var(--font-body);
  border-bottom: 1px solid var(--or-pale);
}
.techniques-table thead th:first-child { color: var(--gris); }
.techniques-table tbody tr { transition: background var(--transition-fast); }
.techniques-table tbody tr:hover { background: rgba(201,169,97,0.04); }
.techniques-table tbody td {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(212, 201, 168, 0.25);
  color: var(--gris);
  line-height: 1.5;
}
.techniques-table tbody td:first-child { font-weight: 500; color: var(--anthracite); font-size: 12px; letter-spacing: 0.05em; }

.guarantees-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.guarantee-card {
  padding: 36px 28px;
  border: 1px solid var(--or-pale);
  border-top: 2px solid var(--or);
}
.guarantee-card h4 { font-size: 15px; margin-bottom: 10px; }
.guarantee-card p { font-size: 13px; color: var(--gris); line-height: 1.7; }

/* === 22. REALISATIONS PAGE === */
.filter-bar {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--or-pale);
  margin-bottom: 52px;
}
.filter-btn {
  padding: 15px 28px;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gris);
  background: none;
  border: none;
  cursor: none;
  transition: color var(--transition-fast);
  position: relative;
  font-family: var(--font-body);
  font-weight: 500;
}
.filter-btn::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 1px;
  background: var(--or);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.filter-btn.active { color: var(--or); }
.filter-btn.active::after { transform: scaleX(1); }
.filter-btn:hover:not(.active) { color: var(--anthracite); }

.portfolio-grid-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.portfolio-card {
  position: relative;
  overflow: hidden;
  cursor: none;
  background: var(--encre);
}
.portfolio-card[style*="none"] { display: none; }
.portfolio-card.hidden { display: none; }
.portfolio-card-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  filter: grayscale(0.2);
  display: block;
  transition: transform 0.6s ease, filter 0.4s ease;
}
.portfolio-card:nth-child(3n+1) .portfolio-card-img { height: 360px; }
.portfolio-card:nth-child(3n+2) .portfolio-card-img { height: 260px; }
.portfolio-card:hover .portfolio-card-img { transform: scale(1.06); filter: grayscale(0.65); }

.portfolio-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
  transition: background 0.4s ease;
}
.portfolio-card:hover .portfolio-card-overlay { background: rgba(0,0,0,0.76); }
.portfolio-card-info {
  transform: translateY(16px);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.portfolio-card:hover .portfolio-card-info { transform: translateY(0); opacity: 1; }
.portfolio-card-client { font-family: var(--font-heading); font-size: 14px; font-weight: 600; color: var(--ivoire); }
.portfolio-card-meta { font-size: 11.5px; color: var(--or-pale); margin-top: 4px; font-family: var(--font-sub); font-style: italic; }
.portfolio-card-surface { font-size: 10.5px; color: rgba(255,255,255,0.45); margin-top: 6px; letter-spacing: 0.06em; }

/* Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.modal-backdrop.open { display: flex; }

.modal-box {
  background: var(--creme);
  max-width: 940px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}
.modal-close {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: flex-end;
  padding: 14px 16px;
  background: var(--creme);
  z-index: 1;
  border-bottom: 1px solid var(--or-pale);
}
.modal-close-btn {
  background: none;
  border: none;
  cursor: none;
  font-size: 22px;
  color: var(--gris);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-body);
  transition: color var(--transition-fast);
}
.modal-close-btn:hover { color: var(--anthracite); }
.modal-close-btn i { font-size: 18px; }

.modal-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3px;
  background: var(--encre);
}
.modal-gallery img { width: 100%; height: 250px; object-fit: cover; display: block; filter: grayscale(0.3); }
.modal-gallery img:first-child { height: 503px; }
.modal-gallery-right { display: flex; flex-direction: column; gap: 3px; }

.modal-body { padding: 44px 48px; }
.modal-body .modal-title { font-family: var(--font-heading); font-size: 26px; font-weight: 700; margin-bottom: 6px; }
.modal-body .modal-subtitle { font-family: var(--font-sub); font-style: italic; font-size: 15px; color: var(--gris); margin-bottom: 36px; }
.modal-section { margin-bottom: 28px; }
.modal-section h4 {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--or);
  font-weight: 500;
  margin-bottom: 12px;
  font-family: var(--font-body);
}
.modal-section p { font-size: 14px; color: var(--gris); line-height: 1.8; }
.modal-meta {
  display: flex;
  gap: 32px;
  padding: 24px 0;
  border-top: 1px solid var(--or-pale);
  border-bottom: 1px solid var(--or-pale);
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.modal-meta-item { }
.modal-meta-item .meta-label { font-size: 9.5px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--or); display: block; margin-bottom: 4px; }
.modal-meta-item .meta-value { font-family: var(--font-heading); font-size: 16px; font-weight: 600; }

.coulisses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  margin-top: 48px;
}
.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: none;
  background: var(--encre);
}
.video-thumb img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.5); display: block; transition: opacity 0.3s; }
.video-thumb:hover img { opacity: 0.6; }
.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-circle {
  width: 62px; height: 62px;
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ivoire);
  font-size: 26px;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}
.video-thumb:hover .play-circle { border-color: var(--or); background: rgba(201,169,97,0.15); color: var(--or); }
.video-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-family: var(--font-sub);
  font-style: italic;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

/* === 23. PROCESSUS PAGE === */
.process-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.process-block.reverse .process-img-wrap { order: 2; }
.process-block.reverse .process-content { order: 1; }
.process-img-wrap { overflow: hidden; }
.process-img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  filter: grayscale(1);
  display: block;
  transition: transform 0.6s ease;
}
.process-img-wrap:hover .process-img { transform: scale(1.03); }
.process-content { padding: 72px 68px; display: flex; flex-direction: column; justify-content: center; }
.process-numeral {
  font-family: var(--font-heading);
  font-size: 88px;
  font-weight: 900;
  color: var(--or);
  opacity: 0.08;
  line-height: 1;
  margin-bottom: -18px;
  display: block;
}
.process-title-group { margin-bottom: 4px; }
.process-content h2 { font-size: 28px; margin-bottom: 6px; }
.process-duration {
  font-family: var(--font-sub);
  font-style: italic;
  font-size: 14px;
  color: var(--or);
  margin-bottom: 24px;
  display: block;
}
.process-content .body-text { font-size: 14.5px; color: var(--gris); line-height: 1.88; margin-bottom: 28px; }
.deliverables { margin-bottom: 20px; }
.deliverables li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--anthracite);
  padding: 6px 0;
  border-bottom: 1px solid rgba(212,201,168,0.28);
}
.deliverables li:last-child { border-bottom: none; }
.deliverables li::before { content: '—'; color: var(--or); flex-shrink: 0; }
.process-interlocuteurs {
  font-size: 11.5px;
  color: var(--gris);
  font-style: italic;
  font-family: var(--font-sub);
}
.process-interlocuteurs strong { color: var(--anthracite); font-style: normal; font-family: var(--font-body); font-weight: 500; font-size: 11px; }

.gantt-wrap { overflow-x: auto; margin-top: 56px; }
.gantt {
  min-width: 900px;
  font-size: 12px;
}
.gantt-head {
  display: grid;
  grid-template-columns: 200px repeat(12, 1fr);
  border-bottom: 1px solid var(--or-pale);
  padding-bottom: 10px;
  margin-bottom: 12px;
}
.gantt-head-cell {
  font-size: 9.5px;
  letter-spacing: 0.1em;
  color: var(--gris);
  text-align: center;
  font-weight: 500;
}
.gantt-head-cell:first-child { text-align: left; color: var(--or); font-size: 9px; letter-spacing: 0.15em; text-transform: uppercase; }
.gantt-row {
  display: grid;
  grid-template-columns: 200px repeat(12, 1fr);
  align-items: center;
  margin-bottom: 10px;
}
.gantt-phase-label {
  font-size: 12px;
  color: var(--anthracite);
  font-weight: 500;
  padding-right: 12px;
}
.gantt-cell { height: 12px; }
.gantt-bar {
  height: 100%;
  background: var(--or);
  opacity: 0.75;
  border-radius: 1px;
}

.faq-list { max-width: 820px; }
details.faq-item {
  border-bottom: 1px solid var(--or-pale);
}
details.faq-item summary {
  padding: 22px 0;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  transition: color var(--transition-fast);
  gap: 20px;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: '+';
  color: var(--or);
  font-size: 26px;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
  font-family: var(--font-body);
}
details.faq-item[open] summary { color: var(--or); }
details.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer {
  padding: 2px 0 24px;
  font-size: 14.5px;
  color: var(--gris);
  line-height: 1.82;
  max-width: 700px;
}

/* === 24. CONTACT PAGE === */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: start;
}

.contact-info { padding-top: 20px; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 32px;
}
.contact-info-item i { font-size: 20px; color: var(--or); flex-shrink: 0; margin-top: 2px; }
.contact-info-label {
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--or);
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}
.contact-info-value {
  font-size: 14px;
  color: var(--anthracite);
  line-height: 1.65;
}
.contact-info-value a {
  border-bottom: 1px solid var(--or-pale);
  transition: color var(--transition-fast), border-color var(--transition-fast);
}
.contact-info-value a:hover { color: var(--or); border-color: var(--or); }

.map-block {
  width: 100%;
  height: 260px;
  background: var(--anthracite);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 36px;
  position: relative;
  overflow: hidden;
  filter: grayscale(1) brightness(0.35);
}
.map-block::after {
  content: '47 rue de la Commanderie, Saint-Ouen';
  position: absolute;
  font-family: var(--font-sub);
  font-style: italic;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

.contact-encadre {
  border: 1px solid var(--or-pale);
  padding: 32px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  margin-top: 40px;
}
.contact-encadre img { width: 80px; height: 80px; object-fit: cover; filter: grayscale(1); flex-shrink: 0; }
.encadre-name { font-family: var(--font-heading); font-size: 16px; font-weight: 600; }
.encadre-role { font-size: 9.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--or); display: block; margin: 4px 0 12px; }
.encadre-quote { font-family: var(--font-sub); font-style: italic; font-size: 13px; color: var(--gris); line-height: 1.65; }

/* === 25. CTA SECTION === */
.cta-block {
  text-align: center;
  padding: 100px 0;
}
.cta-block h2 { margin-bottom: 18px; }
.cta-block .subtitle { margin-bottom: 44px; }

/* === 26. LEGAL PAGES === */
.legal-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 80px 0 120px;
}
.legal-body h2 {
  font-size: 26px;
  margin-top: 56px;
  margin-bottom: 18px;
  padding-top: 24px;
  border-top: 1px solid var(--or-pale);
}
.legal-body h2:first-child { margin-top: 0; border-top: none; padding-top: 0; }
.legal-body h3 { font-size: 18px; margin-top: 28px; margin-bottom: 12px; }
.legal-body p { font-size: 14.5px; color: var(--gris); line-height: 1.82; margin-bottom: 14px; }
.legal-body ul { padding-left: 20px; margin-bottom: 16px; }
.legal-body ul li { font-size: 14px; color: var(--gris); line-height: 1.8; margin-bottom: 8px; list-style: disc; }
.legal-body a { color: var(--or); border-bottom: 1px solid rgba(201,169,97,0.28); }
.legal-body a:hover { border-color: var(--or); }
.legal-body strong { color: var(--anthracite); font-weight: 500; }

.legal-article {
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(212,201,168,0.3);
}
.legal-article:last-child { border-bottom: none; }

.legal-article h2 {
  font-size: 17px;
  margin-top: 0;
  margin-bottom: 14px;
  padding-top: 0;
  border-top: none;
  color: var(--anthracite);
  letter-spacing: 0.02em;
}
