/* Gerry Gobel Comedy — gerrygobelcomedy.com
   Dark stage + vintage cult-pamphlet accents.
   Aged paper, ink black, stage-light gold, blood red.
   Typewriter (Special Elite) for the Cult voice. */

@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Inter:wght@400;500;600;700;800&family=Special+Elite&display=swap');

:root {
    --bg: #14100b;
    --bg-deep: #0b0906;
    --bg-card: #1e1811;
    --bg-elevated: #262015;
    --bg-alt: #191309;
    --gold: #d9a441;
    --gold-bright: #f0c060;
    --red: #b8342a;
    --red-bright: #d95040;
    --paper: #efe6d0;
    --paper-dim: #d8ccb0;
    --ink: #2a2018;
    --white: #f5efe2;
    --gray: #a89b82;
    --gray-dark: #6e6350;
    --border: #3a3021;
    --radius: 10px;
    --radius-sm: 6px;
    --max-width: 1150px;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Archivo Black', 'Impact', 'Arial Black', sans-serif;
    --font-type: 'Special Elite', 'Courier New', monospace;
    --shadow-card: 0 8px 28px rgba(0, 0, 0, 0.5);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Stage-light vignette */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% -10%, rgba(217, 164, 65, 0.10) 0%, transparent 45%),
        radial-gradient(ellipse at 90% 100%, rgba(184, 52, 42, 0.06) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-bright); }
img { max-width: 100%; height: auto; display: block; }

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}
.container--narrow { max-width: 780px; }

/* Header */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(11, 9, 6, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}
.site-header__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}
.site-header__logo {
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 1px;
    color: var(--white);
    white-space: nowrap;
}
.site-header__logo span { color: var(--gold); }
.site-header__logo:hover { color: var(--white); }
.site-nav { display: flex; gap: 1.4rem; align-items: center; }
.site-nav a {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: border-color .2s, color .2s;
}
.site-nav a:hover, .site-nav a.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}
.nav-cta { flex-shrink: 0; }
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}
.nav-toggle span {
    width: 24px; height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: .3s;
}

/* Flash */
.flash-container {
    max-width: var(--max-width);
    margin: 1rem auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}
.flash {
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-sm);
    margin-bottom: 0.5rem;
    font-weight: 600;
    transition: opacity .8s;
}
.flash--success { background: rgba(217, 164, 65, 0.14); border: 1px solid var(--gold); color: var(--gold-bright); }
.flash--error { background: rgba(184, 52, 42, 0.16); border: 1px solid var(--red); color: var(--red-bright); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform .15s, box-shadow .15s, background .2s;
    text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn--accent {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(184, 52, 42, 0.35);
}
.btn--accent:hover { background: var(--red-bright); color: var(--white); box-shadow: 0 6px 22px rgba(184, 52, 42, 0.5); }
.btn--gold {
    background: var(--gold);
    color: var(--ink);
    box-shadow: 0 4px 15px rgba(217, 164, 65, 0.3);
}
.btn--gold:hover { background: var(--gold-bright); color: var(--ink); }
.btn--outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--gold);
}
.btn--outline:hover { background: rgba(217, 164, 65, 0.12); color: var(--gold-bright); }
.btn--small { padding: 0.4rem 1rem; font-size: 0.85rem; }
.btn--danger { background: var(--red-dark, #8a241c); color: var(--white); }
.btn--danger:hover { background: var(--red); }

/* Hero */
.hero {
    position: relative;
    min-height: 82vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(217, 164, 65, 0.16) 0%, transparent 55%),
        radial-gradient(ellipse at 50% 110%, rgba(184, 52, 42, 0.14) 0%, transparent 50%),
        var(--bg-deep);
}
.hero__content { position: relative; z-index: 2; padding: 4rem 24px; }
.hero__kicker {
    font-family: var(--font-type);
    color: var(--gold);
    font-size: 1.05rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.hero__title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 9vw, 6rem);
    line-height: 0.95;
    color: var(--white);
    letter-spacing: 2px;
}
.hero__title .accent { color: var(--gold); }
.hero__tagline {
    font-family: var(--font-type);
    font-size: clamp(1rem, 2.2vw, 1.3rem);
    color: var(--paper-dim);
    margin-top: 1.4rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}
.hero__cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.2rem;
}

/* Sections */
.section { padding: 4rem 0; position: relative; z-index: 1; }
.section--alt { background: var(--bg-alt); }
.section__header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.section__header h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 1px;
}
.section__more { font-weight: 600; font-size: 0.95rem; }
h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}
.lead {
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
    max-width: 720px;
}

/* Quick links */
.quick-links { padding: 0 0 1rem; }
.quick-links__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
}
.quick-link {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.6rem 1.4rem;
    transition: transform .2s, border-color .2s;
    color: var(--white);
}
.quick-link:hover { transform: translateY(-4px); border-color: var(--gold); color: var(--white); }
.quick-link__icon { font-size: 1.8rem; margin-bottom: 0.6rem; }
.quick-link h3 { font-size: 1.05rem; margin-bottom: 0.3rem; }
.quick-link p { font-size: 0.88rem; color: var(--gray); }

/* Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.4rem;
}
.card-grid--3 { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform .2s, border-color .2s;
}
.card:hover { transform: translateY(-4px); border-color: var(--gold); }
.card__img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.card__body { padding: 1.2rem 1.3rem 1.4rem; }
.card__date {
    font-family: var(--font-type);
    color: var(--gold);
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
}
.card__body h3 { font-size: 1.1rem; margin-bottom: 0.4rem; line-height: 1.3; }
.card__body h3 a { color: var(--white); }
.card__body h3 a:hover { color: var(--gold); }
.card__body p { color: var(--gray); font-size: 0.92rem; }
.card__excerpt { color: var(--gray); font-size: 0.9rem; }
.badge {
    display: inline-block;
    background: rgba(217, 164, 65, 0.15);
    color: var(--gold-bright);
    border: 1px solid rgba(217, 164, 65, 0.4);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.15rem 0.6rem;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.badge--red { background: rgba(184, 52, 42, 0.18); color: var(--red-bright); border-color: rgba(184, 52, 42, 0.5); }
.card__video-overlay { position: relative; display: block; }
.play-icon {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 54px; height: 54px;
    background: rgba(11, 9, 6, 0.75);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
}

/* Past shows */
.past-shows { display: flex; flex-direction: column; gap: 0.6rem; }
.past-show {
    display: flex;
    gap: 1.2rem;
    padding: 0.7rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
}
.past-show__date { font-family: var(--font-type); color: var(--gray); white-space: nowrap; }
.past-show__venue { color: var(--gray); }

/* Empty state */
.empty-state {
    padding: 2.5rem;
    text-align: center;
    color: var(--gray);
    background: var(--bg-card);
    border: 1px dashed var(--border);
    border-radius: var(--radius);
}

/* Booking section */
.booking-section {
    margin-top: 3rem;
    padding: 2.5rem;
    text-align: center;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.booking-types {
    display: flex;
    gap: 0.6rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.2rem;
}
.badge--lg { font-size: 0.85rem; padding: 0.4rem 1rem; }

/* ─── THE CULT SHOW — pamphlet treatment ─────────────── */

.cult-notice {
    background: var(--paper);
    color: var(--ink);
    border: 3px double var(--ink);
    border-radius: 4px;
    padding: 2.5rem clamp(1.2rem, 4vw, 3.5rem);
    max-width: 820px;
    margin: 0 auto 3rem;
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.45);
    transform: rotate(-0.4deg);
    font-family: var(--font-type);
    text-align: center;
}
.cult-notice__stamp {
    display: inline-block;
    border: 3px solid var(--red);
    color: var(--red);
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 2px;
    padding: 0.3rem 0.9rem;
    transform: rotate(-4deg);
    margin-bottom: 1.2rem;
    text-transform: uppercase;
}
.cult-notice h1 {
    font-family: var(--font-display);
    color: var(--ink);
    font-size: clamp(1.9rem, 5vw, 3rem);
    letter-spacing: 2px;
    margin-bottom: 0.4rem;
}
.cult-notice__sub {
    font-size: 1rem;
    letter-spacing: 1px;
    border-top: 2px solid var(--ink);
    border-bottom: 2px solid var(--ink);
    padding: 0.5rem 0;
    margin: 1rem 0 1.4rem;
    text-transform: uppercase;
}
.cult-notice p {
    font-size: 1.02rem;
    line-height: 1.75;
    margin-bottom: 1rem;
    white-space: pre-line;
}
.cult-notice .caps { text-transform: uppercase; letter-spacing: 1px; }
.cult-notice__obey {
    font-family: var(--font-display);
    font-size: 1.25rem;
    letter-spacing: 2px;
    margin-top: 1.4rem;
    color: var(--red);
}

.cult-lore {
    max-width: 780px;
    margin: 3rem auto 0;
}
.cult-lore h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.cult-lore p { color: var(--gray); margin-bottom: 1rem; }
.cult-lore em { color: var(--paper-dim); }

/* ─── Workshops ──────────────────────────────────────── */

.workshop-list { display: flex; flex-direction: column; gap: 1.4rem; }
.workshop-card {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 1.6rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: border-color .2s, transform .2s;
}
.workshop-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.workshop-card__date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.8rem 0.4rem;
    text-align: center;
}
.workshop-card__month {
    font-family: var(--font-type);
    text-transform: uppercase;
    color: var(--red-bright);
    font-size: 0.85rem;
    letter-spacing: 2px;
}
.workshop-card__day {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--white);
    line-height: 1;
}
.workshop-card__body h3 { font-size: 1.2rem; margin-bottom: 0.3rem; }
.workshop-card__body h3 a { color: var(--white); }
.workshop-card__body h3 a:hover { color: var(--gold); }
.workshop-card__meta {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
}
.workshop-card__meta strong { color: var(--gold); font-weight: 600; }

.alumni-strip {
    margin-top: 3rem;
    padding: 2rem;
    text-align: center;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.alumni-strip h2 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    margin-bottom: 0.6rem;
}
.alumni-strip p { color: var(--gray); max-width: 620px; margin: 0 auto 1.2rem; }
.alumni-names {
    display: flex;
    gap: 1.4rem;
    justify-content: center;
    flex-wrap: wrap;
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--gold);
    letter-spacing: 1px;
}
.alumni-names span small {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--gray);
    letter-spacing: 0.5px;
    margin-top: 0.2rem;
}

/* Detail pages */
.detail-header {
    border-bottom: 1px solid var(--border);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}
.detail-header .card__date { font-size: 1.05rem; }
.detail-meta {
    display: flex;
    gap: 1.6rem;
    flex-wrap: wrap;
    color: var(--gray);
    font-size: 0.95rem;
}
.detail-meta strong { color: var(--white); font-weight: 600; }
.detail-body p { margin-bottom: 1.1rem; color: var(--paper-dim); }
.detail-video {
    margin: 2rem 0;
    aspect-ratio: 16/9;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
.detail-video iframe { width: 100%; height: 100%; border: 0; }

/* RSVP form */
.rsvp-box {
    margin-top: 2.5rem;
    padding: 2rem;
    background: var(--bg-elevated);
    border: 1px solid var(--gold);
    border-radius: var(--radius);
}
.rsvp-box h2 { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 0.5rem; }
.rsvp-box p { color: var(--gray); margin-bottom: 1.4rem; }

/* Forms */
.inline-form, .contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}
.contact-form { max-width: 560px; }
.inline-form input, .inline-form textarea,
.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%;
    padding: 0.7rem 0.9rem;
    background: var(--bg-deep);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
}
.inline-form input:focus, .inline-form textarea:focus,
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
}
.contact-form label, .inline-form label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.6px;
}
select { appearance: auto; }

/* About / Book */
.bio-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2.5rem;
    align-items: start;
}
.bio-photo {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 3/4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}
.bio-body p { margin-bottom: 1.1rem; color: var(--paper-dim); }
.bio-credits {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border-left: 3px solid var(--gold);
    border-radius: var(--radius-sm);
    white-space: pre-line;
    font-family: var(--font-type);
    font-size: 0.95rem;
    color: var(--gray);
}

.book-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}
.book-info h2 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin: 1.8rem 0 0.8rem;
}
.book-info h2:first-child { margin-top: 0; }
.book-info p { color: var(--gray); margin-bottom: 1rem; }
.book-info ul { list-style: none; margin-bottom: 1rem; }
.book-info li { color: var(--paper-dim); padding: 0.35rem 0 0.35rem 1.6rem; position: relative; }
.book-info li::before { content: '★'; position: absolute; left: 0; color: var(--gold); }

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border);
    aspect-ratio: 1;
    background: var(--bg-card);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item__caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(11, 9, 6, 0.9));
    padding: 1.5rem 0.8rem 0.6rem;
    font-size: 0.82rem;
    color: var(--white);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(5, 4, 2, 0.92);
    z-index: 200;
    align-items: center;
    justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 92vw; max-height: 90vh; border-radius: var(--radius-sm); }
.lightbox__close {
    position: absolute;
    top: 1rem; right: 1.5rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2.4rem;
    cursor: pointer;
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.4rem;
}
.testimonial {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--gold);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    font-size: 0.98rem;
}
.testimonial p { color: var(--paper-dim); }
.testimonial footer { margin-top: 0.8rem; color: var(--gray); font-size: 0.88rem; }

/* Newsletter CTA */
.newsletter-cta {
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    padding: 3.5rem 0;
    text-align: center;
    position: relative;
    z-index: 1;
}
.newsletter-cta h2 {
    font-family: var(--font-display);
    font-size: 1.7rem;
    margin-bottom: 0.5rem;
}
.newsletter-cta p { color: var(--gray); margin-bottom: 1.4rem; }
.newsletter-form {
    display: flex;
    gap: 0.6rem;
    justify-content: center;
    flex-wrap: wrap;
}
.newsletter-form input {
    padding: 0.7rem 1rem;
    min-width: 280px;
    background: var(--bg-deep);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: var(--font-body);
}
.newsletter-form input:focus { outline: none; border-color: var(--gold); }
.newsletter-form__msg { margin-top: 0.7rem; min-height: 1.2rem; color: var(--gold); font-size: 0.92rem; }

/* Footer */
.site-footer {
    background: var(--bg-deep);
    border-top: 1px solid var(--border);
    padding: 3rem 0 0;
    position: relative;
    z-index: 1;
}
.site-footer__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px 2.5rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
}
.site-footer__logo {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 0.6rem;
}
.site-footer__brand p { color: var(--gray); font-size: 0.92rem; }
.site-footer__links h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray-dark);
    margin-bottom: 0.8rem;
}
.site-footer__links a {
    display: block;
    color: var(--gray);
    font-size: 0.92rem;
    padding: 0.22rem 0;
}
.site-footer__links a:hover { color: var(--gold); }
.site-footer__bottom {
    border-top: 1px solid var(--border);
    padding: 1.2rem 24px;
    text-align: center;
    color: var(--gray-dark);
    font-size: 0.85rem;
}

/* 404 */
.error-page {
    text-align: center;
    padding: 6rem 24px;
}
.error-page h1 { font-size: 5rem; color: var(--red); }
.error-page p { color: var(--gray); margin-bottom: 1.5rem; }

/* Responsive */
@media (max-width: 900px) {
    .bio-grid, .book-grid { grid-template-columns: 1fr; }
    .bio-photo { max-width: 320px; }
    .site-footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
    .nav-cta { display: none; }
    .nav-toggle { display: flex; }
    .site-nav {
        display: none;
        position: absolute;
        top: 68px; left: 0; right: 0;
        background: var(--bg-deep);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 24px 1.4rem;
        gap: 0.6rem;
    }
    .site-nav.open { display: flex; }
    .workshop-card { grid-template-columns: 90px 1fr; gap: 1rem; }
    .workshop-card__day { font-size: 1.7rem; }
}
