/* MAKEL — Design éditorial */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400&family=Inter:wght@400;500;600&display=swap');

:root {
  --bg: #FAF7F2;
  --bg-stone: #F0EBE3;
  --bg-dark: #1A1815;
  --text: #1A1815;
  --text-muted: #6B635A;
  --gold: #B8955A;
  --gold-light: #D4BC8E;
  --stone: #E8E0D3;
  --taupe: #8B8178;
  --moss: #6B7355;
  --serif: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
  --w: 1240px;
  --narrow: 680px;
  --prose: 760px;
  --gap: 32px;
  --section: 96px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 5.5vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.875rem, 3.5vw, 2.75rem); letter-spacing: -0.01em; }
h3 { font-size: 1.5rem; }

.container { max-width: var(--w); margin: 0 auto; padding: 0 28px; }
.narrow { max-width: var(--narrow); }
.prose-wrap { max-width: var(--prose); margin: 0 auto; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.eyebrow--light { color: var(--gold-light); }

.lead {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 36em;
}
.emphasis { font-family: var(--serif); font-size: 1.25rem; font-style: italic; color: var(--text); margin-top: 24px; }

/* ── Header ── */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--stone);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 72px;
}
.logo-name { font-family: var(--serif); font-size: 1.625rem; letter-spacing: 0.04em; }
.logo-baseline { font-size: 0.68rem; color: var(--taupe); letter-spacing: 0.14em; text-transform: uppercase; margin-top: 2px; display: block; }

.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a:not(.btn) { font-size: 0.9rem; color: var(--text-muted); transition: color 0.2s; }
.site-nav a:not(.btn):hover { color: var(--text); }

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 6px; padding: 8px;
}
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--text); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 34px; font-family: var(--sans); font-size: 0.9rem; font-weight: 500;
  border: none; cursor: pointer; transition: all 0.25s; white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--text); }
.btn-primary:hover { background: #a6844f; transform: translateY(-1px); }
.btn-secondary { background: transparent; border: 1px solid var(--text); color: var(--text); }
.btn-secondary:hover { background: var(--text); color: var(--bg); }
.btn-tertiary { background: none; padding: 0 0 4px; border-bottom: 1px solid var(--gold); border-radius: 0; }
.btn-tertiary:hover { color: var(--gold); }
.btn-sm { padding: 11px 22px; font-size: 0.82rem; }
.btn-on-dark { border-color: rgba(255,255,255,0.7); color: #fff; }
.btn-on-dark:hover { background: #fff; color: var(--text); }

.card-link-label {
  display: inline-block; margin-top: 12px;
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--gold); border-bottom: 1px solid transparent; transition: border-color 0.2s;
}
.card-editorial:hover .card-link-label { border-bottom-color: var(--gold); }

/* ── Hero accueil ── */
.hero {
  position: relative; min-height: 92vh; display: grid; align-items: end;
  background: var(--bg-dark);
}
.hero-image { position: absolute; inset: 0; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; opacity: 0.88; }
.hero-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(26,24,21,0.75) 0%, rgba(26,24,21,0.35) 55%, rgba(26,24,21,0.15) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  padding: 100px 28px 80px;
  max-width: var(--w); margin: 0 auto; width: 100%;
  color: #fff;
}
.hero-content .eyebrow { color: var(--gold-light); }
.hero-content h1 { max-width: 12ch; margin-bottom: 20px; }
.hero-subtitle {
  font-family: var(--serif); font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-style: italic; max-width: 28ch; margin-bottom: 40px; opacity: 0.92;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hero-scroll {
  position: absolute; bottom: 32px; right: 28px; z-index: 1;
  font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.5);
  writing-mode: vertical-rl;
}

/* ── Page hero intérieur ── */
.page-hero {
  position: relative; padding: 88px 0 72px;
  background: var(--bg-stone);
  border-bottom: 1px solid var(--stone);
}
.page-hero--image {
  min-height: 52vh; display: flex; align-items: flex-end;
  padding: 0; background: var(--bg-dark);
}
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,24,21,0.82) 0%, rgba(26,24,21,0.4) 50%, rgba(26,24,21,0.25) 100%);
}
.page-hero--image .page-hero-inner { position: relative; color: #fff; padding: 80px 28px 64px; width: 100%; }
.page-hero--image .lead { color: rgba(255,255,255,0.8); }
.page-hero--image .eyebrow { color: var(--gold-light); }
.page-hero-inner { max-width: var(--w); margin: 0 auto; }
.page-hero-inner h1 { margin-bottom: 20px; max-width: 16ch; }
.page-hero-extra { margin-top: 20px; }
.page-hero .btn { margin-top: 32px; }

/* ── Sections ── */
.section { padding: var(--section) 0; }
.section--stone { background: var(--bg-stone); }
.section--dark { background: var(--bg-dark); color: var(--bg); }
.section--dark .lead, .section--dark .section-intro { color: rgba(250,247,242,0.7); }
.section--dark .eyebrow { color: var(--gold-light); }

.section-head { text-align: center; margin-bottom: 56px; }
.section-head--left { text-align: left; }
.section-head--left .section-intro { margin-left: 0; }
.section-title { margin-bottom: 16px; }
.section-intro { font-size: 1.1rem; color: var(--text-muted); max-width: 32em; margin: 0 auto; line-height: 1.7; }
.section-cta { text-align: center; margin-top: 48px; }

/* ── Vision split ── */
.split-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  min-height: 520px;
}
.split-block--reverse { direction: rtl; }
.split-block--reverse > * { direction: ltr; }
.split-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 64px 56px; background: var(--bg);
}
.split-text .lead { font-family: var(--serif); font-size: clamp(1.35rem, 2.5vw, 1.75rem); color: var(--text); line-height: 1.55; max-width: none; }
.split-text .signature { margin-top: 32px; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }
.split-visual { position: relative; min-height: 400px; }
.split-visual img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }

/* ── Méthode cards ── */
.methode-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.methode-card {
  background: #fff; border: 1px solid var(--stone);
  padding: 36px 32px 40px; position: relative; overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}
.methode-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold);
}
.methode-card:hover { box-shadow: 0 12px 40px rgba(26,24,21,0.08); transform: translateY(-4px); }
.methode-num {
  font-family: var(--serif); font-size: 3rem; line-height: 1;
  color: var(--stone); position: absolute; top: 20px; right: 24px;
}
.methode-card h3 { margin-bottom: 12px; color: var(--text); }
.methode-card p { color: var(--text-muted); font-size: 0.98rem; }

/* ── Profils ── */
.profils-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.profil-card {
  display: block; padding: 32px 36px; background: #fff;
  border: 1px solid var(--stone); border-left: 4px solid var(--gold);
  transition: background 0.25s, transform 0.25s;
}
.profil-card:hover { background: var(--bg-stone); transform: translateX(4px); }
.profil-card h3 { font-size: 1.35rem; margin-bottom: 10px; }
.profil-card p { color: var(--text-muted); font-size: 0.95rem; }
.profil-card .profil-arrow { display: block; margin-top: 16px; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }

/* ── Band portrait ── */
.band-portrait {
  position: relative; overflow: hidden;
  background: var(--bg-dark); color: #fff;
  padding: 80px 0;
}
.band-portrait-bg {
  position: absolute; inset: 0; opacity: 0.35;
}
.band-portrait-bg img { width: 100%; height: 100%; object-fit: cover; }
.band-portrait-inner {
  position: relative; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 64px; align-items: center;
}
.band-portrait h2 { margin-bottom: 20px; }
.band-portrait p { color: rgba(255,255,255,0.75); margin-bottom: 32px; max-width: 28em; }
.band-portrait-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  border-left: 1px solid rgba(255,255,255,0.15); padding-left: 48px;
}
.stat-item strong { display: block; font-family: var(--serif); font-size: 2rem; color: var(--gold-light); font-weight: 400; }
.stat-item span { font-size: 0.85rem; color: rgba(255,255,255,0.6); }

/* ── Cards éditoriales ── */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.cards-grid--2 { grid-template-columns: repeat(2, 1fr); }
.cards-grid--featured { grid-template-columns: 1.4fr 1fr 1fr; }

.card-editorial .card-lieu-visual,
.card-editorial .card-article-visual {
  position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--stone);
}
.card-article .card-article-visual { aspect-ratio: 16/10; }
.card-lieu--featured .card-lieu-visual { aspect-ratio: 3/4; }
.card-article--featured .card-article-visual { aspect-ratio: 16/11; min-height: 360px; }

.card-editorial img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.card-editorial:hover img { transform: scale(1.05); }

.card-lieu-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,24,21,0.8) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px;
  color: #fff;
}
.card-lieu-territoire { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 6px; }
.card-lieu-nom { font-family: var(--serif); font-size: 1.5rem; color: #fff; }

.card-article-cat {
  position: absolute; top: 16px; left: 16px;
  background: rgba(250,247,242,0.95); padding: 6px 12px;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
}

.card-lieu-body, .card-article-body { padding: 20px 4px 8px; }
.card-article-titre { margin-bottom: 8px; font-size: 1.25rem; }
.card-lieu-accroche, .card-article-chapo { color: var(--text-muted); font-size: 0.92rem; line-height: 1.6; }

/* ── Territoire bloc ── */
.territoire-block { margin-bottom: 64px; }
.territoire-block:last-child { margin-bottom: 0; }
.territoire-header {
  display: grid; grid-template-columns: 280px 1fr; gap: 40px;
  align-items: end; margin-bottom: 36px; padding-bottom: 24px;
  border-bottom: 1px solid var(--stone);
}
.territoire-header-img { aspect-ratio: 4/3; overflow: hidden; }
.territoire-header-img img { width: 100%; height: 100%; object-fit: cover; }
.territoire-header-text h2 { margin-bottom: 12px; }
.territoire-header-text p { color: var(--text-muted); max-width: 40em; }
.territoire-header-text a { font-size: 0.85rem; color: var(--gold); margin-top: 12px; display: inline-block; }

/* ── Étapes méthode (page) ── */
.etape-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  margin-bottom: 48px; background: #fff; border: 1px solid var(--stone);
}
.etape-row:nth-child(even) .etape-row-visual { order: 2; }
.etape-row-visual { min-height: 320px; position: relative; }
.etape-row-visual img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.etape-row-content { padding: 48px 44px; display: flex; flex-direction: column; justify-content: center; }
.etape-label { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.etape-row-content h3 { font-size: 1.75rem; margin-bottom: 24px; }
.etape-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.etape-cols h4 { font-family: var(--sans); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--taupe); margin-bottom: 8px; }
.etape-cols p { font-size: 0.95rem; color: var(--text-muted); }
.etape-resultat {
  font-family: var(--serif); font-size: 1.2rem; font-style: italic;
  padding: 20px 24px; background: var(--bg-stone); border-left: 3px solid var(--gold);
}

/* ── Principes ── */
.principes-panel {
  background: var(--bg-dark); color: var(--bg); padding: 72px 56px;
}
.principes-panel h2 { margin-bottom: 40px; }
.principes-list { list-style: none; columns: 2; column-gap: 48px; }
.principes-list li {
  break-inside: avoid; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.1);
  font-family: var(--serif); font-size: 1.1rem; padding-left: 20px; position: relative;
}
.principes-list li::before { content: ''; position: absolute; left: 0; top: 24px; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }

/* ── Timeline portrait ── */
.timeline-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.timeline-card {
  background: #fff; border: 1px solid var(--stone); padding: 28px 24px;
  border-top: 3px solid var(--gold);
}
.timeline-card-num { font-family: var(--serif); font-size: 2rem; color: var(--stone); line-height: 1; margin-bottom: 12px; }
.timeline-card h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--gold); }
.timeline-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.55; }

/* ── Livrables + étude cas ── */
.two-col-panels { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.panel-box { background: #fff; border: 1px solid var(--stone); padding: 40px; }
.panel-box h2, .panel-box h3 { margin-bottom: 20px; }
.livrables-list { list-style: none; }
.livrables-list li {
  padding: 14px 0; border-bottom: 1px solid var(--bg-stone);
  padding-left: 24px; position: relative; font-size: 0.98rem;
}
.livrables-list li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }

.etude-cas-panel {
  background: var(--bg-stone); padding: 56px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 24px;
}
.etude-cas-panel h3 { font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.etude-cas-quote {
  grid-column: 1 / -1; text-align: center; padding-top: 32px; border-top: 1px solid var(--stone);
}

/* ── Profil detail page ── */
.profil-detail {
  display: grid; grid-template-columns: 200px 1fr; gap: 48px;
  padding: 48px 0; border-bottom: 1px solid var(--stone);
}
.profil-detail:last-child { border-bottom: none; }
.profil-detail-num { font-family: var(--serif); font-size: 4rem; line-height: 1; color: var(--stone); }
.profil-detail h2 { margin-bottom: 12px; }
.profil-problematique { font-family: var(--serif); font-size: 1.2rem; font-style: italic; color: var(--text-muted); margin-bottom: 28px; }
.profil-detail-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 32px; }
.profil-detail-grid h3 { font-family: var(--sans); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--taupe); margin-bottom: 10px; }
.profil-transformation {
  font-family: var(--serif); font-size: 1.15rem; font-style: italic;
  padding: 28px; background: var(--bg-stone); border-left: 3px solid var(--gold);
}

/* ── Fiche lieu ── */
.fiche-hero { position: relative; min-height: 72vh; display: flex; align-items: flex-end; background: var(--bg-dark); }
.fiche-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.fiche-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,24,21,0.85) 0%, rgba(26,24,21,0.2) 60%);
}
.fiche-hero-content { position: relative; z-index: 1; padding: 80px 28px 64px; width: 100%; max-width: var(--w); margin: 0 auto; color: #fff; }
.fiche-territoire a { color: var(--gold-light); font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; }
.fiche-accroche { font-family: var(--serif); font-size: 1.4rem; font-style: italic; margin-top: 16px; max-width: 32em; opacity: 0.9; }

.fiche-layout { display: grid; grid-template-columns: 1fr 300px; gap: 64px; align-items: start; }
.fiche-sidebar {
  position: sticky; top: 96px;
  background: var(--bg-stone); padding: 32px; border: 1px solid var(--stone);
}
.fiche-sidebar h3 { font-family: var(--sans); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--taupe); margin-bottom: 20px; }
.fiche-sidebar p { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px solid var(--stone); }
.fiche-sidebar p:last-of-type { border-bottom: none; }
.fiche-sidebar .btn { width: 100%; margin-top: 20px; }

.prose { font-size: 1.08rem; line-height: 1.85; }
.prose p { margin-bottom: 1.4em; }
.prose h2 { margin: 2em 0 0.6em; font-size: 1.75rem; }
.prose p:first-child::first-letter {
  font-family: var(--serif); font-size: 3.5rem; float: left; line-height: 0.85;
  margin: 6px 14px 0 0; color: var(--gold);
}

.fiche-citation-wrap { background: var(--bg-stone); padding: 72px 0; }
.citation { font-family: var(--serif); font-size: clamp(1.4rem, 3vw, 2rem); line-height: 1.5; text-align: center; max-width: 20em; margin: 0 auto; }
.citation cite { display: block; font-family: var(--sans); font-size: 0.85rem; color: var(--taupe); margin-top: 24px; font-style: normal; letter-spacing: 0.05em; }

.galerie-masonry { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 240px 240px; gap: 12px; }
.galerie-masonry img { width: 100%; height: 100%; object-fit: cover; }
.galerie-masonry img:first-child { grid-row: 1 / 3; }

/* ── Article ── */
.article-hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: center; padding: 64px 0;
}
.article-hero-text .article-cat { margin-bottom: 16px; }
.article-hero-text .article-cat a { color: var(--gold); }
.article-chapo { font-family: var(--serif); font-size: 1.35rem; font-style: italic; color: var(--text-muted); margin-top: 20px; line-height: 1.55; }
.article-hero-img { aspect-ratio: 4/3; overflow: hidden; }
.article-hero-img img { width: 100%; height: 100%; object-fit: cover; }

.article-cat { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--taupe); }

/* ── Band CTA portrait ── */
.band-cta { position: relative; padding: 80px 0; overflow: hidden; }
.band-cta--portrait { background: var(--bg-dark); color: #fff; }
.band-cta-bg {
  position: absolute; inset: 0; opacity: 0.2;
  background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1600&q=80') center/cover;
}
.band-cta-inner {
  position: relative; display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 64px; align-items: center;
}
.band-cta-content p { color: rgba(255,255,255,0.7); margin: 20px 0 32px; max-width: 28em; }
.band-cta-steps { list-style: none; border-left: 1px solid rgba(255,255,255,0.15); padding-left: 32px; }
.band-cta-steps li { padding: 10px 0; font-size: 0.9rem; color: rgba(255,255,255,0.65); display: flex; align-items: center; gap: 16px; }
.band-cta-steps span { font-family: var(--serif); font-size: 1.25rem; color: var(--gold-light); min-width: 28px; }

/* ── Band revue ── */
.band-revue { background: var(--bg-stone); padding: 80px 0; border-top: 1px solid var(--stone); }
.band-revue-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.band-revue-titre { margin-bottom: 16px; }
.band-revue-texte { color: var(--text-muted); max-width: 28em; }
.band-revue-form-wrap { background: #fff; padding: 40px; border: 1px solid var(--stone); }
.revue-form { display: flex; flex-direction: column; gap: 12px; }
.form-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--taupe); }
.revue-form input, .revue-form select {
  padding: 14px 16px; border: 1px solid var(--stone); background: var(--bg);
  font-family: var(--sans); font-size: 0.95rem; width: 100%;
}
.revue-message { margin-top: 12px; font-size: 0.9rem; color: var(--moss); }

/* ── Forms page ── */
.form-page-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }
.form-panel { background: #fff; padding: 40px; border: 1px solid var(--stone); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 6px; font-size: 0.8rem; font-weight: 500; color: var(--taupe); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 14px 16px; border: 1px solid var(--stone); background: var(--bg);
  font-family: var(--sans); font-size: 1rem;
}
.form-group textarea { resize: vertical; min-height: 140px; }

.alert { padding: 16px 20px; margin-bottom: 24px; font-size: 0.95rem; }
.alert-success { background: #e8ede3; color: var(--moss); border-left: 3px solid var(--moss); }
.alert-error { background: #f5e6e6; color: #8b4545; border-left: 3px solid #8b4545; }

/* ── À propos ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-visual { aspect-ratio: 3/4; overflow: hidden; }
.about-visual img { width: 100%; height: 100%; object-fit: cover; }
.about-content .lead { margin-bottom: 24px; }
.about-content p { margin-bottom: 1.2em; color: var(--text-muted); }
.about-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.about-pillar { padding: 28px; background: var(--bg-stone); border-top: 2px solid var(--gold); }
.about-pillar h3 { font-size: 1.1rem; margin-bottom: 8px; }
.about-pillar p { font-size: 0.88rem; color: var(--text-muted); }

/* ── Cal embed ── */
.cal-wrap { background: #fff; border: 1px solid var(--stone); padding: 8px; }
.cal-embed iframe { display: block; width: 100%; min-height: 700px; border: 0; }

/* ── Footer ── */
.site-footer { margin-top: 0; }
.footer-top { background: var(--bg-dark); color: var(--bg); padding: 72px 0 56px; }
.footer-top-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; }
.footer-logo { font-family: var(--serif); font-size: 1.5rem; margin-bottom: 8px; }
.footer-baseline { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 16px; }
.footer-tagline { font-size: 0.9rem; color: rgba(250,247,242,0.55); max-width: 22em; line-height: 1.6; }
.footer-col-title { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 16px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.9rem; color: rgba(250,247,242,0.65); transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { background: #121110; padding: 20px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p, .footer-back { font-size: 0.8rem; color: rgba(250,247,242,0.4); }
.footer-back:hover { color: var(--gold-light); }

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

/* ── Animations ── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .cards-grid, .cards-grid--featured, .methode-grid, .timeline-grid { grid-template-columns: repeat(2, 1fr); }
  .split-block, .band-portrait-inner, .band-cta-inner, .band-revue-grid, .about-grid, .form-page-grid, .fiche-layout, .article-hero-grid { grid-template-columns: 1fr; }
  .split-block--reverse { direction: ltr; }
  .territoire-header { grid-template-columns: 1fr; }
  .etape-row, .etape-row:nth-child(even) .etape-row-visual { grid-template-columns: 1fr; }
  .etape-row:nth-child(even) .etape-row-visual { order: 0; }
  .etape-row-visual { min-height: 240px; }
  .profil-detail { grid-template-columns: 1fr; gap: 16px; }
  .profil-detail-num { font-size: 2.5rem; }
  .principes-list { columns: 1; }
  .galerie-masonry { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .galerie-masonry img:first-child { grid-row: auto; }
  .footer-top-grid { grid-template-columns: 1fr 1fr; }
  .band-portrait-stats { border-left: none; padding-left: 0; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.15); }
}

@media (max-width: 768px) {
  :root { --section: 72px; }
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed; top: 0; right: -100%; width: min(320px, 85vw); height: 100vh;
    background: var(--bg); flex-direction: column; align-items: flex-start;
    padding: 100px 32px 40px; gap: 20px;
    transition: right 0.3s; box-shadow: -8px 0 32px rgba(0,0,0,0.12);
  }
  .site-nav.open { right: 0; }
  .cards-grid, .cards-grid--2, .profils-grid, .two-col-panels, .etude-cas-panel, .etape-cols, .profil-detail-grid, .about-pillars { grid-template-columns: 1fr; }
  .timeline-grid { grid-template-columns: 1fr; }
  .hero { min-height: 80vh; }
  .fiche-sidebar { position: static; }
  .footer-top-grid { grid-template-columns: 1fr; }
}
