/* ABOUTME: Main stylesheet for Keith's Movie Camp
   ABOUTME: Contains all page styles including hero, camp section, venue, and film rows */

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700;1,900&family=IBM+Plex+Mono:wght@300;400;500&family=Instrument+Serif:ital@0;1&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,700&family=Caveat:wght@400;500;600;700&family=Space+Mono:wght@400;700&family=Unbounded:wght@200;300;400;500;700;900&display=swap");

/* Neue Machina Inktrap - self-hosted */
@font-face {
    font-family: "Neue Machina";
    src:
        url("/public/fonts/PPNeueMachina-InktrapUltrabold.woff2")
            format("woff2"),
        url("/public/fonts/PPNeueMachina-InktrapUltrabold.woff")
            format("woff");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Neue Machina";
    src:
        url("/public/fonts/PPNeueMachina-InktrapRegular.woff2")
            format("woff2"),
        url("/public/fonts/PPNeueMachina-InktrapRegular.woff")
            format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Core palette */
    --cream: #fff8ed;
    --warm-white: #fef5e7;
    --blush: #f2d9d0;
    --coral: #e8715a;
    --cherry: #c23b4e;
    --wine: #7b1e3a;
    --midnight: #0e0a0c;
    --gold: #d4a843;
    --gold-light: #f0d78c;
    --text-dark: #2a1a1e;
    --text-mid: #6b4a52;
    --text-light: #a0808a;

    /* Venue palette (playbill) */
    --venue-cream: #f4ead5;
    --venue-cream-dark: #e8dcc0;
    --venue-ink: #1a1008;
    --venue-ink-light: #3a2c18;
    --venue-ink-muted: #6b5a42;
    --venue-ink-faint: #9a8a70;
    --venue-rule: #c4b494;
    --venue-rule-light: #d8cbad;
    --venue-accent: #8b2020;

    /* Font stacks */
    --font-mono: "IBM Plex Mono", monospace;
    --font-serif: "Cormorant Garamond", serif;
    --font-display: "Playfair Display", serif;
    --font-display-alt: "Instrument Serif", serif;
    --font-camp: "Neue Machina", "Unbounded", sans-serif;
    --font-handwriting: "Caveat", cursive;
}

body {
    background: var(--cream);
    color: var(--text-dark);
    font-family: var(--font-mono);
    overflow-x: hidden;
}

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
/* Small monospace labels - used for eyebrows, meta text */
.label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}
.label-sm {
    font-size: 9px;
}
.label-xs {
    font-size: 8px;
    letter-spacing: 0.2em;
}

/* Serif body text */
.prose {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    line-height: 1.75;
}
.prose-lg {
    font-size: 1.15rem;
}
.prose-sm {
    font-size: 0.95rem;
}

/* Italic serif for quotes and emphasis */
.serif-italic {
    font-family: var(--font-serif);
    font-style: italic;
}

/* Display headings */
.display {
    font-family: var(--font-display);
    font-weight: 900;
    line-height: 0.9;
}

/* ============================================================
   LINK UTILITIES
   ============================================================ */
/* Base link style for dark backgrounds (gold) */
.link-gold {
    color: rgba(212, 168, 67, 0.5);
    text-decoration: none;
    border-bottom: 1px solid rgba(212, 168, 67, 0.15);
    transition:
        color 0.3s ease,
        border-color 0.3s ease;
}
.link-gold:hover {
    color: var(--gold);
    border-color: var(--gold);
}

/* Link style for light backgrounds (ink) */
.link-ink {
    color: var(--venue-ink);
    text-decoration: underline;
    text-decoration-color: var(--venue-rule);
    text-underline-offset: 2px;
    transition:
        color 0.2s ease,
        text-decoration-color 0.2s ease;
}
.link-ink:hover {
    color: var(--venue-accent);
    text-decoration-color: var(--venue-accent);
}

/* ============================================================
   CAMPFIRE HERO
   ============================================================ */
.hero {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 2rem;
    background: linear-gradient(
        180deg,
        #050810 0%,
        #080d18 30%,
        #0a1020 50%,
        #0d1428 70%,
        #111830 85%,
        #151e38 100%
    );
}

/* Stars */
.stars {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.star {
    position: absolute;
    width: 1.5px;
    height: 1.5px;
    background: #fff;
    border-radius: 50%;
    animation: twinkle 4s ease-in-out infinite;
}
.star:nth-child(1) {
    top: 6%;
    left: 5%;
    animation-delay: 0s;
    width: 2px;
    height: 2px;
}
.star:nth-child(2) {
    top: 3%;
    left: 15%;
    animation-delay: 1.3s;
}
.star:nth-child(3) {
    top: 10%;
    left: 22%;
    animation-delay: 0.5s;
    width: 2px;
    height: 2px;
}
.star:nth-child(4) {
    top: 5%;
    left: 33%;
    animation-delay: 2.1s;
}
.star:nth-child(5) {
    top: 12%;
    left: 40%;
    animation-delay: 0.8s;
    width: 1px;
    height: 1px;
}
.star:nth-child(6) {
    top: 2%;
    left: 48%;
    animation-delay: 1.6s;
    width: 2.5px;
    height: 2.5px;
}
.star:nth-child(7) {
    top: 8%;
    left: 55%;
    animation-delay: 0.2s;
}
.star:nth-child(8) {
    top: 14%;
    left: 63%;
    animation-delay: 2.4s;
    width: 1px;
    height: 1px;
}
.star:nth-child(9) {
    top: 4%;
    left: 72%;
    animation-delay: 1s;
    width: 2px;
    height: 2px;
}
.star:nth-child(10) {
    top: 11%;
    left: 80%;
    animation-delay: 0.7s;
}
.star:nth-child(11) {
    top: 7%;
    left: 88%;
    animation-delay: 1.9s;
}
.star:nth-child(12) {
    top: 16%;
    left: 95%;
    animation-delay: 0.3s;
    width: 1px;
    height: 1px;
}
.star:nth-child(13) {
    top: 18%;
    left: 10%;
    animation-delay: 2.6s;
}
.star:nth-child(14) {
    top: 22%;
    left: 28%;
    animation-delay: 0.4s;
    width: 1px;
    height: 1px;
}
.star:nth-child(15) {
    top: 20%;
    left: 50%;
    animation-delay: 1.5s;
    width: 2px;
    height: 2px;
}
.star:nth-child(16) {
    top: 25%;
    left: 68%;
    animation-delay: 0.9s;
}
.star:nth-child(17) {
    top: 28%;
    left: 85%;
    animation-delay: 2.2s;
    width: 1px;
    height: 1px;
}
.star:nth-child(18) {
    top: 30%;
    left: 8%;
    animation-delay: 1.1s;
}
.star:nth-child(19) {
    top: 33%;
    left: 38%;
    animation-delay: 0.6s;
    width: 1px;
    height: 1px;
}
.star:nth-child(20) {
    top: 35%;
    left: 58%;
    animation-delay: 2s;
}
.star:nth-child(21) {
    top: 32%;
    left: 92%;
    animation-delay: 1.4s;
    width: 2px;
    height: 2px;
}
.star:nth-child(22) {
    top: 38%;
    left: 18%;
    animation-delay: 0.1s;
}
.star:nth-child(23) {
    top: 40%;
    left: 78%;
    animation-delay: 1.8s;
    width: 1px;
    height: 1px;
}
.star:nth-child(24) {
    top: 42%;
    left: 45%;
    animation-delay: 2.5s;
}
.star:nth-child(25) {
    top: 15%;
    left: 3%;
    animation-delay: 0.9s;
    width: 1px;
    height: 1px;
}
.star:nth-child(26) {
    top: 36%;
    left: 97%;
    animation-delay: 1.7s;
    width: 1px;
    height: 1px;
}
.star:nth-child(27) {
    top: 44%;
    left: 12%;
    animation-delay: 2.3s;
}
.star:nth-child(28) {
    top: 46%;
    left: 65%;
    animation-delay: 0.3s;
    width: 1px;
    height: 1px;
}

@keyframes twinkle {
    0%,
    100% {
        opacity: 0.25;
    }
    50% {
        opacity: 1;
    }
}

/* Campfire glow */
.fireglow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 55%;
    background:
        radial-gradient(
            ellipse 55% 65% at 50% 100%,
            rgba(240, 140, 30, 0.1) 0%,
            transparent 60%
        ),
        radial-gradient(
            ellipse 35% 35% at 50% 100%,
            rgba(255, 100, 30, 0.06) 0%,
            transparent 50%
        );
    pointer-events: none;
    z-index: 1;
    animation: fireFlicker 3s ease-in-out infinite;
}

@keyframes fireFlicker {
    0%,
    100% {
        opacity: 0.8;
    }
    30% {
        opacity: 1;
    }
    60% {
        opacity: 0.65;
    }
    80% {
        opacity: 0.95;
    }
}

/* Rising embers */
.embers {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 85%;
    pointer-events: none;
    z-index: 3;
    overflow: hidden;
}
.ember {
    position: absolute;
    bottom: -5%;
    width: 3px;
    height: 3px;
    background: #f0a030;
    border-radius: 50%;
    box-shadow: 0 0 4px 1px rgba(240, 160, 48, 0.4);
    animation: emberRise linear infinite;
}
.ember:nth-child(1) {
    left: 42%;
    animation-duration: 7s;
    animation-delay: 0s;
}
.ember:nth-child(2) {
    left: 48%;
    animation-duration: 8s;
    animation-delay: 1.2s;
    width: 2px;
    height: 2px;
}
.ember:nth-child(3) {
    left: 55%;
    animation-duration: 9s;
    animation-delay: 2.5s;
}
.ember:nth-child(4) {
    left: 44%;
    animation-duration: 6s;
    animation-delay: 3.8s;
    width: 2px;
    height: 2px;
}
.ember:nth-child(5) {
    left: 52%;
    animation-duration: 10s;
    animation-delay: 0.8s;
    width: 2px;
    height: 2px;
}
.ember:nth-child(6) {
    left: 39%;
    animation-duration: 8s;
    animation-delay: 4.5s;
}
.ember:nth-child(7) {
    left: 58%;
    animation-duration: 7s;
    animation-delay: 2s;
    width: 2px;
    height: 2px;
}
.ember:nth-child(8) {
    left: 50%;
    animation-duration: 11s;
    animation-delay: 1.5s;
}
.ember:nth-child(9) {
    left: 46%;
    animation-duration: 9s;
    animation-delay: 5s;
    width: 2px;
    height: 2px;
}
.ember:nth-child(10) {
    left: 54%;
    animation-duration: 7.5s;
    animation-delay: 3s;
}

@keyframes emberRise {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0.9;
    }
    20% {
        transform: translateY(-18vh) translateX(12px);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-45vh) translateX(-8px);
        opacity: 0.5;
    }
    80% {
        transform: translateY(-70vh) translateX(15px);
        opacity: 0.2;
    }
    100% {
        transform: translateY(-90vh) translateX(5px);
        opacity: 0;
    }
}

/* Hero content */
.hero-content {
    position: relative;
    z-index: 4;
}

.hero-invited {
    font-family: var(--font-handwriting);
    font-size: clamp(1.1rem, 2.2vw, 1.5rem);
    font-weight: 500;
    color: rgba(240, 190, 100, 0.45);
    margin-bottom: 0.25rem;
    transform: rotate(-2deg);
    animation: fadeSlideUp 0.8s ease-out 0.3s both;
}

.hero-keiths {
    font-family: var(--font-display-alt);
    font-style: italic;
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1;
    margin-bottom: 0.15em;
    animation: fadeSlideUp 0.8s ease-out 0.5s both;
}

.hero-movie {
    font-family: var(--font-camp);
    font-weight: 900;
    font-size: clamp(4.5rem, 13vw, 10rem);
    line-height: 0.88;
    letter-spacing: -0.03em;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 4px 40px rgba(240, 160, 50, 0.08);
    animation: fadeSlideUp 0.9s ease-out 0.65s both;
}

.hero-camp {
    font-family: var(--font-camp);
    font-weight: 900;
    font-size: clamp(4.5rem, 13vw, 10rem);
    line-height: 0.88;
    letter-spacing: -0.03em;
    background: linear-gradient(
        0deg,
        #f0a030 0%,
        #e8c070 30%,
        rgba(255, 255, 255, 0.7) 70%,
        rgba(255, 255, 255, 0.45) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 30px rgba(240, 160, 50, 0.18));
    animation: fadeSlideUp 0.9s ease-out 0.8s both;
    margin-bottom: 0.35em;
}

.hero-punch {
    font-family: var(--font-display-alt);
    font-style: italic;
    font-size: clamp(1.15rem, 2.2vw, 1.45rem);
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.4);
    max-width: 500px;
    margin: 0 auto 2rem;
    animation: fadeSlideUp 0.8s ease-out 1.1s both;
}

.hero-season {
    font-family: "Space Mono", monospace;
    font-size: 0.55rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.15);
    animation: fadeSlideUp 0.8s ease-out 1.3s both;
}
.hero-season .fire {
    font-style: normal;
    margin-right: 0.3em;
    text-shadow: 0 0 8px rgba(240, 140, 30, 0.4);
}
.hero-season .sep {
    margin: 0 0.6em;
    opacity: 0.5;
}

/* Scroll CTA */
.scroll-cta {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: fadeIn 0.8s ease-out 1.8s both;
    z-index: 5;
    cursor: pointer;
    transition: opacity 0.3s ease;
}
.scroll-cta:hover {
    opacity: 0.7;
}
.scroll-cta-text {
    font-family: var(--font-display-alt);
    font-style: italic;
    font-size: 1rem;
    color: rgba(240, 160, 50, 0.7);
    margin-bottom: 0.5rem;
}
.scroll-cta-arrows {
    color: rgba(240, 160, 50, 0.6);
    font-size: 1rem;
    animation: scrollBounce 2s ease-in-out infinite;
}

/* Reusable section scroll indicator */
.section-next {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0 1.5rem;
    cursor: pointer;
    transition: opacity 0.3s ease;
}
.section-next:hover {
    opacity: 0.8;
}
.section-next-text {
    font-family: var(--font-display-alt);
    font-style: italic;
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
    opacity: 0.5;
}
.section-next-arrow {
    font-size: 1rem;
    opacity: 0.4;
    animation: scrollBounce 2s ease-in-out infinite;
}
/* Color variants for different backgrounds */
.section-next--gold .section-next-text { color: var(--gold); }
.section-next--gold .section-next-arrow { color: var(--gold); }
.section-next--cream .section-next-text { color: var(--venue-ink-muted); }
.section-next--cream .section-next-arrow { color: var(--venue-ink-muted); }
.section-next--dark .section-next-text { color: rgba(255,255,255,0.4); }
.section-next--dark .section-next-arrow { color: rgba(255,255,255,0.3); }

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes scrollBounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(5px);
    }
}

/* ============================================================
   CAMP INTERSTITIAL — Broadway marquee
   ============================================================ */
.camp-section {
    background: #1a1430;
    position: relative;
    overflow: hidden;
    padding: 120px 24px;
    text-align: center;
}

/* Marquee bulb border */
.camp-bulbs {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}
.camp-bulb {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d4a843;
    box-shadow:
        0 0 6px 2px rgba(212, 168, 67, 0.6),
        0 0 12px 4px rgba(212, 168, 67, 0.2);
    animation: bulbFlicker 2s ease-in-out infinite alternate;
}
.camp-bulb.off {
    background: rgba(212, 168, 67, 0.15);
    box-shadow: none;
    animation: bulbFlickerOff 2s ease-in-out infinite alternate;
}

@keyframes bulbFlicker {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}
@keyframes bulbFlickerOff {
    0%,
    100% {
        opacity: 0.15;
    }
    50% {
        opacity: 0.9;
        background: #d4a843;
        box-shadow: 0 0 6px 2px rgba(212, 168, 67, 0.6);
    }
}

/* Inner glow */
.camp-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse at 50% 40%,
            rgba(212, 168, 67, 0.08) 0%,
            transparent 50%
        ),
        radial-gradient(
            ellipse at 50% 60%,
            rgba(194, 59, 78, 0.04) 0%,
            transparent 40%
        );
    pointer-events: none;
    z-index: 0;
}

.camp-inner {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(15px);
    transition:
        opacity 1s ease,
        transform 1s ease;
}
.camp-section.visible .camp-inner {
    opacity: 1;
    transform: translateY(0);
}

.camp-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}
.camp-orn-line {
    width: 50px;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(212, 168, 67, 0.3)
    );
}
.camp-orn-line:last-child {
    background: linear-gradient(
        to left,
        transparent,
        rgba(212, 168, 67, 0.3)
    );
}
.camp-orn-star {
    color: var(--gold);
    font-size: 12px;
    opacity: 0.5;
}

.camp-but-first {
    font-family: "IBM Plex Mono", monospace;
    font-size: 10px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

/* Big marquee title */
.camp-title-what-is {
    font-family: "Playfair Display", serif;
    font-weight: 900;
    font-size: clamp(48px, 9vw, 90px);
    line-height: 0.95;
    color: transparent;
    -webkit-text-stroke: 2px rgba(212, 168, 67, 0.4);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 0;
}
.camp-title-camp {
    font-family: "Playfair Display", serif;
    font-weight: 900;
    font-size: clamp(64px, 12vw, 130px);
    line-height: 0.95;
    color: var(--cream);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 16px;
    text-shadow:
        0 0 40px rgba(232, 113, 90, 0.3),
        0 0 80px rgba(194, 59, 78, 0.15);
}

.camp-subtitle {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 18px;
    color: var(--blush);
    margin-bottom: 40px;
    line-height: 1.7;
    opacity: 0.7;
}

.camp-quote {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 21px;
    color: var(--cream);
    line-height: 1.8;
    margin-bottom: 12px;
    padding: 0 20px;
    opacity: 0.9;
}

.camp-attribution {
    font-family: "IBM Plex Mono", monospace;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 40px;
}
.camp-attribution a {
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid rgba(212, 168, 67, 0.3);
    transition: all 0.3s ease;
}
.camp-attribution a:hover {
    border-color: var(--gold);
}

.camp-rule {
    width: 80px;
    height: 2px;
    background: linear-gradient(
        to right,
        transparent,
        var(--gold),
        transparent
    );
    margin: 0 auto 40px;
    opacity: 0.4;
}

.camp-body {
    font-family: "Cormorant Garamond", serif;
    font-size: 18px;
    color: var(--blush);
    line-height: 1.8;
    opacity: 0.7;
    margin-bottom: 48px;
}

.camp-body a {
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid rgba(212, 168, 67, 0.3);
    transition: all 0.3s ease;
}
.camp-body a:hover {
    border-color: var(--gold);
}

.camp-body p {
    margin-bottom: 20px;
}
.camp-body p:last-child {
    margin-bottom: 0;
}

/* Camp preview hovers */
.camp-preview {
    border-bottom: 1px dotted rgba(242, 217, 208, 0.5);
    cursor: pointer;
    transition: border-color 0.2s ease;
}
.camp-preview:hover {
    border-color: var(--gold);
}
.camp-preview-popup {
    position: fixed;
    z-index: 1000;
    pointer-events: none;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.5));
}
.camp-preview-popup.visible {
    opacity: 1;
    transform: translateY(0);
}
.camp-preview-popup img {
    display: block;
    max-width: 320px;
    max-height: 400px;
    width: auto;
    height: auto;
    border-radius: 4px;
}

/* Mobile backdrop for camp preview */
.camp-preview-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}
.camp-preview-backdrop.visible {
    opacity: 1;
    pointer-events: auto;
}

.lineup-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.lineup-label-line {
    width: 40px;
    height: 1px;
    background: rgba(212, 168, 67, 0.2);
}
.lineup-label-text {
    font-family: "IBM Plex Mono", monospace;
    font-size: 10px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: rgba(212, 168, 67, 0.35);
}

.camp-fade {
    height: 0;
}

/* ============================================================
   FILM ROWS
   ============================================================ */
/* ============================================================
   FILM PANELS — dark, immersive, each its own world
   ============================================================ */
.film-row {
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
    margin: 0;
    padding: 0;
}
.film-row.visible {
    opacity: 1;
    transform: translateY(0);
}

.mystery-films-container {
    display: flex;
    flex-direction: column;
}

/* Force mystery films to be visible immediately - no animation */
.mystery-films-container .film-row {
    opacity: 1 !important;
    transform: none !important;
}

.film-row-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.film-left {
    position: relative;
}

.film-number {
    font-family: var(--font-camp);
    font-weight: 900;
    font-size: 64px;
    line-height: 1;
    opacity: 0.2;
    position: absolute;
    top: -8px;
    left: -8px;
}

.film-eyebrow {
    font-family: "IBM Plex Mono", monospace;
    font-size: 9px;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding-left: 2px;
}

.film-title {
    font-family: "Playfair Display", serif;
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 12px;
    transition: all 0.4s ease;
}

.film-year-dir {
    font-family: "IBM Plex Mono", monospace;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.film-meta-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.film-pill {
    font-family: "IBM Plex Mono", monospace;
    font-size: 9px;
    letter-spacing: 2px;
    padding: 5px 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.film-pill::before {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
}

.film-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.film-hint {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 19px;
    line-height: 1.7;
    transition: color 0.4s ease;
}

.film-cta {
    display: inline-block;
    font-family: "IBM Plex Mono", monospace;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 32px;
    transition: all 0.4s ease;
    align-self: flex-start;
}
.film-remaining {
    display: block;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 1px;
    margin-top: 12px;
    opacity: 0.6;
}

.film-tba {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 14px;
    padding: 14px 0;
    align-self: flex-start;
}

/* Atmospheric background */
.film-wash {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    transition: opacity 0.6s ease;
}

/* Color band removed — clean edges */

/* Disclaimer between confirmed and unconfirmed */
.lineup-disclaimer {
    background: #1a1410;
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    padding: 32px 48px;
    text-align: center;
}
.disclaimer-inner {
    max-width: 600px;
    margin: 0 auto;
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(201, 168, 76, 0.4);
}

/* ============================================================
   01 · THE FALL
   Dark earth tones, the slooping title
   ============================================================ */
.row-fall {
    background: #1a1410;
    cursor: pointer;
}
.row-fall .film-wash {
    background:
        radial-gradient(
            ellipse at 15% 50%,
            rgba(212, 98, 43, 0.15) 0%,
            transparent 50%
        ),
        radial-gradient(
            ellipse at 85% 30%,
            rgba(42, 123, 111, 0.1) 0%,
            transparent 40%
        ),
        radial-gradient(
            ellipse at 50% 90%,
            rgba(139, 26, 26, 0.08) 0%,
            transparent 40%
        );
}
.row-fall .film-number {
    color: #d4622b;
}
.row-fall .film-eyebrow {
    color: #c9a84c;
}
.row-fall .film-title {
    font-size: clamp(48px, 6vw, 72px);
    color: #e8d5b0;
}
/* The sloop — each letter of FALL droops */
.fall-the {
    font-family: var(--font-display-alt);
    font-style: italic;
    font-size: clamp(18px, 2.5vw, 28px);
    color: #c9a84c;
    display: block;
    letter-spacing: 4px;
    margin-bottom: -8px;
}
.fall-letters {
    display: inline-flex;
    font-family: var(--font-display-alt);
    font-weight: 400;
}
.fall-letter {
    display: inline-block;
    transition: transform 8s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.fall-letter-f {
    color: #d4622b;
    transform: rotate(1.5deg) translateY(0px);
    transition-delay: 2s;
}
.fall-letter-a {
    color: #c9a84c;
    transform: rotate(2.8deg) translateY(1px) scaleY(1.005);
    transition-delay: 3s;
}
.fall-letter-l1 {
    color: #2a7b6f;
    transform: rotate(4.5deg) translateY(3px) scaleY(1.015)
        skewX(0.8deg);
    transition-delay: 4s;
}
.fall-letter-l2 {
    color: #8b1a1a;
    transform: rotate(7deg) translateY(8px) scaleY(1.04)
        skewX(1.8deg);
    transition-delay: 5s;
}

.row-fall .film-year-dir {
    color: rgba(201, 168, 76, 0.5);
}
.row-fall .film-pill {
    border: 1px solid rgba(201, 168, 76, 0.2);
    color: rgba(201, 168, 76, 0.6);
}
.row-fall .film-pill::before {
    background: #d4622b;
}
.row-fall .film-hint {
    color: rgba(232, 213, 176, 0.7);
}
.row-fall .film-cta {
    border: 2px solid #d4622b;
    color: #c9a84c;
    background: rgba(212, 98, 43, 0.1);
}
.row-fall .film-cta:hover {
    background: #d4622b;
    color: #1a1410 !important;
}
.row-fall:hover .film-title {
    color: #d4622b;
}

/* ============================================================
   02 · MARIE ANTOINETTE
   Rococo pastels on dark, powdered elegance
   ============================================================ */
.row-2 {
    background: #1c1520;
}
.row-2 .film-wash {
    background:
        radial-gradient(
            ellipse at 80% 20%,
            rgba(245, 198, 208, 0.15) 0%,
            transparent 45%
        ),
        radial-gradient(
            ellipse at 20% 80%,
            rgba(212, 197, 160, 0.1) 0%,
            transparent 40%
        ),
        radial-gradient(
            ellipse at 50% 50%,
            rgba(168, 216, 224, 0.05) 0%,
            transparent 40%
        );
}
.row-2 .film-number {
    color: #e8a0b8;
}
.row-2 .film-eyebrow {
    color: rgba(232, 160, 184, 0.5);
}
.row-2 .film-title {
    font-family: "Cormorant Garamond", serif;
    font-weight: 300;
    font-style: italic;
    font-size: clamp(36px, 5vw, 56px);
    color: rgba(245, 198, 208, 0.4);
    letter-spacing: 4px;
}
.row-2 .film-year-dir {
    color: rgba(232, 160, 184, 0.35);
}
.row-2 .film-hint {
    color: rgba(245, 198, 208, 0.6);
}
.row-2 .film-tba {
    color: rgba(232, 160, 184, 0.4);
}
.row-2 .film-pill {
    border: 1px solid rgba(232, 160, 184, 0.15);
    color: rgba(232, 160, 184, 0.4);
}
.row-2 .film-pill::before {
    background: #e8a0b8;
}
.row-2:hover .film-hint {
    color: rgba(245, 198, 208, 0.85);
}
.row-2:hover .film-title {
    color: rgba(245, 198, 208, 0.6);
}

/* ============================================================
   03 · ROMEO + JULIET
   Verona Beach neon tropics on dark
   ============================================================ */
.row-3 {
    background: #0e1518;
}
.row-3 .film-wash {
    background:
        radial-gradient(
            ellipse at 90% 40%,
            rgba(78, 205, 196, 0.12) 0%,
            transparent 40%
        ),
        radial-gradient(
            ellipse at 10% 60%,
            rgba(255, 107, 107, 0.12) 0%,
            transparent 40%
        ),
        radial-gradient(
            ellipse at 50% 90%,
            rgba(255, 230, 109, 0.06) 0%,
            transparent 35%
        );
}
.row-3 .film-number {
    color: #ff6b6b;
}
.row-3 .film-eyebrow {
    color: rgba(78, 205, 196, 0.5);
}
.row-3 .film-title {
    font-family: "Playfair Display", serif;
    font-weight: 900;
    font-style: italic;
    font-size: clamp(32px, 4.5vw, 48px);
    color: rgba(255, 107, 107, 0.4);
    text-transform: uppercase;
    letter-spacing: 3px;
}
.row-3 .film-year-dir {
    color: rgba(78, 205, 196, 0.35);
}
.row-3 .film-hint {
    color: rgba(200, 230, 230, 0.6);
}
.row-3 .film-tba {
    color: rgba(78, 205, 196, 0.4);
}
.row-3 .film-pill {
    border: 1px solid rgba(78, 205, 196, 0.15);
    color: rgba(78, 205, 196, 0.4);
}
.row-3 .film-pill::before {
    background: #ff6b6b;
}
.row-3:hover .film-hint {
    color: rgba(200, 230, 230, 0.85);
}
.row-3:hover .film-title {
    color: rgba(255, 107, 107, 0.6);
}

/* ============================================================
   04 · MOULIN ROUGE!
   Crimson velvet, midnight cabaret
   ============================================================ */
.row-4 {
    background: #14080e;
}
.row-4 .film-wash {
    background:
        radial-gradient(
            ellipse at 0% 50%,
            rgba(232, 53, 46, 0.18) 0%,
            transparent 40%
        ),
        radial-gradient(
            ellipse at 100% 30%,
            rgba(26, 26, 107, 0.1) 0%,
            transparent 40%
        ),
        radial-gradient(
            ellipse at 50% 0%,
            rgba(212, 168, 67, 0.08) 0%,
            transparent 35%
        );
}
.row-4 .film-number {
    color: #e8352e;
}
.row-4 .film-eyebrow {
    color: rgba(212, 168, 67, 0.5);
}
.row-4 .film-title {
    font-family: "Playfair Display", serif;
    font-weight: 900;
    font-size: clamp(36px, 5vw, 56px);
    color: rgba(232, 53, 46, 0.4);
    text-transform: uppercase;
    letter-spacing: 6px;
}
.row-4 .film-year-dir {
    color: rgba(212, 168, 67, 0.35);
}
.row-4 .film-hint {
    color: rgba(240, 200, 180, 0.6);
}
.row-4 .film-tba {
    color: rgba(212, 168, 67, 0.4);
}
.row-4 .film-pill {
    border: 1px solid rgba(232, 53, 46, 0.15);
    color: rgba(232, 53, 46, 0.4);
}
.row-4 .film-pill::before {
    background: #d4a843;
}
.row-4:hover .film-hint {
    color: rgba(240, 200, 180, 0.85);
}
.row-4:hover .film-title {
    color: rgba(232, 53, 46, 0.6);
}

/* ============================================================
   05 · GRAND BUDAPEST HOTEL
   Mendl's pink, lobby purple, Wes Anderson symmetry
   ============================================================ */
.row-5 {
    background: #16101a;
}
.row-5 .film-wash {
    background:
        radial-gradient(
            ellipse at 70% 20%,
            rgba(240, 200, 216, 0.15) 0%,
            transparent 40%
        ),
        radial-gradient(
            ellipse at 30% 80%,
            rgba(123, 77, 142, 0.1) 0%,
            transparent 40%
        ),
        radial-gradient(
            ellipse at 90% 90%,
            rgba(215, 160, 196, 0.06) 0%,
            transparent 30%
        );
}
.row-5 .film-number {
    color: #c39bd3;
}
.row-5 .film-eyebrow {
    color: rgba(215, 160, 196, 0.5);
}
.row-5 .film-title {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 500;
    font-size: clamp(24px, 3.5vw, 36px);
    color: rgba(240, 200, 216, 0.4);
    letter-spacing: 6px;
    text-transform: uppercase;
}
.row-5 .film-year-dir {
    color: rgba(195, 155, 211, 0.35);
}
.row-5 .film-hint {
    color: rgba(240, 200, 216, 0.6);
}
.row-5 .film-tba {
    color: rgba(215, 160, 196, 0.4);
}
.row-5 .film-pill {
    border: 1px solid rgba(215, 160, 196, 0.15);
    color: rgba(215, 160, 196, 0.4);
}
.row-5 .film-pill::before {
    background: #f0c8d8;
}
.row-5:hover .film-hint {
    color: rgba(240, 200, 216, 0.85);
}
.row-5:hover .film-title {
    color: rgba(240, 200, 216, 0.6);
}

/* ============================================================
   06 · HEDWIG AND THE ANGRY INCH
   Glam rock electricity, raw and beautiful
   ============================================================ */
.row-6 {
    background: #0e0e18;
}
.row-6 .film-wash {
    background:
        radial-gradient(
            ellipse at 0% 30%,
            rgba(65, 105, 225, 0.15) 0%,
            transparent 40%
        ),
        radial-gradient(
            ellipse at 100% 70%,
            rgba(255, 105, 180, 0.12) 0%,
            transparent 40%
        ),
        radial-gradient(
            ellipse at 50% 50%,
            rgba(255, 215, 0, 0.05) 0%,
            transparent 30%
        );
}
.row-6 .film-number {
    color: #4169e1;
}
.row-6 .film-eyebrow {
    color: rgba(255, 215, 0, 0.5);
}
.row-6 .film-title {
    font-family: "Playfair Display", serif;
    font-weight: 900;
    font-style: italic;
    font-size: clamp(36px, 5vw, 52px);
    color: rgba(65, 105, 225, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
}
.row-6 .film-year-dir {
    color: rgba(255, 105, 180, 0.35);
}
.row-6 .film-hint {
    color: rgba(200, 200, 240, 0.6);
}
.row-6 .film-tba {
    color: rgba(255, 215, 0, 0.4);
}
.row-6 .film-pill {
    border: 1px solid rgba(65, 105, 225, 0.15);
    color: rgba(65, 105, 225, 0.4);
}
.row-6 .film-pill::before {
    background: #ff69b4;
}
.row-6:hover .film-hint {
    color: rgba(200, 200, 240, 0.85);
}
.row-6:hover .film-title {
    color: rgba(65, 105, 225, 0.6);
}

/* ============================================================
   07 · SPEED RACER
   Candy neon overdrive, pure visual sugar
   ============================================================ */
.row-7 {
    background: #0a0a12;
}
.row-7 .film-wash {
    background:
        radial-gradient(
            ellipse at 20% 30%,
            rgba(0, 229, 255, 0.12) 0%,
            transparent 35%
        ),
        radial-gradient(
            ellipse at 80% 70%,
            rgba(255, 0, 128, 0.12) 0%,
            transparent 35%
        ),
        radial-gradient(
            ellipse at 50% 10%,
            rgba(191, 255, 0, 0.06) 0%,
            transparent 30%
        ),
        radial-gradient(
            ellipse at 50% 90%,
            rgba(255, 102, 0, 0.06) 0%,
            transparent 30%
        );
}
.row-7 .film-number {
    color: #ff0080;
}
.row-7 .film-eyebrow {
    color: rgba(0, 229, 255, 0.5);
}
.row-7 .film-title {
    font-family: "Playfair Display", serif;
    font-weight: 900;
    font-size: clamp(36px, 5vw, 56px);
    color: rgba(255, 0, 128, 0.4);
    text-transform: uppercase;
    letter-spacing: 8px;
}
.row-7 .film-year-dir {
    color: rgba(0, 229, 255, 0.35);
}
.row-7 .film-hint {
    color: rgba(200, 240, 255, 0.6);
}
.row-7 .film-tba {
    color: rgba(191, 255, 0, 0.4);
}
.row-7 .film-pill {
    border: 1px solid rgba(255, 0, 128, 0.15);
    color: rgba(255, 0, 128, 0.4);
}
.row-7 .film-pill::before {
    background: #00e5ff;
}
.row-7:hover .film-hint {
    color: rgba(200, 240, 255, 0.85);
}
.row-7:hover .film-title {
    color: rgba(255, 0, 128, 0.6);
}

/* ============================================================
   08 · SHOWGIRLS
   Vegas glitz, sequins and excess
   ============================================================ */
.row-8 {
    background: #12080a;
}
.row-8 .film-wash {
    background:
        radial-gradient(ellipse at 30% 20%, rgba(255, 180, 50, 0.12) 0%, transparent 40%),
        radial-gradient(ellipse at 70% 80%, rgba(255, 50, 150, 0.1) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
}
.row-8 .film-number { color: #ffd700; }
.row-8 .film-eyebrow { color: rgba(255, 180, 50, 0.5); }
.row-8 .film-title {
    font-family: "Playfair Display", serif;
    font-weight: 900;
    font-size: clamp(36px, 5vw, 56px);
    color: rgba(255, 215, 0, 0.4);
}
.row-8 .film-year-dir { color: rgba(255, 180, 50, 0.35); }
.row-8 .film-hint { color: rgba(255, 220, 180, 0.6); }
.row-8:hover .film-hint { color: rgba(255, 220, 180, 0.85); }
.row-8:hover .film-title { color: rgba(255, 215, 0, 0.6); }

/* ============================================================
   09 · BURLESQUE
   Cabaret crimson and spotlight gold
   ============================================================ */
.row-9 {
    background: #0f0808;
}
.row-9 .film-wash {
    background:
        radial-gradient(ellipse at 25% 30%, rgba(180, 20, 50, 0.15) 0%, transparent 40%),
        radial-gradient(ellipse at 75% 60%, rgba(255, 180, 50, 0.1) 0%, transparent 40%);
}
.row-9 .film-number { color: #b41432; }
.row-9 .film-eyebrow { color: rgba(255, 180, 50, 0.5); }
.row-9 .film-title {
    font-family: "Playfair Display", serif;
    font-weight: 900;
    font-style: italic;
    font-size: clamp(36px, 5vw, 56px);
    color: rgba(180, 20, 50, 0.4);
}
.row-9 .film-year-dir { color: rgba(255, 180, 50, 0.35); }
.row-9 .film-hint { color: rgba(255, 200, 180, 0.6); }
.row-9:hover .film-hint { color: rgba(255, 200, 180, 0.85); }
.row-9:hover .film-title { color: rgba(180, 20, 50, 0.6); }

/* ============================================================
   10 · BOTTOMS
   Gen-Z chaos, hot pink and electric
   ============================================================ */
.row-10 {
    background: #0a0812;
}
.row-10 .film-wash {
    background:
        radial-gradient(ellipse at 20% 40%, rgba(255, 20, 147, 0.12) 0%, transparent 35%),
        radial-gradient(ellipse at 80% 30%, rgba(0, 191, 255, 0.1) 0%, transparent 35%),
        radial-gradient(ellipse at 50% 80%, rgba(255, 255, 0, 0.05) 0%, transparent 30%);
}
.row-10 .film-number { color: #ff1493; }
.row-10 .film-eyebrow { color: rgba(0, 191, 255, 0.5); }
.row-10 .film-title {
    font-family: var(--font-camp);
    font-weight: 900;
    font-size: clamp(36px, 5vw, 56px);
    color: rgba(255, 20, 147, 0.4);
    text-transform: lowercase;
}
.row-10 .film-year-dir { color: rgba(0, 191, 255, 0.35); }
.row-10 .film-hint { color: rgba(255, 200, 230, 0.6); }
.row-10:hover .film-hint { color: rgba(255, 200, 230, 0.85); }
.row-10:hover .film-title { color: rgba(255, 20, 147, 0.6); }

/* ============================================================
   11 · STEPFORD WIVES
   Eerie pastel suburbia
   ============================================================ */
.row-11 {
    background: #0e100c;
}
.row-11 .film-wash {
    background:
        radial-gradient(ellipse at 30% 30%, rgba(144, 238, 144, 0.1) 0%, transparent 40%),
        radial-gradient(ellipse at 70% 70%, rgba(255, 182, 193, 0.08) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 255, 200, 0.05) 0%, transparent 50%);
}
.row-11 .film-number { color: #90ee90; }
.row-11 .film-eyebrow { color: rgba(255, 182, 193, 0.5); }
.row-11 .film-title {
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    font-size: clamp(36px, 5vw, 56px);
    color: rgba(144, 238, 144, 0.4);
    letter-spacing: 4px;
}
.row-11 .film-year-dir { color: rgba(255, 182, 193, 0.35); }
.row-11 .film-hint { color: rgba(220, 255, 220, 0.6); }
.row-11:hover .film-hint { color: rgba(220, 255, 220, 0.85); }
.row-11:hover .film-title { color: rgba(144, 238, 144, 0.6); }

/* ============================================================
   12 · BUT I'M A CHEERLEADER
   Pink and blue camp perfection
   ============================================================ */
.row-12 {
    background: #100810;
}
.row-12 .film-wash {
    background:
        radial-gradient(ellipse at 25% 40%, rgba(255, 105, 180, 0.15) 0%, transparent 40%),
        radial-gradient(ellipse at 75% 50%, rgba(135, 206, 250, 0.12) 0%, transparent 40%);
}
.row-12 .film-number { color: #ff69b4; }
.row-12 .film-eyebrow { color: rgba(135, 206, 250, 0.5); }
.row-12 .film-title {
    font-family: "Playfair Display", serif;
    font-weight: 900;
    font-size: clamp(32px, 4.5vw, 48px);
    color: rgba(255, 105, 180, 0.4);
}
.row-12 .film-year-dir { color: rgba(135, 206, 250, 0.35); }
.row-12 .film-hint { color: rgba(255, 200, 220, 0.6); }
.row-12:hover .film-hint { color: rgba(255, 200, 220, 0.85); }
.row-12:hover .film-title { color: rgba(255, 105, 180, 0.6); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--midnight);
    color: var(--cream);
    text-align: center;
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
}
.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            90deg,
            transparent 0px,
            rgba(120, 20, 40, 0.02) 2px,
            transparent 4px
        ),
        radial-gradient(
            ellipse at 50% 100%,
            rgba(120, 20, 40, 0.1) 0%,
            transparent 60%
        );
    pointer-events: none;
}
.footer-inner {
    position: relative;
    z-index: 1;
}
.footer-tagline {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 22px;
    color: var(--blush);
    margin-bottom: 24px;
    line-height: 1.6;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}
.footer-details {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(240, 216, 180, 0.3);
    margin-bottom: 8px;
}
.footer-details a {
    color: rgba(212, 168, 67, 0.5);
    text-decoration: none;
    border-bottom: 1px solid rgba(212, 168, 67, 0.15);
    transition: all 0.3s ease;
}
.footer-details a:hover {
    color: var(--gold);
    border-color: var(--gold);
}
.footer-fine {
    font-size: 10px;
    letter-spacing: 2px;
    color: rgba(240, 216, 180, 0.15);
    margin-top: 16px;
}

@media (max-width: 768px) {
    .film-row-inner {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 60px 24px;
    }
    .film-number {
        font-size: 48px;
        top: -4px;
    }
    .curtain-left,
    .curtain-right {
        width: 8%;
    }
}

/* ============================================================
   VENUE SECTION — Playbill style
   ============================================================ */
.venue-section {
    background: var(--venue-cream);
    position: relative;
    box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.03);
}
.venue-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(
            circle at 20% 30%,
            rgba(160, 130, 80, 0.04) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(160, 130, 80, 0.04) 0%,
            transparent 50%
        );
    pointer-events: none;
}
.venue-section::after {
    content: "";
    position: absolute;
    inset: 10px;
    border: 1px solid var(--venue-rule-light);
    pointer-events: none;
}
.venue-inner {
    position: relative;
    z-index: 1;
    padding: 3rem 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}
.venue-header {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--venue-ink);
    position: relative;
}
.venue-header::before,
.venue-header::after {
    font-size: 1rem;
    color: var(--venue-rule);
    position: absolute;
    top: 0;
}
.venue-header::before {
    content: "❧";
    left: 0;
}
.venue-header::after {
    content: "❧";
    right: 0;
    transform: scaleX(-1);
}

.venue-super {
    font-family: var(--font-mono);
    font-size: 0.55rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--venue-ink-muted);
    margin-bottom: 0.25rem;
}
.venue-title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(2.2rem, 5.5vw, 3.5rem);
    line-height: 1;
    color: var(--venue-ink);
    margin-bottom: 0.1em;
}
.venue-title .vt-light {
    font-weight: 400;
    font-style: italic;
}
.venue-address {
    font-family: var(--font-mono);
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--venue-ink-faint);
    margin-top: 0.5rem;
}

.venue-rule-thin {
    border: none;
    border-top: 1px solid var(--venue-rule);
    margin: 0;
}
.venue-staff-rule {
    border: none;
    border-top: 2px solid var(--venue-ink);
    margin: 0;
}
.venue-staff-rule-thin {
    border: none;
    border-top: 1px solid var(--venue-rule);
    margin: 0;
}
.venue-footer-rule {
    border: none;
    border-top: 2px solid var(--venue-ink);
    margin: 0;
}
.venue-footer-rule-thin {
    border: none;
    border-top: 1px solid var(--venue-rule);
    margin: 0;
}

.venue-columns {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 0;
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
}
.venue-col {
    padding: 0 1.75rem;
}
.venue-col-divider {
    background: linear-gradient(
        180deg,
        var(--venue-rule),
        var(--venue-rule-light),
        var(--venue-rule)
    );
    width: 1px;
}
.venue-col-label {
    font-family: var(--font-mono);
    font-size: 0.5rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--venue-ink-faint);
    margin-bottom: 1.25rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid var(--venue-rule-light);
    text-align: center;
}

.venue-fact {
    margin-bottom: 1.35rem;
}
.venue-fact:last-child {
    margin-bottom: 0;
}
.venue-fact-label {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    color: var(--venue-ink);
    margin-bottom: 0.3rem;
}
.venue-fact-text {
    font-family: var(--font-serif);
    font-size: 1.02rem;
    line-height: 1.65;
    color: var(--venue-ink-light);
}
.venue-fact-text a,
.venue-prose a {
    color: var(--venue-ink);
    text-decoration: underline;
    text-decoration-color: var(--venue-rule);
    text-underline-offset: 2px;
    transition:
        color 0.2s ease,
        text-decoration-color 0.2s ease;
}
.venue-fact-text a:hover,
.venue-prose a:hover {
    color: var(--venue-accent);
    text-decoration-color: var(--venue-accent);
}

.venue-prose p {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--venue-ink-light);
    margin-bottom: 1rem;
}
.venue-prose p:last-child {
    margin-bottom: 0;
}
.venue-prose strong {
    font-weight: 600;
    color: var(--venue-ink);
}

.venue-staff {
    padding: 1.75rem;
    text-align: center;
}
.venue-staff-label {
    font-family: var(--font-mono);
    font-size: 0.5rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--venue-ink-faint);
    margin-bottom: 1rem;
}
.venue-staff-text {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--venue-ink-light);
    max-width: 620px;
    margin: 0 auto 1.25rem;
}
.venue-staff-cta {
    font-family: var(--font-display);
    font-weight: 900;
    font-style: italic;
    font-size: 1.15rem;
    color: var(--venue-accent);
    margin: 0;
}

.venue-footer {
    padding: 1.5rem 1.75rem 0.5rem;
    text-align: center;
}
.venue-footer-link {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--venue-ink);
    border: 1px solid var(--venue-ink);
    padding: 0.7rem 1.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
}
.venue-footer-link:hover {
    background: var(--venue-ink);
    color: var(--venue-cream);
}
.venue-dog {
    margin-top: 1.25rem;
    font-family: var(--font-serif);
    font-size: 0.95rem;
    font-style: italic;
    color: var(--venue-ink-faint);
}
.venue-ornament {
    margin-top: 1rem;
    font-size: 0.7rem;
    color: var(--venue-rule);
    letter-spacing: 0.5em;
}

@media (max-width: 680px) {
    .venue-inner {
        padding: 2rem 1.25rem;
    }
    .venue-section::after {
        inset: 6px;
    }
    .venue-columns {
        grid-template-columns: 1fr;
        padding-top: 1.5rem;
        padding-bottom: 0;
    }
    .venue-col-divider {
        display: none;
    }
    .venue-col {
        padding: 0 0.5rem;
    }
    .venue-col:first-child {
        padding-bottom: 1.5rem;
        border-bottom: 1px solid var(--venue-rule-light);
        margin-bottom: 1.5rem;
    }
    .venue-col:last-child {
        padding-bottom: 1.5rem;
    }
    .venue-staff {
        padding: 1.5rem 0.5rem;
    }
    .venue-footer {
        padding: 1.25rem 0.5rem 0.5rem;
    }
}
