:root {
    --cyan: #1AB5E5;
    --cyan-deep: #0E8FBE;
    --cyan-soft: #D6F1FB;
    --violet: #6B3FA0;
    --violet-deep: #4F2D7F;
    --violet-soft: #ECE4F7;
    --magenta: #E63A8E;
    --ink: #1F2742;
    --muted: #5C6479;
    --bg: #FBFAFE;
    --bg-alt: #F2F0FA;
    --card: #FFFFFF;
    --shadow-sm: 0 4px 14px rgba(75, 45, 127, 0.06);
    --shadow-md: 0 16px 40px rgba(75, 45, 127, 0.10);
    --shadow-lg: 0 30px 70px rgba(75, 45, 127, 0.18);
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 32px;
    --radius-xl: 44px;
    --radius-pill: 999px;
  }
  * { box-sizing: border-box; }
  [hidden] { display: none !important; }
  html, body { margin: 0; padding: 0; }
  body {
    font-family: 'Nunito', system-ui, sans-serif;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  h1, h2, h3, h4 {
    font-family: 'Quicksand', 'Nunito', sans-serif;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin: 0;
  }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; }

  /* ---------- Layout ---------- */
  .container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }

  /* ---------- Header ---------- */
  .topbar {
    position: sticky;
    top: 18px;
    z-index: 50;
    padding: 0 28px;
  }
  .topbar-inner {
    max-width: 1240px;
    margin: 0 auto;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(107, 63, 160, 0.08);
    padding: 10px 16px 10px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
  }
  .logo img { height: 44px; display: block; }
  nav.main-nav {
    display: flex;
    gap: 6px;
    margin-left: 14px;
    flex: 1;
  }
  .nav-link {
    padding: 10px 16px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 15px;
    color: var(--ink);
    transition: all 0.2s ease;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .nav-link:hover { background: var(--violet-soft); color: var(--violet); }
  .nav-link.active {
    background: linear-gradient(135deg, var(--cyan) 0%, var(--violet) 100%);
    color: #fff;
  }
  .nav-link svg { width: 12px; height: 12px; }

  /* Nav dropdown */
  .nav-dropdown { position: relative; }

  .nav-dropdown__trigger {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
  }

  .nav-dropdown__chevron {
    width: 10px !important;
    height: 10px !important;
    transition: transform 0.2s;
    flex-shrink: 0;
  }

  .nav-dropdown[data-open] .nav-dropdown__chevron {
    transform: rotate(180deg);
  }

  .nav-dropdown.active > .nav-dropdown__trigger,
  .nav-dropdown[data-open] > .nav-dropdown__trigger {
    background: linear-gradient(135deg, var(--cyan) 0%, var(--violet) 100%);
    color: #fff;
  }

  .nav-dropdown__menu {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 180px;
    background: var(--ui-surface);
    border: 1px solid var(--ui-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 6px;
    list-style: none;
    margin: 0;
    z-index: 200;
  }

  .nav-dropdown[data-open] .nav-dropdown__menu {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .nav-dropdown__menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    color: var(--ui-text);
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
  }

  .nav-dropdown__menu a svg { width: 14px; height: 14px; color: var(--brand-cyan); }

  .nav-dropdown__menu a:hover,
  .nav-dropdown__menu a.active {
    background: var(--brand-cyan-soft);
    color: var(--brand-cyan);
  }

  .search-wrap {
    position: relative;
    margin-left: auto;
  }
  .search-input {
    width: 220px;
    padding: 11px 16px 11px 42px;
    border-radius: var(--radius-pill);
    border: 1.5px solid #EAE4F4;
    background: #fff;
    font-family: inherit;
    font-size: 14px;
    color: var(--ink);
    outline: none;
    transition: all 0.2s ease;
  }
  .search-input::placeholder { color: #A4A8BA; }
  .search-input:focus { border-color: var(--cyan); box-shadow: 0 0 0 4px rgba(26,181,229,0.12); width: 260px; }
  .search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px; height: 18px;
    color: var(--violet);
  }

  /* ---------- Hero ---------- */
  .hero-wrap {
    position: relative;
    padding: 36px 0 80px;
    overflow: hidden;
  }
  .blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.55;
    pointer-events: none;
    z-index: 0;
  }
  .blob-1 { width: 480px; height: 480px; background: radial-gradient(circle, #C5EAFB 0%, transparent 70%); top: -180px; left: -120px; }
  .blob-2 { width: 540px; height: 540px; background: radial-gradient(circle, #E2D2F4 0%, transparent 70%); top: 40px; right: -160px; }
  .blob-3 { width: 360px; height: 360px; background: radial-gradient(circle, #FCD4E6 0%, transparent 70%); bottom: -100px; left: 30%; opacity: 0.4; }

  .hero {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    align-items: center;
    padding-top: 40px;
  }
  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px 7px 8px;
    border-radius: var(--radius-pill);
    background: #fff;
    border: 1px solid #EAE4F4;
    font-size: 13px;
    font-weight: 600;
    color: var(--violet);
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
  }
  .eyebrow .dot {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan), var(--violet));
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff; font-size: 11px;
  }
  .hero h1 {
    font-size: 48px;
    line-height: 1.05;
    margin-bottom: 22px;
    color: var(--ink);
  }
  .hero h1 .accent-cyan { color: var(--cyan); }
  .hero h1 .accent-violet { color: var(--violet); font-weight: 800; }
  .hero p.lede {
    font-size: 16px;
    line-height: 1.65;
    color: var(--muted);
    max-width: 480px;
    margin: 0 0 28px;
  }
  .cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 15px;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
  }
  .btn-primary {
    background: linear-gradient(135deg, var(--cyan) 0%, var(--violet) 100%);
    color: #fff;
    box-shadow: 0 14px 30px rgba(107,63,160,0.32);
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 38px rgba(107,63,160,0.40); }
  .btn-ghost {
    background: #fff;
    color: var(--violet);
    border: 1.5px solid #EAE4F4;
  }
  .btn-ghost:hover { border-color: var(--violet); }

  .hero-stats {
    display: flex;
    gap: 22px;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px dashed #DCD4EE;
    flex-wrap: wrap;
  }
  .stat .num {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: var(--violet);
    line-height: 1;
  }
  .stat .lab { font-size: 13px; color: var(--muted); margin-top: 4px; }

  /* ---------- Hero Carousel ---------- */
  .carousel {
    position: relative;
    aspect-ratio: 16 / 10;
    width: 100%;
    margin-left: auto;
  }
  .carousel-frame {
    position: absolute;
    inset: 0;
    border-radius: 90px 0 90px 0;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #FFE9D6 0%, #FFD4B8 100%);
  }
  .slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 44px 52px 48px;
    color: #fff;
    text-decoration: none;
    background: var(--slide-bg, linear-gradient(135deg, #FFB3D1 0%, #E63A8E 60%, #6B3FA0 100%));
  }
  .slide.active { opacity: 1; }
  .slide--has-image {
    background-size: cover;
    background-position: center;
  }
  .slide--fallback {
    background: linear-gradient(135deg, #FFB3D1 0%, #E63A8E 60%, #6B3FA0 100%);
  }
  .slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(31,39,66,0.7) 75%, rgba(31,39,66,0.92) 100%);
    z-index: 1;
  }
  .slide-bg {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    z-index: 0;
    font-size: 220px;
    opacity: 0.18;
    pointer-events: none;
  }
  .slide-content { position: relative; z-index: 2; }
  .slide-tag {
    display: inline-block;
    background: var(--magenta);
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    margin-bottom: 14px;
  }
  .slide-tag.cyan { background: var(--cyan); }
  .slide-tag.violet { background: var(--violet); }
  .slide h3 {
    font-size: 36px;
    line-height: 1.15;
    margin-bottom: 10px;
    color: #fff;
    max-width: 80%;
    text-shadow: 0 2px 14px rgba(0,0,0,0.25);
  }
  .slide-meta {
    font-size: 14px;
    opacity: 0.92;
    display: flex; align-items: center; gap: 14px;
  }

  .carousel-nav {
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    align-items: center;
    background: #fff;
    padding: 10px 16px;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-md);
    z-index: 5;
  }
  .carousel-arrow {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--bg-alt);
    color: var(--violet);
    display: inline-flex; align-items: center; justify-content: center;
    transition: background 0.2s;
  }
  .carousel-arrow:hover { background: var(--violet); color: #fff; }
  .carousel-dots { display: flex; gap: 6px; padding: 0 6px; }
  .dot-btn {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #DCD4EE;
    transition: all 0.25s;
  }
  .dot-btn.active { background: var(--violet); width: 24px; border-radius: 4px; }

  /* Floating decorative elements over carousel */
  .float-card {
    position: absolute;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 14px 18px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floaty 5s ease-in-out infinite;
  }
  .float-card.fc-1 { top: -28px; left: -28px; animation-delay: 0s; }
  .float-card.fc-2 { bottom: -28px; right: -28px; animation-delay: 1.2s; }
  @keyframes floaty {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }
  .fc-icon {
    width: 38px; height: 38px;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff;
    flex: 0 0 auto;
  }
  .fc-icon.cyan { background: linear-gradient(135deg, var(--cyan), var(--cyan-deep)); }
  .fc-icon.violet { background: linear-gradient(135deg, var(--violet), var(--violet-deep)); }
  .fc-text .l1 { font-size: 11px; color: var(--muted); font-weight: 600; }
  .fc-text .l2 { font-size: 14px; color: var(--ink); font-weight: 700; }

  /* Scattered dots/stars */
  .star {
    position: absolute;
    color: var(--magenta);
    font-size: 18px;
    z-index: 3;
    animation: twinkle 3s ease-in-out infinite;
  }
  .star-1 { top: 8%; left: 8%; }
  .star-2 { top: 12%; right: 14%; color: var(--violet); animation-delay: 0.6s; }
  .star-3 { bottom: 20%; left: 6%; color: var(--cyan); animation-delay: 1.2s; }
  @keyframes twinkle {
    0%, 100% { opacity: 0.4; transform: scale(0.9); }
    50% { opacity: 1; transform: scale(1.1); }
  }

  /* ---------- Sections common ---------- */
  section { padding: 1rem; position: relative; }
  .section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 44px;
    gap: 20px;
    flex-wrap: wrap;
  }
  .section-head h2 {
    font-size: 42px;
    line-height: 1.1;
  }
  .section-head h2 .underline {
    background: linear-gradient(180deg, transparent 60%, rgba(26,181,229,0.35) 60%);
    padding: 0 4px;
  }
  .section-head .lede { color: var(--muted); max-width: 520px; line-height: 1.6; margin: 10px 0 0; }
  .section-link {
    color: var(--violet);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .section-link:hover { color: var(--cyan); }

  /* ---------- Events list ---------- */
  .events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .event-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 22px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(107,63,160,0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .event-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
  .event-card .visual {
    height: 180px;
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 22px;
  }
  .event-card .visual.v1 { background: linear-gradient(135deg, #FFB3D1 0%, #E63A8E 100%); }
  .event-card .visual.v2 { background: linear-gradient(135deg, #8FD6F2 0%, #1AB5E5 100%); }
  .event-card .visual.v3 { background: linear-gradient(135deg, #B89FE0 0%, #6B3FA0 100%); }
  .event-card .visual.v4 { background: linear-gradient(135deg, #FFD89B 0%, #FF8E53 100%); }
  .visual::after {
    content: '';
    position: absolute;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    top: -80px; right: -80px;
  }
  .visual::before {
    content: '';
    position: absolute;
    width: 120px; height: 120px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    bottom: -50px; left: -30px;
  }
  .visual-icon { position: relative; z-index: 1; font-size: 56px; }
  .event-card .visual.visual--photo { background: var(--ui-surface-alt); }
  .event-card .visual.visual--photo::before,
  .event-card .visual.visual--photo::after { display: none; }
  .event-card .visual.visual--photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .event-date {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .event-date .day {
    background: var(--violet-soft);
    color: var(--violet);
    width: 56px; height: 56px;
    border-radius: var(--radius-md);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
  }
  .event-date .day .num { font-size: 22px; line-height: 1; }
  .event-date .day .month { font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em; margin-top: 2px; }
  .event-date .info .place { font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 4px; }
  .event-date .info .time { font-size: 13px; color: var(--cyan); font-weight: 600; margin-top: 2px; }
  .event-card h3 {
    font-size: 20px;
    line-height: 1.25;
  }
  .event-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
  }
  .event-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px dashed #E5DFEF;
    padding-top: 16px;
    margin-top: auto;
  }
  .pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 700;
  }
  .pill.cyan { background: var(--cyan-soft); color: var(--cyan-deep); }
  .pill.violet { background: var(--violet-soft); color: var(--violet); }
  .pill.magenta { background: #FCE2EE; color: var(--magenta); }
  .read-more {
    color: var(--violet);
    font-weight: 700;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }
  .read-more:hover { color: var(--cyan); }

  /* ---------- Missions ---------- */
  .missions-section {
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
    border-radius: var(--radius-xl);
    margin: 40px 28px;
    padding: 80px 0;
  }
  .missions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 14px;
  }
  .mission-card {
    background: #fff;
    border-radius: 0 60px 0 60px;
    padding: 30px 26px;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease;
  }
  .mission-card:hover { transform: translateY(-4px); }
  .mission-card .ico {
    width: 64px; height: 64px;
    border-radius: 22px;
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
    color: #fff;
  }
  .mission-card.m1 .ico { background: linear-gradient(135deg, #1AB5E5 0%, #0E8FBE 100%); }
  .mission-card.m2 .ico { background: linear-gradient(135deg, #6B3FA0 0%, #4F2D7F 100%); }
  .mission-card.m3 .ico { background: linear-gradient(135deg, #E63A8E 0%, #C12A75 100%); }
  .mission-card h3 { font-size: 22px; margin-bottom: 10px; }
  .mission-card p { color: var(--muted); font-size: 15px; line-height: 1.6; margin: 0 0 18px; }
  .mission-card .deco {
    position: absolute;
    width: 140px; height: 140px;
    border-radius: 50%;
    bottom: -70px; right: -60px;
    opacity: 0.08;
  }
  .mission-card.m1 .deco { background: var(--cyan); }
  .mission-card.m2 .deco { background: var(--violet); }
  .mission-card.m3 .deco { background: var(--magenta); }

  /* ---------- "Vous y étiez" gallery ---------- */
  .gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 200px 200px;
    gap: 18px;
  }
  .gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    color: #fff;
    display: flex;
    align-items: end;
    padding: 20px;
    transition: transform 0.25s ease;
  }
  .gallery-item:hover { transform: scale(1.02); }
  .gallery-item.g1 {
    grid-row: 1 / 3;
    background: linear-gradient(135deg, #6B3FA0 0%, #4F2D7F 100%);
  }
  .gallery-item.g2 { background: linear-gradient(135deg, #1AB5E5 0%, #0E8FBE 100%); }
  .gallery-item.g3 { background: linear-gradient(135deg, #FFB3D1 0%, #E63A8E 100%); }
  .gallery-item.g4 { background: linear-gradient(135deg, #FFD89B 0%, #FF8E53 100%); }
  .gallery-item.g5 { background: linear-gradient(135deg, #B89FE0 0%, #6B3FA0 100%); }
  .gallery-item::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.55) 100%);
  }
  .gallery-item .label { position: relative; z-index: 1; }
  .gallery-item .label .small { font-size: 12px; opacity: 0.85; font-weight: 600; }
  .gallery-item .label .big { font-size: 18px; font-weight: 700; font-family: 'Quicksand', sans-serif; }
  .gallery-item.g1 .label .big { font-size: 26px; }
  .placeholder-icon {
    position: absolute;
    inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 64px;
    opacity: 0.6;
  }

  /* ---------- Newsletter / Don ---------- */
  .cta-band {
    background: linear-gradient(135deg, var(--violet) 0%, var(--cyan) 100%);
    border-radius: var(--radius-xl);
    margin: 80px 28px 0;
    padding: 60px 60px;
    color: #fff;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  .cta-band::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    top: -200px; right: -100px;
  }
  .cta-band::after {
    content: '';
    position: absolute;
    width: 240px; height: 240px;
    border-radius: 50%;
    background: rgba(230,58,142,0.25);
    bottom: -120px; left: -60px;
  }
  .cta-band .content { position: relative; z-index: 1; }
  .cta-band h2 { color: #fff; font-size: 38px; line-height: 1.15; margin-bottom: 12px; }
  .cta-band p { font-size: 16px; line-height: 1.6; opacity: 0.92; margin: 0 0 24px; max-width: 420px; }
  .newsletter-form {
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 28px;
    color: var(--ink);
    box-shadow: var(--shadow-lg);
  }
  .newsletter-form h4 { font-size: 18px; margin-bottom: 16px; }
  .newsletter-form input {
    width: 100%;
    padding: 14px 18px;
    border-radius: var(--radius-pill);
    border: 1.5px solid #EAE4F4;
    font-family: inherit;
    font-size: 14px;
    margin-bottom: 12px;
    outline: none;
  }
  .newsletter-form input:focus { border-color: var(--cyan); }
  .newsletter-form button {
    width: 100%;
    padding: 14px;
    border-radius: var(--radius-pill);
    background: linear-gradient(135deg, var(--violet), var(--cyan));
    color: #fff;
    font-weight: 700;
    font-size: 14px;
  }

  /* ---------- Footer ---------- */
  footer {
    margin-top: 80px;
    padding: 60px 28px 30px;
    background: #1F1B2E;
    color: #DCD4EE;
  }
  .footer-grid {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .footer-grid h5 {
    font-family: 'Quicksand', sans-serif;
    color: #fff;
    font-size: 15px;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }
  .footer-grid a, .footer-grid p {
    display: block;
    color: #B5ACC8;
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.6;
  }
  .footer-grid a:hover { color: var(--cyan); }
  .footer-logo { background: #fff; padding: 14px; border-radius: var(--radius-md); display: inline-block; }
  .footer-logo img { height: 36px; display: block; }
  .socials { display: flex; gap: 10px; margin-top: 16px; }
  .social-btn {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff;
    transition: background 0.2s;
  }
  .social-btn:hover { background: linear-gradient(135deg, var(--cyan), var(--violet)); }
  .copyright {
    max-width: 1240px;
    margin: 24px auto 0;
    font-size: 13px;
    color: #6F6886;
    display: flex;
    justify-content: space-between;
  }

  /* ---------- Floating contact button ---------- */
  .fab {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 100;
    background: linear-gradient(135deg, var(--magenta) 0%, var(--violet) 100%);
    color: #fff;
    border-radius: var(--radius-pill);
    padding: 16px 24px;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 18px 40px rgba(230,58,142,0.4);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .fab:hover { transform: translateY(-3px); box-shadow: 0 24px 52px rgba(230,58,142,0.5); }
  .fab .fab-icon {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.22);
    display: inline-flex; align-items: center; justify-content: center;
  }
  .fab .pulse {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-pill);
    border: 2px solid var(--magenta);
    animation: pulse 2.2s ease-out infinite;
    pointer-events: none;
  }
  @keyframes pulse {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.18); opacity: 0; }
  }

  /* ---------- Dropdown ---------- */
  .nav-item { position: relative; }
  .nav-dd {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 12px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: all 0.2s ease;
    border: 1px solid #EAE4F4;
  }
  .nav-item:hover .nav-dd { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-dd a {
    display: block;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
  }
  .nav-dd a:hover { background: var(--violet-soft); color: var(--violet); }

  /* ---------- Hamburger / Mobile menu ---------- */
  .hamburger {
    display: none;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--violet-soft);
    color: var(--violet);
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    margin-left: auto;
    transition: background 0.2s;
    cursor: pointer;
  }
  .hamburger:hover { background: var(--violet); color: #fff; }
  .hamburger svg { width: 20px; height: 20px; }
  .hamburger .icon-close { display: none; }
  .hamburger.open .icon-open { display: none; }
  .hamburger.open .icon-close { display: block; }

  .mobile-search {
    display: none;
    position: relative;
    margin: 0 6px 14px;
    width: 100%;
  }
  .mobile-search .search-icon {
    position: absolute;
    left: 14px; top: 50%;
    transform: translateY(-50%);
    width: 18px; height: 18px;
    color: var(--violet);
  }
  .mobile-search input {
    width: 100%;
    padding: 12px 16px 12px 42px;
    border-radius: var(--radius-pill);
    border: 1.5px solid #EAE4F4;
    background: #fff;
    font-family: inherit;
    font-size: 14px;
    outline: none;
  }

  .mobile-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 14px 6px 16px;
    border-top: 1px solid #EAE4F4;
    margin: 8px -10px -4px;
    width: 100%;
  }
  .mobile-menu a {
    padding: 14px 18px;
    border-radius: 18px;
    font-weight: 700;
    font-size: 16px;
    color: var(--ink);
    transition: background 0.2s;
  }
  .mobile-menu a:hover, .mobile-menu a.active {
    background: linear-gradient(135deg, rgba(26,181,229,0.12) 0%, rgba(107,63,160,0.12) 100%);
    color: var(--violet);
  }
  .mobile-menu__section {
    display: block;
    padding: 10px 18px 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted, #93A1AD);
  }
  .mobile-menu .mobile-cta {
    margin-top: 10px;
    background: linear-gradient(135deg, var(--magenta) 0%, var(--violet) 100%);
    color: #fff;
    text-align: center;
    border-radius: var(--radius-pill);
  }
  .mobile-menu .mobile-cta:hover { background: linear-gradient(135deg, var(--magenta) 0%, var(--violet) 100%); color: #fff; }

  body.menu-open .topbar-inner { border-radius: 28px; }
  body.menu-open .mobile-menu { display: flex; }
  body.menu-open .mobile-search { display: block; }

  /* ---------- Responsive ---------- */
  @media (max-width: 1080px) {
    nav.main-nav { display: none; }
    .hamburger { display: inline-flex; }
    .search-wrap { display: none; }
    .topbar-inner { flex-wrap: wrap; padding: 10px 14px; }
    .logo img { height: 38px; }

    .hero { grid-template-columns: 1fr; }
    .events-grid, .missions-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 180px 180px 180px; }
    .gallery-item.g1 { grid-row: auto; grid-column: 1 / 3; }
    .cta-band { grid-template-columns: 1fr; padding: 40px; }
    .hero h1 { font-size: 38px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 600px) {
    .container { padding: 0 18px; }
    .topbar { padding: 0 14px; top: 12px; }
    .hero h1 { font-size: 30px; }
    .section-head h2 { font-size: 28px; }
    .slide h3 { font-size: 22px; max-width: 100%; }
    .slide { padding: 28px 26px 32px; }
    .float-card { display: none; }
    .footer-grid { grid-template-columns: 1fr; }
    .fab { padding: 14px 18px; font-size: 14px; bottom: 18px; right: 18px; }
    .gallery-grid { grid-template-columns: 1fr; grid-template-rows: repeat(5, 160px); }
    .gallery-item.g1 { grid-column: auto; }
    .missions-section { margin: 30px 14px; padding: 50px 0; }
    .cta-band { margin: 60px 14px 0; padding: 30px; }
    section { padding: 50px 0; }
    .key-figs, .values-grid, .team-grid { grid-template-columns: 1fr 1fr !important; }
  }

  /* ================================================================
     Page Événements — Liste
     ================================================================ */

  /* Hero */
  .events-hero {
    position: relative;
    padding: 1rem 0 1rem;
    overflow: hidden;
  }
  .events-hero h1 { font-size: 56px; line-height: 1.05; margin-bottom: 16px; }
  .events-hero h1 .accent { color: var(--violet); }
  .events-hero p.lede {
    font-size: 17px;
    color: var(--muted);
    max-width: 620px;
    line-height: 1.6;
    margin: 0 0 28px;
  }

  /* Conteneur principal */
  .events-body { padding-bottom: 80px; }

  /* Compteur résultats */
  .results-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 30px 0 18px;
    color: var(--muted);
    font-size: 14px;
    flex-wrap: wrap;
    gap: 12px;
  }
  .results-info strong { color: var(--ink); }

  /* ---------- Événement vedette (À la une) ---------- */
  .featured {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(107,63,160,0.06);
    padding: 22px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 32px;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  .featured-visual {
    aspect-ratio: 16 / 10;
    border-radius: 90px 0 90px 0;
    background: linear-gradient(135deg, #FFB3D1 0%, var(--magenta) 60%, var(--violet) 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .featured-visual.v1 { background: linear-gradient(135deg, #FFB3D1 0%, var(--magenta) 60%, var(--violet) 100%); }
  .featured-visual.v2 { background: linear-gradient(135deg, #8FD6F2 0%, var(--cyan) 60%, var(--cyan-deep) 100%); }
  .featured-visual.v3 { background: linear-gradient(135deg, #B89FE0 0%, var(--violet) 60%, var(--violet-deep) 100%); }
  .featured-visual.v4 { background: linear-gradient(135deg, #FFD89B 0%, #FF8E53 60%, var(--magenta) 100%); }
  .featured-visual::before {
    content: '';
    position: absolute;
    width: 240px; height: 240px;
    border-radius: 50%;
    background: rgba(255,255,255,0.16);
    top: -90px; right: -60px;
    pointer-events: none;
  }
  .featured-visual::after {
    content: '';
    position: absolute;
    width: 160px; height: 160px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    bottom: -60px; left: -40px;
    pointer-events: none;
  }
  .featured-visual .featured-icon {
    position: relative;
    z-index: 1;
    font-size: 110px;
    color: rgba(255,255,255,0.9);
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.25));
  }
  .featured-visual.has-image { background: var(--bg-alt); }
  .featured-visual.has-image::before,
  .featured-visual.has-image::after { display: none; }
  .featured-visual.has-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Badge "À la une" */
  .featured-badge {
    position: absolute;
    top: 20px; left: 20px;
    background: #fff;
    color: var(--magenta);
    padding: 7px 14px;
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: var(--shadow-sm);
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .featured-badge .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--magenta);
    animation: pulse-dot 1.6s ease-in-out infinite;
  }
  @keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.5; }
  }

  /* Contenu de la vedette */
  .featured-content { padding: 14px 14px 14px 0; }
  .featured-content .pill { margin-bottom: 14px; }
  .featured-content h2 { font-size: 38px; line-height: 1.1; margin-bottom: 12px; margin-top: 12px; }
  .featured-content p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 22px;
  }

  /* Méta-infos (date / horaire / lieu) */
  .featured-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding: 16px 0;
    border-top: 1px dashed #DCD4EE;
    border-bottom: 1px dashed #DCD4EE;
    margin-bottom: 22px;
  }
  .fm-item { display: flex; align-items: center; gap: 10px; }
  .fm-item .ico {
    width: 36px; height: 36px;
    border-radius: 12px;
    background: var(--violet-soft);
    color: var(--violet);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
  }
  .fm-item.cyan .ico { background: var(--cyan-soft); color: var(--cyan-deep); }
  .fm-item .lab {
    font-size: 11px;
    color: var(--muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }
  .fm-item .val { font-size: 14px; color: var(--ink); font-weight: 700; }

  /* ---------- Sections par mois ---------- */
  .month-section { margin-top: 60px; }
  .month-header {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 22px;
  }
  .month-header h3 { font-size: 28px; color: var(--violet); }
  .count-pill {
    background: var(--cyan-soft);
    color: var(--cyan-deep);
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
  }
  .month-header .line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--violet-soft), transparent);
  }

  /* ---------- État vide ---------- */
  .empty-state {
    margin-top: 50px;
    background: linear-gradient(180deg, var(--bg-alt) 0%, #fff 100%);
    border-radius: var(--radius-xl);
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .empty-state::before {
    content: '';
    position: absolute;
    width: 360px; height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--cyan-soft) 0%, transparent 70%);
    top: -120px; right: -100px;
    opacity: 0.5;
  }
  .empty-state::after {
    content: '';
    position: absolute;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, #FCE2EE 0%, transparent 70%);
    bottom: -120px; left: -80px;
    opacity: 0.5;
  }
  .empty-illu {
    width: 100px; height: 100px;
    border-radius: 0 40px 0 40px;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--violet) 100%);
    margin: 0 auto 24px;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    box-shadow: 0 18px 40px rgba(107,63,160,0.3);
    position: relative; z-index: 1;
  }
  .empty-illu svg { width: 48px; height: 48px; }
  .empty-state h2 { font-size: 30px; margin-bottom: 12px; position: relative; z-index: 1; }
  .empty-state p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
    max-width: 480px;
    margin: 0 auto 28px;
    position: relative; z-index: 1;
  }
  .empty-cta {
    display: inline-flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    position: relative; z-index: 1;
  }


  /* ---------- Featured event card ---------- */

.featured-event-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 48px;
    align-items: stretch;
    background: #fff;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(107, 63, 160, 0.06);
    padding: 36px;
    overflow: hidden;
}

.featured-event-media {
    min-width: 0;
}

.featured-event-visual,
.featured-event-image {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border-radius: 56px 0 56px 0;
    display: block;
}

.featured-event-image {
    object-fit: cover;
    background: var(--bg-alt);
}

.featured-event-visual {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #FFB3D1 0%, #E63A8E 60%, #6B3FA0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-event-media.v2 .featured-event-visual {
    background: linear-gradient(135deg, #8FD6F2 0%, #1AB5E5 60%, #4F2D7F 100%);
}

.featured-event-media.v3 .featured-event-visual {
    background: linear-gradient(135deg, #B89FE0 0%, #6B3FA0 60%, #1AB5E5 100%);
}

.featured-event-media.v4 .featured-event-visual {
    background: linear-gradient(135deg, #FFD89B 0%, #FF8E53 100%);
}

.featured-event-visual::before,
.featured-event-visual::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    pointer-events: none;
}

.featured-event-visual::before {
    width: 220px;
    height: 220px;
    top: -80px;
    right: -60px;
}

.featured-event-visual::after {
    width: 180px;
    height: 180px;
    bottom: -80px;
    left: -70px;
}

.featured-event-badge {
    position: absolute;
    top: 28px;
    left: 28px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--magenta);
    padding: 10px 18px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: var(--shadow-sm);
    z-index: 2;
}

.featured-event-badge::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--magenta);
    display: inline-block;
}

.featured-event-emoji {
    position: relative;
    z-index: 1;
    font-size: clamp(90px, 10vw, 160px);
    filter: drop-shadow(0 18px 24px rgba(31, 39, 66, 0.16));
}

.featured-event-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.featured-event-top .pill {
    margin-bottom: 24px;
}

.featured-event-top h2 {
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.05;
    color: var(--ink);
    margin-bottom: 20px;
}

.featured-event-excerpt {
    font-size: 17px;
    line-height: 1.7;
    color: var(--muted);
    margin: 0 0 28px;
    max-width: 26ch;
}

.featured-event-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    padding: 28px 0;
    margin: 0 0 28px;
    border-top: 1px dashed #E5DFEF;
    border-bottom: 1px dashed #E5DFEF;
}

.featured-meta-item {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.featured-meta-icon {
    width: 56px;
    height: 56px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.featured-meta-icon svg {
    width: 22px;
    height: 22px;
    display: block;
}

.featured-meta-icon.violet {
    background: var(--violet-soft);
    color: var(--violet);
}

.featured-meta-icon.cyan {
    background: var(--cyan-soft);
    color: var(--cyan-deep);
}

.featured-meta-icon.violet-soft {
    background: #F2EAFE;
    color: var(--violet);
}

.featured-meta-label {
    display: block;
    font-size: 12px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    font-weight: 800;
    margin-bottom: 6px;
}

.featured-meta-item strong {
    display: block;
    font-family: Quicksand, Nunito, sans-serif;
    font-size: 18px;
    line-height: 1.3;
    color: var(--ink);
}

.featured-event-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.featured-event-actions .btn {
    min-height: 58px;
    justify-content: center;
}

.btn-calendar {
    color: var(--violet);
    background: #fff;
    border: 1.5px solid #EAE4F4;
    box-shadow: var(--shadow-sm);
}

.btn-calendar:hover {
    border-color: var(--violet);
}

.btn-calendar svg,
.featured-event-actions .btn svg {
    width: 18px;
    height: 18px;
    display: block;
}

/* ---------- Responsive ---------- */

@media (max-width: 1080px) {
    .featured-event-card {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 24px;
    }

    .featured-event-visual,
    .featured-event-image {
        min-height: 340px;
    }

    .featured-event-excerpt {
        max-width: none;
    }

    .featured-event-meta {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .featured-event-card {
        border-radius: var(--radius-lg);
        padding: 18px;
    }

    .featured-event-visual,
    .featured-event-image {
        min-height: 260px;
        border-radius: 36px 0 36px 0;
    }

    .featured-event-badge {
        top: 18px;
        left: 18px;
        padding: 8px 14px;
        font-size: 11px;
    }

    .featured-event-top h2 {
        font-size: 30px;
    }

    .featured-event-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .featured-event-actions .btn {
        width: 100%;
    }
}
  /* ---------- Responsive events page ---------- */
  @media (max-width: 1080px) {
    .events-hero h1 { font-size: 38px; }
    .featured { grid-template-columns: 1fr; }
    .featured-content { padding: 0 0 8px; }
    .featured-content h2 { font-size: 26px; }
  }
  @media (max-width: 700px) {
    .events-grid { grid-template-columns: 1fr; }
  }
  @media (max-width: 600px) {
    .events-hero h1 { font-size: 30px; }
    .month-header h3 { font-size: 20px; }
    .empty-state { padding: 50px 20px; }
    .featured-meta { gap: 14px; }
  }

   /* ================================================================
     Page Article — show et liste
     ================================================================ */

     /* ---------- Article show ---------- */

.article-featured {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(107,63,160,0.06);
    padding: 22px;
    display: grid;
    gap: 32px;
    align-items: start;
    position: relative;
    overflow: hidden;
}

.article-featured--image_right {
    grid-template-columns: 1.15fr 0.85fr;
}

.article-featured--image_left {
    grid-template-columns: 0.85fr 1.15fr;
}

.article-featured--image_left .article-featured-media {
    order: 1;
}

.article-featured--image_left .article-featured-content {
    order: 2;
}

.article-featured--image_right .article-featured-content {
    order: 1;
}

.article-featured--image_right .article-featured-media {
    order: 2;
}

.article-featured--image_top {
    grid-template-columns: 1fr;
}

.article-featured--image_top .article-featured-media,
.article-featured--image_top .article-featured-content {
    order: initial;
}

.article-featured--no-image {
    grid-template-columns: 1fr;
}

.article-featured-media {
    min-width: 0;
}

.article-featured-visual {
    aspect-ratio: 16 / 10;
    border-radius: 90px 0 90px 0;
    background: linear-gradient(135deg, #FFB3D1 0%, var(--magenta) 60%, var(--violet) 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-featured-visual.has-image {
    background: var(--bg-alt);
}

.article-featured-visual.has-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-featured-content {
    padding: 14px 14px 14px 0;
    min-width: 0;
}

.article-featured-content .pill {
    margin-bottom: 14px;
}

.article-featured-content h2 {
    font-size: clamp(32px, 4vw, 42px);
    line-height: 1.1;
    margin-top: 12px;
    margin-bottom: 16px;
}

.article-featured-excerpt {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 22px;
    max-width: 65ch;
}

.article-content {
    margin-top: 24px;
}

.article-content > *:first-child {
    margin-top: 0;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
}

.article-content h2,
.article-content h3,
.article-content h4 {
    margin-top: 28px;
    margin-bottom: 14px;
}

.article-content p,
.article-content ul,
.article-content ol,
.article-content blockquote {
    margin-bottom: 18px;
}

.article-content ul,
.article-content ol {
    padding-left: 22px;
}

.article-content blockquote {
    padding: 18px 22px;
    border-radius: var(--radius-md);
    background: var(--bg-alt);
    color: var(--ink);
    border-left: 4px solid var(--cyan);
}

.article-featured--image_top .article-featured-content {
    padding-right: 0;
}

.article-featured--image_top .article-featured-visual {
    aspect-ratio: 16 / 8;
}

@media (max-width: 1080px) {
    .article-featured,
    .article-featured--image_right,
    .article-featured--image_left {
        grid-template-columns: 1fr;
    }

    .article-featured-media,
    .article-featured-content {
        order: initial !important;
    }

    .article-featured-content {
        padding: 0 0 8px;
    }
}

@media (max-width: 600px) {
    .article-featured {
        padding: 18px;
    }

    .article-featured-visual {
        border-radius: 36px 0 36px 0;
    }

    .article-featured-content h2 {
        font-size: 28px;
    }
}
/* ================================================================
   Article card — same pattern as .event-card
   ================================================================ */
.article-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(107,63,160,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}
.article-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.article-card .visual {
  height: 180px;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 22px;
}
.article-card .visual.visual--photo { background: var(--ui-surface-alt); }
.article-card .visual.visual--photo::before,
.article-card .visual.visual--photo::after { display: none; }
.article-card .visual.visual--photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-card-date {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.article-card h3 {
  font-size: 20px;
  line-height: 1.25;
  margin: 0;
}
.article-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}
.article-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px dashed #E5DFEF;
  padding-top: 14px;
  margin-top: auto;
}
.read-more {
  font-size: 13px;
  font-weight: 700;
  color: var(--violet);
}

/* ================================================================
   Pagination
   ================================================================ */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 56px;
  padding-bottom: 16px;
  flex-wrap: wrap;
}
.pagination-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  border: 1.5px solid transparent;
  transition: all 0.18s ease;
  text-decoration: none;
}
.pagination-btn:hover:not(.pagination-btn--active):not(.pagination-btn--disabled) {
  border-color: var(--violet-soft);
  background: var(--violet-soft);
  color: var(--violet);
}
.pagination-btn--active {
  background: var(--violet);
  color: #fff;
  border-color: var(--violet);
  cursor: default;
}
.pagination-btn--nav {
  color: var(--muted);
  border-color: #E5DFEF;
}
.pagination-btn--nav:hover:not(.pagination-btn--disabled) {
  border-color: var(--violet);
  color: var(--violet);
  background: transparent;
}
.pagination-btn--disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}
.pagination-ellipsis {
  color: var(--muted);
  font-size: 14px;
  padding: 0 4px;
  user-select: none;
}

/* ============================================================
   Design tokens — inscription (CLAUDE.md palette)
   ============================================================ */
:root {
  --brand-cyan:           #149FDE;
  --brand-cyan-strong:    #0E8EC8;
  --brand-cyan-soft:      #D9F2FC;
  --brand-violet:         #6A5CCB;
  --brand-violet-soft:    #E8E3F9;
  --brand-navy:           #24384A;

  --ui-bg:                #F5F7FA;
  --ui-surface:           #FFFFFF;
  --ui-surface-alt:       #EEF4F8;
  --ui-surface-brand:     #F4FAFD;
  --ui-border:            #D8E2EA;
  --ui-border-strong:     #BDD0DC;
  --ui-text:              #24384A;
  --ui-text-muted:        #5D7080;
  --ui-text-inverse:      #FFFFFF;

  --state-success:        #2EAD66;
  --state-success-soft:   #DDF5E7;
  --state-warning:        #C97A1C;
  --state-warning-soft:   #FBE8CC;
  --state-danger:         #C94B57;
  --state-danger-soft:    #F8DADF;

  --sp-1: 0.25rem; --sp-2: 0.5rem; --sp-3: 0.75rem; --sp-4: 1rem;
  --sp-6: 1.5rem;  --sp-8: 2rem;

  /* Brand palette — full set */
  --brand-sky:            #29B5EA;
  --brand-sky-strong:     #179FD3;
  --brand-sky-soft:       #DDF5FD;
  --brand-magenta:        #D6429C;
  --brand-magenta-strong: #BC2F87;
  --brand-magenta-soft:   #F9DCEC;
  --brand-violet-strong:  #5A4DB7;
  --brand-navy-soft:      #5D7080;
  --brand-navy-faint:     #93A1AD;
  --ui-text-soft:         #93A1AD;
  --state-info:           #149FDE;
  --state-info-soft:      #D9F2FC;

  /* Spacing scale */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;

  /* Type scale */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-md:   1.0625rem;
  --text-lg:   1.1875rem;
  --text-xl:   1.375rem;
  --text-2xl:  1.75rem;
  --text-3xl:  2.25rem;
  --text-4xl:  3rem;
  --text-hero: 4rem;

  /* Font weights */
  --font-regular:  400;
  --font-medium:   500;
  --font-semibold: 600;
  --font-bold:     700;

  /* Line heights */
  --leading-tight:   1.1;
  --leading-snug:    1.25;
  --leading-normal:  1.5;
  --leading-relaxed: 1.65;

  /* Letter spacing */
  --tracking-tight:  -0.02em;
  --tracking-normal:  0;
  --tracking-wide:    0.04em;
  --tracking-xwide:   0.08em;

  /* Border radii */
  --radius-full: 9999px;

  /* Font families */
  --font-body:    'Nunito', system-ui, sans-serif;
  --font-heading: 'Quicksand', 'Nunito', system-ui, sans-serif;

  /* Action / interactive aliases */
  --action-primary:          var(--brand-cyan);
  --action-primary-hover:    var(--brand-cyan-strong);
  --action-primary-soft:     var(--brand-cyan-soft);
  --action-secondary:        var(--brand-violet);
  --action-secondary-hover:  var(--brand-violet-strong);
  --action-secondary-soft:   var(--brand-violet-soft);
  --action-highlight:        var(--brand-magenta);
  --action-highlight-hover:  var(--brand-magenta-strong);
  --action-highlight-soft:   var(--brand-magenta-soft);
}

/* ============================================================
   Utilitaire
   ============================================================ */
.hidden { display: none !important; }

.alert {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}
.alert--danger {
  background: var(--state-danger-soft);
  border: 1px solid var(--state-danger);
  color: var(--state-danger);
}
.alert ul { margin: 0; padding-left: 1.25rem; }

/* ============================================================
   Registration wizard — layout
   ============================================================ */
.registration-wizard {
  max-width: 680px;
  margin: 0 auto;
  padding: var(--sp-8) var(--sp-4);
}

.wizard-event-header { margin-bottom: var(--sp-6); }
.wizard-event-header h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--ui-text);
  margin: 0 0 0.25rem;
}
.wizard-event-meta {
  font-size: 1rem;
  color: var(--ui-text-muted);
  margin: 0;
}

.wizard-card {
  background: var(--ui-surface);
  border: 1px solid var(--ui-border);
  border-radius: 16px;
  padding: var(--sp-8);
  box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.06);
}
.wizard-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ui-text);
  margin: 0 0 var(--sp-6);
}

/* ============================================================
   Steps indicator
   ============================================================ */
.steps-indicator {
  display: flex;
  align-items: center;
  margin-bottom: var(--sp-6);
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  flex: 0 0 auto;
}
.step__number {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--ui-surface-alt);
  border: 2px solid var(--ui-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ui-text-muted);
}
.step--active .step__number {
  background: var(--brand-cyan);
  border-color: var(--brand-cyan);
  color: var(--ui-text-inverse);
}
.step--done .step__number {
  background: var(--state-success);
  border-color: var(--state-success);
  color: var(--ui-text-inverse);
}
.step__label {
  font-size: 0.8125rem;
  color: var(--ui-text-muted);
  white-space: nowrap;
}
.step--active .step__label { color: var(--brand-cyan); font-weight: 600; }
.step--done   .step__label { color: var(--state-success); }
.step__sep {
  flex: 1;
  height: 2px;
  background: var(--ui-border);
  margin: 0 0.5rem 1rem;
}

/* ============================================================
   Forms — champs inscription
   ============================================================ */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: var(--sp-4);
}
.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ui-text);
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group input[type="url"],
.form-group select,
.form-group textarea {
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--ui-border-strong);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--ui-text);
  background: var(--ui-surface);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand-cyan);
  box-shadow: 0 0 0 3px var(--brand-cyan-soft);
}
.form-group input[readonly],
.form-group textarea[readonly] {
  background: var(--ui-surface-alt);
  color: var(--ui-text-muted);
  border-color: var(--ui-border);
  cursor: default;
  box-shadow: none;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}
@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
}
.form-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.form-check input[type="checkbox"] {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
  accent-color: var(--brand-cyan);
}
.form-group ul { margin: 0; padding: 0; list-style: none; }
.form-group ul li { font-size: 0.875rem; color: var(--state-danger); }
.field-error {
  display: block;
  font-size: 0.8125rem;
  color: var(--state-danger);
  margin-top: 0.2rem;
}
.form-group input.input--error,
.form-group input[aria-invalid="true"] {
  border-color: var(--state-danger);
  box-shadow: 0 0 0 3px var(--state-danger-soft);
}

.quantity-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.quantity-row label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ui-text);
  white-space: nowrap;
}
.quantity-row input[type="number"] {
  width: 5rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--ui-border-strong);
  border-radius: 8px;
  font-size: 1rem;
  text-align: center;
}

.rgpd-notice {
  font-size: 0.875rem;
  color: var(--ui-text-muted);
  background: var(--ui-surface-alt);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin: var(--sp-6) 0;
  line-height: 1.6;
}
.rgpd-notice a { color: var(--brand-cyan); }

/* ============================================================
   Wizard actions bar
   ============================================================ */
.wizard-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-top: var(--sp-8);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--ui-border);
}

/* ============================================================
   Participant blocks (step 2)
   ============================================================ */
.wizard-add-participant { margin: var(--sp-4) 0 var(--sp-6); }

.participant-block {
  background: var(--ui-surface-alt);
  border: 1px solid var(--ui-border);
  border-radius: 12px;
  padding: var(--sp-6);
  margin-bottom: var(--sp-4);
}
.participant-block__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--sp-4);
}
.participant-block__title {
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--ui-text);
}
.participant-block__price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand-cyan);
  margin: 0.5rem 0 0;
  min-height: 1.4em;
}

.formula-list {
  margin: var(--sp-4) 0 var(--sp-2);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.formula-row {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  background: var(--ui-surface);
  border: 1px solid var(--ui-border);
  border-radius: 8px;
  padding: var(--sp-3) var(--sp-4);
}
.formula-row__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--sp-3);
}
.formula-row__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ui-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.formula-row__info {
  flex: 1;
  min-width: 0;
}
.formula-row__name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--ui-text);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-wrap: wrap;
}
.formula-row__desc {
  display: block;
  font-size: 0.8125rem;
  color: var(--ui-text-muted);
  margin-top: 2px;
}
.formula-row__price {
  font-size: 0.9375rem;
  color: var(--ui-text-muted);
  white-space: nowrap;
  min-width: 64px;
  text-align: right;
}
.formula-row__controls {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-shrink: 0;
}
.formula-row__included {
  display: inline-flex;
  align-items: center;
  background: var(--brand-violet-soft);
  color: var(--brand-violet-strong);
  border-radius: 20px;
  padding: 3px 12px;
  font-size: 0.8125rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Badge obligatoire ── */
.formula-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 10px;
  padding: 2px 8px;
  font-size: 0.75rem;
  font-weight: 600;
}
.formula-badge--required {
  background: var(--brand-magenta-soft);
  color: var(--brand-magenta);
}

/* ── Section PER_REGISTRATION ── */
.formula-section {
  border: 1px solid var(--ui-border);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: var(--sp-4);
}
.formula-section__title {
  background: var(--ui-surface-alt);
  padding: var(--sp-2) var(--sp-4);
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--ui-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}
.formula-section .formula-row {
  border: none;
  border-top: 1px solid var(--ui-border);
  border-radius: 0;
}

/* ── Boutons quantité +/− ── */
.btn-qty {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 6px;
  font-size: 1.125rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.12s, border-color 0.12s, color 0.12s;
  flex-shrink: 0;
}
.btn-qty.btn-minus {
  background: var(--ui-surface);
  border: 1px solid var(--ui-border);
  color: var(--ui-text-muted);
}
.btn-qty.btn-minus:hover:not(:disabled) {
  border-color: var(--brand-cyan);
  color: var(--brand-cyan);
}
.btn-qty.btn-plus {
  background: var(--brand-cyan);
  border: 1px solid var(--brand-cyan);
  color: #fff;
}
.btn-qty.btn-plus:hover:not(:disabled) {
  background: var(--brand-cyan-strong);
  border-color: var(--brand-cyan-strong);
}
.btn-qty:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.formula-row__controls .qty-input {
  width: 36px;
  text-align: center;
  border: 1px solid var(--ui-border);
  border-radius: 6px;
  padding: 4px 0;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--ui-text);
  background: var(--ui-surface);
  -moz-appearance: textfield;
  appearance: textfield;
}
.formula-row__controls .qty-input::-webkit-outer-spin-button,
.formula-row__controls .qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

/* ── Sous-total participant ── */
.participant-subtotal {
  text-align: right;
  font-weight: 700;
  color: var(--brand-cyan);
  font-size: 0.9375rem;
  margin: var(--sp-2) 0 0;
}

/* ── Total inscription ── */
.wizard-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-3) var(--sp-4);
  background: var(--ui-surface-brand);
  border-radius: 8px;
  border: 1px solid var(--brand-cyan-soft);
  margin-top: var(--sp-4);
}
.wizard-total span {
  font-weight: 600;
  color: var(--ui-text);
}
.wizard-total strong {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--brand-cyan);
}

/* ── Ajouter participant ── */
.wizard-add-participant {
  margin: var(--sp-4) 0;
}
.wizard-add-participant .btn {
  width: 100%;
  justify-content: center;
  border-style: dashed;
}

.formula-add {
  margin-top: var(--sp-2);
}

/* ============================================================
   Boutons — complément tokens brand
   ============================================================ */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  background: var(--brand-violet-soft);
  color: var(--brand-violet);
  border: 1px solid var(--brand-violet-soft);
  transition: background 0.15s;
}
.btn-secondary:hover { background: var(--brand-violet); color: var(--ui-text-inverse); }

.btn-secondary-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  background: transparent;
  color: var(--brand-cyan);
  border: 1px solid var(--brand-cyan);
  transition: background 0.15s;
}
.btn-secondary-outline:hover { background: var(--brand-cyan); color: var(--ui-text-inverse); }

.btn-danger-outline {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.75rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  background: transparent;
  color: var(--state-danger);
  border: 1px solid var(--state-danger);
  transition: background 0.15s;
}
.btn-danger-outline:hover:not(:disabled) { background: var(--state-danger-soft); }
.btn-danger-outline:disabled { opacity: 0.35; cursor: not-allowed; }
.btn-sm { padding: 0.25rem 0.6rem; font-size: 0.8125rem; }

/* ============================================================
   Paiement (step 3)
   ============================================================ */
.payment-section {
  margin-top: var(--sp-6);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--ui-border);
}
.payment-section h3 {
  font-size: 1.1875rem;
  font-weight: 600;
  margin: 0 0 var(--sp-4);
  color: var(--ui-text);
}
.payment-methods { display: flex; flex-direction: column; gap: 0.75rem; }
.payment-method-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--ui-border);
  border-radius: 8px;
  cursor: pointer;
  background: var(--ui-surface);
  transition: border-color 0.15s, background 0.15s;
}
.payment-method-option:has(input:checked) {
  border-color: var(--brand-cyan);
  background: var(--brand-cyan-soft);
}
.payment-method-option input[type="radio"] { accent-color: var(--brand-cyan); }
.payment-error { color: var(--state-danger); font-size: 0.875rem; margin-top: 0.5rem; }

/* ============================================================
   Summary table (composant)
   ============================================================ */
.registration-summary { overflow-x: auto; }
.summary-table { width: 100%; border-collapse: collapse; font-size: 1rem; }
.summary-table th {
  text-align: left;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ui-text-muted);
  border-bottom: 2px solid var(--ui-border);
  background: var(--ui-surface-alt);
}
.summary-table td {
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid var(--ui-border);
  color: var(--ui-text);
}
.summary-total td {
  font-weight: 700;
  background: var(--ui-surface-alt);
  border-top: 2px solid var(--ui-border);
}
.summary-participant-row td {
  background: var(--ui-surface-brand);
  padding-top: 0.75rem;
}

/* ============================================================
   Page de confirmation
   ============================================================ */
.confirmation-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  padding: 2rem 1rem;
}
.confirmation-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--state-success);
  color: var(--ui-text-inverse);
  font-size: 1.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.confirmation-title { font-size: 2.25rem; font-weight: 700; color: var(--ui-text); margin: 0; }
.confirmation-message { font-size: 1.0625rem; max-width: 34rem; margin: 0; }
.confirmation-message--success { color: var(--state-success); }
.confirmation-message--pending  { color: var(--state-warning); }

.recap-section { border-top: 1px solid var(--ui-border); padding-top: 1rem; margin-top: 1rem; }
.recap-section:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.recap-section__title { font-size: 1.1875rem; font-weight: 600; color: var(--ui-text); margin: 0 0 0.75rem; }
.recap-event-name { font-size: 1.375rem; font-weight: 700; color: var(--ui-text); margin: 0 0 0.5rem; }
.recap-event-meta { font-size: 1rem; color: var(--ui-text-muted); margin: 0; }

.recap-tracking {
  background: var(--ui-surface-brand);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid var(--ui-border);
  margin-top: 1.5rem;
}
.tracking-description { font-size: 1rem; color: var(--ui-text); margin: 0 0 1rem; }
.tracking-link-block { display: flex; gap: 0.5rem; align-items: stretch; flex-wrap: wrap; }
.tracking-url-input {
  flex: 1 1 16rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--ui-border-strong);
  border-radius: 8px;
  font-size: 0.875rem;
  color: var(--ui-text);
  background: var(--ui-surface);
  font-family: inherit;
  min-width: 0;
}
.btn-copy { white-space: nowrap; flex-shrink: 0; }
.tracking-hint { font-size: 0.875rem; color: var(--ui-text-muted); margin: 0.75rem 0 0; }
.confirmation-actions { display: flex; justify-content: center; margin-top: 2rem; }

/* ── Payment method selector (cards) ─────────────────────────────────── */

.payment-method-selector {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  border: none;
  padding: 0;
  margin: var(--space-4) 0;
}

.payment-card {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4);
  border: 2px solid var(--ui-border);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: border-color 0.15s, background-color 0.15s;
  background: var(--ui-surface);
}

.payment-card:hover {
  border-color: var(--action-primary);
  background: var(--action-primary-soft);
}

.payment-card input[type="radio"] {
  flex-shrink: 0;
  accent-color: var(--action-primary);
  width: 1.1rem;
  height: 1.1rem;
}

.payment-card:has(input:checked) {
  border-color: var(--action-primary);
  background: var(--action-primary-soft);
}

.payment-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  background: var(--ui-surface-brand);
  border-radius: var(--radius-md);
  color: var(--action-primary);
  flex-shrink: 0;
}

.payment-card__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.payment-card__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.payment-card__label {
  font-weight: var(--font-semibold);
  font-size: var(--text-base);
  color: var(--ui-text);
}

.payment-card__desc {
  font-size: var(--text-sm);
  color: var(--ui-text-muted);
}

/* ── Confirmation banner variants ────────────────────────────────────── */

.confirmation-icon--error {
  color: var(--state-danger);
  background: var(--state-danger-soft);
}

.confirmation-banner--error .confirmation-title {
  color: var(--state-danger);
}

.confirmation-message--error {
  color: var(--state-danger);
}

/* ── Legal / RGPD pages ───────────────────────────────────────────────── */

.legal-hero {
  background: linear-gradient(135deg, var(--brand-violet-soft) 0%, var(--brand-cyan-soft) 100%);
  padding: var(--space-12) 0 var(--space-8);
  border-bottom: 1px solid var(--ui-border);
}

.legal-hero__label {
  font-size: var(--text-xs);
  font-weight: var(--font-bold);
  letter-spacing: var(--tracking-xwide);
  color: var(--brand-violet);
  text-transform: uppercase;
  margin: 0 0 var(--space-3);
}

.legal-hero__title {
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  color: var(--ui-text);
  margin: 0 0 var(--space-2);
  line-height: var(--leading-tight);
}

@media (min-width: 768px) {
  .legal-hero__title { font-size: var(--text-4xl); }
}

.legal-hero__sub {
  font-size: var(--text-base);
  color: var(--ui-text-muted);
  margin: 0;
}

.legal-article {
  max-width: 760px;
  margin: var(--space-12) auto var(--space-16);
  padding: 0 var(--space-4);
}

.legal-section {
  padding: var(--space-8) 0;
  border-top: 1px solid var(--ui-border);
}

.legal-section:first-child {
  border-top: none;
  padding-top: 0;
}

.legal-section__title {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--ui-text);
  margin: 0 0 var(--space-4);
  line-height: var(--leading-snug);
}

.legal-section__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: var(--radius-full);
  background: var(--brand-violet-soft);
  color: var(--brand-violet);
  font-size: var(--text-sm);
  font-weight: var(--font-bold);
  flex-shrink: 0;
}

.legal-section p {
  font-size: var(--text-md);
  color: var(--ui-text);
  line-height: var(--leading-relaxed);
  margin: 0 0 var(--space-4);
}

.legal-section p:last-child { margin-bottom: 0; }

.legal-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.legal-list li {
  font-size: var(--text-md);
  color: var(--ui-text);
  line-height: var(--leading-relaxed);
  padding-left: var(--space-6);
  position: relative;
}

.legal-list li::before {
  content: '';
  position: absolute;
  left: var(--space-2);
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
  background: var(--brand-violet);
  flex-shrink: 0;
}

.legal-contact-block {
  margin-top: var(--space-4);
  padding: var(--space-4) var(--space-6);
  background: var(--ui-surface-brand);
  border: 1px solid var(--ui-border);
  border-left: 4px solid var(--brand-cyan);
  border-radius: var(--radius-md);
}

.legal-contact-block p {
  margin: 0 0 var(--space-2);
  font-size: var(--text-base);
  color: var(--ui-text-muted);
}

.legal-email {
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  color: var(--action-primary);
  text-decoration: none;
  word-break: break-all;
}

.legal-email:hover {
  color: var(--action-primary-hover);
  text-decoration: underline;
}

.legal-link {
  color: var(--action-primary);
  text-decoration: underline;
  font-weight: var(--font-medium);
}

.legal-link:hover { color: var(--action-primary-hover); }

.legal-dl {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin: 0;
}

.legal-dl__row {
  display: grid;
  grid-template-columns: 10rem 1fr;
  gap: var(--space-2) var(--space-4);
  align-items: start;
}

@media (max-width: 640px) {
  .legal-dl__row { grid-template-columns: 1fr; }
}

.legal-dl__row dt {
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--ui-text-muted);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  padding-top: 0.15em;
}

.legal-dl__row dd {
  font-size: var(--text-md);
  color: var(--ui-text);
  line-height: var(--leading-relaxed);
  margin: 0;
}

/* ── About page ───────────────────────────────────────────────────────── */

/* Hero */
.about-hero {
  background: linear-gradient(135deg, var(--brand-cyan-soft) 0%, var(--brand-violet-soft) 100%);
  padding: var(--space-16) 0 var(--space-12);
  overflow: hidden;
}

.about-hero__inner {
  display: flex;
  align-items: center;
  gap: var(--space-12);
}

.about-hero__text { flex: 1 1 0; }

.about-hero__label {
  font-size: var(--text-xs);
  font-weight: var(--font-bold);
  letter-spacing: var(--tracking-xwide);
  color: var(--brand-cyan);
  text-transform: uppercase;
  margin: 0 0 var(--space-3);
}

.about-hero__title {
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  color: var(--ui-text);
  line-height: var(--leading-tight);
  margin: 0 0 var(--space-4);
}

@media (min-width: 768px) {
  .about-hero__title { font-size: var(--text-4xl); }
}

.about-hero__sub {
  font-size: var(--text-lg);
  color: var(--ui-text-muted);
  line-height: var(--leading-relaxed);
  margin: 0 0 var(--space-8);
  max-width: 36rem;
}

.about-hero__cta { align-self: flex-start; }

.about-hero__visual {
  flex-shrink: 0;
  display: none;
}

@media (min-width: 768px) { .about-hero__visual { display: flex; } }

.about-hero__badge {
  width: 11rem;
  height: 11rem;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--brand-cyan) 0%, var(--brand-violet) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.about-hero__badge svg { width: 5rem; height: 5rem; }

/* Stats bar */
.about-stats-bar {
  background: var(--ui-surface);
  border-top: 1px solid var(--ui-border);
  border-bottom: 1px solid var(--ui-border);
  padding: var(--space-6) 0;
}

.about-stats-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  flex-wrap: wrap;
}

.about-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
}

.about-stat__value {
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  color: var(--brand-cyan);
  line-height: 1;
}

.about-stat__label {
  font-size: var(--text-sm);
  color: var(--ui-text-muted);
  font-weight: var(--font-medium);
}

.about-stat-sep {
  width: 1px;
  height: 2.5rem;
  background: var(--ui-border);
}

@media (max-width: 640px) { .about-stat-sep { display: none; } }

/* Sections */
.about-section { padding: var(--space-16) 0; }
.about-section--alt { background: var(--ui-surface-alt); }

.about-section__inner { display: flex; flex-direction: column; gap: var(--space-10); }

.about-section__header { display: flex; flex-direction: column; gap: var(--space-3); }

.about-section__tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: var(--font-bold);
  letter-spacing: var(--tracking-wide);
  color: var(--brand-violet);
  text-transform: uppercase;
}

.about-section__tag svg { width: 1rem; height: 1rem; }

.about-section__title {
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  color: var(--ui-text);
  line-height: var(--leading-snug);
  margin: 0;
}

@media (min-width: 768px) {
  .about-section__title { font-size: var(--text-3xl); }
}

/* Intro text */
.about-intro {
  font-size: var(--text-lg);
  color: var(--ui-text);
  line-height: var(--leading-relaxed);
  max-width: 48rem;
  margin: 0;
}

/* Highlights */
.about-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 640px) {
  .about-highlights { grid-template-columns: 1fr 1fr; }
}

.about-highlight {
  background: var(--ui-surface);
  border: 1px solid var(--ui-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.about-highlight__icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-lg);
  background: var(--brand-cyan-soft);
  color: var(--brand-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-highlight__icon svg { width: 1.5rem; height: 1.5rem; }

.about-highlight__title {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--ui-text);
  margin: 0;
}

.about-highlight__text {
  font-size: var(--text-md);
  color: var(--ui-text-muted);
  line-height: var(--leading-relaxed);
  margin: 0;
}

/* Steps */
.about-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-step {
  display: flex;
  gap: var(--space-6);
  padding-bottom: var(--space-8);
  position: relative;
}

.about-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 1.25rem;
  top: 3rem;
  bottom: 0;
  width: 2px;
  background: var(--ui-border);
}

.about-step__num {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--brand-cyan) 0%, var(--brand-violet) 100%);
  color: #fff;
  font-size: var(--text-base);
  font-weight: var(--font-bold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.about-step__body { padding-top: 0.25rem; }

.about-step__title {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--ui-text);
  margin: 0 0 var(--space-3);
}

.about-step__text {
  font-size: var(--text-md);
  color: var(--ui-text-muted);
  line-height: var(--leading-relaxed);
  margin: 0;
  max-width: 40rem;
}

/* Participate cards */
.about-participate {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 640px) {
  .about-participate { grid-template-columns: repeat(3, 1fr); }
}

.about-participate-card {
  background: var(--ui-surface);
  border: 1px solid var(--ui-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}

.about-participate-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--ui-border-strong);
  transform: translateY(-2px);
}

.about-participate-card--primary {
  border-color: var(--brand-cyan);
  background: var(--brand-cyan-soft);
}

.about-participate-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-lg);
  background: var(--ui-surface-brand);
  color: var(--brand-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-participate-card--primary .about-participate-card__icon {
  background: #fff;
}

.about-participate-card__icon svg { width: 1.5rem; height: 1.5rem; }

.about-participate-card__title {
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  color: var(--ui-text);
  margin: 0;
}

.about-participate-card__text {
  font-size: var(--text-base);
  color: var(--ui-text-muted);
  line-height: var(--leading-relaxed);
  margin: 0;
}

/* CTA banner */
.about-cta-banner {
  background: linear-gradient(135deg, var(--brand-cyan) 0%, var(--brand-violet) 100%);
  padding: var(--space-12) 0;
}

.about-cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  flex-wrap: wrap;
}

.about-cta-banner__title {
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  color: #fff;
  margin: 0 0 var(--space-2);
}

.about-cta-banner__sub {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.8);
  margin: 0;
}

.about-cta-banner .btn-primary {
  background: #fff;
  color: var(--brand-cyan);
  border-color: #fff;
  flex-shrink: 0;
}

.about-cta-banner .btn-primary:hover {
  background: var(--brand-cyan-soft);
  border-color: var(--brand-cyan-soft);
}

/* ── Team page ────────────────────────────────────────────────────────── */

.team-content {
  padding: var(--space-12) 0 var(--space-16);
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.team-section__title {
  font-size: var(--text-xs);
  font-weight: var(--font-bold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-xwide);
  color: var(--ui-text-muted);
  margin: 0 0 var(--space-8);
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.team-section__title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--ui-border);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: var(--space-4);
  list-style: none;
  padding: 0;
  margin: 0;
}

.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  background: var(--ui-surface);
  border: 1px solid var(--ui-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6) var(--space-4);
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}

.team-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.team-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  overflow: hidden;
  flex-shrink: 0;
}

.team-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-card__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--brand-cyan) 0%, var(--brand-violet) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-card__initials {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1;
}

.team-card__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.team-card__name {
  font-size: var(--text-base);
  font-weight: var(--font-bold);
  color: var(--ui-text);
  margin: 0;
}

.team-card__role {
  font-size: var(--text-xs);
  color: var(--ui-text-muted);
  font-weight: var(--font-medium);
  margin: 0;
}

.team-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-16) 0;
  color: var(--ui-text-muted);
  font-size: var(--text-lg);
}

.team-empty__icon svg {
  width: 3rem;
  height: 3rem;
  opacity: 0.3;
}

/* ═══════════════════════════════════════════
   Page recherche
   ═══════════════════════════════════════════ */

.search-results-page {
  padding: var(--space-12) 0 var(--space-16);
  min-height: 60vh;
}

.search-results-header {
  margin-bottom: var(--space-8);
}

.search-results-form {
  width: 100%;
}

.search-results-wrap {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: var(--ui-surface);
  border: 2px solid var(--ui-border-strong);
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-2) var(--space-2) var(--space-4);
  max-width: 640px;
  transition: border-color 0.2s;
}

.search-results-wrap:focus-within {
  border-color: var(--action-primary);
}

.search-results-wrap .search-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  color: var(--ui-text-muted);
}

.search-results-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: var(--text-base);
  font-family: var(--font-body);
  color: var(--ui-text);
  background: transparent;
}

.search-results-input::placeholder {
  color: var(--ui-text-soft);
}

.search-results-count {
  color: var(--ui-text-muted);
  font-size: var(--text-sm);
  margin-bottom: var(--space-8);
}

.search-section-title {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--ui-text);
  margin: var(--space-10) 0 var(--space-6);
  padding-bottom: var(--space-3);
  border-bottom: 2px solid var(--ui-border);
}

.search-section-title svg {
  width: 1.2em;
  height: 1.2em;
  color: var(--action-primary);
}

.search-count-badge {
  margin-left: auto;
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--ui-text-muted);
  background: var(--ui-surface-alt);
  border-radius: var(--radius-full);
  padding: 0.15em 0.75em;
}

.search-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-16) 0;
  text-align: center;
  color: var(--ui-text-muted);
}

.search-empty-icon {
  font-size: 3.5rem;
  opacity: 0.2;
}

.search-empty-icon svg {
  width: 3.5rem;
  height: 3.5rem;
}

.search-empty-links {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  justify-content: center;
  margin-top: var(--space-2);
}

/* sr-only (si pas déjà défini) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   Vie scolaire — pages Conseil d'École
   ============================================================ */

/* Hero violet */
.page-hero--violet {
  background: linear-gradient(135deg, var(--violet) 0%, #4F2D7F 100%);
}
.page-hero--violet .breadcrumb,
.page-hero--violet .breadcrumb .sep { color: rgba(255,255,255,0.65); }
.page-hero--violet .breadcrumb a { color: rgba(255,255,255,0.85); }
.page-hero--violet .breadcrumb a:hover { color: #fff; }

.page-hero__title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 0.5rem;
}
@media (min-width: 768px) {
  .page-hero__title { font-size: 2.75rem; }
}
.page-hero__subtitle {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.82);
  margin: 0;
}

/* Content layout */
.content-flow {
  padding: 2.5rem 0 4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.content-section {
  background: var(--card);
  border-radius: var(--radius-md);
  padding: 1.75rem 2rem;
  box-shadow: var(--shadow-sm);
}
.content-section h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--violet);
  margin: 0 0 0.875rem;
}
.content-section p,
.content-section ul,
.content-section ol {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 0.625rem;
}
.content-section p:last-child,
.content-section ul:last-child,
.content-section ol:last-child { margin-bottom: 0; }
.content-section ul,
.content-section ol { padding-left: 1.25rem; }
.content-section li { margin-bottom: 0.35rem; }

/* CTA button group */
.cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* Alert success */
.alert--success {
  background: var(--state-success-soft);
  border: 1px solid var(--state-success);
  color: var(--state-success);
}

/* Form submit row */
.form-actions {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Accordion Q&A */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.accordion__item {
  border: 1px solid var(--ui-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--card);
}
.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: transparent;
  text-align: left;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  border: none;
  transition: background 0.15s;
}
.accordion__trigger:hover,
.accordion__trigger[aria-expanded="true"] {
  background: var(--violet-soft);
}
.accordion__question { flex: 1; }
.accordion__chevron {
  font-size: 1.1rem;
  color: var(--violet);
  flex-shrink: 0;
  transition: transform 0.2s ease;
  display: inline-block;
}
.accordion__trigger[aria-expanded="true"] .accordion__chevron {
  transform: rotate(180deg);
}
.accordion__panel {
  padding: 1rem 1.25rem 1.25rem;
  border-top: 1px solid var(--ui-border);
  background: var(--bg-alt);
}
.accordion__answer {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 0.5rem;
}
.accordion__meta {
  font-size: 0.8125rem;
  color: var(--muted);
  opacity: 0.7;
  margin: 0;
}

/* ── Council page — layout ────────────────────────────────────────── */
.council-layout {
  padding: 3rem 0 5rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* Intro: editorial prose with violet accent */
.council-intro {
  max-width: 680px;
  padding-left: 1.5rem;
  border-left: 3px solid var(--violet);
}
.council-intro p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--muted);
  margin: 0 0 0.75rem;
}
.council-intro p:last-child { margin-bottom: 0; }

/* Numbered section header */
.council-block__title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.3125rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 0.75rem;
}
.council-block__num {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--violet);
  background: var(--violet-soft);
  padding: 3px 9px;
  border-radius: 6px;
  flex-shrink: 0;
  text-transform: uppercase;
}
.council-block__lead {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 1.25rem;
}
.council-block__note {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 1.25rem 0 0;
  font-style: italic;
}

/* Member grid — 2×2 */
.council-members {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (max-width: 600px) {
  .council-members { grid-template-columns: 1fr; }
}
.council-member {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1rem 1.25rem;
  background: var(--card);
  border-radius: var(--radius-sm);
  border: 1.5px solid #EAE4F4;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
}
.council-member__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--violet-soft);
  border-radius: 10px;
  color: var(--violet);
  flex-shrink: 0;
}
.council-member__icon svg { width: 16px; height: 16px; }
.council-member--featured {
  background: var(--violet-soft);
  border-color: rgba(107, 63, 160, 0.35);
  color: var(--violet-deep);
  font-weight: 700;
}
.council-member--featured .council-member__icon {
  background: var(--violet);
  color: #fff;
}

/* Role strips */
.council-roles {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.council-role {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: #F8F6FC;
  border-radius: var(--radius-sm);
}
.council-role__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--violet);
  border-radius: 10px;
  color: #fff;
  flex-shrink: 0;
  margin-top: 1px;
}
.council-role__icon svg { width: 16px; height: 16px; }
.council-role__body strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.2rem;
}
.council-role__body p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Callout block */
.council-callout {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: linear-gradient(135deg, var(--violet-soft) 0%, #F4FAFD 100%);
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(107, 63, 160, 0.2);
  padding: 1.75rem 2rem;
}
.council-callout__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--violet);
  border-radius: 14px;
  color: #fff;
  flex-shrink: 0;
}
.council-callout__icon svg { width: 22px; height: 22px; }
.council-callout__body h2 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.625rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 0.75rem;
}
.council-callout__body p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}
@media (max-width: 600px) {
  .council-callout { flex-direction: column; gap: 1rem; }
}

/* ── Newsletter confirmation pages ── */
.page-simple {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-12) var(--space-4);
}
.page-simple__inner {
  text-align: center;
  max-width: 480px;
}
.page-simple__icon {
  font-size: 3rem;
  margin-bottom: var(--space-4);
}
.page-simple__title {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  color: var(--ui-text);
  margin: 0 0 var(--space-4);
}
.page-simple__text {
  color: var(--ui-text-muted);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  margin: 0 0 var(--space-8);
}

/* ── Error pages ── */
.page-error__code {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: var(--font-bold);
  line-height: 1;
  margin-bottom: var(--space-2);
}
.page-error__code--cyan   { color: var(--cyan); }
.page-error__code--danger { color: var(--magenta); }
.page-error__code--muted  { color: var(--muted); }

.page-error__icon {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-4);
}
.page-error__icon svg { width: 3.5rem; height: 3.5rem; }
.page-error__icon--cyan   svg { color: var(--cyan); }
.page-error__icon--danger svg { color: var(--magenta); }
.page-error__icon--muted  svg { color: var(--muted); }

.page-error__actions {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
  flex-wrap: wrap;
}
