/* ═══════════════════════════════════════════════════
   KOKORO COMPAGNIE THÉÂTRALE — Stylesheet v1.0
   ═══════════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --blanc:    #F9F5EF;
  --papier:   #F3EDE3;
  --creme:    #EAE0D0;
  --sable:    #C8B89A;
  --cuivre:   #B0713A;
  --cuivre-b: #8A5528;
  --encre:    #1C1A18;
  --encre-m:  #3A3530;
  --encre-l:  #5A4B42;
  --rouge:    #C0241A;
  --bord:     rgba(28,26,24,0.1);
  --bord-cu:  rgba(176,113,58,0.28);
}

/* ── Transition de page (View Transitions API) ── */
@view-transition { navigation: auto; }
::view-transition-old(root),
::view-transition-new(root) { animation-duration: 0.28s; animation-timing-function: ease; }
.kokoro-nav { view-transition-name: site-nav; }

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; overflow-x: hidden; }
body {
  background: var(--blanc);
  color: var(--encre);
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.7;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed; inset: 0; pointer-events: none; z-index: 9000;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
}

/* ── Navigation ── */
.kokoro-nav {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  height: 124px; display: flex; align-items: center;
  justify-content: space-between; padding: 0 3.5rem;
  transition: background 0.4s, box-shadow 0.3s, border-color 0.4s;
  background: transparent; border-bottom: 1px solid transparent;
}
.kokoro-nav.solid,
.kokoro-nav.nav-solid-init {
  background: rgba(249,245,239,0.97);
  border-bottom: 1px solid var(--bord);
  box-shadow: 0 2px 20px rgba(28,26,24,0.07);
  backdrop-filter: blur(16px);
}
.nav-home {
  background: linear-gradient(to bottom, rgba(249,245,239,0.88), rgba(249,245,239,0.35) 60%, rgba(249,245,239,0));
  border-bottom: none;
}
.nav-home.solid {
  background: rgba(249,245,239,0.97);
  border-bottom: 1px solid var(--bord);
  box-shadow: 0 2px 20px rgba(28,26,24,0.07);
  backdrop-filter: blur(16px);
}

.nav-logo { text-decoration: none; display: flex; align-items: center; }
.nav-logo img {
  height: 120px; width: auto; display: block;
  transition: opacity 0.3s, transform 0.3s;
}
a.nav-logo img:hover { opacity: 0.8; transform: scale(1.03); }

.nav-links {
  display: flex; gap: 2.5rem; list-style: none; align-items: center;
  position: fixed; top: 0; right: 3.5rem; height: 124px; z-index: 1001;
}
.nav-links a {
  font-family: 'Raleway', sans-serif; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase; text-decoration: none;
  color: var(--encre); position: relative; transition: color 0.25s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px; background: var(--cuivre); transition: width 0.3s;
}
.nav-links a:hover { color: var(--cuivre); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--cuivre); }
.nav-links .cta {
  background: var(--encre); color: var(--blanc) !important;
  padding: 0.5rem 1.35rem; transition: background 0.3s;
}
.nav-links .cta::after { display: none; }
.nav-links .cta:hover { background: var(--cuivre) !important; color: var(--blanc) !important; }
.nav-home + .nav-links .cta {
  background: transparent; color: var(--encre) !important; padding: 0;
}
.nav-home + .nav-links .cta::after { display: block; }
.nav-home + .nav-links .cta:hover { background: transparent !important; color: var(--cuivre) !important; }
.nav-home.solid + .nav-links .cta {
  background: var(--encre); color: var(--blanc) !important; padding: 0.5rem 1.35rem;
}
.nav-home.solid + .nav-links .cta::after { display: none; }

/* ── Dropdown Spectacles ── */
.has-dropdown { position: relative; }
.dropdown-chevron {
  font-size: 0.7em; margin-left: 0.25em;
  display: inline-block; transition: transform 0.22s ease;
  vertical-align: middle;
}
.has-dropdown:hover .dropdown-chevron { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute; top: calc(100% + 16px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(249,245,239,0.98);
  border: 1px solid var(--bord);
  border-radius: 3px;
  list-style: none; padding: 0.5rem 0; min-width: 240px;
  box-shadow: 0 10px 36px rgba(28,26,24,0.13);
  backdrop-filter: blur(16px);
  opacity: 0; visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 10;
}
.has-dropdown:hover .nav-dropdown {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown li { border: none; width: auto; }
.nav-dropdown a {
  display: block; padding: 0.6rem 1.5rem;
  font-size: 0.69rem; letter-spacing: 0.12em;
  white-space: nowrap; color: var(--encre);
  text-transform: uppercase;
}
.nav-dropdown a:hover { color: var(--cuivre); background: rgba(180,120,60,0.06); }
.nav-dropdown a::after { display: none !important; }
.nav-dropdown a.active { color: var(--cuivre); }

.burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.burger span { display: block; width: 22px; height: 1.5px; background: var(--encre); transition: all 0.3s; }
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-overlay {
  display: none; position: fixed; inset: 0; z-index: 9400;
  background: rgba(28,26,24,0.5); backdrop-filter: blur(2px);
}
.nav-overlay.open { display: block; }

/* Mobile nav drawer */
@media (max-width: 768px) {
  .kokoro-nav { padding: 0 1.5rem; }
  .burger { display: flex; }
  .nav-links {
    display: flex; flex-direction: column; align-items: flex-start;
    gap: 0; position: fixed; top: 0; right: 0; bottom: 0; height: auto; width: min(320px, 85vw);
    background: #F9F5EF; z-index: 9500; padding: 7rem 2.5rem 2.5rem;
    box-shadow: -4px 0 40px rgba(28,26,24,0.15);
    transform: translateX(100%);
    transition: transform 0.35s ease, visibility 0s linear 0.35s;
    visibility: hidden; pointer-events: none;
  }
  /* Fond peint via pseudo absolu : se rend correctement sur Android
     même quand le compositeur n'affiche pas le fond du calque fixe */
  .nav-links::before {
    content: ''; position: absolute; inset: 0; z-index: -1;
    background: #F9F5EF;
  }
  .nav-links.open {
    transform: translateX(0);
    transition: transform 0.35s ease, visibility 0s linear 0s;
    visibility: visible; pointer-events: auto;
  }
  .nav-links li { width: 100%; border-bottom: 1px solid var(--bord); }
  .nav-links a {
    display: block; padding: 1rem 0; font-size: 0.8rem; letter-spacing: 0.2em;
  }
  .nav-links .cta {
    background: transparent !important; color: var(--encre) !important;
    padding: 1rem 0;
  }
  /* Dropdown mobile : toujours visible, en retrait */
  .has-dropdown { position: static; }
  .dropdown-chevron { display: none; }
  .nav-dropdown {
    position: static; transform: none;
    opacity: 1; visibility: visible;
    box-shadow: none; border: none; border-radius: 0;
    backdrop-filter: none; background: transparent;
    padding: 0; min-width: auto;
    transition: none;
  }
  .nav-dropdown li { border-bottom: 1px solid rgba(28,26,24,0.06); }
  .nav-dropdown a {
    padding: 0.75rem 0 0.75rem 1.2rem;
    font-size: 0.7rem; letter-spacing: 0.15em;
    white-space: normal;
  }
  .nav-dropdown a:hover { background: transparent; }
}

/* ── Sections ── */
.section { padding: 5rem 4.5rem; }
.section-alt { background: var(--papier); border-top: 1px solid var(--bord); }

.section-intro { padding: 5rem 4.5rem 2.5rem; }
.section-intro .eyebrow {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-family: 'Raleway', sans-serif; font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--cuivre); margin-bottom: 0.6rem;
}
.section-intro .eyebrow::before { content: ''; display: block; width: 20px; height: 1px; background: var(--cuivre); }
.section-intro h1 {
  font-family: 'Playfair Display', serif; font-size: clamp(1.8rem,3vw,2.5rem);
  font-weight: 700; line-height: 1.1; color: var(--encre);
}
.section-intro h1 em { font-style: italic; font-weight: 400; color: var(--cuivre); }
.section-intro .subtitle { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.05rem; color: var(--encre-l); margin-top: 0.4rem; }
.section-rule { width: 36px; height: 2px; background: linear-gradient(to right, var(--rouge), var(--cuivre)); margin-top: 1rem; margin-bottom: 2.5rem; }

.eyebrow-row {
  display: inline-flex; align-items: center; gap: 0.7rem; margin-bottom: 0.7rem;
  font-family: 'Raleway', sans-serif; font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--cuivre);
}
.eyebrow-row::before { content: ''; display: block; width: 20px; height: 1px; background: var(--cuivre); }
.section-h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.7rem,3vw,2.4rem); font-weight: 700; color: var(--encre); }
.section-h2 em { font-style: italic; font-weight: 400; color: var(--cuivre); }

/* ── Boutons ── */
.btn {
  display: inline-block; font-family: 'Raleway', sans-serif; font-size: 0.72rem;
  font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: none; padding: 0.88rem 2.1rem; cursor: pointer; border: none; transition: all 0.3s;
}
.btn-dark { background: var(--encre); color: var(--blanc); }
.btn-dark:hover { background: var(--encre-m); }
.btn-rouge { background: var(--rouge); color: var(--blanc); }
.btn-rouge:hover { background: #9B1C14; }
.btn-light { background: var(--blanc); color: var(--encre); }
.btn-light:hover { background: var(--creme); }
.btn-outline { background: transparent; border: 1px solid var(--bord-cu); color: var(--cuivre); }
.btn-outline:hover { border-color: var(--cuivre); background: rgba(176,113,58,0.07); color: var(--encre); }
.btn-outline-dark { background: transparent; border: 1px solid rgba(249,245,239,0.22); color: var(--blanc); }
.btn-outline-dark:hover { border-color: rgba(249,245,239,0.55); background: rgba(249,245,239,0.08); }

/* ── Footer ── */
.site-footer { background: var(--encre); padding: 4.5rem 4.5rem 2.5rem; border-top: 3px solid var(--cuivre); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(249,245,239,0.08); margin-bottom: 2rem; }
.footer-logo img { height: 56px; filter: brightness(0) invert(1); margin-bottom: 1.2rem; display: block; }
.footer-desc { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: rgba(200,184,154,0.90); line-height: 1.75; }
.footer-col-title { font-family: 'Raleway', sans-serif; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: var(--cuivre); margin-bottom: 1.2rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: rgba(200,184,154,0.84); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--blanc); }
.footer-links span { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: rgba(200,184,154,0.68); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-family: 'Raleway', sans-serif; font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(200,184,154,0.58); }

/* ── Reveal ── */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; } .d3 { transition-delay: 0.3s; }

/* ════════════════════════════════════════════════════
   HOME
   ════════════════════════════════════════════════════ */
.home-hero {
  position: relative; min-height: 420px; overflow: hidden;
  background: var(--blanc);
}
.home-hero::before {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(90deg,
    var(--blanc) 0%,
    var(--blanc) 34%,
    rgba(249,245,239,0) 39%);
}
.home-hero::after {
  content: ''; position: absolute; inset: auto 0 0 0; height: 160px; z-index: 2; pointer-events: none;
  background: linear-gradient(to bottom, transparent, var(--blanc));
}
.hero-photo {
  position: absolute; top: 0; right: 0; width: 62%; height: 100%; z-index: 0;
}
.hero-photo::before {
  content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 22%;
  z-index: 1; pointer-events: none;
  background: linear-gradient(to right,
    rgba(249,245,239,1)    0%,
    rgba(249,245,239,0.75) 35%,
    rgba(249,245,239,0.25) 70%,
    rgba(249,245,239,0)   100%);
}
.hero-photo::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 22%; z-index: 1; pointer-events: none;
  background: linear-gradient(to bottom,
    rgba(249,245,239,0)    0%,
    rgba(249,245,239,0.35) 55%,
    rgba(249,245,239,1)   100%);
}
.hero-photo img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 42%; filter: saturate(0.92) contrast(0.98);
}
.hero-smoke {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: url("../images/hero-smoke-mask.svg") center / cover no-repeat;
}
.hero-content {
  position: relative; z-index: 3;
  width: min(560px, 52vw);
  padding: 5.8rem 0 2.2rem 4.5rem;
}
.hero-kokoro {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: clamp(1.05rem,1.5vw,1.28rem); color: var(--rouge); margin-bottom: 0.65rem;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.25rem,3.8vw,3.65rem);
  font-weight: 700; line-height: 1.06; color: var(--encre);
  margin-bottom: 1.05rem; max-width: 520px;
}
.hero-copy { color: var(--encre-m); font-size: 1.02rem; line-height: 1.72; max-width: 520px; }
.hero-copy p { margin-bottom: 0.8rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.7rem; }
.hero-actions .btn { padding: 0.82rem 1.9rem; }
.hero-actions .btn-dark { background: var(--rouge); }
.hero-actions .btn-dark:hover { background: #9B1C14; }
.hero-actions .btn-outline { color: var(--rouge); border-color: rgba(192,36,26,0.42); background: rgba(249,245,239,0.46); }
.hero-actions .btn-outline:hover { background: rgba(192,36,26,0.06); color: var(--encre); }

.news-section { padding: 3.2rem 4.5rem 2.6rem; background: var(--blanc); }
.news-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-bottom: 1.55rem; }
.news-title { font-family: 'Playfair Display', serif; font-size: clamp(1.65rem,2.5vw,2.35rem); line-height: 1.15; color: var(--encre); font-weight: 700; }
.news-all { font-family: 'Raleway', sans-serif; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--rouge); text-decoration: none; border-bottom: 1px solid rgba(192,36,26,0.36); padding-bottom: 0.25rem; white-space: nowrap; }

.news-grid { display: grid; grid-template-columns: 1.25fr 1.25fr 0.92fr; gap: 1.5rem; align-items: stretch; }
.news-card {
  min-height: 245px; background: rgba(255,255,255,0.55); border: 1px solid var(--bord);
  box-shadow: 0 8px 26px rgba(28,26,24,0.055); overflow: hidden;
  display: grid; grid-template-columns: 42% 1fr;
  text-decoration: none; color: inherit; transition: transform 0.25s, box-shadow 0.25s;
}
.news-card:hover { transform: translateY(-3px); box-shadow: 0 12px 34px rgba(28,26,24,0.085); }
.news-img { min-height: 245px; background: var(--creme); overflow: hidden; }
.news-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.news-body { padding: 1.6rem 1.7rem; display: flex; flex-direction: column; justify-content: center; }
.news-label {
  display: inline-block; align-self: flex-start;
  font-family: 'Raleway', sans-serif; font-size: 0.63rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--rouge);
  border-bottom: 1px solid rgba(192,36,26,0.42); padding-bottom: 0.28rem; margin-bottom: 1rem;
}
.news-card.played .news-label { color: #2E5B9A; border-bottom-color: rgba(46,91,154,0.36); }
.news-card h3 { font-family: 'Playfair Display', serif; font-size: 1.45rem; line-height: 1.18; color: var(--encre); margin-bottom: 0.7rem; }
.news-meta { font-family: 'Raleway', sans-serif; font-size: 0.68rem; font-weight: 500; line-height: 1.65; color: var(--rouge); margin-bottom: 0.75rem; }
.news-card.played .news-meta { color: #2E5B9A; }
.news-text { font-size: 0.98rem; line-height: 1.65; color: var(--encre-l); }

.review-card {
  min-height: 245px; background: linear-gradient(145deg, var(--encre), #11100F);
  color: var(--blanc); border: 1px solid rgba(249,245,239,0.08);
  box-shadow: 0 8px 26px rgba(28,26,24,0.09);
  padding: 1.7rem 1.85rem; display: flex; flex-direction: column; justify-content: center;
}
.review-eyebrow { font-family: 'Raleway', sans-serif; font-size: 0.63rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cuivre); margin-bottom: 0.9rem; }
.review-score { font-family: 'Playfair Display', serif; font-size: 2.25rem; line-height: 1; color: var(--blanc); margin-bottom: 0.25rem; }
.review-source { font-family: 'Raleway', sans-serif; font-size: 0.66rem; color: rgba(249,245,239,0.88); margin-bottom: 1rem; }
.review-sep { width: 100%; height: 1px; background: rgba(249,245,239,0.18); margin: 0.2rem 0 1rem; }
.review-quote { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.2rem; line-height: 1.45; color: rgba(249,245,239,0.95); margin-bottom: 0.85rem; }
.review-link { margin-top: 0.6rem; font-family: 'Raleway', sans-serif; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cuivre); text-decoration: none; }
.review-link:hover { color: var(--sable); }

.quick-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; border-top: 1px solid var(--bord); border-bottom: 1px solid var(--bord); background: var(--blanc); padding: 0 4.5rem; }
.quick-link { padding: 1.55rem 2rem 1.55rem 0; text-decoration: none; color: inherit; border-right: 1px solid var(--bord); transition: background 0.2s; }
.quick-link:nth-child(2) { padding-left: 2rem; }
.quick-link:last-child { border-right: none; padding-left: 2rem; }
.quick-link:hover { background: rgba(176,113,58,0.035); }
.quick-title { font-family: 'Raleway', sans-serif; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--rouge); margin-bottom: 0.35rem; }
.quick-desc { font-size: 1rem; color: var(--encre-l); line-height: 1.5; }
.quick-arrow { color: var(--rouge); margin-left: 1.4rem; }

/* ════════════════════════════════════════════════════
   SPECTACLES
   ════════════════════════════════════════════════════ */
.spectacles-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.spec-card {
  background: var(--blanc); border: 1px solid var(--bord); overflow: hidden;
  text-decoration: none; color: inherit; display: flex; flex-direction: column;
  transition: box-shadow 0.3s, transform 0.3s;
}
.spec-card:hover { box-shadow: 0 10px 40px rgba(28,26,24,0.11); transform: translateY(-5px); }
.spec-card-thumb { width: 100%; aspect-ratio: 3/4; max-height: 50vh; background: var(--creme); overflow: hidden; flex-shrink: 0; }
.spec-card-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: top center; filter: saturate(0.92); transition: transform 0.5s; }
.spec-card:hover .spec-card-thumb img { transform: scale(1.04); }
.spec-card-ph {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 0.8rem; background: linear-gradient(145deg, var(--creme), #DDD5C4);
}
.spec-card-ph-letter { font-family: 'Playfair Display', serif; font-size: 5rem; font-style: italic; color: var(--sable); }
.spec-card-ph-label { font-family: 'Raleway', sans-serif; font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sable); }
.spec-card-accent { height: 3px; background: linear-gradient(to right, var(--rouge), var(--cuivre)); transform: scaleX(0); transform-origin: left; transition: transform 0.35s; flex-shrink: 0; }
.spec-card:hover .spec-card-accent { transform: scaleX(1); }
.spec-card-body { padding: 1.2rem 1.6rem 1.6rem; flex: 1; display: flex; flex-direction: column; }
.spec-card-badge { display: inline-block; font-family: 'Raleway', sans-serif; font-size: 0.58rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--rouge); border: 1px solid rgba(192,36,26,0.22); padding: 0.2rem 0.7rem; margin-bottom: 0.9rem; background: rgba(192,36,26,0.05); width: fit-content; }
.spec-card-badge.creation { color: var(--cuivre); border-color: var(--bord-cu); background: rgba(176,113,58,0.05); }
.spec-card-title { font-family: 'Playfair Display', serif; font-size: 1.22rem; font-weight: 700; color: var(--encre); line-height: 1.25; margin-bottom: 0.75rem; }
.spec-card-sub { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1rem; color: var(--encre-l); line-height: 1.65; flex: 1; }
.spec-card-link { display: inline-flex; align-items: center; gap: 0.4rem; font-family: 'Raleway', sans-serif; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--encre-m); margin-top: 1.1rem; transition: gap 0.3s, color 0.2s; text-decoration: none; }
.spec-card-link:hover { gap: 0.8rem; color: var(--rouge); }

/* ════════════════════════════════════════════════════
   AGENDA
   ════════════════════════════════════════════════════ */
.agenda-list { display: flex; flex-direction: column; }
.agenda-item {
  display: grid; grid-template-columns: 100px 1fr auto;
  align-items: center; gap: 3rem; padding: 2rem 0;
  border-bottom: 1px solid var(--bord); transition: background 0.2s, padding-left 0.2s;
}
.agenda-item:first-child { border-top: 1px solid var(--bord); }
.agenda-item:hover { background: rgba(28,26,24,0.02); padding-left: 1rem; }
.agenda-item.past { opacity: 0.65; }
.date-box { text-align: center; border: 1px solid var(--bord); padding: 0.8rem 0.4rem; background: var(--papier); }
.date-day { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--rouge); line-height: 1; }
.date-mois { font-family: 'Raleway', sans-serif; font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--encre-l); margin-top: 0.2rem; }
.agenda-item.past .date-day { color: var(--sable); }
.agenda-show { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--encre); margin-bottom: 0.3rem; }
.agenda-lieu { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.05rem; color: var(--encre-l); }
.agenda-ville { font-family: 'Raleway', sans-serif; font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--cuivre); margin-top: 0.25rem; }
.status { font-family: 'Raleway', sans-serif; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.3rem 0.9rem; border: 1px solid; white-space: nowrap; }
.s-dispo { border-color: var(--bord-cu); color: var(--cuivre); }
.s-passe { border-color: var(--bord); color: var(--encre-l); }
.s-new { background: var(--rouge); color: var(--blanc); border-color: var(--rouge); }
.s-complet { border-color: var(--bord); color: var(--encre-l); background: rgba(28,26,24,0.04); }

.section-h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--encre); margin-bottom: 1.5rem; }

/* ════════════════════════════════════════════════════
   LA COMPAGNIE
   ════════════════════════════════════════════════════ */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; min-height: 70vh; }
.about-visual { background: var(--creme); position: relative; overflow: hidden; }
.about-visual img { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(0.88); }
.about-tag { position: absolute; bottom: 2.5rem; right: 2.5rem; background: var(--rouge); color: var(--blanc); padding: 1.2rem 1.6rem; max-width: 220px; }
.about-tag-text { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1rem; line-height: 1.5; }
.about-tag-attr { font-family: 'Raleway', sans-serif; font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(249,245,239,0.84); margin-top: 0.7rem; }

.about-text { background: var(--papier); padding: 6rem 5rem; display: flex; flex-direction: column; justify-content: center; }
.about-text p { font-size: 1.08rem; color: var(--encre-l); line-height: 1.9; margin-bottom: 1.5rem; }
.about-text p strong { color: var(--encre); font-weight: 600; }
.about-text p:first-of-type { font-size: 1.2rem; font-style: italic; color: var(--encre-m); }
.about-eyebrow { display: inline-flex; align-items: center; gap: 0.7rem; font-family: 'Raleway', sans-serif; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--cuivre); margin-bottom: 0.8rem; }
.about-eyebrow::before { content: ''; display: block; width: 20px; height: 1px; background: var(--cuivre); }
.about-h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem,3.5vw,3rem); font-weight: 700; line-height: 1.1; color: var(--encre); margin-bottom: 0.6rem; }
.about-h1 em { font-style: italic; font-weight: 400; color: var(--cuivre); }
.about-rule { width: 40px; height: 2px; background: linear-gradient(to right, var(--rouge), var(--cuivre)); margin: 1.2rem 0 2rem; }

.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.value-card { background: var(--blanc); border: 1px solid var(--bord); padding: 2.2rem; }
.value-icon { font-size: 1.6rem; margin-bottom: 1rem; color: var(--cuivre); }
.value-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--encre); margin-bottom: 0.6rem; }
.value-desc { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.02rem; color: var(--encre-l); line-height: 1.7; }

.team-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; max-width: 820px; }
.team-card { background: var(--papier); border: 1px solid var(--bord); overflow: hidden; }
.team-card-photo { width: 100%; aspect-ratio: 3/4; background: var(--creme); overflow: hidden; max-height: 340px; }
.team-card-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; filter: saturate(0.88); }
.team-card-body { padding: 1.8rem 2rem; }
.team-name { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--encre); margin-bottom: 0.3rem; }
.team-role { font-family: 'Raleway', sans-serif; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cuivre); margin-bottom: 1rem; }
.team-bio { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1rem; color: var(--encre-l); line-height: 1.7; }

/* ════════════════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════════════════ */
.contact-split { display: grid; grid-template-columns: 1fr 1.5fr; gap: 0; }
.contact-info {
  background: var(--encre); padding: 7rem 4.5rem; display: flex;
  flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.contact-info::before {
  content: '"'; font-family: 'Playfair Display', serif; font-size: 18rem;
  color: rgba(249,245,239,0.03); position: absolute; right: -1rem; top: -2rem;
  line-height: 1; pointer-events: none; font-weight: 700;
}
.contact-info h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem,3.5vw,2.8rem); font-weight: 700; color: var(--blanc); line-height: 1.2; margin-bottom: 1.2rem; }
.contact-info h2 em { font-style: italic; font-weight: 400; color: var(--sable); }
.contact-info p { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.08rem; color: var(--sable); line-height: 1.8; margin-bottom: 2.5rem; max-width: 360px; }
.info-item { display: flex; flex-direction: column; gap: 0.2rem; margin-bottom: 1.5rem; }
.info-label { font-family: 'Raleway', sans-serif; font-size: 0.58rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--cuivre); }
.info-val { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; color: var(--blanc); }
.info-val a { color: var(--blanc); text-decoration: none; transition: color 0.2s; }
.info-val a:hover { color: var(--sable); }
.social-row { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }
.social-link { font-family: 'Raleway', sans-serif; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(249,245,239,0.75); text-decoration: none; border: 1px solid rgba(249,245,239,0.22); padding: 0.4rem 1rem; transition: all 0.2s; }
.social-link:hover { color: var(--blanc); border-color: rgba(249,245,239,0.35); }

.contact-form { background: var(--papier); padding: 7rem 5rem; }
.contact-form h3 { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--encre); margin-bottom: 0.5rem; }
.form-sub { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.05rem; color: var(--encre-l); margin-bottom: 2.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-bottom: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.2rem; }
.form-group label { font-family: 'Raleway', sans-serif; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--encre-m); }
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--blanc); border: 1px solid var(--bord); padding: 0.85rem 1rem;
  font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--encre);
  outline: none; transition: border-color 0.2s; width: 100%;
  appearance: none; -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--cuivre); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-notice { font-family: 'Raleway', sans-serif; font-size: 0.65rem; color: var(--encre-l); margin-bottom: 1.5rem; opacity: 0.82; }
.btn-submit { width: 100%; display: block; text-align: center; cursor: pointer; }

/* ════════════════════════════════════════════════════
   THÉÂTRE SUR MESURE
   ════════════════════════════════════════════════════ */
.offres-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.offre-card {
  background: var(--papier); border: 1px solid var(--bord); padding: 2.5rem;
  position: relative; overflow: hidden; transition: box-shadow 0.3s, transform 0.3s;
}
.offre-card:hover { box-shadow: 0 8px 32px rgba(28,26,24,0.09); transform: translateY(-4px); }
.offre-num { font-family: 'Playfair Display', serif; font-size: 3.5rem; font-style: italic; color: rgba(176,113,58,0.12); position: absolute; top: 1rem; right: 1.5rem; line-height: 1; font-weight: 700; }
.offre-title { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--encre); margin-bottom: 0.8rem; }
.offre-desc { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.05rem; color: var(--encre-l); line-height: 1.75; margin-bottom: 1.5rem; }
.offre-details { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.offre-details li { font-family: 'Raleway', sans-serif; font-size: 0.7rem; font-weight: 400; color: var(--encre-m); display: flex; align-items: center; gap: 0.7rem; }
.offre-details li::before { content: ''; display: block; width: 5px; height: 5px; background: var(--cuivre); flex-shrink: 0; }

.process { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--bord); }
.process-step { background: var(--blanc); padding: 2.5rem 2rem; border-right: 1px solid var(--bord); }
.process-step:last-child { border-right: none; }
.step-num { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-style: italic; font-weight: 700; color: rgba(176,113,58,0.3); line-height: 1; margin-bottom: 1rem; }
.step-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--encre); margin-bottom: 0.5rem; }
.step-desc { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 0.97rem; color: var(--encre-l); line-height: 1.65; }

/* ════════════════════════════════════════════════════
   SINGLE SPECTACLE / YUKI / SAKURA
   ════════════════════════════════════════════════════ */
.spectacle-hero {
  display: grid; grid-template-columns: 1fr 1fr; padding-top: 124px;
  overflow: hidden; position: relative; height: 100vh;
}
.spectacle-hero-visual { position: relative; overflow: hidden; background: #EAD8C0; min-height: 520px; }
.spectacle-hero-visual img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.spectacle-hero-visual::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to right, var(--papier) 0%, transparent 15%);
}
.spectacle-hero-info {
  background: rgba(243, 237, 227, 0.88); display: flex; flex-direction: column; justify-content: center;
  padding: 5rem 4.5rem; position: relative; overflow-x: hidden;
}
.yuki-kanji::before {
  content: '雪'; font-family: 'Shippori Mincho', serif; font-size: 18rem; font-weight: 800;
  color: rgba(192,36,26,0.04); position: absolute; right: -1rem; bottom: -2rem;
  line-height: 1; pointer-events: none;
}
.sakura-kanji::before {
  content: '桜'; font-family: 'Shippori Mincho', serif; font-size: 18rem; font-weight: 800;
  color: rgba(176,113,58,0.04); position: absolute; right: -1rem; bottom: -2rem;
  line-height: 1; pointer-events: none;
}
.spectacle-badge { display: inline-block; background: var(--rouge); color: var(--blanc); font-family: 'Raleway', sans-serif; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; padding: 0.35rem 0.9rem; margin-bottom: 1.5rem; width: fit-content; }
.spectacle-badge.creation { background: var(--cuivre); }
.spectacle-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem,4vw,3.5rem); font-weight: 700; line-height: 1.1; color: var(--encre); margin-bottom: 0.4rem; }
.spectacle-subtitle { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.1rem; color: var(--cuivre); margin-bottom: 1.8rem; }
.spectacle-desc { font-size: 1.08rem; color: var(--encre-l); line-height: 1.85; margin-bottom: 2rem; max-width: 450px; border-left: 2px solid var(--rouge); padding-left: 1.5rem; }
.spectacle-disciplines { color: var(--cuivre); font-style: italic; }
.spectacle-meta { display: flex; gap: 2.5rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.meta-item { display: flex; flex-direction: column; gap: 0.2rem; }
.meta-label { font-family: 'Raleway', sans-serif; font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--cuivre); }
.meta-val { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--encre); }
.spectacle-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

.video-block { background: var(--encre); }
.video-embed-wrap { position: relative; width: 100%; padding-bottom: 56.25%; }
.video-embed-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

.fiche-tech { background: var(--papier); border: 1px solid var(--bord); padding: 2.5rem; }
.fiche-tech-title { font-family: 'Raleway', sans-serif; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: var(--cuivre); margin-bottom: 1.5rem; }
.fiche-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem 2rem; }
.fiche-item { border-top: 1px solid var(--bord); padding-top: 0.8rem; }
.fiche-item-label { font-family: 'Raleway', sans-serif; font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cuivre); margin-bottom: 0.25rem; }
.fiche-item-val { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--encre-l); }
.fiche-note { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1rem; color: var(--encre-l); border-left: 2px solid var(--cuivre); padding-left: 1.2rem; margin-top: 1.5rem; line-height: 1.7; }

.deja-accueilli { background: var(--blanc); border: 1px solid var(--bord); padding: 2rem 2.2rem; margin-top: 1.5rem; }
.deja-label { font-family: 'Raleway', sans-serif; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--cuivre); margin-bottom: 0.6rem; }
.deja-lieu { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--encre); }
.deja-date { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1rem; color: var(--encre-l); margin-top: 0.2rem; }

.press-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.press-item { background: var(--papier); border: 1px solid var(--bord); padding: 2rem 2.2rem; }
.press-quote { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.12rem; color: var(--encre); line-height: 1.7; margin-bottom: 1rem; }
.press-quote::before { content: '«\2009'; color: var(--cuivre); }
.press-quote::after { content: '\2009»'; color: var(--cuivre); }
.press-source { font-family: 'Raleway', sans-serif; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--encre-l); }

.prog-cta {
  background: var(--encre); padding: 5rem 4.5rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 3rem; flex-wrap: wrap; border-top: 3px solid var(--cuivre);
}
.prog-cta-label { font-family: 'Raleway', sans-serif; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--cuivre); margin-bottom: 0.8rem; }
.prog-cta-title { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 700; color: var(--blanc); line-height: 1.2; margin-bottom: 0.5rem; }
.prog-cta-sub { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.05rem; color: rgba(200,184,154,0.90); }
.prog-cta-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Distribution block (inline, dans hero) */
.distribution { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--bord); }
.distribution-title { font-family: 'Raleway', sans-serif; font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--cuivre); margin-bottom: 0.8rem; }
.distribution ul { list-style: none; display: flex; flex-direction: column; gap: 0.3rem; }
.distribution li { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--encre-l); }
.distribution li strong { color: var(--encre); font-style: italic; }

/* Distribution band (sous le hero sur écrans intermédiaires) */
.distribution-band { background: var(--papier); border-top: 1px solid var(--bord); border-bottom: 1px solid var(--bord); }
.distribution-band-inner { max-width: 1400px; margin: 0 auto; padding: 1.5rem 4.5rem; display: flex; align-items: center; gap: 3rem; flex-wrap: wrap; }
.distribution-band .distribution-title { margin-bottom: 0; white-space: nowrap; }
.distribution-band ul { list-style: none; display: flex; gap: 2rem; flex-wrap: wrap; margin: 0; }
.distribution-band li { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--encre-l); }
.distribution-band li strong { color: var(--encre); font-style: italic; }

/* Sakura en-creation banner */
.creation-banner {
  background: linear-gradient(135deg, var(--cuivre), var(--cuivre-b));
  color: var(--blanc); padding: 1.2rem 2rem;
  font-family: 'Raleway', sans-serif; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; text-align: center;
}

/* ════════════════════════════════════════════════════
   CTA BAND
   ════════════════════════════════════════════════════ */
.cta-band {
  background: var(--encre); padding: 5rem 4.5rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 3rem; flex-wrap: wrap; border-top: 3px solid var(--cuivre);
}
.cta-band-title { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 700; color: var(--blanc); line-height: 1.2; margin-bottom: 0.5rem; }
.cta-band-sub { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.05rem; color: rgba(200,184,154,0.90); }

/* ════════════════════════════════════════════════════
   PAGE AGENDA
   ════════════════════════════════════════════════════ */

/* ── Hero ── */
.agenda-hero {
  display: grid; grid-template-columns: 1fr 1fr; align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  max-width: 1180px; margin: 0 auto;
  padding: clamp(7rem, 9vw, 9.5rem) 4.5rem clamp(3rem, 5vw, 4.5rem);
}

/* Nébuleuse — image d'encre aquarelle détourée, fondue dans le crème (cf. AJUSTEMENTS FINAUX) */
.agenda-nebula {
  position: relative; justify-self: center;
  display: flex; align-items: center; justify-content: center;
}
.agenda-hero-title {
  position: relative; z-index: 2;
  font-family: 'Playfair Display', serif; font-weight: 500;
  font-size: clamp(4rem, 8vw, 7rem); line-height: 0.9;
  letter-spacing: -0.02em; color: #fff7ea;
  text-shadow: 0 2px 18px rgba(0,0,0,0.22);
}

/* Hero – colonne droite, intégrée au fond */
.agenda-hero-intro { max-width: 460px; }
.agenda-kicker {
  font-family: 'Raleway', sans-serif; font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--rouge);
  margin-bottom: 1.2rem;
}
.agenda-small-line { width: 36px; height: 2px; background: var(--rouge); margin-bottom: 1.8rem; }
.agenda-hero-text {
  font-family: 'Playfair Display', serif; font-weight: 400;
  font-size: clamp(1.7rem, 2.8vw, 2.6rem); line-height: 1.25; color: var(--encre);
}

/* ── Titres de section ── */
.agenda-section-head { margin-bottom: 2.2rem; }
.agenda-title-rule { width: 34px; height: 2px; background: var(--rouge); margin-bottom: 1rem; }
.agenda-title-rule.alt { background: var(--cuivre); }
.agenda-section-title { margin-bottom: 0; }
.agenda-section-title.past { color: var(--encre-l); }
.agenda-section-compact { padding-top: 3.5rem; padding-bottom: 3.5rem; }

/* ── Carte (prochaines dates + CTA) ── */
.agenda-card,
.agenda-cta-card {
  display: grid; align-items: center; gap: 2.2rem;
  background: rgba(255,253,249,0.95);
  border: 1px solid var(--bord-cu); border-radius: 10px;
  box-shadow: 0 18px 42px rgba(42,30,20,0.09);
  padding: 2.4rem 2.8rem; max-width: 980px;
}
.agenda-card { grid-template-columns: auto 1fr auto; }
.agenda-cta-card { grid-template-columns: auto 1fr auto; margin: 0 auto; }

.agenda-icon-circle {
  flex-shrink: 0; width: 96px; height: 96px; border-radius: 50%;
  background: var(--creme); border: 1px solid var(--bord-cu);
  display: flex; align-items: center; justify-content: center; color: var(--rouge);
}
.agenda-icon-circle svg { width: 42px; height: 42px; stroke: currentColor; fill: none; stroke-width: 1.5; }

.agenda-card-body h3,
.agenda-cta-body h3 {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: clamp(1.45rem, 2.4vw, 1.9rem); line-height: 1.15;
  color: var(--encre); margin-bottom: 0.6rem;
}
.agenda-card-body p,
.agenda-cta-body p {
  font-family: 'Cormorant Garamond', serif; font-size: 1.12rem;
  line-height: 1.55; color: var(--encre-m); margin: 0;
}
.agenda-card-btn, .agenda-cta-btn { white-space: nowrap; }

/* ── Représentation passée – carte horizontale 16:9 ── */
.agenda-past-card {
  display: grid; grid-template-columns: minmax(300px, 46%) 1fr;
  background: rgba(255,253,249,0.96); border: 1px solid var(--bord-cu);
  border-radius: 10px; box-shadow: 0 14px 36px rgba(42,30,20,0.08);
  overflow: hidden; max-width: 980px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.agenda-past-card:hover { transform: translateY(-3px); box-shadow: 0 20px 46px rgba(42,30,20,0.12); }
.agenda-past-image { aspect-ratio: 16 / 9; overflow: hidden; background: var(--creme); }
.agenda-past-image img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: block; transition: transform 0.5s ease;
}
.agenda-past-card:hover .agenda-past-image img { transform: scale(1.04); }

.agenda-past-content { position: relative; padding: 2.2rem 2.6rem; }
.agenda-date-label {
  font-family: 'Raleway', sans-serif; font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--rouge);
  margin-bottom: 0.8rem;
}
.agenda-past-content h3 {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: clamp(1.5rem, 2.6vw, 2rem); line-height: 1.12;
  color: var(--encre); margin-bottom: 1rem;
}
.agenda-meta {
  display: flex; align-items: center; gap: 0.55rem;
  font-family: 'Cormorant Garamond', serif; font-size: 1.08rem;
  color: var(--rouge); margin: 0 0 0.5rem;
}
.agenda-meta svg {
  flex-shrink: 0; width: 17px; height: 17px;
  stroke: currentColor; fill: none; stroke-width: 1.6;
}
.agenda-description {
  font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; line-height: 1.55;
  color: var(--encre-m); margin: 1rem 0 1.6rem;
}
.agenda-badge {
  position: absolute; top: 1.6rem; right: 1.6rem;
  font-family: 'Raleway', sans-serif; font-size: 0.56rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--encre-l);
  background: var(--creme); border-radius: 4px; padding: 0.45rem 0.7rem;
}

/* ── Encadré final programmation ── */
.agenda-cta { padding: 1.5rem 4.5rem 4.5rem; }

/* ════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════ */
@media (max-width: 1280px) {
  .spectacle-hero-info { padding: 3rem 2.5rem; }
  .spec-card-thumb { aspect-ratio: 4/5; }
}

@media (max-width: 1100px) {
  .kokoro-nav { padding: 0 2.5rem; }
  .section { padding: 4rem 3rem; }
  .section-intro { padding: 4rem 3rem 2rem; }
  .site-footer, .footer-grid { grid-template-columns: 1fr 1fr; }
  .site-footer { padding: 3.5rem 3rem 2rem; }
  .news-grid { grid-template-columns: 1fr; }
  .news-card { grid-template-columns: 36% 1fr; }
  .quick-links { padding: 0 3rem; }
  .spectacles-grid { grid-template-columns: repeat(2,1fr); }
  .fiche-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 900px) {
  .spectacle-hero { grid-template-columns: 1fr; height: auto; }
  .spectacle-hero-visual { min-height: 360px; }
  .spectacle-hero-info { padding: 3rem 2rem; }
  .about-split { grid-template-columns: 1fr; }
  .about-text { padding: 3.5rem 2rem; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .contact-split { grid-template-columns: 1fr; }
  .contact-info { padding: 4rem 2rem; }
  .contact-form { padding: 4rem 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .press-grid { grid-template-columns: 1fr; }
  .offres-grid { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--bord); }
}

@media (max-width: 768px) {
  .home-hero { padding-top: 110px; }
  .home-hero::before { background: none; }
  .hero-photo { position: relative; width: 100%; height: 340px; top: auto; right: auto; }
  .hero-photo::before, .hero-photo::after { display: none; }
  .hero-photo img { object-position: center top; }
  .hero-smoke { opacity: 0.7; }
  .hero-content { width: auto; padding: 2.4rem 1.5rem 2.7rem; }
  .hero-title { font-size: 2.2rem; }
  .news-section { padding: 2.7rem 1.5rem 2rem; }
  .news-head { align-items: flex-start; flex-direction: column; gap: 0.8rem; }
  .news-card { grid-template-columns: 1fr; }
  .news-img { height: 240px; min-height: 0; }
  .news-img img { object-position: top center; }
  .quick-links { grid-template-columns: 1fr; padding: 0 1.5rem; }
  .quick-link,
  .quick-link:nth-child(2),
  .quick-link:last-child { padding: 1.45rem 0; border-right: none; border-bottom: 1px solid var(--bord); }
  .spectacles-grid { grid-template-columns: 1fr; }
  .agenda-item { grid-template-columns: 80px 1fr; gap: 1.5rem; }
  .status { display: none; }
  .values-grid { grid-template-columns: 1fr; }
  .fiche-grid { grid-template-columns: 1fr 1fr; }
  .site-footer { padding: 3rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .quick-links { border-bottom: none; }
  .cta-band { padding: 3.5rem 1.5rem; }
  .cta-band-title { font-size: 1.8rem; }
  .prog-cta { padding: 3.5rem 1.5rem; }
  .prog-cta-title { font-size: 1.8rem; }
  .process { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .fiche-grid { grid-template-columns: 1fr; }
  .spectacle-meta { gap: 1.5rem; }
}

/* ── Agenda – responsive ── */
@media (max-width: 900px) {
  .agenda-hero {
    grid-template-columns: 1fr; gap: 2.5rem; text-align: left;
    padding: 7rem 2.5rem 3rem;
  }
  .agenda-hero-intro { max-width: none; }
  .agenda-card,
  .agenda-cta-card {
    grid-template-columns: 1fr; justify-items: start; gap: 1.4rem;
    text-align: left; padding: 2rem 2rem;
  }
  .agenda-past-card { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .agenda-hero { padding: 6.5rem 1.5rem 2.5rem; }
  .agenda-icon-circle { width: 80px; height: 80px; }
  .agenda-icon-circle svg { width: 36px; height: 36px; }
  .agenda-cta { padding: 1rem 1.5rem 4rem; }
  .agenda-past-content { padding: 1.8rem 1.5rem; }
}
@media (max-width: 480px) {
  .agenda-hero-title { font-size: clamp(3.4rem, 18vw, 4.2rem); }
  .agenda-card,
  .agenda-cta-card { padding: 1.8rem 1.4rem; }
  .agenda-card-btn,
  .agenda-cta-btn,
  .agenda-past-content .btn { width: 100%; }
}

/* ════════════════════════════════════════════════════
   REFONTE PAGE AGENDA
   ════════════════════════════════════════════════════ */

/* Nav transparente sur la page agenda — fondu avec le hero */
.kokoro-nav.nav-agenda {
  background: transparent;
  border-bottom: none;
  box-shadow: none;
  backdrop-filter: none;
}
.kokoro-nav.nav-agenda.solid {
  background: rgba(249,245,239,0.97);
  border-bottom: none;
  box-shadow: none;
  backdrop-filter: blur(16px);
}

/* Fond fixe — nébuleuse derrière toute la page */
body.page-agenda {
  background-image: url('../images/nebuleuse agenda.png');
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  background-attachment: fixed;
}

/* Fond fixe — nébuleuse pages spectacles */
body.page-spectacles,
body.page-yuki-et-le-secret-du-renard,
body.page-sakura {
  background-image: url('../images/nebuleuse-page-spectacle.png?v=2');
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  background-attachment: fixed;
}

/* ── Hero : texte à gauche, nébuleuse absolue haut droite ── */
.agenda-hero {
  max-width: 1180px;
  display: block;
  position: relative;
  overflow: visible;
  padding-top: clamp(9rem, 10vw, 11rem);
  padding-bottom: 2.5rem;
}

.agenda-hero-intro {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.agenda-hero-text {
  font-size: clamp(1.45rem, 1.95vw, 2.12rem);
  line-height: 1.28;
}

/* ── Nébuleuse PNG aquarelle positionnée haut droite ── */
/* mix-blend-mode sur le div blende contre la page réelle (pas contre transparent) */
.agenda-nebula {
  position: absolute;
  top: -40px;
  right: -60px;
  width: clamp(380px, 50vw, 620px);
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: multiply;
}

.agenda-nebula img {
  width: 100%;
  height: auto;
  display: block;
  filter: contrast(1.5) saturate(1.35);
}

/* ── Espacement : carte juste sous le hero ── */
.agenda-hero + .section {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.agenda-section-compact {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

/* Sections devant la nébuleuse (z-index: 2 > nébuleuse z-index: 0) */
.agenda-hero + .section,
.agenda-section-compact,
.agenda-cta {
  position: relative;
  isolation: isolate;
  z-index: 2;
}

.agenda-hero + .section::before,
.agenda-section-compact::before,
.agenda-cta::before {
  content: '';
  position: absolute;
  z-index: -1;
  pointer-events: none;
  width: 420px;
  height: 300px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 20% 30%, rgba(9,26,45,0.085) 0 16px, transparent 31px),
    radial-gradient(circle at 82% 22%, rgba(176,113,58,0.11) 0 3px, transparent 6px),
    radial-gradient(circle at 74% 64%, rgba(9,26,45,0.07) 0 22px, transparent 43px),
    radial-gradient(circle at 48% 82%, rgba(9,26,45,0.045) 0 32px, transparent 70px);
  filter: blur(1px);
  opacity: 0.7;
}

.agenda-hero + .section::before { right: 4vw; top: -70px; }
.agenda-section-compact::before { right: 2vw; bottom: -60px; }
.agenda-cta::before { left: 5vw; top: -40px; opacity: 0.45; }

/* Section passée sans fond ni trait */
.section-alt.agenda-section-compact {
  background: transparent !important;
  border-top: 0 !important;
}

/* ── Cartes ── */
.agenda-past-card {
  background: rgba(255,253,248,0.95) !important;
  border: 1px solid rgba(176,113,58,0.32) !important;
  box-shadow: 0 16px 44px rgba(42,30,20,0.10) !important;
}

/* Carte prochaines dates : picto lune + corps, sans bouton */
.agenda-card {
  display: grid !important;
  grid-template-columns: 52px 1fr !important;
  align-items: start !important;
  gap: 2rem !important;
  background: rgba(255,252,247,0.88) !important;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(176,113,58,0.22) !important;
  border-top: 3px solid var(--rouge) !important;
  border-radius: 14px !important;
  box-shadow: 0 12px 40px rgba(42,30,20,0.09) !important;
  padding: 2.6rem 3rem !important;
  max-width: 1040px;
}

/* Carte CTA programmation : corps + bouton, sans picto */
.agenda-cta-card {
  display: grid !important;
  grid-template-columns: 1fr auto !important;
  align-items: center !important;
  gap: 3rem !important;
  background: rgba(255,252,247,0.88) !important;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(176,113,58,0.22) !important;
  border-top: 3px solid var(--cuivre) !important;
  border-radius: 14px !important;
  box-shadow: 0 12px 40px rgba(42,30,20,0.09) !important;
  padding: 2.6rem 3rem !important;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

/* Nouveau picto lune — sans cercle de fond */
.agenda-card-picto {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 52px;
  flex-shrink: 0;
  padding-top: 0.25rem;
  color: var(--rouge);
}

.agenda-card-picto svg {
  width: 38px;
  height: 38px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.25;
}

.agenda-past-card {
  max-width: 1040px;
  grid-template-columns: minmax(340px, 48%) 1fr;
  border-radius: 10px;
}

.agenda-section-head {
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}
.agenda-card,
.agenda-past-card,
.agenda-cta-card {
  margin-left: auto;
  margin-right: auto;
}

.agenda-past-image img {
  object-fit: cover;
  object-position: center bottom;
}

.agenda-icon-circle {
  background: #f3e8dc;
  border-color: rgba(176,113,58,0.32);
}

/* Logo uniforme */
.nav-logo img {
  height: 120px;
}

@media (max-width: 900px) {
  .agenda-past-card { grid-template-columns: 1fr; }
  .kokoro-nav { height: 110px; }
  .nav-logo img { height: 105px; }
  .agenda-card { grid-template-columns: 40px 1fr !important; padding: 2rem 2rem !important; }
  .agenda-cta-card { grid-template-columns: 1fr !important; justify-items: start !important; gap: 1.6rem !important; padding: 2rem 2rem !important; }
  .agenda-cta-btn { width: 100%; }
}

/* Décalages du menu horizontal desktop, UNIQUEMENT au-dessus du point de
   bascule mobile (en dessous de 769px le tiroir gère sa propre position). */
@media (min-width: 769px) and (max-width: 1100px) {
  .nav-links { right: 2.5rem; }
}
@media (min-width: 769px) and (max-width: 900px) {
  .nav-links { height: 110px; }
}

@media (max-width: 600px) {
  .agenda-cta { padding: 1.5rem 1.5rem 4rem; }
}

@media (max-width: 480px) {
  .agenda-hero-text { font-size: 1.9rem; }
  .agenda-card { padding: 1.6rem 1.4rem !important; }
  .agenda-cta-card { padding: 1.6rem 1.4rem !important; }
  .agenda-past-content .btn { width: 100%; }
}

/* ════════════════════════════════════════════════════
   PAGE LA COMPAGNIE — refonte
   ════════════════════════════════════════════════════ */

/* Nav transparente, fond fondu */
.kokoro-nav.nav-compagnie {
  background: transparent;
  border-bottom: none;
  box-shadow: none;
  backdrop-filter: none;
}
.kokoro-nav.nav-compagnie.solid {
  background: rgba(249,245,239,0.97);
  border-bottom: 1px solid var(--bord);
  box-shadow: 0 2px 20px rgba(28,26,24,0.07);
  backdrop-filter: blur(16px);
}

/* Fond fixe sur le body — visible en scrollant sur toute la page */
body.page-la-compagnie {
  background-image: url('../images/fond-page-la-cie.png');
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  background-attachment: fixed;
}

/* Wrapper sans fond propre */
.compagnie-wrap {
  position: relative;
  overflow-x: hidden;
}

/* ── Section 1 : Hero ── */
.compagnie-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 3vw, 3rem);
  align-items: center;
  padding: clamp(8.5rem, 9.5vw, 9.5rem) 4.5rem 2rem;
  position: relative;
  z-index: 2;
}

.compagnie-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 4.2vw, 4rem);
  font-weight: 700;
  line-height: 1.06;
  color: var(--encre);
  margin-bottom: 0.3rem;
}
.compagnie-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.05rem, 1.55vw, 1.35rem);
  color: var(--rouge);
  line-height: 1.3;
  margin-bottom: 0;
}
/* Fond crème semi-transparent derrière le texte pour lisibilité sur la nébuleuse */
.compagnie-hero-text {
  background: rgba(249,245,239,0.72);
  border-radius: 10px;
  padding: 1.6rem 2rem 1.6rem 0.8rem;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
/* Réduit les marges de la règle décorative dans le hero */
.compagnie-hero-text .about-rule { margin: 0.6rem 0 1rem; }
.compagnie-hero-text p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--encre-m);
  line-height: 1.72;
  margin-bottom: 0.6rem;
}
.compagnie-hero-text p:last-child { margin-bottom: 0; }

/* Image héro — coins arrondis */
.compagnie-hero-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 44px rgba(28,26,24,0.16);
}
.compagnie-hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Titres de sections avec point rouge ── */
.compagnie-section-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.4rem;
}
.compagnie-dot {
  display: inline-block;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--rouge);
  flex-shrink: 0;
}
.compagnie-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.4vw, 2.05rem);
  font-weight: 700;
  color: var(--encre);
  line-height: 1.2;
}

/* ── Section 2 : Directrice ── */
.compagnie-directrice {
  background: rgba(243,237,227,0.92);
  border-top: 1px solid var(--bord);
  padding: 1rem 3.6rem;
  position: relative;
  z-index: 2;
}
.compagnie-directrice-grid {
  display: grid;
  grid-template-columns: 220px 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.compagnie-directrice-photo {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(28,26,24,0.12);
}
.compagnie-directrice-photo img {
  width: 100%;
  display: block;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  filter: saturate(0.92);
}
.compagnie-directrice-text-a p,
.compagnie-directrice-text-b p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--encre-m);
  line-height: 1.72;
  margin-bottom: 0.7rem;
}
.compagnie-directrice-text-a p:last-child,
.compagnie-directrice-text-b p:last-child { margin-bottom: 0; }

/* ── Section 3 : Équipe ── */
.compagnie-equipe {
  padding: 2.5rem 4.5rem 3.5rem;
  position: relative;
  z-index: 2;
}
/* Titre de l'équipe centré */
.compagnie-equipe .compagnie-section-head {
  justify-content: center;
  margin-bottom: 1.8rem;
}
.compagnie-equipe-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
  max-width: 860px;
}
.compagnie-membre {
  display: grid;
  grid-template-columns: 175px 1fr;
  gap: 1.4rem;
  align-items: center;
}
.compagnie-membre-photo {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(28,26,24,0.1);
  aspect-ratio: 3/4;
}
.compagnie-membre-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: saturate(0.9);
}
.compagnie-membre-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--cuivre);
  margin-bottom: 0.2rem;
}
.compagnie-membre-rule {
  width: 24px;
  height: 2px;
  background: var(--rouge);
  margin-bottom: 0.4rem;
}
.compagnie-membre-titre {
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--encre);
  margin-bottom: 0.25rem;
}
.compagnie-membre-role {
  font-family: 'Raleway', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--encre-m);
  line-height: 1.65;
}

/* ── Responsive compagnie ── */
@media (max-width: 1000px) {
  .compagnie-directrice-grid { grid-template-columns: 200px 1fr; gap: 1.8rem; }
}
@media (max-width: 860px) {
  .compagnie-hero { grid-template-columns: 1fr; padding-top: 7.5rem; }
  .compagnie-directrice-grid { grid-template-columns: 1fr; }
  .compagnie-directrice-photo { max-width: 240px; }
  .compagnie-equipe-grid { grid-template-columns: 1fr; max-width: 420px; }
  .compagnie-wrap { background-size: auto 480px; }
}
@media (max-width: 768px) {
  .compagnie-hero,
  .compagnie-directrice,
  .compagnie-equipe { padding-left: 1.5rem; padding-right: 1.5rem; }
  .compagnie-membre { grid-template-columns: 145px 1fr; gap: 1.1rem; }
  .kokoro-nav.nav-compagnie {
    background: rgba(249,245,239,0.95);
    border-bottom: 1px solid var(--bord);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
}

/* ════════════════════════════════════════════════════
   REFONTE PAGE CONTACT v2
   ════════════════════════════════════════════════════ */

/* Nav : même style que nav-compagnie — transparente, liens sombres, logo ivoire */
.kokoro-nav.nav-contact {
  background: transparent;
  border-bottom: none;
  box-shadow: none;
  backdrop-filter: none;
}
.kokoro-nav.nav-contact .nav-logo img {
  filter: brightness(0) invert(1);
}
.kokoro-nav.nav-contact.solid {
  background: rgba(249,245,239,0.97);
  border-bottom: 1px solid var(--bord);
  box-shadow: 0 2px 20px rgba(28,26,24,0.07);
  backdrop-filter: blur(16px);
}
.kokoro-nav.nav-contact.solid .nav-logo img { filter: none; }

/* Body : fond très sombre derrière la nav (zone au-dessus des colonnes) */
body.page-contact { background: #0A090A; }

/* ── Layout principal : 2 colonnes pleine hauteur ── */
.contact-v2 {
  display: grid;
  grid-template-columns: 40% 60%;
  min-height: 100vh;
}

/* ── Colonne gauche : nébuleuse + infos ── */
.contact-v2-left {
  position: relative;
  background-color: #0A090A;
  background-image: url('../images/nebuleuse-cadre-info-contact.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
}

.contact-v2-left-inner {
  position: relative;
  z-index: 2;
  padding: calc(124px + 4rem) 2.8rem 3.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Titre NOUS CONTACTER */
.contact-v2-heading { margin-bottom: 2rem; }

.contact-v2-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: none;
  color: #D4AF72;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.contact-v2-rule {
  width: 2.8rem;
  height: 1px;
  background: linear-gradient(to right, #C8B89A, rgba(200,184,154,0));
}

/* Texte intro */
.contact-v2-intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: #C4924A;
  line-height: 1.9;
  margin-bottom: 2.4rem;
}

/* Blocs infos contact */
.contact-v2-infos {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  margin-bottom: 2.8rem;
}

.contact-v2-info-label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #C8B89A;
  margin-bottom: 0.28rem;
}

.contact-v2-info-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: rgba(249,245,239,0.88);
  line-height: 1.45;
}

.contact-v2-info-val a {
  color: rgba(249,245,239,0.88);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-v2-info-val a:hover { color: #C8B89A; }

/* Réseaux sociaux */
.contact-v2-social {
  margin-top: auto;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(200,184,154,0.14);
}

.contact-v2-social-label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #C8B89A;
  margin-bottom: 1.1rem;
}

.contact-v2-social-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.contact-v2-social-link {
  font-family: 'Raleway', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(249,245,239,0.72);
  text-decoration: none;
  border: 1px solid rgba(249,245,239,0.18);
  padding: 0.38rem 1rem;
  transition: color 0.25s, border-color 0.25s;
}
.contact-v2-social-link:hover {
  color: rgba(249,245,239,0.85);
  border-color: rgba(200,184,154,0.38);
}

/* ── Colonne droite : formulaire ── */
.contact-v2-right {
  background: #F3EDE3;
  display: flex;
  flex-direction: column;
}

.contact-v2-form-wrap {
  padding: calc(124px + 4rem) 4.4rem 4rem;
  flex: 1;
}

/* Formulaire */
.cform-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.cform-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.2rem;
}

.cform-row .cform-group { margin-bottom: 0; }

.cform-group label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #3A3530;
}

.cform-req { color: #C0241A; margin-left: 0.15em; }

.cform-group input,
.cform-group select,
.cform-group textarea {
  background: #FEFCF8;
  border: 1px solid rgba(28,26,24,0.1);
  border-bottom: 1px solid rgba(28,26,24,0.2);
  padding: 0.92rem 1.1rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: #1C1A18;
  outline: none;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  transition: border-color 0.25s, background 0.2s;
}

.cform-group input::placeholder,
.cform-group textarea::placeholder {
  color: rgba(107,97,88,0.45);
  font-style: italic;
}

.cform-group select { color: #6B6158; cursor: pointer; }
.cform-group select:valid { color: #1C1A18; }

.cform-group input:focus,
.cform-group select:focus,
.cform-group textarea:focus {
  border-color: #B0713A;
  background: #FFF;
}

.cform-group textarea {
  resize: vertical;
  min-height: 165px;
  line-height: 1.7;
}

/* Flèche personnalisée sur le select */
.cform-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%23B0713A' stroke-width='1.4' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 11px;
  padding-right: 2.5rem;
}

/* Bouton envoyer */
.cform-btn {
  display: block;
  width: 100%;
  background: #7A1410;
  color: #F9F5EF;
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border: none;
  padding: 1.15rem 2rem;
  cursor: pointer;
  transition: background 0.28s, transform 0.2s;
  margin-top: 0.5rem;
}
.cform-btn:hover {
  background: #5E0F0C;
  transform: translateY(-1px);
}

.cform-notice {
  font-family: 'Raleway', sans-serif;
  font-size: 0.65rem;
  color: rgba(107,97,88,0.80);
  margin-top: 1.1rem;
  letter-spacing: 0.04em;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .contact-v2-form-wrap { padding-left: 3.5rem; padding-right: 3.5rem; }
}

@media (max-width: 860px) {
  .contact-v2 { grid-template-columns: 1fr; }
  .contact-v2-left { min-height: 55vh; }
  .contact-v2-left-inner { padding: calc(124px + 3rem) 2.5rem 3rem; }
  .cform-row { grid-template-columns: 1fr; gap: 0; }
  .cform-row .cform-group { margin-bottom: 1.5rem; }
  .contact-v2-form-wrap { padding: 3rem 2.5rem 4rem; }
}

@media (max-width: 600px) {
  .contact-v2-left-inner { padding: calc(124px + 2rem) 1.8rem 2.5rem; }
  .contact-v2-form-wrap { padding: 2.5rem 1.5rem 3.5rem; }
}
@media (max-width: 860px) {
  .kokoro-nav.nav-contact {
    background: rgba(249,245,239,0.95);
    border-bottom: 1px solid var(--bord);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  .kokoro-nav.nav-contact .nav-logo img { filter: none; }
}

/* ════════════════════════════════════════════════════
   PAGE NOS SPECTACLES — refonte
   ════════════════════════════════════════════════════ */

.kokoro-nav.nav-spectacles {
  background: transparent;
  border-bottom: none;
  box-shadow: none;
  backdrop-filter: none;
}
.kokoro-nav.nav-spectacles.solid {
  background: rgba(249,245,239,0.97);
  border-bottom: 1px solid var(--bord);
  box-shadow: 0 2px 20px rgba(28,26,24,0.07);
  backdrop-filter: blur(16px);
}

/* background-image injecté inline via PHP (fichier accentué) */
body.page-spectacles {
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
}

.spectacles-hero {
  padding: clamp(7rem, 8.5vw, 8.5rem) 4.5rem 1.5rem;
}
.spectacles-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--encre);
}
.spectacles-hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--cuivre);
}
.spectacles-hero-rule {
  width: 36px;
  height: 2px;
  background: linear-gradient(to right, var(--rouge), var(--cuivre));
  margin-top: 1rem;
}

.spectacles-section { padding-top: 1.5rem; }

.spectacles-grid-2col {
  grid-template-columns: repeat(2, 1fr);
  gap: 4.2rem;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

/* Carte arrondie */
.spec-card-rnd {
  border-radius: 10px;
}

/* Affiches page spectacles — ratio paysage */
.spectacles-section .spec-card-thumb { aspect-ratio: 4 / 3; max-height: none; }
.spectacles-section .spec-card-thumb img { object-position: center 15%; }
.spectacles-section .spec-card:nth-child(2) .spec-card-thumb img { object-position: center 30%; }

/* Affiches entières (contain) */
.spec-card-thumb-contain {
  aspect-ratio: 7 / 10;
  background: var(--papier);
}
.spec-card-thumb-contain img {
  object-fit: contain;
  object-position: center center;
  filter: none;
}
.spec-card:hover .spec-card-thumb-contain img {
  transform: scale(1.02);
}

/* Pastilles âge + durée */
.spec-card-pills {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.65rem;
}
.spec-pill {
  font-family: 'Raleway', sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--encre-m);
  background: var(--creme);
  border: 1px solid var(--bord);
  padding: 0.28rem 0.75rem;
  border-radius: 20px;
}

/* Ligne discipline artistique */
.spec-card-discipline {
  font-family: 'Raleway', sans-serif;
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--encre-m);
  margin-bottom: 0.8rem;
}

/* CTA bas de page */
.spectacles-cta-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  max-width: 870px;
  margin: 2.5rem auto 0;
  padding-top: 1.75rem;
  border-top: 1px solid var(--bord);
}
.spectacles-cta-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--encre);
  margin-bottom: 0.4rem;
}
.spectacles-cta-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--encre-l);
}

@media (max-width: 768px) {
  .spectacles-hero { padding: 7.5rem 1.5rem 2rem; }
  .spectacles-grid-2col { grid-template-columns: 1fr; }
  .spectacles-cta-block {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 2.5rem;
    padding-top: 2rem;
  }
}

/* ════════════════════════════════════════════════════
   PAGE YUKI ET LE SECRET DU RENARD
   ════════════════════════════════════════════════════ */

/* Nav transparente, fondue dans le fond clair */
.kokoro-nav.nav-yuki {
  background: transparent;
  border-bottom: none;
  box-shadow: none;
  backdrop-filter: none;
}
.kokoro-nav.nav-yuki.solid {
  background: rgba(249,245,239,0.97);
  border-bottom: 1px solid var(--bord);
  box-shadow: 0 2px 20px rgba(28,26,24,0.07);
  backdrop-filter: blur(16px);
}

/* Annule le fond CSS générique des pages spectacles */
body.page-yuki-et-le-secret-du-renard { background-image: none; }

/* ── Nébuleuse — div fixe pleine page ── */
.yuki-nebula {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: multiply;
  opacity: 0.7;
}
.yuki-nebula img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Sections au-dessus de la nébuleuse */
.yuki-nebula ~ * { position: relative; z-index: 1; }

/* ── Hero ── */
.yuki-hero {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  min-height: 640px;
  height: 88vh;
  padding-top: 124px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.yuki-hero-affiche {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem 0.5rem 2.5rem;
}

.yuki-hero-affiche img {
  height: clamp(460px, calc(88vh - 150px), 520px);
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  box-shadow: 0 20px 60px rgba(28,26,24,0.18);
  border-radius: 4px;
}

.yuki-hero-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 3rem 2rem 2.5rem;
  position: relative;
  overflow-x: hidden;
}

/* ── Titre H1 du hero ── */
.yuki-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--encre);
  margin-bottom: 0.4rem;
}

/* ── Sous-titre ── */
.yuki-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--cuivre);
  margin-bottom: 1.2rem;
}

/* ── Méta-infos horizontales ── */
.yuki-meta-row {
  display: flex;
  align-items: stretch;
  margin-bottom: 1rem;
}
.yuki-meta-col {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 0.8rem 0.6rem 0;
}
.yuki-meta-col:first-child { padding-left: 0; }
.yuki-meta-col svg { color: var(--cuivre); flex-shrink: 0; width: 22px; height: 22px; }
.yuki-meta-label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--encre-l);
  margin-bottom: 0.12rem;
}
.yuki-meta-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--encre);
  line-height: 1.2;
}

/* ── Boutons CTA ── */
.yuki-cta { display: flex; gap: 0.75rem; flex-wrap: nowrap; margin-top: 2.6rem; margin-bottom: 0; }
.yuki-btn-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  padding: 0.85rem 1.5rem;
  white-space: nowrap;
}
.yuki-btn-icon svg { flex-shrink: 0; width: 14px; height: 14px; }

/* ── Description ── */
.yuki-hero-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--encre);
  line-height: 1.72;
  margin-bottom: 0;
  max-width: 640px;
  border-left: 2px solid var(--cuivre);
  padding-left: 1rem;
}
.yuki-hero-desc em { color: var(--cuivre); font-style: italic; }

/* ── Sections de contenu ── */
.yuki-section {
  padding: 1.4rem 4.5rem;
  position: relative;
  z-index: 1;
}

/* ── En-tête de section : titre or + ligne ── */
.yuki-h2-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.4rem;
  border-bottom: 1px solid var(--bord-cu);
  padding-bottom: 0.7rem;
}
.yuki-h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(1.4rem, 2vw, 1.75rem);
  color: var(--cuivre);
  white-space: nowrap;
  margin: 0;
}

/* ── L'histoire ── */
.yuki-story-body {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  max-width: 1100px;
}
.yuki-story-body p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.18rem;
  color: var(--encre);
  line-height: 1.82;
}

/* ── Distribution 3 colonnes ── */
.yuki-distrib-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0 2rem;
}
.yuki-distrib-col {
  display: flex;
  flex-direction: column;
  padding-right: 1.5rem;
  border-right: 1px solid var(--bord);
}
.yuki-distrib-col:last-child {
  border-right: none;
  padding-right: 0;
}
.yuki-distrib-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.08rem;
  color: var(--encre);
  border-bottom: 1px solid rgba(28,26,24,0.06);
  padding: 0.65rem 0;
}
.yuki-distrib-item svg { color: var(--cuivre); flex-shrink: 0; }
.yuki-distrib-item strong {
  font-style: normal;
  color: var(--encre);
  font-weight: 600;
  font-family: 'Raleway', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
}

/* ── Vidéo ── */
.yuki-video-wrap {
  position: relative;
  width: 100%;
  /* Limite la largeur pour que la hauteur ne dépasse jamais l'écran */
  max-width: min(100%, calc((100vh - 200px) * (16 / 9)));
  aspect-ratio: 16 / 9;
  margin: 0.5rem auto 0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(28,26,24,0.15);
}
.yuki-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ── Galerie — thumbnails + hover expand ── */
.yuki-gallery {
  display: flex;
  gap: 0.4rem;
  height: 210px;
  margin-top: 0.8rem;
  overflow: hidden;
}
.yuki-gallery-item {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  border-radius: 8px;
  display: block;
  cursor: pointer;
  background: #1C1A18;
  text-decoration: none;
  transition: flex 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.yuki-gallery:hover .yuki-gallery-item { flex: 0.4; }
.yuki-gallery-item:hover,
.yuki-gallery-item:focus-visible { flex: 3.5; outline: none; }
.yuki-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  filter: none;
  transition: filter 0.4s, transform 0.45s;
  transform: scale(1);
}
.yuki-gallery-item:hover img,
.yuki-gallery-item:focus-visible img {
  filter: none;
  transform: scale(1.04);
}

/* ── Avis spectateurs ── */
.yuki-reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.yuki-review-card {
  background: var(--papier);
  border: 1px solid var(--bord);
  border-radius: 6px;
  padding: 1.5rem 1.8rem;
}
.yuki-stars {
  color: var(--cuivre);
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.6rem;
}
.yuki-review-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--encre);
  margin-bottom: 0.6rem;
}
.yuki-review-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--encre);
  line-height: 1.72;
  margin-bottom: 0.8rem;
}
.yuki-review-source {
  font-family: 'Raleway', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cuivre);
}

/* ── CTA programmation ── */
.yuki-cta-prog {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 2rem;
  padding: 2rem 4.5rem;
  background: var(--papier);
  border-top: 1px solid var(--bord-cu);
  border-bottom: 1px solid var(--bord);
  position: relative;
  z-index: 1;
}
.yuki-cta-prog-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  font-weight: 700;
  color: var(--encre);
  line-height: 1.25;
  margin-bottom: 0.3rem;
}
.yuki-cta-prog-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.08rem;
  color: var(--encre-m);
}
.yuki-cta-prog-btns { display: flex; gap: 0.7rem; flex-wrap: nowrap; }

/* ── Représentations passées ── */
.yuki-repres-section { color: var(--encre-l); }
.yuki-repres-table { max-width: 820px; }
.yuki-repres-header {
  display: grid;
  grid-template-columns: 180px 1fr 1fr;
  gap: 1rem;
  padding: 0 0 0.5rem;
  border-bottom: 1px solid var(--bord-cu);
  margin-bottom: 0.3rem;
}
.yuki-repres-header span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Raleway', sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cuivre);
}
.yuki-repres-header svg { color: var(--cuivre); }
.yuki-repres-row {
  display: grid;
  grid-template-columns: 180px 1fr 1fr;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(28,26,24,0.06);
  align-items: center;
}
.yuki-repres-date {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Raleway', sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--encre-m);
}
.yuki-repres-lieu {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.08rem;
  color: var(--encre);
}
.yuki-repres-ville {
  font-family: 'Raleway', sans-serif;
  font-size: 0.65rem;
  color: var(--encre-m);
}

/* ── Lightbox ── */
.yuki-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(10,8,6,0.93);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.yuki-lightbox[hidden] { display: none; }

.yuki-lb-inner {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.yuki-lb-inner img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 3px;
  display: block;
}

.yuki-lb-close {
  position: fixed;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: rgba(249,245,239,0.75);
  font-size: 2.8rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s, transform 0.2s;
  padding: 0;
}

.yuki-lb-close:hover { color: var(--blanc); transform: rotate(90deg); }

.yuki-lb-prev,
.yuki-lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(249,245,239,0.08);
  border: 1px solid rgba(249,245,239,0.12);
  color: rgba(249,245,239,0.8);
  font-size: 2.8rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.4rem 0.85rem;
  transition: background 0.2s, color 0.2s;
}

.yuki-lb-prev { left: 1rem; }
.yuki-lb-next { right: 1rem; }

.yuki-lb-prev:hover,
.yuki-lb-next:hover {
  background: rgba(249,245,239,0.16);
  color: var(--blanc);
}

/* ════════════════════════════════════════════════════
   RESPONSIVE — PAGE YUKI
   ════════════════════════════════════════════════════ */

@media (max-width: 1100px) {
  .yuki-hero-info { padding: 1.5rem 2rem 1.5rem 1.5rem; }
  .yuki-section { padding: 1.2rem 2.5rem; }
  .yuki-cta-prog { padding: 1.5rem 2.5rem; }
}

@media (max-width: 900px) {
  .yuki-hero {
    grid-template-columns: 1fr;
    height: auto;
    padding-top: 0;
  }
  .yuki-hero-affiche {
    padding: calc(124px + 1rem) 2rem 1rem;
    justify-content: center;
  }
  .yuki-hero-affiche img { max-height: 55vw; }
  .yuki-hero-info { padding: 1.5rem 2rem 2rem; }
  .yuki-distrib-grid { grid-template-columns: 1fr; }
  .yuki-distrib-col { border-right: none; padding-right: 0; }
  .yuki-reviews-grid { grid-template-columns: 1fr; }
  .yuki-cta-prog { grid-template-columns: 1fr; }
  .yuki-cta-prog-btns { flex-wrap: wrap; }
  .yuki-section { padding: 1.1rem 2rem; }
  .yuki-repres-header,
  .yuki-repres-row { grid-template-columns: 140px 1fr; }
  .yuki-repres-ville { display: none; }
}

@media (max-width: 768px) {
  .yuki-hero-affiche img { max-height: 60vw; }
  .yuki-hero-info { padding: 1.2rem 1.5rem 1.8rem; }
  .yuki-section { padding: 1rem 1.5rem; }
  .yuki-cta-prog { padding: 1.6rem 1.5rem; }
  .yuki-gallery { height: 180px; }
}

@media (max-width: 480px) {
  .yuki-gallery { height: 160px; }
  .yuki-gallery:hover .yuki-gallery-item { flex: 0.6; }
  .yuki-meta-row { flex-wrap: wrap; }
  .yuki-meta-col {
    flex: 1 1 45%;
    border-right: none;
    border-bottom: 1px solid var(--bord);
    padding: 0.4rem 0.4rem 0.4rem 0;
  }
  .yuki-meta-col:nth-last-child(-n+2) { border-bottom: none; }
  .yuki-cta { flex-wrap: wrap; }
  .yuki-cta .btn { flex: 1 1 100%; justify-content: center; }
  .yuki-repres-header,
  .yuki-repres-row { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════
   PAGE SAKURA — LE RÉVEIL DES FLEURS
   ════════════════════════════════════════════════════════════ */

/* Bannière création : s'affiche juste sous le nav fixe */
.sakura-creation-band {
  position: relative;
  z-index: 2;
  margin-top: 124px;
}

/* Hero sans padding-top (la bannière gère l'espace sous le nav) */
.sakura-page-hero {
  padding-top: 0;
  height: auto;
  min-height: 540px;
}

/* Grille des 5 points sensoriels (3 colonnes) */
.sakura-sensoriel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0 2.5rem;
}

.sakura-sensoriel-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(28,26,24,0.06);
}

.sakura-sensoriel-dot {
  width: 6px;
  height: 6px;
  background: var(--cuivre);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.55rem;
}

.sakura-sensoriel-label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--encre);
  margin-bottom: 0.3rem;
}

.sakura-sensoriel-desc {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--encre);
  line-height: 1.62;
  margin: 0;
}

@media (max-width: 900px) {
  .sakura-creation-band { margin-top: 110px; }
  .sakura-sensoriel-grid { grid-template-columns: 1fr 1fr; }
  .sakura-page-hero { min-height: auto; }
}

@media (max-width: 600px) {
  .sakura-creation-band { margin-top: 90px; }
  .sakura-sensoriel-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════
   THÉÂTRE SUR MESURE — refonte v2
   ════════════════════════════════════════════════════ */

/* ── Nav fondue dans le fond ivoire ── */
.kokoro-nav.nav-tsm {
  background: transparent;
  border-bottom: none;
  box-shadow: none;
  backdrop-filter: none;
}
.kokoro-nav.nav-tsm.solid {
  background: rgba(245,240,230,0.96);
  border-bottom: 1px solid var(--bord);
  box-shadow: 0 2px 20px rgba(28,26,24,0.07);
  backdrop-filter: blur(16px);
}

/* ── Fond général — couleur de secours ── */
body.page-theatre-sur-mesure {
  background-color: #F5F0E6;
}

/* ── Fond fixe en div (plus fiable que background-attachment:fixed) ── */
.tsm-bg {
  position: fixed;
  inset: 0;
  background-image: url('../images/fond-theatre-sur-mesure.png');
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  z-index: 0;
  pointer-events: none;
}
/* Voile ivoire progressif sur la zone centrale — calme l'illustration derrière le texte */
.tsm-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent            10%,
    rgba(246,241,232,0.26) 30%,
    rgba(246,241,232,0.34) 58%,
    rgba(246,241,232,0.12) 80%,
    transparent           100%
  );
  pointer-events: none;
}

/* Tout ce qui suit le fond se positionne au-dessus */
.tsm-bg ~ * {
  position: relative;
  z-index: 1;
}

/* ── Conteneur principal ── */
.tsm-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 56px;
}

/* ── Hero ── */
.tsm-hero {
  padding-top: calc(124px + 2rem);
  padding-bottom: 2.5rem;
  min-height: 48vh;
}

.tsm-hero-text {
  max-width: 540px;
}

.tsm-hero-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #B57943;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.tsm-hero-eyebrow::before {
  content: '';
  display: block;
  width: 18px;
  height: 1px;
  background: #B57943;
  flex-shrink: 0;
}

.tsm-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3.8vw, 3.6rem);
  font-weight: 500;
  line-height: 1.06;
  color: #1E1A17;
  margin-bottom: 1.5rem;
}
.tsm-hero-title em {
  font-style: italic;
  font-weight: 400;
  color: #B57943;
}

.tsm-hero-rule {
  width: 36px;
  height: 1px;
  background: #B57943;
  margin-bottom: 1.5rem;
}

.tsm-hero-copy {
  font-family: 'Raleway', sans-serif;
  font-size: 1.06rem;
  line-height: 1.78;
  color: #3A3028;
  margin-bottom: 1rem;
  max-width: 500px;
}

.tsm-hero-accent {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.72;
  color: #B57943;
  max-width: 500px;
}

/* ── Intro éditoriale ── */
.tsm-intro-section {
  background: rgba(246,241,232,0.90);
  padding: 2.5rem 0 2rem;
}

.tsm-intro-text {
  max-width: 660px;
  margin: 0 auto;
  text-align: center;
}
.tsm-intro-text p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.06rem;
  line-height: 1.88;
  color: #433931;
  margin-bottom: 1.15rem;
}
.tsm-intro-text p:last-child { margin-bottom: 0; }

/* ── Section formats / 4 cartes ── */
.tsm-formats-section {
  background: rgba(246,241,232,0.90);
  padding: 1.5rem 0 3rem;
}

.tsm-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.tsm-card {
  background: rgba(249,245,239,0.88);
  border: 1px solid #D8CCBE;
  padding: 36px 38px;
  transition: box-shadow 0.3s, transform 0.25s;
}
.tsm-card:hover {
  box-shadow: 0 8px 28px rgba(28,26,24,0.07);
  transform: translateY(-2px);
}

.tsm-card-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 1.2rem;
}

.tsm-card-picto {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  color: #B57943;
  margin-top: 4px;
}
.tsm-card-picto svg { width: 100%; height: 100%; }

.tsm-card-meta { flex: 1; }

.tsm-card-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.9rem;
  color: #B57943;
  margin-bottom: 0.25rem;
  display: block;
}

.tsm-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #1E1A17;
  line-height: 1.28;
}

.tsm-card-desc {
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  line-height: 1.72;
  color: #3A3028;
  margin-bottom: 1.4rem;
}

.tsm-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.52rem;
}
.tsm-card-list li {
  font-family: 'Raleway', sans-serif;
  font-size: 0.94rem;
  color: #433931;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  line-height: 1.58;
}
.tsm-card-list li::before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  background: #B57943;
  flex-shrink: 0;
}

/* ── Section méthode ── */
.tsm-method-section {
  background: rgba(246,241,232,0.88);
  padding: 2.5rem 0 3rem;
}

.tsm-method-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #B57943;
  text-align: center;
  margin-bottom: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
}
.tsm-method-eyebrow::before,
.tsm-method-eyebrow::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: #B57943;
}

.tsm-method-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.tsm-step {
  padding: 0 2.5rem;
  border-right: 1px solid rgba(216,204,190,0.7);
}
.tsm-step:first-child { padding-left: 0; }
.tsm-step:last-child  { border-right: none; padding-right: 0; }

.tsm-step-picto {
  width: 30px;
  height: 30px;
  color: #B57943;
  margin-bottom: 0.9rem;
}
.tsm-step-picto svg { width: 100%; height: 100%; }

.tsm-step-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.92rem;
  color: #B57943;
  margin-bottom: 0.35rem;
  display: block;
}

.tsm-step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #1E1A17;
  margin-bottom: 0.6rem;
}

.tsm-step-desc {
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  line-height: 1.68;
  color: #3F352F;
}

/* ── CTA final ── */
.tsm-cta-section {
  background: rgba(12,19,32,0.93);
  padding: 3.5rem 0;
}

.tsm-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

.tsm-cta-text { max-width: 560px; }

.tsm-cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 400;
  line-height: 1.12;
  color: #F5F0E6;
  margin-bottom: 1.2rem;
}
.tsm-cta-title em {
  font-style: italic;
  font-weight: 400;
  color: #B57943;
}

.tsm-cta-copy {
  font-family: 'Raleway', sans-serif;
  font-size: 1.06rem;
  line-height: 1.78;
  color: rgba(245,240,230,0.82);
  max-width: 480px;
}

.tsm-cta-btns {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
}

.tsm-btn-primary {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.95rem 2rem;
  background: #F0EBE0;
  color: #1E1A17;
  border: 1px solid #F0EBE0;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  text-align: center;
  white-space: nowrap;
}
.tsm-btn-primary:hover {
  background: transparent;
  color: #F0EBE0;
  border-color: #F0EBE0;
}

.tsm-btn-secondary {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.95rem 2rem;
  background: transparent;
  color: rgba(240,235,224,0.68);
  border: 1px solid rgba(240,235,224,0.24);
  transition: color 0.3s, border-color 0.3s;
  text-align: center;
  white-space: nowrap;
}
.tsm-btn-secondary:hover {
  color: #F0EBE0;
  border-color: rgba(240,235,224,0.55);
}

/* ── Responsive TSM ── */
@media (max-width: 1100px) {
  .tsm-container { padding: 0 36px; }
  .tsm-hero { padding-top: calc(124px + 2.5rem); min-height: 60vh; }
}

@media (max-width: 900px) {
  .tsm-container { padding: 0 28px; }
  .tsm-cards-grid { grid-template-columns: 1fr; }
  .tsm-method-steps { grid-template-columns: 1fr 1fr; row-gap: 3rem; }
  .tsm-step {
    border-right: none;
    padding: 0;
  }
  .tsm-step:nth-child(odd) {
    border-right: 1px solid rgba(216,204,190,0.7);
    padding-right: 2.5rem;
  }
  .tsm-cta-inner { flex-direction: column; align-items: flex-start; gap: 2.5rem; }
  .tsm-btn-primary,
  .tsm-btn-secondary { display: block; text-align: center; }
}

@media (max-width: 768px) {
  .tsm-container { padding: 0 20px; }
  .tsm-hero {
    padding-top: calc(100px + 1.5rem);
    padding-bottom: 2rem;
    min-height: auto;
  }
  .tsm-hero-text {
    max-width: 100%;
    background: rgba(245,240,230,0.84);
    padding: 1.4rem 1.6rem;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
  }
  .tsm-hero-title { font-size: 1.9rem; }
  .tsm-card { padding: 22px 24px; }
  .tsm-method-steps { grid-template-columns: 1fr; gap: 1.8rem; }
  .tsm-step { border-right: none !important; padding: 0 !important; }
  .tsm-step:not(:last-child) {
    padding-bottom: 1.8rem !important;
    border-bottom: 1px solid rgba(216,204,190,0.55) !important;
  }
  .tsm-cta-section { padding: 3rem 0; }
  .tsm-cta-title { font-size: 1.8rem; }
  .tsm-intro-section { padding: 2rem 0 1.5rem; }
  .tsm-formats-section { padding: 1rem 0 2.5rem; }
  .tsm-method-section { padding: 2rem 0 2.5rem; }
}

@media (max-width: 480px) {
  .tsm-hero-title { font-size: 1.7rem; }
  .tsm-cta-title { font-size: 1.6rem; }
}
@media (max-width: 768px) {
  .kokoro-nav.nav-tsm {
    background: rgba(245,240,230,0.95);
    border-bottom: 1px solid var(--bord);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
}
