﻿:root {
  --bg: #fff9f4;
  --ink: #1f1f24;
  --muted: #5b5d66;
  --brand: #ed971b;
  --brand-dark: #ed971b;
  --card: #ffffffd9;
  --line: #1f1f2414;
  --radius: 20px;
  --shadow: 0 16px 50px #00000014;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: "Sora", sans-serif;
  line-height: 1.15;
  margin: 0 0 0.8rem;
}

h1 {
  font-size: clamp(1.9rem, 5.8vw, 4rem);
  max-width: 14ch;
}

h2 {
  font-size: clamp(1.35rem, 3vw, 2.3rem);
}

p {
  margin: 0 0 0.9rem;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(6px);
}

.orb-a {
  width: min(46vw, 520px);
  aspect-ratio: 1;
  background: radial-gradient(circle at 40% 40%, #ffd08a, #ed971b20 70%);
  top: -12%;
  left: -8%;
}

.orb-b {
  width: min(52vw, 620px);
  aspect-ratio: 1;
  background: radial-gradient(circle at 60% 40%, #ffe7bf, #ed971b14 70%);
  bottom: -22%;
  right: -14%;
}

.grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(#ed971b0c 1px, transparent 1px), linear-gradient(90deg, #ed971b0c 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 50% 30%, #000 45%, transparent 100%);
}

.container {
  width: min(1120px, calc(100% - 2.2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background: #fff9f4d4;
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-cta {
  display: none;
}

.nav-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: var(--radius);
  transition: background 0.2s;
}
.nav-burger:hover,
.nav-burger:focus-visible {
  background: var(--line);
}
.nav-burger-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.25s;
}
.site-header.nav-open .nav-burger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-header.nav-open .nav-burger-bar:nth-child(2) {
  opacity: 0;
}
.site-header.nav-open .nav-burger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9998;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s, visibility 0.25s;
}
.site-header.nav-open .nav-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  width: min(320px, 85vw);
  height: 100vh;
  height: 100dvh;
  max-height: 100vh;
  max-height: 100dvh;
  background: var(--bg);
  border-left: 1px solid var(--line);
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.15);
  padding: 5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}
.site-header.nav-open .nav-drawer {
  transform: translateX(0);
}

.nav-drawer-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--ink);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.nav-drawer-close:hover,
.nav-drawer-close:focus-visible {
  background: var(--line);
  color: var(--brand-dark);
}

.nav-drawer-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}
.nav-drawer-list li {
  margin: 0;
}
.nav-drawer-link {
  display: block;
  padding: 0.75rem 0;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: color 0.2s, background 0.2s;
}
.nav-drawer-link:hover,
.nav-drawer-link:focus-visible {
  color: var(--brand-dark);
}

.nav-drawer-cta {
  margin-top: auto;
  text-align: center;
}

@media (min-width: 768px) {
  .nav-cta {
    display: inline-flex;
  }
}

.brand img {
  height: 38px;
  width: auto;
  display: block;
}

.hero {
  padding: clamp(2.8rem, 4vw, 4.8rem) 0 2.2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: start;
}

.hero-art {
  aspect-ratio: 16 / 9;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  border: 1px solid #ed971b4d;
  box-shadow: 0 26px 60px #ed971b3d;
}

.hero-art iframe,
.hero-art img,
.hero-art video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-top-text {
  align-self: center;
}

.hero-title {
  font-size: clamp(1.6rem, 3.2vw, 2.8rem);
  max-width: 18ch;
  margin-bottom: 0;
}

.hero-subtitle {
  margin: 0 0 0.75rem;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

.hero-block2-left {
  grid-column: 1 / -1;
}

.hero-block2-left .hero-subtitle {
  margin-bottom: 0.75rem;
}

.hero-intro-visual {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  border-radius: 20px;
  overflow: hidden;
}

.hero-bottom {
  grid-column: 1 / -1;
}

.hero-lead-out {
  max-width: 67ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.65vw, 1.2rem);
  margin: 0 0 1rem;
}

.hero-lead-out strong {
  color: var(--brand-dark);
  font-weight: 800;
}
.eyebrow,
.theme-label {
  display: inline-block;
  margin: 0 0 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.eyebrow {
  color: var(--brand-dark);
}

.theme-label {
  color: #1f1f24b8;
}

.lead {
  max-width: 67ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.65vw, 1.2rem);
}

.hero-intro {
  max-width: 74ch;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid #ed971b33;
  background: linear-gradient(120deg, #ffffffeb, #fff8ecf2);
  box-shadow: 0 10px 24px #ed971b1a;
}


.hero-detail {
  margin: 0;
  color: #363942;
  font-size: clamp(0.98rem, 1.3vw, 1.08rem);
}

.hero-intro strong {
  color: var(--brand-dark);
  font-weight: 800;
}

.pillars {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.pillars span,
.tags span {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid #ed971b2e;
  background: #ffffffb3;
  font-weight: 600;
  font-size: 0.92rem;
}

.hero-cta {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: flex-start;
}

.hero-cta-desktop {
  display: none;
}

.hero-cta-mobile {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: flex-start;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(130deg, var(--brand), #f2b037);
  color: #fff;
  box-shadow: 0 10px 24px #ed971b52;
}

.btn-secondary,
.btn-ghost {
  color: var(--ink);
  border-color: #ed971b30;
  background: #ffffffd9;
}

.metrics {
  margin-top: 1rem;
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.metrics article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  background: var(--card);
  box-shadow: var(--shadow);
}

.number {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.7rem, 4.4vw, 2.7rem);
  color: var(--brand-dark);
}

.theme {
  margin: 2.3rem 0;
  padding: 2.1rem 0;
  position: relative;
}

.theme::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

.theme-network::before {
  background: radial-gradient(circle at 15% 30%, #ffe6bf, transparent 42%), linear-gradient(180deg, #ffffff82, #ffffff4f);
}

.pourquoi-layout {
  display: block;
}

.pourquoi-visual {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 1.25rem;
  border-radius: var(--radius);
  overflow: hidden;
}

.theme-action::before {
  background: repeating-linear-gradient(125deg, #fff7e8 0 12px, #ffffff 12px 24px);
}

.theme-cycles::before {
  background: linear-gradient(135deg, #f7fbff, #ecf6ff);
}

.cycles-header {
  margin-bottom: 1.5rem;
}

.cycles-header h2 {
  margin-bottom: 0.5rem;
}

.cycles-header p {
  margin: 0;
  max-width: 72ch;
  color: var(--muted);
}

/* Cycles Kilink â€” mobile first, liste en accordÃ©on */
.cycles-content {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
  padding: 1.2rem;
}

.cycles-content h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand-dark);
}

.cycle-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.cycle-item {
  border-radius: 12px;
  background: linear-gradient(120deg, #fff 0%, #fff9eb 100%);
  border: 1px solid #ed971b29;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.cycle-item:hover,
.cycle-item:focus-within {
  border-color: #ed971b66;
  box-shadow: 0 6px 16px #ed971b20;
}

.cycle-item.open {
  border-color: #ed971b9e;
  background: linear-gradient(120deg, #fff, #fff3d9);
  box-shadow: 0 8px 20px #ed971b28;
}

.cycle-item-summary {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 0.65rem;
  align-items: center;
  padding: 0.7rem 0.75rem;
  cursor: pointer;
}

.cycle-item-summary img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.cycle-item-summary strong {
  display: block;
  font-size: 0.9rem;
  line-height: 1.3;
}

.cycle-item-summary span {
  display: block;
  color: var(--muted);
  font-size: 0.79rem;
  margin-top: 0.15rem;
}

.cycle-item-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
}

.cycle-item.open .cycle-item-detail {
  max-height: 50rem;
}

.cycle-item-detail-inner {
  margin: 0 0.75rem 0.85rem;
  padding-top: 0.75rem;
  border-top: 1px solid #ed971b33;
}

.cycle-item-detail-inner .focus-label {
  margin: 0 0 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-dark);
}

.cycle-item-detail-inner .focus-title {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-family: "Sora", sans-serif;
}

.cycle-item-detail-inner .focus-meta {
  margin: 0 0 0.4rem;
  font-weight: 700;
  font-size: 0.85rem;
  color: #4a4c53;
}

.cycle-item-detail-inner .focus-desc,
.cycle-item-detail-inner .focus-note {
  margin: 0;
  font-size: 0.9rem;
  color: #33353b;
  line-height: 1.45;
}

.cycle-item-detail-inner .focus-note {
  margin-top: 0.4rem;
  color: var(--brand-dark);
}

.cycle-item-detail-inner .btn-cycle-more {
  display: inline-flex;
  margin-top: 0.9rem;
  color: var(--ink);
  text-decoration: none;
  border: 1px solid #ed971b30;
  background: #ffffffd9;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.cycle-item-detail-inner .btn-cycle-more:hover {
  border-color: var(--brand);
  background: #fff8ee;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px #ed971b25;
}

.theme-dual::before {
  background: linear-gradient(90deg, #fff8f1 0 50%, #f9f7ff 50% 100%);
}

.theme-target::before {
  background: radial-gradient(circle at 85% 25%, #ffe2af 0 20%, #fff8f1 40% 100%);
}

.theme-benefits::before {
  background: linear-gradient(160deg, #fff6e6, #ffe9c6);
}

.theme-cta::before {
  background: linear-gradient(140deg, #1f1f24 0%, #393845 55%, #ed971b 125%);
}

.content p,
.split p,
.cta p {
  color: var(--muted);
  max-width: 72ch;
}

.cards {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  border: 1px solid #ed971b1f;
  border-radius: var(--radius);
  background: #ffffffd9;
  box-shadow: var(--shadow);
  padding: 1.15rem;
}

.atelier-block-icon,
.matinales-block-icon,
.cycles-block-icon {
  width: 50%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.75rem;
  object-fit: contain;
}

.atelier-summary p {
  margin-bottom: 0.75rem;
}

.atelier-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
}

.atelier-block.open .atelier-detail {
  max-height: 30rem;
}

.atelier-detail-visual {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  margin-bottom: 0.75rem;
}

.atelier-detail p {
  padding-top: 0;
  margin-top: 0;
  border-top: none;
}

.btn-atelier-toggle {
  color: var(--ink);
  text-decoration: none;
  border: 1px solid #ed971b30;
  background: #ffffffd9;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn-atelier-toggle:hover {
  border-color: var(--brand);
  background: #fff8ee;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px #ed971b25;
}

/* Bloc Matinales : En savoir plus / Voir moins */
.matinales-summary p {
  margin-bottom: 0.75rem;
}

.matinales-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
}

.matinales-block.open .matinales-detail {
  max-height: 25rem;
}

.matinales-detail p {
  padding-top: 0.75rem;
  margin-top: 0;
  border-top: 1px solid #ed971b33;
}

.btn-matinales-toggle {
  color: var(--ink);
  text-decoration: none;
  border: 1px solid #ed971b30;
  background: #ffffffd9;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn-matinales-toggle:hover {
  border-color: var(--brand);
  background: #fff8ee;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px #ed971b25;
}

.matinales-next-label {
  margin: 1rem 0 0.35rem;
  padding: 0;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--brand-dark);
}

.matinales-next {
  margin: 0 0 0;
  padding: 0.85rem 1rem;
  background: linear-gradient(120deg, #fff8ee, #fff5e6);
  border: 1px solid #ed971b40;
  border-radius: var(--radius);
  font-size: 0.98rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.matinales-next-icon {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  object-fit: contain;
}

.matinales-next-title {
  flex: 1;
}

.matinales-next-grid {
  display: grid;
  gap: 1rem;
  margin: 0 0 0;
}

.matinales-next-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.matinales-next-card:hover,
.matinales-next-card:focus-visible {
  border-color: var(--brand);
  box-shadow: 0 4px 16px rgba(237, 151, 27, 0.15);
}
.matinales-next-card .matinales-next-title {
  flex: 1 1 100%;
  font-weight: 700;
}
.matinales-next-card .matinales-next-desc {
  font-size: 0.85rem;
  color: var(--muted);
  margin-left: calc(2.5rem + 0.75rem);
}

@media (min-width: 768px) {
  .matinales-next-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.matinales-upcoming-list a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.matinales-upcoming-list a:hover,
.matinales-upcoming-list a:focus-visible {
  color: var(--brand-dark);
  border-bottom-color: var(--brand);
}

.matinales-upcoming {
  margin: 0.6rem 0 0;
  padding: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

.matinales-upcoming-label {
  display: block;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.35rem;
}

.matinales-upcoming-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.matinales-upcoming-list li {
  margin-bottom: 0.2rem;
}

.matinales-upcoming--page {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

/* Rubrique Matinales â€“ index : liste des prochaines Ã©ditions */
.matinales-editions-list {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.matinales-edition-card {
  border: 1px solid #ed971b29;
  border-radius: var(--radius);
  background: linear-gradient(120deg, #fff 0%, #fff9eb 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.matinales-edition-card:hover {
  border-color: #ed971b5c;
  box-shadow: 0 20px 50px #ed971b18;
}

.matinales-edition-content {
  padding: 1.25rem 1.35rem;
}

.matinales-edition-date {
  margin: 0 0 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand-dark);
}

.matinales-edition-title {
  margin: 0 0 0.5rem;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.25;
  color: var(--ink);
}

.matinales-edition-desc {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
}

.matinales-edition-content .btn {
  margin-top: 0.25rem;
}

.atelier-footer-note {
  margin: 1rem 0 0.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.atelier-footer-link {
  color: var(--brand-dark);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid #ed971b60;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.atelier-footer-link:hover {
  color: var(--brand);
  border-bottom-color: var(--brand);
}

.atelier-footer-cta {
  margin: 0.75rem 0 0;
}

/* Formulaire contact */
.contact-form {
  max-width: 32rem;
  margin-top: 1.5rem;
}
.contact-form .form-group {
  margin-bottom: 1.1rem;
}
.contact-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.35rem;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="number"],
.contact-form textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(237, 151, 27, 0.15);
}
.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}
.contact-form .form-hint {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.25rem;
}
.contact-form .btn-submit {
  margin-top: 0.5rem;
}
.contact-form .honeypot-wrap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
.contact-success {
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
  border: 1px solid rgba(76, 175, 80, 0.3);
  border-radius: var(--radius);
  color: #2e7d32;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

ul {
  margin: 0.8rem 0 0;
  padding-left: 1.1rem;
}

li {
  margin-bottom: 0.35rem;
}

.tags {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.theme-cycles .tags span {
  background: linear-gradient(135deg, #fff, #fff8e8);
  border-color: #ed971b47;
  box-shadow: 0 8px 20px #ed971b1a;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.theme-cycles .tags span:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px #ed971b2b;
}

.split {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.split article:only-child {
  grid-column: 1 / -1;
}

.split article,
.benefits,
.cta,
.content {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
  padding: 1.2rem;
}

.theme-dual .split article:first-child {
  border-color: #ed971b3a;
  background: linear-gradient(180deg, #fff, #fff8ea);
}

.theme-dual .split article:last-child {
  border-color: #ed971b26;
  background: linear-gradient(180deg, #fff, #fffdf6);
}

.benefits li {
  list-style: none;
  position: relative;
  padding-left: 1.45rem;
}

.benefits li::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ed971b;
  position: absolute;
  left: 0;
  top: 0.5rem;
}

.cta {
  text-align: center;
  padding: 1.8rem 1.2rem;
  background: #ffffff14;
  border-color: #ffffff2e;
}

.theme-cta h2,
.theme-cta h1,
.theme-cta p {
  color: #fff;
}

.reservation-recap,
.reservation-invoice-notice {
  margin: 1rem 0;
}

.reservation-invoice-notice {
  font-size: 1.05rem;
}

.theme-cta .reservation-back a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
}

.theme-cta .reservation-back a:hover {
  color: #fff;
}

.reservation-back {
  margin-top: 1.5rem;
}

.reservation-choix-list {
  margin: 1.25rem 0;
}

.reservation-choix-item {
  display: block;
  padding: 1rem 1.1rem;
  margin-bottom: 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.reservation-choix-item:hover:not(.reservation-choix-item--complet) {
  border-color: var(--brand);
  background: #fff8ee;
}

.reservation-choix-item input {
  margin-right: 0.75rem;
  vertical-align: middle;
}

.reservation-choix-item--complet {
  opacity: 0.7;
  cursor: not-allowed;
}

.reservation-choix-meta,
.reservation-choix-prix,
.reservation-choix-places {
  font-size: 0.95rem;
  color: var(--muted);
}

.reservation-choix-complet {
  color: #b91c1c;
  font-weight: 600;
}

.reservation-choix-submit {
  margin-top: 1rem;
}

.reservation-recap-list {
  list-style: none;
  margin: 1rem 0;
  padding: 0;
  text-align: left;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.reservation-recap-list .reservation-recap {
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.reservation-recap-list .reservation-recap:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.reservation-total {
  margin: 1rem 0;
  font-size: 1.1rem;
}

.reservation-form-editions-list {
  margin: 0.5rem 0 0 1.25rem;
  padding: 0;
}

.reservation-reduction-notice {
  padding: 0.85rem 1rem;
  background: linear-gradient(120deg, #fff8ee, #fff5e6);
  border: 1px solid #ed971b40;
  border-radius: var(--radius);
  margin: 1rem 0 1.25rem;
  font-size: 0.98rem;
}

.reservation-tarif-degressif {
  font-size: 1rem;
}

.reservation-tarif-degressif strong {
  color: var(--accent, #c45a27);
}

.reservation-tarif-degressif-confirme {
  margin: 0.5rem 0 1rem;
  padding: 0.6rem 0.9rem;
  background: #f0f9f0;
  border: 1px solid rgba(0, 120, 0, 0.2);
  border-radius: var(--radius);
  font-size: 0.98rem;
}

.reservation-tarif-degressif-hint {
  font-size: 0.92em;
  color: var(--muted);
}

.reservation-optional {
  font-weight: 400;
  color: var(--muted);
  font-size: 0.9em;
}

.reservation-legend-required {
  font-weight: 400;
  font-size: 0.9em;
  color: var(--muted);
}

.reservation-fieldset-choix .reservation-choix-list--inline .reservation-choix-item {
  margin-bottom: 0.5rem;
}

.reservation-choix-hint {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.btn-reservation-payer {
  margin-top: 0.5rem;
}

.reservation-edition-recap {
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.reservation-erreur {
  padding: 0.75rem 1rem;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--radius);
  color: #b91c1c;
  margin-bottom: 1rem;
}

.reservation-form label {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.reservation-form input[type="text"],
.reservation-form input[type="email"],
.reservation-form input[type="tel"],
.reservation-form textarea,
.reservation-form select {
  width: 100%;
  max-width: 28rem;
  padding: 0.5rem 0.6rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
}

.reservation-fieldset {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
}

.reservation-fieldset legend {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  padding: 0 0.5rem;
}

.reservation-submit {
  margin-top: 1.25rem;
}

.required {
  color: var(--brand-dark);
}

.site-footer {
  margin-top: 2.3rem;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
  padding: 1rem 0 2rem;
  color: var(--muted);
  font-size: 0.95rem;
  text-align: center;
}

/* Visible par dÃ©faut pour Ã©viter un flash (logo seul) au chargement.
   Quand body.reveals-ready est posÃ© par le JS, les .reveal hors viewport sont masquÃ©s puis rÃ©vÃ©lÃ©s au scroll. */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

body.reveals-ready .reveal:not(.visible) {
  opacity: 0;
  transform: translateY(28px);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Page Matinale IA â€“ Hero fond image */
.hero-bg {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: clamp(5rem, 10vw, 7rem) 0 clamp(3rem, 6vw, 4.5rem);
  margin: 0;
  overflow: hidden;
  border-radius: 0 0 32px 32px;
}

.hero-bg-backdrop {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(31, 31, 36, 0.92) 0%, rgba(31, 31, 36, 0.82) 40%, rgba(31, 31, 36, 0.68) 70%, rgba(31, 31, 36, 0.5) 100%);
  backdrop-filter: blur(0);
}

.hero-bg-content {
  position: relative;
  z-index: 1;
  max-width: 36rem;
  color: #fff;
}

.hero-bg-eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffd08a;
}

.hero-bg-title {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.85rem, 4.5vw, 3rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  color: #fff;
  max-width: 16ch;
}

.hero-bg-lead {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.5;
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.92);
  max-width: 42ch;
}

.hero-bg-lead strong {
  color: #fff;
}

.hero-bg-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-bottom: 1.5rem;
}

.hero-bg-meta-item {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.9rem;
  font-weight: 600;
}

.btn-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  background: linear-gradient(130deg, var(--brand), #f2b037);
  color: #fff;
  text-decoration: none;
  border: none;
  box-shadow: 0 12px 32px rgba(237, 151, 27, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(237, 151, 27, 0.5);
}

.hero-bg-note {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

/* Page Matinale IA â€“ suite */
/* Section "Tout le monde parle d'IA" : titre pleine largeur, puis 2/3 texte + 1/3 visuel */
.matinale-probleme-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto 1fr;
  gap: 1.75rem;
  align-items: start;
}

.matinale-probleme-layout--text-only {
  grid-template-columns: 1fr;
}

.matinale-probleme-title {
  grid-column: 1 / -1;
  margin: 0 0 0.25rem;
}

.matinale-probleme-text {
  min-width: 0;
}

.matinale-probleme-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #ed971b3a;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.matinale-probleme-visual img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
  object-fit: cover;
  object-position: center;
}

.lafourcade-placeholder {
  padding: 2rem;
  text-align: center;
  background: linear-gradient(135deg, #f8f6f3, #efeae4);
  border-radius: var(--radius);
  min-height: 12rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.lafourcade-placeholder p {
  margin: 0.25rem 0;
}

.matinale-infos .hero-detail {
  margin-bottom: 0.75rem;
}

.matinale-places-note {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.section-head-center,
.section-lead.center,
.section-outro.center {
  text-align: center;
}

.section-head-center {
  margin-bottom: 0.5rem;
}

.section-lead {
  max-width: 72ch;
  margin-left: auto;
  margin-right: auto;
}

.section-outro {
  margin-top: 1.25rem;
  max-width: 72ch;
  margin-left: auto;
  margin-right: auto;
}

.matinale-usages-list {
  list-style: none;
  padding-left: 0;
  margin: 1.25rem 0 0;
  max-width: 72ch;
  margin-left: auto;
  margin-right: auto;
}

.matinale-usages-item {
  margin-bottom: 0.5rem;
  border-radius: 12px;
  border: 1px solid #ed971b29;
  background: linear-gradient(120deg, #fff 0%, #fff9eb 100%);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.matinale-usages-item:hover {
  border-color: #ed971b4d;
}

.matinale-usages-item-title {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  width: 100%;
  padding: 0.85rem 1rem;
  text-align: left;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.2s ease;
}

.matinale-usages-item-title:hover {
  background: rgba(237, 151, 27, 0.08);
}

.matinale-usages-item-title span:not(.matinale-usages-item-icon) {
  flex: 1;
}

.matinale-usages-item-title-copy {
  display: grid;
  gap: 0.2rem;
  flex: 1;
}

.matinale-usages-item-title-main {
  font-weight: 700;
  color: var(--ink);
}

.matinale-usages-item-title-desc {
  font-size: 0.9rem;
  font-weight: 500;
  color: #4a5261;
  line-height: 1.45;
}

.matinale-usages-item-icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  position: relative;
  transition: transform 0.25s ease;
  color: var(--brand-dark);
}

.matinale-usages-item-icon::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  margin-left: -4px;
  margin-top: -5px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.matinale-usages-item.open .matinale-usages-item-icon {
  transform: rotate(-180deg);
}

.matinale-usages-item-desc {
  padding: 0 1rem 1rem;
  padding-left: calc(1rem + 1.25rem);
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.2s ease, padding 0.2s ease;
}

.matinale-usages-item.open .matinale-usages-item-desc {
  max-height: 35rem;
  padding-top: 0;
  padding-bottom: 1rem;
  opacity: 1;
}

.matinale-infos-block {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid #ed971b33;
  background: linear-gradient(120deg, #ffffffeb, #fff8ecf2);
  margin-bottom: 1rem;
}

.matinale-infos-block strong {
  color: var(--brand-dark);
}

.fp-intro-wrap {
  max-width: 76ch;
  margin-left: auto;
  margin-right: auto;
}

.fp-intro-list {
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}

.fp-intro-item {
  border: 1px solid #1f1f2430;
  border-radius: 16px;
  background: linear-gradient(140deg, #ffffff, #f6f8fb);
  box-shadow: 0 8px 22px #0000000a;
  overflow: hidden;
}

.fp-intro-summary {
  list-style: none;
  margin: 0;
  padding: 0.9rem 1rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
  cursor: pointer;
  color: #1d2330;
  transition: background 0.2s ease;
}

.fp-intro-summary-copy {
  display: grid;
  gap: 0.2rem;
}

.fp-intro-summary-title {
  font-family: "Sora", sans-serif;
  font-weight: 700;
}

.fp-intro-summary-desc {
  font-size: 0.9rem;
  font-weight: 500;
  color: #4a5261;
  line-height: 1.45;
}

.fp-intro-summary::-webkit-details-marker,
.fp-intro-summary::marker {
  display: none;
}

.fp-intro-summary::after {
  content: "";
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border-right: 2px solid #1d2330;
  border-bottom: 2px solid #1d2330;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}

.fp-intro-item[open] .fp-intro-summary::after {
  transform: rotate(-135deg);
  margin-top: 0.35rem;
}

.fp-intro-summary:hover {
  background: #f1f4f8;
}

.fp-intro-content {
  padding: 0 1rem 1rem;
  color: #39404d;
}

.fp-intro-content p {
  margin-bottom: 0.75rem;
}

.fp-intro-content ul {
  margin: 0.35rem 0 0.85rem 1.1rem;
}

/* Mobile : une colonne (affichage smartphone) */
@media (max-width: 767px) {
  .hero {
    padding-bottom: 1.25rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-bg {
    min-height: 85vh;
    border-radius: 0 0 24px 24px;
    padding-top: clamp(4rem, 12vw, 5rem);
  }

  .hero-bg-meta {
    flex-direction: column;
    gap: 0.5rem;
  }

  .hero-bg-meta-item {
    width: 100%;
    justify-content: center;
  }

  .matinale-probleme-layout {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .matinale-probleme-visual {
    order: 1;
    height: 14rem;
  }

  .matinale-probleme-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .matinale-probleme-text {
    order: 0;
  }

  .metrics,
  .cards,
  .split {
    grid-template-columns: 1fr;
  }

  .theme-dual::before {
    background: linear-gradient(180deg, #fff8f1 0 50%, #f9f7ff 50% 100%);
  }
}

/* Tablette et plus : deux colonnes quand pertinent */
@media (min-width: 768px) {
  .hero {
    padding: clamp(3rem, 5vw, 4.5rem) 0 2.5rem;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .hero-title {
    max-width: 14ch;
  }

  /* Bloc 2 : gauche = titre + visuel (50 %), droite = texte + encadrÃ© + boutons (50 %) */
  .hero-block2-left {
    grid-column: 1;
    grid-row: 2;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-block2-left .hero-intro-visual {
    margin-bottom: 0;
    order: 2;
  }

  .hero-block2-left .hero-subtitle {
    order: 1;
    margin-bottom: 0;
  }

  .hero-block2-left .hero-cta-desktop {
    order: 3;
    margin-top: 0.75rem;
  }

  .hero-cta-desktop {
    display: flex;
  }

  .hero-cta-mobile {
    display: none;
  }

  .hero-bottom {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    padding-left: 1rem;
  }

  .theme .container {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  #pourquoi .container.pourquoi-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
  }

  #pourquoi .pourquoi-visual {
    margin-top: 0;
    max-height: 20rem;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: top;
  }

  .cards {
    grid-template-columns: 1fr;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
  }

  .theme-action .cards {
    max-width: none;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .split article:only-child {
    max-width: 52rem;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Desktop : mise en page large et lisible */
@media (min-width: 1024px) {
  .container {
    width: min(1100px, calc(100% - 3rem));
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-grid {
    gap: 2rem;
  }

  .hero-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .hero-intro {
    padding: 1.25rem 1.35rem;
  }

  .theme {
    margin: 3rem 0;
    padding: 2.5rem 0;
  }

  /* DÃ©sactiver la grille pour que 50% = 50% du conteneur (pas 50% de la cellule) */
  #pourquoi .container.pourquoi-layout {
    display: block;
    position: relative;
  }

  #pourquoi .pourquoi-text {
    width: 50%;
    max-width: none;
    padding-right: 1rem;
    box-sizing: border-box;
  }

  #pourquoi .pourquoi-text p {
    max-width: none;
  }

  #pourquoi .pourquoi-visual {
    position: absolute;
    left: calc(50% + 1rem);
    top: 0;
    width: calc(50% - 1rem);
    height: 100%;
    margin-top: 0;
    object-fit: cover;
    object-position: top;
  }

  .theme-action .container {
    display: block;
  }

  .theme-action .atelier-block-icon {
    width: 40%;
  }

  .theme-action .cards:has(article:only-child) {
    grid-template-columns: 1fr;
    max-width: 52rem;
    margin-left: auto;
    margin-right: auto;
  }

  .theme-action .cards:not(:has(article:only-child)) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
    gap: 1.25rem;
  }

  .atelier-footer-note,
  .atelier-footer-cta {
    max-width: 52rem;
    margin-left: auto;
    margin-right: auto;
  }

  .matinales-block-icon,
  .cycles-block-icon {
    width: 28%;
  }

  .cycles-content {
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
  }

  .theme-target .content,
  .theme-benefits .benefits {
    max-width: 52rem;
    margin-left: auto;
    margin-right: auto;
  }

  .theme-benefits ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 2rem;
  }

  .cta {
    padding: 2.5rem 2rem;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
  }

  .cta h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 860px) {
  .nav-wrap {
    min-height: 68px;
  }

  .brand img {
    height: 32px;
  }
}

/* ----- Blog : page article (hero image + contenu) ----- */
.article-hero {
  min-height: 72vh;
  border-radius: 0 0 var(--radius) var(--radius);
}

.article-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.article-hero .hero-bg-content {
  max-width: 40rem;
}

.article-hero-caption {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
}

/* RÃ©sumÃ© "En bref" */
.container--article {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.article-summary {
  margin: 2.5rem 0 3rem;
  position: relative;
}

.article-summary-inner {
  padding: 2rem 2rem 2rem 2.25rem;
  background: linear-gradient(145deg, #fffbf6 0%, #fff8ee 50%, #fff5e6 100%);
  border-radius: var(--radius);
  border: 1px solid rgba(237, 151, 27, 0.2);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}

.article-summary-inner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--brand), #f2b037);
  border-radius: 4px 0 0 4px;
}

.article-summary-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1.25rem;
  font-family: "Sora", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.article-summary-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--brand), #f2b037);
  border-radius: 8px;
  color: #fff;
  font-size: 0.9rem;
}

.article-summary-icon::before {
  content: "â—†";
  font-size: 0.65rem;
  opacity: 0.95;
}

.article-summary-lead {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  max-width: 65ch;
}

.article-summary-lead strong {
  color: var(--ink);
}

.article-summary p {
  margin: 0 0 0.9rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted);
  max-width: 65ch;
}

.article-summary-outro {
  margin-bottom: 0;
  font-weight: 600;
  color: var(--ink);
}

/* Corps de l'article */
.article-body {
  margin-top: 0;
  padding: 0 0.25rem 2rem;
}

.article-body-intro {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 1.25rem;
}

.article-body-intro::first-letter {
  float: left;
  font-family: "Sora", sans-serif;
  font-size: 3.2em;
  line-height: 0.9;
  margin: 0.08em 0.12em 0 0;
  color: var(--brand);
  font-weight: 700;
}

.article-body h2 {
  margin-top: 2.5rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0.5rem;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  font-weight: 700;
  color: var(--ink);
  position: relative;
  padding-left: 1rem;
  border-left: 3px solid var(--brand);
  border-bottom: none;
}

.article-body h2:first-of-type {
  margin-top: 1.5rem;
}

.article-body p {
  max-width: 65ch;
  margin-bottom: 1.1rem;
  line-height: 1.7;
}

.article-body code {
  font-size: 0.88em;
  padding: 0.2em 0.5em;
  background: linear-gradient(135deg, rgba(237, 151, 27, 0.15), rgba(237, 151, 27, 0.08));
  border-radius: 6px;
  font-family: ui-monospace, "Cascadia Code", "Fira Code", monospace;
  border: 1px solid rgba(237, 151, 27, 0.25);
  font-weight: 500;
}

/* Bloc exemple code (H1, p, alt) */
.article-code-example {
  margin: 1.5rem 0;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, #1f1f24 0%, #2d2d35 100%);
  border-radius: 12px;
  color: #e8e8ec;
  box-shadow: 0 8px 24px rgba(31, 31, 36, 0.25);
}

.article-code-example-label {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffd08a;
}

.article-code-example p {
  margin: 0;
  max-width: none;
  font-size: 0.95rem;
  color: #e0e0e4;
}

.article-code-example code {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 0.15em 0.4em;
}

.article-code-example strong {
  color: #ffd08a;
}

/* Image dans le corps de lâ€™article */
.article-body-figure {
  margin: 2rem 0;
  max-width: 100%;
}

.article-body-figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.article-body-figure figcaption {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--muted);
  font-style: italic;
  padding-left: 0.25rem;
}

/* Citation / pilule rouge */
.article-pullquote {
  margin: 2.5rem 0;
  padding: 2rem 2rem 2rem 2.5rem;
  background: linear-gradient(120deg, #fff8ee, #fff5e6);
  border-left: 4px solid var(--brand);
  border-radius: 0 16px 16px 0;
  box-shadow: var(--shadow);
  font-style: normal;
}

.article-pullquote p {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--ink);
  max-width: 60ch;
}

.article-pullquote-cta {
  margin-bottom: 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brand-dark);
}

.article-pullquote cite {
  display: block;
  margin-top: 1rem;
  font-size: 0.9rem;
  font-style: normal;
  color: var(--muted);
}

/* Signature auteur */
.article-signature {
  margin-top: 3rem;
  padding: 1.75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: linear-gradient(120deg, #fffbf6, #fff8f0);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.article-signature-avatar {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), #f2b037);
  box-shadow: 0 4px 12px rgba(237, 151, 27, 0.35);
}

.article-signature-text {
  min-width: 0;
}

.article-signature-name {
  margin: 0 0 0.2rem;
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
}

.article-signature-role {
  margin: 0 0 0.15rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.article-signature-tagline {
  margin: 0;
  font-size: 0.85rem;
  font-style: italic;
  color: var(--muted);
}

/* FAQ article â€“ accordÃ©on */
.article-faq {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.article-faq-title {
  margin: 0 0 1.5rem;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 700;
  color: var(--ink);
  padding-left: 1rem;
  border-left: 3px solid var(--brand);
}

.article-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.article-faq-item {
  background: linear-gradient(120deg, #fffbf6, #fff8f0);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.article-faq-item:hover {
  border-color: rgba(237, 151, 27, 0.35);
  box-shadow: 0 4px 16px rgba(237, 151, 27, 0.08);
}

.article-faq-item[open] {
  border-color: rgba(237, 151, 27, 0.5);
  box-shadow: 0 4px 20px rgba(237, 151, 27, 0.12);
}

.article-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.article-faq-question::-webkit-details-marker,
.article-faq-question::marker {
  display: none;
}

.article-faq-question::after {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ed971b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  transition: transform 0.25s ease;
}

.article-faq-item[open] .article-faq-question::after {
  transform: rotate(180deg);
}

.article-faq-question:hover {
  background: rgba(237, 151, 27, 0.06);
}

.article-faq-answer {
  padding: 0 1.25rem 1.25rem;
}

.article-faq-answer p {
  margin: 0;
  padding: 0 0 0 0.5rem;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: none;
  border-left: 2px solid rgba(237, 151, 27, 0.35);
}

/* ----- Blog index (liste des articles) ----- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container--blog {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.blog-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-bottom: 1.5rem;
}

.blog-search-input {
  flex: 1;
  min-width: 180px;
  padding: 0.6rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.blog-search-input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(237, 151, 27, 0.2);
}

.blog-search-input::placeholder {
  color: var(--muted);
}

.blog-sort-select {
  padding: 0.6rem 2rem 0.6rem 1rem;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.blog-sort-select:focus {
  outline: none;
  border-color: var(--brand);
}

.blog-results-heading {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.blog-results-heading a {
  color: var(--brand);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.blog-results-heading a:hover {
  color: var(--brand-dark);
}

.blog-list {
  margin-top: 0;
}

.blog-empty {
  text-align: center;
  padding: 2rem 1.5rem;
}

.blog-empty-lead {
  margin: 0 0 1rem;
  color: var(--muted);
}

.blog-articles-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.blog-article-card {
  margin: 0;
}

.blog-article-card-inner {
  display: block;
  padding: 0 1.5rem 1.5rem 1.35rem;
  padding-top: 0;
  background: linear-gradient(120deg, #fffbf6, #fff8f0);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  border-left: 4px solid var(--brand);
  box-shadow: var(--shadow);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}

.blog-article-card-visual {
  display: block;
  margin: 0 -1.5rem 1rem -1.35rem;
  line-height: 0;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
}

.blog-article-card-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 720 / 378;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.blog-article-card-inner:hover .blog-article-card-visual img {
  transform: scale(1.02);
}

.blog-article-card-inner:not(:has(.blog-article-card-visual)) {
  padding-top: 1.5rem;
}

.blog-article-card-inner:hover {
  border-left-color: var(--brand-dark);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.blog-article-title {
  margin: 0 0 0.4rem;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  line-height: 1.25;
}

.blog-article-title a {
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-article-title a:hover {
  color: var(--brand-dark);
}

.blog-article-meta {
  margin: 0 0 0.6rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.blog-article-meta time {
  font-weight: 600;
}

.blog-article-category {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0.2rem 0.5rem;
  background: rgba(237, 151, 27, 0.12);
  border-radius: 6px;
  font-weight: 600;
  color: var(--brand-dark);
}

.blog-article-meta time + .blog-article-category {
  margin-left: 0.5rem;
}

.blog-article-desc {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
  max-width: 60ch;
}

.blog-article-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  font-size: 0.95rem;
}

.blog-article-link::after {
  content: "â†’";
  font-weight: 700;
}

@media (max-width: 640px) {
  .blog-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .blog-search-input {
    min-width: 0;
  }

  .blog-article-card-inner {
    padding: 1.25rem 1rem 1.25rem 1.15rem;
    border-left-width: 3px;
  }
}

/* Bonus article â€“ prompt Ã  copier */
.article-bonus {
  margin: 2.5rem 0;
  padding: 1.75rem 1.5rem;
  background: linear-gradient(145deg, #1f1f24 0%, #2a2a32 100%);
  border-radius: 16px;
  border: 1px solid rgba(237, 151, 27, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.article-bonus-title {
  margin: 0 0 0.5rem;
  font-family: "Sora", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffd08a;
}

.article-bonus-intro {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  max-width: 65ch;
}

.article-bonus-intro a {
  color: #ffd08a;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.article-bonus-intro a:hover {
  color: #ffe4b3;
}

/* RepliÃ© par dÃ©faut : seule la barre summary visible */
.article-bonus-prompt-details {
  margin-bottom: 1.25rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.25);
}

.article-bonus-prompt-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #e0e0e4;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.article-bonus-prompt-summary::-webkit-details-marker,
.article-bonus-prompt-summary::marker {
  display: none;
}

.article-bonus-prompt-summary::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffd08a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  transition: transform 0.25s ease;
}

.article-bonus-prompt-details[open] .article-bonus-prompt-summary::before {
  transform: rotate(180deg);
}

.article-bonus-prompt-summary:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.article-bonus-prompt-summary-hint {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}

.article-bonus-prompt-details[open] .article-bonus-prompt-summary-hint {
  display: none;
}

.article-bonus-prompt-wrap {
  position: relative;
  margin: 0;
  padding: 1rem 1rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.article-bonus-prompt {
  margin: 0;
  padding: 1.25rem 1.5rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  font-size: 0.8rem;
  line-height: 1.55;
  color: #e0e0e4;
  overflow-x: auto;
  white-space: pre-wrap;
  word-break: break-word;
}

.article-bonus-prompt code {
  font-family: ui-monospace, "Cascadia Code", "Fira Code", monospace;
  font-size: inherit;
  background: none;
  border: none;
  padding: 0;
  color: inherit;
}

.article-bonus-copy {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  padding: 0.45rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #1f1f24;
  background: linear-gradient(130deg, var(--brand), #f2b037);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.article-bonus-copy:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(237, 151, 27, 0.4);
}

.article-bonus-copy:disabled {
  cursor: default;
  opacity: 0.9;
}

.article-bonus-cta {
  margin: 0;
  padding-top: 0.25rem;
}

.article-bonus-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 640px) {
  .article-bonus {
    padding: 1.25rem 1rem;
  }

  .article-bonus-prompt {
    padding: 1rem 1rem 3rem 1rem;
    font-size: 0.75rem;
  }

  .article-bonus-copy {
    position: static;
    display: block;
    width: 100%;
    margin-top: 0.75rem;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .article-hero {
    min-height: 60vh;
  }

  .article-summary-inner {
    padding: 1.5rem 1.25rem 1.5rem 1.5rem;
  }

  .article-summary-inner::before {
    width: 4px;
  }

  .article-summary-title {
    font-size: 1.05rem;
  }

  .article-body {
    padding: 0 0 1.5rem;
  }

  .article-body h2 {
    padding-left: 0.75rem;
    font-size: 1.2rem;
  }

  .article-code-example {
    padding: 1rem 1.25rem;
  }

  .article-pullquote {
    padding: 1.5rem 1.25rem 1.5rem 1.5rem;
  }

  .article-signature {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .article-faq-question {
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
  }

  .article-faq-answer {
    padding: 0 1rem 1rem;
  }

  .article-faq-answer p {
    padding-left: 0.35rem;
    font-size: 0.92rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}










