:root {
  --ink: #0f1720;
  --deep-teal: #286672;
  --deep-teal-2: #1f5661;
  --coral: #ff6b57;
  --teal: #17b3ae;
  --yellow: #ffc94d;
  --cream: #f7f1e6;
  --paper: #fffdf8;
  --mist-blue: #eef6f8;
  --mist-blue-2: #e4f0f4;
  --mist-blue-3: #d9e9ef;
  --muted: #6b7280;
  --line: #ddd5c8;
  --shadow: 0 18px 45px rgba(15, 23, 32, .10);
  --radius: 24px;
  --max: 1360px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 74px 0; }
.section-tight { padding: 48px 0; }
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic; font-size: 1.05rem; color: #0d8f8a;
  margin: 0 0 10px;
}
.kicker::before { content: '['; color: var(--coral); font-weight: 700; }
.kicker::after { content: ']'; color: var(--coral); font-weight: 700; }
h1,h2,h3 { margin: 0 0 12px; line-height: 1.03; }
h1,h2 {
  font-family: 'Arial Narrow', 'Aptos Narrow', Arial, sans-serif;
  font-stretch: condensed;
  text-transform: uppercase;
  letter-spacing: -.035em;
}
h1 { font-size: clamp(3rem, 8vw, 6.6rem); }
h2 { font-size: clamp(2.2rem, 5vw, 4.2rem); }
h3 { font-size: 1.35rem; }
.lead { font-size: clamp(1.08rem, 2vw, 1.32rem); max-width: 70ch; }
.muted { color: var(--muted); }
.tag {
  display: inline-flex; align-items: center; gap: 7px;
  border: 1px solid currentColor; border-radius: 999px;
  padding: 7px 11px; font-size: .78rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .04em;
}
.tag.teal { color: #087f7b; background: #effcfb; }
.tag.coral { color: #d44431; background: #fff4f1; }
.tag.yellow { color: #8e6700; background: #fff8dc; }
.tag.ink { color: var(--ink); background: #f5f3ef; }
.btn {
  display: inline-flex; justify-content: center; align-items: center; gap: 8px;
  min-height: 46px; padding: 12px 18px;
  border: 2px solid var(--ink); border-radius: 10px;
  font-weight: 800; text-transform: uppercase; font-size: .84rem;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(15,23,32,.12); }
.btn.primary { background: var(--coral); border-color: var(--coral); color: white; }
.btn.teal { background: var(--teal); border-color: var(--teal); color: white; }
.btn.dark { background: var(--deep-teal); border-color: var(--deep-teal); color: white; }
.btn.dark:hover { background: var(--deep-teal-2); border-color: var(--deep-teal-2); }
.btn.ghost { background: transparent; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(255,253,248,.94); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15,23,32,.08);
}
.header-inner { min-height: 116px; display: flex; align-items: center; gap: 20px; }
.brand { display: flex; align-items: center; gap: 13px; min-width: 306px; flex: 0 0 auto; }
.brand img { width: 292px; height: 104px; object-fit: contain; object-position: left center; border-radius: 8px; }
.brand-copy { display: none; }
.main-nav { display: flex; gap: 16px; margin-left: auto; align-items: center; }
.main-nav a { font-size: .80rem; font-weight: 800; text-transform: uppercase; letter-spacing: .025em; position: relative; white-space: nowrap; }
.main-nav a::after { content:''; position:absolute; height:3px; left:0; right:100%; bottom:-9px; background:var(--coral); transition:right .2s; }
.main-nav a:hover::after, .main-nav a.active::after { right:0; }
.member-link { background: var(--deep-teal); color:white; padding: 13px 15px; border-radius: 10px; white-space: nowrap; }
.menu-toggle { display:none; margin-left:auto; border:0; background:none; font-size:1.6rem; }

/* Hero */
.hero { padding: 38px 0 54px; overflow:hidden; }
.hero-grid { display:grid; grid-template-columns: .92fr 1.08fr; min-height: 590px; align-items: stretch; gap: 34px; }
.hero-copy { align-self:center; padding: 28px 0; position:relative; }
.hero-copy::before { content:''; position:absolute; width:96px; height:7px; background:var(--yellow); top:6px; left:2px; transform:rotate(-4deg); border-radius:999px; }
.hero-title { font-size: clamp(3.3rem, 7vw, 6.4rem); }
.hero-title .accent { color: var(--coral); }
.hero-visual { position:relative; min-height:520px; border-radius: 34px 6px 34px 34px; overflow:hidden; box-shadow:var(--shadow); background:var(--deep-teal); }
.hero-visual img { width:100%; height:100%; object-fit:cover; object-position:center 32%; }
.hero-visual::after { content:''; position:absolute; inset:0; background:linear-gradient(180deg, transparent 45%, rgba(15,23,32,.45)); pointer-events:none; }
.hero-sticker {
  position:absolute; right:18px; bottom:18px; z-index:2; width:min(290px,78%);
  background:var(--paper); padding:18px; border-radius:16px; box-shadow:var(--shadow); transform:rotate(-1.2deg);
}
.hero-sticker strong { display:block; color:var(--coral); text-transform:uppercase; font-size:1.1rem; line-height:1.1; margin-bottom:5px; }
.hero-dots { display:flex; gap:7px; margin-top:20px; }
.hero-dots span { width:7px; height:7px; background:var(--deep-teal); border-radius:50%; }
.hero-dots span:nth-child(2) { background:var(--teal); }
.hero-dots span:nth-child(3) { background:var(--yellow); }
.hero-dots span:nth-child(4) { background:var(--coral); }

/* Focus */
.focus-card { display:grid; grid-template-columns: 1fr 1fr; border-radius:var(--radius); overflow:hidden; background:var(--deep-teal); color:white; box-shadow:var(--shadow); }
.focus-copy { padding:44px; background:linear-gradient(135deg, var(--coral), #e54c36 76%); position:relative; }
.focus-copy::after { content:'!'; position:absolute; right:20px; top:8px; font-size:8rem; font-weight:900; color:rgba(255,255,255,.09); transform:rotate(10deg); }
.focus-media { min-height:320px; background:var(--deep-teal); }
.focus-media img { width:100%; height:100%; object-fit:cover; }

/* Cards */
.section-heading { display:flex; justify-content:space-between; gap:25px; align-items:end; margin-bottom:28px; }
.section-heading p { max-width: 620px; margin:0; }
.project-grid { display:grid; grid-template-columns: repeat(4, 1fr); gap:18px; }
.project-card { border:1px solid var(--line); border-radius:18px; background:white; overflow:hidden; min-height:350px; display:flex; flex-direction:column; transition:.2s; }
.project-card:hover { transform:translateY(-4px); box-shadow:var(--shadow); }
.project-visual { aspect-ratio: 16 / 10; background:var(--cream); overflow:hidden; position:relative; }
.project-visual img { width:100%; height:100%; object-fit:cover; }
.project-visual.graphic { display:grid; place-items:center; padding:22px; background:linear-gradient(135deg,#1bb9b4,var(--yellow)); }
.project-visual.graphic strong { font-family:'Arial Narrow',Arial,sans-serif; font-size:2rem; text-transform:uppercase; line-height:.9; transform:rotate(-2deg); }
.project-body { padding:18px; display:flex; flex-direction:column; flex:1; }
.project-body h3 { text-transform:uppercase; font-family:'Arial Narrow',Arial,sans-serif; font-size:1.55rem; }
.project-body .tag { align-self:flex-start; margin-top:auto; }

/* News */
.news-grid { display:grid; grid-template-columns: 1.3fr 1fr 1fr; gap:18px; }
.news-card { border:1px solid var(--line); border-radius:18px; overflow:hidden; background:white; }
.news-card img { aspect-ratio: 16 / 9; width:100%; object-fit:cover; object-position:center top; }
.news-card .news-body { padding:18px; }
.news-card time { color:var(--muted); font-size:.8rem; font-weight:700; text-transform:uppercase; }
.news-card:first-child { grid-row: span 1; }

/* troupe */
.troupe-band { background:var(--cream); border-block:1px solid #eadfce; }
.troupe-grid { display:grid; grid-template-columns: 1.1fr .9fr; gap:44px; align-items:center; }
.troupe-art { border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow); }
.troupe-art img { width:100%; max-height:530px; object-fit:cover; object-position:center 18%; }

/* Programming block */
.programming-wrap { display:grid; grid-template-columns: 1.15fr .85fr; gap:22px; }
.programming-card, .contact-card { border-radius:var(--radius); padding:34px; position:relative; overflow:hidden; }
.programming-card { background:linear-gradient(135deg,#eafbf9 0%,#fff8dc 100%); border:1px solid #c9eee9; }
.programming-card::after { content:'↗'; position:absolute; right:18px; top:4px; font-size:7rem; font-weight:900; color:rgba(23,179,174,.15); }
.contact-card { background:var(--deep-teal); color:white; }
.contact-card a.email { color:var(--yellow); font-weight:800; }


.programming-card.has-avatar { padding-right: 145px; min-height: 205px; }
.programming-card .programming-icon {
  position:absolute; right:26px; top:50%; transform:translateY(-50%) rotate(2deg);
  width:98px; height:98px; object-fit:contain; border-radius:50%;
  background:#fffaf1; padding:4px; box-shadow:0 10px 26px rgba(40,102,114,.16);
  border:1px solid rgba(40,102,114,.16); z-index:1;
}
.programming-card.has-avatar::after { right:105px; opacity:.55; }


/* Homepage V0.3 base + V0.4 overrides */
.hero-date-list { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin:24px 0 4px; max-width:650px; }
.hero-date-list > div { padding:14px 16px; border-radius:14px; background:linear-gradient(180deg,var(--mist-blue) 0%, #f8fcfd 100%); border:1px solid #d6e7ed; box-shadow:0 8px 20px rgba(15,23,32,.04); }
.hero-date-list b, .hero-date-list span { display:block; }
.hero-date-list b { font-size:.9rem; text-transform:uppercase; letter-spacing:.02em; }
.hero-date-list span { margin-top:3px; color:var(--deep-teal); font-weight:800; }
.hero-poster { background:var(--mist-blue); }
.hero-poster > img { object-fit:contain; object-position:center; background:var(--mist-blue); padding:18px; }
.project-grid-three { grid-template-columns:repeat(3, 1fr); }
.project-visual.graphic-1 { background:linear-gradient(135deg,var(--teal),#86e2d8 60%,var(--yellow)); }
.project-visual.graphic-2 { background:linear-gradient(135deg,var(--coral),#ff9c76 60%,var(--yellow)); }
.project-visual.video-graphic { display:grid; place-items:center; padding:22px; text-align:center; background:linear-gradient(135deg,var(--yellow),#fff1aa 55%,var(--coral)); }
.project-visual.video-graphic strong { font-family:'Arial Narrow',Arial,sans-serif; font-size:2rem; text-transform:uppercase; line-height:.9; transform:rotate(-2deg); }
.video-symbol { position:absolute; width:72px; height:72px; display:grid; place-items:center; border:4px solid var(--ink); border-radius:50%; font-size:1.8rem; padding-left:5px; opacity:.16; transform:rotate(-4deg); }
.season-band { background:linear-gradient(180deg,#fffdf8 0%,#f7f1e6 100%); border-block:1px solid #eadfce; }
.season-grid { display:grid; grid-template-columns:repeat(3, 1fr); gap:18px; }
.season-card { position:relative; overflow:hidden; min-height:320px; padding:28px; border-radius:22px; border:1px solid var(--line); background:white; box-shadow:0 8px 24px rgba(15,23,32,.05); display:flex; flex-direction:column; }
.season-card::before { content:''; position:absolute; width:150px; height:10px; left:24px; top:18px; border-radius:999px; transform:rotate(-2deg); opacity:.9; }
.season-card::after { content:'+'; position:absolute; right:15px; top:-18px; font-size:7rem; line-height:1; font-weight:900; opacity:.06; transform:rotate(7deg); }
.season-card h3 { margin-top:16px; font-family:'Arial Narrow',Arial,sans-serif; text-transform:uppercase; font-size:clamp(1.8rem,3vw,2.6rem); transform:rotate(-.7deg); }
.season-card p:not(.season-date) { font-size:1rem; }
.season-card .tag { align-self:flex-start; margin-top:auto; }
.season-date { margin:20px 0 0; font-size:.84rem; font-weight:900; text-transform:uppercase; letter-spacing:.06em; color:var(--deep-teal); }
.season-coral::before { background:var(--coral); }
.season-teal::before { background:var(--teal); }
.season-yellow::before { background:var(--yellow); }

/* Spectacles listing */
.page-hero { padding:64px 0 30px; }
.page-hero h1 { font-size:clamp(3.4rem,7vw,6rem); }
.show-list { display:flex; flex-direction:column; gap:26px; }
.show-row { display:grid; grid-template-columns: 280px 1fr; gap:32px; padding:24px; border:1px solid var(--line); border-radius:22px; background:white; }
.show-poster { border-radius:14px; overflow:hidden; background:var(--cream); aspect-ratio: 3/4; }
.show-poster img { width:100%; height:100%; object-fit:cover; }
.show-poster.text-visual { display:grid; place-items:center; padding:24px; background:linear-gradient(145deg,var(--yellow),#fff1ad); text-align:center; }
.show-poster.text-visual strong { font-size:2.6rem; line-height:.9; font-family:'Arial Narrow',Arial,sans-serif; text-transform:uppercase; }
.show-meta { display:flex; flex-wrap:wrap; gap:8px; margin:12px 0 18px; }
.show-row h2 { font-size:clamp(2rem,4vw,3.4rem); }

/* Detail */
.detail-hero { display:grid; grid-template-columns: .7fr 1.3fr; gap:42px; align-items:center; padding:56px 0; }
.detail-poster { border-radius:24px; overflow:hidden; box-shadow:var(--shadow); max-width:460px; }
.detail-poster img { width:100%; }
.fact-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:12px; margin:28px 0; }
.fact { padding:15px; border-radius:14px; background:var(--cream); }
.fact b { display:block; font-size:.76rem; text-transform:uppercase; color:var(--muted); margin-bottom:4px; }
.pro-section { background:var(--deep-teal); color:white; }
.pro-grid { display:grid; grid-template-columns: 1fr 1fr; gap:36px; }
.pro-list { display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.pro-item { padding:15px; border:1px solid rgba(255,255,255,.2); border-radius:12px; }
.pro-item b { display:block; color:var(--yellow); font-size:.76rem; text-transform:uppercase; }

/* Programmer */
.offer-grid { display:grid; grid-template-columns:1fr 1fr; gap:22px; }
.offer-card { border:1px solid var(--line); border-radius:20px; overflow:hidden; background:white; }
.offer-card-inner { display:grid; grid-template-columns:180px 1fr; gap:20px; padding:20px; }
.offer-card img { width:180px; height:220px; object-fit:cover; border-radius:12px; }
.formula-grid { display:grid; grid-template-columns: repeat(4,1fr); gap:14px; }
.formula { padding:20px; border-radius:16px; background:var(--cream); border:1px solid #eadfce; }

/* Contact */
.contact-layout { display:grid; grid-template-columns:.8fr 1.2fr; gap:38px; }
.contact-form { display:grid; grid-template-columns:1fr 1fr; gap:15px; }
.contact-form .full { grid-column:1/-1; }
label { font-size:.78rem; font-weight:800; text-transform:uppercase; letter-spacing:.03em; }
input,select,textarea { width:100%; border:1px solid #cfc7ba; border-radius:10px; padding:13px; background:white; color:var(--ink); margin-top:6px; }
textarea { min-height:160px; resize:vertical; }

/* Footer */
.site-footer { background:var(--deep-teal); color:#e7edf1; padding:28px 0; margin-top:44px; }
.footer-grid { display:flex; justify-content:space-between; gap:30px; align-items:center; }
.footer-brand { display:flex; align-items:center; gap:14px; }
.footer-brand img { width:62px; height:62px; object-fit:contain; border-radius:50%; background:#fffaf1; padding:3px; border:1px solid rgba(255,255,255,.45); }
.footer-links { display:flex; flex-wrap:wrap; gap:16px; font-size:.8rem; color:#d8e7e9; }

/* Decorative scribbles */
.scribble { position:relative; }
.scribble::after { content:''; display:block; width:110px; height:7px; background:var(--teal); border-radius:999px; transform:rotate(-2deg); margin-top:10px; }

@media (max-width: 1160px) {
  .main-nav { display:none; position:absolute; inset:116px 0 auto; background:var(--paper); padding:20px; border-bottom:1px solid var(--line); flex-direction:column; align-items:flex-start; }
  .main-nav.open { display:flex; }
  .menu-toggle { display:block; }
  .member-link { margin-left:0; }
  .hero-grid, .focus-card, .troupe-grid, .programming-wrap, .detail-hero, .pro-grid, .contact-layout { grid-template-columns:1fr; }
  .hero-grid { min-height:0; }
  .hero-visual { min-height:430px; }
  .project-grid { grid-template-columns:repeat(2,1fr); }
  .project-grid-three, .season-grid { grid-template-columns:1fr 1fr; }
  .news-grid { grid-template-columns:1fr 1fr; }
  .news-card:first-child { grid-column:1/-1; }
  .show-row { grid-template-columns:220px 1fr; }
  .offer-grid { grid-template-columns:1fr; }
  .formula-grid { grid-template-columns:1fr 1fr; }
  .fact-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width: 680px) {
  .container { width:min(100% - 26px, var(--max)); }
  .header-inner { min-height:78px; }
  .brand { min-width:0; }
  .brand img { width:205px; height:74px; }
  .main-nav { inset:78px 0 auto; }
  .section { padding:54px 0; }
  .hero { padding-top:20px; }
  .hero-visual { min-height:360px; }
  .hero-sticker { width:85%; }
  .focus-copy { padding:30px 24px; }
  .project-grid, .project-grid-three, .season-grid, .news-grid, .formula-grid { grid-template-columns:1fr; }
  .hero-date-list { grid-template-columns:1fr; }
  .news-card:first-child { grid-column:auto; }
  .section-heading { align-items:flex-start; flex-direction:column; }
  .show-row { grid-template-columns:1fr; }
  .show-poster { max-height:520px; }
  .fact-grid, .pro-list { grid-template-columns:1fr; }
  .offer-card-inner { grid-template-columns:110px 1fr; }
  .offer-card img { width:110px; height:150px; }
  .contact-form { grid-template-columns:1fr; }
  .contact-form .full { grid-column:auto; }
  .footer-grid { align-items:flex-start; flex-direction:column; }
  .programming-card.has-avatar { padding-right:34px; padding-top:132px; }
  .programming-card .programming-icon { top:24px; left:34px; right:auto; transform:none; width:88px; height:88px; }
}


/* Homepage refinements — V0.7 */

/* Project cards: test the "illustration en filigrane" direction. */
.project-visual.filigree {
  position:relative; display:grid; place-items:center; background:#fbf7ef; overflow:hidden;
}
.project-visual.filigree::before { content:''; position:absolute; inset:0; opacity:.46; }
.project-visual.filigree-teal::before { background:linear-gradient(135deg,#e9fbf8,#fff8da); }
.project-visual.filigree-coral::before { background:linear-gradient(135deg,#fff0ec,#fff8da); }
.project-visual.filigree-yellow::before { background:linear-gradient(135deg,#fff8d8,#edf9f7); }
.project-visual.filigree img {
  position:absolute; width:88%; height:88%; object-fit:contain; opacity:.72; filter:saturate(.88);
}
.project-visual.filigree span {
  position:absolute; right:15px; bottom:13px; z-index:2; padding:6px 10px; border-radius:999px;
  background:rgba(255,253,248,.9); border:1px solid rgba(15,23,32,.1); font-size:.72rem;
  font-weight:900; text-transform:uppercase; letter-spacing:.04em; transform:rotate(-1deg);
}

.season-card .season-action { margin-top:16px; }
.season-card .season-action .btn { min-height:40px; padding:9px 12px; font-size:.74rem; }

/* The troupe illustration is a complete composition: never crop it. */
.troupe-band {
  background: linear-gradient(180deg,#fffdf8 0%,#fcf9f2 100%);
  border-block-color: #ece3d5;
}
.troupe-art {
  background:#fffaf2;
  border: 1px solid #eadfce;
}
.troupe-art img {
  width:100%; max-height:none; object-fit:contain; object-position:center;
  filter: brightness(1.035) saturate(.94);
}

/* Unified editorial news cards */
.news-grid { grid-template-columns: repeat(3, minmax(0,1fr)); gap:18px; }
.news-card {
  display:flex; flex-direction:column; height:100%;
  border:1px solid var(--line); border-radius:18px; overflow:hidden; background:white;
}
.news-card:first-child { grid-column:auto; }
.news-card img { aspect-ratio: 16 / 9; width:100%; object-fit:cover; object-position:center top; }
.news-card .news-body {
  padding:18px; display:flex; flex-direction:column; gap:10px; flex:1;
}
.news-card .news-body p { flex:1; }
.news-card .news-body a { margin-top:auto; align-self:flex-start; }

/* Homepage — La Couturière */
.hero-couturiere {
  background: linear-gradient(135deg,var(--mist-blue) 0%, var(--mist-blue-2) 100%);
  border: 1px solid #dbe9ee;
  min-height: 610px;
  aspect-ratio: 1 / 1;
  padding: 0;
}
.hero-couturiere > img:first-child {
  width: 100%; height: 100%; object-fit: contain; object-position: center;
  background: transparent; padding: 12px;
}
.hero-couturiere::after { background: linear-gradient(180deg,transparent 68%,rgba(15,23,32,.10)); }
.tour-sticker {
  position:absolute; z-index:3; color:var(--ink);
  background: rgba(255,253,248,.96);
  border: 1px solid rgba(15,23,32,.12);
  border-radius: 16px; padding: 15px 16px;
  box-shadow: 0 10px 24px rgba(15,23,32,.12);
  font-size:.84rem; line-height:1.4;
}
.tour-sticker strong {
  display:block; margin-bottom:5px; color:var(--coral); text-transform:uppercase;
  letter-spacing:.025em; font-size:.9rem;
}
.tour-sticker p { margin:0; }
.tour-sticker-left {
  left: 18px; right: auto; bottom: 16px; top: auto;
  width: min(360px,46%); transform: rotate(-2.5deg);
}
.tour-sticker-right {
  right: 18px; left: auto; top: auto; bottom: 128px;
  width: min(280px,35%); transform: rotate(2.2deg);
}
.hero-couturiere .hero-avatar {
  position:absolute; z-index:4; right: 22px; bottom: 18px; width: 62px; height: 62px;
  object-fit:contain; padding:4px; border-radius:50%;
  background: rgba(255,250,241,.96);
  box-shadow:0 8px 18px rgba(15,23,32,.18); border:1px solid rgba(15,23,32,.13);
}

/* The Focus is explicitly made of two separate panels, with breathing space between them. */
.focus-card {
  gap: 18px;
  overflow: visible;
  background: linear-gradient(135deg,var(--mist-blue) 0%, #f5fbfd 100%);
  border: 1px solid #d9e8ed;
  padding: 16px;
  border-radius: calc(var(--radius) + 2px);
  box-shadow: var(--shadow);
}
.focus-copy,
.focus-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: none;
}
.focus-copy {
  background: linear-gradient(135deg,#f8e8de 0%,#f2d6c7 100%);
  border: 1px solid #e7c3b3;
  color:var(--ink);
}
.focus-copy .kicker { color:#0d8f8a; }
.focus-copy::after { color:rgba(255,255,255,.32); }
.focus-media {
  background: linear-gradient(135deg,#eff7fa 0%,#e5f0f4 100%);
  border: 1px solid #d8e7ed;
}
.focus-media img { object-position:center top; }

@media (max-width: 1160px) {
  .news-grid { grid-template-columns: 1fr 1fr; }
  .news-card:first-child { grid-column:auto; }
  .tour-sticker-left { width:min(400px,58%); }
  .tour-sticker-right { width:min(290px,42%); bottom: 116px; }
}

@media (max-width: 680px) {
  .hero-couturiere { min-height: 590px; aspect-ratio: auto; }
  .hero-couturiere > img:first-child { height: 100%; padding: 10px; }
  .tour-sticker-left { left: 12px; right: 12px; width: auto; transform: none; bottom: 112px; }
  .tour-sticker-right { left: 12px; right: 12px; width: auto; transform: none; top: auto; bottom: 18px; }
  .hero-couturiere .hero-avatar { right: 22px; bottom: 31px; width: 60px; height: 60px; }
}


/* À l'affiche + homepage data-driven refinements — V0.8 */
.hero-couturiere .hero-avatar {
  left: 24px;
  right: auto;
  top: 116px;
  bottom: auto;
  width: 62px;
  height: 62px;
}

.event-feature {
  display:grid;
  grid-template-columns: 360px minmax(0,1fr);
  gap:34px;
  padding:24px;
  border:1px solid #d7e6eb;
  border-radius:24px;
  background:linear-gradient(135deg,#f7fbfc 0%,var(--mist-blue) 100%);
  box-shadow:0 12px 30px rgba(15,23,32,.06);
}
.event-feature + .event-feature { margin-top:26px; }
.event-feature-poster {
  border-radius:18px;
  overflow:hidden;
  background:#fff;
  align-self:start;
  box-shadow:0 10px 26px rgba(15,23,32,.09);
}
.event-feature-poster img { width:100%; height:auto; object-fit:contain; }
.event-feature-content h2 { font-size:clamp(2.6rem,5vw,4.6rem); }
.event-date-stack { display:grid; gap:14px; margin-top:24px; }
.event-date-card {
  display:grid;
  grid-template-columns:190px minmax(0,1fr);
  gap:22px;
  padding:20px;
  border-radius:18px;
  background:#fff;
  border:1px solid #dce7ea;
  border-left:8px solid var(--teal);
}
.event-date-card.event-coral { border-left-color:var(--coral); }
.event-date-card.event-yellow { border-left-color:var(--yellow); }
.event-date-heading b {
  display:block; text-transform:uppercase; font-size:.88rem; line-height:1.3;
}
.event-date-heading span { display:block; margin-top:7px; color:var(--deep-teal); font-weight:900; font-size:1.08rem; }
.event-place { margin-top:0; color:var(--muted); font-weight:700; }
.event-actions { display:flex; flex-wrap:wrap; gap:10px; margin-top:16px; }

.affiche-home-band {
  background:linear-gradient(180deg,#fffdf8 0%,#f7f1e6 100%);
  border-block:1px solid #eadfce;
}
.affiche-weekend-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px; }
.affiche-weekend-card {
  position:relative; overflow:hidden; display:flex; flex-direction:column;
  min-height:330px; padding:28px; border-radius:22px; border:1px solid var(--line);
  background:white; box-shadow:0 8px 24px rgba(15,23,32,.05);
}
.affiche-weekend-card::before {
  content:''; position:absolute; left:24px; top:18px; width:145px; height:9px;
  border-radius:999px; transform:rotate(-2deg); background:var(--teal);
}
.affiche-weekend-coral::before { background:var(--coral); }
.affiche-weekend-yellow::before { background:var(--yellow); }
.affiche-weekend-date {
  margin:20px 0 0; color:var(--deep-teal); font-size:.84rem; font-weight:900;
  text-transform:uppercase; letter-spacing:.05em;
}
.affiche-weekend-card h3 {
  margin-top:16px; font-family:'Arial Narrow',Arial,sans-serif; text-transform:uppercase;
  font-size:clamp(1.8rem,3vw,2.6rem); transform:rotate(-.7deg);
}
.affiche-weekend-footer {
  margin-top:auto; padding-top:20px; display:flex; flex-wrap:wrap; gap:12px;
  justify-content:space-between; align-items:end;
}
.affiche-note {
  padding:34px; border-radius:22px; background:linear-gradient(135deg,var(--mist-blue),#f8fcfd);
  border:1px solid #d8e8ed;
}

@media (max-width:1160px) {
  .event-feature { grid-template-columns:280px minmax(0,1fr); }
  .event-date-card { grid-template-columns:160px minmax(0,1fr); }
  .affiche-weekend-grid { grid-template-columns:1fr 1fr; }
  .hero-couturiere .hero-avatar { left:22px; top:106px; }
}
@media (max-width:680px) {
  .event-feature { grid-template-columns:1fr; padding:16px; }
  .event-feature-poster { max-width:420px; margin-inline:auto; }
  .event-date-card { grid-template-columns:1fr; gap:8px; }
  .affiche-weekend-grid { grid-template-columns:1fr; }
  .hero-couturiere .hero-avatar { left:18px; top:92px; width:56px; height:56px; }
}


/* À l'affiche — editorial expansion V0.9 */
.event-show-summary {
  margin: 18px 0 8px;
  padding: 18px 20px;
  border-left: 5px solid var(--teal);
  border-radius: 0 14px 14px 0;
  background: linear-gradient(90deg,var(--mist-blue) 0%,#f8fcfd 100%);
  font-size: 1.04rem;
}
.text-link { color: var(--deep-teal); }
.affiche-weekend-stack { display:flex; flex-direction:column; gap:26px; }
.affiche-weekend-story {
  position:relative; overflow:hidden;
  border:1px solid var(--line); border-radius:24px; background:white;
  padding:30px; box-shadow:0 10px 28px rgba(15,23,32,.055);
}
.affiche-weekend-story::before {
  content:''; position:absolute; left:0; top:0; bottom:0; width:8px;
}
.affiche-weekend-coral::before { background:var(--coral); }
.affiche-weekend-teal::before { background:var(--teal); }
.affiche-weekend-yellow::before { background:var(--yellow); }
.weekend-story-header {
  display:flex; justify-content:space-between; gap:24px; align-items:flex-start;
  margin-bottom:22px; padding-bottom:18px; border-bottom:1px solid var(--line);
}
.weekend-story-header h3 {
  margin:4px 0 0; font-family:'Arial Narrow',Arial,sans-serif;
  text-transform:uppercase; font-size:clamp(2.2rem,4.4vw,3.8rem); transform:rotate(-.5deg);
}
.weekend-story-grid { display:grid; grid-template-columns:1.25fr .75fr; gap:30px; align-items:start; }
.weekend-story-copy p:first-child { margin-top:0; }
.weekend-story-copy p { font-size:1.04rem; }
.weekend-callout {
  padding:22px; border-radius:18px;
  background:linear-gradient(135deg,var(--mist-blue) 0%,#f8fcfd 100%);
  border:1px solid #d7e8ed;
}
.weekend-callout h4 {
  margin:0 0 10px; font-family:'Arial Narrow',Arial,sans-serif;
  text-transform:uppercase; font-size:1.45rem;
}
.weekend-callout ul { padding-left:1.2rem; margin:12px 0; }
.weekend-callout li { margin:.45rem 0; }
.weekend-callout-conclusion { margin-bottom:0; font-weight:700; }
.weekend-callout.simple { background:linear-gradient(135deg,#fff8df,#fffdf5); border-color:#f0e1ae; }
.weekend-chips { display:flex; flex-wrap:wrap; gap:8px; margin-top:22px; }
.weekend-chips span {
  padding:7px 10px; border-radius:999px; background:#fff7db; border:1px solid #eadba5;
  font-size:.78rem; font-weight:800; text-transform:uppercase; letter-spacing:.025em;
}
.weekend-story-actions { margin-top:22px; padding-top:18px; border-top:1px solid var(--line); }

@media (max-width: 900px) {
  .weekend-story-grid { grid-template-columns:1fr; }
}
@media (max-width: 680px) {
  .affiche-weekend-story { padding:22px 20px; }
  .weekend-story-header { flex-direction:column; }
}


/* À l'affiche — finalisation du pitch La Couturière V0.10 */
.event-show-pitch {
  margin: 20px 0 16px;
  padding: 20px 22px;
  border-radius: 18px;
  background: linear-gradient(135deg,var(--mist-blue) 0%,#f8fcfd 100%);
  border: 1px solid #d6e7ed;
  border-left: 6px solid var(--coral);
}
.event-show-pitch p { margin: 0; }
.event-show-pitch p + p { margin-top: 10px; }
.event-show-pitch-lead {
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.5;
}
.event-show-transition {
  margin: 18px 0 8px;
  font-size: 1.02rem;
}


/* Nos spectacles — V0.12 */
.spectacles-page-hero { padding-bottom:46px; }
.spectacle-reprise-band {
  background:linear-gradient(180deg,var(--mist-blue) 0%,#f8fcfd 100%);
  border-block:1px solid #dcebef;
}
.spectacle-history-band {
  background:linear-gradient(180deg,#fffaf2 0%,#f8f1e6 100%);
  border-block:1px solid #eadfce;
}
.show-row { align-items:stretch; }
.show-copy { display:flex; flex-direction:column; justify-content:center; padding:4px 0; }
.show-overline {
  display:flex; flex-wrap:wrap; gap:8px; align-items:center; margin-bottom:10px;
  font-size:.78rem; font-weight:900; text-transform:uppercase; letter-spacing:.05em;
  color:var(--deep-teal);
}
.show-overline span + span::before { content:'•'; margin-right:8px; color:var(--coral); }
.show-row .show-poster img { object-position:center top; }
.show-row[data-kind="creation"] .show-poster.project-visual.filigree {
  width:100%; aspect-ratio:16/10; align-self:center;
}
.show-row[data-kind="reprise"] {
  grid-template-columns:300px 1fr; gap:44px; background:#fff;
}
.show-row[data-kind="reprise"] .show-poster { width:100%; aspect-ratio:3/4; }
.show-row[data-kind="reprise"] .show-poster img {
  object-fit:contain; object-position:center; background:var(--cream);
}

.recent-shows-grid {
  display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px;
}
.recent-show-card {
  min-width:0; border:1px solid var(--line); border-radius:20px; overflow:hidden;
  background:white; display:flex; flex-direction:column; box-shadow:0 8px 24px rgba(15,23,32,.045);
}
.recent-show-image { aspect-ratio:4/3; overflow:hidden; background:var(--cream); }
.recent-show-image img { width:100%; height:100%; object-fit:cover; object-position:center top; }
.recent-show-placeholder {
  width:100%; height:100%; display:grid; place-items:center; padding:22px; text-align:center;
  background:linear-gradient(145deg,var(--yellow),#fff1ad);
}
.recent-show-placeholder strong {
  font-family:'Arial Narrow','Aptos Narrow',Arial,sans-serif; text-transform:uppercase;
  font-size:clamp(1.45rem,2.4vw,2rem); line-height:.95;
}
.detail-archive-placeholder { width:100%; max-width:460px; min-height:420px; }
.recent-show-body { padding:20px; display:flex; flex-direction:column; flex:1; }
.recent-show-body h3 {
  font-family:'Arial Narrow','Aptos Narrow',Arial,sans-serif; text-transform:uppercase;
  font-size:clamp(1.55rem,2.4vw,2.1rem); margin-bottom:7px;
}
.recent-show-body > p:last-of-type { flex:1; }
.recent-show-year {
  align-self:flex-start; padding:5px 9px; margin-bottom:10px; border-radius:999px;
  background:var(--mist-blue); color:var(--deep-teal); font-size:.73rem;
  font-weight:900; letter-spacing:.05em; text-transform:uppercase;
}
.recent-show-body .text-link { margin-top:12px; align-self:flex-start; color:var(--deep-teal); }

.history-timeline { display:flex; flex-direction:column; gap:18px; }
.history-year {
  display:grid; grid-template-columns:150px 1fr; gap:24px; align-items:start;
  padding:22px 0; border-top:1px solid #dfd5c7;
}
.history-year:first-child { border-top:0; padding-top:0; }
.history-year-label {
  position:sticky; top:135px; font-family:'Arial Narrow','Aptos Narrow',Arial,sans-serif;
  font-size:2rem; font-weight:900; letter-spacing:-.035em; color:var(--coral);
}
.history-year-shows {
  display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px;
}
.history-show {
  padding:16px 18px; border-radius:14px; background:rgba(255,255,255,.74);
  border:1px solid #e9dfd1;
}
.history-show h3 { margin:0 0 5px; font-size:1.12rem; }
.history-show p { margin:0; color:var(--muted); font-size:.92rem; }
.history-pending { color:var(--coral); font-weight:800; font-size:.82rem; }

@media (max-width: 1160px) {
  .show-row[data-kind="reprise"] { grid-template-columns:220px 1fr; gap:34px; }
}
@media (max-width: 900px) {
  .recent-shows-grid { grid-template-columns:1fr 1fr; }
  .history-year { grid-template-columns:1fr; gap:10px; }
  .history-year-label { position:static; }
}
@media (max-width: 680px) {
  .show-row[data-kind="reprise"] { grid-template-columns:1fr; gap:26px; }
  .recent-shows-grid, .history-year-shows { grid-template-columns:1fr; }
}

/* Nos spectacles — V0.13 */
.show-row[data-kind="creation"] {
  grid-template-columns:minmax(360px,44%) 1fr;
  align-items:start;
}
.show-row[data-kind="creation"] .show-poster.project-visual.filigree {
  width:100%;
  aspect-ratio:auto;
  align-self:start;
  display:block;
  padding:24px;
}
.show-row[data-kind="creation"] .show-poster.project-visual.filigree img {
  position:relative;
  display:block;
  width:100%;
  height:auto;
  object-fit:contain;
}

.recent-show-image {
  aspect-ratio:7/10;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:10px;
}
.recent-show-image img {
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center;
}

.generic-programming-cta { margin-top:24px; }
.generic-programming-cta h2 { font-size:clamp(1.45rem,2.5vw,2rem); }

.history-year-milestone .history-year-shows { grid-template-columns:1fr; }
.history-note {
  background:linear-gradient(135deg,#fff8df,#fffdf5);
  border-color:#f0e1ae;
}
.history-note p { max-width:72ch; line-height:1.65; }

@media (max-width:1160px) {
  .show-row[data-kind="creation"] { grid-template-columns:minmax(300px,42%) 1fr; }
}
@media (max-width:680px) {
  .show-row[data-kind="creation"] { grid-template-columns:1fr; }
  .show-row[data-kind="creation"] .show-poster.project-visual.filigree { padding:18px; }
}
