/* ===========================================================================
   Plaza Ticketing Portal - public-facing brand foundation
   --------------------------------------------------------------------------- */

:root {
    --plaza-brown:        #441116;   /* primary header background */
    --plaza-brown-deep:   #2d0a0e;   /* drawer header / hero darkest stop */
    --plaza-gold:         #C4932C;   /* primary CTA fill / accent */
    --plaza-gold-light:   #E4B056;   /* Tickets pill top highlight */
    --plaza-gold-dark:    #A87A1F;   /* Tickets pill bottom shade */
    --plaza-cream:        #F5E2B8;   /* header text + button outline */
    --plaza-cream-soft:   #FBF3DC;   /* parchment menu accent option */
    --plaza-blue:         #08263F;   /* footer background */
    --plaza-paper:        #FAF6EC;   /* page body background */
    --plaza-paper-edge:   #EFE6CC;   /* card borders */
    --plaza-text:         #1d1d1d;
    --plaza-muted:        #6b6b6b;
    --plaza-border:       #d6d2c5;
    --plaza-row-divider:  rgba(196, 147, 44, 0.25);
    --plaza-shadow:       0 2px 8px rgba(0, 0, 0, 0.08);
    --plaza-radius:       6px;
    --plaza-font-display: "Playfair Display", "Georgia", serif;
    --plaza-font-ui:      "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: var(--plaza-font-ui);
    color: var(--plaza-text);
    background: var(--plaza-paper);
    line-height: 1.45;
}

a { color: var(--plaza-blue); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 { font-family: var(--plaza-font-display); margin: 0 0 0.5em 0; }

/* ============================================================
   Sticky top bar (redesign 2026-05-17)
   ============================================================ */
.ptp-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--plaza-brown);
    color: var(--plaza-cream);
    border-bottom: 2px solid var(--plaza-gold);
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.18);
}
.ptp-header-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 4px 14px;
    gap: 8px;
}
@media (min-width: 768px) {
    .ptp-header-inner {
        min-height: 58px;
        padding: 4px 28px;
    }
}

/* Brand lockup - mark on the LEFT of the wordmark. margin-right: auto
   pushes every following flex sibling (quick-nav / greeting / divider
   / action cluster) to the right edge regardless of which of those
   pieces are rendered for the current state. */
.ptp-brand {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    padding: 4px 0;
    margin-right: auto;
}
.ptp-brand:hover { text-decoration: none; }
.ptp-brand-mark {
    height: 24px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.45));
}
.ptp-brand-wordmark {
    height: 30px;
    width: auto;
    display: block;
}
@media (min-width: 768px) {
    .ptp-brand              { gap: 8px; }
    .ptp-brand-mark         { height: 28px; }
    .ptp-brand-wordmark     { height: 36px; }
}

/* Quick-nav (tablet/desktop only) */
.ptp-quicknav {
    display: none;
    align-items: center;
}
.ptp-quicknav a {
    color: var(--plaza-cream);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.3px;
    padding: 8px 4px;
    white-space: nowrap;
}
.ptp-quicknav a:hover { color: var(--plaza-gold); text-decoration: none; }
.ptp-quicknav .desktop-only { display: none; }
@media (min-width: 768px) {
    .ptp-quicknav { display: inline-flex; gap: 12px; margin-right: 2px; }
}
@media (min-width: 1024px) {
    .ptp-quicknav { gap: 26px; margin-right: 6px; }
    .ptp-quicknav .desktop-only { display: inline; }
}

/* Signed-in greeting block (tablet/desktop). Replaces .ptp-quicknav
   when the patron is authenticated. Two-line lockup: "Hello Aaron &
   Milette" on top, credential badges below joined by " | ". */
.ptp-patron-greet {
    display: none;
    flex-direction: column;
    align-items: flex-end;
    gap: 1px;
    margin-right: 4px;
    padding: 4px 6px;
    color: var(--plaza-cream);
    text-decoration: none;
    line-height: 1.15;
    text-align: right;
}
.ptp-patron-greet:hover { color: var(--plaza-gold); text-decoration: none; }
.ptp-patron-greet .greeting {
    font-family: var(--plaza-font-display);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.2px;
}
.ptp-patron-greet .badges {
    font-family: var(--plaza-font-ui);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.3px;
    color: rgba(245, 226, 184, 0.78);
}
@media (min-width: 768px) {
    .ptp-patron-greet { display: inline-flex; }
    .ptp-patron-greet .greeting { font-size: 16px; }
    .ptp-patron-greet .badges { font-size: 12px; }
}

/* Mobile account icon. Only shown when signed in AND viewport < 768.
   Sits left of MENU in the action cluster. */
.ptp-patron-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: rgba(245, 226, 184, 0.12);
    border: 1px solid rgba(245, 226, 184, 0.25);
    color: var(--plaza-cream);
    font-size: 13px;
    text-decoration: none;
}
.ptp-patron-icon:hover {
    background: var(--plaza-gold);
    color: var(--plaza-brown);
    border-color: var(--plaza-gold);
    text-decoration: none;
}
@media (min-width: 768px) {
    .ptp-patron-icon { display: none; }
}

/* Vertical divider between quick-nav and MENU (tablet/desktop). */
.ptp-bar-divider {
    display: none;
    width: 2px;
    height: 22px;
    background: rgba(245, 226, 184, 0.55);
    border-radius: 1px;
    margin: 0 6px 0 2px;
}
@media (min-width: 768px) {
    .ptp-bar-divider { display: inline-block; }
    /* On mobile the quick-nav is hidden so the brand alone pushes
       the trailing actions to the right; on tablet+ the divider needs
       to come AFTER the auto margin chain so it sits between nav and
       MENU as designed. */
}

.ptp-header-actions {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* MENU button */
.ptp-menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 40px;
    padding: 0 12px;
    background: transparent;
    border: 0;
    cursor: pointer;
    color: var(--plaza-cream);
    font-family: var(--plaza-font-ui);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}
.ptp-menu-toggle:hover { color: var(--plaza-gold); }
.ptp-menu-toggle svg { color: currentColor; width: 20px; height: 20px; }
@media (min-width: 768px) {
    .ptp-menu-toggle { padding: 0 14px; font-size: 15px; }
    .ptp-menu-toggle svg { width: 22px; height: 22px; }
}

/* Tickets pill - the primary CTA. Dimensional, gold fill, cream border. */
.ptp-tix-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    height: 32px;
    padding: 0 14px 0 12px;
    background: linear-gradient(180deg,
                var(--plaza-gold-light) 0%,
                var(--plaza-gold) 55%,
                var(--plaza-gold-dark) 100%);
    color: var(--plaza-brown);
    border: 1.5px solid var(--plaza-cream);
    border-radius: 999px;
    font-family: var(--plaza-font-ui);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    box-shadow:
        inset 0  1px 0 rgba(255, 255, 255, 0.55),
        inset 0 -2px 4px rgba(68, 17, 22, 0.30),
        0  1px 0 rgba(0, 0, 0, 0.25),
        0  3px 8px rgba(0, 0, 0, 0.22);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
    cursor: pointer;
}
.ptp-tix-btn:hover { filter: brightness(1.05); text-decoration: none; color: var(--plaza-brown); }
.ptp-tix-btn:active {
    transform: translateY(1px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 2px rgba(68, 17, 22, 0.25),
        0 1px 0 rgba(0, 0, 0, 0.25);
}
.ptp-tix-icon       { font-size: 13px; color: var(--plaza-brown); }
.ptp-tix-label-long { display: none; }
@media (min-width: 768px) {
    .ptp-tix-btn         { height: 36px; padding: 0 18px 0 16px; font-size: 14px; }
    .ptp-tix-icon        { display: none; }
    .ptp-tix-label-short { display: none; }
    .ptp-tix-label-long  { display: inline; }
}

/* Sign In button - shown on focused-flow pages (cart, checkout,
   etc.) when the patron is signed out. Outlined cream so it reads as
   secondary to the page's primary CTA. Height + font-size matched
   to .ptp-tix-btn so the two pills swap cleanly. */
.ptp-signin-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    padding: 0 14px 0 12px;
    background: transparent;
    color: var(--plaza-cream);
    border: 1.5px solid var(--plaza-cream);
    border-radius: 999px;
    font-family: var(--plaza-font-ui);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    box-sizing: border-box;
}
.ptp-signin-btn:hover {
    background: var(--plaza-cream);
    color: var(--plaza-brown);
    border-color: var(--plaza-cream);
    text-decoration: none;
}
@media (min-width: 768px) {
    .ptp-signin-btn { height: 36px; padding: 0 18px 0 16px; font-size: 14px; }
}

/* Cart icon - REPLACES the Tickets pill when items present (per design call). */
.ptp-cart-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 8px;
    background: transparent;
    border: 0;
    color: var(--plaza-gold);
    text-decoration: none;
}
.ptp-cart-btn:hover { color: var(--plaza-cream); text-decoration: none; }
.ptp-cart-btn i { font-size: 20px; }
@media (min-width: 768px) {
    .ptp-cart-btn { min-width: 44px; height: 44px; padding: 0 10px; }
    .ptp-cart-btn i { font-size: 22px; }
}
.ptp-cart-count {
    position: absolute;
    top: 2px;
    right: 0;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: var(--plaza-blue);
    color: #fff;
    font-weight: 800;
    font-size: 11px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    box-shadow: 0 0 0 2px var(--plaza-brown);
}

/* ============================================================
   Slide-out drawer
   ============================================================ */
.ptp-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8, 12, 20, 0.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
    z-index: 199;
}
.ptp-drawer-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.ptp-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(340px, 86%);
    background: var(--plaza-brown);
    color: var(--plaza-cream);
    z-index: 200;
    transform: translateX(100%);
    transition: transform 260ms cubic-bezier(0.22, 0.61, 0.36, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -6px 0 30px rgba(0, 0, 0, 0.35);
}
.ptp-drawer.open { transform: translateX(0); }

/* Border-box across the drawer so width: 100% + padding doesn't push
   any row past the container and trigger a horizontal scrollbar. */
.ptp-drawer,
.ptp-drawer *,
.ptp-drawer *::before,
.ptp-drawer *::after { box-sizing: border-box; }

.ptp-drawer-header {
    flex: 0 0 auto;
    background: var(--plaza-brown-deep);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 8px 8px 16px;
    border-bottom: 1px solid rgba(245, 226, 184, 0.12);
}
.ptp-drawer-header h2 {
    margin: 0;
    font-family: var(--plaza-font-display);
    font-weight: 700;
    font-size: 20px;
    color: var(--plaza-cream);
}
.ptp-drawer-close {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 0;
    color: var(--plaza-cream);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.ptp-drawer-close:hover { color: var(--plaza-gold); }
.ptp-drawer-close svg { width: 22px; height: 22px; }

.ptp-drawer-body {
    flex: 1 1 auto;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

.ptp-drawer-section { border-bottom: 1px solid rgba(245, 226, 184, 0.08); }

.ptp-drawer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 42px;
    padding: 8px 16px;
    background: transparent;
    border: 0;
    color: var(--plaza-cream);
    font-family: var(--plaza-font-ui);
    font-weight: 600;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.2px;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
}
.ptp-drawer-row:hover {
    background: rgba(245, 226, 184, 0.06);
    color: var(--plaza-gold);
    text-decoration: none;
}
.ptp-drawer-row .chevron {
    width: 12px;
    height: 12px;
    transition: transform 200ms ease;
    color: var(--plaza-gold);
    flex: 0 0 auto;
}
.ptp-drawer-section.open > .ptp-drawer-row .chevron {
    transform: rotate(90deg);
}
.ptp-drawer-row .external {
    font-size: 12px;
    margin-left: 6px;
    color: var(--plaza-gold);
    opacity: 0.8;
}

.ptp-drawer-sublist {
    background: rgba(0, 0, 0, 0.18);
    max-height: 0;
    overflow: hidden;
    transition: max-height 300ms ease;
}
.ptp-drawer-section.open > .ptp-drawer-sublist {
    max-height: 600px;
}
.ptp-drawer-sublist a {
    display: block;
    min-height: 34px;
    padding: 7px 16px 7px 28px;
    color: var(--plaza-cream);
    font-family: var(--plaza-font-ui);
    font-weight: 500;
    font-size: 14px;
    line-height: 1.3;
    text-decoration: none;
    border-top: 1px solid rgba(245, 226, 184, 0.05);
}
.ptp-drawer-sublist a:first-child { border-top: 0; }
.ptp-drawer-sublist a:hover {
    background: rgba(245, 226, 184, 0.06);
    color: var(--plaza-gold);
    text-decoration: none;
}

.ptp-drawer-footer {
    padding: 10px 16px 14px;
    border-top: 1px solid rgba(245, 226, 184, 0.10);
}
.ptp-drawer-social {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}
.ptp-drawer-social a {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(245, 226, 184, 0.30);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--plaza-cream);
    text-decoration: none;
    font-size: 13px;
}
.ptp-drawer-social a:hover {
    background: var(--plaza-gold);
    color: var(--plaza-brown);
    border-color: var(--plaza-gold);
    text-decoration: none;
}
.ptp-drawer-copy {
    font-size: 11px;
    color: rgba(245, 226, 184, 0.70);
    line-height: 1.45;
}

/* ============================================================
   Homepage hero
   ============================================================ */
.ptp-hero {
    position: relative;
    overflow: hidden;
    background: var(--plaza-brown-deep);
    height: 620px;
}
@media (min-width: 768px) { .ptp-hero { height: 580px; } }
@media (min-width: 1024px) { .ptp-hero { height: 640px; } }

.ptp-hero-track {
    display: flex;
    height: 100%;
    transform: translateX(calc(var(--hero-index, 0) * -100%));
    transition: transform 720ms cubic-bezier(0.65, 0, 0.35, 1);
    will-change: transform;
}

.ptp-hero-slide {
    flex: 0 0 100%;
    position: relative;
    overflow: hidden;
}

.ptp-hero-media,
.ptp-hero-media video,
.ptp-hero-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}
@media (min-width: 768px) {
    .ptp-hero-media video,
    .ptp-hero-media img { object-position: center 35%; }
}

.ptp-hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(45, 10, 14, 0.55) 0%,
        rgba(45, 10, 14, 0.00) 18%,
        rgba(45, 10, 14, 0.00) 45%,
        rgba(45, 10, 14, 0.75) 88%,
        rgba(45, 10, 14, 0.95) 100%);
    pointer-events: none;
}

.ptp-hero-status {
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
}
.ptp-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--plaza-gold);
    color: var(--plaza-brown);
    border-radius: 999px;
    font-family: var(--plaza-font-ui);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.25);
}
.ptp-hero-pill.is-cream {
    background: rgba(245, 226, 184, 0.95);
}
.ptp-hero-pill .dot {
    width: 8px; height: 8px;
    background: var(--plaza-brown);
    border-radius: 999px;
    display: inline-block;
    animation: plazaPulse 1.8s ease-in-out infinite;
}
@keyframes plazaPulse {
    0%, 100% { transform: scale(1);    opacity: 0.95; }
    50%      { transform: scale(1.35); opacity: 0.55; }
}

.ptp-hero-body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 96px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 0 20px;
    text-align: center;
}
@media (min-width: 768px) {
    .ptp-hero-body { bottom: 64px; gap: 26px; }
}

.ptp-hero-title {
    margin: 0;
    font-family: var(--plaza-font-display);
    font-weight: 700;
    font-size: 52px;
    line-height: 1.02;
    letter-spacing: -1px;
    color: #fff;
    text-wrap: balance;
    text-shadow: 0 4px 28px rgba(0, 0, 0, 0.55);
    max-width: 1100px;
}
@media (min-width: 768px) { .ptp-hero-title { font-size: 76px; } }
@media (min-width: 1024px) { .ptp-hero-title { font-size: 96px; } }

.ptp-hero-date {
    font-family: var(--plaza-font-ui);
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.5px;
    color: var(--plaza-cream);
    margin: -4px 0 0 0;
}
@media (min-width: 768px) { .ptp-hero-date { font-size: 22px; } }

.ptp-hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 360px;
}
@media (min-width: 768px) {
    .ptp-hero-ctas { flex-direction: row; gap: 14px; max-width: none; width: auto; }
}

.ptp-hero-cta-primary,
.ptp-hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    padding: 0 24px;
    font-family: var(--plaza-font-ui);
    font-weight: 800;
    font-size: 17px;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 6px;
    cursor: pointer;
}
.ptp-hero-cta-primary {
    background: var(--plaza-gold);
    color: var(--plaza-brown);
    border: 0;
    box-shadow:
        0 3px 0 rgba(0, 0, 0, 0.18),
        0 6px 18px rgba(0, 0, 0, 0.30);
}
.ptp-hero-cta-primary:hover { filter: brightness(1.05); text-decoration: none; color: var(--plaza-brown); }
.ptp-hero-cta-secondary {
    background: transparent;
    color: var(--plaza-cream);
    border: 2px solid var(--plaza-cream);
    backdrop-filter: blur(2px);
    font-weight: 700;
}
.ptp-hero-cta-secondary:hover { color: var(--plaza-gold); border-color: var(--plaza-gold); text-decoration: none; }

@media (min-width: 768px) {
    .ptp-hero-cta-primary,
    .ptp-hero-cta-secondary {
        height: 50px;
        padding: 0 30px;
        font-size: 19px;
    }
}

.ptp-hero-sponsor img {
    height: 48px;
    width: auto;
    display: block;
    filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.45));
}
@media (min-width: 768px) { .ptp-hero-sponsor img { height: 60px; } }

/* Arrows */
.ptp-hero-arrow {
    position: absolute;
    background: rgba(245, 226, 184, 0.92);
    border: 0;
    color: var(--plaza-brown);
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
    z-index: 6;
}
.ptp-hero-arrow:hover { background: var(--plaza-cream); }
.ptp-hero-arrow svg { width: 22px; height: 22px; stroke-width: 3.2; }
/* Mobile: paired bottom row between CTAs and dots. */
.ptp-hero-arrow {
    width: 36px; height: 36px;
    bottom: 46px;
    top: auto;
    transform: none;
}
.ptp-hero-arrow-prev { left: calc(50% - 32px); }
.ptp-hero-arrow-next { left: calc(50% + 4px); }
@media (min-width: 768px) {
    .ptp-hero-arrow {
        width: 52px; height: 52px;
        top: 50%;
        transform: translateY(-50%);
        bottom: auto;
    }
    .ptp-hero-arrow-prev { left: 12px; right: auto; }
    .ptp-hero-arrow-next { left: auto; right: 12px; }
}

/* Pagination dots */
.ptp-hero-dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 6;
}
.ptp-hero-dot {
    width: 10px; height: 10px;
    background: rgba(245, 226, 184, 0.5);
    border-radius: 999px;
    transition: width 200ms ease, background 200ms ease;
    pointer-events: none;
}
.ptp-hero-dot.active {
    width: 26px;
    background: var(--plaza-gold);
}

/* ============================================================
   What's On grid
   ============================================================ */
.ptp-whatson {
    background: var(--plaza-paper);
    padding: 44px 18px 24px;
}
@media (min-width: 768px) { .ptp-whatson { padding: 72px 40px 36px; } }

.ptp-whatson-header {
    max-width: 1280px;
    margin: 0 auto 28px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.ptp-whatson-eyebrow {
    display: block;
    color: var(--plaza-gold);
    font-family: var(--plaza-font-ui);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin: 0 0 6px;
}
.ptp-whatson-heading {
    margin: 0;
    color: var(--plaza-brown);
    font-family: var(--plaza-font-display);
    font-weight: 700;
    font-size: 38px;
    line-height: 1.1;
}
@media (min-width: 768px) { .ptp-whatson-heading { font-size: 56px; } }
.ptp-whatson-link {
    display: none;
    color: var(--plaza-brown);
    font-family: var(--plaza-font-ui);
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    border-bottom: 2px solid var(--plaza-gold);
    padding-bottom: 2px;
}
.ptp-whatson-link:hover { color: var(--plaza-gold); text-decoration: none; }
@media (min-width: 768px) { .ptp-whatson-link { display: inline-block; } }

.ptp-whatson-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}
@media (min-width: 768px) { .ptp-whatson-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; } }
@media (min-width: 1024px) { .ptp-whatson-grid { grid-template-columns: repeat(3, 1fr); } }

.ptp-whatson-card {
    background: #fff;
    border: 1px solid var(--plaza-paper-edge);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(45, 10, 14, 0.08);
    display: flex;
    flex-direction: column;
}
.ptp-whatson-poster {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}
.ptp-whatson-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.ptp-whatson-poster-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--plaza-brown) 0%, var(--plaza-brown-deep) 100%);
    color: var(--plaza-cream);
    font-family: var(--plaza-font-display);
    font-size: 26px;
    text-align: center;
    padding: 24px;
}
.ptp-whatson-flag {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 12px;
    background: var(--plaza-gold);
    color: var(--plaza-brown);
    font-family: var(--plaza-font-ui);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.ptp-whatson-flag.is-onsale {
    background: rgba(8, 38, 63, 0.85);
    color: #fff;
}

/* Card body sits on the white card surface below the poster.
   Holds venue eyebrow, title, and the date + Tickets row. */
.ptp-whatson-body {
    padding: 16px 18px 18px;
    text-align: center;
}
.ptp-whatson-venue {
    display: block;
    color: var(--plaza-gold);
    font-family: var(--plaza-font-ui);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    margin: 0 0 6px;
}
.ptp-whatson-title {
    margin: 0 0 12px;
    font-family: var(--plaza-font-display);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.15;
    color: var(--plaza-brown);
}
.ptp-whatson-meta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}
.ptp-whatson-dates {
    color: var(--plaza-text);
    font-family: var(--plaza-font-ui);
    font-weight: 600;
    font-size: 14px;
    margin: 0;
}

/* Card Tickets pill - same dimensional gold treatment as the header
   .ptp-tix-btn, scaled down to live inside the card body. Border
   uses a darker gold so the pill reads cleanly against the white
   card surface (cream border would disappear on white). */
.ptp-whatson-buy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 28px;
    padding: 0 14px;
    background: linear-gradient(180deg,
                var(--plaza-gold-light) 0%,
                var(--plaza-gold) 55%,
                var(--plaza-gold-dark) 100%);
    color: var(--plaza-brown);
    border: 1.5px solid var(--plaza-gold-dark);
    border-radius: 999px;
    font-family: var(--plaza-font-ui);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    box-sizing: border-box;
    box-shadow:
        inset 0  1px 0 rgba(255, 255, 255, 0.55),
        inset 0 -2px 4px rgba(68, 17, 22, 0.25),
        0  1px 0 rgba(0, 0, 0, 0.18),
        0  2px 6px rgba(0, 0, 0, 0.15);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}
.ptp-whatson-buy:hover { filter: brightness(1.05); text-decoration: none; color: var(--plaza-brown); }
.ptp-whatson-buy:active {
    transform: translateY(1px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 2px rgba(68, 17, 22, 0.2),
        0 1px 0 rgba(0, 0, 0, 0.18);
}

/* Mobile-only "See full season" outline button at the bottom of the grid. */
.ptp-whatson-fullseason {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 420px;
    height: 56px;
    margin: 24px auto 0;
    background: transparent;
    color: var(--plaza-brown);
    border: 2px solid var(--plaza-brown);
    border-radius: 999px;
    font-family: var(--plaza-font-ui);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.8px;
    text-decoration: none;
}
.ptp-whatson-fullseason:hover { background: var(--plaza-brown); color: var(--plaza-cream); text-decoration: none; }
@media (min-width: 768px) { .ptp-whatson-fullseason { display: none; } }

.ptp-empty {
    text-align: center;
    padding: 48px 24px;
    color: var(--plaza-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================================
   Show detail page
   ============================================================ */
.show-detail-hero {
    position: relative;
    overflow: hidden;
    background: var(--plaza-brown-deep);
    padding: 28px 0 24px;
}
@media (min-width: 768px) { .show-detail-hero { padding: 48px 0 36px; } }

.show-detail-hero-backstage {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(60px) brightness(0.45) saturate(1.1);
    transform: scale(1.2);
    opacity: 0.55;
    pointer-events: none;
    z-index: 0;
}
.show-detail-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(45, 10, 14, 0.35) 0%, rgba(45, 10, 14, 0.55) 100%);
    pointer-events: none;
    z-index: 1;
}

.show-detail-banner-wrap {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 18px;
}
@media (min-width: 768px) { .show-detail-banner-wrap { padding: 0 32px; } }

@keyframes plazaHeroZoomIn {
    from { transform: scale(1.16); opacity: 0; }
    to   { transform: scale(1);    opacity: 1; }
}

.show-detail-banner {
    display: block;
    width: 100%;
    aspect-ratio: 750 / 278;
    object-fit: cover;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(196, 147, 44, 0.35);
    animation: plazaHeroZoomIn 1200ms cubic-bezier(0.16, 1, 0.3, 1) both;
    transform-origin: center center;
}
.show-detail-banner-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 750 / 278;
    width: 100%;
    background: linear-gradient(135deg, var(--plaza-brown) 0%, var(--plaza-brown-deep) 100%);
    border-radius: 12px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(196, 147, 44, 0.35);
    padding: 20px;
    text-align: center;
    animation: plazaHeroZoomIn 1200ms cubic-bezier(0.16, 1, 0.3, 1) both;
    transform-origin: center center;
}
.show-detail-banner-fallback .title {
    font-family: var(--plaza-font-display);
    font-weight: 700;
    font-size: 40px;
    line-height: 1.05;
    color: var(--plaza-cream);
    text-shadow: 0 4px 28px rgba(0, 0, 0, 0.55);
    max-width: 720px;
}
@media (min-width: 768px) { .show-detail-banner-fallback .title { font-size: 64px; } }
@media (min-width: 1024px) { .show-detail-banner-fallback .title { font-size: 80px; } }

.show-detail-caption {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: 0 auto;
    padding: 18px 18px 0;
    color: var(--plaza-cream);
}
@media (min-width: 768px) { .show-detail-caption { padding: 24px 32px 0; } }

.show-detail-eyebrow {
    display: block;
    color: var(--plaza-gold);
    font-family: var(--plaza-font-ui);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin: 0 0 10px;
}
@media (min-width: 768px) { .show-detail-eyebrow { font-size: 14px; } }

.show-detail-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 16px;
}
.show-detail-meta .date {
    font-family: var(--plaza-font-display);
    font-weight: 700;
    font-size: 22px;
    color: var(--plaza-cream);
}
.show-detail-meta .venue {
    font-family: var(--plaza-font-ui);
    font-weight: 500;
    font-size: 15px;
    color: rgba(245, 226, 184, 0.85);
}
@media (min-width: 768px) {
    .show-detail-meta .date { font-size: 28px; }
    .show-detail-meta .venue { font-size: 17px; }
}

.show-detail-body {
    max-width: 1180px;
    margin: 0 auto;
    padding: 24px 18px 0;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
        "about"
        "details"
        "buy"
        "picker";
    gap: 24px;
}
@media (min-width: 1024px) {
    .show-detail-body {
        grid-template-columns: 1fr 380px;
        grid-template-areas:
            "about   buy"
            "details buy"
            "picker  buy";
        gap: 28px 56px;
        padding: 40px 32px 0;
    }
}
.show-detail-about   { grid-area: about; }
.show-detail-details { grid-area: details; }
.show-detail-buy     { grid-area: buy; align-self: start; }
.show-detail-picker  { grid-area: picker; }

@media (min-width: 1024px) {
    .show-detail-buy { position: sticky; top: 96px; }
}

.show-detail-section h2 {
    font-family: var(--plaza-font-display);
    font-weight: 700;
    font-size: 26px;
    color: var(--plaza-brown);
    margin: 0 0 12px;
}
@media (min-width: 768px) { .show-detail-section h2 { font-size: 28px; } }

.show-detail-about-body {
    font-family: var(--plaza-font-ui);
    font-size: 17px;
    line-height: 1.65;
    color: var(--plaza-text);
    max-width: 70ch;
}
.show-detail-about-body p { margin: 0 0 14px; }
.show-detail-about-body p:last-child { margin-bottom: 0; }
@media (min-width: 768px) { .show-detail-about-body { font-size: 18px; line-height: 1.7; } }

.show-detail-details-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: var(--plaza-font-ui);
    font-size: 16px;
    line-height: 1.7;
    color: var(--plaza-text);
}
.show-detail-details-list li { margin-bottom: 4px; }
.show-detail-details-list li strong { font-weight: 700; color: var(--plaza-brown); margin-right: 6px; }
.show-detail-details-list .venue-map-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    color: var(--plaza-brown);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border-bottom: 2px solid var(--plaza-gold);
    padding-bottom: 1px;
}
.show-detail-details-list .venue-map-link:hover { color: var(--plaza-gold); text-decoration: none; }
.show-detail-details-list .venue-map-link i { font-size: 13px; color: var(--plaza-gold); }
@media (min-width: 768px) { .show-detail-details-list { font-size: 17px; } }

/* Buy card */
.buy-card {
    background: #fff;
    border: 1px solid var(--plaza-paper-edge);
    border-radius: 12px;
    padding: 22px;
    box-shadow: 0 8px 28px rgba(45, 10, 14, 0.10);
}
.buy-card-eyebrow {
    display: block;
    color: var(--plaza-gold);
    font-family: var(--plaza-font-ui);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    margin: 0 0 6px;
}
.buy-card-price {
    font-family: var(--plaza-font-display);
    font-weight: 700;
    font-size: 32px;
    color: var(--plaza-brown);
    margin: 0 0 4px;
    line-height: 1.05;
}
.buy-card-price .label {
    font-family: var(--plaza-font-ui);
    font-weight: 500;
    font-size: 14px;
    color: var(--plaza-muted);
    margin-right: 6px;
    vertical-align: 4px;
}
.buy-card-price-note {
    font-family: var(--plaza-font-ui);
    font-size: 12px;
    color: var(--plaza-muted);
    margin: 0 0 16px;
}
.buy-card-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 52px;
    background: linear-gradient(180deg,
                var(--plaza-gold-light) 0%,
                var(--plaza-gold) 55%,
                var(--plaza-gold-dark) 100%);
    color: var(--plaza-brown);
    font-family: var(--plaza-font-ui);
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border: 1.5px solid var(--plaza-gold-dark);
    border-radius: 999px;
    text-decoration: none;
    cursor: pointer;
    box-sizing: border-box;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.55),
        inset 0 -2px 4px rgba(68, 17, 22, 0.20),
        0 2px 8px rgba(0, 0, 0, 0.15);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}
.buy-card-cta:hover { filter: brightness(1.05); text-decoration: none; color: var(--plaza-brown); }
.buy-card-phone {
    font-family: var(--plaza-font-ui);
    font-size: 13px;
    color: var(--plaza-muted);
    margin: 14px 0 0;
    text-align: center;
}
.buy-card-phone a {
    color: var(--plaza-brown);
    font-weight: 600;
    text-decoration: none;
}
.buy-card-divider {
    border: 0;
    border-top: 1px solid var(--plaza-paper-edge);
    margin: 18px 0;
}
.buy-card-sponsor-eyebrow {
    display: block;
    color: var(--plaza-gold);
    font-family: var(--plaza-font-ui);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 8px;
}
.buy-card-sponsor {
    display: block;
    text-align: center;
}
.buy-card-sponsor img {
    display: inline-block;
    height: 64px;
    width: auto;
    filter: drop-shadow(0 2px 6px rgba(45, 10, 14, 0.15));
}

/* Show detail "Ticket Availability" section. Two-column layout:
   compact mini-calendar (read-only date overview) on the left and full
   performance list on the right. Mirrors the long-running /show.asp
   layout the user already trusts. Clicking an active day on the mini
   cal highlights + scrolls the matching perf-row(s). */
.show-detail-tickets {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
}
@media (min-width: 768px) {
    .show-detail-tickets { grid-template-columns: 280px 1fr; gap: 32px; }
}

/* ---- Mini calendar (left column on tablet+, hidden on mobile) ---- */
.show-mini-cal { font-family: var(--plaza-font-ui); max-width: 280px; display: none; }
@media (min-width: 768px) { .show-mini-cal { display: block; } }
.show-mini-cal .smc-month + .smc-month { margin-top: 14px; }
.show-mini-cal .smc-month-title {
    text-align: center;
    font-family: var(--plaza-font-display);
    font-weight: 700;
    font-size: 16px;
    color: var(--plaza-brown);
    padding: 6px 0 8px;
    border-bottom: 2px solid var(--plaza-paper-edge);
    margin-bottom: 6px;
}
.show-mini-cal .smc-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
}
.show-mini-cal .smc-hdr {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--plaza-muted);
    padding: 4px 0;
}
.show-mini-cal .smc-day {
    text-align: center;
    font-size: 13px;
    padding: 6px 2px;
    border-radius: 4px;
    color: #999;
    line-height: 1;
}
.show-mini-cal .smc-day.smc-empty { color: transparent; }
.show-mini-cal .smc-day.smc-active {
    background: var(--plaza-brown);
    color: var(--plaza-cream);
    font-weight: 700;
    border-radius: 5px;
    cursor: pointer;
}
.show-mini-cal .smc-day.smc-active:hover { background: var(--plaza-brown-deep); }
.show-mini-cal .smc-day.smc-today {
    outline: 2px solid var(--plaza-gold);
    outline-offset: -2px;
}
.show-mini-cal .smc-day.smc-selected {
    background: var(--plaza-gold);
    color: var(--plaza-brown);
    box-shadow: 0 0 0 2px var(--plaza-gold);
}
.show-mini-cal .smc-day.smc-selected:hover { background: var(--plaza-gold-dark); }

/* ---- Performance row list (right column) ---- */
.perf-list { display: flex; flex-direction: column; }
.perf-row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--plaza-paper-edge);
    transition: background-color 240ms ease, padding 240ms ease;
}
.perf-row:last-child { border-bottom: 0; }
.perf-row.perf-highlight {
    background-color: rgba(196, 147, 44, 0.18);
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 6px;
}

.perf-col-title {
    flex: 2 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.perf-col-title .perf-name {
    font-family: var(--plaza-font-ui);
    font-weight: 700;
    font-size: 16px;
    color: var(--plaza-brown);
    line-height: 1.2;
}
.perf-col-title .perf-when {
    font-family: var(--plaza-font-ui);
    font-weight: 400;
    font-size: 13px;
    color: var(--plaza-text);
    line-height: 1.3;
}
.perf-col-title .low-tickets {
    color: #aa0000;
    font-size: 13px;
    font-weight: 700;
    margin-top: 2px;
}

.availability-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    font-size: 13px;
    color: var(--plaza-muted);
    min-width: 100px;
    flex: 0 0 auto;
    white-space: nowrap;
}
.availability-label {
    font-size: 12px;
    margin-bottom: 0;
}
.availability-line {
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: flex-end;
}
.availability-value {
    font-weight: 700;
    font-size: 14px;
    color: var(--plaza-text);
}
.indicator {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #999;
    margin-left: 4px;
}
.indicator.green  { background-color: #4CAF50; }
.indicator.yellow { background-color: #FFD700; }
.indicator.red    { background-color: #D32F2F; }

.perf-col-button { flex: 0 0 auto; white-space: nowrap; }
.perf-time-btn {
    display: inline-block;
    background: linear-gradient(180deg,
                var(--plaza-gold-light) 0%,
                var(--plaza-gold) 55%,
                var(--plaza-gold-dark) 100%);
    color: var(--plaza-brown);
    border: 1.5px solid var(--plaza-gold-dark);
    padding: 7px 16px;
    font-family: var(--plaza-font-ui);
    font-weight: 700;
    font-size: 13px;
    border-radius: 999px;
    text-decoration: none;
    cursor: pointer;
    min-width: 84px;
    text-align: center;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        0 2px 5px rgba(0, 0, 0, 0.15);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
    box-sizing: border-box;
}
.perf-time-btn:hover { filter: brightness(1.05); color: var(--plaza-brown); text-decoration: none; }
.perf-time-btn.is-sold-out {
    background: #cc3333;
    color: #fff;
    border-color: #aa2828;
    cursor: not-allowed;
    text-shadow: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.18);
}
.perf-time-btn.is-cancelled {
    background: #666;
    color: #fff;
    border-color: #4a4a4a;
    cursor: not-allowed;
    text-shadow: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.18);
}

@media (max-width: 520px) {
    .perf-row { gap: 8px; flex-wrap: wrap; }
    .availability-block { min-width: 0; order: 2; flex: 1 1 100%; align-items: flex-start; text-align: left; }
    .availability-line { justify-content: flex-start; }
    .perf-col-button { order: 3; }
}

/* Legacy picker-card grid (kept for back-compat with any page that
   still references the class). */
.picker-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}
@media (min-width: 768px) { .picker-grid { grid-template-columns: 1fr 1fr; } }

.picker-card {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    gap: 14px;
    align-items: center;
    min-height: 80px;
    padding: 12px 16px;
    background: #fff;
    border: 1px solid var(--plaza-paper-edge);
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: border-color 120ms ease, box-shadow 120ms ease;
}
.picker-card:hover {
    border-color: var(--plaza-gold);
    box-shadow: 0 4px 14px rgba(45, 10, 14, 0.10);
    text-decoration: none;
    color: inherit;
}
.picker-card.is-sold-out {
    background: #efe9d8;
    color: var(--plaza-muted);
    cursor: not-allowed;
}
.picker-card.is-sold-out:hover {
    border-color: var(--plaza-paper-edge);
    box-shadow: none;
}

.picker-date-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}
.picker-date-stack .dow {
    font-family: var(--plaza-font-ui);
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--plaza-gold);
}
.picker-date-stack .day {
    font-family: var(--plaza-font-display);
    font-weight: 700;
    font-size: 28px;
    color: var(--plaza-brown);
    margin-top: 4px;
}
.picker-card.is-sold-out .picker-date-stack .day { color: var(--plaza-muted); }
.picker-date-stack .mon {
    font-family: var(--plaza-font-ui);
    font-weight: 600;
    font-size: 10px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--plaza-muted);
    margin-top: 4px;
}

.picker-info { display: flex; flex-direction: column; gap: 2px; }
.picker-info .time {
    font-family: var(--plaza-font-ui);
    font-weight: 600;
    font-size: 15px;
    color: var(--plaza-brown);
}
.picker-card.is-sold-out .picker-info .time { color: var(--plaza-muted); }
.picker-info .avail {
    font-family: var(--plaza-font-ui);
    font-size: 12px;
    color: var(--plaza-muted);
}
.picker-info .avail.low { color: #b85a00; font-weight: 600; }
.picker-info .sold-out-label {
    font-family: var(--plaza-font-ui);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--plaza-muted);
}
.picker-price {
    font-family: var(--plaza-font-ui);
    font-weight: 700;
    font-size: 15px;
    color: var(--plaza-brown);
    text-align: right;
    line-height: 1.1;
}
.picker-card.is-sold-out .picker-price { color: var(--plaza-muted); }
.picker-price .label {
    display: block;
    font-weight: 400;
    font-size: 10px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--plaza-muted);
    margin-bottom: 2px;
}

/* ============================================================
   Show detail - The Cast section (ported from /show.asp)
   ============================================================ */
.show-detail-cast {
    max-width: 1180px;
    margin: 32px auto 0;
    padding: 0 18px 56px;
}
@media (min-width: 768px) { .show-detail-cast { padding: 0 32px 72px; } }

.show-detail-cast h2 {
    font-family: var(--plaza-font-display);
    font-weight: 700;
    font-size: 28px;
    color: var(--plaza-brown);
    margin: 0 0 20px;
}

.cast-grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 4px 0 32px;
}
.cast-grid-container .cast-card:nth-child(even) { margin-top: 40px; }

@media (max-width: 1024px) {
    .cast-grid-container { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .cast-grid-container { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .cast-grid-container .cast-card:nth-child(even) { margin-top: 0; }
}
@media (max-width: 480px) {
    .cast-grid-container { grid-template-columns: 1fr; }
}

.cast-card {
    display: flex;
    flex-direction: column;
    cursor: pointer;
}
.cast-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1 / 1.1;
    background: #e0e0e0;
    margin-bottom: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
                box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cast-card:hover .cast-img-wrap {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}
.cast-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cast-card:hover .cast-img-wrap img { transform: scale(1.08); }

.no-photo-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(145deg, #5D4037 0%, #3E2723 100%);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}
.no-photo-placeholder .initials {
    font-family: var(--plaza-font-display);
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: -2px;
    line-height: 1;
    background: linear-gradient(to bottom right,
        #BF953F 0%, #FCF6BA 40%, #B38728 60%, #FBF5B7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.4));
}

.cast-info { padding: 0 2px; }
.cast-info h3 {
    margin: 0;
    font-family: var(--plaza-font-ui);
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 800;
    line-height: 1.2;
    color: #1a1a1a;
}
.cast-info .cast-role {
    margin: 6px 0 11px;
    font-family: Georgia, serif;
    font-style: italic;
    font-size: 16px;
    color: #666;
}
.cast-view-btn {
    display: inline-block;
    font-family: var(--plaza-font-ui);
    font-size: 11px;
    font-weight: 700;
    color: #802329;
    border: 1px solid #802329;
    padding: 1px 10px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
                color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cast-card:hover .cast-view-btn {
    background: #802329;
    color: #fff;
    text-decoration: none;
}

.cast-20-club-note {
    padding: 15px 4px;
    font-family: Georgia, serif;
    font-size: 16px;
    color: #666;
    font-style: italic;
    border-top: 1px solid var(--plaza-paper-edge);
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.cast-20-club-logo {
    width: 70px;
    height: auto;
    flex-shrink: 0;
}

/* Bio drawer (slide-out panel from the right) */
.bio-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 99999;
}
.bio-overlay.active { opacity: 1; visibility: visible; }

.bio-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 450px;
    max-width: 100%;
    height: 100%;
    background: #fff;
    z-index: 100000;
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.2);
    transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    padding: 40px;
    box-sizing: border-box;
    overflow-y: auto;
}
.bio-drawer.active { right: 0; }
.bio-drawer-close {
    background: #eee;
    border: 0;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    float: right;
    font-size: 14px;
}
.bio-drawer-close:hover { background: #ddd; }
.bio-drawer-content { margin-top: 60px; }
.bio-drawer-content h2 {
    text-transform: uppercase;
    margin-bottom: 8px;
    font-family: var(--plaza-font-ui);
    font-size: 24px;
    font-weight: 800;
    color: #1a1a1a;
}
.bio-drawer-content .bio-drawer-role {
    color: #802329;
    display: block;
    margin-bottom: 24px;
    font-family: Georgia, serif;
    font-style: italic;
    font-size: 18px;
}
.bio-drawer-content .bio-text {
    line-height: 1.8;
    color: #333;
    font-size: 16px;
}
.bio-drawer-content .bio-text p { margin: 0 0 16px; }
.bio-drawer-content .bio-text p:last-child { margin-bottom: 0; }
.bio-drawer-content .bio-text strong { color: #1a1a1a; }
.bio-drawer-content .bio-text .bio-archive-section {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #eee;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    flex-wrap: wrap;
}
.bio-drawer-content .bio-text .bio-archive-link {
    color: #802329;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
}
.bio-drawer-content .bio-text .bio-archive-link:hover { text-decoration: underline; }
.bio-drawer-content .bio-text .bio-20club-badge { width: 70px; height: auto; }

/* ============================================================
   Buttons (legacy global utility)
   ============================================================ */
.ptp-btn,
button.ptp-btn,
input.ptp-btn,
a.ptp-btn {
    display: inline-block;
    background: var(--plaza-gold);
    color: var(--plaza-brown);
    font-family: var(--plaza-font-ui);
    font-weight: 600;
    font-size: 15px;
    padding: 10px 20px;
    border: 0;
    border-radius: var(--plaza-radius);
    cursor: pointer;
    text-decoration: none;
    transition: background-color 120ms ease;
}
.ptp-btn:hover { background: #d6a647; color: var(--plaza-brown); text-decoration: none; }
.ptp-btn:disabled, .ptp-btn[disabled] { background: #d6d2c5; color: #888; cursor: not-allowed; }
.ptp-btn-secondary {
    background: transparent; color: var(--plaza-blue);
    border: 1px solid var(--plaza-blue);
}
.ptp-btn-secondary:hover { background: var(--plaza-blue); color: #fff; }

/* ---------- Layout containers ----------------------------------------- */
.ptp-page { max-width: 1200px; margin: 0 auto; padding: 24px; }
.ptp-card {
    background: #fff;
    border: 1px solid var(--plaza-border);
    border-radius: var(--plaza-radius);
    padding: 20px;
    box-shadow: var(--plaza-shadow);
}

/* ============================================================
   Focus indicators (keyboard a11y)
   ============================================================ */
.ptp-header :focus-visible,
.ptp-drawer :focus-visible,
.pf :focus-visible {
    outline: 2px solid var(--plaza-gold);
    outline-offset: 2px;
    border-radius: 4px;
}

/* ============================================================
   Box-office help footer (auth flow, unchanged)
   ============================================================ */
.ptp-help-footer {
    text-align: center;
    color: #6B5B5C;
    font-size: 13px;
    margin: 0;
    padding: 8px 16px 28px;
    background: #F5F2EB;
}
.ptp-help-footer a {
    color: #6B1F22;
    text-decoration: underline;
}
.ptp-help-footer a:hover { color: #441116; }

/* ============================================================
   Classic Playbill palette (selectseats only, unchanged)
   ============================================================ */
body.ticketing_selectseats {
    --playbill-parchment: #F5E9C8;
    --playbill-burgundy: #4A1B12;
    --playbill-gold: #C89648;
}

/* ============================================================================
   Plaza Theatre Company - public footer (Marquee / Theatrical, warm palette)
   Namespaced `pf-` so it does NOT collide with anything else. Responsive via
   CONTAINER queries: the footer reflows to its own width. Mobile-first base +
   one breakpoint. (Replaces the old `.ptp-footer*` block, now removed.)
   ========================================================================== */

.pf{
  /* Plaza warm palette: gold / brown / cream */
  --field:#2E1C16;        /* main footer field        */
  --deep:#20130E;         /* marquee CTA + bottom bar  */
  --gold:#C89648;
  --gold-bright:#DBAE63;
  --cream:#F3E8D2;        /* headings                  */
  --ink:#CBB69B;          /* body text                 */
  --ink-dim:#9C886E;      /* muted / legal             */
  --line:rgba(243,232,210,.15);
  --bulb:#E0B468;         /* marquee lights            */

  container-type:inline-size;
  box-sizing:border-box;
  font-family:"Inter",system-ui,-apple-system,sans-serif;
  font-size:16px;
  line-height:1.5;
  color:var(--ink);
  background:var(--field);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
.pf *,.pf *::before,.pf *::after{box-sizing:border-box;}
.pf h2,.pf h3,.pf p,.pf ul,.pf li{margin:0;padding:0;}
.pf ul{list-style:none;}
.pf a{color:inherit;text-decoration:none;}
.pf h2,.pf h3{font-family:"Playfair Display",Georgia,serif;font-weight:700;color:var(--cream);}

/* ---- Marquee newsletter CTA -------------------------------------------- */
.pf-cta{position:relative;text-align:center;background:var(--deep);padding:42px 26px;overflow:hidden;}
.pf-cta::before,.pf-cta::after{content:"";position:absolute;left:18px;right:18px;height:6px;
  background-image:radial-gradient(circle, var(--bulb) 0 2.4px, rgba(224,180,104,0) 2.9px);
  background-size:24px 6px;background-position:center;background-repeat:repeat-x;
  filter:drop-shadow(0 0 3px rgba(224,180,104,.6));}
.pf-cta::before{top:14px;}
.pf-cta::after{bottom:14px;}
.pf-kicker{font-size:11px;letter-spacing:4px;text-transform:uppercase;color:var(--gold);font-weight:600;margin-bottom:12px;}
.pf-cta h2{font-size:30px;line-height:1.12;color:var(--cream);margin-bottom:12px;letter-spacing:.2px;}
.pf .pf-lead{font-size:14.5px;line-height:1.6;color:var(--ink);max-width:42ch;margin:0 auto 22px;text-align:center;}

/* stacked CTA button */
.pf .pf-sub{display:inline-flex;align-items:center;gap:10px;background:var(--gold);color:#3D2817;
  font-weight:700;font-size:12.5px;letter-spacing:1.5px;text-transform:uppercase;
  padding:16px 32px;border-radius:999px;transition:background .16s,transform .16s,box-shadow .16s;
  box-shadow:0 8px 24px rgba(200,150,72,.28);}
.pf .pf-sub i{font-size:13px;}
.pf .pf-sub:hover{background:var(--gold-bright);transform:translateY(-2px);box-shadow:0 12px 30px rgba(200,150,72,.36);}

/* ---- Columns ----------------------------------------------------------- */
.pf-cols{display:grid;grid-template-columns:1fr;gap:36px;padding:42px 26px 34px;}
.pf h3{font-size:18px;letter-spacing:.3px;padding-bottom:12px;margin-bottom:16px;position:relative;}
.pf h3::after{content:"";position:absolute;left:0;bottom:0;width:32px;height:2px;background:var(--gold);}
.pf-cols p{font-size:14px;line-height:1.7;color:var(--ink);max-width:42ch;}
.pf-contact{display:flex;flex-direction:column;gap:14px;}
.pf-contact li{display:flex;gap:12px;align-items:flex-start;font-size:14px;line-height:1.55;}
.pf-contact i{color:var(--gold);font-size:14px;margin-top:3px;flex:0 0 17px;}
.pf-contact strong{color:#E8DAC0;font-weight:600;}
.pf-contact a:hover{color:var(--gold-bright);}
.pf-links{display:flex;flex-direction:column;gap:11px;}
.pf-links a{font-size:14px;color:var(--ink);width:fit-content;transition:color .15s;}
.pf-links a:hover{color:var(--gold-bright);}

/* ---- Instagram column -------------------------------------------------- */
/* Instagram is the 4th footer column. The live LightWidget renders its own
   3-up grid inside a cross-origin iframe; sitting in the narrow column keeps
   the tiles small with no dashboard change. The .ig-tile strip rules below
   remain available if you ever switch to server-side post thumbnails. */
.pf-handle{display:inline-block;font-size:12.5px;color:var(--gold);letter-spacing:.3px;margin:-4px 0 14px;transition:color .15s;}
.pf-handle:hover{color:var(--gold-bright);}
.pf-igwrap .lightwidget-widget{display:block;width:100%;}
.pf-igstrip{display:flex;gap:8px;padding:0 26px;overflow-x:auto;scroll-snap-type:x mandatory;
  scrollbar-width:none;-ms-overflow-style:none;}
.pf-igstrip::-webkit-scrollbar{display:none;}
.pf-igstrip .ig-tile{flex:0 0 116px;height:116px;scroll-snap-align:start;}
.pf .ig-tile{position:relative;display:block;border-radius:2px;overflow:hidden;background:#2A180F;}
.pf .ig-tile img{width:100%;height:100%;object-fit:cover;display:block;}
.pf .ig-tile::before{content:"";position:absolute;inset:0;
  background:
    linear-gradient(135deg, rgba(200,150,72,.16), rgba(32,19,14,0) 55%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.05) 0 7px, rgba(255,255,255,0) 7px 14px);}
.pf .ig-tile:has(img)::before,.pf .ig-tile:has(img)::after{display:none;}
.pf .ig-tile::after{content:"";position:absolute;inset:0;margin:auto;width:30%;height:30%;opacity:.5;
  background:no-repeat center/contain
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F3E8D2' stroke-width='1.6'%3E%3Crect x='2.5' y='2.5' width='19' height='19' rx='5.5'/%3E%3Ccircle cx='12' cy='12' r='4.4'/%3E%3Ccircle cx='17.4' cy='6.6' r='1.1' fill='%23F3E8D2' stroke='none'/%3E%3C/svg%3E");}

/* ---- Bottom bar -------------------------------------------------------- */
.pf-bottom{border-top:1px solid var(--line);background:var(--deep);padding:20px 26px;
  display:flex;flex-direction:column;gap:16px;align-items:center;text-align:center;}
.pf-copy{font-size:12.5px;color:var(--ink-dim);line-height:1.5;}
.pf-copy strong{color:var(--ink);font-weight:600;}
.pf-social{display:flex;gap:10px;flex-wrap:wrap;justify-content:center;}
.pf-social a{width:34px;height:34px;border-radius:50%;display:grid;place-items:center;
  border:1px solid var(--line);color:var(--ink);font-size:14px;transition:all .16s;}
.pf-social a:hover{background:var(--gold);border-color:var(--gold);color:var(--deep);transform:translateY(-2px);}

/* ---- Tablet (container >= 680px): two columns -------------------------- */
@container (min-width:680px){
  .pf-cta{padding:54px 26px;}
  .pf-cta h2{font-size:40px;}
  .pf-cols{grid-template-columns:1fr 1fr;gap:40px;padding:54px 48px 38px;}
  .pf-bottom{flex-direction:row;justify-content:space-between;text-align:left;padding:20px 48px;}
  .pf-social{flex-wrap:nowrap;}
}

/* ---- Desktop (container >= 980px): four columns (Instagram is the 4th) -- */
@container (min-width:980px){
  .pf-cols{grid-template-columns:1.5fr 1fr 1fr 1.3fr;gap:48px;}
}

/* Older browsers without container-query support fall back to viewport
   breakpoints so desktop still gets the multi-column layout. */
@supports not (container-type:inline-size){
  @media (min-width:860px){
    .pf-cta{padding:54px 26px;}
    .pf-cta h2{font-size:40px;}
    .pf-cols{grid-template-columns:1fr 1fr;gap:40px;padding:54px 48px 38px;}
    .pf-bottom{flex-direction:row;justify-content:space-between;text-align:left;padding:20px 48px;}
    .pf-social{flex-wrap:nowrap;}
  }
  @media (min-width:1160px){
    .pf-cols{grid-template-columns:1.5fr 1fr 1fr 1.3fr;gap:48px;}
  }
}
