/* ============================================
   ROOTS COMEDY
   Brand: #ff391f · #004500 · #899537 · #e6e88b
   ============================================ */

@font-face {
    font-family: 'Gaegu';
    src: url('../assets/fonts/gaegu-v23-latin-300.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gaegu';
    src: url('../assets/fonts/gaegu-v23-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gaegu';
    src: url('../assets/fonts/gaegu-v23-latin-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --red: #ff391f;
    --red-glow: rgba(255, 57, 31, 0.22);
    --green-dark: #004500;
    --green-mid: #899537;
    --green-gold: #928d00;
    --yellow: #e6e88b;
    --yellow-text: #6b7020;
    --pink: #ffdcd9;
    --bg: #f8f6f0;
    --bg-card: #ffffff;
    --bg-elevated: #f0ede6;
    --bg-alt: #eef2e4;
    --text: #1c2418;
    --text-muted: #5c6554;
    --border: rgba(0, 69, 0, 0.12);
    --shadow: rgba(28, 36, 24, 0.08);
    --shadow-lg: rgba(28, 36, 24, 0.14);
    --font-display: 'Gaegu', cursive;
    --font-body: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    --radius: 6px;
    --radius-lg: 10px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --nav-height: 80px;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: var(--green-dark);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--red);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    z-index: 10001;
    padding: 0.75rem 1.25rem;
    background: var(--red);
    color: #fff;
    border-radius: var(--radius);
    font-weight: 700;
}

.skip-link:focus {
    top: 1rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: min(1140px, 92vw);
    margin-inline: auto;
}

/* ---- Navigation ---- */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 4vw;
    height: var(--nav-height);
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    transition: transform 0.3s;
}

.nav.hidden {
    transform: translateY(-100%);
}

.nav__logo img {
    height: 52px;
    width: auto;
    transition: transform 0.3s;
}

.nav__logo:hover img {
    opacity: 0.85;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10003;
    position: relative;
}

.nav__toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--text);
    transition: transform 0.3s, opacity 0.3s;
}

.nav__toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav__link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-muted);
    position: relative;
    letter-spacing: 0.02em;
    transition: color 0.2s;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width 0.3s;
}

.nav__link:hover {
    color: var(--text);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__link--cta {
    background: var(--red);
    color: #fff !important;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius);
    font-weight: 600;
}

.nav__link--cta::after { display: none; }

.nav__link--cta:hover {
    background: var(--green-dark);
    color: #fff !important;
}

/* ---- Buttons ---- */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    text-decoration: none;
}

.btn--primary {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
}

.btn--primary:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    color: #fff;
}

.btn--outline {
    background: transparent;
    color: var(--text);
    border-color: var(--border);
}

.btn--outline:hover {
    border-color: var(--text);
    color: var(--text);
}

.btn--large {
    padding: 0.85rem 2rem;
    font-size: 1rem;
}

.btn--full {
    width: 100%;
    justify-content: center;
}

.btn.is-loading {
    opacity: 0.7;
    cursor: wait;
}

/* ---- Hero ---- */

.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: calc(var(--nav-height) + 3rem) 0 4rem;
    border-bottom: 1px solid var(--border);
}

.hero__content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    max-width: 640px;
}

.hero__kicker {
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

.hero__logo {
    width: min(480px, 85vw);
}

.hero__tagline {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 3.5vw, 2rem);
    letter-spacing: 0.02em;
    color: var(--green-dark);
    line-height: 1.35;
}

.hero__premiere {
    padding: 1.5rem 1.25rem;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    width: 100%;
    background: var(--bg-card);
}

.hero__premiere-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
}

.hero__premiere-date {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 7vw, 3.75rem);
    font-weight: 700;
    color: var(--red);
    line-height: 1.05;
    letter-spacing: 0.02em;
}

.hero__premiere-meta {
    margin-top: 0.35rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.hero__cta {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    padding-top: 0.5rem;
}

/* Countdown */
.countdown {
    width: 100%;
    max-width: 420px;
    padding: 1.25rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.countdown__label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    text-align: center;
}

.countdown__grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
}

.countdown__unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 52px;
}

.countdown__num {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    font-weight: 700;
    color: var(--red);
    line-height: 1;
}

.countdown__text {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

.countdown__sep {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--green-mid);
    padding-bottom: 0.75rem;
}

/* ---- Sections ---- */

.section {
    padding: 5rem 0;
    position: relative;
}

.section--show {
    background: var(--bg-alt);
}

.section--roots {
    background: var(--bg-card);
    overflow: hidden;
}

.section--location {
    background: var(--bg);
}

.section--comedians {
    background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg) 100%);
}

.section--tickets {
    background: var(--bg);
}

.section--contact {
    background: var(--bg);
    padding-bottom: 8rem;
}

.section__header {
    margin-bottom: 3.5rem;
}

.section__header--center {
    text-align: center;
}

.section__eyebrow {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.section__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.25rem);
    line-height: 1.15;
    letter-spacing: 0.02em;
    font-weight: 700;
}

.section__subtitle {
    margin-top: 0.75rem;
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 560px;
    line-height: 1.65;
}

.section__header--center .section__subtitle {
    margin-inline: auto;
}

/* Reveal animations */
[data-reveal] {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Show Section ---- */

.show-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

.show-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.show-card--premiere {
    border-left: 3px solid var(--red);
}

.show-card__label {
    font-size: 0.85rem;
    color: var(--red);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.show-card__date {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.show-card__day {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--red);
    line-height: 1;
}

.show-card__month {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-weight: 500;
}

.show-card__details {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.show-card__details li {
    color: var(--text-muted);
    font-size: 0.95rem;
    padding: 0.35rem 0;
    border-bottom: 1px solid var(--border);
}

.show-card__details li:last-child {
    border-bottom: none;
}

.show-card__venue {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 700;
    color: var(--green-dark);
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
}

.show-card__tickets {
    margin-top: 0.5rem;
}

.show-info__lead {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.show-info__text {
    color: var(--text-muted);
    line-height: 1.7;
}

/* ---- Events schedule (Eventbrite) ---- */

.events-schedule {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.events-schedule__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
}

.event-feature {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--red);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.event-feature__badge {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 0.5rem;
}

.event-feature__date {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    line-height: 1.1;
    color: var(--text);
}

.event-feature__weekday {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.event-feature__details {
    list-style: none;
    margin: 1rem 0 1.25rem;
    display: grid;
    gap: 0.35rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.event-feature__details li::before {
    content: '·';
    color: var(--green-mid);
    margin-right: 0.45rem;
}

.events-upcoming__label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.events-upcoming__grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
}

.event-chip {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.75rem;
    min-height: 100%;
    padding: 0.9rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: inherit;
    text-decoration: none;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.event-chip:hover {
    border-color: var(--green-mid);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--shadow);
}

.event-chip__date {
    display: block;
}

.event-chip__weekday {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
}

.event-chip__when {
    display: block;
    font-family: var(--font-display);
    font-size: 1.15rem;
    line-height: 1.2;
    color: var(--text);
}

.event-chip__action {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--green-dark);
}

.events-schedule__note {
    font-size: 0.82rem;
    line-height: 1.55;
    color: var(--text-muted);
    padding-top: 0.25rem;
    border-top: 1px solid var(--border);
}

/* ---- Roots Section ---- */

.roots-list {
    list-style: none;
    max-width: 640px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.roots-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.75rem 0;
    border-bottom: 1px solid var(--border);
}

.roots-item:first-child {
    border-top: 1px solid var(--border);
}

.roots-item__num {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--red);
    line-height: 1;
    flex-shrink: 0;
    width: 2rem;
}

.roots-item h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 0.35rem;
    letter-spacing: 0.02em;
}

.roots-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* ---- Location ---- */

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.location-address {
    font-style: normal;
    font-size: 1.1rem;
    color: var(--green-dark);
    font-weight: 600;
    margin: 1rem 0 1.5rem;
    line-height: 1.8;
}

.location-desc {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.location-map__frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    aspect-ratio: 4/3;
}

.location-map__frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.map-consent {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    height: 100%;
    padding: 2rem;
    text-align: center;
    background: var(--bg-alt);
    color: var(--text-muted);
    font-size: 0.95rem;
}

.map-consent.is-hidden {
    display: none;
}

.btn--small {
    padding: 0.55rem 1rem;
    font-size: 0.85rem;
}

/* ---- Cookie Banner ---- */

.cookie-banner {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 10002;
    padding: 1rem;
    background: rgba(28, 36, 24, 0.96);
    color: #f8f6f0;
    border-top: 3px solid var(--red);
    max-height: 92vh;
    overflow-y: auto;
}

body.cookie-banner-open {
    overflow: hidden;
}

.cookie-banner[hidden],
.cookie-banner__view[hidden] {
    display: none;
}

.cookie-banner__inner {
    width: min(720px, 100%);
    margin-inline: auto;
}

.cookie-banner__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.cookie-banner__text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(248, 246, 240, 0.88);
    margin-bottom: 1rem;
}

.cookie-banner__text--settings {
    margin-bottom: 1.25rem;
}

.cookie-banner__fineprint {
    margin-top: 0.85rem;
    font-size: 0.8rem;
}

.cookie-banner__fineprint a,
.cookie-banner__text a {
    color: var(--yellow);
    text-decoration: underline;
}

.cookie-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.cookie-banner .btn--outline {
    border-color: rgba(248, 246, 240, 0.45);
    color: #f8f6f0;
}

.cookie-banner .btn--outline:hover {
    border-color: #f8f6f0;
    color: #f8f6f0;
    background: rgba(248, 246, 240, 0.08);
}

.cookie-banner .btn--ghost {
    background: transparent;
    border: 1px solid transparent;
    color: rgba(248, 246, 240, 0.9);
    padding: 0.65rem 1rem;
    font: inherit;
    cursor: pointer;
    border-radius: var(--radius);
}

.cookie-banner .btn--ghost:hover {
    color: #f8f6f0;
    background: rgba(248, 246, 240, 0.08);
}

.cookie-banner__back {
    margin-top: 0.75rem;
    background: none;
    border: 0;
    color: rgba(248, 246, 240, 0.75);
    font: inherit;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
}

.cookie-banner__back:hover {
    color: #f8f6f0;
}

.cookie-categories {
    list-style: none;
    display: grid;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
}

.cookie-category {
    padding: 0.9rem 1rem;
    border-radius: var(--radius);
    background: rgba(248, 246, 240, 0.06);
    border: 1px solid rgba(248, 246, 240, 0.12);
}

.cookie-category__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.35rem;
}

.cookie-category__badge {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: rgba(248, 246, 240, 0.65);
}

.cookie-category__desc {
    font-size: 0.82rem;
    line-height: 1.5;
    color: rgba(248, 246, 240, 0.78);
}

.cookie-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    cursor: pointer;
    user-select: none;
}

.cookie-toggle--disabled {
    cursor: default;
    opacity: 0.85;
}

.cookie-toggle input {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    pointer-events: none;
}

.cookie-toggle__label {
    font-weight: 600;
    font-size: 0.95rem;
}

.cookie-toggle__switch {
    width: 2.5rem;
    height: 1.4rem;
    border-radius: 999px;
    background: rgba(248, 246, 240, 0.25);
    position: relative;
    transition: background var(--transition);
    flex-shrink: 0;
}

.cookie-toggle__switch::after {
    content: '';
    position: absolute;
    top: 0.15rem;
    left: 0.15rem;
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 50%;
    background: #f8f6f0;
    transition: transform var(--transition);
}

.cookie-toggle input:checked + .cookie-toggle__switch {
    background: var(--red);
}

.cookie-toggle input:checked + .cookie-toggle__switch::after {
    transform: translateX(1.1rem);
}

.cookie-toggle input:focus-visible + .cookie-toggle__switch {
    outline: 2px solid var(--yellow);
    outline-offset: 2px;
}

.footer__link-btn {
    background: none;
    border: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    cursor: pointer;
    text-align: left;
    text-decoration: none;
}

.footer__links .footer__link-btn {
    display: inline;
    color: rgba(248, 246, 240, 0.75);
}

.footer__links .footer__link-btn:hover,
.footer__legal .footer__link-btn:hover {
    color: var(--yellow);
}

.footer__legal .footer__link-btn {
    color: rgba(248, 246, 240, 0.75);
}

/* ---- Form checkbox ---- */

.form-group--checkbox {
    margin-top: 0.5rem;
}

.checkbox {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    cursor: pointer;
}

.checkbox input {
    margin-top: 0.2rem;
    flex-shrink: 0;
    accent-color: var(--red);
}

.checkbox a {
    color: var(--green-dark);
    text-decoration: underline;
}

.location-map__hint {
    text-align: center;
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ---- Tickets ---- */

.btn--ticket {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 0.35rem 0.5rem;
}

.ticket-badge {
    display: inline-block;
    margin-left: 0;
    padding: 0.15rem 0.5rem;
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    vertical-align: middle;
    white-space: nowrap;
}

.nav__link--cta .ticket-badge {
    background: rgba(0, 0, 0, 0.15);
    margin-left: 0.35rem;
}

.tickets-box {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    max-width: 720px;
    margin-inline: auto;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.tickets-box__date {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--red);
    letter-spacing: 0.02em;
    margin-bottom: 0.25rem;
}

.tickets-box__meta {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.tickets-box__text {
    color: var(--text);
    line-height: 1.6;
}

.tickets-box__action {
    text-align: center;
}

.tickets-box__hint {
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ---- Comedians (legacy class reuse) ---- */

.comedians-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.comedians-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step__num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--red);
    line-height: 1;
    opacity: 0.6;
    flex-shrink: 0;
}

.step__content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.03em;
}

.step__content p {
    color: var(--text-muted);
}

.comedians-cta-box {
    background: var(--bg-card);
    border: 2px solid var(--red);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px var(--shadow);
}

.comedians-cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, var(--red-glow) 0%, transparent 60%);
    opacity: 0.2;
}

.comedians-cta-box h3 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.comedians-cta-box p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    position: relative;
}

.comedians-note {
    margin-top: 1rem !important;
    font-size: 0.85rem !important;
    margin-bottom: 0 !important;
}

.mic-pulse {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: mic-pulse 2s ease-in-out infinite;
    position: relative;
}

@keyframes mic-pulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0 transparent); }
    50% { transform: scale(1.15); filter: drop-shadow(0 0 20px var(--red-glow)); }
}

/* ---- Team ---- */

.section--team {
    background: var(--bg-alt);
    overflow: hidden;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.team-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}

.team-card__photo {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.team-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card__info {
    padding: 1.5rem 2rem 2rem;
    position: relative;
    z-index: 1;
    background: var(--bg-card);
}

.team-card__info h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 0.03em;
    margin-bottom: 0.25rem;
    color: var(--text);
}

.team-card__role {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.team-card__info p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ---- Contact ---- */

.contact-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
    color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green-dark);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    text-align: center;
    min-height: 1.5rem;
}

.form-note.success { color: var(--green-mid); }
.form-note.error { color: var(--red); }

.contact-aside {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
}

.contact-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.contact-card p,
.contact-card a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ---- Footer ---- */

.footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 3.5rem 0 2rem;
    color: var(--text-muted);
}

.footer__brand {
    text-align: center;
    margin-bottom: 3rem;
}

.footer__logo {
    width: 180px;
    margin: 0 auto 1rem;
    opacity: 0.9;
}

.footer__tagline {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer__col h4 {
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.footer__links {
    list-style: none;
}

.footer__links li {
    margin-bottom: 0.4rem;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(137, 149, 55, 0.1);
    font-size: 0.85rem;
}

.footer__legal {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer__legal a {
    color: var(--text-muted);
}

.footer__legal a:hover {
    color: var(--red);
}

.footer__legal span {
    color: var(--text-muted);
    opacity: 0.5;
}

/* ---- Legal Pages ---- */

.section--legal {
    padding-top: calc(var(--nav-height) + 3rem);
    padding-bottom: 4rem;
    background: var(--bg);
}

.legal {
    max-width: 720px;
}

.legal__header {
    margin-bottom: 2.5rem;
}

.legal__header h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    color: var(--text);
    margin-bottom: 0.5rem;
    letter-spacing: 0.03em;
}

.legal__lead {
    color: var(--text-muted);
    font-size: 1rem;
}

.legal__intro {
    max-width: 42rem;
    margin-top: 1rem;
    color: var(--text-muted);
    line-height: 1.65;
    font-size: 0.95rem;
}

.legal__hook {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--green-dark);
    margin-bottom: 0.65rem;
    line-height: 1.4;
}

.legal__content h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    margin: 2rem 0 0.75rem;
}

.legal__content p,
.legal__content li {
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 0.75rem;
}

.legal__content ul {
    padding-left: 1.25rem;
    margin-bottom: 1rem;
}

.legal__content a {
    color: var(--green-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal__content a:hover {
    color: var(--red);
}

.legal__back {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

/* ---- Responsive ---- */

@media (max-width: 900px) {
    :root {
        --nav-height: 68px;
    }

    .container {
        width: min(1140px, 90vw);
    }

    .nav {
        padding: 0.5rem 4vw;
    }

    .nav__logo img {
        height: 44px;
    }

    .nav__toggle { display: flex; }

    .nav__links {
        position: fixed;
        inset: 0;
        z-index: 10002;
        background: #fff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.25rem;
        padding: calc(var(--nav-height) + 1rem) 1.5rem 2rem;
        overflow-y: auto;
        width: 100%;
        min-height: 100dvh;
        transform: translateX(100%);
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
    }

    .nav__links.open {
        transform: translateX(0);
        visibility: visible;
        pointer-events: auto;
    }

    body.menu-open .nav__logo {
        opacity: 0;
        pointer-events: none;
    }

    .nav__link {
        font-size: 1.15rem;
    }

    .nav__link--cta {
        margin-top: 0.5rem;
        padding: 0.75rem 1.75rem;
        font-size: 1rem;
        display: inline-flex;
        flex-wrap: wrap;
        justify-content: center;
        max-width: 280px;
    }

    .nav__link--cta .ticket-badge {
        background: rgba(0, 0, 0, 0.12);
    }

    .hero {
        min-height: auto;
        padding: calc(var(--nav-height) + 1.5rem) 0 3rem;
    }

    .hero__logo {
        width: min(400px, 88vw);
    }

    .hero__tagline {
        font-size: clamp(1.2rem, 5vw, 1.6rem);
        padding: 0 0.5rem;
    }

    .section {
        padding: 3.5rem 0;
    }

    .section--contact {
        padding-bottom: 3.5rem;
    }

    .section__header {
        margin-bottom: 2rem;
    }

    .section__title {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
    }

    .show-grid,
    .location-grid,
    .contact-grid,
    .footer__grid,
    .team-grid,
    .tickets-box {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .show-card {
        padding: 1.5rem;
    }

    .events-upcoming__grid {
        grid-template-columns: 1fr;
    }

    .show-card__day {
        font-size: 3rem;
    }

    .team-card__info {
        padding: 1.25rem 1.5rem 1.5rem;
    }

    .tickets-box {
        padding: 1.5rem;
    }

    .tickets-box__action {
        text-align: left;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .footer {
        padding: 2.5rem 0 1.5rem;
    }

    .footer__logo {
        width: 140px;
    }

    .footer__grid {
        gap: 1.5rem;
        text-align: center;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    :root {
        --nav-height: 60px;
    }

    .hero__cta {
        flex-direction: column;
        width: 100%;
    }

    .hero__cta .btn {
        width: 100%;
        justify-content: center;
    }

    .section {
        padding: 2.5rem 0;
    }

    .roots-item {
        gap: 1rem;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html { scroll-behavior: auto; }
}
