/* ===========================================================
   Mon Podcast Liège — feuille de style
   Mobile-first. Breakpoints : 700 / 900 / 1024px.
   =========================================================== */

:root {
  /* Couleurs */
  --ink: #0C1B33;            /* marine - texte / sections sombres */
  --ink-deep: #091428;       /* footer */
  --ink-surface: #1C365F;    /* dégradés */
  --cream: #F4EFE6;          /* fond global */
  --surface: #FBF8F2;        /* cartes */
  --white: #FFFFFF;
  --accent: #EA5A3D;         /* corail - CTA / accents */
  --accent-ink: #C2452C;     /* corail foncé (texte sur crème) */
  --accent-light: #F08B73;   /* corail clair (sur marine) */
  --success: #2F8F5B;
  --error: #C0392B;

  /* Neutres dérivés du marine (une seule température) */
  --muted: rgba(12, 27, 51, .68);
  --muted-2: rgba(12, 27, 51, .5);
  --line: rgba(12, 27, 51, .1);
  --line-soft: rgba(12, 27, 51, .08);

  /* Typo */
  --font-head: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body: 'Hanken Grotesk', system-ui, sans-serif;

  /* Layout */
  --container: 1180px;
  --gutter: clamp(16px, 4vw, 40px);
  --radius: 22px;
  --shadow: 0 22px 44px -20px rgba(12, 27, 51, .5);
  --shadow-soft: 0 12px 30px -20px rgba(12, 27, 51, .45);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: var(--ink); }
a { color: inherit; }
img { max-width: 100%; display: block; }
:focus-visible { outline: 2.5px solid var(--accent); outline-offset: 3px; border-radius: 6px; }
input, select, textarea, button { font-family: inherit; }

.container { max-width: var(--container); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 120px); }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* ---------- Typographie ---------- */
h1, h2, h3, h4 { font-family: var(--font-head); letter-spacing: -.02em; margin: 0; text-wrap: balance; }
.h1 { font-size: clamp(38px, 6.6vw, 76px); line-height: 1.02; font-weight: 700; letter-spacing: -.025em; }
.h2 { font-size: clamp(28px, 4.4vw, 50px); line-height: 1.06; font-weight: 600; }
.h3 { font-size: clamp(20px, 2.4vw, 24px); line-height: 1.2; font-weight: 600; }
.lead { font-size: clamp(17px, 1.6vw, 20px); line-height: 1.6; color: var(--muted); max-width: 34ch; }
.body { color: var(--muted); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 600; font-size: 13px; line-height: 1;
  letter-spacing: .14em; text-transform: uppercase; color: var(--accent-ink);
}
.tabnum { font-variant-numeric: tabular-nums; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 600; font-size: 16px; line-height: 1;
  padding: 16px 24px; min-height: 44px; border-radius: 999px;
  text-decoration: none; border: none; cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease, color .22s ease;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary { background: var(--accent); color: var(--ink); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -14px rgba(234, 90, 61, .85); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid rgba(12, 27, 51, .22); }
.btn-ghost:hover { background: rgba(12, 27, 51, .05); border-color: rgba(12, 27, 51, .4); }
.btn-light { background: var(--cream); color: var(--ink); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn-lg { font-size: 17px; padding: 18px 28px; }

/* ---------- Nav ---------- */
.site-header { position: sticky; top: 0; left: 0; right: 0; z-index: 50; padding: 14px var(--gutter); }
.nav {
  max-width: var(--container); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: rgba(244, 239, 230, .82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line-soft); border-radius: 999px;
  padding: 9px 9px 9px 18px; box-shadow: 0 12px 30px -20px rgba(12, 27, 51, .45);
}
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; flex-shrink: 0; }
.brand img { width: 40px; height: 40px; border-radius: 11px; object-fit: cover; }
.brand-text { display: none; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-family: var(--font-head); font-weight: 700; font-size: 15px; letter-spacing: -.01em; }
.brand-text span { font-weight: 600; font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted-2); margin-top: 3px; }
.nav-links { display: none; align-items: center; gap: 4px; }
.nav-links a {
  text-decoration: none; font-weight: 500; font-size: 15px; color: var(--muted);
  padding: 10px 14px; border-radius: 999px; transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--ink); background: rgba(12, 27, 51, .05); }
.nav-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.nav-cta { padding: 13px 20px; font-size: 15px; }
.nav-toggle {
  width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center;
  background: var(--ink); color: var(--cream); border: none; border-radius: 999px; cursor: pointer;
}
.nav-toggle svg { width: 20px; height: 20px; }
.mobile-panel {
  max-width: var(--container); margin: 10px auto 0;
  background: var(--ink); border-radius: 24px; padding: 14px;
  display: none; flex-direction: column; gap: 4px;
  box-shadow: 0 24px 50px -20px rgba(12, 27, 51, .6);
}
.mobile-panel.open { display: flex; }
.mobile-panel a {
  text-decoration: none; color: var(--cream); font-weight: 500; font-size: 17px;
  padding: 15px 16px; border-radius: 14px; display: flex; justify-content: space-between; align-items: center;
}
.mobile-panel a:hover { background: rgba(244, 239, 230, .08); }
.mobile-panel svg { width: 16px; height: 16px; opacity: .5; }

@media (min-width: 420px) { .brand-text { display: flex; } }
@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
  .mobile-panel { display: none !important; }
}

/* ---------- Hero ---------- */
.hero { padding-top: clamp(110px, 16vw, 170px); padding-bottom: clamp(50px, 7vw, 90px); }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: clamp(36px, 5vw, 64px); align-items: center; }
.hero h1 { margin-top: 22px; }
.hero h1 .accent { color: var(--accent); }
.hero .lead { margin-top: 24px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-loc { display: flex; align-items: center; gap: 10px; margin-top: 26px; font-weight: 500; font-size: 14px; color: var(--muted-2); }
.hero-loc svg { width: 17px; height: 17px; color: var(--accent); flex-shrink: 0; }

.hero-media { position: relative; }
.studio-frame {
  position: relative; aspect-ratio: 4 / 5; border-radius: 26px; overflow: hidden;
  background: radial-gradient(120% 120% at 70% 10%, #1c365f 0%, var(--ink) 55%, #091428 100%);
  box-shadow: 0 40px 80px -34px rgba(12, 27, 51, .7);
}
.studio-frame .scanlines { position: absolute; inset: 0; opacity: .5; background: repeating-linear-gradient(transparent 0 2px, rgba(255, 255, 255, .03) 2px 3px); }
.on-air {
  position: absolute; top: 18px; left: 18px; display: inline-flex; align-items: center; gap: 8px;
  background: rgba(234, 90, 61, .16); border: 1px solid rgba(234, 90, 61, .5); color: #FBC9BB;
  font-weight: 700; font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  padding: 8px 12px; border-radius: 999px; backdrop-filter: blur(6px);
}
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); animation: dot 1.5s infinite; }
.studio-center { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px; }
.studio-disc {
  width: clamp(80px, 14vw, 116px); height: clamp(80px, 14vw, 116px); border-radius: 50%;
  border: 1.5px solid rgba(244, 239, 230, .25); display: flex; align-items: center; justify-content: center;
  color: var(--cream); background: rgba(244, 239, 230, .04);
}
.studio-disc svg { width: 46%; height: 46%; }
.studio-caption { font-weight: 600; font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: rgba(244, 239, 230, .55); }
.waveform { position: absolute; left: 0; right: 0; bottom: 0; height: 84px; display: flex; align-items: flex-end; justify-content: center; gap: 5px; padding: 0 22px 22px; }
.waveform span { flex: 1; max-width: 7px; height: 100%; border-radius: 5px; background: linear-gradient(var(--accent), #F6A48E); transform-origin: bottom; animation: wave 1s ease-in-out infinite; }
.float-card {
  position: absolute; bottom: -22px; left: -14px; background: var(--cream); border: 1px solid var(--line);
  border-radius: 18px; padding: 14px 18px; box-shadow: var(--shadow); animation: float 6s ease-in-out infinite;
}
.float-card b { font-family: var(--font-head); font-weight: 700; font-size: 22px; line-height: 1; }
.float-card span { display: block; font-weight: 500; font-size: 12px; color: var(--muted); margin-top: 3px; }

@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.05fr .95fr; }
}

/* ---------- Marquee ---------- */
.marquee-band { padding: 14px 0 6px; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); overflow: hidden; }
.marquee-label { display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: rgba(12, 27, 51, .42); padding: 6px 0 14px; }
.marquee-track { display: flex; width: max-content; animation: marquee 32s linear infinite; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track span { font-family: var(--font-head); font-weight: 600; font-size: clamp(18px, 2.4vw, 26px); color: rgba(12, 27, 51, .32); padding: 6px clamp(20px, 3vw, 40px); white-space: nowrap; }

/* ---------- Problème ---------- */
.section-head { max-width: 760px; }
.section-head h2 { margin-top: 16px; }
.pains { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); gap: clamp(14px, 2vw, 22px); margin-top: clamp(36px, 4vw, 52px); }
.pain { background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 30px 28px; }
.pain .num { font-family: var(--font-head); font-weight: 700; font-size: 30px; color: rgba(12, 27, 51, .18); }
.pain h3 { margin-top: 14px; }
.pain p { margin: 10px 0 0; font-size: 16px; color: var(--muted); }

/* ---------- Bento studio ---------- */
.bento-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: clamp(30px, 4vw, 48px); }
.bento-head .lead { max-width: 34ch; }
.bento { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); gap: clamp(12px, 1.6vw, 18px); }
.feature { border-radius: 20px; padding: 26px 24px; display: flex; flex-direction: column; gap: 16px; min-height: 178px; background: var(--surface); border: 1px solid var(--line-soft); }
.feature .ic { width: 46px; height: 46px; border-radius: 13px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; background: rgba(234, 90, 61, .1); color: var(--accent-ink); }
.feature .ic svg { width: 23px; height: 23px; }
.feature .body-wrap { margin-top: auto; }
.feature h3 { font-size: 19px; }
.feature p { font-size: 15px; line-height: 1.55; margin: 8px 0 0; color: var(--muted); }
.feature.dark { background: var(--ink); border-color: var(--line); color: var(--cream); }
.feature.dark .ic { background: rgba(234, 90, 61, .16); color: var(--accent-light); }
.feature.dark p { color: rgba(244, 239, 230, .66); }
@media (min-width: 900px) { .feature.wide { grid-column: span 2; } }

/* ---------- Déroulé (dark) ---------- */
.steps-section { background: var(--ink); color: var(--cream); }
.steps-section .eyebrow { color: var(--accent-light); }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); gap: clamp(16px, 2.5vw, 28px); margin-top: clamp(40px, 5vw, 60px); }
.step { position: relative; padding-top: 30px; }
.step::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: rgba(244, 239, 230, .16); }
.step-top { display: flex; align-items: center; justify-content: space-between; }
.step-top .n { font-weight: 700; font-size: 14px; letter-spacing: .14em; color: var(--accent-light); font-variant-numeric: tabular-nums; }
.step-top svg { width: 22px; height: 22px; color: rgba(244, 239, 230, .3); }
.step h3 { font-size: clamp(22px, 2.6vw, 28px); line-height: 1.15; margin-top: 18px; }
.step p { margin: 12px 0 0; color: rgba(244, 239, 230, .7); }

/* ---------- Formules ---------- */
.offers-head { text-align: center; max-width: 640px; margin: 0 auto clamp(36px, 4vw, 52px); }
.offers-head h2 { margin-top: 16px; }
.offers-head p { margin-top: 14px; color: var(--muted); }
.offers { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr)); gap: clamp(14px, 2vw, 22px); align-items: stretch; }
.offer { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: 24px; padding: clamp(26px, 3vw, 34px); display: flex; flex-direction: column; }
.offer.featured { border: 2px solid var(--accent); }
.offer.dark { background: var(--ink); border-color: rgba(244, 239, 230, .14); color: var(--cream); }
.offer .tag { position: absolute; top: 18px; right: 18px; background: var(--accent); color: var(--ink); font-weight: 700; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; padding: 7px 12px; border-radius: 999px; }
.offer h3 { font-size: 22px; }
.offer .tagline { font-size: 15px; line-height: 1.5; margin: 10px 0 0; min-height: 44px; color: var(--muted); }
.offer.dark .tagline { color: rgba(244, 239, 230, .66); }
.offer .price { display: flex; align-items: baseline; gap: 6px; margin-top: 20px; }
.offer .price b { font-family: var(--font-head); font-weight: 700; font-size: clamp(34px, 4vw, 44px); line-height: 1; font-variant-numeric: tabular-nums; }
.offer .price span { font-weight: 500; font-size: 14px; color: var(--muted); }
.offer.dark .price span { color: rgba(244, 239, 230, .66); }
.offer .rule { height: 1px; background: var(--line); margin: 22px 0; }
.offer.dark .rule { background: rgba(244, 239, 230, .16); }
.offer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.offer li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; line-height: 1.45; }
.offer li svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.offer .btn { margin-top: 26px; }

/* ---------- Réalisations ---------- */
.works-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 18px; margin-bottom: clamp(28px, 3.5vw, 44px); }
.works-head h2 { margin-top: 16px; }
.link-underline { text-decoration: none; font-weight: 600; font-size: 15px; color: var(--ink); display: inline-flex; align-items: center; gap: 8px; border-bottom: 1.5px solid var(--accent); padding-bottom: 4px; transition: gap .2s; }
.link-underline:hover { gap: 12px; }
.link-underline svg { width: 16px; height: 16px; }
.works { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr)); gap: clamp(12px, 1.6vw, 18px); }
.work { position: relative; display: block; aspect-ratio: 4 / 3; border-radius: 18px; overflow: hidden; background: var(--ink); text-decoration: none; }
.work img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .82; transition: transform .5s, opacity .3s; }
.work:hover img { transform: scale(1.05); opacity: 1; }
.work::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 40%, rgba(9, 20, 40, .9)); }
.work-meta { position: absolute; left: 16px; right: 16px; bottom: 16px; z-index: 1; display: flex; align-items: flex-end; justify-content: space-between; gap: 10px; }
.work-meta .tag { font-weight: 600; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-light); }
.work-meta .title { font-family: var(--font-head); font-weight: 600; font-size: 17px; color: var(--cream); margin-top: 6px; }
.work-meta .play { width: 38px; height: 38px; border-radius: 50%; background: var(--accent); color: var(--ink); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.work-meta .play svg { width: 16px; height: 16px; }
@media (min-width: 900px) { .work.tall { aspect-ratio: 3 / 4; grid-row: span 2; } }

/* ---------- Témoignages ---------- */
.reviews { background: var(--surface); border: 1px solid var(--line-soft); border-radius: 30px; padding: clamp(34px, 5vw, 64px); }
.reviews-head { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-bottom: clamp(28px, 3.5vw, 44px); }
.stars { display: inline-flex; gap: 2px; color: var(--accent); }
.stars svg { width: 20px; height: 20px; }
.reviews-head .score { font-weight: 600; font-size: 16px; font-variant-numeric: tabular-nums; }
.reviews-head .meta { font-size: 15px; color: var(--muted-2); }
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); gap: clamp(16px, 2vw, 24px); }
.review { margin: 0; background: var(--white); border: 1px solid rgba(12, 27, 51, .07); border-radius: 20px; padding: 28px 26px; display: flex; flex-direction: column; gap: 18px; }
.review .qmark { color: rgba(234, 90, 61, .4); }
.review .qmark svg { width: 30px; height: 30px; }
.review blockquote { margin: 0; font-weight: 500; font-size: 17px; line-height: 1.55; flex: 1; }
.review figcaption { display: flex; align-items: center; gap: 12px; }
.review .avatar { width: 42px; height: 42px; border-radius: 14px; background: var(--ink); color: var(--cream); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700; font-size: 15px; }
.review .name { display: block; font-weight: 600; font-size: 15px; }
.review .role { display: block; font-size: 13px; color: var(--muted-2); margin-top: 2px; }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 880px; margin: 0 auto; }
.faq-head { text-align: center; margin-bottom: clamp(28px, 3.5vw, 44px); }
.faq-head h2 { margin-top: 16px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--surface); border: 1px solid var(--line-soft); border-radius: 18px; overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: var(--font-head); font-weight: 600; font-size: clamp(16px, 1.8vw, 19px); line-height: 1.35; color: var(--ink); min-height: 44px; }
.faq-icon { width: 30px; height: 30px; flex-shrink: 0; border-radius: 50%; background: rgba(12, 27, 51, .08); color: var(--muted-2); display: flex; align-items: center; justify-content: center; transition: transform .25s, background .25s, color .25s; }
.faq-icon svg { width: 16px; height: 16px; }
.faq-item.open .faq-icon { background: var(--accent); color: var(--ink); transform: rotate(45deg); }
.faq-a { margin: 0; max-height: 0; overflow: hidden; padding: 0 24px; font-size: 16px; line-height: 1.62; color: var(--muted); max-width: 62ch; transition: max-height .3s ease, padding .3s ease; }
.faq-item.open .faq-a { max-height: 320px; padding-bottom: 24px; }

/* ---------- Réservation ---------- */
.booking { display: grid; grid-template-columns: 1fr; background: radial-gradient(130% 120% at 85% 0%, #1c365f 0%, var(--ink) 58%); border-radius: 30px; overflow: hidden; color: var(--cream); }
.booking-info { padding: clamp(34px, 5vw, 62px); }
.booking-info .eyebrow { color: var(--accent-light); }
.booking-info h2 { margin-top: 18px; }
.booking-info .lead { color: rgba(244, 239, 230, .72); margin-top: 18px; max-width: 42ch; }
.booking-contacts { display: flex; flex-direction: column; gap: 16px; margin-top: 34px; }
.booking-contacts div { display: flex; align-items: center; gap: 13px; font-weight: 500; font-size: 15px; line-height: 1.4; color: rgba(244, 239, 230, .85); }
.booking-contacts svg { width: 19px; height: 19px; color: var(--accent-light); flex-shrink: 0; }
.booking-form { background: var(--cream); color: var(--ink); padding: clamp(28px, 4vw, 46px); }
.booking-form form { display: flex; flex-direction: column; gap: 16px; }
.field-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr)); gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; font-weight: 600; font-size: 13px; }
.field input, .field select, .field textarea { font-weight: 400; font-size: 16px; line-height: 1.3; padding: 14px 15px; border-radius: 12px; border: 1.5px solid rgba(12, 27, 51, .16); background: var(--white); color: var(--ink); min-height: 44px; transition: border-color .2s; }
.field textarea { line-height: 1.5; resize: vertical; min-height: auto; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); outline: none; }
.field select { appearance: none; }
.form-note { font-size: 13px; line-height: 1.5; color: var(--muted-2); margin: 0; text-align: center; }
.booking-success { min-height: 340px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 16px; }
.booking-success .check { width: 64px; height: 64px; border-radius: 50%; background: var(--accent); color: var(--ink); display: flex; align-items: center; justify-content: center; }
.booking-success .check svg { width: 30px; height: 30px; }
.booking-success p { max-width: 34ch; margin: 0; color: var(--muted); }
.hidden { display: none !important; }
@media (min-width: 860px) { .booking { grid-template-columns: 1fr 1fr; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink-deep); color: var(--cream); padding: clamp(50px, 6vw, 80px) var(--gutter) 32px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); gap: 36px 28px; padding-bottom: clamp(34px, 4vw, 52px); border-bottom: 1px solid rgba(244, 239, 230, .12); }
.footer-brand .brand-line { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.footer-brand img { width: 44px; height: 44px; border-radius: 12px; }
.footer-brand strong { font-family: var(--font-head); font-weight: 700; font-size: 18px; letter-spacing: -.01em; }
.footer-brand p { font-size: 15px; line-height: 1.6; color: rgba(244, 239, 230, .6); margin: 18px 0 0; max-width: 34ch; }
.socials { display: flex; gap: 10px; margin-top: 22px; }
.socials a { width: 42px; height: 42px; border-radius: 12px; border: 1px solid rgba(244, 239, 230, .18); display: flex; align-items: center; justify-content: center; color: var(--cream); text-decoration: none; transition: background .2s, border-color .2s, color .2s; }
.socials a:hover { background: var(--accent); border-color: var(--accent); color: var(--ink); }
.socials svg { width: 20px; height: 20px; }
.footer-col h4 { font-family: var(--font-body); font-weight: 600; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: rgba(244, 239, 230, .45); margin: 0 0 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { text-decoration: none; font-size: 15px; color: rgba(244, 239, 230, .72); transition: color .2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; padding-top: 24px; font-size: 13px; color: rgba(244, 239, 230, .5); }
.footer-bottom a { text-decoration: none; color: inherit; }
.footer-bottom a:hover { color: var(--accent); }
.footer-bottom .links { display: flex; gap: 18px; }
@media (min-width: 900px) { .footer-brand { grid-column: span 2; } }

/* ---------- Révélations au scroll (enrichissement progressif) ----------
   Par défaut le contenu est VISIBLE. Le masquage n'est appliqué que si le JS
   ajoute la classe .reveal-armed sur <html> (IO supporté + motion autorisé). */
.reveal-armed [data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.22, .61, .36, 1), transform .7s cubic-bezier(.22, .61, .36, 1); }
.reveal-armed [data-reveal].in { opacity: 1; transform: none; }

/* ---------- Animations ---------- */
@keyframes wave { 0%, 100% { transform: scaleY(.28); } 50% { transform: scaleY(1); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes dot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .4; transform: scale(.7); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ===========================================================
   Pages & articles classiques (blog, page WordPress)
   =========================================================== */
.mp-content { padding-top: clamp(120px, 16vw, 170px); padding-bottom: clamp(64px, 9vw, 110px); }
.mp-content .container { max-width: 760px; }
.mp-article-head { margin-bottom: clamp(28px, 4vw, 44px); }
.mp-eyebrow { font-weight: 600; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-ink); }
.mp-article-head h1 { font-family: var(--font-head); font-weight: 700; font-size: clamp(32px, 5vw, 56px); line-height: 1.05; letter-spacing: -.02em; margin: 14px 0 0; text-wrap: balance; }
.mp-meta { font-size: 14px; color: var(--muted-2); margin-top: 14px; }
.mp-prose { font-size: 17px; line-height: 1.7; color: rgba(12, 27, 51, .82); }
.mp-prose > * + * { margin-top: 1.1em; }
.mp-prose h2 { font-family: var(--font-head); font-weight: 600; font-size: clamp(24px, 3vw, 32px); line-height: 1.15; letter-spacing: -.01em; margin-top: 1.6em; }
.mp-prose h3 { font-family: var(--font-head); font-weight: 600; font-size: 22px; margin-top: 1.4em; }
.mp-prose a { color: var(--accent-ink); text-underline-offset: 3px; }
.mp-prose img { border-radius: 16px; margin: 1.4em 0; }
.mp-prose blockquote { margin: 1.4em 0; padding: 6px 0 6px 22px; border-left: 3px solid var(--accent); color: var(--muted); font-style: italic; }
.mp-prose ul, .mp-prose ol { padding-left: 1.3em; }
.mp-prose li + li { margin-top: .4em; }
.mp-prose code { background: var(--surface); padding: 2px 6px; border-radius: 6px; font-size: .9em; }
.mp-back { display: inline-flex; align-items: center; gap: 8px; margin-top: clamp(32px, 4vw, 48px); font-weight: 600; font-size: 15px; color: var(--ink); text-decoration: none; border-bottom: 1.5px solid var(--accent); padding-bottom: 4px; }
.mp-posts { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); gap: clamp(16px, 2vw, 24px); margin-top: clamp(28px, 4vw, 44px); }
.mp-card { background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 26px 24px; text-decoration: none; color: var(--ink); display: flex; flex-direction: column; gap: 10px; transition: transform .22s, box-shadow .22s; }
.mp-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.mp-card h2 { font-family: var(--font-head); font-weight: 600; font-size: 20px; line-height: 1.2; margin: 0; }
.mp-card p { font-size: 15px; color: var(--muted); margin: 0; }
.mp-card .mp-meta { margin: 0; }
