/* ================================================================
   TRUSTMED AI — Feuille de style principale
   Aesthetic: Cabinet médical de luxe × audit forensique
   Typographie: Playfair Display (Titres élégants) × Plus Jakarta Sans (Corps Antaveda)
   Palette: Encre de nuit, ivoire chaud, or éthique, vert teal
================================================================ */

/* IMPORT DES POLICES — Playfair Display (titres) + Plus Jakarta Sans (corps) */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;0,900;1,400;1,600&family=Plus+Jakarta+Sans:ital,wght@0,300..800;1,300..800&display=swap');

/* ─── ESSAI ALTERNATIF (recommandé) : Fraunces au lieu de Playfair ───
   Titres plus contemporains et plus lisibles sur fond sombre.
   Pour l'activer : (1) commentez la ligne @import Playfair ci-dessus,
   (2) décommentez la ligne ci-dessous, (3) plus bas, basculez --f-display.
   @import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500;1,9..144,600&family=Plus+Jakarta+Sans:ital,wght@0,300..800;1,300..800&display=swap');
*/

/* ── VARIABLES ─────────────────────────────────────────────── */
:root {
  --ink:        #18243c;
  --ink-soft:   #1e2d48;
  --cream:      #f5f0e8;
  --cream-dim:  #e8e2d6;
  --gold:       #c9a84c;
  --gold-light: #e2c97a;
  --gold-dim:   rgba(201,168,76,0.18);
  --teal:       #1a6b72;
  --teal-light: #2a9fa8;
  --teal-dim:   rgba(26,107,114,0.15);
  --muted:      rgba(245,240,232,0.65);
  --line:       rgba(201,168,76,0.2);
  --line-soft:  rgba(245,240,232,0.13);

  /* Le combo parfait d'Antaveda */
  --f-display:  'Playfair Display', Georgia, serif;        /* Titres — défaut */
  /* --f-display:  'Fraunces', Georgia, serif;  *//* Titres — alternative Fraunces (voir @import plus haut) */
  --f-body:     'Plus Jakarta Sans', system-ui, sans-serif; /* Pour la netteté du contenu */
  --f-mono:     'Plus Jakarta Sans', system-ui, sans-serif; 

  --r-sm:  4px;
  --r-md:  8px;
  --ease:  cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
html { overflow-x: hidden; max-width: 100%; }
body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--f-body);
  font-size: 1rem;           /* Lisibilité optimisée */
  line-height: 1.62;          /* Laisse le texte respirer */
  overflow-x: hidden;
}
img, svg, video, canvas { max-width: 100%; height: auto; display: block; }
body { overflow-wrap: break-word; word-wrap: break-word; }
.pillars > *, .services-grid > *, .sanctions-grid > *, .founder-grid > *,
.contact-grid > *, .service-detail-grid > *, .about-intro-grid > *,
.moat-grid > *, .timeline > * { min-width: 0; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── TYPOGRAPHY (Ajustement anti-chevauchement) ─────────────── */
h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 700;
  line-height: 1.25;         /* 👈 Augmenté pour empêcher TOUTE superposition de titres */
}
.label {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.lead {
  font-family: var(--f-body);
  font-size: 1.12rem;
  line-height: 1.68;
  color: rgba(245,240,232,0.78);
}

/* ── GRID ───────────────────────────────────────────────────── */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
}
.container--wide { max-width: 1280px; }

/* ── NAV ────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 28px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s;
}
.nav.scrolled {
  background: rgba(24,36,60,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-logo {
  font-family: var(--f-body); /* Logo en sans-serif moderne comme Antaveda */
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (max-width: 1250px) { /* 👈 Switch au menu mobile un peu plus tôt si l'écran est juste */
  .nav-links, .nav-cta-wrapper { display: none !important; }
  .nav-burger { display: flex !important; }
}
.nav-links a {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--cream); }
.nav-cta {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: 1px solid var(--gold);
  color: var(--gold);
  transition: background 0.25s, color 0.25s;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--ink);
}
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
  transition: 0.3s;
}
.nav-burger span:not(:last-child) { margin-bottom: 5px; }

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 88px 28px 64px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center,
    rgba(26,107,114,0.20) 0%,
    rgba(201,168,76,0.10) 40%,
    transparent 70%
  );
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: 820px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.2s forwards;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.hero h1 {
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.2;          /* 👈 Évite le chevauchement sur le très grand titre */
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.35s forwards;
}
.hero h1 em {
  color: var(--gold);
  font-style: italic;
}
.hero h1 .alt {
  color: var(--teal-light);
  font-style: normal;
}
.hero-line {
  width: 56px;
  height: 2px;
  background: var(--gold);
  margin: 32px 0;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.5s forwards;
}
.hero-desc {
  max-width: 540px;
  color: rgba(245,240,232,0.82);
  font-size: 1.1rem;
  line-height: 1.72;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.6s forwards;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.75s forwards;
}
.btn-primary {
  font-family: var(--f-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 34px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 600;
  transition: background 0.25s, transform 0.2s;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.btn-ghost {
  font-family: var(--f-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 34px;
  border: 1px solid var(--line);
  color: var(--muted);
  transition: border-color 0.25s, color 0.25s;
}
.btn-ghost:hover {
  border-color: var(--cream);
  color: var(--cream);
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: fadeIn 1s var(--ease) 1.2s forwards;
}
.hero-scroll-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero-scroll span {
  font-family: var(--f-mono);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-stat-strip {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  border-top: 1px solid var(--line-soft);
  border-left: 1px solid var(--line-soft);
  opacity: 0;
  animation: fadeIn 1s var(--ease) 1.0s forwards;
}
.hero-stat {
  padding: 20px 32px;
  border-right: 1px solid var(--line-soft);
  text-align: center;
}
.hero-stat-num {
  font-family: var(--f-body); /* Chiffres modernes et géométriques */
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.hero-stat-label {
  font-family: var(--f-mono);
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
  display: block;
}

/* ── SECTIONS COMMUNES ──────────────────────────────────────── */
.section {
  padding: 100px 0;
}
.section-header {
  margin-bottom: 64px;
}
.section-header h2 {
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  margin-top: 14px;
  margin-bottom: 20px;
}
.section-header h2 em { color: var(--gold); font-style: italic; }
.section-header p {
  max-width: 560px;
  color: rgba(245,240,232,0.75);
  font-size: 1.0rem;
}
.divider {
  border: none;
  border-top: 1px solid var(--line-soft);
  margin: 0;
}

/* ── URGENCE BAND ───────────────────────────────────────────── */
.urgency-band {
  margin-top: 72px;
  background: var(--teal);
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.urgency-band p {
  font-family: var(--f-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.urgency-band strong { color: var(--gold-light); }
.urgency-band a {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.urgency-band a:hover { opacity: 1; }

/* ── CONFIANCE (4 piliers) ──────────────────────────────────── */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 64px;
}
.pillar {
  padding: 40px 28px;
  border: 1px solid var(--line-soft);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}
.pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.pillar:hover::before { transform: scaleX(1); }
.pillar:hover { border-color: var(--line); }
.pillar-num {
  font-family: var(--f-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: rgba(201,168,76,0.2);
  line-height: 1;
  margin-bottom: 16px;
}
.pillar h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--cream);
}
.pillar p {
  font-size: 0.95rem;
  color: rgba(245,240,232,0.70);
  line-height: 1.65;
}

/* ── SERVICES ───────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-card {
  padding: 44px 36px;
  background: rgba(245,240,232,0.05);
  border: 1px solid var(--line-soft);
  position: relative;
  transition: background 0.3s;
}
.service-card:hover {
  background: rgba(245,240,232,0.05);
}
.service-card.featured {
  background: var(--teal-dim);
  border-color: rgba(26,107,114,0.4);
}
.service-tag {
  font-family: var(--f-mono);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 20px;
  display: block;
}
.service-card.featured .service-tag { color: var(--gold); }
.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
  color: var(--cream);
}
.service-card p {
  font-size: 0.95rem;
  color: rgba(245,240,232,0.72);
  line-height: 1.7;
  margin-bottom: 28px;
}
.service-price {
  font-family: var(--f-mono);
  font-size: 0.96rem;
  color: var(--gold);
  letter-spacing: 0.06em;
}
.service-arrow {
  position: absolute;
  bottom: 36px;
  right: 36px;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.96rem;
  transition: border-color 0.25s, color 0.25s, transform 0.25s;
}
.service-card:hover .service-arrow {
  border-color: var(--gold);
  color: var(--gold);
  transform: translate(2px, -2px);
}

/* ── SANCTIONS TABLE ────────────────────────────────────────── */
.sanctions-section {
  background: rgba(139,26,26,0.05);
  border-top: 1px solid rgba(139,26,26,0.2);
  border-bottom: 1px solid rgba(139,26,26,0.2);
}
.sanctions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}
.sanction-cell {
  padding: 36px 28px;
  border: 1px solid rgba(139,26,26,0.15);
  background: rgba(18,28,50,0.9);
}
.sanction-cell h4 {
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 8px;
  line-height: 1.4;
}
.sanction-cell .amount {
  font-family: var(--f-body); /* Chiffres géométriques */
  font-size: 1.9rem;
  font-weight: 800;
  color: #e05c4e;
  line-height: 1;
  margin-bottom: 8px;
}
.sanction-cell .ref {
  font-family: var(--f-mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.35);
}

/* ── CALENDRIER ─────────────────────────────────────────────── */
.timeline {
  position: relative;
  padding-left: 32px;
  margin-top: 48px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.tl-item {
  position: relative;
  padding-bottom: 36px;
  padding-left: 24px;
}
.tl-item::before {
  content: '';
  position: absolute;
  left: -36px;
  top: 8px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.2);
}
.tl-item.done::before { background: var(--teal-light); box-shadow: 0 0 0 3px rgba(42,159,168,0.2); }
.tl-date {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  display: block;
}
.tl-item.done .tl-date { color: var(--teal-light); }
.tl-item h4 {
  font-size: 1.0rem;
  color: var(--cream);
  margin-bottom: 4px;
}
.tl-item p {
  font-size: 0.93rem;
  color: rgba(245,240,232,0.5);
}

/* ── FONDATEUR ──────────────────────────────────────────────── */
.founder-section {
  background: linear-gradient(135deg, rgba(26,107,114,0.06) 0%, transparent 60%);
  border-top: 1px solid var(--line-soft);
}
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.founder-portrait {
  aspect-ratio: 3/4;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.founder-portrait-placeholder {
  font-family: var(--f-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: rgba(201,168,76,0.2);
}
.founder-portrait-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 20px;
  background: linear-gradient(transparent, rgba(8,15,30,0.9));
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.founder-content {}
.founder-name {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 6px;
}
.founder-title {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 28px;
  display: block;
}
.founder-bio {
  color: rgba(245,240,232,0.7);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 32px;
}
.founder-credentials {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.credential {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.credential-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 8px;
}
.credential-text {
  font-size: 0.95rem;
  color: rgba(245,240,232,0.75);
  line-height: 1.5;
}
.credential-text strong {
  color: var(--cream);
  font-style: normal;
}

/* ── CONTACT ────────────────────────────────────────────────── */
.contact-section {}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  align-items: start;
}
.contact-form-side {
  padding: 56px 52px;
  background: rgba(245,240,232,0.05);
  border: 1px solid var(--line-soft);
}
.contact-info-side {
  padding: 56px 52px;
  border: 1px solid var(--line-soft);
  border-left: none;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.form-group {
  margin-bottom: 24px;
}
.form-label {
  display: block;
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(245,240,232,0.05);
  border: 1px solid var(--line-soft);
  padding: 14px 16px;
  color: var(--cream);
  font-family: var(--f-body);
  font-size: 0.96rem;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.05);
}
.form-select option { background: var(--ink-soft); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--f-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.25s;
}
.form-submit:hover { background: var(--gold-light); }
.contact-item {}
.contact-item-label {
  font-family: var(--f-mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  display: block;
}
.contact-item-value {
  font-size: 0.95rem;
  color: var(--cream);
}
.contact-item-sub {
  font-size: 0.96rem;
  color: var(--muted);
  margin-top: 2px;
}
.contact-quote {
  margin-top: auto;
  padding-top: 36px;
  border-top: 1px solid var(--line-soft);
}
.contact-quote blockquote {
  font-family: var(--f-display); /* Utilise la police serif italique fine d'Antaveda */
  font-size: 1.15rem;
  font-style: italic;
  color: var(--cream);
  line-height: 1.65;
}
.contact-quote blockquote em { color: var(--gold); }
.contact-quote cite {
  display: block;
  margin-top: 12px;
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-style: normal;
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--line-soft);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo {
  font-family: var(--f-body);
  font-size: 1.1rem;
  font-weight: 800;
}
.footer-logo span { color: var(--gold); }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
}
.footer-links a {
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--cream); }
.footer-copy {
  font-family: var(--f-mono);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  color: rgba(245,240,232,0.25);
}

/* ── MENTIONS LEGALES PAGE ──────────────────────────────────── */
.legal-page {
  padding: 140px 0 80px;
}
.legal-page h1 {
  font-size: clamp(1.85rem, 3.4vw, 2.7rem);
  margin-bottom: 40px;
}
.legal-page h2 {
  font-size: 1.2rem;
  color: var(--teal-light);
  margin-top: 40px;
  margin-bottom: 12px;
}
.legal-page p,
.legal-page li {
  font-size: 0.96rem;
  color: rgba(245,240,232,0.75);
  line-height: 1.8;
  margin-bottom: 12px;
}
.legal-page ul { padding-left: 20px; list-style: disc; }

/* ── PAGE SERVICES ──────────────────────────────────────────── */
.page-hero {
  padding: 104px 28px 60px;
  position: relative;
}
.page-hero h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  font-weight: 700;
  margin-bottom: 20px;
}
.page-hero h1 em { color: var(--gold); }
.service-detail {
  padding: 72px 0;
  border-bottom: 1px solid var(--line-soft);
}
.service-detail-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 80px;
  align-items: start;
}
.service-detail-meta {}
.service-detail-meta h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 16px;
}
.service-detail-meta .price {
  font-family: var(--f-mono);
  font-size: 0.93rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  display: block;
}
.service-detail-content h3 {
  font-size: 1.0rem;
  color: var(--teal-light);
  margin-bottom: 14px;
  margin-top: 28px;
}
.service-detail-content ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-detail-content ul li {
  font-size: 0.96rem;
  color: rgba(245,240,232,0.68);
  padding-left: 18px;
  position: relative;
  line-height: 1.6;
}
.service-detail-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 1px;
  background: var(--gold);
}

/* ── ABOUT PAGE ─────────────────────────────────────────────── */
.about-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--line-soft);
}
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.moat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 48px;
}
.moat-cell {
  padding: 36px 32px;
  border: 1px solid var(--line-soft);
  background: rgba(245,240,232,0.04);
  transition: background 0.3s;
}
.moat-cell:hover { background: rgba(245,240,232,0.04); }
.moat-cell.gold-border {
  border-color: rgba(201,168,76,0.25);
  background: rgba(201,168,76,0.04);
}
.moat-cell h3 {
  font-size: 1.0rem;
  margin-bottom: 10px;
  color: var(--cream);
}
.moat-cell p {
  font-size: 0.93rem;
  color: rgba(245,240,232,0.70);
  line-height: 1.65;
}

/* ── ANIMATIONS ─────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── NOTIFICATION ───────────────────────────────────────────── */
.notif {
  position: fixed;
  bottom: 28px;
  right: 28px;
  padding: 16px 24px;
  background: var(--teal);
  color: var(--cream);
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s, transform 0.4s;
  pointer-events: none;
  z-index: 200;
}
.notif.show { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .pillars { grid-template-columns: 1fr 1fr !important; }
  .services-grid { grid-template-columns: 1fr !important; }
  .sanctions-grid { grid-template-columns: 1fr !important; }
  .founder-grid { grid-template-columns: 1fr !important; gap: 40px; }
  .founder-portrait { max-width: 280px; }
  .contact-grid { grid-template-columns: 1fr !important; }
  .contact-info-side { border-left: 1px solid var(--line-soft); border-top: none; }
  .service-detail-grid { grid-template-columns: 1fr !important; gap: 40px; }
  .about-intro-grid { grid-template-columns: 1fr !important; gap: 40px; }
  .moat-grid { grid-template-columns: 1fr !important; }
  .hero-stat-strip { display: none; }
}
@media (max-width: 640px) {
  .pillars { grid-template-columns: 1fr !important; }
  .pillar { padding: 26px 20px; }
  .service-card, .service-card.featured { padding: 28px 22px; }
  .sanction-cell { padding: 26px 20px; }
  .section { padding-top: 64px; padding-bottom: 64px; }
  .contact-form-side, .contact-info-side { padding: 36px 28px; }
  .hero h1 { font-size: 2.4rem; line-height: 1.3 !important; } /* Ajustement mobile indispensable */
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

/* ── MOBILE NAV OPEN ────────────────────────────────────────── */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 72px 24px;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
@media (max-height: 560px) {
  .mobile-nav { justify-content: flex-start; gap: 18px; padding-top: 64px; }
  .mobile-nav a { font-size: 1.5rem; }
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav a {
  font-family: var(--f-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--cream);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-close {
  position: absolute;
  top: 24px; right: 28px;
  font-size: 1.8rem;
  color: var(--muted);
  cursor: pointer;
}

/* ── PHOTO FONDATEUR (PNG fond transparent) ─────────────────── */
.founder-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: drop-shadow(0 0 32px rgba(26,107,114,0.25));
  background: transparent;
}
.founder-portrait {
  background: transparent;
}