/* ============================ TOKENS ============================ */
:root {
    --ink: #0B0A08;
    --ink-soft: #141210;
    --ink-warm: #17130C;
    --ink-card: #100E0B;
    --bone: #FAF8F3;
    --bone-2: #F2EEE4;
    --bone-3: #ECE7DA;
    --bone-warm: #EFE6D2;
    --gold: #C29B3C;
    --gold-soft: #D9BC72;
    --gold-deep: #8A6A12;
    --grey: #8B8578;
    --muted: #5A554B;
    --muted-ink: #B9B2A4;
    --hairline: rgba(11, 10, 8, .12);
    --hairline-inv: rgba(250, 248, 243, .16);
    --max: 1180px;
    --ease: cubic-bezier(.2, .7, .3, 1);
    --nav-h: 72px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
    -webkit-text-size-adjust: 100%
}

body {
    background: var(--ink);
    color: var(--bone);
    font-family: 'Inter', -apple-system, system-ui, sans-serif;
    font-size: 18px;
    line-height: 1.68;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

img {
    max-width: 100%;
    display: block
}

a {
    color: inherit;
    text-decoration: none
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit
}

:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px
}

[hidden] {
    display: none !important
}

.wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 32px
}

h1,
h2,
h3 {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 400;
    letter-spacing: -.012em;
    line-height: 1.1
}

h2 {
    font-size: clamp(30px, 3.5vw, 46px);
    line-height: 1.13;
    max-width: 740px
}

h2 em,
h1 em,
h3 em {
    font-style: italic;
    color: var(--gold)
}

strong {
    font-weight: 600
}

.eyebrow {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    display: block;
    margin-bottom: 24px
}

.skip {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 400;
    background: var(--gold);
    color: var(--ink);
    padding: 12px 18px;
    font-weight: 600;
    border-radius: 0 0 3px 0
}

.skip:focus {
    left: 0
}

/* ============================ SPINE ============================ */
.spine {
    position: fixed;
    top: 0;
    left: 0;
    width: 2px;
    height: 100vh;
    z-index: 95;
    background: var(--hairline-inv);
    pointer-events: none
}

.spine__fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, var(--gold-soft), var(--gold));
    box-shadow: 0 0 10px rgba(194, 155, 60, .5)
}

/* ============================ HEADER ============================ */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1111;
    transition: background .3s var(--ease), box-shadow .3s var(--ease), padding .3s var(--ease);
    padding: 18px 0
}

header.scrolled {
    background: var(--ink);
    box-shadow: 0 1px 0 var(--line-ink);
    padding: 12px 0
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--bone)
}

.brand .mark {
    width: 40px;
    height: 40px;
    flex: none;
    border-radius: 50%;
    border: 1.5px solid var(--gold);
    background: var(--bone);
    object-fit: cover;
    padding: 2px
}

.brand .word {
    font-family: 'Fraunces', serif;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: .01em;
    color: var(--bone)
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px
}

.nav-links a {
    color: var(--bone);
    font-size: 15px;
    font-weight: 500;
    opacity: .85;
    transition: opacity .2s, color .2s;
    position: relative
}

.nav-links a:not(.nav-box)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width .25s var(--ease)
}

.nav-links a:not(.nav-box):hover {
    opacity: 1;
    color: var(--gold-soft)
}

.nav-links a:not(.nav-box):hover::after {
    width: 100%
}

.nav-box {
    border: 1px solid var(--gold);
    border-radius: 2px;
    padding: 9px 18px;
    opacity: 1 !important;
    transition: background .25s var(--ease), color .25s var(--ease), transform .2s var(--ease)
}

.nav-box:hover {
    background: var(--gold);
    color: var(--ink) !important;
    transform: translateY(-2px)
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px
}

.burger span {
    width: 24px;
    height: 2px;
    background: var(--bone);
    transition: .3s
}

.mobile-menu {
    display: none
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center
}

.nav-item>button {
    font-size: 15px;
    font-weight: 500;
    color: var(--bone);
    opacity: .85;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: opacity .2s, color .2s
}

.nav-item.has-drop>button::after {
    content: "";
    width: 6px;
    height: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    margin-top: -3px;
    transition: transform .25s
}

.nav-item.has-drop:hover>button {
    opacity: 1;
    color: var(--gold-soft)
}

.nav-item.has-drop:hover>button::after {
    transform: rotate(-135deg);
    margin-top: 2px
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    min-width: 220px;
    background: var(--ink);
    border: 1px solid var(--line-ink);
    border-radius: 8px;
    padding: 8px;
    box-shadow: 0 22px 44px -22px rgba(0, 0, 0, .75);
    opacity: 0;
    visibility: hidden;
    transition: opacity .22s var(--ease), transform .22s var(--ease);
    z-index: 120
}

.nav-item.has-drop:hover .dropdown,
.nav-item.has-drop:focus-within .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0)
}

.dropdown a {
    display: block;
    padding: 11px 14px;
    border-radius: 5px;
    font-size: 14.5px;
    white-space: nowrap
}

.dropdown a::after {
    display: none !important
}

.dropdown a:hover {
    background: rgba(194, 155, 60, .12)
}

.mobile-menu .m-group {
    font-family: 'Fraunces', serif;
    font-size: 1.4rem;
    color: var(--gold-soft);
    padding: 18px 0 4px
}

.mobile-menu .m-sub {
    display: block;
    color: var(--bone);
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    padding: 11px 0 11px 20px;
    border-bottom: 1px solid var(--line-ink);
    opacity: .9
}

/* ============================ BUTTONS ============================ */
.btn-gold {
    background: var(--gold);
    color: var(--ink);
    padding: 18px 32px;
    font-size: 15.5px;
    font-weight: 600;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform .25s, box-shadow .25s, background .2s
}

.btn-gold:hover {
    background: var(--gold-soft);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px -12px rgba(194, 155, 60, .7)
}

.btn-gold .arw {
    transition: transform .28s
}

.btn-gold:hover .arw {
    transform: translateX(5px)
}

.btn-ghost {
    background: transparent;
    color: var(--bone);
    border: 1px solid var(--hairline-inv);
    padding: 18px 32px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: border-color .25s, transform .25s, color .2s
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold-soft);
    transform: translateY(-2px)
}

/* ============================ REVEALS ============================ */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .6s var(--ease), transform .6s var(--ease)
}

.reveal.in {
    opacity: 1;
    transform: none
}

/* ============================ TOP BARS ============================ */
.urgbar {
    background: var(--gold);
    color: var(--ink);
    padding: 12px 20px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    position: relative;
    z-index: 98;
    margin-top: var(--nav-h);
    line-height: 1.5
}

.urgbar .cd {
    font-family: 'IBM Plex Mono', monospace;
    background: rgba(11, 10, 8, .16);
    padding: 3px 9px;
    border-radius: 2px;
    margin: 0 4px;
    display: inline-block
}

.livebar {
    background: var(--ink-soft);
    border-bottom: 1px solid var(--hairline-inv);
    color: var(--bone);
    padding: 11px 20px;
    text-align: center;
    font-size: 13.5px;
    position: relative;
    z-index: 97;
    line-height: 1.6;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap
}

.livebar .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4CAF6D;
    flex: 0 0 7px;
    animation: pulsedot 2.4s ease-in-out infinite
}

@keyframes pulsedot {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(76, 175, 109, .5)
    }

    50% {
        opacity: .65;
        box-shadow: 0 0 0 7px rgba(76, 175, 109, 0)
    }
}

.livebar b {
    color: var(--gold-soft);
    font-weight: 600;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px
}

.livebar .sep {
    color: var(--grey)
}

@media(max-width:640px) {
    .livebar .sep {
        display: none
    }

    .livebar {
        font-size: 12.5px;
        gap: 6px
    }

    .urgbar {
        font-size: 12.5px;
        padding: 10px 16px
    }
}

/* ============================ HERO ============================ */
.hero {
    background: var(--ink);
    color: var(--bone);
    padding: 88px 0 0;
    overflow: hidden;
    position: relative;
    isolation: isolate;
    z-index: 0;
}

.hero__halo {
    position: absolute;
    top: 1%;
    left: 50%;
    width: min(820px, 96vw);
    height: 600px;
    transform: translateX(-50%);
    will-change: transform;
    background: radial-gradient(circle, rgba(217, 188, 114, .22) 0%, rgba(194, 155, 60, .10) 34%, transparent 66%);
    filter: blur(16px);
    pointer-events: none;
    z-index: -1;
    animation: halo 9s ease-in-out infinite
}

@keyframes halo {

    0%,
    100% {
        opacity: .55
    }

    50% {
        opacity: .95
    }
}

.hero-stack {
    max-width: 960px;
    margin: 0 auto;
    text-align: center
}

.eyebrow-pill {
    display: inline-block;
    background: rgba(194, 155, 60, .16);
    border: 1px solid rgba(194, 155, 60, .45);
    color: var(--gold-soft);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 2px;
    line-height: 1.5;
    margin-bottom: 32px;
    transition: background .4s, border-color .4s
}

.eyebrow-pill:hover {
    background: rgba(194, 155, 60, .24);
    border-color: var(--gold)
}

@media(max-width:600px) {
    .eyebrow-pill {
        font-size: 10.5px;
        letter-spacing: .09em;
        padding: 9px 14px
    }
}

.hero h1 {
    font-size: clamp(40px, 6.4vw, 84px);
    line-height: 1.03;
    letter-spacing: -.022em
}

.hero h1 em {
    color: var(--gold-soft)
}

.hero-method {
    margin: 26px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    max-width: 660px
}

.hero-method span {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: clamp(19px, 2.5vw, 27px);
    color: var(--gold-soft);
    line-height: 1.3;
    white-space: nowrap
}

.hero-method i {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(194, 155, 60, .55));
    display: block
}

.hero-method i:last-child {
    background: linear-gradient(90deg, rgba(194, 155, 60, .55), transparent)
}

@media(max-width:700px) {
    .hero-method span {
        white-space: normal;
        text-align: center
    }

    .hero-method i {
        display: none
    }
}

.hero-line {
    margin: 28px auto 0;
    font-size: clamp(16.5px, 2vw, 19.5px);
    color: rgba(250, 248, 243, .82);
    max-width: 740px;
    line-height: 1.68
}

.hero-line strong {
    color: var(--bone);
    font-weight: 600
}

.hero-actions {
    margin-top: 40px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center
}

/* ---- the two upcoming workshop cards ---- */
.upcoming {
    margin: 54px auto 0;
    max-width: 1000px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    text-align: left
}

.ucard {
    position: relative;
    overflow: hidden;
    background: var(--ink-card);
    border: 1px solid var(--hairline-inv);
    border-radius: 4px;
    padding: 30px 28px 30px;
    display: flex;
    flex-direction: column;
    transition: border-color .4s, background .4s, transform .4s var(--ease), box-shadow .4s
}

.ucard:hover {
    border-color: var(--gold);
    background: #17130B;
    transform: translateY(-4px);
    box-shadow: 0 26px 56px -30px rgba(0, 0, 0, .85)
}

.ucard::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -30%;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(194, 155, 60, .16), transparent 68%);
    opacity: .7;
    transition: opacity .4s
}

.ucard:hover::before {
    opacity: 1
}

.ucard>* {
    position: relative;
    z-index: 1
}

.ucard__top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    flex-wrap: wrap
}

.ucard__city {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(194, 155, 60, .45);
    padding: 5px 11px;
    border-radius: 2px
}

.ucard__when {
    margin-left: auto;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted-ink)
}

.ucard h3 {
    font-size: clamp(22px, 2.4vw, 27px);
    line-height: 1.16;
    color: var(--bone)
}

.ucard__sub {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(250, 248, 243, .72)
}

.ucard__meta {
    margin-top: 22px
}

.urow {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    padding: 11px 0;
    border-top: 1px solid var(--hairline-inv)
}

.urow .k {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10.5px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold-soft);
    flex: none
}

.urow .v {
    font-size: 14.5px;
    color: var(--bone);
    text-align: right;
    line-height: 1.45
}

.ucard__foot {
    margin-top: auto;
    padding-top: 24px
}

.ustatus {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: #7BD69B;
    margin-bottom: 16px
}

.ustatus i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4CAF6D;
    flex: none;
    display: block;
    animation: pulsedot 2.4s ease-in-out infinite
}

.ucard .btn-gold {
    width: 100%;
    justify-content: center;
    padding: 15px 24px;
    font-size: 14.5px
}

.ucard.is-ghost .btn-gold {
    background: transparent;
    color: var(--bone);
    border: 1px solid var(--hairline-inv)
}

.ucard.is-ghost:hover .btn-gold {
    border-color: var(--gold);
    color: var(--gold-soft)
}

@media(max-width:860px) {
    .upcoming {
        grid-template-columns: 1fr;
        max-width: 560px
    }
}

/* shimmering "to be announced" — signals pending, not broken */
.tba {
    color: var(--muted-ink);
    font-style: italic;
    font-weight: 400;
    background: linear-gradient(90deg, var(--muted-ink) 0%, var(--gold-soft) 50%, var(--muted-ink) 100%);
    background-size: 220% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3.6s linear infinite
}

@keyframes shimmer {
    0% {
        background-position: 130% 0
    }

    100% {
        background-position: -130% 0
    }
}

/* ---- stat strip ---- */
.hero-strip {
    margin-top: 76px;
    border-top: 1px solid var(--hairline-inv);
    display: grid;
    grid-template-columns: repeat(3, 1fr)
}

.hero-strip>div {
    padding: 32px 24px 38px;
    border-right: 1px solid var(--hairline-inv);
    transition: transform .3s var(--ease)
}

.hero-strip>div:last-child {
    border-right: none
}

.hero-strip .stat {
    font-family: 'Fraunces', serif;
    font-size: clamp(27px, 4vw, 36px);
    font-weight: 500;
    color: var(--bone);
    line-height: 1.05
}

.hero-strip .stat span.u {
    color: var(--gold)
}

.stat-kicker {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold-soft);
    display: block;
    margin-bottom: 12px
}

.hero-strip .label {
    font-size: 14.5px;
    color: rgba(250, 248, 243, .72);
    margin-top: 9px;
    line-height: 1.5
}

@media(max-width:900px) {
    .hero-strip {
        margin-top: 60px
    }

    .hero-strip>div {
        padding: 26px 16px 30px
    }
}

@media(max-width:660px) {
    .hero-strip {
        grid-template-columns: 1fr
    }

    .hero-strip>div {
        border-right: none;
        border-bottom: 1px solid var(--hairline-inv);
        padding: 22px 0 24px
    }

    .hero-strip>div:last-child {
        border-bottom: none
    }

    .hero-strip .label {
        font-size: 13.5px
    }
}

.scroll-cue {
    margin: 48px auto 40px;
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent, var(--gold));
    position: relative;
    overflow: hidden
}

.scroll-cue::after {
    content: "";
    position: absolute;
    top: -50px;
    left: 0;
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent, var(--gold-soft));
    animation: cue 2.4s ease-in-out infinite
}

@keyframes cue {
    0% {
        top: -50px
    }

    60%,
    100% {
        top: 50px
    }
}

/* ============================ CITY MARQUEE BAND ============================ */
.band {
    background: var(--ink);
    border-top: 1px solid var(--hairline-inv);
    border-bottom: 1px solid var(--hairline-inv);
    overflow: hidden
}

.band-track {
    display: flex;
    width: max-content;
    animation: bandL 38s linear infinite
}

.band:hover .band-track {
    animation-play-state: paused
}

@keyframes bandL {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

.band-item {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 24px 0;
    white-space: nowrap
}

.band-item b {
    font-family: 'Fraunces', serif;
    font-size: clamp(21px, 3vw, 32px);
    font-weight: 400;
    color: rgba(250, 248, 243, .32);
    padding: 0 24px;
    transition: color .3s
}

.band:hover .band-item b {
    color: rgba(250, 248, 243, .52)
}

.band-item i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
    flex: none;
    display: block
}

.band-item.hi b {
    color: var(--gold-soft)
}

/* ============================ PAST WORKSHOPS ============================ */
.past-intro {
    background: var(--ink);
    text-align: center;
    padding: 100px 0 28px
}

.past-intro h2 {
    margin: 0 auto;
    max-width: 17ch
}

.past-intro p {
    margin: 20px auto 0;
    color: var(--muted-ink);
    font-size: 17px;
    max-width: 58ch;
    line-height: 1.7
}

/* sticky index rail — desktop only */
.idx {
    position: fixed;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 80;
    display: flex;
    flex-direction: column;
    gap: 13px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s
}

.idx.show {
    opacity: 1;
    pointer-events: auto
}

.idx a {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-end;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10.5px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--grey);
    transition: color .3s
}

/* labels collapse to zero width when inactive so the rail never crowds the panels */
.idx a .t {
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    transform: translateX(6px);
    white-space: nowrap;
    transition: opacity .3s, max-width .35s var(--ease), transform .3s
}

.idx a:hover .t,
.idx a.on .t {
    opacity: 1;
    max-width: 180px;
    transform: none
}

.idx a .b {
    width: 24px;
    height: 2px;
    background: currentColor;
    flex: none;
    transition: width .3s
}

.idx a:hover,
.idx a.on {
    color: var(--gold)
}

.idx a.on .b {
    width: 40px
}

@media(max-width:1500px) {
    .idx {
        display: none
    }
}

.panel {
    position: relative;
    overflow: hidden;
    padding: 92px 0
}

.panel-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center
}

.panel-content {
    max-width: 530px;
    min-width: 0
}

/* clean header row — number, rule, location. No overlapping watermark. */
.p-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    flex-wrap: wrap
}

.p-num {
    font-family: 'Fraunces', serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .04em
}

.p-rule {
    height: 1px;
    width: 34px;
    background: currentColor;
    opacity: .45;
    display: block;
    flex: none
}

.p-loc {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase
}

.p-latest {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    border: 1px solid currentColor;
    padding: 4px 10px;
    border-radius: 2px;
    opacity: .9
}

.panel h3 {
    font-size: clamp(27px, 3.6vw, 42px);
    line-height: 1.1;
    font-weight: 400
}

.p-date {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 16px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    letter-spacing: .07em;
    font-weight: 500
}

.p-date svg {
    width: 15px;
    height: 15px;
    flex: none;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8
}

.p-venue {
    margin-top: 8px;
    font-size: 14.5px;
    opacity: .62;
    line-height: 1.5
}

.p-desc {
    margin-top: 20px;
    font-size: 16.5px;
    line-height: 1.66;
    opacity: .86
}

.p-faculty {
    margin-top: 24px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap
}

.chip {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10.5px;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 2px;
    border: 1px solid currentColor;
    opacity: .68;
    transition: opacity .25s, transform .25s;
    white-space: nowrap
}

.chip:hover {
    opacity: 1;
    transform: translateY(-2px)
}

.p-note {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid;
    font-size: 14px;
    line-height: 1.6;
    max-width: 46ch
}

.p-note a {
    border-bottom: 1px solid currentColor;
    padding-bottom: 1px
}

/* panel themes */
.panel.t-ink,
.panel.t-inkwarm {
    color: var(--bone)
}

.panel.t-ink {
    background: var(--ink)
}

.panel.t-inkwarm {
    background: var(--ink-warm)
}

.t-ink .p-num,
.t-inkwarm .p-num,
.t-ink .p-loc,
.t-inkwarm .p-loc,
.t-ink .p-latest,
.t-inkwarm .p-latest,
.t-ink .p-date,
.t-inkwarm .p-date,
.t-ink .chip,
.t-inkwarm .chip {
    color: var(--gold-soft)
}

.t-ink .p-note,
.t-inkwarm .p-note {
    border-top-color: var(--hairline-inv);
    color: var(--muted-ink)
}

.panel.t-bone,
.panel.t-bonewarm {
    color: var(--ink)
}

.panel.t-bone {
    background: var(--bone)
}

.panel.t-bonewarm {
    background: var(--bone-warm)
}

.t-bone .p-num,
.t-bonewarm .p-num,
.t-bone .p-loc,
.t-bonewarm .p-loc,
.t-bone .p-latest,
.t-bonewarm .p-latest,
.t-bone .p-date,
.t-bonewarm .p-date,
.t-bone .chip,
.t-bonewarm .chip {
    color: var(--gold-deep)
}

.t-bone .p-note,
.t-bonewarm .p-note {
    border-top-color: var(--hairline);
    color: var(--muted)
}

.t-bone .btn-ghost,
.t-bonewarm .btn-ghost {
    color: var(--ink);
    border-color: var(--hairline)
}

/* soft corner glow so no panel is a flat rectangle */
.panel::before {
    content: "";
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
    z-index: 0
}

.panel.t-ink::before,
.panel.t-inkwarm::before {
    top: -12%;
    right: -6%;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(194, 155, 60, .13), transparent 66%);
    filter: blur(8px)
}

.panel.t-bone::before,
.panel.t-bonewarm::before {
    bottom: -16%;
    left: -6%;
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, rgba(194, 155, 60, .14), transparent 68%)
}

/* ---------- the two rails ---------- */
.rails-wrap {
    min-width: 0
}

.rails {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    height: 600px;
    position: relative;
    -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 10%, #000 90%, transparent 100%);
    mask-image: linear-gradient(180deg, transparent 0, #000 10%, #000 90%, transparent 100%)
}

.rail {
    overflow: hidden;
    position: relative
}

.rail-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    will-change: transform
}

.rail-col.up {
    animation: railUp 44s linear infinite
}

.rail-col.down {
    animation: railDown 50s linear infinite
}

@keyframes railUp {
    from {
        transform: translateY(0)
    }

    to {
        transform: translateY(calc(-50% - 8px))
    }
}

@keyframes railDown {
    from {
        transform: translateY(calc(-50% - 8px))
    }

    to {
        transform: translateY(0)
    }
}

.rails:hover .rail-col {
    animation-play-state: paused
}

.mtile {
    position: relative;
    border-radius: 3px;
    overflow: hidden;
    flex: none;
    transition: transform .35s var(--ease), border-color .3s, box-shadow .35s
}

.mtile.s {
    height: 186px
}

.mtile.m {
    height: 236px
}

.mtile.l {
    height: 286px
}

.mtile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease)
}

.mtile:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px -22px rgba(0, 0, 0, .6)
}

.mtile:hover img {
    transform: scale(1.045)
}

/* placeholder state */
.mtile.ph {
    display: grid;
    place-items: center;
    text-align: center;
    padding: 16px;
    border: 1px dashed;
    align-content: center;
    gap: 8px
}

.mtile.ph svg {
    width: 25px;
    height: 25px;
    stroke-width: 1.5;
    fill: none;
    stroke: currentColor;
    opacity: .6
}

.mtile.ph .lb {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
    opacity: .8
}

.mtile.ph .sb {
    font-size: 9.5px;
    opacity: .45;
    font-family: 'IBM Plex Mono', monospace;
    letter-spacing: .06em
}

.t-ink .mtile.ph,
.t-inkwarm .mtile.ph {
    border-color: rgba(194, 155, 60, .34);
    background: rgba(194, 155, 60, .05);
    color: var(--gold-soft)
}

.t-ink .mtile.ph:hover,
.t-inkwarm .mtile.ph:hover {
    border-color: var(--gold);
    background: rgba(194, 155, 60, .09)
}

.t-bone .mtile.ph,
.t-bonewarm .mtile.ph {
    border-color: rgba(138, 106, 18, .34);
    background: rgba(138, 106, 18, .06);
    color: var(--gold-deep)
}

.t-bone .mtile.ph:hover,
.t-bonewarm .mtile.ph:hover {
    border-color: var(--gold-deep);
    background: rgba(138, 106, 18, .1)
}

/* video badge */
.mtile .vb {
    position: absolute;
    left: 11px;
    bottom: 11px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(11, 10, 8, .74);
    color: var(--gold-soft);
    padding: 5px 10px;
    border-radius: 2px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9.5px;
    letter-spacing: .12em;
    text-transform: uppercase
}

.mtile .vb::before {
    content: "";
    border-style: solid;
    border-width: 4.5px 0 4.5px 7px;
    border-color: transparent transparent transparent currentColor
}

.rails-hint {
    margin-top: 16px;
    text-align: center;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: .16em;
    text-transform: uppercase;
    opacity: .38
}

@media(max-width:1040px) {
    .panel-inner {
        grid-template-columns: 1fr;
        gap: 44px
    }

    .panel-content {
        max-width: 100%
    }

    .rails {
        height: 470px
    }
}

@media(max-width:560px) {
    .panel {
        padding: 70px 0
    }

    .panel-inner {
        padding: 0 20px
    }

    .wrap {
        padding: 0 20px
    }

    .rails {
        height: 380px;
        gap: 11px
    }

    .rail-col {
        gap: 11px
    }

    .mtile.s {
        height: 136px
    }

    .mtile.m {
        height: 172px
    }

    .mtile.l {
        height: 206px
    }

    .p-desc {
        font-size: 15.5px
    }
}

/* ============================ WAITLIST ============================ */
.wait {
    background: var(--ink);
    color: var(--bone);
    text-align: center;
    padding: 108px 0
}

.wait .eyebrow {
    text-align: center
}

.wait h2 {
    margin: 0 auto 18px;
    max-width: 19ch;
    font-size: clamp(29px, 5vw, 50px)
}

.wait p.lead {
    margin: 0 auto 38px;
    max-width: 58ch;
    color: var(--muted-ink);
    font-size: 17px;
    line-height: 1.7
}

.wform {
    max-width: 560px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr 1fr;
    text-align: left
}

.wform .full {
    grid-column: 1/-1
}

.wform input,
.wform select {
    width: 100%;
    padding: 15px 16px;
    background: var(--ink-card);
    border: 1px solid var(--hairline-inv);
    border-radius: 2px;
    color: var(--bone);
    font-size: 15.5px;
    font-family: inherit;
    transition: border-color .25s, background .25s;
    -webkit-appearance: none;
    appearance: none
}

.wform select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23C29B3C' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px
}

.wform input::placeholder {
    color: var(--grey)
}

.wform input:focus,
.wform select:focus {
    outline: none;
    border-color: var(--gold);
    background-color: #151109
}

.wform .btn-gold {
    width: 100%;
    justify-content: center
}

.wnote {
    margin-top: 20px;
    font-size: 13px;
    color: var(--grey)
}

@media(max-width:560px) {
    .wform {
        grid-template-columns: 1fr
    }
}

/* ============================ FAQ ============================ */
.faq {
    background: var(--bone);
    color: var(--ink);
    padding: 100px 0
}

.faq .eyebrow {
    color: var(--gold-deep)
}

.faq h2 em {
    color: var(--gold-deep)
}

.faq-list {
    margin-top: 42px;
    border-top: 1px solid var(--hairline)
}

.faq-item {
    border-bottom: 1px solid var(--hairline)
}

.faq-q {
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    padding: 24px 0;
    font-family: 'Fraunces', serif;
    font-size: clamp(17.5px, 2.4vw, 23px);
    font-weight: 500;
    line-height: 1.32
}

.faq-q .ic {
    min-width: 22px;
    height: 22px;
    position: relative;
    flex: none
}

.faq-q .ic::before,
.faq-q .ic::after {
    content: "";
    position: absolute;
    background: var(--gold-deep);
    top: 50%;
    left: 50%;
    transition: opacity .3s, transform .3s
}

.faq-q .ic::before {
    width: 16px;
    height: 1.5px;
    transform: translate(-50%, -50%)
}

.faq-q .ic::after {
    width: 1.5px;
    height: 16px;
    transform: translate(-50%, -50%)
}

.faq-item.open .ic::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg)
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s var(--ease)
}

.faq-a p {
    padding: 0 0 24px;
    color: var(--muted);
    font-size: 16.5px;
    line-height: 1.72;
    max-width: 68ch
}

@media(max-width:620px) {
    .faq {
        padding: 76px 0
    }
}

/* ============================ FOOTER ============================ */
footer {
    background: var(--ink);
    border-top: 1px solid var(--hairline-inv);
    padding: 50px 0;
    text-align: center
}

footer .logo {
    display: block;
    margin-bottom: 12px;
    font-size: 22px
}

footer p {
    font-size: 13.5px;
    color: var(--grey);
    line-height: 1.7;
    max-width: 60ch;
    margin: 0 auto
}

footer .flinks {
    margin-top: 18px;
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 13.5px
}

footer .flinks a {
    color: var(--muted-ink);
    transition: color .2s
}

footer .flinks a:hover {
    color: var(--gold)
}

/* ============================ REDUCED MOTION ============================ */
@media(prefers-reduced-motion:reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important
    }

    .reveal {
        opacity: 1;
        transform: none
    }

    .rail {
        overflow-y: auto
    }

    .band-track {
        width: 100%;
        overflow-x: auto
    }

    .tba {
        -webkit-text-fill-color: var(--muted-ink);
        background: none
    }
}


header.scrolled {
    background: var(--ink);
    box-shadow: 0 1px 0 var(--line-ink);
    padding: 12px 0;
    top: 0;
    
}

@media(max-width:759px) {
    .nav-links {
        display: none
    }

    .burger {
        display: flex
    }

    .mobile-menu {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--ink);
        z-index: 111;
        transform: translateY(-100%);
        transition: transform .4s var(--ease);
        padding: 90px 32px 32px;
        overflow: auto;
    }

    .mobile-menu.open {
        transform: translateY(0)
    }

    .mobile-menu a {
        display: block;
        color: var(--bone);
        font-family: 'Fraunces', serif;
        font-size: 1.6rem;
        padding: 16px 0;
        border-bottom: 1px solid var(--line-ink)
    } }