    @font-face {
      font-family: "Shantell Sans";
      src: url("../assets/font/ShantellSans[BNCE,INFM,SPAC,ital,wght].woff2") format("woff2");
      font-weight: 300 800;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: "Ronzino";
      src: url("../assets/font/Ronzino/Ronzino-Regular.woff2") format("woff2");
      font-weight: 400;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: "Ronzino";
      src: url("../assets/font/Ronzino/Ronzino-Oblique.woff2") format("woff2");
      font-weight: 400;
      font-style: italic;
      font-display: swap;
    }

    @font-face {
      font-family: "Ronzino";
      src: url("../assets/font/Ronzino/Ronzino-Medium.woff2") format("woff2");
      font-weight: 500;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: "Ronzino";
      src: url("../assets/font/Ronzino/Ronzino-MediumOblique.woff2") format("woff2");
      font-weight: 500;
      font-style: italic;
      font-display: swap;
    }

    @font-face {
      font-family: "Ronzino";
      src: url("../assets/font/Ronzino/Ronzino-Bold.woff2") format("woff2");
      font-weight: 700;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: "Ronzino";
      src: url("../assets/font/Ronzino/Ronzino-BoldOblique.woff2") format("woff2");
      font-weight: 700;
      font-style: italic;
      font-display: swap;
    }

    @property --bnce-anim {
      syntax: "<number>";
      inherits: false;
      initial-value: -100;
    }

    @keyframes bnce-axis {
      0% {
        --bnce-anim: -100;
      }

      50% {
        --bnce-anim: 100;
      }

      100% {
        --bnce-anim: -100;
      }
    }

    @property --hero-bnce {
      syntax: "<number>";
      inherits: false;
      initial-value: -100;
    }

    @property --hero-wght {
      syntax: "<number>";
      inherits: false;
      initial-value: 580;
    }

    @keyframes hero-h1-anim {
      0% {
        --hero-bnce: -100;
        --hero-wght: 540;
      }

      25% {
        --hero-bnce: 0;
        --hero-wght: 640;
      }

      50% {
        --hero-bnce: 100;
        --hero-wght: 580;
      }

      75% {
        --hero-bnce: 0;
        --hero-wght: 620;
      }

      100% {
        --hero-bnce: -100;
        --hero-wght: 540;
      }
    }

    @keyframes fade-up {
      from {
        opacity: 0;
        transform: translateY(14px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes scroll-cue {

      0%,
      100% {
        transform: translateY(0);
        opacity: 0.55;
      }

      50% {
        transform: translateY(6px);
        opacity: 1;
      }
    }

    :root {
      --accent: #D54247;
      --accent-dark: #b8353a;
      --accent-deep: #8b2529;
      --accent-soft: rgba(213, 66, 71, 0.10);
      --accent-glow: rgba(213, 66, 71, 0.22);
      --bg: #fbfaf7;
      --bg-tint: #f3f1ec;
      --surface: #ffffff;
      --text: #15140f;
      --muted: #6b685f;
      --muted-2: #8a8780;
      --line: #e8e5dd;
      --line-strong: #d8d4c9;
      --font-head: "Shantell Sans", Georgia, "Times New Roman", serif;
      --font-body: "Ronzino", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      --radius-sm: 10px;
      --radius: 16px;
      --radius-lg: 24px;
      --shadow-sm: 0 1px 2px rgba(20, 18, 14, 0.04), 0 1px 3px rgba(20, 18, 14, 0.05);
      --shadow: 0 4px 14px rgba(20, 18, 14, 0.06), 0 1px 3px rgba(20, 18, 14, 0.04);
      --shadow-lg: 0 24px 48px -16px rgba(20, 18, 14, 0.18), 0 8px 16px -8px rgba(20, 18, 14, 0.08);
      --nav-h: 4rem;
      --top-nav-h: 4.25rem;
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
    }

    ::selection {
      background: var(--accent);
      color: #fff;
    }

    .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;
    }

    .mobile-only {
      display: none;
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: calc(var(--top-nav-h) + 0.5rem);
      scroll-padding-bottom: calc(var(--nav-h) + 1rem);
    }

    body {
      margin: 0;
      font-family: var(--font-body);
      font-size: 1.0625rem;
      line-height: 1.65;
      color: var(--text);
      background: var(--bg);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      text-rendering: optimizeLegibility;
      padding-bottom: 0;
    }

    body.has-bottom-nav {
      padding-bottom: calc(var(--nav-h) + env(safe-area-inset-bottom, 0px) + 1rem);
    }

    @media (min-width: 880px) {
      body.has-bottom-nav {
        padding-bottom: 0;
      }
    }

    /* ---- Typographie ---- */
    h1,
    h2,
    h3,
    .card__title,
    .footer h2,
    .eyebrow-script {
      font-family: var(--font-head);
      line-height: 1.15;
      letter-spacing: -0.005em;
      color: var(--text);
      font-variation-settings:
        "BNCE" var(--bnce-anim),
        "INFM" 0,
        "SPAC" 0,
        "ital" 0,
        "wght" var(--sh-wght, 700);
      animation: bnce-axis 10s linear infinite;
    }

    h1 {
      --sh-wght: 580;
      font-size: clamp(2.5rem, 9vw, 5rem);
      font-weight: 580;
      margin: 0 0 0.5rem;
      letter-spacing: -0.01em;
      line-height: 0.92;
      padding-bottom: 0.18em;
    }

    h2 {
      --sh-wght: 720;
      font-size: clamp(1.5rem, 3.5vw, 2rem);
      font-weight: 720;
      margin: 0 0 1rem;
      line-height: 1.1;
    }

    main>section:nth-of-type(even) h2 {
      --sh-wght: 705;
    }

    main>section:nth-of-type(odd) h2 {
      --sh-wght: 735;
    }

    main>section.hero h2 {
      --sh-wght: 580;
    }

    h3 {
      --sh-wght: 655;
      font-size: 1.15rem;
      font-weight: 655;
      margin: 1.25rem 0 0.5rem;
      color: var(--text);
    }

    .card__title {
      --sh-wght: 690;
      font-size: clamp(1.15rem, 2.2vw, 1.35rem);
      font-weight: 690;
      margin: 0 0 0.5rem;
      line-height: 1.2;
    }

    .footer h2 {
      --sh-wght: 670;
      font-weight: 670;
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      h1,
      h2,
      h3,
      .card__title,
      .footer h2,
      .eyebrow-script {
        animation: none;
        font-variation-settings:
          "BNCE" 0, "INFM" 0, "SPAC" 0, "ital" 0,
          "wght" var(--sh-wght, 700);
      }
    }

    p {
      margin: 0 0 1rem;
      color: var(--text);
    }

    p:last-child {
      margin-bottom: 0;
    }

    .muted {
      color: var(--muted);
      font-size: 0.95rem;
    }

    a {
      color: var(--accent-dark);
      text-decoration-thickness: 1px;
      text-underline-offset: 0.22em;
      transition: color 0.18s ease;
    }

    a:hover {
      color: var(--accent);
    }

    /* ---- Layout ---- */
    .wrap {
      max-width: 68rem;
      margin: 0 auto;
      padding: 0 1.25rem;
    }

    main {
      padding-top: 0;
    }

    main>section {
      padding: 3rem 1.25rem;
      margin: 0;
      position: relative;
      scroll-margin-top: calc(var(--top-nav-h) + 1rem);
    }

    main>section+section {
      border-top: 1px solid var(--line);
    }

    main>section.hero {
      border-top: 0;
    }

    /* fond légèrement teinté pour quelques sections — rythme visuel */
    #concept,
    #edition-featured,
    #faq {
      background: var(--bg-tint);
    }

    .section-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-family: var(--font-body);
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 0.85rem;
    }

    .section-eyebrow::before {
      content: "";
      width: 1.5rem;
      height: 1px;
      background: var(--accent);
    }

    .lede {
      font-size: clamp(1.05rem, 1.5vw, 1.2rem);
      line-height: 1.55;
      color: var(--muted);
      max-width: 38em;
      margin-bottom: 1.5rem;
    }

    #courses .lede {
      max-width: none;
    }

    #concept .concept__body + p {
      margin-top: 1.75rem;
    }

    /* ---- Top nav (desktop) ---- */
    .top-nav {
      position: sticky;
      top: 0;
      z-index: 30;
      background: transparent;
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
      border-bottom: 1px solid transparent;
      transition: border-color 0.25s ease, background 0.25s ease, backdrop-filter 0.25s ease;
      display: none;
    }

    .top-nav.is-scrolled,
    .top-nav--solid {
      background: rgba(251, 250, 247, 0.85);
      backdrop-filter: saturate(140%) blur(12px);
      -webkit-backdrop-filter: saturate(140%) blur(12px);
      border-bottom-color: var(--line);
    }

    .top-nav__inner {
      max-width: 68rem;
      margin: 0 auto;
      padding: 0 1.25rem;
      height: var(--top-nav-h);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
    }

    .top-nav__brand {
      font-family: var(--font-head);
      font-weight: 720;
      font-size: 1rem;
      color: var(--text);
      text-decoration: none;
      letter-spacing: -0.01em;
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
      --sh-wght: 720;
      font-variation-settings:
        "BNCE" 0, "INFM" 0, "SPAC" 0, "ital" 0, "wght" 720;
    }

    .top-nav__links {
      display: flex;
      align-items: center;
      gap: 0.25rem;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .top-nav__links a {
      display: inline-block;
      padding: 0.5rem 0.85rem;
      border-radius: 999px;
      font-size: 0.9rem;
      font-weight: 550;
      color: var(--muted);
      text-decoration: none;
      transition: color 0.18s ease, background 0.18s ease;
    }

    .top-nav__links a:hover {
      color: var(--text);
      background: var(--bg-tint);
    }

    .top-nav__links a[aria-current="page"] {
      color: var(--accent);
      background: var(--accent-soft);
    }

    .top-nav__cta {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.55rem 1rem;
      border-radius: 999px;
      background: var(--accent);
      color: #fff !important;
      font-size: 0.875rem;
      font-weight: 600;
      text-decoration: none;
      transition: transform 0.18s ease, background 0.18s ease, opacity 0.2s ease;
      opacity: 0;
      pointer-events: none;
    }

    .top-nav__cta:hover {
      background: var(--accent-dark);
      transform: translateY(-1px);
    }

    .top-nav.cta-visible .top-nav__cta,
    .top-nav--solid .top-nav__cta {
      opacity: 1;
      pointer-events: auto;
    }

    @media (min-width: 880px) {
      .top-nav {
        display: block;
      }

      .hero {
        margin-top: calc(-1 * var(--top-nav-h));
        padding-top: calc(var(--top-nav-h) + clamp(2rem, 5vw, 4rem));
      }
    }

    /* ---- Hero ---- */
    .hero {
      min-height: 100vh;
      min-height: 100dvh;
      padding: clamp(3rem, 8vw, 5.5rem) 1.25rem clamp(2.5rem, 6vw, 4rem);
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(ellipse 80% 60% at 85% 0%, var(--accent-glow), transparent 60%),
        radial-gradient(ellipse 70% 50% at 0% 100%, rgba(213, 66, 71, 0.08), transparent 55%),
        linear-gradient(180deg, #fffdf9 0%, var(--bg) 100%);
    }

    @media (max-width: 879px) {
      .hero {
        min-height: calc(100vh - var(--nav-h) - env(safe-area-inset-bottom, 0px));
        min-height: calc(100dvh - var(--nav-h) - env(safe-area-inset-bottom, 0px));
      }
    }

    .hero__inner {
      width: 100%;
      max-width: 68rem;
      margin: 0 auto;
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
      align-items: center;
    }

    .hero__content>*,
    .hero__art,
    .hero__meta {
      animation: fade-up 0.8s ease both;
    }

    .hero__content> :nth-child(1) {
      animation-delay: 0.08s;
    }

    .hero__content> :nth-child(2) {
      animation-delay: 0.16s;
    }

    .hero__content> :nth-child(3) {
      animation-delay: 0.24s;
    }

    .hero__art {
      animation-delay: 0.2s;
    }

    .hero__meta {
      animation-delay: 0.4s;
    }

    .hero__content {
      position: relative;
      z-index: 2;
    }

    .hero__art {
      display: flex;
      align-items: center;
      justify-content: center;
      order: 0;
      margin: 0.5rem 0;
      position: relative;
      z-index: 1;
    }

    .hero__art img {
      width: 100%;
      max-width: 22rem;
      height: auto;
      display: block;
      filter: drop-shadow(0 12px 24px rgba(20, 18, 14, 0.12));
    }

    @media (min-width: 880px) {
      .hero__inner {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
        gap: 3rem;
      }

      .hero__art {
        order: 0;
        margin: 0;
      }

      .hero__art img {
        max-width: 100%;
        width: 100%;
      }

      .hero__meta,
      .hero__meta-date {
        grid-column: 1 / -1;
      }
    }

    @media (max-width: 879px) {
      .wrap {
        padding-left: 0.85rem;
        padding-right: 0.85rem;
      }

      main>section {
        padding-left: 0.85rem;
        padding-right: 0.85rem;
      }

      .hero {
        padding-left: 0.85rem;
        padding-right: 0.85rem;
      }

      .footer {
        padding-left: 0.85rem;
        padding-right: 0.85rem;
      }

      .footer .wrap {
        padding-left: 0.85rem;
        padding-right: 0.85rem;
      }

      .mobile-only {
        display: inline;
      }

      .hero h1 {
        font-size: clamp(3rem, 13vw, 4.6rem);
      }

      .hero__inner {
        justify-items: center;
        text-align: center;
      }

      .hero__content {
        display: flex;
        flex-direction: column;
        align-items: center;
      }

      .hero h2,
      .hero__meta-date {
        margin-left: auto;
        margin-right: auto;
      }

      .hero__meta {
        justify-content: center;
      }

      .hero__meta-stats {
        justify-content: center;
      }

      .hero__meta-item {
        align-items: center;
        text-align: center;
      }

      .hero__meta-cta {
        display: flex;
        justify-content: center;
        margin-left: 0;
        width: 100%;
      }
    }

    .hero h1 {
      background: linear-gradient(180deg, var(--text) 0%, var(--text) 60%, var(--accent-deep) 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      color: transparent;
      font-variation-settings:
        "BNCE" 0, "INFM" 0, "SPAC" 0, "ital" 0, "wght" 580;
      animation: none;
    }

    .hero h2 {
      font-size: clamp(1.05rem, 1.8vw, 1.25rem);
      font-weight: 580;
      color: var(--muted);
      margin: 0.75rem 0 1.5rem;
      max-width: 32em;
      line-height: 1.4;
    }

    .hero__lede {
      font-size: clamp(1rem, 1.4vw, 1.1rem);
      color: var(--muted);
      max-width: 36em;
      margin-bottom: 2rem;
    }

    .hero__ctas {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      align-items: center;
    }

    .hero__meta {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem 2.5rem;
      margin-top: 0;
      padding-top: 2rem;
      border-top: 1px solid var(--line);
    }

    .hero__meta-date {
      width: 100%;
      flex: 0 0 100%;
      margin: 0;
      font-family: var(--font-body);
      font-size: clamp(1.25rem, 2.1vw, 1.55rem);
      font-weight: 680;
      color: var(--muted);
    }

    .hero__meta-date p {
      margin: 0;
    }

    .hero__meta-stats {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem 2.5rem;
      flex: 1 1 auto;
    }

    .hero__meta-date strong {
      color: var(--accent);
      font-weight: 700;
    }

    .hero__meta-cta {
      margin-left: auto;
      align-self: center;
    }

    .hero__meta-item {
      display: flex;
      flex-direction: column;
      gap: 0.15rem;
    }

    .hero__meta-value {
      font-family: var(--font-head);
      font-size: clamp(1.5rem, 3vw, 2rem);
      font-weight: 720;
      color: var(--accent);
      line-height: 1;
      --sh-wght: 720;
    }

    .hero__meta-label {
      font-size: 0.78rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--muted-2);
    }

    /* ---- Boutons ---- */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.4rem;
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 0.95rem;
      text-decoration: none;
      padding: 0.85rem 1.4rem;
      border-radius: 999px;
      border: none;
      cursor: pointer;
      text-align: center;
      transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, color 0.18s ease;
      white-space: nowrap;
    }

    .btn--primary {
      background: var(--accent);
      color: #fff !important;
      box-shadow: 0 8px 20px -8px var(--accent-glow), 0 2px 4px rgba(213, 66, 71, 0.2);
    }

    .btn--primary:hover {
      background: var(--accent-dark);
      transform: translateY(-2px);
      box-shadow: 0 12px 28px -8px var(--accent-glow), 0 4px 8px rgba(213, 66, 71, 0.25);
    }

    .btn--ghost {
      background: var(--surface);
      color: var(--text) !important;
      border: 1px solid var(--line-strong);
      box-shadow: var(--shadow-sm);
    }

    .btn--ghost:hover {
      border-color: var(--accent);
      color: var(--accent) !important;
      transform: translateY(-2px);
    }

    .btn--archives {
      background: var(--accent-soft);
      color: var(--accent-deep) !important;
      border: 1px solid var(--accent);
      box-shadow: none;
    }

    .btn--archives:hover {
      background: var(--accent);
      color: #fff !important;
      border-color: var(--accent);
      transform: translateY(-2px);
      box-shadow: 0 8px 20px -8px var(--accent-glow);
    }

    .btn--block {
      width: 100%;
    }

    .btn--lg {
      padding: 1rem 1.6rem;
      font-size: 1rem;
    }

    /* ---- Cartes ---- */
    .cards {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    .card {
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 1.5rem;
      box-shadow: none;
      transition: border-color 0.25s ease;
      position: relative;
      overflow: hidden;
    }

    .card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, var(--accent), var(--accent-deep));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
    }

    .card:hover {
      transform: none;
      box-shadow: none;
      border-color: var(--line);
    }

    .card:hover::before {
      transform: scaleX(0);
    }

    .card__tag {
      display: inline-block;
      font-family: var(--font-body);
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--accent);
      background: var(--accent-soft);
      padding: 0.25rem 0.6rem;
      border-radius: 999px;
      margin-bottom: 0.85rem;
    }

    .card__stats {
      font-size: 0.85rem;
      color: var(--muted);
      margin-bottom: 0.65rem;
    }

    .card__map {
      margin: 1rem 0 0;
    }

    .card__map img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: var(--radius-sm);
      border: 1px solid var(--line);
    }

    .placeholder-visual {
      border: 1.5px dashed var(--line-strong);
      border-radius: var(--radius-sm);
      padding: 2rem 0.75rem;
      text-align: center;
      font-size: 0.85rem;
      color: var(--muted-2);
      margin: 1rem 0;
      background:
        repeating-linear-gradient(45deg, transparent 0 10px, rgba(0, 0, 0, 0.015) 10px 20px),
        var(--bg);
    }

    /* ---- Partenaires ---- */
    .partners-band {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 1.5rem;
      margin-top: 1rem;
      box-shadow: none;
    }

    .partners-band__label {
      margin: 0 0 1rem;
      font-family: var(--font-body);
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--muted);
    }

    .partners-band .placeholders-row {
      display: flex;
      flex-wrap: nowrap;
      gap: 0.75rem;
      overflow-x: auto;
      scroll-snap-type: x proximity;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: thin;
      padding-bottom: 0.25rem;
      margin-top: 0;
    }

    .logo-slot {
      flex: 0 0 auto;
      min-width: 7rem;
      min-height: 4.5rem;
      scroll-snap-align: start;
      background: transparent;
      border: none;
      border-radius: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.72rem;
      color: var(--muted-2);
      padding: 0.5rem;
      text-align: center;
    }

    .logo-slot img {
      max-width: 100%;
      max-height: 3rem;
      width: auto;
      height: auto;
      object-fit: contain;
    }

    /* ---- Note / callout ---- */
    .note {
      font-size: 0.95rem;
      background: var(--accent-soft);
      border: 1px solid rgba(213, 66, 71, 0.15);
      border-left: 3px solid var(--accent);
      padding: 0.9rem 1.1rem;
      border-radius: var(--radius-sm);
      margin: 1.25rem 0;
      color: var(--text);
    }

    /* ---- Listes ---- */
    ul.list {
      margin: 0 0 1rem;
      padding-left: 0;
      list-style: none;
    }

    ul.list li {
      position: relative;
      padding-left: 1.6rem;
      margin: 0.55rem 0;
    }

    ul.list li::before {
      content: "";
      position: absolute;
      left: 0.25rem;
      top: 0.65em;
      width: 0.5rem;
      height: 0.5rem;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 0 3px var(--accent-soft);
    }

    /* timeline pour le programme */
    .timeline {
      list-style: none;
      padding: 0;
      margin: 1rem 0;
      border-left: 2px solid var(--line-strong);
    }

    .timeline li {
      position: relative;
      padding: 0.4rem 0 0.6rem 1.5rem;
      margin: 0;
    }

    .timeline li::before {
      content: "";
      position: absolute;
      left: -0.45rem;
      top: 0.85rem;
      width: 0.7rem;
      height: 0.7rem;
      border-radius: 50%;
      background: var(--surface);
      border: 2px solid var(--accent);
    }

    .timeline strong {
      color: var(--accent);
      font-weight: 700;
    }

    .inscriptions__art {
      display: block;
      width: clamp(7rem, 18vw, 11rem);
      height: auto;
      margin: 0 auto 1.25rem;
      filter: drop-shadow(0 8px 18px rgba(20, 18, 14, 0.10));
      animation: fade-up 0.7s ease both;
    }

    /* ---- Footer ---- */
    .footer {
      padding: 3rem 1.25rem 2rem;
      background: var(--text);
      color: #d8d4c9;
      margin: 0;
      border: 0;
    }

    .footer .wrap {
      padding: 0 1.25rem;
    }

    .footer h2 {
      color: #fff;
    }

    .footer a {
      color: #fff;
      font-weight: 500;
      text-decoration-color: rgba(255, 255, 255, 0.3);
    }

    .footer a:hover {
      color: var(--accent);
      text-decoration-color: var(--accent);
    }

    .footer__grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      max-width: 68rem;
      margin: 0 auto;
    }

    .footer__logo {
      display: inline-block;
      margin: 0 0 1rem;
      padding: 0;
      text-decoration: none;
      transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .footer__logo img {
      display: block;
      width: clamp(8rem, 22vw, 11rem);
      height: auto;
    }

    .footer__logo:hover {
      opacity: 0.85;
      transform: translateY(-1px);
    }

    .footer__bottom {
      margin-top: 2rem;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      font-size: 0.85rem;
      color: var(--muted-2);
      max-width: 68rem;
      margin-left: auto;
      margin-right: auto;
      display: flex;
      flex-direction: column-reverse;
      align-items: flex-start;
      gap: 1.25rem;
    }

    @media (max-width: 879px) {

      .footer,
      .footer__grid,
      .footer__bottom {
        text-align: center;
      }

      .footer__bottom {
        align-items: center;
      }
    }

    @media (min-width: 640px) {
      .footer__bottom {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
      }
    }

    /* ---- Bottom nav (mobile) ---- */
    .bottom-nav {
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 20;
      display: flex;
      justify-content: space-around;
      align-items: stretch;
      min-height: var(--nav-h);
      padding-bottom: env(safe-area-inset-bottom, 0px);
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: saturate(140%) blur(12px);
      -webkit-backdrop-filter: saturate(140%) blur(12px);
      border-top: 1px solid var(--line);
      box-shadow: 0 -8px 24px rgba(20, 18, 14, 0.06);
    }

    .bottom-nav a {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.2rem;
      font-family: var(--font-body);
      font-size: 0.68rem;
      font-weight: 600;
      text-decoration: none;
      color: var(--muted);
      padding: 0.5rem 0.25rem;
      -webkit-tap-highlight-color: transparent;
      transition: color 0.18s ease;
    }

    .bottom-nav a:hover,
    .bottom-nav a:focus-visible {
      color: var(--text);
      outline: none;
    }

    .bottom-nav a[aria-current="page"] {
      color: var(--accent);
    }

    .bottom-nav a.nav-inscription {
      color: var(--accent);
      font-weight: 700;
    }

    .bottom-nav__icon {
      font-size: 1.2rem;
      line-height: 1;
      opacity: 0.95;
    }

    .bottom-nav__icon--program {
      color: #15140f;
    }

    @media (min-width: 880px) {
      .bottom-nav {
        display: none;
      }
    }

    /* ---- Édition (composant partagé home + page archives) ---- */
    .edition__text {
      max-width: 42em;
      margin-bottom: 1.75rem;
    }

    .edition__actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.85rem;
      margin-top: 1.75rem;
    }

    .gallery {
      display: flex;
      flex-wrap: nowrap;
      gap: 0.6rem;
      overflow-x: auto;
      scroll-snap-type: x proximity;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: thin;
      padding-bottom: 0.25rem;
    }

    .gallery__item {
      flex: 0 0 auto;
      margin: 0;
      height: clamp(9rem, 20vw, 11.5rem);
      border-radius: 8px;
      background: var(--surface);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      scroll-snap-align: start;
      transition: box-shadow 0.25s ease;
    }

    .gallery__item:hover {
      box-shadow: var(--shadow-lg);
    }

    .gallery__img {
      height: 100%;
      width: auto;
      display: block;
      object-fit: contain;
      background: var(--bg-tint);
    }

    /* ---- FAQ ---- */
    .faq {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .faq__item {
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 0 1.25rem;
      box-shadow: var(--shadow-sm);
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .faq__item[open] {
      border-color: var(--line-strong);
      box-shadow: var(--shadow);
    }

    .faq__item>summary {
      cursor: pointer;
      padding: 1.1rem 0;
      font-weight: 650;
      font-size: 1rem;
      list-style: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }

    .faq__item>summary::-webkit-details-marker {
      display: none;
    }

    .faq__item>summary::after {
      content: "";
      flex: 0 0 auto;
      width: 1.5rem;
      height: 1.5rem;
      border-radius: 50%;
      background: var(--accent-soft);
      background-image:
        linear-gradient(var(--accent), var(--accent)),
        linear-gradient(var(--accent), var(--accent));
      background-size: 0.65rem 2px, 2px 0.65rem;
      background-position: center;
      background-repeat: no-repeat;
      transition: transform 0.25s ease, background 0.25s ease;
    }

    .faq__item[open]>summary::after {
      background-size: 0.65rem 2px, 0 0;
      transform: rotate(180deg);
    }

    .faq__answer {
      margin: 0 0 1.1rem;
      color: var(--muted);
    }

    .faq__answer :last-child {
      margin-bottom: 0;
    }

    .faq__answer p {
      margin: 0 0 0.75rem;
    }

    .faq__answer ul {
      margin: 0 0 0.75rem;
    }

    .faq__answer blockquote {
      margin: 0 0 0.75rem;
      padding: 0.85rem 1rem;
      background: var(--accent-soft);
      border-left: 3px solid var(--accent);
      border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
      color: var(--text);
      font-size: 0.95rem;
      line-height: 1.45;
    }

    /* ---- Responsive ---- */
    @media (min-width: 640px) {
      .cards {
        grid-template-columns: repeat(2, 1fr);
      }

      .hero__meta {
        gap: 2rem 3rem;
      }
    }

    @media (min-width: 880px) {
      main>section {
        padding: 5rem 1.25rem;
      }

      .footer__grid {
        grid-template-columns: 1.5fr 1fr 1fr;
      }

      .partners-band .logo-slot {
        min-width: 8.5rem;
        min-height: 5.5rem;
      }

      .partners-band .logo-slot img {
        max-height: 3.5rem;
      }
    }

    @media (min-width: 1024px) {
      .hero h1 {
        font-size: clamp(3.75rem, 7vw, 5.75rem);
      }
    }

    /* ---- Page éditions précédentes ---- */
    .page-header {
      padding: 3rem 1.25rem 2rem;
      border-bottom: 1px solid var(--line);
    }

    .page-header .section-eyebrow {
      display: flex;
      margin-bottom: 1.35rem;
    }

    .page-header h1 {
      margin-top: 0;
    }

    .editions {
      padding: 3rem 1.25rem 4rem;
    }

    .edition + .edition {
      margin-top: 4rem;
      padding-top: 4rem;
      border-top: 1px solid var(--line);
    }

    @media (min-width: 880px) {
      .page-header {
        padding: 4rem 1.25rem 2.5rem;
      }

      .editions {
        padding: 4rem 1.25rem 5rem;
      }
    }

    /* ---- Page 404 ---- */
    .error-page {
      padding: 3rem 1.25rem 5rem;
      text-align: center;
    }

    .error-page__inner {
      max-width: 34rem;
      margin: 0 auto;
    }

    .error-page__code {
      margin: 0 0 0.25rem;
      font-family: var(--font-head);
      font-size: clamp(4rem, 14vw, 6.5rem);
      font-weight: 720;
      line-height: 1;
      color: var(--accent);
      --sh-wght: 720;
    }

    .error-page__art {
      display: block;
      width: min(7rem, 28vw);
      height: auto;
      margin: 0 auto 1.25rem;
      opacity: 0.92;
      filter: drop-shadow(0 8px 18px rgba(20, 18, 14, 0.1));
    }

    .error-page__inner h1 {
      margin-bottom: 0.75rem;
    }

    .error-page__inner .lede {
      margin-left: auto;
      margin-right: auto;
    }

    .error-page__actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      justify-content: center;
      margin-top: 2rem;
    }

    @media (min-width: 880px) {
      .error-page {
        padding: 4.5rem 1.25rem 6rem;
      }
    }
