/* ================================================================
   NAPA — Photographic Visual Layer (v2)
   Layered on top of style.css + whichever theme is active.
   Uses theme tokens: --color-primary, --color-accent, --color-ink,
   --color-bg-cream, --color-bg-ivory, --font-heading, --font-body.
   ================================================================ */


/* ==================== HERO — PHOTO BACKGROUND ==================== */
.hero.hero-photo {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

/* Legacy .hero-bg (pre-carousel) — kept for non-carousel hero pages that
   still rely on --hero-photo. Carousel overrides further below. */
.hero.hero-photo .hero-bg {
    position: absolute; inset: 0;
    background:
        var(--hero-photo, url('https://images.unsplash.com/photo-1507838153414-b4b713384a76?w=1920&h=1080&fit=crop')) center/cover no-repeat;
    z-index: 0;
}

/* Section-level overlay — medium-strength dark gradient so text stays
   legible regardless of photo luminance. WCAG AA+ on all tested slides.
   Per-slide overrides (.overlay-light / .overlay-strong) live below. */
.hero.hero-photo::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg,
        rgba(15, 10, 20, 0.55) 0%,
        rgba(15, 10, 20, 0.30) 45%,
        rgba(15, 10, 20, 0.70) 100%);
    z-index: 1;
    pointer-events: none;
    transition: background .4s ease;
}

/* Decorative blurred ellipses — primary + accent */
.hero-photo .hero-ellipse {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .08;
    z-index: 2;
    pointer-events: none;
}
.hero-photo .hero-ellipse-primary {
    width: 600px; height: 600px;
    background: var(--color-primary);
    top: -200px; right: -150px;
}
.hero-photo .hero-ellipse-accent {
    width: 400px; height: 400px;
    background: var(--color-accent);
    bottom: -100px; left: -100px;
}

/* Raise content above the overlays */
.hero-photo .hero-content { z-index: 10; }

/* Location badge — white pill, stays bright against the dark overlay (WCAG AA) */
.hero-photo .hero-badge {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--color-ink);
    backdrop-filter: blur(8px);
    padding: 12px 24px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}
.hero-photo .hero-badge svg { display: none; }
.hero-photo .hero-badge::before {
    content: '📍';
    margin-right: 8px;
    font-size: 13px;
}
.hero-photo .hero-badge span {
    color: var(--color-ink);
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: none;
    font-weight: 600;
}

/* Headline + subtitle — white with soft shadows for legibility on busy photos */
.hero-photo h1 {
    color: #FFFFFF;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}
.hero-photo .hero-subtitle {
    color: #F5F0E8;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
}

/* Dots (photographic variant) — ink pills on cream wash.
   Use rgba(0,0,0,…) for inactive so they stay visible on both light and
   dark areas of the photo. Bigger hit area + subtle ring for polish. */
.hero-photo .hero-dots {
    gap: 10px;
    margin-top: 40px;
    margin-bottom: 60px;       /* breathing room above the wave */
    position: relative;
    z-index: 4;                /* sit ABOVE the wave */
}
.hero-photo .hero-dot {
    height: 10px; width: 10px; border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
    transition: all .35s var(--ease-smooth, cubic-bezier(0.16,1,0.3,1));
}
.hero-photo .hero-dot:hover {
    background: rgba(255, 255, 255, 0.85);
    transform: scale(1.1);
}
.hero-photo .hero-dot.active {
    width: 32px; height: 10px;
    border-radius: 5px;
    background: var(--color-primary);
    border-color: transparent;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

/* Wave — fade into the next section's ivory bg.
   SVG defaults to 300px intrinsic width, so we MUST set width:100% here
   or the wave will only render in the bottom-left corner. */
.hero-photo .hero-wave {
    position: absolute;
    left: 0; right: 0; bottom: -1px;
    width: 100%;
    height: 120px;
    display: block;
    z-index: 5;                 /* above bg photos but below content if needed */
    pointer-events: none;
}
.hero-photo .hero-wave path { fill: var(--color-bg-ivory); }


/* ==================== HERO CAROUSEL (multi-slide) ==================== */
.hero-carousel { user-select: none; }

/* Background stack — absolute-layered images that crossfade */
.hero-bg-stack {
    position: absolute; inset: 0;
    z-index: 0;
    overflow: hidden;
}
.hero-bg-slide {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity .9s ease-in-out;
}
.hero-bg-slide.active { opacity: 1; }

/* Per-slide overlay strength — admin sets this in hero-slides.
   Only the .active slide's overlay is visible (opacity driven).
   Default to medium if no class is set. */
.hero-bg-slide::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg,
        rgba(15, 10, 20, 0.55) 0%,
        rgba(15, 10, 20, 0.30) 45%,
        rgba(15, 10, 20, 0.70) 100%);
    pointer-events: none;
}
.hero-bg-slide.overlay-light::after {
    background: linear-gradient(180deg,
        rgba(15, 10, 20, 0.35) 0%,
        rgba(15, 10, 20, 0.15) 45%,
        rgba(15, 10, 20, 0.50) 100%);
}
.hero-bg-slide.overlay-strong::after {
    background: linear-gradient(180deg,
        rgba(15, 10, 20, 0.75) 0%,
        rgba(15, 10, 20, 0.55) 45%,
        rgba(15, 10, 20, 0.85) 100%);
}

/* When a per-slide overlay is in use, suppress the section-level ::after
   so we don't double-dose and wash the photo out. */
.hero.hero-photo:has(.hero-bg-slide[class*="overlay-"])::after {
    display: none;
}

/* Content slide stack — CSS Grid overlap: all slides in the same cell,
   natural height = tallest slide, crossfade via opacity. Inactive slides
   get pointer-events:none so the active slide handles all clicks. */
.hero-slides-stack {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    margin-bottom: 24px;
}
.hero-slides-stack > .hero-slide {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 0;
    transform: translateY(14px);
    pointer-events: none;
    transition: opacity .7s ease, transform .7s ease;
}
.hero-slides-stack > .hero-slide.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Per-slide badge — override the base .hero-badge dark-theme styles
   so it reads well on the photographic/cream hero. */
.hero-photo .hero-slides-stack .hero-badge {
    margin-bottom: 24px;
}

/* Per-slide CTA — keep centered under the subtitle */
.hero-slides-stack .hero-cta {
    margin-top: 32px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Re-assert white + shadow on the deeper nested h1/subtitle so the dark
   overlay pattern holds no matter the cascade order. */
.hero-photo .hero-slides-stack h1 {
    color: #FFFFFF;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
    margin: 0;
    max-width: 850px;
}
.hero-photo .hero-slides-stack .hero-subtitle {
    color: #F5F0E8;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
    margin-top: 24px;
    max-width: 560px;
}

/* Dots are <button> in the carousel markup — reset native button chrome.
   Only reset border/padding/outline — colors stay from the rule above. */
.hero-photo .hero-dots button.hero-dot {
    padding: 0;
    cursor: pointer;
    outline: none;
}
.hero-photo .hero-dots button.hero-dot:focus-visible {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5);
}

/* ──────── Nav scrim on hero (legibility over photo) ────────
   When the nav sits over the photographic hero and isn't scrolled yet,
   add a subtle dark top-gradient so white logo + links are readable on
   any photo. Also add text-shadows to nav links + logo. */
.site-nav.hero-nav:not(.scrolled) {
    background: linear-gradient(180deg,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0) 100%);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 0;
}
.site-nav.hero-nav:not(.scrolled) .d-nav a,
.site-nav.hero-nav:not(.scrolled) .d-nav span,
.site-nav.hero-nav:not(.scrolled) .nav-logo-text {
    color: #FFFFFF;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}
.site-nav.hero-nav:not(.scrolled) .nav-logo-svg path,
.site-nav.hero-nav:not(.scrolled) .nav-logo-svg .dome {
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.5));
}
/* When scrolled, shadows would fight the cream chrome — drop them */
.site-nav.scrolled .d-nav a,
.site-nav.scrolled .d-nav span,
.site-nav.scrolled .nav-logo-text { text-shadow: none; }

/* ──────── Reduced motion: honor OS-level preference ──────── */
@media (prefers-reduced-motion: reduce) {
    .hero-slides-stack > .hero-slide,
    .hero-bg-slide,
    .hero-photo .hero-dot {
        transition: none !important;
        animation: none !important;
    }
}


/* ==================== SHOW CARDS — PHOTO VARIANT ==================== */
.shows-section.shows-photo { background: var(--color-bg-ivory); }

.shows-photo .show-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,.08);
    opacity: 0; transform: translateY(40px);
    animation: revealCard .9s var(--ease-smooth, cubic-bezier(0.16,1,0.3,1)) forwards;
}
.shows-photo .show-card:nth-child(1) { animation-delay: 0s; }
.shows-photo .show-card:nth-child(2) { animation-delay: .1s; }
.shows-photo .show-card:nth-child(3) { animation-delay: .2s; }
.shows-photo .show-card:nth-child(4) { animation-delay: .3s; }
.shows-photo .show-card:nth-child(5) { animation-delay: .4s; }
.shows-photo .show-card:nth-child(6) { animation-delay: .5s; }
.shows-photo .show-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0,0,0,.15);
}

/* Photo hero of the card — uses <img> with object-fit so both landscape
   photos and portrait flyers display fully without cropping. The company-
   colored background (.bg-npo etc.) fills any letterboxed space. */
.shows-photo .show-card-img {
    height: 260px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.shows-photo .show-card-img > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    position: relative;
    z-index: 0;
}
/* Ensure badge sits above the tint overlay */
.shows-photo .badge-season {
    z-index: 2;
}

/* Color tint overlay (company-coded) at 15% opacity */
.shows-photo .show-card-img::after {
    content: '';
    position: absolute; inset: 0;
    opacity: .15;
    mix-blend-mode: multiply;
    transition: opacity .4s;
}
.shows-photo .show-card:hover .show-card-img::after { opacity: .08; }
.shows-photo .show-card-img.bg-npo::after   { background: var(--color-npo); }
.shows-photo .show-card-img.bg-ntac::after  { background: var(--color-ntac); }
.shows-photo .show-card-img.bg-nsso::after  { background: var(--color-nsso); }
.shows-photo .show-card-img.bg-guest::after { background: var(--color-guest); }

/* Reposition season badge top-right for photo variant */
.shows-photo .badge-season {
    top: 14px; right: 14px; left: auto;
    padding: 6px 14px; border-radius: 20px;
    font-size: 10.5px; letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(0,0,0,.18);
}

/* Progress bar below the photo */
.shows-photo .show-progress {
    width: 100%; height: 4px;
    background: var(--color-bg-sand);
}
.shows-photo .show-progress-fill {
    height: 100%;
    background: var(--color-primary);
    transition: width 1.2s var(--ease-smooth, cubic-bezier(0.16,1,0.3,1));
}
.shows-photo .show-card .show-progress-fill.fill-npo   { background: var(--color-npo); }
.shows-photo .show-card .show-progress-fill.fill-ntac  { background: var(--color-ntac); }
.shows-photo .show-card .show-progress-fill.fill-nsso  { background: var(--color-nsso); }
.shows-photo .show-card .show-progress-fill.fill-guest { background: var(--color-guest); }


/* ==================== VENUES SECTION ==================== */
.venues-section {
    background: var(--color-bg-cream);
    padding: 100px 0 120px;
}
.venues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    max-width: 1200px; margin: 0 auto;
}
.venue-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,.08);
    transition: all .4s var(--ease-smooth, cubic-bezier(0.16,1,0.3,1));
    opacity: 0; transform: translateY(40px);
    animation: revealCard .9s var(--ease-smooth, cubic-bezier(0.16,1,0.3,1)) forwards;
    display: flex;
    flex-direction: column;
}
.venue-card-link {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}
.venue-card-link > .venue-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.venue-card-link > .venue-body > .venue-desc {
    flex: 1;
}
.venue-card:nth-child(1) { animation-delay: 0s; }
.venue-card:nth-child(2) { animation-delay: .15s; }
.venue-card:nth-child(3) { animation-delay: .3s; }
.venue-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0,0,0,.15);
}
.venue-image {
    width: 100%; height: 280px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}
/* Stronger gradient so white venue name stays legible on light or busy photos */
.venue-image::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 75%;
    background: linear-gradient(to bottom,
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,.45) 55%,
        rgba(0,0,0,.88) 100%);
    z-index: 1;
}
.venue-name {
    position: absolute;
    bottom: 18px; left: 18px; right: 18px;
    color: #fff !important;          /* override base h3 color */
    font-family: var(--font-heading);
    font-size: clamp(19px, 2.3vw, 24px);
    font-weight: 700;
    margin: 0;
    z-index: 2;
    line-height: 1.2;
    padding: 10px 16px;
    border-radius: 6px;
    background: rgba(0, 0, 0, .55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    text-shadow: 0 1px 2px rgba(0,0,0,.6);
    letter-spacing: .2px;
    box-shadow: 0 4px 16px rgba(0,0,0,.3);
    /* Grow only as wide as the text, anchored to the left edge */
    width: fit-content;
    max-width: calc(100% - 36px);
}
.venue-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
/* Anything after the description gets pushed up by margin-top: auto on
   the buttons row, so buttons line up across cards even when descriptions
   and amenity lists differ in length. */
.venue-body .venue-buttons { margin-top: auto; }
.venue-card-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 500;
    color: var(--color-ink);
    line-height: 1.2;
    letter-spacing: .2px;
    margin: 0 0 12px;
}
.venue-capacity {
    display: inline-block;
    background: var(--color-bg-sand);
    color: var(--color-text);
    padding: 6px 14px; border-radius: 20px;
    font-size: 11px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    margin-bottom: 14px;
}
.venue-desc {
    color: var(--color-text-mid);
    font-size: 14px; line-height: 1.7;
    margin: 0 0 18px;
}
.venue-amenities {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-bottom: 22px;
}
.amenity-pill {
    background: var(--color-bg-cream);
    color: var(--color-text-mid);
    padding: 5px 12px; border-radius: 20px;
    font-size: 11px; font-weight: 500;
    letter-spacing: .3px;
}
.venue-buttons {
    display: flex; gap: 10px; flex-wrap: wrap;
}
.venue-btn {
    padding: 11px 18px;
    border-radius: 6px; border: none;
    font-family: var(--font-body); font-size: 11px;
    font-weight: 700; letter-spacing: .5px; text-transform: uppercase;
    cursor: pointer;
    transition: all .3s var(--ease-smooth, cubic-bezier(0.16,1,0.3,1));
    text-align: center; text-decoration: none;
    white-space: nowrap;
    line-height: 1.2;
    display: inline-flex; align-items: center; justify-content: center;
    min-height: 40px;
}
.venue-btn-primary {
    background: var(--color-primary); color: #fff;
}
.venue-btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px color-mix(in srgb, var(--color-primary) 30%, transparent);
}
.venue-btn-outline {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}
.venue-btn-outline:hover {
    background: var(--color-primary); color: #fff;
    transform: translateY(-1px);
}


/* ==================== GALLERY SECTION ==================== */
.gallery-section {
    background: var(--color-bg-ivory);
    padding: 100px 0 120px;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
    max-width: 1200px; margin: 0 auto;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 3 / 2;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0,0,0,.08);
    transition: all .4s var(--ease-smooth, cubic-bezier(0.16,1,0.3,1));
    opacity: 0; transform: translateY(40px);
    animation: revealCard .9s var(--ease-smooth, cubic-bezier(0.16,1,0.3,1)) forwards;
    background: var(--color-bg-sand);
}
.gallery-item:nth-child(1) { animation-delay: 0s; }
.gallery-item:nth-child(2) { animation-delay: .1s; }
.gallery-item:nth-child(3) { animation-delay: .2s; }
.gallery-item:nth-child(4) { animation-delay: .3s; }
.gallery-item:nth-child(5) { animation-delay: .4s; }
.gallery-item:nth-child(6) { animation-delay: .5s; }
.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
}
.gallery-image {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.gallery-overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    transition: background .3s ease;
}
.gallery-item:hover .gallery-overlay {
    background: rgba(0,0,0,.45);
}
.gallery-caption {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 16px; font-weight: 600;
    opacity: 0;
    transform: translateY(8px);
    transition: all .3s ease;
}
.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}


/* ==================== LIGHTBOX ==================== */
.lightbox {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,.92);
    z-index: 10000;
    align-items: center; justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}
.lightbox-image {
    max-width: 90vw; max-height: 90vh;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 12px 60px rgba(0,0,0,.6);
}
.lightbox-close {
    position: absolute; top: -44px; right: 0;
    background: none; border: none; color: #fff;
    font-size: 30px; font-weight: 300;
    cursor: pointer; line-height: 1;
    transition: transform .3s ease;
    padding: 0; width: 36px; height: 36px;
}
.lightbox-close:hover { transform: scale(1.2) rotate(90deg); }
.lightbox-nav {
    position: absolute;
    top: 50%; left: 0; right: 0;
    transform: translateY(-50%);
    display: flex; justify-content: space-between;
    padding: 0 16px;
    pointer-events: none;
}
.lightbox-prev, .lightbox-next {
    background: rgba(255,255,255,.15);
    border: none; color: #fff;
    font-size: 22px; font-weight: 300;
    padding: 14px 18px;
    border-radius: 6px;
    cursor: pointer;
    backdrop-filter: blur(10px);
    pointer-events: auto;
    transition: background .3s ease;
}
.lightbox-prev:hover, .lightbox-next:hover {
    background: rgba(255,255,255,.32);
}
.lightbox-caption {
    position: absolute; bottom: -44px; left: 0; right: 0;
    text-align: center; color: rgba(255,255,255,.7);
    font-size: 13px; letter-spacing: 1px;
    font-family: var(--font-body);
}


/* ==================== FLYER CAROUSEL ==================== */
.flyers-section {
    background: var(--color-bg-cream);
    padding: 100px 0 120px;
}
.flyer-container { max-width: 1200px; margin: 0 auto; position: relative; }
.flyer-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 8px 0 20px;
    -webkit-overflow-scrolling: touch;
}
.flyer-carousel::-webkit-scrollbar { height: 6px; }
.flyer-carousel::-webkit-scrollbar-track {
    background: var(--color-bg-sand); border-radius: 10px;
}
.flyer-carousel::-webkit-scrollbar-thumb {
    background: var(--color-primary); border-radius: 10px;
}

.flyer-card {
    flex: 0 0 300px;
    height: 420px;
    border-radius: 12px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    position: relative;
    box-shadow: 0 4px 16px rgba(0,0,0,.10);
    transition: all .3s ease;
    scroll-snap-align: start;
    cursor: pointer;
    text-decoration: none;
    color: #fff;
    display: block;
}
.flyer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 26px rgba(0,0,0,.22);
}
.flyer-card::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(160deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.25) 40%, rgba(0,0,0,.85) 100%);
    pointer-events: none;
}
.flyer-overlay {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    justify-content: space-between;
    padding: 22px; z-index: 2;
}
.flyer-badge {
    align-self: flex-start;
    background: rgba(255,255,255,.2);
    color: #fff;
    padding: 6px 12px; border-radius: 20px;
    font-size: 10.5px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 1.5px;
    backdrop-filter: blur(6px);
}
.flyer-title {
    font-family: var(--font-heading);
    font-size: 22px; font-weight: 600;
    line-height: 1.2;
    margin: 0 0 10px;
    color: #fff;
}
.flyer-info {
    display: flex; flex-direction: column; gap: 4px;
    font-size: 13px; color: rgba(255,255,255,.9);
    font-family: var(--font-body);
}
.flyer-info .flyer-price {
    font-weight: 800; font-size: 16px;
    margin-top: 6px;
}
.flyer-cta {
    align-self: flex-start;
    background: var(--color-accent);
    color: var(--color-ink);
    padding: 10px 18px;
    border-radius: 6px; border: none;
    font-family: var(--font-body);
    font-size: 11.5px; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    cursor: pointer;
    transition: all .3s ease;
    margin-top: 14px;
    text-decoration: none; display: inline-block;
}
.flyer-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px color-mix(in srgb, var(--color-accent) 40%, transparent);
}

.carousel-controls {
    display: flex; gap: 10px;
    justify-content: flex-start;
    margin-top: 20px;
}
.carousel-btn {
    background: var(--color-primary); color: #fff;
    border: none; padding: 11px 20px;
    border-radius: 6px; cursor: pointer;
    font-family: var(--font-body);
    font-size: 11.5px; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    transition: all .3s ease;
}
.carousel-btn:hover {
    background: var(--color-primary-dark);
    transform: translateY(-1px);
}
.carousel-btn:disabled {
    opacity: .4; cursor: not-allowed;
    transform: none;
}


/* ==================== HIRE CTA SECTION ==================== */
.hire-cta-section {
    padding: 100px 24px;
    background:
        linear-gradient(135deg,
            color-mix(in srgb, var(--color-primary) 90%, transparent),
            color-mix(in srgb, var(--color-primary-dark) 90%, transparent)),
        var(--hire-cta-photo, url('https://images.unsplash.com/photo-1519167758481-83f550bb49b3?w=1600&h=700&fit=crop')) center/cover no-repeat;
    color: #fff;
    position: relative;
    text-align: center;
}
.hire-cta-inner {
    position: relative; z-index: 2;
    max-width: 720px; margin: 0 auto;
}
.hire-cta-inner h2 {
    color: #fff;
    margin-bottom: 16px;
    font-size: clamp(28px, 4vw, 42px);
}
.hire-cta-inner p {
    color: rgba(255,255,255,.9);
    font-size: 17px; line-height: 1.7;
    margin-bottom: 32px;
}
.hire-stats {
    display: flex; justify-content: center;
    gap: 14px; margin-bottom: 32px;
    flex-wrap: wrap;
}
.hire-stat {
    background: rgba(255,255,255,.12);
    color: #fff;
    padding: 12px 20px; border-radius: 8px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-weight: 600; font-size: 14px;
    border: 1px solid rgba(255,255,255,.18);
}
.hire-cta-btn {
    background: var(--color-bg-ivory);
    color: var(--color-primary);
    padding: 14px 32px;
    border: none; border-radius: 6px;
    font-family: var(--font-body);
    font-size: 12px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    cursor: pointer;
    transition: all .3s ease;
    text-decoration: none;
    display: inline-block;
}
.hire-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,255,255,.25);
    color: var(--color-primary-dark);
}


/* ==================== STATS SECTION — GOLD NUMBERS ==================== */
/* These piggyback on the existing .stats-section markup but restyle */
.stats-section.stats-gradient {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    padding: 90px 0 110px;
}
.stats-section.stats-gradient::before { display: none; }
.stats-section.stats-gradient .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1000px; margin: 0 auto;
}
.stats-section.stats-gradient .stat-card {
    background: transparent;
    border: none;
    padding: 0;
    opacity: 0;
    animation: fadeUpStat .8s ease forwards;
}
.stats-section.stats-gradient .stat-card:nth-child(1) { animation-delay: 0s; }
.stats-section.stats-gradient .stat-card:nth-child(2) { animation-delay: .2s; }
.stats-section.stats-gradient .stat-card:nth-child(3) { animation-delay: .4s; }
.stats-section.stats-gradient .stat-card:nth-child(4) { animation-delay: .6s; }
.stats-section.stats-gradient .stat-card:hover { background: transparent; }
.stats-section.stats-gradient .stat-number {
    color: var(--color-accent);
    font-size: clamp(40px, 5vw, 54px);
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1;
}
.stats-section.stats-gradient .stat-label {
    color: rgba(255,255,255,.85);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.8px;
    margin-top: 14px;
}


/* ==================== ANIMATIONS ==================== */
@keyframes revealCard {
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUpStat {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes photoFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
    .shows-photo .show-card,
    .venue-card,
    .gallery-item,
    .stats-section.stats-gradient .stat-card {
        animation: none;
        opacity: 1;
        transform: none;
    }
    .gallery-item:hover { transform: none; }
    .show-card:hover, .venue-card:hover, .flyer-card:hover {
        transform: none;
    }
}


/* ==================== MOBILE ADJUSTMENTS ==================== */
@media (max-width: 900px) {
    .hero-photo h1 { font-size: clamp(30px, 7vw, 48px); }
    .venues-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .flyer-card { flex: 0 0 260px; height: 380px; }
    .hire-stats { gap: 8px; }
    .hire-stat { padding: 10px 14px; font-size: 12.5px; }
}
@media (max-width: 520px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .shows-photo .show-card-img { height: 180px; }
    .venue-image { height: 220px; }
}
