@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,700;0,800;1,700;1,800&display=swap');

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; }

/* ── Tokens ── */
:root {
  --blue:    #0A28FF;
  --coral:   #FF3251;
  --yellow:  #FFD000;
  --teal:    #00C4B4;
  --violet:  #6C11E8;
  --bg:      #F8F6F2;
  --white:   #FFFFFF;
  --ink:     #0A0A14;
  --ink2:    #3A3A4A;
  --muted:   #9090A4;
  --line:    rgba(10,10,20,.08);
  --bar:     linear-gradient(90deg, #0A28FF, #FF3251, #FFD000, #00C4B4);
  --nav-h:   68px;
  --page-w:  1100px;
  --pad:     clamp(20px, 5vw, 72px);
  --radius:  12px;
}

/* ── Base ── */
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

/* ── Layout ── */
.page { max-width: var(--page-w); margin: 0 auto; padding: 0 var(--pad); }
.section { padding: clamp(56px, 8vw, 96px) 0; }
.bg-white { background: var(--white); }
.bg-dark  { background: var(--ink); color: #fff; }
.bg-off   { background: var(--bg); }

/* ── Navigation ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(248,246,242,.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--page-w); margin: 0 auto;
  padding: 0 var(--pad);
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; height: 34px; }
.nav-logo img { height: 100%; width: auto; object-fit: contain; }
.nav-logo-fallback {
  font-size: 17px; font-weight: 900; letter-spacing: .04em; color: var(--ink);
  display: none;
}
.nav-logo-fallback span { color: var(--blue); }
.nav-links { display: flex; gap: clamp(14px, 2.5vw, 36px); align-items: center; }
.nav-links a {
  font-size: 13px; font-weight: 600; letter-spacing: .03em;
  color: var(--ink2); position: relative; padding-bottom: 3px;
  transition: color .18s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--blue); border-radius: 99px;
  transform: scaleX(0); transform-origin: left; transition: transform .18s;
}
.nav-links a:hover, .nav-links a.active { color: var(--blue); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-bar { height: 3px; background: var(--bar); }
.nav-toggle {
  display: none; background: none; border: none;
  font-size: 22px; color: var(--ink); padding: 4px;
}
.nav-mobile { display: none; background: var(--bg); border-bottom: 1px solid var(--line); }
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block; padding: 15px var(--pad);
  font-size: 15px; font-weight: 600; color: var(--ink2);
  border-bottom: 1px solid var(--line);
}

/* ── Hero (home) ── */
.hero {
  background: #07070F;
  background-image:
    radial-gradient(ellipse 80% 130% at 8% 55%, rgba(10,40,255,.20) 0%, transparent 58%),
    radial-gradient(ellipse 55% 70% at 92% 100%, rgba(255,50,81,.13) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 55% -5%, rgba(0,196,180,.08) 0%, transparent 50%),
    linear-gradient(155deg, #080818 0%, #0A0A14 100%);
  color: #fff;
  min-height: calc(88vh - var(--nav-h));
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: clamp(56px, 10vw, 100px) 0;
}

/* Shader blobs — slow organic drift */
.hero-glow {
  position: absolute; top: 35%; left: -12%;
  width: 65vw; height: 65vw; max-width: 760px; max-height: 760px;
  background: radial-gradient(circle, rgba(10,40,255,.26) 0%, transparent 65%);
  filter: blur(90px); pointer-events: none;
  animation: drift-l 20s ease-in-out infinite;
}
.hero-glow-r {
  position: absolute; bottom: -25%; right: -8%;
  width: 45vw; height: 45vw; max-width: 520px; max-height: 520px;
  background: radial-gradient(circle, rgba(255,50,81,.13) 0%, transparent 62%);
  filter: blur(70px); pointer-events: none;
  animation: drift-r 26s ease-in-out infinite;
}
.hero-glow-t {
  position: absolute; top: -10%; right: 30%;
  width: 30vw; height: 30vw; max-width: 360px; max-height: 360px;
  background: radial-gradient(circle, rgba(0,196,180,.08) 0%, transparent 60%);
  filter: blur(60px); pointer-events: none;
  animation: drift-l 32s ease-in-out infinite reverse;
}

@keyframes drift-l {
  0%   { transform: translate(0, 0)     scale(1); }
  20%  { transform: translate(60px,-45px) scale(1.14); }
  45%  { transform: translate(20px, 70px) scale(.92); }
  70%  { transform: translate(-50px, 15px) scale(1.1); }
  100% { transform: translate(0, 0)     scale(1); }
}
@keyframes drift-r {
  0%   { transform: translate(0, 0)      scale(1); }
  25%  { transform: translate(-80px, 40px) scale(1.12); }
  55%  { transform: translate(35px,-60px) scale(.94); }
  80%  { transform: translate(60px, 50px) scale(1.08); }
  100% { transform: translate(0, 0)      scale(1); }
}

.hero-bg-text {
  position: absolute; right: -10px; bottom: -40px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(90px, 20vw, 260px);
  font-weight: 800; font-style: italic;
  color: rgba(255,255,255,.02);
  line-height: 1; pointer-events: none; user-select: none; white-space: nowrap;
}
.hero-content { position: relative; z-index: 1; max-width: 680px; }
.hero-eyebrow {
  font-size: 10px; font-weight: 800; letter-spacing: .24em;
  text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 1.2em;
  display: flex; align-items: center; gap: 10px;
}
.hero-eyebrow::before { content: ''; display: block; width: 24px; height: 2px; background: var(--blue); border-radius: 99px; }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 7vw, 84px);
  font-weight: 800; line-height: 1.05; letter-spacing: -.025em;
}
.hero-title em { font-style: italic; color: var(--blue); }
.hero-sub {
  font-size: clamp(14px, 1.8vw, 18px); color: rgba(255,255,255,.55);
  max-width: 460px; line-height: 1.65; margin-top: 1.2em;
}
.hero-rule {
  width: clamp(40px,8vw,70px); height: 3px;
  background: var(--bar); border-radius: 99px;
  margin: clamp(20px,3.5vw,32px) 0;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: .72em 1.5em; border-radius: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: .03em;
  transition: all .2s; white-space: nowrap;
}
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: #0820d8; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(10,40,255,.32); }
.btn-ghost { background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.16); }
.btn-ghost:hover { background: rgba(255,255,255,.15); }
.btn-outline { background: transparent; color: var(--blue); border: 1.5px solid var(--blue); }
.btn-outline:hover { background: var(--blue); color: #fff; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #1a1a2a; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }

/* ── Section headers ── */
.eyebrow {
  font-size: 10px; font-weight: 800; letter-spacing: .22em;
  text-transform: uppercase; color: var(--blue);
  display: flex; align-items: center; gap: 8px; margin-bottom: .5em;
}
.eyebrow::after { content: ''; display: block; width: 28px; height: 1px; background: var(--blue); opacity: .4; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4.5vw, 48px);
  font-weight: 800; line-height: 1.1; letter-spacing: -.02em;
}
.section-title em { font-style: italic; color: var(--coral); }
.section-sub {
  font-size: 15px; color: var(--ink2); line-height: 1.75;
  margin-top: .6em; max-width: 560px;
}
.divider { width: 36px; height: 3px; background: var(--blue); border-radius: 99px; margin: .8em 0 2em; }
.rainbow-line { height: 3px; background: var(--bar); }

/* ── Featured show (home) ── */
.featured-wrap {
  position: relative; border-radius: 16px; overflow: hidden;
  min-height: clamp(360px, 55vw, 560px);
  background: var(--ink);
}
.featured-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  opacity: .6;
}
.featured-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(10,10,20,.96) 0%, rgba(10,10,20,.75) 45%, rgba(10,10,20,.2) 100%);
}
.featured-content {
  position: relative; z-index: 2;
  padding: clamp(28px,5%,56px);
  max-width: 520px; color: #fff;
  display: flex; flex-direction: column; gap: 1em;
  min-height: clamp(360px, 55vw, 560px);
  justify-content: center;
}
.featured-tag {
  font-size: 9px; font-weight: 800; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(255,255,255,.45);
}
.featured-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px,5vw,46px); font-weight: 800; line-height: 1.1;
}
.featured-bar { height: 3px; width: 44px; border-radius: 99px; }
.featured-desc { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.7; max-width: 380px; }
.featured-meta { display: flex; flex-direction: column; gap: 6px; }
.featured-meta-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: rgba(255,255,255,.5);
}
.featured-meta-item strong { color: rgba(255,255,255,.85); font-weight: 600; }

/* ── Stats ── */
.stats-row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(130px,1fr));
  gap: 1px; background: var(--line);
  border-radius: var(--radius); overflow: hidden;
  margin-top: clamp(20px,4vw,40px);
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
}
.stat {
  background: var(--white); padding: clamp(20px,3vw,32px) clamp(16px,2vw,24px);
  display: flex; flex-direction: column; gap: .3em;
}
.stat-num {
  font-size: clamp(28px,4vw,42px); font-weight: 900;
  letter-spacing: -.03em; color: var(--blue); line-height: 1;
}
.stat-label { font-size: 11px; color: var(--muted); font-weight: 500; line-height: 1.4; }

/* ── Pillars / cards ── */
.pillars { display: grid; grid-template-columns: repeat(auto-fill,minmax(200px,1fr)); gap: 16px; margin-top: 2em; }
.pillar {
  background: var(--white); border-radius: var(--radius); padding: 24px; border-top: 3px solid;
  transition: transform .28s ease, box-shadow .28s ease;
}
.pillar:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,.11);
}
.pillar-icon { font-size: 26px; margin-bottom: .6em; transition: transform .28s ease; }
.pillar:hover .pillar-icon { transform: scale(1.18); }
.pillar-title { font-size: 12px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; color: var(--ink); margin-bottom: .4em; }
.pillar-desc { font-size: 13px; color: var(--ink2); line-height: 1.65; }

/* ── Show cards ── */
.shows-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(230px,1fr));
  gap: 20px; margin-top: 2em;
}
.show-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: box-shadow .25s, transform .25s;
  display: block;
}
.show-card:hover { box-shadow: 0 14px 36px rgba(0,0,0,.13); transform: translateY(-4px); }
.show-card-bar { height: 4px; }
.show-card-poster { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top; }
.show-card-poster.contain { object-fit: contain; background: #111; }
.show-card-poster.placeholder {
  display: flex; align-items: center; justify-content: center;
  font-size: 48px; background: var(--ink);
}
.show-card-body { padding: 16px 18px 20px; }
.show-card-tag { font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: .4em; }
.show-card-title { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 800; line-height: 1.2; color: var(--ink); }
.show-card-sub { font-size: 11px; color: var(--muted); margin-top: .3em; }

/* ── Show featured (espetaculos page) ── */
.show-feature {
  display: grid; grid-template-columns: 5fr 3fr;
  gap: 0; border-radius: 16px; overflow: hidden;
  background: var(--ink); margin-bottom: 2em;
  min-height: 420px;
}
.show-feature-copy {
  padding: clamp(28px,5%,56px); color: #fff;
  display: flex; flex-direction: column; justify-content: center; gap: 1em;
}
/* Light variant for Principezinho */
.show-feature.show-feature-light {
  background: linear-gradient(135deg, #FFF9E6, #FFF3CC);
}
.show-feature.show-feature-light .show-feature-copy { color: var(--ink); }
.show-feature.show-feature-light .show-feature-copy p { color: var(--ink2); }
.show-feature.show-feature-light .show-feature-copy small,
.show-feature.show-feature-light .show-feature-copy span.meta-label { color: var(--ink2); }

.show-feature-poster { overflow: hidden; }
.show-feature-poster img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

/* ── Page hero (inner pages) ── */
.page-hero {
  background: var(--ink);
  background-image:
    radial-gradient(ellipse 70% 100% at 5% 50%, rgba(10,40,255,.16) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 95% 0%, rgba(255,50,81,.09) 0%, transparent 50%);
  color: #fff;
  padding: clamp(48px,8vw,80px) 0;
}
.page-hero-eyebrow {
  font-size: 10px; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: .5em;
}
.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px,5.5vw,58px); font-weight: 800; line-height: 1.1; letter-spacing: -.02em;
}
/* White italic on page headers */
.page-hero-title em { font-style: italic; color: #fff; }
.page-hero-sub { font-size: 15px; color: rgba(255,255,255,.5); max-width: 500px; line-height: 1.7; margin-top: .7em; }

/* ── Press ── */
.press-layout { display: grid; grid-template-columns: 280px 1fr; gap: 32px; align-items: start; margin-top: 2em; }
.press-kit-box {
  background: var(--ink); border-radius: var(--radius); padding: 28px;
  position: sticky; top: calc(var(--nav-h) + 24px);
  display: flex; flex-direction: column; gap: 14px;
}
.press-kit-title { font-size: 15px; font-weight: 800; color: #fff; }
.press-kit-desc { font-size: 12px; color: rgba(255,255,255,.5); line-height: 1.65; }
.press-releases { display: flex; flex-direction: column; gap: 14px; }
.press-release {
  background: var(--white); border-radius: var(--radius); padding: 20px 22px;
  border-left: 3px solid var(--blue);
  transition: box-shadow .2s, transform .2s;
}
.press-release:hover { box-shadow: 0 6px 24px rgba(0,0,0,.09); transform: translateX(3px); }
.press-release-date { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.press-release-title { font-size: 16px; font-weight: 700; color: var(--ink); margin-top: .3em; line-height: 1.3; }
.press-release-desc { font-size: 13px; color: var(--ink2); margin-top: .4em; line-height: 1.65; }
.photo-grid {
  display: grid; grid-template-columns: repeat(auto-fill,minmax(200px,1fr));
  gap: 12px; margin-top: 2em;
}
.photo-thumb { border-radius: 8px; overflow: hidden; aspect-ratio: 4/3; }
.photo-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.photo-thumb:hover img { transform: scale(1.04); }

/* ── Partnerships ── */
.partner-types { display: grid; grid-template-columns: repeat(auto-fill,minmax(220px,1fr)); gap: 16px; margin-top: 2em; }
.partner-type { background: var(--white); border-radius: var(--radius); padding: 24px; border-top: 3px solid; }
.partner-type-icon { font-size: 26px; margin-bottom: .6em; }
.partner-type-name { font-size: 13px; font-weight: 800; color: var(--ink); margin-bottom: .4em; text-transform: uppercase; letter-spacing: .06em; }
.partner-type-desc { font-size: 12px; color: var(--ink2); line-height: 1.65; }
.partner-type-items { margin-top: .8em; display: flex; flex-direction: column; gap: 4px; }
.partner-type-item { font-size: 11px; color: var(--muted); display: flex; align-items: flex-start; gap: 6px; }
.partner-type-item::before { content: '→'; color: var(--blue); flex-shrink: 0; font-size: 10px; margin-top: 1px; }
.why-ultra { display: grid; grid-template-columns: repeat(auto-fill,minmax(200px,1fr)); gap: 16px; margin-top: 2em; }
.why-item { background: var(--white); border-radius: var(--radius); padding: 22px; display: flex; flex-direction: column; gap: .5em; }
.why-num { font-size: clamp(28px,4vw,40px); font-weight: 900; color: var(--blue); letter-spacing: -.03em; line-height: 1; }
.why-label { font-size: 12px; color: var(--muted); }

/* ── Bento box (parcerias audiência) ── */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 14px;
  margin-top: 2em;
}
.bento-cell {
  border-radius: 16px; padding: 24px 22px;
  display: flex; flex-direction: column; gap: .6em;
  transition: transform .25s, box-shadow .25s;
}
.bento-cell:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,.09); }
.bento-cell.span2 { grid-column: span 2; }
.bento-cell.tall   { grid-row: span 2; }
.bento-label {
  font-size: 9px; font-weight: 800; letter-spacing: .18em;
  text-transform: uppercase; opacity: .55;
}
.bento-num {
  font-size: clamp(36px, 5vw, 56px); font-weight: 900;
  letter-spacing: -.04em; line-height: 1;
}
.bento-title { font-size: 15px; font-weight: 700; line-height: 1.3; }
.bento-desc { font-size: 12px; line-height: 1.65; opacity: .7; }
.bento-bar-wrap { margin-top: auto; }
.bento-bar-track {
  height: 6px; background: rgba(255,255,255,.2); border-radius: 99px; overflow: hidden; margin-top: 6px;
}
.bento-bar-fill {
  height: 100%; border-radius: 99px;
  animation: fill-bar 1.4s ease forwards;
}
@keyframes fill-bar {
  from { width: 0; }
}
.bento-mini-chart {
  display: flex; align-items: flex-end; gap: 5px; margin-top: auto; height: 40px;
}
.bento-bar-col {
  flex: 1; background: rgba(255,255,255,.35); border-radius: 4px 4px 0 0;
  transition: background .2s;
}
.bento-cell:hover .bento-bar-col { background: rgba(255,255,255,.55); }

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(260px,1fr)); gap: 20px; margin-top: 2em; }
.contact-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 2em; }
.contact-card {
  background: var(--white); border-radius: var(--radius); padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  border-top: 4px solid;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  transition: box-shadow .2s, transform .2s;
}
.contact-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.1); transform: translateY(-3px); }
.contact-card-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.contact-card-label { font-size: 9px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.contact-card-tag { font-size: 9px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.contact-card-title { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 800; color: var(--ink); line-height: 1.25; }
.contact-card-desc { font-size: 13px; color: var(--ink2); line-height: 1.65; flex: 1; }
.contact-card-person {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 8px;
  background: rgba(0,0,0,.03);
}
.contact-card-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 800; color: #fff; flex-shrink: 0;
}
.contact-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700;
  padding: .65em 1.2em; border-radius: 8px;
  transition: all .2s; align-self: flex-start;
}

/* ── Sobre / About ── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(220px,1fr)); gap: 20px; margin-top: 2em; }
.team-card {
  background: var(--white); border-radius: var(--radius); padding: 24px;
  border-top: 3px solid;
  transition: transform .25s, box-shadow .25s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.1); }
.team-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 900; color: #fff; margin-bottom: 14px;
}
.team-name { font-size: 15px; font-weight: 800; color: var(--ink); }
.team-role { font-size: 11px; color: var(--muted); font-weight: 600; letter-spacing: .05em; text-transform: uppercase; margin-top: 2px; }
.team-bio { font-size: 12px; color: var(--ink2); line-height: 1.7; margin-top: 10px; }

.timeline { display: flex; flex-direction: column; gap: 0; margin-top: 2em; }
.timeline-item {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 24px; align-items: start; padding: 0 0 2em;
  border-left: 2px solid var(--line); margin-left: 40px; padding-left: 28px;
  position: relative;
}
.timeline-item::before {
  content: ''; position: absolute; left: -7px; top: 6px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--blue); border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--blue);
}
.timeline-year { font-size: 12px; font-weight: 800; color: var(--blue); margin-left: -108px; text-align: right; padding-top: 3px; }
.timeline-content { padding-left: 0; }
.timeline-title { font-size: 14px; font-weight: 700; color: var(--ink); }
.timeline-desc { font-size: 12px; color: var(--ink2); line-height: 1.65; margin-top: 3px; }

/* ── Show detail page ── */
.show-detail-hero {
  position: relative; min-height: clamp(420px, 65vh, 680px);
  display: flex; align-items: flex-end; overflow: hidden;
  background: var(--ink);
}
.show-detail-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center top; opacity: .45;
}
.show-detail-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10,10,20,1) 0%, rgba(10,10,20,.6) 50%, rgba(10,10,20,.2) 100%);
}
.show-detail-content {
  position: relative; z-index: 2; color: #fff;
  padding: clamp(32px,5%,64px) 0 clamp(40px,6vw,72px);
}
.show-detail-content .page { display: flex; flex-direction: column; gap: 1.2em; }
.show-detail-meta { display: flex; flex-wrap: wrap; gap: 10px; }
.show-meta-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: .35em .85em; border-radius: 99px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  font-size: 11px; font-weight: 600; color: rgba(255,255,255,.75);
}
.show-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 2em; }
.show-info-block { display: flex; flex-direction: column; gap: .5em; }
.show-info-label { font-size: 9px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.show-info-value { font-size: 14px; font-weight: 600; color: var(--ink); }

/* ── Entrance animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: .1s; }
.fade-up-delay-2 { transition-delay: .2s; }
.fade-up-delay-3 { transition-delay: .3s; }
.fade-up-delay-4 { transition-delay: .4s; }

/* ── Footer ── */
.footer {
  background: var(--ink); color: rgba(255,255,255,.4);
  padding: clamp(40px,6vw,72px) 0 28px;
}
.footer-grid {
  display: grid; grid-template-columns: 1fr auto;
  gap: 40px; align-items: start;
}
.footer-logo img { height: 30px; width: auto; filter: brightness(0) invert(1); margin-bottom: 10px; }
.footer-logo-fallback { font-size: 17px; font-weight: 900; letter-spacing: .04em; color: rgba(255,255,255,.8); margin-bottom: 10px; display: none; }
.footer-logo-fallback span { color: var(--blue); }
.footer-tagline { font-size: 12px; line-height: 1.65; max-width: 260px; }
.footer-email { font-size: 11px; margin-top: 10px; color: rgba(255,255,255,.35); }
.footer-social { display: flex; gap: 12px; margin-top: 14px; }
.footer-social a {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 600; color: rgba(255,255,255,.4);
  transition: color .18s;
}
.footer-social a:hover { color: rgba(255,255,255,.8); }
.footer-nav { display: flex; flex-direction: column; gap: 10px; text-align: right; }
.footer-nav a { font-size: 12px; font-weight: 600; color: rgba(255,255,255,.45); transition: color .18s; }
.footer-nav a:hover { color: rgba(255,255,255,.8); }
.footer-bottom {
  margin-top: 40px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.07);
  font-size: 11px; letter-spacing: .05em;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}

/* ── Pill / badge ── */
.pill {
  display: inline-block; padding: .25em .75em; border-radius: 99px;
  font-size: 10px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
}
.pill-blue   { background: rgba(10,40,255,.1);   color: var(--blue); }
.pill-yellow { background: rgba(255,208,0,.2);   color: #7a6300; }
.pill-coral  { background: rgba(255,50,81,.12);  color: var(--coral); }
.pill-teal   { background: rgba(0,196,180,.15);  color: #007a72; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .contact-cards { grid-template-columns: 1fr; }
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-cell.span2 { grid-column: span 2; }
  .show-info-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .show-feature { grid-template-columns: 1fr; }
  .show-feature-poster { max-height: 280px; }
  .press-layout { grid-template-columns: 1fr; }
  .press-kit-box { position: static; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-nav { text-align: left; }
  .contact-cards { grid-template-columns: 1fr; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-cell.span2 { grid-column: span 1; }
  .bento-cell.tall { grid-row: span 1; }
  .timeline-item { grid-template-columns: 1fr; margin-left: 20px; }
  .timeline-year { margin-left: 0; text-align: left; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn { justify-content: center; }
}

/* ── Scroll animation script helper ── */
