/* ============================================================
   PATRYNIZE — base styles (v1)
   Black & white, theatrical, with a single marquee-red accent.
============================================================ */
:root {
  --ink: #0d0d0f;
  --ink-soft: #5a5a62;
  --paper: #ffffff;
  --paper-2: #f4f3f0;
  --line: #e4e3de;
  --accent: #e02b1d;        /* marquee red */
  --accent-deep: #b71f14;
  --green: #1c7c4a;
  --stream: #6b3df0;
  --radius: 14px;
  --wrap: 1160px;
  --font-display: "Archivo Black", "Archivo", system-ui, sans-serif;
  --font-head: "Archivo", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(.22,.61,.36,1);
}

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

/* ===== Header ===== */
.site-head { background: var(--ink); color: #fff; position: sticky; top: 0; z-index: 50; }
.site-head__inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: inline-flex; flex-direction: column; align-items: stretch; gap: 3px; line-height: 1; }
.brand__top { font-family: var(--font-display); font-size: 22px; letter-spacing: 1px; color: #fff; text-transform: uppercase; }
.brand .dot { color: var(--accent); }
.brand__sub { display: block; background: #fff; color: var(--ink); font-family: var(--font-head); font-weight: 800; font-size: 9px; letter-spacing: 4px; text-transform: uppercase; text-align: center; padding: 3px 2px 2px; }
.site-head__right { display: flex; align-items: center; gap: 30px; }
.site-nav { display: flex; gap: 26px; }
.site-nav a { font-family: var(--font-head); font-weight: 600; font-size: 13px; letter-spacing: 1.4px; text-transform: uppercase; color: rgba(255,255,255,.72); transition: color .2s; }
.site-nav a:hover, .site-nav a.is-active { color: #fff; }
.nav-cta {
  font-family: var(--font-head); font-weight: 700; font-size: 13px; letter-spacing: 1px; text-transform: uppercase;
  background: var(--accent); color: #fff; padding: 9px 20px; border-radius: 999px; transition: background .2s;
}
.nav-cta:hover { background: var(--accent-deep); }
.nav-cta.is-active { background: var(--accent-deep); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: #fff; transition: .3s var(--ease); }

/* ===== Page hero ===== */
.tix-hero { background: var(--ink); color: #fff; padding: 56px 0 64px; position: relative; overflow: hidden; }
.tix-hero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 80% at 85% 10%, rgba(224,43,29,.22), transparent 60%); pointer-events: none; z-index: 2; }
.tix-hero .wrap { position: relative; z-index: 3; }
.tix-hero__kicker { font-family: var(--font-head); font-weight: 700; letter-spacing: 3px; text-transform: uppercase; font-size: 12px; color: var(--accent); margin-bottom: 14px; }
.tix-hero__title { font-family: var(--font-display); font-size: clamp(44px, 9vw, 96px); line-height: .92; text-transform: uppercase; letter-spacing: -1px; }
.tix-hero__sub { margin-top: 18px; max-width: 520px; color: rgba(255,255,255,.74); font-size: 17px; }

/* ===== Section ===== */
.section { padding: 56px 0; }
.section__label { font-family: var(--font-head); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; font-size: 13px; color: var(--ink-soft); margin-bottom: 22px; padding-bottom: 12px; border-bottom: 2px solid var(--ink); }

/* ===== Show list ===== */
.show-list { display: grid; gap: 20px; }
.show {
  display: grid; grid-template-columns: 132px 1fr auto; gap: 26px; align-items: center;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px; transition: box-shadow .25s var(--ease), transform .25s var(--ease), border-color .25s;
}
.show:hover { box-shadow: 0 18px 44px rgba(13,13,15,.10); transform: translateY(-2px); border-color: transparent; }
.show__poster { width: 132px; height: 168px; border-radius: 8px; overflow: hidden; background: var(--paper-2); flex-shrink: 0; }
.show__poster img { width: 100%; height: 100%; object-fit: cover; }
.show__poster-fallback { width: 100%; height: 100%; display: grid; place-items: center; background: linear-gradient(150deg, #16161a, #2b2b33); }
.show__poster-fallback span { font-family: var(--font-display); color: #fff; font-size: 34px; letter-spacing: 1px; }

.show__top { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; flex-wrap: wrap; }
.show__badge { font-family: var(--font-head); font-weight: 700; font-size: 11px; letter-spacing: 1.2px; text-transform: uppercase; padding: 5px 11px; border-radius: 999px; color: #fff; background: var(--ink-soft); }
.show__badge.is-onsale { background: var(--accent); }
.show__badge.is-stream { background: var(--stream); }
.show__badge.is-free { background: var(--green); }
.show__badge.is-soldout { background: #8a8a92; }
.show__badge.is-announced { background: #fff; color: var(--ink); border: 1px solid var(--line); }
.show__badge.is-past { background: var(--paper-2); color: var(--ink-soft); }
.show__code { font-family: var(--font-head); font-size: 11px; letter-spacing: .6px; color: var(--ink-soft); }
.show__code strong { color: var(--accent); letter-spacing: 1px; }

.show__title { font-family: var(--font-head); font-weight: 800; font-size: 26px; line-height: 1.05; }
.show__blurb { color: var(--ink-soft); font-size: 14.5px; margin-top: 6px; max-width: 46ch; }
.show__meta { display: flex; flex-wrap: wrap; gap: 6px 16px; margin-top: 12px; }
.show__meta span { font-family: var(--font-head); font-weight: 600; font-size: 13px; color: var(--ink); }
.show__meta span + span { color: var(--ink-soft); font-weight: 500; }

.show__actions { display: flex; flex-direction: column; gap: 10px; min-width: 168px; }
.show__btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: 14px; letter-spacing: .3px;
  padding: 12px 18px; border-radius: 999px; border: 1.5px solid var(--ink); color: var(--ink);
  transition: all .2s var(--ease); white-space: nowrap;
}
.show__btn:hover { background: var(--ink); color: #fff; }
.show__btn--primary { background: var(--accent); border-color: var(--accent); color: #fff; }
.show__btn--primary:hover { background: var(--accent-deep); border-color: var(--accent-deep); }
.show__btn-ic { font-size: 13px; }

.show--past { opacity: .72; }
.show--past:hover { opacity: 1; }

#noShows { color: var(--ink-soft); font-size: 17px; padding: 20px 0; }

/* ===== Past archive ===== */
.past-wrap { margin-top: 56px; }

/* ===== Footer ===== */
.site-foot { background: var(--ink); color: rgba(255,255,255,.6); padding: 48px 0 30px; }
.site-foot__inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.site-foot__inner .brand__top { font-size: 18px; }
.site-foot__inner .brand__sub { font-size: 8px; letter-spacing: 3px; }
.site-foot__right { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.site-foot .site-nav { flex-wrap: wrap; row-gap: 8px; }
.site-foot__social { display: inline-flex; color: rgba(255,255,255,.6); transition: color .2s; }
.site-foot__social:hover { color: #fff; }
.site-foot small { display: block; margin-top: 22px; font-size: 12px; color: rgba(255,255,255,.4); }

/* ===== Generic page hero (inner pages) ===== */
.page-hero { background: var(--ink); color: #fff; padding: 70px 0 76px; position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(55% 80% at 88% 8%, rgba(224,43,29,.20), transparent 60%); pointer-events: none; z-index: 2; }
.page-hero .wrap { position: relative; z-index: 3; }

/* ===== Homepage hero slider ===== */
.page-hero--slider { padding: 120px 0 130px; min-height: 560px; display: flex; align-items: center; }
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0; background-size: cover; background-position: center 28%;
  opacity: 0; transition: opacity 1.4s ease; filter: grayscale(30%) brightness(.78);
}
.hero-slide.is-active { opacity: 1; }
.page-hero--slider::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(10,10,12,.55) 0%, rgba(10,10,12,.72) 55%, rgba(10,10,12,.92) 100%);
}
.hero-slides__dots { position: absolute; left: 0; right: 0; bottom: 26px; z-index: 3; display: flex; justify-content: center; gap: 10px; }
.hero-slides__dot {
  width: 9px; height: 9px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.6); background: transparent;
  padding: 0; cursor: pointer; transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.hero-slides__dot:hover { border-color: #fff; }
.hero-slides__dot.is-active { background: var(--accent); border-color: var(--accent); transform: scale(1.2); }
@media (max-width: 700px) { .page-hero--slider { padding: 90px 0 100px; min-height: 480px; } }
@media (prefers-reduced-motion: reduce) { .hero-slide { transition: none; } }

/* ===== Static hero background image (inner pages) — used on .page-hero and .tix-hero ===== */
.page-hero:has(.hero-bg), .tix-hero:has(.hero-bg) { padding-top: 110px; padding-bottom: 90px; min-height: 380px; display: flex; align-items: center; }
.hero-bg { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center 30%; filter: grayscale(30%) brightness(.6); }
.hero-scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(10,10,12,.45) 0%, rgba(10,10,12,.82) 100%); }
@media (max-width: 700px) { .page-hero:has(.hero-bg), .tix-hero:has(.hero-bg) { padding-top: 90px; padding-bottom: 70px; min-height: 320px; } }

.page-hero__kicker { font-family: var(--font-head); font-weight: 700; letter-spacing: 3px; text-transform: uppercase; font-size: 12px; color: var(--accent); margin-bottom: 14px; }
.page-hero__title { font-family: var(--font-display); font-size: clamp(42px, 8vw, 84px); line-height: .94; text-transform: uppercase; letter-spacing: -1px; }
.page-hero__sub { margin-top: 18px; max-width: 600px; color: rgba(255,255,255,.74); font-size: 18px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }

/* ===== Buttons (page-level) ===== */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 700; font-size: 15px; padding: 14px 26px; border-radius: 999px; border: 1.5px solid currentColor; transition: all .2s var(--ease); cursor: pointer; }
.btn--primary { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-deep); border-color: var(--accent-deep); }
.btn--ghost-light { color: #fff; }
.btn--ghost-light:hover { background: #fff; color: var(--ink); }
.btn--dark { background: var(--ink); border-color: var(--ink); color: #fff; }
.btn--dark:hover { background: #000; }

/* ===== Prose / mission ===== */
.prose { max-width: 760px; }
.prose p { font-size: 18px; line-height: 1.7; color: #2a2a2f; margin-bottom: 20px; }
.lead { font-family: var(--font-head); font-weight: 600; font-size: clamp(22px, 3vw, 30px); line-height: 1.3; color: var(--ink); margin-bottom: 26px; }

/* ===== CTA marquee band ===== */
.cta-band { background: var(--accent); color: #fff; }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding-block: 48px; }
.cta-band h2 { font-family: var(--font-display); font-size: clamp(26px, 4vw, 40px); text-transform: uppercase; line-height: 1; }
.cta-band p { color: rgba(255,255,255,.85); margin-top: 8px; }

/* ===== "What we make" tiles ===== */
.make-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.make { border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px; }
.make h3 { font-family: var(--font-head); font-weight: 800; font-size: 19px; margin-bottom: 6px; }
.make p { color: var(--ink-soft); font-size: 14px; }

/* ===== Stats ===== */
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); padding: 30px 0; }
.stat__num { font-family: var(--font-display); font-size: clamp(34px, 5vw, 52px); line-height: 1; }
.stat__label { color: var(--ink-soft); font-size: 14px; margin-top: 6px; }

/* ===== Quotes ===== */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote { background: var(--paper-2); border-radius: var(--radius); padding: 30px 26px; position: relative; }
.quote::before { content: "\201C"; font-family: var(--font-display); color: var(--accent); font-size: 64px; line-height: 0; position: absolute; top: 28px; left: 18px; opacity: .25; }
.quote p { position: relative; font-size: 16px; line-height: 1.55; color: var(--ink); }
.quote cite { display: block; margin-top: 14px; font-style: normal; font-size: 13px; color: var(--ink-soft); font-family: var(--font-head); font-weight: 600; }

/* ===== Team / board ===== */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.member { border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.member__avatar { width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center; background: var(--ink); color: #fff; font-family: var(--font-display); font-size: 20px; margin-bottom: 16px; overflow: hidden; }
.member__avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.member__name { font-family: var(--font-head); font-weight: 800; font-size: 19px; }
.member__role { color: var(--accent); font-family: var(--font-head); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; margin: 2px 0 12px; }
.member__bio { color: var(--ink-soft); font-size: 14.5px; line-height: 1.55; }

/* ===== Type filter pills ===== */
.type-filter { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.type-pill {
  font-family: var(--font-head); font-weight: 700; font-size: 13px; letter-spacing: .5px;
  padding: 8px 18px; border-radius: 999px; cursor: pointer;
  border: 1.5px solid var(--line); background: transparent; color: var(--ink-soft);
  transition: background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.type-pill:hover { border-color: var(--ink); color: var(--ink); }
.type-pill.is-active { background: var(--accent); border-color: var(--accent); color: #fff; }
.type-pill--license { border-color: var(--accent); color: var(--accent); }
.type-pill--license:hover { border-color: var(--accent-deep); color: var(--accent-deep); }
.type-pill--license.is-active { color: #fff; }

/* ===== Poster grid (productions / podcasts) ===== */
.poster-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: start; }
.poster-grid--past { grid-template-columns: repeat(5, 1fr); gap: 14px; }
.tile { display: flex; flex-direction: column; border-radius: 10px; overflow: hidden; border: 1px solid var(--line); background: var(--paper); transition: transform .2s var(--ease), box-shadow .2s; }
.tile:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(13,13,15,.12); }
.tile__art { position: relative; flex: none; height: 300px; overflow: hidden; background: linear-gradient(150deg, #16161a, #2b2b33); text-align: center; }
.tile__art:not(:has(img)) { display: grid; place-items: center; padding: 16px; }
.tile__art span { font-family: var(--font-display); color: #fff; font-size: clamp(15px, 1.4vw, 20px); line-height: 1.05; text-transform: uppercase; }
.tile__art img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.tile__cap { padding: 12px 14px; }
.tile__cap h3 { font-family: var(--font-head); font-weight: 700; font-size: 15px; }
.tile__cap-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-top: 3px; }
.tile__cap-meta span { font-size: 12px; color: var(--ink-soft); }
.tile__cap-meta span.tile__license {
  display: inline-block; padding: 3px 9px; border-radius: 999px; white-space: nowrap;
  font-family: var(--font-head); font-weight: 800; font-size: 9.5px; letter-spacing: .5px; text-transform: uppercase;
  color: #fff; background: var(--accent);
}
@media (max-width: 900px) { .tile__art { height: 240px; } }
@media (max-width: 640px) { .tile__art { height: 220px; } }
.poster-grid--past .tile__art span { font-size: clamp(12px, 1.1vw, 15px); }

/* ===== Podcast cards ===== */
.pod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pod { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.pod__art { aspect-ratio: 1; display: grid; place-items: center; background: linear-gradient(150deg, #1c1430, #3a1d5e); }
.pod__art span { font-family: var(--font-display); color: #fff; font-size: 30px; text-transform: uppercase; text-align: center; padding: 16px; }
.pod__art img { width: 100%; height: 100%; object-fit: cover; }
.pod__body { padding: 22px; }
.pod__body h3 { font-family: var(--font-head); font-weight: 800; font-size: 20px; }
.pod__body p { color: var(--ink-soft); font-size: 14px; margin: 8px 0 16px; }

/* ===== Podcast detail page ===== */
.back-link { display: inline-block; font-family: var(--font-head); font-weight: 700; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 26px; }
.back-link:hover { color: var(--accent); }
.pod-detail { display: grid; grid-template-columns: 300px 1fr; gap: 44px; align-items: start; }
.pod-detail__cover-wrap { display: flex; flex-direction: column; gap: 14px; }
.pod-detail__cover { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.pod-detail__cover img { width: 100%; display: block; }
.pod-detail__kicker { font-family: var(--font-head); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; font-size: 12px; color: var(--accent); }
.pod-detail__body h1 { font-family: var(--font-display); font-size: clamp(32px, 4.5vw, 52px); text-transform: uppercase; line-height: .95; margin: 6px 0 0; }
.pod-detail__tag { font-style: italic; color: var(--ink-soft); margin: 18px 0; padding-left: 16px; border-left: 3px solid var(--accent); }
.pod-detail__body > p { font-size: 17px; line-height: 1.66; color: #2a2a2f; margin-bottom: 16px; }
.pod-detail__body .btn { margin-top: 12px; }
.pod-player { margin-top: 50px; }
.pod-player h2 { font-family: var(--font-head); font-weight: 800; text-transform: uppercase; letter-spacing: 1px; font-size: 14px; color: var(--ink-soft); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--ink); }
.pod-player iframe { width: 100%; border: 0; border-radius: var(--radius); display: block; }
@media (max-width: 760px) { .pod-detail { grid-template-columns: 1fr; } .pod-detail__cover { max-width: 260px; } .pod-detail__cover-wrap { max-width: 260px; } }

/* Production detail extras */
.license-callout {
  display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
  margin: 0; padding: 16px 18px; border: 2px solid var(--accent); border-radius: var(--radius);
  background: rgba(224, 43, 29, .06);
}
.license-callout__label { font-family: var(--font-head); font-weight: 800; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); margin-bottom: 3px; }
.license-callout__text { color: var(--ink-soft); font-size: 14.5px; }
.license-callout .btn { width: 100%; justify-content: center; }
.prod-award { font-family: var(--font-head); font-weight: 700; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; color: var(--accent); margin: 8px 0 14px; }
.prod-meta { display: flex; flex-wrap: wrap; gap: 6px 20px; margin: 6px 0 18px; font-size: 14.5px; color: var(--ink-soft); }
.prod-meta strong { color: var(--ink); font-family: var(--font-head); font-weight: 700; }
.prod-credits { margin-top: 24px; display: grid; gap: 18px; }
.prod-credits h4 { font-family: var(--font-head); font-weight: 800; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink); margin-bottom: 8px; padding-bottom: 6px; border-bottom: 1px solid var(--line); }
.prod-credits ul { list-style: none; display: grid; gap: 5px; }
.prod-credits li { color: var(--ink-soft); font-size: 14.5px; }
.prod-quotes { margin-top: 24px; display: grid; gap: 12px; }
.prod-quote { font-style: italic; color: var(--ink); padding-left: 16px; border-left: 3px solid var(--accent); font-size: 15px; line-height: 1.5; }

/* Production media (videos + photos) */
.prod-media { margin-top: 52px; }
.prod-videos { display: grid; gap: 20px; margin-bottom: 20px; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.prod-video { position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden; background: #000; }
.prod-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.prod-photos { columns: 3 220px; column-gap: 12px; }
.prod-photos .g-item { margin: 0 0 12px; }

/* ===== Gallery ===== */
.gallery-grid { columns: 4 220px; column-gap: 14px; }
.g-item { display: block; width: 100%; padding: 0; border: 0; background: none; cursor: zoom-in; margin: 0 0 14px; break-inside: avoid; border-radius: 8px; overflow: hidden; line-height: 0; }
.g-item img { width: 100%; display: block; transition: opacity .2s var(--ease), transform .3s var(--ease); }
.g-item:hover img { opacity: .82; }

/* home gallery teaser */
.gal-teaser { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gal-teaser a { border-radius: 8px; overflow: hidden; aspect-ratio: 1; }
.gal-teaser img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s var(--ease); }
.gal-teaser a:hover img { transform: scale(1.05); }

/* ===== Lightbox ===== */
.lightbox { position: fixed; inset: 0; z-index: 200; display: none; place-items: center; background: rgba(8,9,12,.95); padding: 30px; cursor: zoom-out; }
.lightbox.open { display: grid; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 8px; box-shadow: 0 30px 80px rgba(0,0,0,.6); }
.lightbox__close { position: absolute; top: 16px; right: 26px; background: none; border: 0; color: #fff; font-size: 40px; line-height: 1; cursor: pointer; opacity: .85; }
.lightbox__close:hover { opacity: 1; }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 54px; height: 54px; display: grid; place-items: center; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2); border-radius: 50%; color: #fff; font-size: 28px; cursor: pointer; opacity: .9; transition: background .2s; }
.lightbox__nav:hover { background: rgba(255,255,255,.18); }
.lightbox__prev { left: 22px; }
.lightbox__next { right: 22px; }
@media (max-width: 700px) { .lightbox__nav { width: 44px; height: 44px; font-size: 24px; } .lightbox__prev { left: 10px; } .lightbox__next { right: 10px; } .gal-teaser { grid-template-columns: repeat(2,1fr); } }

/* ===== Contact ===== */
.contact { background: var(--ink); color: rgba(255,255,255,.82); }
.contact__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.contact__text h2 { font-family: var(--font-display); font-size: clamp(30px, 4vw, 46px); text-transform: uppercase; color: #fff; line-height: .95; }
.contact__text p { margin-top: 16px; max-width: 42ch; }
.contact__meta { margin-top: 22px; font-family: var(--font-head); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; font-size: 13px; color: #fff; }
.contact__form { display: grid; gap: 16px; }
.contact__form label { display: grid; gap: 6px; font-family: var(--font-head); font-weight: 600; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,.6); }
.contact__form input, .contact__form textarea { background: #1b1b20; border: 1px solid #2c2c33; border-radius: 10px; padding: 13px 15px; color: #fff; font: inherit; font-size: 15px; transition: border-color .2s var(--ease); }
.contact__form input::placeholder, .contact__form textarea::placeholder { color: #6b6b74; }
.contact__form input:focus, .contact__form textarea:focus { outline: none; border-color: var(--accent); }
.btn--block { width: 100%; justify-content: center; cursor: pointer; }
.form-success { text-align: center; padding: 32px 12px; }
.form-success__icon { display: inline-grid; place-items: center; width: 56px; height: 56px; border-radius: 50%; background: var(--accent); color: #fff; font-size: 28px; margin-bottom: 16px; }
.form-success h3 { color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 22px; margin-bottom: 8px; }
.form-success p { color: rgba(255,255,255,.7); }
.form-error { margin-top: 12px; color: #ff9b9b; font-size: 14px; }
@media (max-width: 760px) { .contact__grid { grid-template-columns: 1fr; gap: 32px; } }

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .site-head__inner { position: relative; }
  .brand { position: relative; z-index: 80; }
  .site-head__right { position: relative; z-index: 70; gap: 14px; }
  .site-head .site-nav {
    position: fixed; inset: 0; z-index: 60; width: 100%; height: 100dvh;
    background: var(--ink); flex-direction: column; justify-content: center; align-items: center; gap: 28px;
    transform: translateX(100%); transition: transform .35s var(--ease); padding: 100px 40px 40px;
    overflow-y: auto; display: flex;
  }
  .site-head.open .site-nav { transform: none; }
  .site-head .site-nav a { color: #fff; font-size: 22px; }
  .nav-cta { position: relative; z-index: 65; }
  .nav-toggle { display: flex; position: relative; z-index: 65; }
  .site-head.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .site-head.open .nav-toggle span:nth-child(2) { opacity: 0; }
  .site-head.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  body.nav-open { overflow: hidden; }

  .show { grid-template-columns: 92px 1fr; grid-template-areas: "poster body" "actions actions"; gap: 16px; }
  .show__poster { width: 92px; height: 124px; grid-area: poster; }
  .show__body { grid-area: body; }
  .show__actions { grid-area: actions; flex-direction: row; flex-wrap: wrap; min-width: 0; }
  .show__btn { flex: 1; min-width: 140px; }
  .show__title { font-size: 21px; }
}

@media (max-width: 980px) {
  .make-grid { grid-template-columns: repeat(2, 1fr); }
  .quote-grid, .team-grid, .pod-grid { grid-template-columns: 1fr 1fr; }
  .poster-grid { grid-template-columns: repeat(3, 1fr); }
  .poster-grid--past { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 640px) {
  .make-grid, .quote-grid, .team-grid, .pod-grid, .stat-row { grid-template-columns: 1fr; }
  .poster-grid, .poster-grid--past { grid-template-columns: repeat(2, 1fr); }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
}
