/* =========================================
   Maître Didian Poulet — Comedy Koch mit Huhn
   Shared stylesheet
   ========================================= */

:root {
  --bordeaux: #7B2C2C;
  --bordeaux-deep: #5C1F1F;
  --champagne: #EBE0CC;
  --champagne-light: #F4ECDA;
  --champagne-dark: #D9CCB3;
  --ink: #1A1A1A;
  --ink-soft: #3A2E2A;
  --gold: #C9A961;
  --gold-deep: #A88A45;
  --paper: #F8F1DF;

  --serif: "Playfair Display", "DM Serif Display", Georgia, serif;
  --sans: "Inter", "Source Sans 3", -apple-system, BlinkMacSystemFont, sans-serif;
  --script: "Caveat", "Brush Script MT", cursive;

  --container: 1240px;
  --container-narrow: 880px;
  --radius: 2px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

/* Anchor scroll offset for sticky nav */
section[id] { scroll-margin-top: 80px; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--champagne);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: var(--bordeaux); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-deep); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 .4em;
  color: var(--ink);
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.2rem, 5.5vw, 4.5rem); font-weight: 500; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }
p { margin: 0 0 1em; text-wrap: pretty; }
.lead { font-size: 1.15rem; line-height: 1.7; color: var(--ink-soft); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.container--narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 28px; }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--tight { padding: clamp(40px, 6vw, 80px) 0; }

/* ---------- Eyebrow / micro-labels ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--bordeaux);
  font-weight: 500;
  margin: 0 0 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before, .eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--bordeaux);
  opacity: .5;
}
.eyebrow--left::after { display: none; }
.eyebrow--left::before { display: none; }
.eyebrow--left { padding-left: 0; }

.script {
  font-family: var(--script);
  color: var(--bordeaux);
  font-weight: 500;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--sans);
  font-size: .92rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid var(--bordeaux);
  background: var(--bordeaux);
  color: var(--champagne-light);
  cursor: pointer;
  transition: all .2s ease;
  border-radius: var(--radius);
}
.btn:hover { background: var(--bordeaux-deep); color: var(--champagne-light); transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--bordeaux);
}
.btn--ghost:hover { background: var(--bordeaux); color: var(--champagne-light); }
.btn--gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.btn--gold:hover { background: var(--gold-deep); color: var(--ink); }

/* ---------- Navigation ---------- */
.nav {
  position: static;
  background: var(--champagne);
  border-bottom: 1px solid rgba(123, 44, 44, 0.18);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 0;
}
.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--bordeaux);
  border-radius: 50%;
  color: var(--bordeaux);
  background: var(--paper);
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-name {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: .01em;
}
.brand-sub {
  font-size: .65rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--bordeaux);
  margin-top: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
  list-style: none;
  padding: 0;
}
.nav-links a {
  font-size: .88rem;
  color: var(--ink);
  font-weight: 500;
  position: relative;
  padding: 6px 0;
}
.nav-links a:hover { color: var(--bordeaux); }
.nav-links a.active { color: var(--bordeaux); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--gold);
}

.nav-cta {
  padding: 10px 18px;
  font-size: .82rem;
  letter-spacing: .1em;
}

/* Programm submenu */
.has-submenu { position: relative; }
.has-submenu > a::after {
  content: "▾";
  font-size: .6em;
  margin-left: 4px;
  opacity: .6;
}
.submenu {
  position: absolute;
  top: calc(100% + 6px);
  left: -16px;
  background: var(--paper);
  border: 1px solid rgba(123, 44, 44, 0.2);
  list-style: none;
  margin: 0;
  padding: 10px 0;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: all .2s;
  box-shadow: 0 16px 40px rgba(26,26,26,.08);
}
.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.submenu li { display: block; }
.submenu a {
  display: block;
  padding: 10px 20px;
  font-size: .88rem;
  font-family: var(--serif);
  font-style: italic;
}
.submenu a:hover { background: var(--champagne-light); }

/* Mobile nav */
.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 1px solid var(--bordeaux);
  color: var(--bordeaux);
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

@media (max-width: 980px) {
  .nav-links {
    position: fixed;
    inset: 73px 0 0;
    background: var(--champagne);
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 28px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform .3s ease;
    overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.1rem; padding: 12px 0; width: 100%; border-bottom: 1px solid rgba(123,44,44,.1); }
  .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0 0 0 16px;
    min-width: 0;
  }
  .submenu a { font-size: 1rem; padding: 8px 0; }
  .nav-cta { margin-top: 16px; }
  .nav-toggle { display: inline-flex; }
}

/* ---------- Decorative dividers ---------- */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 32px 0;
  color: var(--bordeaux);
}
.ornament::before, .ornament::after {
  content: "";
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--bordeaux) 40%, var(--bordeaux) 60%, transparent);
  opacity: .5;
}
.ornament svg { opacity: .8; }

.rule {
  border: 0;
  border-top: 1px solid rgba(123, 44, 44, 0.18);
  margin: 0;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(60px, 8vw, 100px) 0 clamp(60px, 8vw, 110px);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ---------- Image placeholder ---------- */
.ph {
  position: relative;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(123,44,44,.06) 0 12px,
      rgba(123,44,44,.02) 12px 24px
    ),
    var(--paper);
  border: 1px solid rgba(123,44,44,.2);
  display: grid;
  place-items: center;
  color: var(--bordeaux);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-align: center;
  padding: 24px;
  overflow: hidden;
}
.ph::before, .ph::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 1px solid var(--bordeaux);
  opacity: .5;
}
.ph::before { top: 10px; left: 10px; border-right: 0; border-bottom: 0; }
.ph::after { bottom: 10px; right: 10px; border-left: 0; border-top: 0; }
.ph .ph-label { max-width: 240px; line-height: 1.5; }
.ph .ph-cap {
  display: block;
  margin-top: 8px;
  font-family: var(--serif);
  font-style: italic;
  font-size: .9rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-soft);
}

/* Real photo with caption */
.figure {
  margin: 0;
}
.figure img {
  width: 100%;
  height: auto;
  border: 1px solid rgba(123,44,44,.2);
  display: block;
}
.figure figcaption {
  margin-top: 12px;
  font-family: var(--script);
  font-size: 1.5rem;
  color: var(--bordeaux);
  text-align: right;
}

.ph--portrait { aspect-ratio: 4/5; }
.ph--landscape { aspect-ratio: 4/3; }
.ph--wide { aspect-ratio: 16/9; }
.ph--square { aspect-ratio: 1/1; }

/* ---------- Badge / Award ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px 10px 14px;
  border: 1px solid var(--gold);
  background: rgba(201, 169, 97, 0.08);
  color: var(--ink-soft);
  font-size: .82rem;
  line-height: 1.4;
  border-radius: var(--radius);
}
.badge-medal {
  flex-shrink: 0;
  color: var(--gold-deep);
}

/* ---------- Hero: Medaille + Foto unter dem Text ---------- */
.hero-text {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.hero-text .subline {
  margin-left: auto;
  margin-right: auto;
}
.hero-images {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 52px;
  margin-top: 60px;
  flex-wrap: wrap;
}
.hero-images .hero-photo {
  flex: 0 1 580px;
  min-width: 280px;
  margin: 0;
}

/* ---------- Gold medal (award) ---------- */
.medal-block {
  flex: 0 0 auto;
  width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.medal-img {
  width: 128px;
  height: auto;
  filter: drop-shadow(0 12px 20px rgba(26,26,26,.28));
}
.medal-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.medal-label {
  font-family: var(--sans);
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
}
.medal-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.3;
  color: var(--bordeaux);
}

/* ---------- Cards ---------- */
.card {
  background: var(--paper);
  border: 1px solid rgba(123,44,44,.16);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: all .25s ease;
}
.card:hover {
  border-color: var(--bordeaux);
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(26,26,26,.06);
}
.card-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold-deep);
}
.card h3 { margin: 0; }
.card-link {
  margin-top: auto;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--bordeaux);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.card-link::after {
  content: "→";
  transition: transform .2s;
}
.card:hover .card-link::after { transform: translateX(4px); }

/* ---------- Program tiles grid ---------- */
.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

/* ---------- Pull quote ---------- */
.pullquote {
  margin: clamp(40px, 6vw, 64px) auto;
  max-width: 760px;
  padding: 0 28px;
  text-align: center;
  position: relative;
}
.pullquote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  line-height: 1.3;
  color: var(--bordeaux);
  margin: 0;
}
.pullquote::before {
  content: "❝";
  display: block;
  font-family: var(--serif);
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

/* ---------- Section header ---------- */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-head .eyebrow {
  justify-content: center;
}

/* ---------- Two-column layout ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
@media (max-width: 820px) {
  .two-col { grid-template-columns: 1fr; }
}

/* ---------- Aside boxes (Eckdaten, Hinweise) ---------- */
.aside-box {
  background: var(--paper);
  border-left: 3px solid var(--gold);
  padding: 28px 32px;
  margin: 32px 0;
}
.aside-box h3 {
  font-size: 1.1rem;
  margin: 0 0 16px;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--bordeaux);
  font-weight: 600;
}
.aside-box ol, .aside-box ul {
  margin: 0;
  padding-left: 20px;
}
.aside-box li { margin-bottom: 8px; }
.aside-box li:last-child { margin-bottom: 0; }

.note-box {
  background: rgba(201, 169, 97, 0.1);
  border: 1px dashed var(--gold);
  padding: 18px 22px;
  font-size: .9rem;
  color: var(--ink-soft);
  margin: 24px 0;
}
.note-box strong { color: var(--bordeaux); }

/* ---------- Downloads ---------- */
.downloads {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0;
}
.download {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  border: 1px solid rgba(123,44,44,.2);
  background: var(--paper);
  text-decoration: none;
  color: var(--ink);
  transition: all .2s;
}
.download:hover {
  border-color: var(--bordeaux);
  background: var(--champagne-light);
}
.download-icon {
  color: var(--bordeaux);
  flex-shrink: 0;
}
.download-meta {
  flex: 1;
  min-width: 0;
}
.download-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
}
.download-sub {
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: .7;
}
.download-arrow {
  color: var(--bordeaux);
  font-family: ui-monospace, monospace;
}

/* ---------- EN box ---------- */
.en-box {
  background: var(--ink);
  color: var(--champagne);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.en-box .flag {
  font-size: 1.4rem;
}
.en-box h4 {
  margin: 0;
  color: var(--champagne);
  font-family: var(--serif);
  font-style: italic;
}
.en-box a {
  color: var(--gold);
  font-weight: 500;
  text-transform: uppercase;
  font-size: .82rem;
  letter-spacing: .12em;
}

/* ---------- Logo wall ---------- */
.logo-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1px;
  background: rgba(123,44,44,.15);
  border: 1px solid rgba(123,44,44,.15);
}
.logo-cell {
  background: var(--paper);
  aspect-ratio: 4/3;
  display: grid;
  place-items: center;
  padding: 20px;
  text-align: center;
  font-family: var(--serif);
  font-size: .95rem;
  color: var(--ink-soft);
  filter: grayscale(1) contrast(0.9);
  transition: all .3s;
  cursor: default;
  line-height: 1.3;
}
.logo-cell:hover {
  filter: none;
  color: var(--bordeaux);
  background: var(--champagne-light);
}
.logo-cell em {
  display: block;
  font-style: normal;
  font-family: var(--sans);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 6px;
  opacity: .8;
}

/* ---------- Galleries ---------- */
.gallery-masonry {
  columns: 3;
  column-gap: 16px;
}
.gallery-masonry .ph {
  margin-bottom: 16px;
  break-inside: avoid;
}
.gallery-masonry .ph:nth-child(3n+1) { aspect-ratio: 4/5; }
.gallery-masonry .ph:nth-child(3n+2) { aspect-ratio: 4/3; }
.gallery-masonry .ph:nth-child(3n+3) { aspect-ratio: 1/1; }
@media (max-width: 900px) {
  .gallery-masonry { columns: 2; }
}
@media (max-width: 560px) {
  .gallery-masonry { columns: 1; }
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: var(--champagne-dark);
  padding: 80px 0 32px;
  margin-top: 0;
}
.footer a { color: var(--champagne); }
.footer a:hover { color: var(--gold); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(235,224,204,.15);
}
.footer-grid h4 {
  color: var(--gold);
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0 0 18px;
}
.footer-grid p, .footer-grid li {
  font-size: .92rem;
  line-height: 1.7;
  margin: 0 0 4px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-brand h3 {
  color: var(--champagne);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  margin: 0 0 8px;
}
.footer-disclaimer {
  max-width: 900px;
  margin: 0 auto 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(235,224,204,.15);
}
.footer-disclaimer h4 {
  color: var(--gold);
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0 0 16px;
}
.footer-disclaimer p {
  font-size: .82rem;
  line-height: 1.7;
  margin: 0 0 12px;
  color: rgba(235,224,204,.62);
}
.footer-disclaimer p:last-child { margin-bottom: 0; }
.footer-disclaimer strong { color: rgba(235,224,204,.85); font-weight: 600; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 32px;
  font-size: .8rem;
  color: rgba(235,224,204,.6);
}
.footer-bottom .script { color: var(--gold); font-size: 1.4rem; }
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-block {
  font-family: var(--serif);
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--ink);
}
.contact-block strong {
  display: block;
  font-size: .72rem;
  font-family: var(--sans);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--bordeaux);
  margin-top: 24px;
  font-weight: 600;
}
.contact-block strong:first-child { margin-top: 0; }
@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- Hero left text ---------- */
.hero-eyebrow {
  font-size: .8rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--bordeaux);
  margin-bottom: 24px;
  font-weight: 500;
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  font-style: italic;
  margin-bottom: 8px;
}
.hero .sub {
  font-family: var(--script);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--bordeaux);
  margin-bottom: 32px;
  line-height: 1;
}
.hero .subline {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 32px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

/* ---------- Misc ---------- */
.kicker {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--bordeaux);
}
.muted { color: var(--ink-soft); opacity: .8; }
.center { text-align: center; }

.page-head {
  padding: clamp(56px, 7vw, 100px) 0 clamp(32px, 4vw, 48px);
  text-align: center;
  border-bottom: 1px solid rgba(123,44,44,.15);
}
.page-head h1 {
  font-style: italic;
  margin-bottom: 8px;
}
.page-head .sub {
  font-family: var(--script);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--bordeaux);
}
.page-head .lead {
  margin-top: 18px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Acts list (Everybody is a Star) ---------- */
.acts {
  display: grid;
  gap: 32px;
  margin-top: 40px;
}
.act {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: start;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(123,44,44,.15);
}
.act:last-child { border-bottom: 0; padding-bottom: 0; }
.act-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold-deep);
}
.act-num .big {
  display: block;
  font-size: 4rem;
  color: var(--bordeaux);
  font-style: normal;
  line-height: 1;
  margin-top: 4px;
}
.act h3 { margin-bottom: 12px; }
@media (max-width: 700px) {
  .act { grid-template-columns: 1fr; gap: 12px; }
  .act-num .big { font-size: 3rem; display: inline-block; margin-right: 12px; }
}

/* ---------- Credits list ---------- */
.credits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 24px;
}
.credit {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px dotted rgba(123,44,44,.25);
  align-items: baseline;
}
.credit-role {
  font-family: var(--serif);
  font-style: italic;
  color: var(--bordeaux);
}
.credit-link {
  font-size: .85rem;
  color: var(--ink-soft);
}
@media (max-width: 700px) {
  .credit { grid-template-columns: 1fr; gap: 2px; padding: 12px 0; }
}

/* ---------- Video element ---------- */
video.video-ph {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  cursor: pointer;
}

/* ---------- Video placeholder ---------- */
.video-ph {
  aspect-ratio: 16/9;
  background: var(--ink);
  color: var(--champagne);
  display: grid;
  place-items: center;
  position: relative;
  cursor: pointer;
}
.video-ph::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.02) 0 12px, transparent 12px 24px);
}
.play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gold);
  display: grid;
  place-items: center;
  color: var(--ink);
  position: relative;
  z-index: 2;
}
.video-meta {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
}

/* ---------- Bordeaux block section ---------- */
.section--bordeaux {
  background: var(--bordeaux);
  color: var(--champagne-light);
}
.section--bordeaux h2 { color: var(--champagne); }
.section--bordeaux .eyebrow { color: var(--gold); }
.section--bordeaux .eyebrow::before, .section--bordeaux .eyebrow::after { background: var(--gold); }

.section--ink {
  background: var(--ink);
  color: var(--champagne-dark);
}
.section--ink h2, .section--ink h3 { color: var(--champagne); }

/* ---------- Run-on text body sections ---------- */
.prose {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink);
  max-width: 720px;
  margin: 0 auto;
}
.prose p { margin-bottom: 1.2em; }
.prose .first-letter::first-letter,
.prose > p:first-of-type::first-letter {
  font-family: var(--serif);
  font-size: 4.2rem;
  float: left;
  line-height: .9;
  margin: 6px 12px 0 0;
  color: var(--bordeaux);
}

/* Stage / List items */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.tag {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid rgba(123,44,44,.3);
  border-radius: 99px;
  color: var(--bordeaux);
  background: var(--paper);
}

/* ============ VIDEO LAZY LOAD ============ */
.video-lazy { cursor:default }
.video-play-btn svg circle { transition: opacity .15s }
.video-play-btn:hover svg circle { opacity: .7 }
.video-play-btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; border-radius: 50% }
