/* ===========================================================
   Laleoschool — feuille de style principale
   =========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  /* Palette de marque, dérivée du logo Com1vent / Laleoschool */
  --gold: #c8892f;
  --gold-dark: #a86f22;
  --ink: #1c1712;
  --ink-soft: #3a322a;
  --terracotta: #c1502e;
  --terracotta-dark: #a13f22;
  --sky: #a9d6e5;
  --cream: #faf5eb;
  --cream-deep: #f2e9d8;
  --white: #ffffff;
  --line: rgba(28, 23, 18, 0.1);

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --shadow-soft: 0 20px 45px -25px rgba(28, 23, 18, 0.45);
  --shadow-lift: 0 30px 60px -30px rgba(28, 23, 18, 0.55);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
}

p { line-height: 1.7; margin: 0 0 1em; color: var(--ink-soft); }

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--terracotta);
  display: inline-block;
}

.section { padding: 108px 0; position: relative; }
.section--tight { padding: 72px 0; }
.section--ink { background: var(--ink); color: var(--cream); }
.section--ink p { color: rgba(250, 245, 235, 0.72); }
.section--ink h2, .section--ink h3 { color: var(--cream); }
.section--cream-deep { background: var(--cream-deep); }

.center { text-align: center; }
.lede {
  font-size: 1.15rem;
  max-width: 640px;
}
.center .lede { margin-left: auto; margin-right: auto; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--terracotta); color: var(--white); box-shadow: var(--shadow-soft); }
.btn-primary:hover { background: var(--terracotta-dark); transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: var(--cream); }
.btn-dark:hover { background: #000; transform: translateY(-2px); }
.btn-ghost { background: transparent; border-color: rgba(28,23,18,0.18); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-ghost-light { background: transparent; border-color: rgba(250,245,235,0.35); color: var(--cream); }
.btn-ghost-light:hover { border-color: var(--cream); }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* ---------- Navigation ---------- */
.topbar {
  background: #0f0c09;
  color: rgba(250, 245, 235, 0.62);
  font-size: 0.78rem;
  font-weight: 600;
}
.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 28px;
}
.topbar .topbar-social { display: flex; align-items: center; gap: 14px; }
.topbar .topbar-social a { color: rgba(250, 245, 235, 0.62); font-size: 0.82rem; }
.topbar .topbar-social a:hover { color: var(--gold); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(28, 23, 18, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(250, 245, 235, 0.08);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.28rem;
  color: var(--cream);
}
.brand img { width: 42px; height: 42px; border-radius: 50%; background: var(--white); }
.brand span em {
  font-style: normal;
  color: var(--gold);
}

.nav-bar-row { border-top: 1px solid rgba(250, 245, 235, 0.1); }
.nav-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 15px 0;
}
.nav-links a {
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(250, 245, 235, 0.72);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { color: var(--cream); }

.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-actions .btn-ghost { border-color: rgba(250,245,235,0.3); color: var(--cream); }
.nav-actions .btn-ghost:hover { border-color: var(--cream); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--cream); border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 76px 0 100px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -180px; right: -160px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(200,137,47,0.22), transparent 70%);
  z-index: 0;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 { font-size: clamp(2.4rem, 4.4vw, 3.6rem); }
.hero h1 em { font-style: normal; color: var(--terracotta); }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }

.hero-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  aspect-ratio: 4/5;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute;
  left: -18px; bottom: 28px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 230px;
}
.hero-badge .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--terracotta); flex: none; }
.hero-badge strong { display: block; font-family: var(--font-display); font-size: 1.05rem; }
.hero-badge span { font-size: 0.8rem; color: var(--ink-soft); }

/* ---------- Stats ---------- */
.stat-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 64px;
  padding-top: 44px;
  border-top: 1px solid var(--line);
}
.stat { text-align: center; }
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--terracotta);
}
.stat span { font-size: 0.85rem; color: var(--ink-soft); font-weight: 600; }

/* ---------- Cards / grid ---------- */
.grid { display: grid; gap: 30px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
  height: 100%;
}
.card .icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(140deg, var(--gold), var(--terracotta));
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1.4rem;
}
.card h3 { font-size: 1.2rem; }
.card p { margin-bottom: 0; font-size: 0.96rem; }

.photo-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-soft);
}
.photo-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.photo-card:hover img { transform: scale(1.06); }
.photo-card figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 18px;
  background: linear-gradient(to top, rgba(0,0,0,0.72), transparent);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
}

/* ---------- Split / feature rows ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.split-media.two-up { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.split-media.two-up img { aspect-ratio: 3/4; }
.split-media.two-up img:first-child { margin-top: 34px; }

.tag-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 6px; }
.tag {
  background: var(--cream-deep);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 999px;
}

.checklist { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 12px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-weight: 600; color: var(--ink); }
.checklist li::before {
  content: '✓';
  flex: none;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--white);
  font-size: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}

/* ---------- Timeline ---------- */
.timeline { position: relative; margin-top: 50px; padding-left: 34px; }
.timeline::before { content: ''; position: absolute; left: 8px; top: 6px; bottom: 6px; width: 2px; background: var(--line); }
.timeline-item { position: relative; padding-bottom: 42px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute; left: -34px; top: 4px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--terracotta);
  border: 4px solid var(--cream);
  box-shadow: 0 0 0 2px var(--terracotta);
}
.timeline-item .year { font-family: var(--font-display); color: var(--gold-dark); font-size: 1.05rem; font-weight: 700; }
.timeline-item h4 { margin: 4px 0 6px; font-size: 1.15rem; }

/* ---------- Quote ---------- */
.quote-block {
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: var(--cream);
  padding: 56px;
  position: relative;
}
.quote-block::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 6rem;
  color: rgba(200,137,47,0.5);
  position: absolute;
  top: 6px; left: 30px;
  line-height: 1;
}
.quote-block p { font-family: var(--font-display); font-size: 1.4rem; color: var(--cream); position: relative; z-index: 1; }
.quote-block footer { font-size: 0.85rem; color: rgba(250,245,235,0.65); font-weight: 600; }

/* ---------- CTA banner ---------- */
.cta-banner {
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, var(--terracotta), var(--gold-dark));
  color: var(--white);
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-banner h2 { color: var(--white); margin-bottom: 6px; }
.cta-banner p { color: rgba(255,255,255,0.85); margin: 0; }

/* ---------- Country / school cards ---------- */
.country-card {
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--line);
  padding: 30px;
  box-shadow: var(--shadow-soft);
  position: relative;
}
.country-card.is-soon { opacity: 0.6; }
.status-pill {
  position: absolute; top: 24px; right: 24px;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
}
.status-pill.active { background: rgba(193,80,46,0.12); color: var(--terracotta-dark); }
.status-pill.soon { background: rgba(28,23,18,0.08); color: var(--ink-soft); }
.country-flag { font-size: 2.2rem; margin-bottom: 14px; }

/* ---------- Gallery / lightbox ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery .g-item { border-radius: var(--radius-sm); overflow: hidden; cursor: zoom-in; box-shadow: var(--shadow-soft); }
.gallery .g-item img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1/1; transition: transform .4s ease; }
.gallery .g-item:hover img { transform: scale(1.08); }

.lightbox {
  position: fixed; inset: 0; background: rgba(15, 12, 9, 0.92);
  display: none; align-items: center; justify-content: center;
  z-index: 1000; padding: 40px;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: min(900px, 92vw); max-height: 84vh; border-radius: 12px; box-shadow: 0 30px 80px rgba(0,0,0,0.5); }
.lightbox-close {
  position: absolute; top: 26px; right: 34px;
  color: var(--white); font-size: 2rem; background: none; border: none; cursor: pointer; line-height: 1;
}

/* ---------- Form ---------- */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 44px;
  border: 1px solid var(--line);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; font-size: 0.85rem; margin-bottom: 8px; }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  background: var(--cream);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  resize: vertical;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--terracotta);
}
.form-note { font-size: 0.82rem; color: var(--ink-soft); margin-top: 10px; }

.contact-info-list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 18px; }
.contact-info-list li { display: flex; gap: 14px; align-items: flex-start; }
.contact-info-list .icon-dot {
  width: 40px; height: 40px; border-radius: 12px; flex: none;
  background: rgba(200,137,47,0.14); color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.contact-info-list strong { display: block; font-size: 0.95rem; }
.contact-info-list span { font-size: 0.86rem; color: var(--ink-soft); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(250,245,235,0.75); padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 46px; border-bottom: 1px solid rgba(250,245,235,0.12); }
.footer-brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-size: 1.2rem; color: var(--cream); margin-bottom: 14px; }
.footer-brand img { width: 38px; height: 38px; border-radius: 50%; }
.site-footer h5 { color: var(--cream); font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 18px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.site-footer a:hover { color: var(--cream); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; font-size: 0.8rem; flex-wrap: wrap; gap: 10px; }
.social-row { display: flex; gap: 12px; }
.social-row a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(250,245,235,0.2);
  display: flex; align-items: center; justify-content: center; font-size: 0.9rem;
}
.social-row a:hover { background: var(--terracotta); border-color: var(--terracotta); }

/* ---------- Page header (interior pages) ---------- */
.page-header {
  padding: 60px 0 40px;
  border-bottom: 1px solid var(--line);
}
.breadcrumb { font-size: 0.82rem; font-weight: 700; color: var(--gold-dark); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 14px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Profil d'école (bannière + carte flottante) ---------- */
.profile-hero { position: relative; }
.profile-hero .banner {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}
.profile-card {
  max-width: var(--container);
  margin: -84px auto 0;
  position: relative;
  z-index: 5;
  padding: 0 28px;
  display: flex;
  align-items: flex-end;
  gap: 28px;
  flex-wrap: wrap;
}
.profile-card .logo-box {
  width: 296px;
  height: 296px;
  border-radius: 40px;
  background: var(--white);
  box-shadow: var(--shadow-lift);
  padding: 30px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.profile-card .logo-box img { width: 100%; height: 100%; object-fit: contain; }
.profile-card .identity { padding-bottom: 14px; flex: 1; min-width: 240px; }
.profile-card .identity h1 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 12px; color: var(--white); text-shadow: 0 2px 18px rgba(0,0,0,0.45); }
.profile-card .badges { display: flex; gap: 10px; flex-wrap: wrap; }
.badge-chip {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.94);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink-soft);
  box-shadow: var(--shadow-soft);
}
.badge-chip.is-accent { background: var(--terracotta); color: var(--white); }
.profile-card .profile-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
}
.profile-card .social-mini {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.94);
  box-shadow: var(--shadow-soft);
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* ---------- Barre d'onglets rapide ---------- */
.quick-tabs {
  display: inline-flex;
  gap: 4px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px;
  box-shadow: var(--shadow-soft);
  flex-wrap: wrap;
}
.quick-tabs a {
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.84rem;
  color: var(--ink-soft);
  white-space: nowrap;
}
.quick-tabs a:hover { color: var(--ink); }
.quick-tabs a.is-active { background: var(--ink); color: var(--cream); }

/* ---------- Bandeau d'infos clés ---------- */
.info-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.info-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  box-shadow: var(--shadow-soft);
}
.info-box .label {
  font-size: 0.74rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--ink-soft); margin-bottom: 6px;
}
.info-box .value { font-family: var(--font-display); font-size: 1.15rem; }
.info-box .info-icon { font-size: 1.7rem; flex: none; opacity: 0.85; }

/* ---------- Bandeau ruban (soutien) ---------- */
.ribbon-banner {
  background: linear-gradient(120deg, #241d15, var(--ink));
  border-radius: var(--radius-lg);
  padding: 30px 36px;
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--cream);
  flex-wrap: wrap;
}
.ribbon-badge {
  background: linear-gradient(140deg, var(--gold), var(--gold-dark));
  color: var(--ink);
  border-radius: 18px;
  padding: 14px 20px;
  text-align: center;
  line-height: 1.15;
  flex: none;
  min-width: 108px;
  font-weight: 700;
}
.ribbon-badge strong { display: block; font-family: var(--font-display); font-size: 1.7rem; }
.ribbon-banner .ribbon-content { flex: 1; min-width: 220px; }
.ribbon-banner .ribbon-content h3 { color: var(--cream); margin-bottom: 6px; font-size: 1.2rem; }
.ribbon-banner .ribbon-content p { color: rgba(250,245,235,0.72); margin: 0; font-size: 0.92rem; }

/* ---------- Galerie défilante ---------- */
.gallery-row-wrap { position: relative; }
.gallery-row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding-bottom: 6px;
  scrollbar-width: thin;
}
.gallery-row .g-item { flex: 0 0 220px; scroll-snap-align: start; aspect-ratio: 4/5; }
.gallery-row .g-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-nav { display: flex; gap: 10px; }
.gallery-nav button {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--white);
  cursor: pointer; font-size: 1rem; color: var(--ink);
}
.gallery-nav button:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }

/* ---------- Témoignages ---------- */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 26px;
  box-shadow: var(--shadow-soft);
  height: 100%;
}
.testimonial-card .quote-mark {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.testimonial-card p { font-style: italic; font-size: 0.95rem; }
.testimonial-card .who { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.testimonial-card .avatar {
  width: 40px; height: 40px; border-radius: 50%; flex: none;
  background: var(--cream-deep); color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700;
}
.testimonial-card .who strong { display: block; font-size: 0.88rem; }
.testimonial-card .who span { font-size: 0.78rem; color: var(--ink-soft); }

/* ---------- Mini-cartes (découvrir) ---------- */
.mini-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.mini-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.mini-card .body { padding: 20px 22px; display: flex; flex-direction: column; flex: 1; }
.mini-card h4 { font-size: 1.05rem; margin-bottom: 8px; }
.mini-card p { font-size: 0.86rem; margin-bottom: 16px; flex: 1; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 460px; margin: 0 auto; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split.reverse .split-media { order: -1; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .info-strip { grid-template-columns: 1fr; }
  .profile-card { margin-top: -60px; }
  .profile-card .profile-actions { width: 100%; justify-content: space-between; }
}

@media (max-width: 760px) {
  .nav-links, .nav-actions .btn-ghost { display: none; }
  .nav-toggle { display: flex; }
  .site-header.is-open .nav-links {
    display: flex; flex-direction: column; align-items: flex-start; gap: 6px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #17130e; padding: 18px 28px 26px;
    border-bottom: 1px solid rgba(250,245,235,0.1);
  }
  .site-header.is-open .nav-links a { font-size: 0.92rem; }
  .site-header.is-open .nav-links a { padding: 10px 0; width: 100%; border-bottom: 1px solid rgba(250,245,235,0.06); }
  .topbar { display: none; }
  .section { padding: 72px 0; }
  .stat-bar { grid-template-columns: repeat(2, 1fr); row-gap: 30px; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; text-align: center; padding: 40px 26px; }
  .quote-block { padding: 34px 26px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .profile-hero .banner { height: 260px; }
  .profile-card { margin-top: -50px; flex-direction: column; align-items: flex-start; gap: 16px; }
  .profile-card .logo-box { width: 192px; height: 192px; border-radius: 32px; padding: 18px; }
  .profile-card .profile-actions { padding-bottom: 0; }
  .quick-tabs { overflow-x: auto; max-width: 100%; flex-wrap: nowrap; }
  .ribbon-banner { padding: 26px; text-align: center; justify-content: center; }
  .gallery-row .g-item { flex-basis: 160px; }
}
