/* ============================================================
   L'Oriflamme — feuille de style principale du thème
   Bleu enseigne #0f4c81 · Rouge fauteuils #b3120c · Crème #fbf8f2
   Marcellus (titres) · Cormorant Garamond (accents) · Archivo (texte)
   ============================================================ */

/* ---------- 1. Base & système (page d'accueil) ---------- */
:root {
    --navy: #0f4c81;
    --navy-deep: #0a3358;
    --navy-soft: #1a5c95;
    --gold: #b3120c;
    --gold-bright: #d6201a;
    --cream: #f4eee1;
    --cream-deep: #ece2ce;
    --paper: #fbf8f2;
    --ink: #1d1d1d;
    --muted: #6a6f7e;
    --line: rgba(15, 76, 129, 0.14);
    --display: 'Marcellus', serif;
    --alt: 'Cormorant Garamond', serif;
    --body: 'Archivo', -apple-system, system-ui, sans-serif;
    --hero-align: center;
    --maxw: 1200px;
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    font-family: var(--body);
    color: var(--ink);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }
  a { color: inherit; text-decoration: none; }
  img { display: block; max-width: 100%; }
  .wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }

  /* ---------- Utility bar ---------- */
  .util {
    background: var(--navy-deep);
    color: #e8e2d2;
    font-size: 13px;
    letter-spacing: 0.02em;
  }
  .util .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 42px;
    padding-top: 6px;
    padding-bottom: 6px;
  }
  .util-left { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
  .util-link {
    display: inline-flex; align-items: center; gap: 7px; white-space: nowrap;
    color: #cfc8b6; transition: color .2s ease;
  }
  .util-link:hover { color: var(--gold-bright); }
  .util-link svg { width: 14px; height: 14px; }
  .util-right { display: flex; align-items: center; gap: 14px; }
  .util-socials { display: flex; align-items: center; gap: 12px; }
  .util-socials a { color: #cfc8b6; transition: color .2s ease, transform .2s ease; display: inline-flex; }
  .util-socials a:hover { color: var(--gold-bright); transform: translateY(-1px); }
  .pill {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--gold); color: var(--navy-deep);
    font-weight: 700; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
    padding: 8px 16px; border-radius: 999px; transition: background .2s ease, transform .2s ease;
  }
  .pill:hover { background: var(--gold-bright); transform: translateY(-1px); }

  /* ---------- Header ---------- */
  .header {
    position: sticky; top: 0; z-index: 60;
    background: rgba(251, 248, 241, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow .3s ease, padding .3s ease;
  }
  .header.scrolled { box-shadow: 0 8px 30px -16px rgba(13,22,40,0.4); }
  .header .wrap {
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px; padding-top: 16px; padding-bottom: 16px;
    transition: padding .3s ease;
  }
  .header.scrolled .wrap { padding-top: 10px; padding-bottom: 10px; }

  .brand { display: flex; align-items: center; gap: 16px; }
  .brand .logo { height: 50px; width: auto; flex: none; transition: height .3s ease; }
  .header.scrolled .brand .logo { height: 42px; }
  .brand-divider { width: 1px; height: 34px; background: var(--line); }
  .brand-sub {
    font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--navy); font-weight: 600; line-height: 1.5; max-width: 90px;
  }
  .brand-sub b { color: var(--gold); font-weight: 700; }

  .nav { display: flex; align-items: center; gap: 26px; }
  .nav-link {
    position: relative; font-size: 14px; font-weight: 600; letter-spacing: 0.02em;
    color: var(--ink); padding: 6px 0; transition: color .2s ease;
  }
  .nav-link::after {
    content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
    background: var(--gold); transition: width .25s ease;
  }
  .nav-link:hover { color: var(--navy); }
  .nav-link:hover::after { width: 100%; }

  .btn {
    display: inline-flex; align-items: center; gap: 9px;
    font-family: var(--body); font-weight: 700; font-size: 14px; letter-spacing: 0.06em;
    text-transform: uppercase; cursor: pointer; border: none;
    padding: 13px 24px; border-radius: 4px; transition: all .22s ease;
  }
  .btn-gold { background: var(--gold); color: var(--navy-deep); }
  .btn-gold:hover { background: var(--gold-bright); transform: translateY(-2px); box-shadow: 0 12px 22px -12px rgba(192,151,63,0.8); }
  .btn-navy { background: var(--navy); color: var(--cream); }
  .btn-navy:hover { background: var(--navy-soft); transform: translateY(-2px); }
  .btn-ghost { background: transparent; color: var(--cream); border: 1.5px solid rgba(244,238,225,0.5); }
  .btn-ghost:hover { border-color: var(--gold-bright); color: var(--gold-bright); }
  .btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
  .btn-outline:hover { background: var(--navy); color: var(--cream); }

  .burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
  .burger span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; transition: .3s; }

  /* ---------- Hero ---------- */
  .hero { position: relative; min-height: 86vh; display: flex; align-items: flex-end; overflow: hidden; }
  .hero-bg { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center 58%; animation: kenburns 24s ease-in-out infinite alternate; }
  @keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.08); } }
  .hero-veil {
    position: absolute; inset: 0; z-index: 1;
    background:
      linear-gradient(180deg, rgba(13,22,40,0.55) 0%, rgba(13,22,40,0.15) 38%, rgba(13,22,40,0.78) 100%),
      radial-gradient(120% 90% at 20% 110%, rgba(13,22,40,0.6), transparent 60%);
  }
  .hero-inner {
    position: relative; z-index: 2; width: 100%;
    padding-top: 120px; padding-bottom: 76px;
    text-align: var(--hero-align);
  }
  .hero-kicker {
    display: inline-flex; align-items: center; gap: 14px;
    color: #f3ede0; font-size: 13px; font-weight: 700;
    letter-spacing: 0.32em; text-transform: uppercase; margin-bottom: 26px;
  }
  .hero-kicker::before, .hero-kicker::after { content: ''; height: 1px; width: 38px; background: var(--gold-bright); }
  .hero h1 {
    font-family: var(--display); color: #fff; margin: 0;
    font-size: clamp(48px, 8vw, 104px); line-height: 0.98; letter-spacing: 0.01em;
    text-shadow: 0 2px 40px rgba(0,0,0,0.4);
  }
  .hero h1 em { font-style: normal; color: var(--gold-bright); }
  .hero-tag {
    font-family: var(--alt); font-size: clamp(20px, 2.4vw, 28px);
    color: #f0ead9; max-width: 620px; margin: 22px auto 0; line-height: 1.45;
  }
  .hero[data-align="left"] .hero-tag { margin-left: 0; }
  .hero-cta { display: flex; gap: 16px; margin-top: 38px; flex-wrap: wrap; justify-content: var(--hero-align); }
  .hero[data-align="left"] .hero-cta { justify-content: flex-start; }
  .scroll-cue {
    position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 3;
    color: rgba(244,238,225,0.7); font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
  }
  .scroll-cue .dot { width: 1px; height: 34px; background: linear-gradient(var(--gold-bright), transparent); animation: cue 1.8s ease-in-out infinite; }
  @keyframes cue { 0%,100% { opacity: .3; transform: scaleY(.6); } 50% { opacity: 1; transform: scaleY(1); } }

  /* ---------- Marquee banner ---------- */
  .marquee { background: var(--navy); color: var(--cream); overflow: hidden; border-top: 3px solid var(--gold); }
  .marquee-track { display: flex; gap: 48px; white-space: nowrap; padding: 16px 0; animation: scroll 28s linear infinite; }
  .marquee-track span { font-family: var(--display); font-size: 18px; letter-spacing: 0.18em; display: inline-flex; align-items: center; gap: 48px; }
  .marquee-track span::after { content: '✦'; color: var(--gold); font-size: 12px; }
  @keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* ---------- Sections ---------- */
  section { scroll-margin-top: 90px; }
  .section-pad { padding: 100px 0; }
  .eyebrow {
    font-size: 13px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--gold); display: inline-flex; align-items: center; gap: 12px; margin-bottom: 20px;
  }
  .eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--gold); }
  h2.title { font-family: var(--display); font-size: clamp(34px, 4.6vw, 56px); color: var(--navy); margin: 0 0 22px; line-height: 1.04; }
  .lead { font-family: var(--alt); font-size: 22px; line-height: 1.55; color: #41475a; max-width: 60ch; }

  /* Présentation */
  .about { background: var(--cream); }
  .about-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }
  .about p { font-size: 16.5px; line-height: 1.75; color: #4a4f60; margin: 0 0 18px; }
  .features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 34px; }
  .feature {
    background: var(--paper); border: 1px solid var(--line); border-radius: 8px; padding: 20px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  }
  .feature:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -26px rgba(13,22,40,0.5); border-color: var(--gold); }
  .feature .fi { width: 34px; height: 34px; color: var(--gold); margin-bottom: 12px; }
  .feature h3 { font-family: var(--display); font-size: 19px; color: var(--navy); margin: 0 0 6px; letter-spacing: 0.02em; }
  .feature p { font-size: 14px; line-height: 1.5; color: var(--muted); margin: 0; }
  .about-figure { position: relative; }
  .about-figure img { width: 100%; height: 520px; object-fit: cover; border-radius: 10px; display: block; }
  .about-badge {
    position: absolute; bottom: -26px; left: -26px; background: var(--navy); color: var(--cream);
    width: 150px; height: 150px; border-radius: 50%; display: flex; flex-direction: column;
    align-items: center; justify-content: center; text-align: center; box-shadow: 0 20px 50px -20px rgba(13,22,40,0.7);
    border: 2px solid var(--gold);
  }
  .about-badge .n { font-family: var(--display); font-size: 46px; color: var(--cream); line-height: 1; }
  .about-badge .l { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; margin-top: 6px; }

  /* Programmation */
  .prog-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 46px; flex-wrap: wrap; }
  .filters { display: flex; gap: 8px; flex-wrap: wrap; }
  .filter {
    font-family: var(--body); font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
    padding: 9px 16px; border-radius: 999px; border: 1.5px solid var(--line);
    background: transparent; color: var(--muted); cursor: pointer; transition: all .2s ease;
  }
  .filter:hover { border-color: var(--navy); color: var(--navy); }
  .filter.active { background: var(--navy); border-color: var(--navy); color: var(--cream); }
  .prog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .show {
    background: var(--paper); border: 1px solid var(--line); border-radius: 10px; overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease; display: flex; flex-direction: column;
  }
  .show:hover { transform: translateY(-6px); box-shadow: 0 26px 50px -28px rgba(13,22,40,0.6); }
  .show-poster { position: relative; aspect-ratio: 3 / 4; background: var(--navy-deep); }
  .show-poster img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
  .show-time {
    position: absolute; top: 14px; left: 14px; background: var(--gold); color: var(--navy-deep);
    font-weight: 700; font-size: 13px; letter-spacing: 0.05em; padding: 6px 12px; border-radius: 4px;
  }
  .show-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
  .show-cat { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 10px; }
  .show h3 { font-family: var(--display); font-size: 23px; color: var(--navy); margin: 0 0 8px; line-height: 1.1; }
  .show .by { font-family: var(--alt); font-size: 16px; color: var(--muted); font-style: italic; margin: 0 0 14px; }
  .show .teaser { font-size: 14px; line-height: 1.58; color: #54596a; margin: 0 0 18px; }
  .show-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; }
  .show-foot .link { font-size: 13px; font-weight: 700; letter-spacing: 0.04em; color: var(--navy); display: inline-flex; align-items: center; gap: 6px; transition: gap .2s; }
  .show:hover .show-foot .link { gap: 12px; color: var(--gold); }

  /* Cours / résidences band */
  .duo { background: var(--navy); color: var(--cream); position: relative; overflow: hidden; }
  .duo::before { content: ''; position: absolute; top: -120px; right: -120px; width: 380px; height: 380px; border-radius: 50%; background: radial-gradient(circle, rgba(192,151,63,0.25), transparent 70%); }
  .duo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; position: relative; z-index: 1; }
  .duo-col { padding: 64px; }
  .duo-col + .duo-col { border-left: 1px solid rgba(244,238,225,0.16); }
  .duo .eyebrow { color: var(--gold-bright); }
  .duo .eyebrow::before { background: var(--gold-bright); }
  .duo h3 { font-family: var(--display); font-size: 34px; margin: 0 0 18px; color: #fff; }
  .duo p { font-size: 16px; line-height: 1.7; color: #cfd3dd; margin: 0 0 26px; }
  .duo ul { list-style: none; padding: 0; margin: 0 0 28px; }
  .duo li { padding: 11px 0; border-bottom: 1px solid rgba(244,238,225,0.12); display: flex; align-items: center; gap: 12px; font-size: 15px; color: #e6e3d8; }
  .duo li::before { content: '✦'; color: var(--gold); font-size: 11px; }

  /* CTA */
  .cta-band { background: var(--cream-deep); text-align: center; }
  .cta-band h2 { font-family: var(--display); font-size: clamp(32px, 4.4vw, 52px); color: var(--navy); margin: 0 0 18px; }
  .cta-band p { font-family: var(--alt); font-size: 21px; color: #4a4f60; max-width: 56ch; margin: 0 auto 34px; }
  .cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

  /* Footer */
  .footer { background: var(--navy-deep); color: #c8cbd4; padding: 72px 0 0; }
  .foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 44px; padding-bottom: 56px; }
  .foot-brand .logo { height: 46px; filter: brightness(0) invert(1); }
  .foot-brand p { font-size: 14.5px; line-height: 1.7; margin: 18px 0 0; color: #9ba0ac; max-width: 34ch; }
  .foot-col h4 { font-family: var(--body); font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin: 0 0 18px; }
  .foot-col a, .foot-col p { display: block; font-size: 14.5px; color: #b4b8c2; margin: 0 0 12px; transition: color .2s ease; }
  .foot-col a:hover { color: var(--gold-bright); }
  .foot-row { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; font-size: 14.5px; color: #b4b8c2; }
  .foot-row svg { width: 17px; height: 17px; color: var(--gold); flex: none; margin-top: 2px; }
  .foot-socials { display: flex; gap: 14px; margin-top: 6px; }
  .foot-socials a { width: 38px; height: 38px; border: 1px solid rgba(244,238,225,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all .25s ease; }
  .foot-socials a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-deep); transform: translateY(-2px); }
  .foot-bottom { border-top: 1px solid rgba(244,238,225,0.12); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; font-size: 13px; color: #82879a; }
  .foot-bottom a:hover { color: var(--gold-bright); }

  /* Stats + citation + concerts */
  .stats { display: flex; gap: 34px; flex-wrap: wrap; margin: 30px 0 4px; }
  .stat .num { font-family: var(--display); font-size: 36px; color: var(--gold); line-height: 1; }
  .stat .lab { font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-top: 5px; }
  .pressquote { margin: 64px auto 0; max-width: 52ch; text-align: center; }
  .pressquote p { font-family: var(--alt); font-size: clamp(22px, 2.6vw, 30px); font-style: italic; color: var(--navy); line-height: 1.4; margin: 0; }
  .pressquote cite { display: block; font-style: normal; font-family: var(--body); font-size: 12.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-top: 18px; }
  .concerts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 8px; }
  .concert { position: relative; border-radius: 8px; overflow: hidden; aspect-ratio: 4 / 3; }
  .concert img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .45s ease; }
  .concert:hover img { transform: scale(1.06); }
  .concert span { position: absolute; left: 0; right: 0; bottom: 0; padding: 18px 12px 10px; font-size: 12px; font-weight: 700; letter-spacing: 0.04em; color: #fff; background: linear-gradient(transparent, rgba(7,14,28,0.85)); }

  /* Métamorphose / story */
  .metamorphose { margin-top: 70px; }
  .metamorphose .mh { text-align: center; max-width: 60ch; margin: 0 auto 40px; }
  .metamorphose .mh h3 { font-family: var(--display); font-size: clamp(26px, 3vw, 38px); color: var(--navy); margin: 12px 0 0; }
  .story-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
  .story-card { position: relative; }
  .story-card figure { margin: 0; overflow: hidden; border-radius: 8px; }
  .story-card img { width: 100%; height: 230px; object-fit: cover; display: block; transition: transform .5s ease; }
  .story-card:hover img { transform: scale(1.05); }
  .story-card .step { position: absolute; top: 12px; left: 12px; z-index: 2; background: var(--navy); color: var(--cream); font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding: 5px 11px; border-radius: 4px; }
  .story-card figcaption { font-family: var(--alt); font-size: 17px; font-style: italic; color: #4a4f60; margin-top: 12px; text-align: center; }
  @media (max-width: 900px) { .story-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 520px) { .story-grid { grid-template-columns: 1fr; } }

  /* Blog / Actualités */
  .blog-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 26px; }
  .blog-side { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
  .bcard { display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; transition: transform .3s ease, box-shadow .3s ease; }
  .bcard:hover { transform: translateY(-5px); box-shadow: 0 24px 46px -28px rgba(13,22,40,.5); }
  .bcard .bimg { width: 100%; display: block; object-fit: cover; }
  .bcard.feat .bimg { height: 300px; }
  .blog-side .bcard .bimg { height: 152px; }
  .bcard .bbody { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
  .bmeta { display: flex; gap: 9px; align-items: center; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 11px; }
  .bmeta .ddot { width: 4px; height: 4px; border-radius: 50%; background: currentColor; }
  .bcard h3 { font-family: var(--display); color: var(--navy); margin: 0; line-height: 1.12; }
  .bcard.feat h3 { font-size: 30px; }
  .blog-side .bcard h3 { font-size: 17.5px; }
  .bcard .bexc { font-size: 14.5px; line-height: 1.6; color: #54596a; margin: 13px 0 0; }
  .bcard .blink { margin-top: auto; padding-top: 16px; font-size: 13px; font-weight: 700; letter-spacing: 0.04em; color: var(--navy); display: inline-flex; gap: 7px; align-items: center; transition: gap .2s ease, color .2s ease; }
  .bcard:hover .blink { gap: 12px; color: var(--gold); }
  @media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; } .bcard.feat .bimg { height: 240px; } }
  @media (max-width: 560px) { .blog-side { grid-template-columns: 1fr; } .blog-side .bcard .bimg { height: 190px; } }

  .show-foot .show-foot, .show-foot .rens { font-size: 12.5px; line-height: 1.45; color: var(--muted); }
  .show-foot .rens a { color: var(--gold); font-weight: 700; }
  .prog-concerts { margin-top: 28px; }
  .prog-sub { text-align: center; margin: 70px 0 36px; }
  .prog-sub h3 { font-family: var(--display); font-size: clamp(28px, 3.2vw, 40px); color: var(--navy); margin: 10px 0 0; }
  .prog-sub-note { font-family: var(--alt); font-size: 19px; color: var(--muted); max-width: 52ch; margin: 14px auto 0; font-style: italic; }

  /* Programmation teaser (carrousel rotatif) */
  .prog-teaser .prog-head { margin-bottom: 42px; }
  .prog-rail { overflow: hidden; width: 100%; -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
  .rail-track { display: flex; gap: 22px; width: max-content; padding: 6px 0; animation: railscroll 64s linear infinite; }
  .prog-rail:hover .rail-track { animation-play-state: paused; }
  @keyframes railscroll { to { transform: translateX(-50%); } }
  .rail-card { flex: 0 0 auto; width: 232px; background: var(--paper); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; transition: transform .3s ease, box-shadow .3s ease; }
  .rail-card:hover { transform: translateY(-6px); box-shadow: 0 22px 44px -26px rgba(13,22,40,.55); }
  .rail-poster { position: relative; aspect-ratio: 3 / 4; background: var(--navy-deep); }
  .rail-poster img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
  .rail-time { position: absolute; top: 12px; left: 12px; background: var(--gold); color: #fff; font-weight: 700; font-size: 12px; padding: 5px 10px; border-radius: 4px; }
  .rail-cap { padding: 14px 16px 18px; }
  .rail-cat { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
  .rail-cap h3 { font-family: var(--display); font-size: 18px; color: var(--navy); margin: 6px 0 0; line-height: 1.14; }
  .prog-rail-note { text-align: center; margin: 30px 0 0; font-family: var(--alt); font-style: italic; font-size: 19px; color: var(--muted); }

  /* reveal */
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
  .reveal.in { opacity: 1; transform: none; }

  /* mobile menu */
  .mobile-menu {
    position: fixed; inset: 0; z-index: 100; background: var(--navy-deep);
    display: flex; flex-direction: column; padding: 32px;
    transform: translateX(100%); transition: transform .4s cubic-bezier(.7,0,.2,1);
  }
  .mobile-menu.open { transform: translateX(0); }
  .mobile-menu .mm-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
  .mobile-menu .mm-close { background: none; border: none; color: var(--cream); font-size: 30px; cursor: pointer; }
  .mobile-menu a { font-family: var(--display); font-size: 28px; color: var(--cream); padding: 16px 0; border-bottom: 1px solid rgba(244,238,225,0.12); }
  .mobile-menu a:hover { color: var(--gold-bright); }

  @media (max-width: 1366px) {
    .brand-divider, .brand-sub { display: none; }
    .nav { gap: 22px; }
  }
  @media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .prog-grid { grid-template-columns: repeat(2, 1fr); }
    .duo-grid { grid-template-columns: 1fr; }
    .duo-col + .duo-col { border-left: none; border-top: 1px solid rgba(244,238,225,0.16); }
    .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .features { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 760px) {
    .wrap { padding: 0 20px; }
    .nav, .header .btn.desk { display: none; }
    .burger { display: block; }
    .util-left .hide-sm { display: none; }
    .section-pad { padding: 68px 0; }
    .prog-grid { grid-template-columns: 1fr; }
    .features { grid-template-columns: 1fr; }
    .foot-grid { grid-template-columns: 1fr; }
    .duo-col { padding: 44px 28px; }
    .hero { min-height: 78vh; }
  }

/* ---------- 2. Contenu éditorial : fiches & articles ---------- */
/* Article hero */
.art-hero { background: var(--cream); border-bottom: 1px solid var(--line); }
.art-hero .wrap { max-width: 820px; padding-top: 64px; padding-bottom: 56px; }
.backlink { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; letter-spacing: 0.04em; color: var(--muted); margin-bottom: 28px; transition: gap .2s, color .2s; }
.backlink:hover { gap: 12px; color: var(--gold); }
.art-kicker { display: inline-flex; gap: 10px; align-items: center; font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.art-kicker .ddot { width: 4px; height: 4px; border-radius: 50%; background: currentColor; }
.art-hero h1 { font-family: var(--display); font-size: clamp(34px, 5vw, 58px); line-height: 1.05; color: var(--navy); margin: 0; }
.art-sub { font-family: var(--alt); font-size: clamp(20px, 2.4vw, 26px); color: #41475a; margin: 18px 0 0; line-height: 1.45; font-style: italic; }
.art-cover { max-width: 820px; margin: -28px auto 0; padding: 0 32px; }
.art-cover img { width: 100%; border-radius: 12px; box-shadow: 0 30px 60px -34px rgba(13,22,40,0.5); max-height: 460px; object-fit: cover; }

/* Prose */
.prose { max-width: 760px; margin: 0 auto; padding: 60px 32px 90px; }
.prose p { font-size: 17.5px; line-height: 1.78; color: #34384a; margin: 0 0 22px; }
.prose h2 { font-family: var(--display); font-size: clamp(24px, 3vw, 34px); color: var(--navy); margin: 46px 0 18px; line-height: 1.1; }
.prose h2 .acc { color: var(--gold); }
.prose strong { color: var(--navy); }
.prose em { font-style: italic; }
.prose ul { padding-left: 0; list-style: none; margin: 0 0 22px; }
.prose ul li { position: relative; padding: 9px 0 9px 26px; font-size: 17px; line-height: 1.6; color: #34384a; border-bottom: 1px solid var(--line); }
.prose ul li::before { content: '✦'; position: absolute; left: 0; top: 11px; color: var(--gold); font-size: 12px; }
.prose blockquote { margin: 36px 0; padding: 22px 28px; border-left: 4px solid var(--gold); background: var(--cream); border-radius: 0 8px 8px 0; }
.prose blockquote p { font-family: var(--alt); font-style: italic; font-size: 22px; color: var(--navy); margin: 0; line-height: 1.4; }
.prose blockquote cite { display: block; font-style: normal; font-family: var(--body); font-size: 12.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-top: 12px; }

/* Stats table */
.htable { width: 100%; border-collapse: collapse; margin: 8px 0 22px; }
.htable th, .htable td { text-align: left; padding: 13px 16px; border-bottom: 1px solid var(--line); font-size: 16px; }
.htable th { font-family: var(--body); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.htable td:last-child { font-family: var(--display); color: var(--gold); font-size: 20px; }
.htable tr:nth-child(even) { background: var(--cream); }

/* Info box */
.infobox { background: var(--navy); color: var(--cream); border-radius: 12px; padding: 28px 30px; margin: 40px 0; }
.infobox h3 { font-family: var(--display); font-size: 22px; color: #fff; margin: 0 0 16px; }
.infobox .row { display: flex; gap: 12px; align-items: flex-start; padding: 8px 0; font-size: 15.5px; color: #dfe3ea; }
.infobox .row b { color: var(--gold-bright); }
.infobox .btn { margin-top: 18px; }

/* Tags + share */
.art-foot { max-width: 760px; margin: 0 auto; padding: 0 32px 80px; }
.tags { display: flex; flex-wrap: wrap; gap: 9px; padding-top: 26px; border-top: 1px solid var(--line); }
.tag { font-size: 12px; font-weight: 600; letter-spacing: 0.03em; color: var(--muted); background: var(--cream-deep); padding: 7px 13px; border-radius: 999px; }

/* ---------- 3. Archive programmation (grille + filtres) ---------- */
.pwrap{max-width:1180px;margin:0 auto;padding:64px 32px 90px;}
  .pfilters{display:flex;gap:8px;flex-wrap:wrap;margin:0 0 40px;}
  .pfilter{font-family:var(--body);font-size:13px;font-weight:600;letter-spacing:.04em;padding:9px 16px;border-radius:999px;border:1.5px solid var(--line);background:transparent;color:var(--muted);cursor:pointer;transition:all .2s;}
  .pfilter:hover{border-color:var(--navy);color:var(--navy);}
  .pfilter.active{background:var(--navy);border-color:var(--navy);color:var(--cream);}
  .pgrid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;}
  .pcard{background:var(--paper);border:1px solid var(--line);border-radius:10px;overflow:hidden;display:flex;flex-direction:column;transition:transform .3s,box-shadow .3s;}
  .pcard:hover{transform:translateY(-6px);box-shadow:0 26px 50px -28px rgba(13,22,40,.6);}
  .pcard-link{display:flex;flex-direction:column;flex:1;text-decoration:none;color:inherit;cursor:pointer;}
  .pposter{position:relative;aspect-ratio:3/4;background:var(--navy-deep);}
  .pposter img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;}
  .ptime{position:absolute;top:14px;left:14px;background:var(--gold);color:#fff;font-weight:700;font-size:13px;padding:6px 12px;border-radius:4px;}
  .pbody{padding:22px;flex:1;display:flex;flex-direction:column;}
  .pcat{font-size:11px;letter-spacing:.2em;text-transform:uppercase;color:var(--gold);font-weight:700;margin-bottom:10px;}
  .pcard h3{font-family:var(--display);font-size:23px;color:var(--navy);margin:0 0 8px;line-height:1.1;}
  .pby{font-family:var(--alt);font-size:16px;color:var(--muted);font-style:italic;margin:0 0 14px;}
  .pteaser{font-size:14px;line-height:1.58;color:#54596a;margin:0 0 18px;}
  .pfoot{margin-top:auto;}
  .plink{font-size:13px;font-weight:700;letter-spacing:.04em;color:var(--navy);}
  .pcard:hover .plink{color:var(--gold);}
  .pfoot{margin-top:auto;display:flex;align-items:center;justify-content:space-between;gap:10px;flex-wrap:wrap;}
  .plink-resa{display:inline-block;font-size:12px;font-weight:700;letter-spacing:.04em;color:#fff;background:var(--gold);padding:7px 14px;border-radius:4px;text-decoration:none;white-space:nowrap;transition:background .2s;}
  .plink-resa:hover{background:var(--gold-bright);}
  .prens{font-size:12.5px;line-height:1.45;color:var(--muted);}
  .prens a{color:var(--gold);font-weight:700;}
  .psub{text-align:center;margin:80px 0 40px;}
  .psub h2{font-family:var(--display);font-size:clamp(28px,3.2vw,40px);color:var(--navy);margin:10px 0 0;}
  .psub .eyebrow{justify-content:center;}
  .psub p{font-family:var(--alt);font-size:19px;color:var(--muted);max-width:54ch;margin:14px auto 0;font-style:italic;}
  .psub .eyebrow::before{display:none;}
  .pcenter{text-align:center;margin-top:54px;}
  @media(max-width:960px){.pgrid{grid-template-columns:1fr 1fr;}}
  @media(max-width:600px){.pgrid{grid-template-columns:1fr;}}

/* ---------- 4. Ajustements WordPress ---------- */
.btn-gold { color: #fff; }
.wp-block-image img { border-radius: 10px; }
.alignright { float: right; margin: 0 0 16px 24px; }
.alignleft { float: left; margin: 0 16px 16px 0; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); white-space: nowrap; }
.pagination { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin: 48px 0 0; }
.pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 42px; height: 42px; padding: 0 10px; border: 1.5px solid var(--line); border-radius: 6px; font-weight: 700; font-size: 14px; color: var(--navy); transition: all .2s ease; }
.pagination .page-numbers:hover { border-color: var(--navy); }
.pagination .page-numbers.current { background: var(--navy); border-color: var(--navy); color: var(--cream); }
.sticky-note, .post-password-form input { font-family: var(--body); }
.comment-respond { max-width: 760px; margin: 0 auto; padding: 0 32px 80px; }

/* ---------- 5. Fiche spectacle (single-show) ---------- */
.blog-archive-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.blog-archive-grid .bcard .bimg { height: 210px; }
@media (max-width: 900px) { .blog-archive-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .blog-archive-grid { grid-template-columns: 1fr; } }
.page-links { display: flex; gap: 8px; align-items: center; margin: 30px 0 0; font-weight: 700; }
.page-links a, .page-links > span { padding: 4px 10px; border: 1.5px solid var(--line); border-radius: 6px; }
.sd { background: var(--navy-deep); color: var(--cream); padding: 0 0 8px; }
.sd-wrap { max-width: var(--maxw); margin: 0 auto; padding: 36px 32px 64px; }
.sd .backlink { color: rgba(244,238,225,0.7); }
.sd .backlink:hover { color: var(--gold-bright); }
.sd-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 54px; align-items: start; margin-top: 18px; }
.sd-poster { position: relative; border-radius: 12px; overflow: hidden; box-shadow: 0 36px 70px -34px rgba(0,0,0,0.7); aspect-ratio: 3/4; background: var(--navy-soft); }
.sd-poster img { width: 100%; height: 100%; object-fit: cover; }
.sd-poster .ptime { position: absolute; top: 16px; left: 16px; background: var(--gold); color: #fff; font-weight: 700; font-size: 14px; letter-spacing: 0.04em; padding: 7px 14px; border-radius: 5px; }
.sd-cat { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-bright); margin-bottom: 16px; }
.sd-title { font-family: var(--display); font-size: clamp(36px, 5vw, 60px); line-height: 1.02; color: #fff; margin: 0 0 18px; }
.sd-credits { display: flex; flex-direction: column; gap: 10px; margin: 26px 0; padding: 22px 0; border-top: 1px solid rgba(244,238,225,0.16); border-bottom: 1px solid rgba(244,238,225,0.16); }
.sd-cred { display: flex; gap: 14px; font-size: 15.5px; line-height: 1.5; }
.sd-cred dt { flex: none; width: 130px; color: var(--gold-bright); font-weight: 600; letter-spacing: 0.02em; }
.sd-cred dd { margin: 0; color: #e6e3d8; }
.sd-when { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }
.sd-chip { display: inline-flex; align-items: center; gap: 9px; background: rgba(244,238,225,0.08); border: 1px solid rgba(244,238,225,0.16); color: #f0ead9; font-size: 14px; font-weight: 600; padding: 10px 16px; border-radius: 999px; }
.sd-chip svg { color: var(--gold-bright); }
.sd-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 30px; }
.sd-rens { font-size: 14.5px; line-height: 1.5; color: #cfd3dd; }
.sd-rens a { color: var(--gold-bright); font-weight: 600; }
.sd-socials { display: flex; gap: 12px; margin-top: 26px; }
.sd-socials a { width: 40px; height: 40px; border: 1px solid rgba(244,238,225,0.22); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: var(--cream); transition: all .25s ease; }
.sd-socials a:hover { background: var(--gold); border-color: var(--gold); color: #fff; transform: translateY(-2px); }
/* corps de la fiche (description Gutenberg) */
.sd-body { max-width: 760px; margin: 0 auto; padding: 60px 32px 20px; }
.sd-body p { font-size: 17.5px; line-height: 1.78; color: #34384a; margin: 0 0 22px; }
.sd-body h2, .sd-body h3 { font-family: var(--display); color: var(--navy); line-height: 1.1; }
/* autres spectacles */
.related { background: var(--cream); padding: 70px 0 84px; }
.related .wrap { max-width: var(--maxw); }
.related h2 { font-family: var(--display); font-size: clamp(26px, 3.4vw, 38px); color: var(--navy); margin: 0 0 34px; }
@media (max-width: 860px) {
	.sd-grid { grid-template-columns: 1fr; gap: 32px; }
	.sd-poster { max-width: 340px; }
}
