/* =============================================
   Yami Records – Clean Dark Minimal
   ============================================= */

/* --- Self-hosted fonts ------------------------------------ */
@font-face {
    font-family: 'Cormorant Garamond';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url("../fonts/cormorant-garamond-300.ec4225ec161b.woff2") format('woff2');
}
@font-face {
    font-family: 'Cormorant Garamond';
    font-style: italic;
    font-weight: 300;
    font-display: swap;
    src: url("../fonts/cormorant-garamond-300i.b0fa095eb2a6.woff2") format('woff2');
}
@font-face {
    font-family: 'Cormorant Garamond';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../fonts/cormorant-garamond-400.ec4225ec161b.woff2") format('woff2');
}
@font-face {
    font-family: 'Cormorant Garamond';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url("../fonts/cormorant-garamond-400i.b0fa095eb2a6.woff2") format('woff2');
}
@font-face {
    font-family: 'Cormorant Garamond';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url("../fonts/cormorant-garamond-500.ec4225ec161b.woff2") format('woff2');
}
@font-face {
    font-family: 'Cormorant Garamond';
    font-style: italic;
    font-weight: 500;
    font-display: swap;
    src: url("../fonts/cormorant-garamond-500i.b0fa095eb2a6.woff2") format('woff2');
}
@font-face {
    font-family: 'Cormorant Garamond';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url("../fonts/cormorant-garamond-600.ec4225ec161b.woff2") format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url("../fonts/inter-300.65850a373e25.woff2") format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../fonts/inter-400.65850a373e25.woff2") format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url("../fonts/inter-500.65850a373e25.woff2") format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url("../fonts/inter-600.65850a373e25.woff2") format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("../fonts/inter-700.65850a373e25.woff2") format('woff2');
}

:root {
    --bg: #0e0e0e;
    --bg-card: #1a1a1a;
    --bg-card-hover: #222;
    --text: #e8e8e8;
    --text-muted: #ccc;
    --accent: #fff;
    --accent-green: #4ade80;
    --accent-green-dim: rgba(74, 222, 128, .12);
    --accent-red: #ef4444;
    --border: rgba(255,255,255,.08);
    --radius: 10px;
}

/* --- Base -------------------------------------------------- */
* { box-sizing: border-box; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg);
    color: var(--text);
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--text); }
a:hover { color: #fff; }

::selection {
    background: rgba(255,255,255,.15);
}

/* --- Navbar ------------------------------------------------ */
.navbar {
    background: rgba(14,14,14,.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: .75rem 0;
    z-index: 1000;
}

.navbar-logo {
    height: 60px;
    filter: brightness(1);
}

.nav-top-link {
    color: rgba(255,255,255,.5);
    text-decoration: none;
    font-size: .85rem;
    font-weight: 500;
    letter-spacing: .02em;
    transition: color .15s;
}

.nav-top-link:hover {
    color: #fff;
}

/* --- Hero banner ------------------------------------------- */
.hero-banner {
    position: relative;
    width: 100%;
    padding-top: 60px; /* navbar offset */
    background: #000;
    overflow: hidden;
    max-height: 70vh;
}

.hero-banner-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.hero-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(14,14,14,.1) 0%, rgba(14,14,14,.75) 80%, rgba(14,14,14,1) 100%);
}

.hero-banner-content {
    position: absolute;
    bottom: 2.5rem;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 2;
}

.hero-banner-content .hero-tagline {
    color: rgba(255,255,255,.85);
    font-size: 1rem;
}

.hero-banner-content .hero-livestream {
    color: rgba(255,255,255,.7);
}

/* --- Hero intro (below banner) ----------------------------- */
.hero-intro {
    padding: 2.5rem 1rem 2rem;
}

.hero-tagline {
    font-size: .95rem;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: .04em;
    margin: 0;
}

.hero-livestream {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: var(--text-muted);
    font-size: .85rem;
    letter-spacing: .3px;
}

.livestream-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-green);
    animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: .3; }
    50% { opacity: 1; }
}

/* --- Content pages ----------------------------------------- */
.content-page {
    padding-top: 110px;
    padding-bottom: 60px;
    flex: 1;
}

.page-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: .02em;
    font-style: italic;
}

/* --- Gate page --------------------------------------------- */
.gate-page {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding-top: 60px;
}

.gate-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
}

.gate-icon {
    font-size: 2rem;
    opacity: .4;
}

.gate-card .form-control {
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--text);
}

.gate-card .form-control:focus {
    border-color: rgba(255,255,255,.25);
    box-shadow: 0 0 0 .2rem rgba(255,255,255,.06);
}

.gate-card .btn-light {
    background: #fff;
    color: #000;
    font-weight: 500;
    border: none;
}

.gate-card .btn-light:hover {
    background: #e0e0e0;
}

/* --- Event cards ------------------------------------------- */
.event-card {
    display: block;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-decoration: none;
    color: var(--text);
    transition: all .2s;
    position: relative;
    height: 100%;
}

.event-card:hover {
    background: var(--bg-card-hover);
    color: #fff;
    border-color: rgba(255,255,255,.15);
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: .25rem;
    font-size: .82rem;
    color: var(--text-muted);
}

.event-arrow {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    opacity: .3;
    transition: opacity .2s;
}

.event-card:hover .event-arrow {
    opacity: .8;
}

/* --- Filter tabs ------------------------------------------- */
.filter-tabs {
    display: flex;
    gap: .25rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0;
}

.filter-tab {
    padding: .5rem 1rem;
    font-size: .85rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: all .15s;
}

.filter-tab:hover {
    color: var(--text);
}

.filter-tab.active {
    color: #fff;
    border-bottom-color: #fff;
}

/* --- Date groups ------------------------------------------- */
.date-header {
    font-size: .9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--text-muted);
    margin-bottom: .75rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid var(--border);
}

/* --- Slot cards -------------------------------------------- */
.slot-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.2rem;
    height: 100%;
    transition: all .2s;
}

.slot-card.slot-available {
    border-color: rgba(74, 222, 128, .25);
}

.slot-card.slot-available:hover {
    border-color: rgba(74, 222, 128, .5);
    background: var(--bg-card-hover);
}

.slot-card.slot-booked {
    opacity: .55;
}

.slot-time {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: .5rem;
}

.slot-status {
    display: inline-block;
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: .2rem .6rem;
    border-radius: 4px;
}

.slot-status.available {
    background: var(--accent-green-dim);
    color: var(--accent-green);
}

.slot-status.booked {
    background: rgba(255,255,255,.06);
    color: var(--text-muted);
}

.slot-dj {
    font-size: .82rem;
    color: var(--text-muted);
    margin-top: .4rem;
}

.slot-card .btn-light {
    background: rgba(255,255,255,.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,.12);
    font-size: .82rem;
    font-weight: 500;
}

.slot-card .btn-light:hover {
    background: rgba(255,255,255,.15);
}

/* --- Booking form ------------------------------------------ */
.booking-form .form-control,
.booking-form .form-select {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 8px;
    padding: .6rem .9rem;
}

.booking-form .form-control::placeholder,
.booking-form .form-select::placeholder {
    color: rgba(255,255,255,.45);
}

.booking-form .form-control:focus {
    border-color: rgba(255,255,255,.25);
    box-shadow: 0 0 0 .2rem rgba(255,255,255,.06);
    background: var(--bg-card);
    color: var(--text);
}

.booking-form .form-label {
    font-size: .85rem;
    font-weight: 500;
    color: var(--text);
}

.booking-form .btn-light {
    background: #fff;
    color: #000;
    font-weight: 500;
    border: none;
}

.booking-form .btn-light:hover {
    background: #e0e0e0;
}

/* --- Confirmation ------------------------------------------ */
.confirm-icon {
    font-size: 4rem;
    color: var(--accent-green);
}

.confirm-icon .bi-check-circle-fill {
    animation: pop-in .5s ease;
}

@keyframes pop-in {
    0% { transform: scale(.5); opacity: 0; }
    60% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

.confirm-details {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.detail-label {
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--text-muted);
    margin-bottom: .15rem;
}

/* --- Shadow figures corner decoration ---------------------- */
.shadows-corner {
    position: fixed;
    pointer-events: none;
    z-index: 0;
    opacity: .12;
}

.shadows-corner img {
    height: 150px;
    width: auto;
    filter: invert(1) brightness(1.5);
    display: block;
    animation: shadow-dance 4s ease-in-out infinite;
}

.shadows-corner.bottom-right {
    bottom: 0;
    right: 0;
}

@keyframes shadow-dance {
    0%, 100% { transform: translateY(0) scaleX(1); }
    15% { transform: translateY(-3px) scaleX(1.02); }
    30% { transform: translateY(0) scaleX(0.98); }
    45% { transform: translateY(-2px) scaleX(1.01); }
    60% { transform: translateY(1px) scaleX(0.99); }
    75% { transform: translateY(-1px) scaleX(1.01); }
}

/* --- Footer ------------------------------------------------ */
footer {
    padding: 1rem 0 1.5rem;
    color: var(--text-muted);
    margin-top: auto;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
}

.footer-socials a {
    color: rgba(255,255,255,.35);
    font-size: 1.25rem;
    transition: color .15s;
    text-decoration: none;
}

.footer-socials a:hover {
    color: #fff;
}

/* --- Newsletter (inline) ----------------------------------- */
.newsletter-inline {
    max-width: 340px;
    margin-bottom: 1.5rem;
}

.newsletter-row {
    display: flex;
    align-items: stretch;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 6px;
    overflow: hidden;
    background: #1a1a1a;
    height: 40px;
}

.newsletter-email {
    flex: 1;
    min-width: 0;
    background: transparent !important;
    background-color: transparent !important;
    border: none;
    color: #e8e8e8;
    color-scheme: dark;
    padding: 0 .85rem;
    font-size: .8rem;
    font-family: inherit;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.newsletter-email:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px #1a1a1a inset !important;
    -webkit-text-fill-color: #e8e8e8 !important;
}

.newsletter-email::placeholder {
    color: rgba(255,255,255,.28);
}

.newsletter-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    flex-shrink: 0;
    background: transparent;
    border: none;
    border-left: 1px solid rgba(255,255,255,.08);
    color: rgba(255,255,255,.4);
    cursor: pointer;
    transition: color .15s;
    font-size: .85rem;
}

.newsletter-submit:hover {
    color: #fff;
}

.newsletter-legal {
    font-size: .6rem;
    color: rgba(255,255,255,.3);
    margin: .3rem 0 0;
}

.newsletter-legal a {
    color: rgba(255,255,255,.3);
    text-decoration: underline;
}

/* --- Buttons (overrides) ----------------------------------- */
.btn {
    border-radius: 8px;
    font-weight: 500;
    transition: all .15s;
}

.btn-outline-light {
    border-color: rgba(255,255,255,.2);
}

.btn-outline-light:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.35);
}

/* --- Forms (overrides) ------------------------------------- */
.form-control,
.form-select {
    border-radius: 8px;
}

/* --- Alerts ------------------------------------------------ */
.alert {
    border-radius: 8px;
    border: none;
}

/* --- Livestream page --------------------------------------- */
.livestream-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 60vh;
}

.livestream-header {
    margin-bottom: 1.5rem;
}

.stream-title {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 400;
    margin: 0;
}

/* Live badge */
.live-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--accent-red);
    color: #fff;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .06em;
    padding: .35rem .9rem;
    border-radius: 6px;
}

.live-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    animation: pulse-dot 1.5s ease infinite;
}

/* Stream container: player + chat side by side */
.stream-container {
    display: flex;
    gap: 1rem;
    width: 100%;
    max-width: 1200px;
}

.stream-player {
    flex: 1;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    background: #000;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}

.stream-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.stream-iframe-mixcloud {
    /* Mixcloud widget is shorter than 16:9 */
}

.stream-chat {
    width: 340px;
    min-height: 500px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    flex-shrink: 0;
}

.chat-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Offline state */
.livestream-offline {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
}

.offline-icon {
    font-size: 3rem;
    opacity: .25;
    margin-bottom: 1rem;
}

.offline-links {
    margin-top: .5rem;
}

/* Nav live indicator */
.nav-top-link.nav-live {
    color: #fff;
    font-weight: 600;
}

.nav-live-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-red);
    margin-right: .3rem;
    animation: pulse-dot 1.5s ease infinite;
    vertical-align: middle;
}

/* Homepage live link */
.hero-livestream-link {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    transition: opacity .2s;
}

.hero-livestream-link:hover {
    opacity: .85;
    color: #fff;
}

.livestream-dot-live {
    background: var(--accent-red);
    animation: pulse-dot 1s ease infinite;
}

/* Responsive: stack player + chat on mobile */
@media (max-width: 900px) {
    .stream-container {
        flex-direction: column;
    }
    .stream-chat {
        width: 100%;
        min-height: 400px;
    }
    .stream-player {
        padding-bottom: 56.25%;
    }
}

.livestream-placeholder {
    font-size: .9rem;
    color: var(--text-muted);
}

/* --- Contact page ------------------------------------------ */
.contact-link {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    color: var(--text);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 400;
    padding: .6rem 1.2rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all .2s;
    width: 100%;
    max-width: 280px;
    justify-content: center;
}

.contact-link:hover {
    color: #fff;
    border-color: rgba(255,255,255,.25);
    background: var(--bg-card);
}

/* --- Apply form page --------------------------------------- */
.apply-form .form-control,
.apply-form .form-select {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 8px;
    padding: .6rem .9rem;
}

.apply-form .form-control::placeholder,
.apply-form .form-select::placeholder {
    color: rgba(255,255,255,.45);
}

.apply-form .form-control:focus {
    border-color: rgba(255,255,255,.25);
    box-shadow: 0 0 0 .2rem rgba(255,255,255,.06);
    background: var(--bg-card);
    color: var(--text);
}

.apply-form .form-label {
    font-size: .85rem;
    font-weight: 500;
    color: var(--text);
}

.apply-form .btn-light {
    background: #fff;
    color: #000;
    font-weight: 500;
    border: none;
}

.apply-form .btn-light:hover {
    background: #e0e0e0;
}

/* --- Availability window card ------------------------------ */
.window-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.2rem 1.4rem;
}

.window-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: .75rem;
}

.window-time {
    font-size: 1.1rem;
    font-weight: 600;
}

/* --- Timeline bar ------------------------------------------ */
.timeline-bar {
    position: relative;
    height: 36px;
    background: rgba(255,255,255,.04);
    border-radius: 6px;
    overflow: hidden;
}

.timeline-segment {
    position: absolute;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    overflow: hidden;
    transition: opacity .15s;
}

.timeline-segment.booked {
    background: rgba(255,255,255,.12);
}

.timeline-segment.available {
    background: var(--accent-green-dim);
    border: 1px solid rgba(74, 222, 128, .2);
}

.timeline-label {
    font-size: .7rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 .4rem;
    color: var(--text-muted);
}

.timeline-segment.available .timeline-label {
    color: var(--accent-green);
}

/* --- Duration picker grid ---------------------------------- */
.duration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: .75rem;
}

.duration-option {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: all .2s;
}

.duration-option:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255,255,255,.2);
    color: #fff;
}

/* --- Time picker grid -------------------------------------- */
.time-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: .5rem;
}

.time-option {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .7rem .5rem;
    background: var(--bg-card);
    border: 1px solid rgba(74, 222, 128, .25);
    border-radius: 8px;
    color: var(--accent-green);
    font-weight: 600;
    font-size: .95rem;
    cursor: pointer;
    transition: all .2s;
}

.time-option:hover {
    background: var(--accent-green-dim);
    border-color: var(--accent-green);
    color: #fff;
}

/* --- Booking summary strip --------------------------------- */
.booking-summary {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: .75rem 1rem;
}

/* --- Bootstrap overrides for readability -------------------- */
.text-muted {
    color: rgba(255,255,255,.6) !important;
}

/* --- Responsive -------------------------------------------- */
@media (max-width: 768px) {
    .hero-logo { max-width: 200px; }
    .navbar-logo { height: 44px; }
    .page-title { font-size: 1.8rem; }
    .content-page { padding-top: 90px; padding-bottom: 40px; }

    .hero-banner {
        max-height: 50vh;
    }

    .stream-container {
        flex-direction: column;
    }

    .stream-chat {
        width: 100%;
        min-height: 350px;
    }

    .contact-link {
        width: 100%;
        max-width: 280px;
    }

    .window-card {
        padding: 1rem;
    }

    .window-time {
        font-size: .95rem;
    }
}

/* --- Mobile hamburger menu --------------------------------- */
.nav-mobile-toggle {
    background: none;
    border: none;
    color: rgba(255,255,255,.6);
    font-size: 1.5rem;
    padding: .25rem;
    line-height: 1;
    cursor: pointer;
    transition: color .15s;
}

.nav-mobile-toggle:hover {
    color: #fff;
}

@media (max-width: 767.98px) {
    .nav-links {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(14,14,14,.95);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        padding: .75rem 1.25rem 1rem;
        gap: 0;
    }

    .nav-links.open {
        display: flex !important;
    }

    .nav-links .nav-top-link {
        display: block;
        padding: .6rem 0;
        font-size: .95rem;
        border-bottom: 1px solid var(--border);
    }

    .nav-links .nav-top-link:last-child {
        border-bottom: none;
    }
}

/* --- Small mobile ------------------------------------------ */
@media (max-width: 575.98px) {
    .page-title { font-size: 1.5rem; }
    .navbar-logo { height: 38px; }
    .content-page { padding-top: 80px; padding-bottom: 30px; }

    .hero-banner-content {
        bottom: 1.5rem;
        padding: 0 1rem;
    }

    .hero-banner-content .hero-tagline {
        font-size: .85rem;
    }

    .hero-intro {
        padding: 1.5rem .75rem 1.5rem;
    }

    .gate-card {
        padding: 1.5rem 1.25rem;
    }

    .schedule-item {
        flex-direction: column;
        align-items: flex-start;
        gap: .35rem;
    }

    .schedule-time {
        min-width: auto;
    }

    .duration-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .time-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .timeline-label {
        font-size: .6rem;
    }

    .timeline-bar {
        height: 30px;
    }

    .offline-icon {
        font-size: 2rem;
    }

    .filter-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .filter-tab {
        white-space: nowrap;
        flex-shrink: 0;
    }
}

/* --- Schedule – name list ---------------------------------- */
.name-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 700px;
}

.name-list-item {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-style: normal;
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255,255,255,.55);
    padding: .6rem 0;
    cursor: default;
    transition: opacity .3s, color .3s;
    letter-spacing: .02em;
    display: flex;
    align-items: baseline;
}

.name-list:hover .name-list-item {
    opacity: 0.25;
}

.name-list .name-list-item:hover {
    opacity: 1;
    color: #fff;
}

.name-list-item .item-date {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-style: normal;
    font-size: 1rem;
    color: rgba(255,255,255,.3);
    letter-spacing: .02em;
    flex-shrink: 0;
    min-width: 10rem;
    text-align: right;
}

.name-list-item .item-name {
    margin-left: 1.5rem;
}

/* Tooltip */
.cloud-tooltip {
    position: fixed;
    z-index: 9999;
    pointer-events: none;
    background: rgba(20,20,20,.92);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 8px;
    padding: .6rem .85rem;
    font-size: .82rem;
    color: var(--text);
    opacity: 0;
    transition: opacity .15s;
    max-width: 260px;
    line-height: 1.5;
}

.cloud-tooltip.visible {
    opacity: 1;
}

.cloud-tip-date {
    color: rgba(255,255,255,.45);
    font-size: .75rem;
}

.cloud-tip-sub {
    color: rgba(255,255,255,.55);
    font-size: .78rem;
}

.cloud-tip-link {
    color: rgba(255,255,255,.6);
    text-decoration: none;
    font-size: .78rem;
}

.schedule-empty {
    text-align: center;
    padding: 4rem 1rem;
    color: rgba(255,255,255,.4);
}

.schedule-empty i {
    font-size: 2.5rem;
    margin-bottom: .75rem;
    display: block;
}

.schedule-empty p {
    margin-bottom: 1rem;
    font-size: .95rem;
}

/* --- Homepage events section ------------------------------- */
.home-events {
    padding: 3rem 0 2rem;
}

.home-section-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 400;
    font-style: italic;
    letter-spacing: .05em;
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,.7);
}

.name-cloud-home {
}

.name-cloud-events {
}

.schedule-section {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
}

.schedule-tabs {
    justify-content: center;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.schedule-section-label {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.3rem;
    font-weight: 400;
    font-style: italic;
    letter-spacing: .05em;
    color: rgba(255,255,255,.45);
    margin-bottom: 1rem;
}

@media (max-width: 575.98px) {
    .schedule-section {
        margin-bottom: 2.5rem;
    }

    .name-list-item {
        display: grid;
        grid-template-columns: 8.5rem minmax(0, 1fr);
        align-items: start;
        gap: 1rem;
    }

    .name-list-item .item-date {
        min-width: 0;
        font-size: .88rem;
    }

    .name-list-item .item-name {
        min-width: 0;
        margin-left: 0;
        overflow-wrap: anywhere;
    }
}

/* --- Archive grid ------------------------------------------ */
.archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.archive-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: background .15s, transform .15s;
}

.archive-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-2px);
}

.archive-thumb-link {
    display: block;
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.archive-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.archive-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.35);
    opacity: 0;
    transition: opacity .2s;
    font-size: 2.5rem;
    color: #fff;
}

.archive-thumb-link:hover .archive-play {
    opacity: 1;
}

.archive-thumb--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card-hover, #1a1a1a);
    color: rgba(255,255,255,.35);
    font-size: 2rem;
}

.archive-source {
    position: absolute;
    top: .5rem;
    right: .5rem;
    font-size: .6rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .2rem .45rem;
    border-radius: 3px;
    background: rgba(0,0,0,.55);
    color: rgba(255,255,255,.85);
    z-index: 1;
}

.archive-info {
    padding: .85rem 1rem 1rem;
}

.archive-title {
    font-weight: 600;
    font-size: .95rem;
    margin-bottom: .25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.archive-dj {
    font-size: .85rem;
    color: var(--text-muted);
}

.archive-meta {
    margin-top: .35rem;
    font-size: .78rem;
    color: rgba(255,255,255,.4);
    display: flex;
    gap: .75rem;
}

/* =============================================
   Public site coherence refresh
   Matches the new homepage visual language.
   ============================================= */

:root {
    --bg: #0c0c0d;
    --bg-card: #151516;
    --bg-card-hover: #1b1b1c;
    --text: #ededec;
    --text-muted: rgba(237,237,236,.56);
    --accent: #ededec;
    --accent-green: #ededec;
    --accent-green-dim: rgba(237,237,236,.08);
    --accent-red: #ededec;
    --border: rgba(255,255,255,.09);
    --border-strong: rgba(255,255,255,.18);
    --font-sans: 'Archivo', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    --radius: 6px;
}

@keyframes ym-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .25; }
}

@keyframes ym-eq {
    0%, 100% { transform: scaleY(.2); }
    50% { transform: scaleY(1); }
}

html,
body {
    background: var(--bg);
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    color: var(--text);
    letter-spacing: 0;
    overflow-x: hidden;
}

main,
.home-page,
.content-page,
.site-topbar,
.site-footer {
    max-width: 100%;
    overflow-x: clip;
}

main {
    position: relative;
    z-index: 1;
    flex: 1;
}

::selection {
    background: var(--text);
    color: var(--bg);
}

a {
    color: inherit;
}

a:hover {
    color: var(--text);
}

.site-grain {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: .045;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Shared top bar */
.site-topbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(12,12,13,.82);
    border-bottom: 1px solid rgba(255,255,255,.07);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.site-topbar-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 18px 32px;
}

.site-brand {
    display: flex;
    align-items: baseline;
    gap: 8px;
    color: var(--text);
    text-decoration: none;
    line-height: 1;
    flex-shrink: 0;
}

.site-brand:hover {
    color: var(--text);
}

.site-brand-word {
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 0;
}

.site-brand-sub,
.site-location,
.nav-top-link,
.nav-status {
    font-family: var(--font-mono);
}

.site-brand-sub {
    font-size: 9.5px;
    letter-spacing: .3em;
    color: rgba(237,237,236,.5);
}

.site-location {
    font-size: 11px;
    letter-spacing: .1em;
    color: rgba(237,237,236,.4);
    white-space: nowrap;
}

.nav-links {
    margin-left: auto;
}

.nav-top-link {
    color: rgba(237,237,236,.62);
    text-decoration: none;
    font-size: 11.5px;
    font-weight: 400;
    letter-spacing: .06em;
    transition: color .15s;
}

.nav-top-link:hover,
.nav-top-link:focus-visible {
    color: var(--text);
}

.nav-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(237,237,236,.4);
    font-size: 11px;
    letter-spacing: .12em;
    text-decoration: none;
    white-space: nowrap;
}

.nav-status.nav-live {
    color: var(--text);
}

.nav-live-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--text);
    margin-right: 0;
    animation: ym-pulse 1.3s ease infinite;
}

.nav-mobile-toggle {
    background: transparent;
    border: 1px solid rgba(255,255,255,.14);
    color: rgba(237,237,236,.68);
    width: 34px;
    height: 34px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    line-height: 1;
    cursor: pointer;
    transition: color .15s, border-color .15s, background .15s;
}

.nav-mobile-toggle:hover {
    color: var(--text);
    border-color: rgba(255,255,255,.28);
    background: rgba(255,255,255,.04);
}

.site-messages {
    position: fixed;
    top: 74px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1200;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: min(560px, 92vw);
}

.site-messages .alert {
    margin: 0;
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: .04em;
    padding: 12px 42px 12px 16px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(12,12,13,.94);
    backdrop-filter: blur(16px);
    color: var(--text);
}

/* Interior pages */
.content-page {
    padding-top: 82px;
    padding-bottom: 86px;
    flex: 1;
}

.content-page .container,
.gate-page .container {
    max-width: 1100px;
}

.page-title {
    font-family: var(--font-sans);
    font-size: clamp(34px, 5vw, 60px);
    font-weight: 700;
    line-height: .98;
    letter-spacing: 0;
    font-style: normal;
    color: var(--text);
}

.content-page h5,
.gate-card h3 {
    font-family: var(--font-sans);
    font-weight: 600;
    letter-spacing: 0;
}

.text-muted {
    color: var(--text-muted) !important;
}

.small,
small,
.form-text {
    font-family: var(--font-mono);
    letter-spacing: .03em;
}

.date-header,
.detail-label,
.form-label,
.schedule-section-label,
.archive-meta,
.archive-dj,
.event-meta,
.stream-title,
.livestream-placeholder {
    font-family: var(--font-mono);
}

/* Buttons and links */
.btn {
    border-radius: var(--radius);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-weight: 500;
    transition: background .15s, border-color .15s, color .15s, opacity .15s;
}

.btn-light,
.booking-form .btn-light,
.apply-form .btn-light,
.gate-card .btn-light,
.slot-card .btn-light {
    background: rgba(237,237,236,.95);
    color: var(--bg);
    border: 1px solid rgba(237,237,236,.95);
}

.btn-light:hover,
.booking-form .btn-light:hover,
.apply-form .btn-light:hover,
.gate-card .btn-light:hover,
.slot-card .btn-light:hover {
    background: var(--text);
    color: var(--bg);
    border-color: var(--text);
    opacity: .9;
}

.btn-outline-light {
    color: rgba(237,237,236,.78);
    border-color: rgba(255,255,255,.22);
    background: transparent;
}

.btn-outline-light:hover {
    color: var(--text);
    background: rgba(255,255,255,.06);
    border-color: rgba(255,255,255,.34);
}

.contact-link,
.filter-tab,
.duration-option,
.time-option,
.cloud-tip-link {
    font-family: var(--font-mono);
}

/* Forms */
.form-control,
.form-select,
.booking-form .form-control,
.booking-form .form-select,
.apply-form .form-control,
.apply-form .form-select,
.gate-card .form-control {
    background: #111112;
    border: 1px solid rgba(255,255,255,.12);
    color: var(--text);
    border-radius: var(--radius);
    font-family: var(--font-sans);
    padding: .75rem .9rem;
}

.form-control::placeholder,
.form-select::placeholder,
.booking-form .form-control::placeholder,
.booking-form .form-select::placeholder,
.apply-form .form-control::placeholder,
.apply-form .form-select::placeholder {
    color: rgba(237,237,236,.32);
}

.form-control:focus,
.form-select:focus,
.booking-form .form-control:focus,
.booking-form .form-select:focus,
.apply-form .form-control:focus,
.apply-form .form-select:focus,
.gate-card .form-control:focus {
    background: #111112;
    border-color: rgba(255,255,255,.34);
    color: var(--text);
    box-shadow: 0 0 0 .2rem rgba(255,255,255,.05);
}

.form-label,
.apply-form .form-label,
.booking-form .form-label {
    color: rgba(237,237,236,.64);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

/* Cards and framed surfaces */
.gate-card,
.event-card,
.slot-card,
.window-card,
.confirm-details,
.booking-summary,
.stream-chat,
.cloud-tooltip {
    background: rgba(21,21,22,.72);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.gate-card,
.confirm-details {
    padding: 2rem;
}

.event-card,
.slot-card,
.window-card {
    color: var(--text);
    box-shadow: none;
}

.event-card:hover,
.slot-card.slot-available:hover,
.duration-option:hover {
    background: rgba(255,255,255,.04);
    border-color: rgba(255,255,255,.18);
    color: var(--text);
}

.event-card h5 {
    font-weight: 600;
    letter-spacing: 0;
}

.event-arrow {
    color: rgba(237,237,236,.45);
}

.gate-page {
    min-height: calc(100vh - 68px);
    padding-top: 64px;
    padding-bottom: 80px;
}

.gate-icon,
.offline-icon,
.schedule-empty i {
    color: rgba(237,237,236,.28);
}

/* Schedule */
.filter-tabs {
    gap: 22px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    justify-content: center;
}

.filter-tab {
    padding: 0 0 11px;
    color: rgba(237,237,236,.48);
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    border-bottom: 1px solid transparent;
}

.filter-tab:hover,
.filter-tab.active {
    color: var(--text);
}

.filter-tab.active {
    border-bottom-color: rgba(237,237,236,.62);
}

.schedule-section {
    max-width: 780px;
}

.schedule-section-label,
.date-header {
    font-size: 11px;
    font-weight: 500;
    font-style: normal;
    color: rgba(237,237,236,.5);
    letter-spacing: .2em;
    text-transform: uppercase;
}

.schedule-section-label::before,
.date-header::before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 1px;
    margin-right: 14px;
    vertical-align: middle;
    background: rgba(237,237,236,.35);
}

.name-list {
    max-width: 780px;
}

.name-list-item {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 28px;
    align-items: baseline;
    padding: 18px 4px;
    border-top: 1px solid rgba(255,255,255,.1);
    font-family: var(--font-sans);
    font-size: 18px;
    color: var(--text);
    letter-spacing: 0;
    transition: background .15s, color .15s, opacity .15s;
}

.name-list-item:last-child {
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.name-list:hover .name-list-item {
    opacity: 1;
}

.name-list .name-list-item:hover {
    background: rgba(255,255,255,.025);
}

.name-list-item .item-date {
    min-width: 0;
    font-family: var(--font-mono);
    font-size: 12px;
    color: rgba(237,237,236,.55);
    letter-spacing: .06em;
    text-align: left;
    text-transform: uppercase;
}

.name-list-item .item-name {
    margin-left: 0;
    min-width: 0;
    overflow-wrap: anywhere;
}

.schedule-empty {
    border-top: 1px solid rgba(255,255,255,.1);
    border-bottom: 1px solid rgba(255,255,255,.1);
    color: rgba(237,237,236,.45);
}

/* Archive */
.archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 26px 18px;
}

.archive-card {
    background: transparent;
    border: 0;
    border-radius: 0;
    overflow: visible;
}

.archive-card:hover {
    background: transparent;
    transform: none;
}

.archive-thumb-link {
    aspect-ratio: 1/1;
    border: 1px solid rgba(255,255,255,.08);
    background: var(--bg-card);
}

.archive-thumb-button {
    width: 100%;
    padding: 0;
    color: inherit;
    cursor: pointer;
    text-align: left;
}

.archive-thumb {
    filter: grayscale(1) brightness(.62) contrast(1.06);
    transition: filter .2s, transform .2s;
}

.archive-thumb-link:hover .archive-thumb {
    filter: grayscale(1) brightness(.78) contrast(1.06);
    transform: scale(1.025);
}

.archive-play {
    inset: auto auto 14px 14px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(237,237,236,.95);
    color: var(--bg);
    opacity: 1;
    font-size: 1.35rem;
}

.archive-source {
    top: 12px;
    right: 12px;
    border-radius: 0;
    background: transparent;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: .14em;
    color: rgba(237,237,236,.85);
    padding: 0;
}

.archive-info {
    padding: 14px 0 0;
}

.archive-title {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0;
}

.archive-dj,
.archive-meta {
    font-size: 10.5px;
    color: rgba(237,237,236,.45);
    letter-spacing: .06em;
    text-transform: uppercase;
}

/* Livestream */
.livestream-page {
    min-height: 58vh;
}

.live-badge {
    background: transparent;
    border: 1px solid rgba(255,255,255,.5);
    color: var(--text);
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .14em;
}

.live-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--text);
    animation: ym-pulse 1.3s ease infinite;
}

.stream-player {
    border-radius: 0;
    border-color: rgba(255,255,255,.1);
}

.stream-title {
    color: rgba(237,237,236,.6);
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

/* Booking and calendar */
.slot-status {
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .1em;
}

.slot-status.available,
.timeline-segment.available {
    background: rgba(237,237,236,.1);
    color: rgba(237,237,236,.88);
    border-color: rgba(237,237,236,.2);
}

.slot-status.booked,
.timeline-segment.booked {
    background: rgba(255,255,255,.05);
    color: rgba(237,237,236,.45);
}

.timeline-bar {
    height: 34px;
    border-radius: var(--radius);
    background: rgba(255,255,255,.04);
}

.timeline-segment {
    border-radius: 0;
}

.timeline-label {
    font-family: var(--font-mono);
    color: rgba(237,237,236,.62);
}

.duration-option,
.time-option {
    background: rgba(21,21,22,.72);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-size: 12px;
    letter-spacing: .08em;
}

.time-option {
    width: 100%;
}

.time-option:hover {
    background: rgba(255,255,255,.07);
    border-color: rgba(255,255,255,.2);
    color: var(--text);
}

.confirm-icon {
    color: var(--text);
}

.detail-label {
    color: rgba(237,237,236,.48);
    font-size: 10px;
    letter-spacing: .12em;
}

/* Contact */
.contact-link {
    max-width: 340px;
    justify-content: flex-start;
    color: rgba(237,237,236,.72);
    border-color: rgba(255,255,255,.12);
    border-radius: var(--radius);
    font-size: 12px;
    letter-spacing: .04em;
}

.contact-link:hover {
    color: var(--text);
    background: rgba(255,255,255,.04);
    border-color: rgba(255,255,255,.2);
}

/* Long-form text */
.policy-page {
    max-width: 760px;
}

.policy-page h2 {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(237,237,236,.68);
}

.policy-page p,
.policy-page li {
    color: rgba(237,237,236,.66);
    line-height: 1.75;
}

.policy-page a {
    color: var(--text);
    text-decoration-color: rgba(237,237,236,.35);
    text-underline-offset: 3px;
}

/* Homepage */
.home-page {
    background: var(--bg);
    color: var(--text);
}

.home-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.home-hero-image,
.home-hero-wash,
.home-hero-fade {
    position: absolute;
    inset: 0;
}

.home-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) contrast(1.08) brightness(.62);
}

.home-hero-wash {
    background: linear-gradient(90deg, rgba(12,12,13,.82) 0%, rgba(12,12,13,.4) 42%, rgba(12,12,13,.2) 70%, rgba(12,12,13,.5) 100%);
}

.home-hero-fade {
    background: linear-gradient(to bottom, rgba(12,12,13,.3) 0%, transparent 30%, transparent 75%, var(--bg) 100%);
}

.home-hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 26px;
    width: min(560px, 100%);
    padding: 0 48px;
}

.home-rule {
    display: inline-block;
    width: 28px;
    height: 1px;
    flex: 0 0 auto;
    background: rgba(237,237,236,.35);
}

.home-kicker,
.home-live-label,
.home-now,
.home-hero-cta,
.home-section-label,
.home-section-head p,
.home-schedule-date,
.home-schedule-time,
.home-schedule-title span,
.home-schedule-action,
.home-text-link,
.home-empty {
    font-family: var(--font-mono);
}

.home-kicker {
    font-size: 11px;
    letter-spacing: .16em;
    color: rgba(237,237,236,.55);
}

.home-live-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(237,237,236,.75);
}

.home-live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--text);
    animation: ym-pulse 1.2s ease infinite;
}

.home-wordmark-main {
    font-weight: 800;
    font-size: clamp(46px, 7vw, 88px);
    line-height: .88;
    letter-spacing: 0;
}

.home-wordmark-sub {
    font-family: var(--font-mono);
    font-weight: 500;
    font-size: 13px;
    letter-spacing: .42em;
    color: rgba(237,237,236,.7);
    margin-top: 8px;
    padding-left: .42em;
}

.home-now {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.home-now-label {
    font-size: 12px;
    letter-spacing: .08em;
    color: rgba(237,237,236,.55);
}

.home-now-title {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 0;
    color: var(--text);
}

.home-now-muted {
    font-size: 12px;
    letter-spacing: .06em;
    color: rgba(237,237,236,.45);
}

.home-hero-cta {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 12px;
    letter-spacing: .08em;
    color: rgba(237,237,236,.45);
}

.home-hero-cta a,
.home-text-link {
    color: rgba(237,237,236,.55);
    text-decoration: none;
}

.home-hero-cta a:hover,
.home-text-link:hover {
    color: var(--text);
}

.home-text-link {
    align-self: flex-start;
    font-size: 11px;
    letter-spacing: .12em;
    border-bottom: 1px solid rgba(255,255,255,.2);
    padding-bottom: 3px;
}

.home-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 32px;
}

.home-section--manifesto {
    padding-top: 90px;
    padding-bottom: 90px;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.home-section--schedule {
    padding-bottom: 50px;
}

.home-section--archive {
    padding-top: 50px;
    padding-bottom: 70px;
}

.home-section-label {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    font-size: 11px;
    letter-spacing: .2em;
    color: rgba(237,237,236,.5);
}

.home-manifesto {
    max-width: 30ch;
    margin: 0;
    font-size: clamp(19px, 2.5vw, 29px);
    line-height: 1.4;
    letter-spacing: 0;
    text-wrap: pretty;
}

.home-manifesto span {
    color: rgba(237,237,236,.4);
}

.home-section-link {
    display: inline-block;
    margin-top: 28px;
}

.home-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.home-section-head .home-section-label {
    margin-bottom: 16px;
}

.home-section-head h2,
.home-open-call h2 {
    margin: 0;
    font-weight: 600;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1;
    letter-spacing: 0;
}

.home-section-head p {
    max-width: 240px;
    margin: 0;
    font-size: 11px;
    letter-spacing: .04em;
    line-height: 1.7;
    color: rgba(237,237,236,.4);
}

.home-schedule-row {
    display: grid;
    grid-template-columns: 88px 108px minmax(160px, 1fr) auto;
    align-items: baseline;
    gap: 28px;
    padding: 22px 4px;
    border-top: 1px solid rgba(255,255,255,.1);
}

.home-schedule-row:last-child {
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.home-schedule-date {
    font-size: 12px;
    letter-spacing: .06em;
    color: rgba(237,237,236,.55);
}

.home-schedule-time {
    font-size: 12px;
    letter-spacing: .02em;
    color: var(--text);
}

.home-schedule-title {
    min-width: 0;
}

.home-schedule-title div {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0;
}

.home-schedule-title span {
    display: block;
    margin-top: 5px;
    font-size: 11px;
    letter-spacing: .04em;
    color: rgba(237,237,236,.45);
}

.home-schedule-action {
    font-size: 10.5px;
    letter-spacing: .12em;
    color: rgba(237,237,236,.5);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,.18);
    padding-bottom: 2px;
}

.home-schedule-action:hover {
    color: var(--text);
}

.home-empty {
    padding: 40px 4px;
    border-top: 1px solid rgba(255,255,255,.1);
    border-bottom: 1px solid rgba(255,255,255,.1);
    font-size: 12px;
    letter-spacing: .06em;
    color: rgba(237,237,236,.45);
}

.home-empty a {
    color: var(--text);
}

.home-archive-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-open-call {
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,.07);
}

.home-open-call .home-section {
    position: relative;
    z-index: 1;
    padding-top: 90px;
    padding-bottom: 90px;
}

.home-open-call h2 {
    font-weight: 700;
    font-size: clamp(34px, 5vw, 60px);
    line-height: .98;
}

.home-open-call p {
    max-width: 420px;
    margin: 24px 0 0;
    font-size: 15px;
    line-height: 1.65;
    color: rgba(237,237,236,.55);
}

.home-open-call-image {
    position: absolute;
    right: 6%;
    bottom: 0;
    height: 200px;
    opacity: .1;
    filter: invert(1);
}

/* Persistent archive player */
.ym-player {
    --eq-play: paused;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 11px 24px;
    background: rgba(12,12,13,.94);
    border-top: 1px solid rgba(255,255,255,.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.ym-player.is-playing {
    --eq-play: running;
}

.ym-player-controls {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.ym-player-btn,
.ym-player-control {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.5);
    background: transparent;
    color: var(--text);
    font-size: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ym-player-control {
    width: 28px;
    height: 28px;
    border-color: rgba(255,255,255,.22);
    color: rgba(237,237,236,.62);
    font-size: 12px;
}

.ym-player-control:hover,
.ym-player-btn:hover {
    border-color: rgba(255,255,255,.75);
    color: var(--text);
}

.ym-player-eq {
    display: flex;
    align-items: flex-end;
    gap: 2.5px;
    width: 28px;
    height: 20px;
    flex-shrink: 0;
}

.ym-player-eq span {
    width: 3px;
    height: 100%;
    background: var(--text);
    transform-origin: bottom;
    animation: ym-eq .8s ease-in-out infinite;
    animation-play-state: var(--eq-play);
}

.ym-player-eq span:nth-child(2) {
    animation-delay: .16s;
}

.ym-player-eq span:nth-child(3) {
    animation-delay: .32s;
}

.ym-player-eq span:nth-child(4) {
    animation-delay: .48s;
}

.ym-player-meta {
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 0;
    font-family: var(--font-mono);
}

.ym-player-kicker {
    flex-shrink: 0;
    font-size: 10px;
    letter-spacing: .14em;
    color: rgba(237,237,236,.45);
}

.ym-player-title {
    min-width: 0;
    overflow: hidden;
    color: rgba(237,237,236,.7);
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ym-player-progress {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 1 320px;
    min-width: 180px;
}

.ym-player-seek {
    --ym-progress: 0%;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 14px;
    min-width: 80px;
    background: transparent;
    cursor: pointer;
}

.ym-player-seek::-webkit-slider-runnable-track {
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(to right, rgba(237,237,236,.82) 0%, rgba(237,237,236,.82) var(--ym-progress), rgba(237,237,236,.24) var(--ym-progress), rgba(237,237,236,.24) 100%);
}

.ym-player-seek::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 10px;
    height: 10px;
    margin-top: -4px;
    border: 0;
    border-radius: 50%;
    background: var(--text);
}

.ym-player-seek::-moz-range-track {
    height: 2px;
    border-radius: 999px;
    background: rgba(237,237,236,.24);
}

.ym-player-seek::-moz-range-progress {
    height: 2px;
    border-radius: 999px;
    background: rgba(237,237,236,.82);
}

.ym-player-seek::-moz-range-thumb {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 50%;
    background: var(--text);
}

.ym-player-time {
    width: 38px;
    flex-shrink: 0;
    color: rgba(237,237,236,.45);
    font-family: var(--font-mono);
    font-size: 10px;
    text-align: center;
}

.ym-player-link {
    margin-left: auto;
    flex-shrink: 0;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .08em;
}

.ym-player-link a {
    color: rgba(237,237,236,.45);
    text-decoration: none;
}

.ym-player-link a:hover {
    color: var(--text);
}

.ym-sc-frame {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    border: 0;
}

/* Footer */
.site-footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255,255,255,.07);
    padding: 64px 32px 104px;
    color: var(--text);
    margin-top: auto;
}

.site-footer-grid,
.site-footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
}

.site-footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.site-footer-word {
    font-weight: 800;
    font-size: 30px;
    letter-spacing: 0;
    line-height: .9;
}

.site-footer-sub {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .42em;
    color: rgba(237,237,236,.6);
    margin-top: 7px;
    padding-left: .42em;
}

.site-footer-kicker,
.site-footer-label,
.site-footer-bottom,
.footer-socials,
.newsletter-email,
.newsletter-submit,
.newsletter-legal {
    font-family: var(--font-mono);
}

.site-footer-kicker {
    font-size: 10.5px;
    letter-spacing: .06em;
    color: rgba(237,237,236,.4);
    margin-top: 20px;
    line-height: 1.8;
}

.site-footer-list {
    min-width: min(320px, 100%);
}

.site-footer-label {
    font-size: 11px;
    letter-spacing: .16em;
    color: rgba(237,237,236,.5);
    margin-bottom: 16px;
}

.newsletter-inline {
    max-width: 320px;
    margin: 0;
}

.newsletter-row {
    display: flex;
    align-items: stretch;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,.22);
    border-radius: 0;
    overflow: visible;
    background: transparent;
    height: 40px;
}

.newsletter-email {
    color: var(--text);
    padding: 10px 2px;
    font-size: 12px;
}

.newsletter-email::placeholder {
    color: rgba(237,237,236,.36);
}

.newsletter-email:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px var(--bg) inset !important;
    -webkit-text-fill-color: var(--text) !important;
}

.newsletter-submit {
    width: 34px;
    border-left: 0;
    color: rgba(237,237,236,.72);
    font-size: 14px;
}

.newsletter-submit:hover {
    color: var(--text);
}

.newsletter-legal {
    font-size: 9px;
    letter-spacing: .04em;
    color: rgba(237,237,236,.3);
    margin: 8px 0 0;
}

.newsletter-legal a {
    color: rgba(237,237,236,.5);
    text-decoration: underline;
}

.footer-socials {
    justify-content: flex-start;
    gap: 22px;
    margin-top: 26px;
}

.footer-socials a {
    color: rgba(237,237,236,.55);
    font-size: 11px;
    letter-spacing: .06em;
    text-decoration: none;
}

.footer-socials a:hover {
    color: var(--text);
}

.site-footer-bottom {
    margin-top: 48px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.07);
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 10px;
    letter-spacing: .06em;
    color: rgba(237,237,236,.32);
}

.site-footer-bottom a {
    color: rgba(237,237,236,.32);
    text-decoration: none;
}

@media (max-width: 767.98px) {
    .site-topbar-inner {
        flex-wrap: wrap;
        gap: 12px;
        padding: 14px 18px;
    }

    .site-location {
        order: 3;
        width: 100%;
    }

    .nav-mobile-toggle {
        margin-left: auto;
    }

    .nav-links {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: flex-start !important;
        gap: 0 !important;
        padding: 8px 18px 16px;
        background: rgba(12,12,13,.96);
        border-bottom: 1px solid rgba(255,255,255,.08);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
    }

    .nav-links.open {
        display: flex !important;
    }

    .nav-links .nav-top-link,
    .nav-links .nav-status {
        width: 100%;
        padding: 11px 0;
        border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .nav-links .nav-status:last-child {
        border-bottom: 0;
    }

    .site-messages {
        top: 104px;
    }

    .content-page {
        padding-top: 58px;
        padding-bottom: 60px;
    }

    .home-hero {
        min-height: 82vh;
    }

    .home-hero-content {
        max-width: 100%;
        gap: 20px;
        padding: 0 24px;
    }

    .home-hero-cta {
        flex-wrap: wrap;
        gap: 14px 18px;
    }

    .home-section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .home-schedule-row {
        grid-template-columns: 82px minmax(0, 1fr);
        align-items: start;
        gap: 10px 16px;
    }

    .home-schedule-title,
    .home-schedule-action {
        grid-column: 1 / -1;
    }

    .home-schedule-action {
        justify-self: start;
    }

    .home-archive-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ym-player {
        left: 12px;
        right: 12px;
        bottom: calc(10px + env(safe-area-inset-bottom));
        min-height: 44px;
        gap: 8px;
        padding: 6px 10px;
        flex-wrap: nowrap;
        overflow: hidden;
        border: 1px solid rgba(255,255,255,.12);
        border-radius: 999px;
        background: rgba(12,12,13,.88);
        box-shadow: 0 12px 34px rgba(0,0,0,.38);
    }

    .ym-player-controls {
        gap: 0;
    }

    .ym-player-control {
        width: 24px;
        height: 24px;
        font-size: 11px;
        border-color: rgba(255,255,255,.16);
    }

    .ym-player-btn {
        width: 32px;
        height: 32px;
        border-color: rgba(255,255,255,.3);
        background: rgba(255,255,255,.03);
    }

    .ym-player-control--track,
    .ym-player-control--seek {
        display: none;
    }

    .ym-player-eq {
        display: none;
    }

    .ym-player-meta {
        flex: 1 1 auto;
        min-width: 0;
        gap: 0;
    }

    .ym-player-kicker {
        display: none;
    }

    .ym-player-title {
        font-size: 11px;
    }

    .ym-player-progress {
        display: none;
    }

    .ym-player-link {
        display: none;
    }

    .page-title {
        font-size: clamp(32px, 12vw, 48px);
    }

    .name-list-item {
        grid-template-columns: 1fr;
        gap: 6px;
        font-size: 16px;
        padding-left: 0;
        padding-right: 0;
    }

    .name-list-item .item-date {
        font-size: 10px;
    }

    .name-list-item .item-name {
        font-size: 18px;
        line-height: 1.25;
    }

    .archive-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-footer {
        padding: 56px 18px 78px;
    }
}

@media (hover: none) and (pointer: coarse) and (max-width: 1024px) {
    html,
    body {
        width: 100%;
        overflow-x: hidden;
        overscroll-behavior-x: none;
    }

    .site-topbar-inner {
        flex-wrap: wrap;
        gap: 12px;
        padding: 14px 18px;
    }

    .site-location {
        order: 3;
        width: 100%;
    }

    .nav-mobile-toggle {
        display: inline-flex !important;
        margin-left: auto;
    }

    .nav-links {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: flex-start !important;
        gap: 0 !important;
        padding: 8px 18px 16px;
        background: rgba(12,12,13,.96);
        border-bottom: 1px solid rgba(255,255,255,.08);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
    }

    .nav-links.open {
        display: flex !important;
    }

    .nav-links .nav-top-link,
    .nav-links .nav-status {
        width: 100%;
        padding: 11px 0;
        border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .home-section,
    .content-page .container {
        max-width: 100%;
    }

    .ym-player {
        left: 12px;
        right: 12px;
        bottom: calc(10px + env(safe-area-inset-bottom));
        min-height: 44px;
        gap: 8px;
        padding: 6px 10px;
        flex-wrap: nowrap;
        overflow: hidden;
        border: 1px solid rgba(255,255,255,.12);
        border-radius: 999px;
        background: rgba(12,12,13,.88);
        box-shadow: 0 12px 34px rgba(0,0,0,.38);
    }

    .ym-player-control--track,
    .ym-player-control--seek,
    .ym-player-eq,
    .ym-player-progress,
    .ym-player-kicker,
    .ym-player-link {
        display: none;
    }

    .ym-player-controls {
        gap: 0;
    }

    .ym-player-btn {
        width: 32px;
        height: 32px;
        border-color: rgba(255,255,255,.3);
        background: rgba(255,255,255,.03);
    }

    .ym-player-meta {
        flex: 1 1 auto;
        min-width: 0;
        gap: 0;
    }

    .ym-player-title {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .home-hero {
        min-height: 76vh;
    }

    .home-hero-content {
        padding: 0 18px;
    }

    .home-section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .archive-grid {
        grid-template-columns: 1fr;
    }

    .site-footer-grid {
        gap: 28px;
    }

    .site-footer-bottom {
        flex-direction: column;
    }

    .filter-tabs {
        justify-content: flex-start;
    }
}
