/* ============================================================
   Cabinet Dupont Avocats — Feuille de style principale
   Palette : bleu nuit #1a2332 · or #c5a572 · ivoire #f8f6f1
   Typographie : Playfair Display (titres) · Inter (texte)
   ============================================================ */

/* ---------- Variables & base ---------- */
:root {
  --navy: #1a2332;
  --navy-2: #243044;
  --navy-3: #2e3c52;
  --gold: #c5a572;
  --gold-light: #d8bd8a;
  --gold-dark: #a9895c;
  --ivory: #f8f6f1;
  --white: #ffffff;
  --ink: #1a2332;
  --body: #4b5563;
  --muted: #6b7280;
  --line: rgba(26, 35, 50, 0.1);
  --line-gold: rgba(197, 165, 114, 0.35);
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --shadow-card: 0 10px 30px rgba(26, 35, 50, 0.07);
  --radius: 4px;
  --header-h: 76px;
}

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

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

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--body);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; }

::selection { background: var(--gold); color: var(--navy); }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--ink);
  line-height: 1.22;
  font-weight: 600;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Accessibilité : lien d'évitement */
.skip-link {
  position: absolute;
  top: -48px;
  left: 1rem;
  z-index: 300;
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
  padding: 0.6rem 1.2rem;
  border-radius: 0 0 4px 4px;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  background: rgba(26, 35, 50, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(197, 165, 114, 0.18);
  transition: box-shadow 0.3s;
}
.site-header.is-scrolled { box-shadow: 0 6px 24px rgba(10, 15, 25, 0.35); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ivory);
}
.brand__logo {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
}
.brand__name {
  font-family: var(--font-serif);
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: var(--ivory);
  line-height: 1.1;
}
.brand__name em { font-style: normal; color: var(--gold); }
.brand__sub {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: rgba(248, 246, 241, 0.55);
  margin-top: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.main-nav__list {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.main-nav__list a {
  position: relative;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: rgba(248, 246, 241, 0.78);
  padding: 0.4rem 0;
  transition: color 0.25s;
}
.main-nav__list a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.main-nav__list a:hover, .main-nav__list a:focus-visible { color: var(--gold-light); }
.main-nav__list a:hover::after, .main-nav__list a:focus-visible::after { width: 100%; }
.main-nav__list a[aria-current='page'] { color: var(--gold); }
.main-nav__list a[aria-current='page']::after { width: 100%; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  padding: 0.8rem 1.7rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s, box-shadow 0.25s;
  font-family: var(--font-sans);
}
.btn--gold { background: var(--gold); color: var(--navy); }
.btn--gold:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(197, 165, 114, 0.25); }
.btn--outline { border-color: rgba(197, 165, 114, 0.55); color: var(--gold-light); background: transparent; }
.btn--outline:hover { border-color: var(--gold); background: rgba(197, 165, 114, 0.08); color: var(--gold-light); }
.btn--navy { background: var(--navy); color: var(--ivory); }
.btn--navy:hover { background: var(--navy-2); }
.btn--sm { padding: 0.55rem 1.15rem; font-size: 0.82rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 1px solid rgba(197, 165, 114, 0.35);
  border-radius: var(--radius);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--gold-light);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle[aria-expanded='true'] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded='true'] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Boutons du hero (variante hero) ---------- */
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.hero-cta-row .btn { padding: 0.95rem 2.1rem; font-size: 0.95rem; }

/* ---------- Hero (accueil) ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 4rem) 0 5rem;
  background:
    radial-gradient(ellipse 60% 55% at 85% 12%, rgba(197, 165, 114, 0.13), transparent 60%),
    radial-gradient(ellipse 45% 45% at 8% 90%, rgba(197, 165, 114, 0.07), transparent 55%),
    linear-gradient(135deg, #141c2a 0%, var(--navy) 48%, #1f2a3d 100%);
  color: var(--ivory);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/assets/img/hero-pattern.svg');
  background-size: 340px 340px;
  opacity: 0.5;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-gold), transparent);
}
.hero .container { position: relative; z-index: 1; }
.hero__content { max-width: 780px; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(197, 165, 114, 0.35);
  border-radius: 2px;
  padding: 0.45rem 1rem;
  margin-bottom: 1.6rem;
  background: rgba(197, 165, 114, 0.06);
}
.hero__badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.hero__title {
  font-size: clamp(2.5rem, 5.5vw, 4.1rem);
  font-weight: 700;
  color: var(--ivory);
  letter-spacing: 0.5px;
  margin-bottom: 1.2rem;
}
.hero__title .gold { color: var(--gold); font-style: italic; }
.hero__tagline {
  font-size: clamp(1.08rem, 1.9vw, 1.32rem);
  font-weight: 300;
  line-height: 1.65;
  color: rgba(248, 246, 241, 0.78);
  max-width: 640px;
  margin-bottom: 2.6rem;
}
.hero__meta {
  margin-top: 2.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  font-size: 0.85rem;
  color: rgba(248, 246, 241, 0.6);
}
.hero__meta li { display: flex; align-items: center; gap: 0.5rem; }
.hero__meta svg { color: var(--gold); flex: 0 0 auto; }

/* ---------- Sections génériques ---------- */
.section { padding: 5.5rem 0; }
.section--white { background: var(--white); }
.section--ivory { background: var(--ivory); }
.section--navy {
  background:
    radial-gradient(ellipse 50% 60% at 90% 0%, rgba(197, 165, 114, 0.1), transparent 60%),
    var(--navy);
  color: rgba(248, 246, 241, 0.85);
}
.section--navy h2, .section--navy h3 { color: var(--ivory); }

.section__head { max-width: 760px; margin: 0 auto 3.2rem; text-align: center; }
.section__eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.9rem;
  display: block;
}
.section--navy .section__eyebrow { color: var(--gold); }
.section__title { font-size: clamp(1.8rem, 3.4vw, 2.55rem); margin-bottom: 1rem; }
.section__intro { font-size: 1.06rem; color: var(--muted); line-height: 1.7; }
.section--navy .section__intro { color: rgba(248, 246, 241, 0.72); }
.section__rule {
  width: 52px;
  height: 2px;
  background: var(--gold);
  margin: 1.2rem auto 0;
  border: none;
}
.section--navy .section__rule { background: var(--gold); }

/* ---------- Page intérieure : bannière ---------- */
.page-hero {
  position: relative;
  background:
    radial-gradient(ellipse 55% 80% at 88% 0%, rgba(197, 165, 114, 0.12), transparent 60%),
    linear-gradient(135deg, #141c2a, var(--navy) 55%, #1f2a3d);
  color: var(--ivory);
  padding: calc(var(--header-h) + 3.6rem) 0 3.6rem;
  border-bottom: 1px solid var(--line-gold);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/assets/img/hero-pattern.svg');
  background-size: 340px 340px;
  opacity: 0.4;
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero__crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(248, 246, 241, 0.55);
  margin-bottom: 1.1rem;
}
.page-hero__crumb a { color: var(--gold-light); }
.page-hero__crumb a:hover { text-decoration: underline; }
.page-hero__crumb span[aria-hidden='true'] { color: rgba(248, 246, 241, 0.35); }
.page-hero h1 {
  font-size: clamp(2rem, 4.4vw, 3rem);
  color: var(--ivory);
  margin-bottom: 0.9rem;
}
.page-hero__lead {
  font-size: 1.08rem;
  font-weight: 300;
  color: rgba(248, 246, 241, 0.78);
  max-width: 680px;
  line-height: 1.65;
}

/* ---------- Grilles ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

/* ---------- Accueil : à propos ---------- */
.about-copy p { margin-bottom: 1.1rem; font-size: 1.03rem; }
.about-copy p:last-child { margin-bottom: 0; }
.about-copy strong { color: var(--ink); font-weight: 600; }

.about-card {
  position: relative;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  padding: 2.4rem 2.2rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow-card);
}
.about-card__quote {
  font-family: var(--font-serif);
  font-size: 1.22rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 1.4rem;
}
.about-card__footer {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.85rem;
  color: var(--muted);
}
.about-card__signature {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  border: 2px solid var(--gold);
  flex: 0 0 auto;
}

/* ---------- Bandeau chiffres clés ---------- */
.stats-band {
  background: linear-gradient(135deg, #141c2a, var(--navy-2));
  border-top: 1px solid var(--line-gold);
  border-bottom: 1px solid var(--line-gold);
  padding: 3.2rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat__value {
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 4vw, 2.9rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
}
.stat__label {
  margin-top: 0.45rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(248, 246, 241, 0.65);
}

/* ---------- Cartes expertise ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.4rem 2rem;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
  border-color: var(--line-gold);
}
.card__icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--ivory);
  border: 1px solid var(--line-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  margin-bottom: 1.4rem;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.22rem; margin-bottom: 0.7rem; }
.card p { font-size: 0.95rem; color: var(--muted); line-height: 1.65; }
.card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-dark);
  transition: gap 0.2s, color 0.2s;
}
.card__link:hover { gap: 0.7rem; color: var(--navy); }
.card__link svg { width: 15px; height: 15px; }

/* ---------- Questions fréquentes ---------- */
.faq { display: grid; gap: 0.9rem; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.faq-item:hover { border-color: var(--line-gold); }
.faq-item[open] { border-color: var(--line-gold); box-shadow: var(--shadow-card); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--ink);
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  flex: 0 0 auto;
  width: 30px; height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line-gold);
  color: var(--gold-dark);
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 400;
  transition: transform 0.25s, background 0.25s, color 0.25s;
}
.faq-item[open] summary::after { transform: rotate(45deg); background: var(--gold); color: var(--navy); border-color: var(--gold); }
.faq-item summary:hover { color: var(--gold-dark); }
.faq-item p {
  padding: 0 1.4rem 1.3rem;
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 700px;
}

/* ---------- Bandeau CTA ---------- */
.cta-band { text-align: center; padding: 5rem 0; }
.cta-band h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); color: var(--ivory); margin-bottom: 1rem; }
.cta-band p { max-width: 560px; margin: 0 auto 2.2rem; color: rgba(248, 246, 241, 0.75); font-size: 1.05rem; }

/* ---------- Équipe ---------- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.team-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  padding: 2.6rem 1.9rem 2.2rem;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.team-card__avatar {
  width: 108px; height: 108px;
  margin: 0 auto 1.4rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--navy), var(--navy-3));
  border: 3px solid var(--gold);
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-size: 2.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 1px;
}
.team-card h3 { font-size: 1.28rem; margin-bottom: 0.35rem; }
.team-card__role {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.9rem;
}
.team-card__specs {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 1rem;
}
.team-card__bio { font-size: 0.92rem; color: var(--muted); line-height: 1.65; }

/* ---------- Valeurs ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.value-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.value-item:hover { transform: translateY(-4px); border-color: var(--line-gold); box-shadow: var(--shadow-card); }
.value-item__icon {
  width: 46px; height: 46px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--ivory);
  border: 1px solid var(--line-gold);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-item__icon svg { width: 22px; height: 22px; }
.value-item h3 { font-size: 1.02rem; margin-bottom: 0.45rem; }
.value-item p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

/* ---------- Services détaillés (page domaines) ---------- */
.service-block {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 2rem;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.4rem 2.4rem;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.service-block:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: var(--line-gold); }
.service-block__icon {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: var(--ivory);
  border: 1px solid var(--line-gold);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-block__icon svg { width: 40px; height: 40px; }
.service-block h2 { font-size: 1.4rem; margin-bottom: 0.6rem; }
.service-block p { font-size: 0.98rem; color: var(--muted); margin-bottom: 1rem; }
.service-block__tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.service-block__tags li {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink);
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 0.3rem 0.8rem;
  letter-spacing: 0.3px;
}
.services-list { display: grid; gap: 1.75rem; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 0.9rem;
  overflow: hidden;
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.5rem;
  font-family: var(--font-serif);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-sans);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--gold-dark);
  transition: transform 0.25s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 1.5rem 1.3rem; font-size: 0.95rem; color: var(--muted); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: start;
}
.info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.4rem 2.2rem;
}
.info-card h2 { font-size: 1.35rem; margin-bottom: 1.4rem; }
.info-list li { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.info-list li:last-child { border-bottom: none; }
.info-list__icon {
  width: 40px; height: 40px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--ivory);
  border: 1px solid var(--line-gold);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-list__icon svg { width: 19px; height: 19px; }
.info-list h3 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.2rem;
}
.info-list p, .info-list a { font-size: 0.98rem; color: var(--ink); }
.info-list a:hover { color: var(--gold-dark); }
.info-note {
  margin-top: 1.4rem;
  font-size: 0.88rem;
  color: var(--muted);
  background: var(--ivory);
  border-left: 3px solid var(--gold);
  padding: 0.9rem 1.1rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.4rem 2.2rem;
  box-shadow: var(--shadow-card);
}
.form-card h2 { font-size: 1.35rem; margin-bottom: 0.5rem; }
.form-card__intro { font-size: 0.95rem; color: var(--muted); margin-bottom: 1.8rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.4rem;
  letter-spacing: 0.2px;
}
.form-group label .req { color: var(--gold-dark); }
.form-group input, .form-group textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.78rem 1rem;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-group input::placeholder, .form-group textarea::placeholder { color: #9aa3af; }
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(197, 165, 114, 0.18);
}
.form-card__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.4rem;
}
.form-card__privacy { font-size: 0.78rem; color: var(--muted); max-width: 320px; }
.form-status[hidden] { display: none; }
.form-status {
  margin-top: 1rem;
  font-size: 0.88rem;
  color: var(--ink);
  background: var(--ivory);
  border: 1px solid var(--line-gold);
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
}
.form-status a { color: var(--gold-dark); font-weight: 600; text-decoration: underline; }

.map-frame {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  line-height: 0;
}
.map-frame iframe {
  width: 100%;
  height: 380px;
  border: 0;
  filter: saturate(0.82) contrast(0.96);
}

.access-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.2rem;
}
.access-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.6rem;
}
.access-item h3 { font-size: 1.05rem; margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.6rem; }
.access-item h3 svg { width: 20px; height: 20px; color: var(--gold-dark); flex: 0 0 auto; }
.access-item p { font-size: 0.9rem; color: var(--muted); }

/* ---------- Mentions légales ---------- */
.legal { max-width: 860px; margin: 0 auto; }
.legal__block {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 2.2rem;
  margin-bottom: 1.5rem;
}
.legal__block h2 {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--line);
}
.legal__block p, .legal__block li { font-size: 0.95rem; color: var(--body); margin-bottom: 0.75rem; }
.legal__block ul { list-style: none; }
.legal__block ul li { padding-left: 1.2rem; position: relative; }
.legal__block ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.65em;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 1px;
}
.legal__block a { color: var(--gold-dark); font-weight: 500; text-decoration: underline; text-underline-offset: 3px; }
.legal__block .todo { color: var(--muted); font-style: italic; }
.legal__block .todo::before { content: '— '; }

/* ---------- 404 ---------- */
.page-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(ellipse 50% 60% at 50% 0%, rgba(197, 165, 114, 0.12), transparent 60%),
    linear-gradient(160deg, #141c2a, var(--navy) 55%, #1f2a3d);
  color: var(--ivory);
  padding: calc(var(--header-h) + 2rem) 1.5rem 3rem;
}
.page-404__code {
  font-family: var(--font-serif);
  font-size: clamp(5rem, 14vw, 9rem);
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--gold);
  margin-bottom: 0.5rem;
}
.page-404 h1 { color: var(--ivory); font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 1rem; }
.page-404 p { color: rgba(248, 246, 241, 0.7); max-width: 480px; margin: 0 auto 2.2rem; }
.page-404 .hero-cta-row { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer {
  background: #121927;
  color: rgba(248, 246, 241, 0.65);
  border-top: 1px solid rgba(197, 165, 114, 0.2);
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 3rem;
  padding: 3.8rem 0 3rem;
}
.footer-brand__logo { width: 40px; height: 40px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; color: rgba(248, 246, 241, 0.6); max-width: 300px; line-height: 1.65; }
.footer-brand .brand__name { font-size: 1.1rem; margin-bottom: 0.6rem; display: inline-block; }
.footer-col h2 {
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a { color: rgba(248, 246, 241, 0.68); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--gold-light); }
.footer-contact li { display: flex; gap: 0.7rem; margin-bottom: 0.85rem; color: rgba(248, 246, 241, 0.68); }
.footer-contact svg { width: 17px; height: 17px; color: var(--gold); flex: 0 0 auto; margin-top: 3px; }
.footer-contact a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(197, 165, 114, 0.15);
  padding: 1.4rem 0;
  font-size: 0.8rem;
  color: rgba(248, 246, 241, 0.45);
}
.footer-bottom .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}
.footer-bottom__links { display: flex; flex-wrap: wrap; gap: 1.6rem; }
.footer-bottom__links a:hover { color: var(--gold-light); }
.footer-bottom .ms-credit a { color: rgba(248, 246, 241, 0.55); }
.footer-bottom .ms-credit a:hover { color: var(--gold-light); }

/* ---------- Révélation au défilement ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .main-nav__list { gap: 1.25rem; }
  .grid-3, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .team-card:last-child { grid-column: 1 / -1; max-width: 380px; margin: 0 auto; width: 100%; }
}

@media (max-width: 860px) {
  :root { --header-h: 66px; }

  .nav-toggle { display: flex; }

  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(18, 25, 39, 0.99);
    border-bottom: 1px solid var(--line-gold);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1.2rem 1.5rem 1.6rem;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s, transform 0.28s, visibility 0.28s;
  }
  .main-nav.is-open {
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .main-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
  }
  .main-nav__list a {
    display: block;
    padding: 0.85rem 0.4rem;
    font-size: 0.95rem;
    letter-spacing: 1.4px;
    border-bottom: 1px solid rgba(197, 165, 114, 0.12);
  }
  .main-nav__list a::after { display: none; }
  .main-nav .btn { margin-top: 1.1rem; width: 100%; }

  .grid-2 { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .section { padding: 4rem 0; }
  .hero { min-height: 0; padding-top: calc(var(--header-h) + 3.2rem); }
  .hero__title { font-size: clamp(2.1rem, 9vw, 2.8rem); }
  .hero__meta { gap: 0.9rem 1.3rem; }
  .grid-3, .team-grid { grid-template-columns: 1fr; }
  .team-card:last-child { grid-column: auto; max-width: none; margin: 0; }
  .form-row { grid-template-columns: 1fr; }
  .service-block { grid-template-columns: 1fr; gap: 1.2rem; text-align: left; }
  .service-block__icon { width: 64px; height: 64px; }
  .service-block__icon svg { width: 30px; height: 30px; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 0 2.2rem; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .about-card { padding: 1.8rem 1.4rem; }
  .form-card, .info-card { padding: 1.8rem 1.4rem; }
  .legal__block { padding: 1.6rem 1.4rem; }
  .hero-cta-row .btn { width: 100%; }
}

/* Petite optimisation : impression */
@media print {
  .site-header, .site-footer, .nav-toggle, .map-frame, .cta-band { display: none !important; }
  .page-hero { padding: 2rem 0; }
  body { background: #fff; }
}
