/* ============================================================
   LIGHTS, CAMERA... KITCHEN! — Project Theme
   Layered on top of 9le-base.css. Overrides design tokens for
   LCK's warm/peach/terracotta palette and Bebas Neue + Titillium
   Web typography. Add LCK-specific component styles below the
   token block.
   ============================================================ */

/* ---------- Token Overrides ---------- */
:root {
    /* LCK warm palette */
    --color-bg-page:        #f3c791;     /* peach/apricot page */
    --color-bg-card:        #f7ebd4;     /* cream card */
    --color-text:           #2a1f15;     /* deep brown body text */
    --color-text-muted:     rgba(42, 31, 21, 0.72);

    --color-accent:         #ab5b4d;     /* terracotta (primary) */
    --color-accent-alt:     #4d7591;     /* slate blue */
    --color-accent-3:       #f8ba5a;     /* golden */
    --color-accent-4:       #935516;     /* burnt orange — production headings */
    --color-accent-soft:    rgba(171, 91, 77, 0.08);
    --color-border:         #ab5b4d;
    --color-divider:        rgba(171, 91, 77, 0.25);

    /* LCK type stack — Bebas Neue display + Titillium Web body */
    --font-display: 'Bebas Neue', 'Oswald', 'Impact', system-ui, sans-serif;
    --font-body:    'Titillium Web', system-ui, -apple-system, sans-serif;

    /* Slightly larger hero scale for the cooking-show flair */
    --fs-h1: clamp(2.25rem, 4.5vw + 0.5rem, 3.75rem);

    /* Card border styling */
    --card-radius: 16px;
    --card-shadow: 0 8px 28px rgba(80, 40, 20, 0.18);
}

/* ---------- Page wrapper ---------- */
body {
    background-color: var(--color-bg-page);
    background-image:
        radial-gradient(circle at 12% 18%, rgba(255, 220, 170, 0.45), transparent 55%),
        radial-gradient(circle at 88% 84%, rgba(171, 91, 77, 0.10), transparent 60%);
    background-attachment: fixed;
}

/* ---------- Top navigation (shared across all LCK pages) ---------- */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(247, 235, 212, 0.95);   /* cream, slightly translucent */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--color-divider);
    padding: 0.55rem clamp(0.85rem, 3vw, 2rem);
}
.site-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    max-width: var(--container-max);
    margin-inline: auto;
}
.site-nav__brand {
    font-family: var(--font-display);
    font-size: clamp(0.95rem, 1.4vw + 0.5rem, 1.1rem);
    color: var(--color-accent);
    letter-spacing: 0.04em;
    line-height: 1;
}
.site-nav__brand:hover { color: var(--color-accent-alt); }
.site-nav__links {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    align-items: center;
    gap: clamp(0.6rem, 1.8vw, 1.4rem);
    flex-wrap: wrap;
    justify-content: flex-end;
}
.site-nav__links a {
    font-family: var(--font-display);
    font-size: clamp(0.78rem, 1vw + 0.35rem, 0.95rem);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text);
    padding: 0.35rem 0;
    transition: color .15s ease;
}
.site-nav__links a:hover,
.site-nav__links a[aria-current="page"] { color: var(--color-accent); }
.site-nav__cta {
    background: var(--color-accent-alt) !important;
    color: #fff !important;
    padding: 0.45rem 0.95rem !important;
    border-radius: 6px !important;
    transition: background .15s ease, transform .15s ease !important;
}
.site-nav__cta:hover {
    background: var(--color-accent) !important;
    color: #fff !important;
    transform: translateY(-1px);
}

/* ---------- Link/CTA grid (used on public landing page) ---------- */
.link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
    margin-block: 1.5rem;
}
.link-card {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    padding: 1.25rem 1.25rem 1.4rem;
    background: var(--color-accent-alt);    /* slate blue */
    color: #ffffff;
    border-radius: var(--card-radius);
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    position: relative;
    text-align: left;
    overflow: hidden;
    text-decoration: none;
}
.link-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(80, 40, 20, 0.22);
    color: #ffffff;
}
.link-card__icon {
    width: 32px; height: 32px;
    margin-block-end: 0.4rem;
    color: var(--color-accent-3);
    flex-shrink: 0;
}
.link-card__title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--color-accent-3);
    letter-spacing: 0.02em;
    line-height: 1.1;
}
.link-card__desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.86);
    line-height: 1.45;
    margin-top: 0.15rem;
}
.link-card__badge {
    position: absolute;
    top: 0.65rem;
    right: 0.65rem;
    background: var(--color-accent);
    color: #fff;
    font-family: var(--font-display);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
}
.link-card--disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
    filter: grayscale(0.3);
}

.lck-pitch {
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
    padding: clamp(1rem, 3vw, 2.5rem) clamp(0.75rem, 2vw, 1.5rem);
}

/* ---------- Card border (LCK-specific) ---------- */
.card {
    border: 1px solid var(--color-border);
}

/* ---------- Heading colours (LCK uses terracotta for h1 + slate-blue for h2/h4) ---------- */
h1 { color: var(--color-accent); }
h2, .h2 { color: var(--color-accent); }
h4 { color: var(--color-accent-alt); }

/* ---------- Hero card (Card 1) ---------- */
.card--hero { padding: 0; overflow: hidden; }

.hero-masthead {
    background: var(--color-bg-card);
    padding: clamp(1.75rem, 5vw, 3.5rem) clamp(1rem, 3vw, 2rem) clamp(1.25rem, 3.5vw, 2.5rem);
    text-align: center;
}
.hero-masthead-logo {
    display: block;
    max-width: min(820px, 96%);
    margin: 0 auto;
    height: auto;
}

.hero-banner {
    background: var(--color-accent-alt);
    color: #ffffff;
    padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 5vw, 3.5rem) clamp(2rem, 5vw, 3.5rem);
    text-align: center;
    position: relative;
}
.hero-banner::after {
    content: "";
    position: absolute;
    inset: auto 0 -1px 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--color-accent-3), transparent);
}
.hero-banner .eyebrow {
    background: rgba(0, 0, 0, 0.22);
    color: var(--color-accent-3);
    padding: 0.4rem 1.1rem;
    border-radius: 999px;
    font-weight: 600;
}
/* Larger pill — used on Sponsorship page to emphasize "Partnership Invitation" */
.hero-banner .eyebrow--xl {
    font-size: clamp(1.4rem, 1.8vw + 0.6rem, 2rem);
    padding: 0.65rem 1.8rem;
    letter-spacing: 0.22em;
}
.hero-tagline {
    font-family: var(--font-body);
    font-size: clamp(1.05rem, 1.1vw + 0.75rem, 1.3rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.45;
    letter-spacing: 0.005em;
    margin: 1.5rem auto 1.75rem;
    max-width: 60ch;
}
.hero-meta {
    display: inline-block;
    border-left: 3px solid var(--color-accent-3);
    padding: 0.25rem 0 0.25rem 1.25rem;
    text-align: left;
}
.hero-meta p {
    font-family: var(--font-body);
    font-weight: 700;
    margin: 0.35rem 0;
    color: #ffffff;
    line-height: 1.4;
}
.hero-meta .meta-value {
    color: var(--color-accent-3);
    font-weight: 700;
}

.hero-body { padding: clamp(1.75rem, 4vw, 2.5rem) clamp(1.5rem, 5vw, 3rem); }
.hero-body .full-image { margin-block: 1.5rem; }
.hero-body p { font-size: 1.05rem; }

.hero-pullquote {
    margin-block-start: 2rem;
    font-size: 0.95rem;
}

/* ---------- Brand logo (Card 2) ---------- */
.brand-logo {
    max-width: min(640px, 100%);
    margin: -1rem auto 0;
    display: block;
}

/* ---------- LCK gallery overrides (more padding, rounder corners) ---------- */
.gallery { gap: 1rem; }
.gallery img {
    border-radius: 14px;
    cursor: zoom-in;
    box-shadow: 0 4px 14px rgba(80, 40, 20, 0.12);
}

/* ---------- Lightbox (click thumbnail → full-size view) ---------- */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(247, 235, 212, 0.45);   /* warm cream tint, very light */
    backdrop-filter: blur(14px) saturate(115%);
    -webkit-backdrop-filter: blur(14px) saturate(115%);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: clamp(0.75rem, 3vw, 2rem);
    animation: lb-fade .25s ease;
}
.lightbox.is-open { display: flex; }
@keyframes lb-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes lb-rise { from { opacity: 0; transform: scale(.96); } to { opacity: 1; transform: scale(1); } }

.lightbox__image {
    max-width: 100%;
    max-height: calc(100vh - clamp(1.5rem, 6vw, 4rem));
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow:
        0 30px 80px rgba(80, 40, 20, 0.32),
        0 8px 22px rgba(80, 40, 20, 0.18);
    user-select: none;
    animation: lb-rise .28s cubic-bezier(.2, .9, .25, 1);
}

.lightbox__close,
.lightbox__nav {
    position: absolute;
    background: rgba(42, 31, 21, 0.72);      /* dark brown — readable on cream */
    color: #fff;
    border-radius: 50%;
    font-family: var(--font-display);
    line-height: 1;
    display: grid;
    place-items: center;
    transition: background .15s ease, transform .15s ease;
    border: 0;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}
.lightbox__close:hover,
.lightbox__nav:hover {
    background: var(--color-accent);
    transform: scale(1.06);
}

.lightbox__close {
    top: clamp(0.75rem, 2vw, 1.25rem);
    right: clamp(0.75rem, 2vw, 1.25rem);
    width: 44px; height: 44px;
    font-size: 1.6rem;
}

.lightbox__nav {
    top: 50%;
    transform: translateY(-50%);
    width: 48px; height: 48px;
    font-size: 1.9rem;
}
.lightbox__nav:hover { transform: translateY(-50%) scale(1.06); }
.lightbox__nav--prev { left: clamp(0.5rem, 2vw, 1.25rem); }
.lightbox__nav--next { right: clamp(0.5rem, 2vw, 1.25rem); }

.lightbox__counter {
    position: absolute;
    bottom: clamp(0.75rem, 2vw, 1.5rem);
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.85);
    font-family: var(--font-display);
    letter-spacing: 0.12em;
    font-size: 0.95rem;
    background: rgba(0,0,0,0.4);
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
}

@media (max-width: 600px) {
    .lightbox__close { width: 38px; height: 38px; font-size: 1.4rem; }
    .lightbox__nav   { width: 40px; height: 40px; font-size: 1.6rem; }
}

/* ---------- Watch Trailer button override ---------- */
.btn--trailer {
    background: var(--color-accent-alt);
    color: #fff;
    margin-top: 1rem;
}

/* ---------- Series Description (Card 3) ---------- */
.callout--note {
    background: var(--color-accent-soft);
    border-left: 4px solid var(--color-accent);
    color: var(--color-text);
}
.callout--note strong { color: var(--color-accent); }

/* ---------- Cast (Card 4) — slate-blue cards on page background ---------- */
.cast-section {
    margin-block-end: var(--section-gap);
}

.cast-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1rem, 2.5vw, 1.75rem);
}
.cast-card--full { grid-column: 1 / -1; }

.cast-card {
    background: var(--color-accent-alt);     /* slate blue */
    color: #ffffff;
    border-radius: var(--card-radius);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    text-align: center;
    box-shadow: 0 8px 28px rgba(80, 40, 20, 0.18);
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.cast-name {
    font-family: var(--font-display);
    color: var(--color-accent-3);            /* gold */
    font-size: clamp(1.4rem, 2vw + 0.6rem, 2.1rem);
    letter-spacing: 0.02em;
    line-height: 1.05;
    margin: 0;
}

.cast-portrait {
    width: 100%;
    height: auto;
    aspect-ratio: auto;                       /* natural landscape — don't crop */
    object-fit: contain;
    border-radius: 12px;
    border: 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
    cursor: zoom-in;
}

.cast-bio {
    color: #ffffff;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    /* Slightly narrower max-width on the full-width card so the line isn't too wide */
}
.cast-card--full .cast-bio {
    max-width: 72ch;
    margin-inline: auto;
}

@media (max-width: 720px) {
    .cast-grid { grid-template-columns: 1fr; }
    .cast-card--full { grid-column: 1; }
}

/* ---------- Concept & Format / Why This Show (Card 5, 7) ---------- */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.5rem, 3vw, 2.25rem) clamp(1.5rem, 3vw, 2.5rem);
    margin-block: 1.75rem;
}
.feature-item {
    display: grid;
    grid-template-columns: clamp(72px, 9vw, 110px) 1fr;
    gap: clamp(0.85rem, 1.5vw, 1.25rem);
    align-items: start;
}
.feature-icon {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    pointer-events: none;     /* decorative, not clickable */
    user-select: none;
}
.feature-content h4 {
    color: var(--color-accent-4);
    margin-block-end: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.feature-content p {
    line-height: 1.55;
}
@media (max-width: 720px) {
    .feature-grid { grid-template-columns: 1fr; }
    .feature-item { grid-template-columns: 64px 1fr; gap: 0.85rem; }
}

/* ---------- Episode list (Card 6) ---------- */
.episode-list { display: grid; gap: 1.5rem; margin-block: 1.75rem; }
.episode-list h4 {
    color: var(--color-accent-alt);
    margin-block-end: 0.4rem;
    font-family: var(--font-display);
    letter-spacing: 0.015em;
}
.episode-list .ep-num {
    color: var(--color-accent);
    font-weight: 700;
}

/* ---------- About 9LE / Contact (Card 8) ---------- */
.about-9le {
    display: grid;
    grid-template-columns: 1fr 220px;
    gap: 2rem;
    align-items: center;
    margin-block: 1.5rem;
}
.about-9le-logo { max-width: 220px; margin-inline-start: auto; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-block: 1.5rem;
}
.contact-grid h4 {
    color: var(--color-accent-4);
    text-transform: uppercase;
    margin-block-end: 0.75rem;
    letter-spacing: 0.05em;
}
.productions-list { list-style: none; padding: 0; margin: 0; }
.productions-list li {
    margin-block-end: 0.65rem;
    line-height: 1.4;
    padding-inline-start: 1rem;
    position: relative;
}
.productions-list li::before {
    content: "";
    position: absolute;
    left: 0; top: 0.55rem;
    width: 6px; height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
}
.contact-info p { margin-block-end: 0.25rem; line-height: 1.5; }
.contact-info a { color: var(--color-accent); font-weight: 600; }

.divider {
    border: 0;
    border-top: 1px solid var(--color-divider);
    margin-block: 2rem;
}

/* ---------- Embeds row (small social-link squares) ---------- */
.embeds-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem;
    margin-block-start: 2rem;
}
.embed-wrapper {
    position: relative;
    width: clamp(150px, 18vw, 180px);
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid var(--color-border);
    background: #fff;
    transition: transform .18s ease, box-shadow .18s ease;
}
.embed-wrapper:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(80, 40, 20, 0.18);
}
.embed-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.embed-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    padding: 0.85rem;
    color: var(--color-text);
    background: linear-gradient(160deg, #fff 0%, var(--color-bg-card) 100%);
    gap: 0.4rem;
}
.embed-link .embed-icon {
    width: 32px; height: 32px;
    color: var(--color-accent);
    transition: color .18s ease;
}
.embed-link .embed-title {
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--color-accent);
    letter-spacing: 0.04em;
    line-height: 1.1;
    transition: color .18s ease;
}
.embed-link span:not(.embed-title):not(.embed-icon) {
    font-size: 0.72rem;
    color: var(--color-text-muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.embed-wrapper:hover .embed-icon,
.embed-wrapper:hover .embed-title { color: var(--color-accent-alt); }

@media (max-width: 720px) {
    .about-9le { grid-template-columns: 1fr; }
    .about-9le-logo { margin: 0 auto; }
    .contact-grid { grid-template-columns: 1fr; }
    .embeds-row { grid-template-columns: 1fr; }
}

/* ---------- 9LE credit footer override ---------- */
.le-credit {
    color: var(--color-text-muted);
    border-top: 1px solid var(--color-divider);
    margin-top: 1rem;
}
.le-credit a { color: var(--color-accent); font-weight: 700; }
.le-credit a:hover { color: var(--color-accent-4); }

/* ============================================================
   SPONSORSHIP PAGE COMPONENTS
   ============================================================ */

/* Centered pull-quote variant (used for opening epigraphs) */
.pull-quote--center {
    border-left: 0;
    padding: 0;
    text-align: center;
    font-family: var(--font-body);
    font-style: italic;
    font-size: clamp(1.05rem, 1vw + 0.85rem, 1.25rem);
    color: var(--color-text);
    line-height: 1.55;
}
.pull-quote--center cite {
    display: block;
    font-style: normal;
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--color-accent);
    letter-spacing: 0.05em;
    margin-top: 0.55rem;
}

/* Event details — striped key/value table */
.event-details {
    width: 100%;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(80, 40, 20, 0.08);
}
.event-details th,
.event-details td {
    padding: 0.85rem 1.15rem;
    text-align: left;
    line-height: 1.45;
}
.event-details th {
    width: 32%;
    background: var(--color-accent-alt);
    color: #fff;
    font-family: var(--font-display);
    letter-spacing: 0.08em;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 0.95rem;
    vertical-align: top;
}
.event-details td {
    background: rgba(255, 255, 255, 0.6);
    color: var(--color-text);
    border-bottom: 1px solid var(--color-divider);
}
.event-details tr:last-child td { border-bottom: 0; }

@media (max-width: 600px) {
    .event-details th { width: 38%; font-size: 0.85rem; padding: 0.7rem 0.85rem; }
    .event-details td { padding: 0.7rem 0.85rem; font-size: 0.95rem; }
}

/* Stats highlight grid (audience numbers) */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.85rem;
    margin-block: 1.5rem;
}
.stat-card {
    background: var(--color-accent-alt);
    color: #fff;
    border-radius: 12px;
    padding: 1.1rem 1rem;
    text-align: center;
    box-shadow: 0 4px 14px rgba(80, 40, 20, 0.12);
}
.stat-number {
    font-family: var(--font-display);
    font-size: clamp(1.65rem, 2.4vw + 0.5rem, 2.4rem);
    color: var(--color-accent-3);
    letter-spacing: 0.02em;
    line-height: 1;
}
.stat-label {
    font-family: var(--font-body);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 0.45rem;
}

/* Bullet list with terracotta check marks */
.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.check-list li {
    position: relative;
    padding-inline-start: 1.85rem;
    margin-block-end: 0.7rem;
    line-height: 1.5;
}
.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.05rem;
    width: 1.3rem;
    height: 1.3rem;
    background: var(--color-accent);
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
}

/* Quick-links button row */
.quick-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
}
.quick-links .btn {
    padding: 0.6rem 1.25rem;
    font-size: 1rem;
}

/* Partnership tiers — 3-column comparison grid */
.tiers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    align-items: stretch;
}
.tier {
    position: relative;
    background: var(--color-bg-card);
    border: 2px solid var(--color-divider);
    border-radius: var(--card-radius);
    padding: 1.5rem 1.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 14px rgba(80, 40, 20, 0.08);
    transition: transform .2s ease, box-shadow .2s ease;
}
.tier:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(80, 40, 20, 0.18);
}
.tier__header {
    text-align: center;
    border-bottom: 1px solid var(--color-divider);
    padding-block-end: 1rem;
    margin-block-end: 1.1rem;
}
.tier__name {
    font-family: var(--font-display);
    color: var(--color-accent);
    font-size: clamp(1.15rem, 1.5vw + 0.5rem, 1.5rem);
    line-height: 1.1;
    letter-spacing: 0.02em;
    margin: 0 0 0.5rem;
}
.tier__price {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw + 0.5rem, 2.6rem);
    color: var(--color-accent-4);
    letter-spacing: 0.01em;
    line-height: 1;
}
.tier__perks {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}
.tier__perks li {
    position: relative;
    padding-inline-start: 1.5rem;
    margin-block-end: 0.6rem;
    font-size: 0.92rem;
    line-height: 1.45;
}
.tier__perks li::before {
    content: "";
    position: absolute;
    left: 0.15rem;
    top: 0.55rem;
    width: 7px; height: 7px;
    background: var(--color-accent);
    border-radius: 50%;
}

/* Premium / featured tier — visual emphasis */
.tier--featured {
    background: linear-gradient(165deg, var(--color-accent-alt) 0%, #3f607a 100%);
    border-color: var(--color-accent-3);
    color: #fff;
    box-shadow: 0 12px 32px rgba(77, 117, 145, 0.30);
}
.tier--featured .tier__name { color: var(--color-accent-3); }
.tier--featured .tier__price { color: #fff; }
.tier--featured .tier__header { border-bottom-color: rgba(255, 255, 255, 0.25); }
.tier--featured .tier__perks li { color: rgba(255, 255, 255, 0.94); }
.tier--featured .tier__perks li::before { background: var(--color-accent-3); }
.tier__badge {
    position: absolute;
    top: -0.7rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent-3);
    color: var(--color-text);
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.18);
    white-space: nowrap;
}

@media (max-width: 900px) {
    .tiers-grid { grid-template-columns: 1fr; gap: 2rem; }
    .tier--featured { order: -1; }   /* on mobile, surface premium tier first */
}

/* ============================================================
   NEWSLETTER FORM (Mailchimp embed)
   ============================================================ */
.newsletter-form {
    max-width: 480px;
    margin: 1.5rem auto 0;
}
.newsletter-form__label {
    display: block;
    text-align: left;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-block-end: 0.5rem;
}
.newsletter-form__required { color: var(--color-accent); }
.newsletter-form__row {
    display: flex;
    gap: 0.5rem;
    align-items: stretch;
}
.newsletter-form__input {
    flex: 1 1 auto;
    min-width: 0;
    padding: 0.75rem 1rem;
    border: 2px solid var(--color-border);
    border-radius: 8px;
    background: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text);
    transition: border-color .15s ease, box-shadow .15s ease;
}
.newsletter-form__input::placeholder { color: rgba(42, 31, 21, 0.4); }
.newsletter-form__input:focus {
    outline: 0;
    border-color: var(--color-accent-alt);
    box-shadow: 0 0 0 3px rgba(77, 117, 145, 0.18);
}
.newsletter-form__submit {
    flex: 0 0 auto;
    padding: 0.75rem 1.5rem;
    background: var(--color-accent);
    color: #fff;
    border: 0;
    border-radius: 8px;
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .15s ease, transform .15s ease;
}
.newsletter-form__submit:hover {
    background: var(--color-accent-alt);
    transform: translateY(-1px);
}
@media (max-width: 480px) {
    .newsletter-form__row { flex-direction: column; }
}

/* ============================================================
   TRAILER MODAL — Vimeo player popup
   ============================================================ */
.trailer-modal {
    position: fixed;
    inset: 0;
    background: rgba(15, 8, 4, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: clamp(0.75rem, 3vw, 2rem);
    animation: trailer-fade .22s ease;
}
.trailer-modal.is-open { display: flex; }
@keyframes trailer-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes trailer-rise {
    from { opacity: 0; transform: scale(.96); }
    to   { opacity: 1; transform: scale(1); }
}
.trailer-modal__frame {
    position: relative;
    width: 100%;
    max-width: 1100px;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.7);
    animation: trailer-rise .28s cubic-bezier(.2, .9, .25, 1);
}
.trailer-modal__frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
.trailer-modal__close {
    position: absolute;
    top: clamp(0.75rem, 2vw, 1.25rem);
    right: clamp(0.75rem, 2vw, 1.25rem);
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 0;
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 1.6rem;
    line-height: 1;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: background .15s ease, transform .15s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}
.trailer-modal__close:hover,
.trailer-modal__close:focus-visible {
    background: var(--color-accent);
    transform: scale(1.06);
    outline: 0;
}
@media (max-width: 600px) {
    .trailer-modal__close { width: 38px; height: 38px; font-size: 1.4rem; }
}

/* ============================================================
   PUBLIC LANDING PAGE COMPONENTS
   (Edge-to-edge, magazine-style — distinct from the pitch deck)
   ============================================================ */

/* Body class on the public landing turns off the standard contained wrapper */
body.public-page { background-image: none; background-color: var(--color-bg-page); }
body.public-page main { padding: 0; max-width: none; }

/* Full-bleed hero with rotating slideshow background. Height -30% from original, +10% from previous. */
.public-hero {
    position: relative;
    width: 100%;
    min-height: clamp(339px, min(66vh, 44vw), 631px);
    overflow: hidden;
    background: #2a3a48;
}

/* Solid-color hero variant (no slideshow) — used on premiere page etc. */
.public-hero--solid {
    background: var(--color-accent-alt);
    min-height: clamp(320px, 48vh, 460px);
}
.public-hero--solid .public-hero__overlay {
    background:
        radial-gradient(ellipse at center, transparent 30%, rgba(20, 12, 8, 0.35) 100%);
}

/* Capitol Centre slideshow hero — 4 photos, true cross-dissolve (overlapping fades) */
.public-hero--capitol {
    min-height: clamp(380px, 56vh, 540px);
}
.public-hero--capitol .hero-slideshow .slide {
    animation: capitol-rotate 20s infinite;
}
/* 5s advance, 6s visible (1s fade-in + 4s hold + 1s fade-out) → 1s overlap = cross-dissolve */
@keyframes capitol-rotate {
    0%   { opacity: 0; }
    5%   { opacity: 1; }    /* faded in by 1s */
    25%  { opacity: 1; }    /* visible at 5s */
    30%  { opacity: 0; }    /* faded out by 6s — overlaps with next slide's fade-in */
    100% { opacity: 0; }
}
.public-hero--capitol .hero-slideshow .slide:nth-child(1) { animation-delay: 0s; }
.public-hero--capitol .hero-slideshow .slide:nth-child(2) { animation-delay: 5s; }
.public-hero--capitol .hero-slideshow .slide:nth-child(3) { animation-delay: 10s; }
.public-hero--capitol .hero-slideshow .slide:nth-child(4) { animation-delay: 15s; }
.public-hero--capitol .public-hero__overlay {
    background:
        linear-gradient(180deg,
            rgba(20, 12, 8, 0.35) 0%,
            rgba(20, 12, 8, 0.22) 35%,
            rgba(20, 12, 8, 0.32) 75%,
            rgba(20, 12, 8, 0.50) 100%);
}
.public-hero--capitol .event-hero-content {
    min-height: clamp(380px, 56vh, 540px);
}

/* 2x2 cycling gallery — 16:9 cells, cross-dissolve transitions, 4× slower (16s per image) */
.cycling-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    max-width: var(--container-max);
    margin: clamp(2rem, 5vw, 3rem) auto;
    padding: 0 clamp(0.75rem, 2vw, 1.5rem);
}
.cycling-cell {
    position: relative;
    aspect-ratio: 16 / 9;          /* TV-series ratio */
    overflow: hidden;
    border-radius: 8px;
    background: var(--color-bg-card);
}
.cycling-cell img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation-name: cycling-fade;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    /* animation-duration set per cell below — different held-visible times per cell */
}
/* Per-cell animation duration:
     Cell 1: 60s  → 6s held visible per image
     Cell 2: 80s  → 8s held visible
     Cell 3: 100s → 10s held visible
     Cell 4: 120s → 12s held visible
   (Each cell has 8 images. Per-image advance = cycle/8.
    Keyframe percentages stay the same; absolute timing scales with cycle length.) */
.cycling-grid > .cycling-cell:nth-child(1) > img { animation-duration: 50s;  }
.cycling-grid > .cycling-cell:nth-child(2) > img { animation-duration: 80s;  }
.cycling-grid > .cycling-cell:nth-child(3) > img { animation-duration: 110s; }
.cycling-grid > .cycling-cell:nth-child(4) > img { animation-duration: 130s; }

/* Single keyframe used by all cells.
   Per-image timing breakdown (as % of each cell's cycle):
     0%–2.5%   fade in (becomes opacity 1)
     2.5%–12.5% held fully visible (10% of cycle = held duration)
     12.5%–15% fade out (overlaps with next image's fade-in = cross-dissolve)
     15%–100%  invisible until next cycle */
@keyframes cycling-fade {
    0%    { opacity: 0; }
    2.5%  { opacity: 1; }
    12.5% { opacity: 1; }
    15%   { opacity: 0; }
    100%  { opacity: 0; }
}
/* Explicit per-cell, per-image delays. Image 1 uses a negative delay equal to the
   fade-in window so it's already at peak opacity at page load (no empty boxes).
   Subsequent delays = (per-image advance) × (n-1) + image-1's negative delay. */

/* Cell 1 — 60s cycle, advance 7.5s, fade 1.5s */
.cycling-grid > .cycling-cell:nth-child(1) > img:nth-child(1) { animation-delay: -1.25s; }
.cycling-grid > .cycling-cell:nth-child(1) > img:nth-child(2) { animation-delay:  5s;    }
.cycling-grid > .cycling-cell:nth-child(1) > img:nth-child(3) { animation-delay: 11.25s; }
.cycling-grid > .cycling-cell:nth-child(1) > img:nth-child(4) { animation-delay: 17.5s;  }
.cycling-grid > .cycling-cell:nth-child(1) > img:nth-child(5) { animation-delay: 23.75s; }
.cycling-grid > .cycling-cell:nth-child(1) > img:nth-child(6) { animation-delay: 30s;    }
.cycling-grid > .cycling-cell:nth-child(1) > img:nth-child(7) { animation-delay: 36.25s; }
.cycling-grid > .cycling-cell:nth-child(1) > img:nth-child(8) { animation-delay: 42.5s;  }

/* Cell 2 — 80s cycle, advance 10s, fade 2s */
.cycling-grid > .cycling-cell:nth-child(2) > img:nth-child(1) { animation-delay: -2s;    }
.cycling-grid > .cycling-cell:nth-child(2) > img:nth-child(2) { animation-delay:  8s;    }
.cycling-grid > .cycling-cell:nth-child(2) > img:nth-child(3) { animation-delay: 18s;    }
.cycling-grid > .cycling-cell:nth-child(2) > img:nth-child(4) { animation-delay: 28s;    }
.cycling-grid > .cycling-cell:nth-child(2) > img:nth-child(5) { animation-delay: 38s;    }
.cycling-grid > .cycling-cell:nth-child(2) > img:nth-child(6) { animation-delay: 48s;    }
.cycling-grid > .cycling-cell:nth-child(2) > img:nth-child(7) { animation-delay: 58s;    }
.cycling-grid > .cycling-cell:nth-child(2) > img:nth-child(8) { animation-delay: 68s;    }

/* Cell 3 — 100s cycle, advance 12.5s, fade 2.5s */
.cycling-grid > .cycling-cell:nth-child(3) > img:nth-child(1) { animation-delay: -2.75s; }
.cycling-grid > .cycling-cell:nth-child(3) > img:nth-child(2) { animation-delay: 11s;    }
.cycling-grid > .cycling-cell:nth-child(3) > img:nth-child(3) { animation-delay: 24.75s; }
.cycling-grid > .cycling-cell:nth-child(3) > img:nth-child(4) { animation-delay: 38.5s;  }
.cycling-grid > .cycling-cell:nth-child(3) > img:nth-child(5) { animation-delay: 52.25s; }
.cycling-grid > .cycling-cell:nth-child(3) > img:nth-child(6) { animation-delay: 66s;    }
.cycling-grid > .cycling-cell:nth-child(3) > img:nth-child(7) { animation-delay: 79.75s; }
.cycling-grid > .cycling-cell:nth-child(3) > img:nth-child(8) { animation-delay: 93.5s;  }

/* Cell 4 — 120s cycle, advance 15s, fade 3s */
.cycling-grid > .cycling-cell:nth-child(4) > img:nth-child(1) { animation-delay: -3.25s; }
.cycling-grid > .cycling-cell:nth-child(4) > img:nth-child(2) { animation-delay: 13s;    }
.cycling-grid > .cycling-cell:nth-child(4) > img:nth-child(3) { animation-delay: 29.25s; }
.cycling-grid > .cycling-cell:nth-child(4) > img:nth-child(4) { animation-delay: 45.5s;  }
.cycling-grid > .cycling-cell:nth-child(4) > img:nth-child(5) { animation-delay: 61.75s; }
.cycling-grid > .cycling-cell:nth-child(4) > img:nth-child(6) { animation-delay: 78s;    }
.cycling-grid > .cycling-cell:nth-child(4) > img:nth-child(7) { animation-delay: 94.25s; }
.cycling-grid > .cycling-cell:nth-child(4) > img:nth-child(8) { animation-delay: 110.5s; }

@media (prefers-reduced-motion: reduce) {
    .cycling-cell img { animation: none; }
    .cycling-cell > img:nth-child(1) { opacity: 1; }
}

/* Centered content stack for solid hero: eyebrow → masthead → big date → subtitle */
.event-hero-content {
    position: relative;
    z-index: 2;
    min-height: clamp(320px, 48vh, 460px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* top, left/right, bottom — bottom is larger to reserve space for the masthead */
    padding: clamp(2rem, 5vw, 3.5rem) clamp(1rem, 4vw, 2rem) clamp(170px, 26vh, 260px);
    color: #fff;
    gap: 0.75rem;
}
.event-hero-content .public-hero__eyebrow {
    background: var(--color-accent-3);
    color: var(--color-text);
    padding: 0.4rem 1.1rem;
    border-radius: 999px;
    font-family: var(--font-display);
    letter-spacing: 0.14em;
    font-size: clamp(0.72rem, 0.5vw + 0.6rem, 0.92rem);
}
.event-hero-content .event-masthead {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    max-width: min(842px, 96%);   /* +30% larger again */
    height: auto;
    margin: 0;
    pointer-events: none;
    filter: drop-shadow(0 8px 22px rgba(0, 0, 0, 0.5));
}
.event-hero-content h1 {
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw + 1rem, 3.5rem);
    line-height: 1.05;
    letter-spacing: 0.02em;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}
.event-hero-content .event-venue {
    font-family: var(--font-display);
    font-size: clamp(1rem, 0.8vw + 0.7rem, 1.25rem);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    margin: 0;
}

/* Eventbrite RSVP CTA — orange brand styling */
.eventbrite-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.95rem 1.85rem;
    background: linear-gradient(135deg, #F05537 0%, #d1410c 100%);
    color: #fff;
    border-radius: 10px;
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 1vw + 0.65rem, 1.25rem);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: 0 8px 22px rgba(240, 85, 55, 0.32);
    transition: transform .18s ease, box-shadow .18s ease;
    text-decoration: none;
}
.eventbrite-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(240, 85, 55, 0.42);
    color: #fff;
}
.eventbrite-cta__mark {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    background: #fff;
    color: #F05537;
    border-radius: 6px;
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-size: 1.2rem;
    line-height: 1;
}

/* Rotating slideshow background — 8 slides, 6s each, 48s total cycle */
.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-slideshow .slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    animation: hero-rotate 48s infinite;
}
@keyframes hero-rotate {
    0%    { opacity: 0; transform: scale(1.04); }
    1.5%  { opacity: 1; }
    12.5% { opacity: 1; transform: scale(1); }
    14%   { opacity: 0; }
    100%  { opacity: 0; transform: scale(1); }
}
.hero-slideshow .slide:nth-child(1) { animation-delay: 0s; }
.hero-slideshow .slide:nth-child(2) { animation-delay: 6s; }
.hero-slideshow .slide:nth-child(3) { animation-delay: 12s; }
.hero-slideshow .slide:nth-child(4) { animation-delay: 18s; }
.hero-slideshow .slide:nth-child(5) { animation-delay: 24s; }
.hero-slideshow .slide:nth-child(6) { animation-delay: 30s; }
.hero-slideshow .slide:nth-child(7) { animation-delay: 36s; }
.hero-slideshow .slide:nth-child(8) { animation-delay: 42s; }
@media (prefers-reduced-motion: reduce) {
    .hero-slideshow .slide { animation: none; }
    .hero-slideshow .slide:nth-child(1) { opacity: 1; }
}

/* Lighter overlay (opacity ~half of previous values) */
.public-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(20, 12, 8, 0.27) 0%,
            rgba(20, 12, 8, 0.15) 35%,
            rgba(20, 12, 8, 0.25) 75%,
            rgba(20, 12, 8, 0.42) 100%);
    z-index: 1;
}

/* 9LE logo, top-left corner */
.hero-9le {
    position: absolute;
    top: clamp(1rem, 2.5vw, 1.75rem);
    left: clamp(1rem, 2.5vw, 1.75rem);
    z-index: 3;
    width: clamp(84px, 8.4vw, 120px);    /* 20% larger */
    height: auto;
    line-height: 0;
}
.hero-9le img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0) invert(1) drop-shadow(0 2px 6px rgba(0,0,0,0.45));
    transition: filter .25s ease;
}
.hero-9le:hover img,
.hero-9le:focus-visible img {
    filter:
        brightness(0) invert(1)
        drop-shadow(0 0 18px rgba(255,255,255,0.75))
        drop-shadow(0 0 8px rgba(255,255,255,0.55))
        drop-shadow(0 2px 6px rgba(0,0,0,0.45));
}

/* Hero buttons row, top-right corner — opposite the 9LE logo */
.hero-buttons {
    position: absolute;
    top: clamp(1rem, 2.5vw, 1.75rem);
    right: clamp(1rem, 2.5vw, 1.75rem);
    z-index: 3;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: flex-end;
    max-width: min(640px, 70vw);
}
.hero-buttons .connect-strip__link {
    padding: 0.5rem 0.95rem;
    font-size: 0.78rem;
    background: rgba(247, 235, 212, 0.75);
    border-color: rgba(247, 235, 212, 0.35);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.hero-buttons .connect-strip__link svg { width: 16px; height: 16px; }
/* Brand-colored social icons (IG = magenta/pink, FB = blue) */
.hero-buttons .connect-strip__link .icon-instagram { color: #E1306C; stroke: #E1306C; }
.hero-buttons .connect-strip__link .icon-facebook  { color: #1877F2; fill:   #1877F2; stroke: none; }
/* Hover white-state — Instagram is line-art (stroke only), Facebook is solid (fill only) */
.hero-buttons .connect-strip__link:hover .icon-instagram { color: #fff; stroke: #fff; }
.hero-buttons .connect-strip__link:hover .icon-facebook  { color: #fff; fill:   #fff; }
@media (max-width: 720px) {
    .hero-9le { width: clamp(72px, 14vw, 96px); }
    /* Pills stay top-right at all sizes — they wrap to multiple lines if needed */
    .hero-buttons {
        max-width: min(60vw, 360px);
        gap: 0.4rem;
    }
    .hero-buttons .connect-strip__link {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
    /* Tagline shrinks/repositions to avoid pill collision on small screens */
    .public-hero__tagline {
        top: clamp(50px, 8vh, 70px);
        font-size: 0.85rem;
        max-width: 70%;
    }
}
@media (max-width: 480px) {
    /* On very narrow screens the pills can dominate horizontally — hide tagline rather than collide */
    .public-hero__tagline { display: none; }
}

/* Composite hero image — anchored to bottom-center. Bounded by max-width AND
   max-height (consistent across all viewport sizes — no mobile jump). */
.public-hero__composite {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    z-index: 2;
    width: auto;
    height: auto;
    max-width: clamp(360px, 96vw, 960px);
    max-height: calc(100% - 130px);      /* leaves 130px above for pills + tagline + spacing */
    filter: drop-shadow(0 8px 22px rgba(0,0,0,0.55));
    pointer-events: none;
}

/* Tagline / slogan — sits above the composite, below the pills */
.public-hero__tagline {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: clamp(60px, 9vh, 90px);
    z-index: 2;
    width: min(680px, 88%);
    margin: 0;
    text-align: center;
    color: #fff;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: clamp(0.92rem, 0.6vw + 0.72rem, 1.2rem);
    line-height: 1.45;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.75);
    pointer-events: none;
}

/* Public synopsis card — single centered card */
.public-synopsis {
    max-width: 760px;
    margin: clamp(2rem, 5vw, 4rem) auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
    text-align: center;
}
.public-synopsis h2 {
    font-family: var(--font-display);
    color: var(--color-accent);
    font-size: clamp(1.5rem, 2vw + 0.6rem, 2.25rem);
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}
.public-synopsis p {
    font-size: clamp(1rem, 0.4vw + 0.9rem, 1.15rem);
    line-height: 1.65;
}
.public-synopsis p + p { margin-top: 1rem; }

/* Asymmetric collage — 15-cell magazine-style image grid */
.collage {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: clamp(110px, 13vw, 190px);
    grid-auto-flow: dense;
    gap: 6px;
    margin-block: clamp(2.5rem, 5vw, 4rem);
}
.collage__cell {
    position: relative;
    overflow: hidden;
    background: var(--color-bg-card);
}
.collage__cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s cubic-bezier(.2, .9, .25, 1);
}
.collage__cell:hover img { transform: scale(1.05); }
/* 13-cell asymmetric pattern — 3 feature tiles + smaller fillers, fills 5 rows × 6 cols cleanly */
.collage__cell:nth-child(1)  { grid-column: span 3; grid-row: span 2; }  /* hero feature */
.collage__cell:nth-child(2)  { grid-column: span 2; grid-row: span 1; }
.collage__cell:nth-child(3)  { grid-column: span 1; grid-row: span 2; }
.collage__cell:nth-child(4)  { grid-column: span 1; grid-row: span 1; }
.collage__cell:nth-child(5)  { grid-column: span 1; grid-row: span 1; }
.collage__cell:nth-child(6)  { grid-column: span 2; grid-row: span 2; }  /* feature */
.collage__cell:nth-child(7)  { grid-column: span 2; grid-row: span 1; }
.collage__cell:nth-child(8)  { grid-column: span 2; grid-row: span 1; }
.collage__cell:nth-child(9)  { grid-column: span 2; grid-row: span 2; }  /* feature */
.collage__cell:nth-child(10) { grid-column: span 2; grid-row: span 1; }
.collage__cell:nth-child(11) { grid-column: span 1; grid-row: span 1; }
.collage__cell:nth-child(12) { grid-column: span 1; grid-row: span 1; }
.collage__cell:nth-child(13) { grid-column: span 2; grid-row: span 1; }

@media (max-width: 720px) {
    .collage { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 40vw; }
    .collage__cell { grid-column: span 1 !important; grid-row: span 1 !important; }
    .collage__cell:nth-child(1),
    .collage__cell:nth-child(6),
    .collage__cell:nth-child(9) { grid-column: span 2 !important; }
}

/* Poster-style CTA cards (Watch Trailer / Fibe TV1) — 2-card centered pair post-premiere */
.poster-ctas {
    max-width: 1000px;
    margin: clamp(1.5rem, 4vw, 2.4rem) auto;
    padding: 0 clamp(0.75rem, 3vw, 1.5rem);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 320px));
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    z-index: 4;
}
.poster-ctas--overlap {
    margin-top: clamp(-5rem, -6vw, -2.5rem);
    margin-bottom: clamp(2rem, 4vw, 3rem);
}
.poster-cta {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    aspect-ratio: 3 / 2;
    padding: clamp(0.75rem, 1.6vw, 1.6rem);
    color: #fff;
    border-radius: calc(var(--card-radius) * 0.85);
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(80, 40, 20, 0.16);
    transition: transform .2s ease, box-shadow .2s ease;
}
.poster-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(80, 40, 20, 0.26);
    color: #fff;
}
.poster-cta__icon {
    width: clamp(28px, 4vw, 45px);
    height: clamp(28px, 4vw, 45px);
    margin-bottom: 0.6rem;
    color: var(--color-accent-3);
}
.poster-cta__title {
    font-family: var(--font-display);
    font-size: clamp(0.85rem, 1.2vw + 0.3rem, 1.55rem);
    letter-spacing: 0.02em;
    line-height: 1.05;
}
.poster-cta__sub {
    font-family: var(--font-display);
    font-size: clamp(0.55rem, 0.4vw + 0.4rem, 0.7rem);
    margin-top: 0.3rem;
    opacity: 0.88;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.poster-cta--trailer { background: linear-gradient(135deg, #c46b3e 0%, #8a3e1f 100%); }
.poster-cta--tickets { background: linear-gradient(135deg, var(--color-accent-alt) 0%, #2f4d63 100%); }
.poster-cta--watch   {
    background: #ffffff;
    color: var(--color-text);
    border: 1px solid var(--color-divider);
}
.poster-cta--watch .poster-cta__title { color: var(--color-text); }
.poster-cta--watch .poster-cta__sub   { color: var(--color-text-muted); }
.poster-cta--disabled {
    cursor: not-allowed;
    pointer-events: none;
    filter: saturate(0.6) brightness(0.96);
}
.poster-cta__badge {
    position: absolute;
    top: 0.55rem;
    right: 0.55rem;
    background: var(--color-accent-3);
    color: var(--color-text);
    font-family: var(--font-display);
    font-size: clamp(0.55rem, 0.4vw + 0.4rem, 0.68rem);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.22);
}
/* Fibe TV1 logo image inside the Watch CTA */
.poster-cta--watch .fibe-logo-img {
    width: clamp(80px, 14vw, 140px);
    height: auto;
    margin-bottom: 0.4rem;
}
/* Keep 3 columns on mobile too — never collapse to 1 */
@media (max-width: 720px) {
    .poster-ctas {
        gap: 0.45rem;
        padding: 0 0.6rem;
    }
    .poster-cta {
        padding: 0.55rem;
        aspect-ratio: 1 / 1;          /* slightly squarer on phones for readability */
        border-radius: 10px;
    }
    .poster-cta__icon {
        width: clamp(20px, 6vw, 30px);
        height: clamp(20px, 6vw, 30px);
        margin-bottom: 0.35rem;
    }
    .poster-cta--watch .fibe-logo-img { width: 70%; max-width: 110px; margin-bottom: 0.25rem; }
    .poster-cta__sub { font-size: 0.55rem; letter-spacing: 0.08em; }
    .poster-cta__badge {
        top: 0.3rem; right: 0.3rem;
        font-size: 0.5rem; padding: 0.15rem 0.45rem; letter-spacing: 0.08em;
    }
}

/* Facebook Page Plugin embed — responsive */
.social-embed {
    max-width: 540px;
    margin: clamp(2rem, 5vw, 4rem) auto;
    padding: 0 1rem;
    text-align: center;
}
.social-embed h2 {
    font-family: var(--font-display);
    color: var(--color-accent);
    font-size: clamp(1.5rem, 2vw + 0.6rem, 2.25rem);
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}
.social-embed iframe {
    max-width: 100%;
    border-radius: var(--card-radius);
    box-shadow: 0 6px 20px rgba(80, 40, 20, 0.14);
    background: #fff;
}

/* Connect strip — smaller pill-link row at bottom */
.connect-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    max-width: 900px;
    margin: clamp(1.5rem, 4vw, 2.5rem) auto;
    padding: 0 1rem;
}
.connect-strip__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.2rem;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid var(--color-divider);
    border-radius: 999px;
    color: var(--color-text);
    font-family: var(--font-display);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: background .15s ease, border-color .15s ease, color .15s ease, transform .15s ease;
    text-decoration: none;
}
.connect-strip__link:hover {
    background: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
    transform: translateY(-1px);
}
.connect-strip__link svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}
