/* ============================================
   CVAS AIRSHOW: CINEMATIC REDESIGN
   Premium, immersive, full-width airshow experience
   ============================================ */

/* --- CSS CUSTOM PROPERTIES --- */
:root {
    --cvas-navy: #002852;
    --cvas-dark-navy: #00163b;
    --cvas-light-navy: #2a4b6e;
    --cvas-gold: #ffcb2b;
    --cvas-dark-gold: #d4a825;
    --cvas-white: #ffffff;
    --cvas-light-gray: #f5f5f5;
    --cvas-gray: #e0e0e0;
    --cvas-text: #1a2332;
    --cvas-text-muted: #5a6b7e;
    --cvas-border: #d0d9e3;
    --nav-height: 80px;
    --nav-height-scrolled: 64px;
    --container-max: 1400px;
    --section-pad-y: clamp(60px, 8vw, 120px);
    --section-pad-x: clamp(20px, 5vw, 80px);
}

/* --- RESET & BASE --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    background: var(--cvas-white);
    color: var(--cvas-text);
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* --- TYPOGRAPHY --- */
.font-display {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.font-body {
    font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.15;
}

h1 { font-size: clamp(36px, 5vw, 72px); }
h2 { font-size: clamp(32px, 4vw, 56px); }
h3 { font-size: clamp(20px, 2.5vw, 28px); font-family: 'Inter', sans-serif; font-weight: 600; letter-spacing: 0.08em; }
h4 { font-size: clamp(16px, 1.5vw, 20px); font-family: 'Inter', sans-serif; font-weight: 600; letter-spacing: 0.06em; }

p { margin-bottom: 1em; }

/* ============================================
   NAVIGATION: TRANSPARENT TO SOLID ON SCROLL
   ============================================ */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    z-index: 9999;
    background-color: transparent;
    transition: background-color 0.3s ease, height 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
}

.main-nav.nav-scrolled {
    background-color: var(--cvas-dark-navy);
    height: var(--nav-height-scrolled);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    overflow: visible;
    min-width: 0;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--cvas-white);
    flex-shrink: 0;
    z-index: 10;
    position: relative;
    min-width: 210px;
    min-height: 84px;
    padding-top: 0.75rem;
}

.nav-logo-img {
    height: 84px;
    width: auto;
    transition: height 0.35s ease, opacity 0.35s ease;
    opacity: 1;
}

.nav-logo-img.logo-shrunk {
    height: 40px;
    opacity: 0;
    position: absolute;
    pointer-events: none;
}

.nav-logo-text {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cvas-white);
    transition: opacity 0.35s ease;
    opacity: 0;
    position: absolute;
    pointer-events: none;
}

.nav-logo-text.logo-text-visible {
    opacity: 1;
    position: static;
    pointer-events: auto;
    align-self: center;
    margin-top: -0.75rem;
}

.nav-logo .logo-text {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cvas-white);
    transition: color 0.3s;
}

.nav-logo .logo-sub {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: block;
    opacity: 0.7;
    margin-top: -2px;
}

/* Nav links (desktop) */
.nav-links {
    display: flex;
    align-items: center;
    gap: 0;
    height: 100%;
    min-width: 0;
    overflow: visible;
    flex-shrink: 1;
}

.nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.85);
    padding: 0.5rem 1rem;
    transition: color 0.2s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.nav-link:hover {
    color: var(--cvas-white);
}

.nav-link .fa-chevron-down {
    font-size: 0.55rem;
    transition: transform 0.2s;
}

/* Nav item with dropdown */
.nav-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-item:hover .nav-link .fa-chevron-down {
    transform: rotate(180deg);
}

/* Dropdown menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--cvas-white);
    border-radius: 0;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    padding: 0.75rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;
    z-index: 10001;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.25rem;
    color: var(--cvas-text);
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.15s;
}

.dropdown-menu a:hover {
    background: var(--cvas-light-gray);
    color: var(--cvas-navy);
    padding-left: 1.5rem;
}

.dropdown-menu a.active {
    color: var(--cvas-navy);
    font-weight: 700;
    background: rgba(0, 40, 82, 0.06);
    border-left: 3px solid var(--cvas-gold);
}

.dropdown-menu .dropdown-divider {
    height: 1px;
    background: var(--cvas-gray);
    margin: 0.35rem 0;
}

.dropdown-menu a.dropdown-cta {
    background: var(--cvas-gold);
    color: var(--cvas-navy);
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-radius: 6px;
    margin: 0 0.5rem 0.35rem;
    padding: 0.6rem 1.1rem;
    transition: all 0.2s;
}

.dropdown-menu a.dropdown-cta:hover {
    background: #ffe066;
    padding-left: 1.1rem;
    color: var(--cvas-navy);
}

.dropdown-menu a.dropdown-cta i {
    font-size: 0.8rem;
}

/* Nav actions (right side) */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
    min-width: 0;
    overflow: visible;
}

.btn-nav-cta {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: var(--cvas-gold);
    color: var(--cvas-dark-navy);
    padding: 10px 28px;
    border-radius: 50px;
    transition: all 0.25s;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-nav-cta:hover {
    background: var(--cvas-dark-gold);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 203, 43, 0.4);
}

/* Hamburger button */
.nav-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10;
    flex-direction: column;
    gap: 5px;
    flex-shrink: 0;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--cvas-white);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ============================================
   MOBILE MENU OVERLAY
   ============================================ */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--cvas-dark-navy);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    overflow-y: auto;
}

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

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-logo-img {
    height: 40px;
    width: auto;
}

.mobile-menu-header .logo-text {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--cvas-white);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mobile-close {
    background: none;
    border: none;
    color: var(--cvas-white);
    font-size: 2rem;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
}

.mobile-menu-body {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-menu-body .mobile-nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.85);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.2s;
}

.mobile-menu-body .mobile-nav-link:hover {
    color: var(--cvas-white);
}

.mobile-accordion-trigger {
    cursor: pointer;
}

.mobile-accordion-trigger .fa-chevron-down {
    font-size: 0.7rem;
    transition: transform 0.2s;
}

.mobile-accordion-trigger.open .fa-chevron-down {
    transform: rotate(180deg);
}

.mobile-accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.mobile-accordion-panel.open {
    max-height: 500px;
}

.mobile-accordion-panel a {
    display: block;
    padding: 0.6rem 0 0.6rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: color 0.2s;
}

.mobile-accordion-panel a:hover {
    color: var(--cvas-gold);
}

.mobile-accordion-panel a.mobile-cta-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--cvas-gold);
    color: var(--cvas-navy);
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-radius: 6px;
    margin: 0.35rem 0 0.5rem;
    padding: 0.65rem 1rem 0.65rem 1.5rem;
    border-bottom: none;
    transition: background 0.2s;
}

.mobile-accordion-panel a.mobile-cta-link:hover {
    background: #ffe066;
    color: var(--cvas-navy);
}

.mobile-menu-body .mobile-cta {
    margin-top: 2rem;
    display: block;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: var(--cvas-gold);
    color: var(--cvas-dark-navy);
    padding: 14px 28px;
    border-radius: 50px;
}

.mobile-menu-body .mobile-committee {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
    text-transform: uppercase;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}

/* ============================================
   HERO SECTIONS: FULL VIEWPORT CINEMATIC
   ============================================ */

/* Homepage hero */
.hero-home {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #00163b 0%, #002852 50%, #2a4b6e 100%);
    background-size: cover;
    background-position: center;
}

.hero-home::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #00163b 0%, #002852 50%, #2a4b6e 100%);
    animation: kenBurns 20s ease-in-out infinite alternate;
    z-index: 0;
}

.hero-home::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(0, 22, 59, 0.9) 0%, transparent 100%);
    z-index: 1;
}

@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 clamp(20px, 5vw, 80px);
    max-width: 900px;
}

.hero-date {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: clamp(48px, 8vw, 120px);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--cvas-white);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: clamp(16px, 2vw, 24px);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cvas-gold);
    margin-bottom: 0.75rem;
}

.hero-featuring {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: clamp(14px, 1.5vw, 20px);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cvas-white);
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: clamp(14px, 1.2vw, 18px);
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 16px 40px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    color: var(--cvas-white);
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-hero:hover {
    background: var(--cvas-white);
    color: var(--cvas-dark-navy);
    border-color: var(--cvas-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.btn-hero.btn-hero-gold {
    background: var(--cvas-gold);
    border-color: var(--cvas-gold);
    color: var(--cvas-dark-navy);
}

.btn-hero.btn-hero-gold:hover {
    background: var(--cvas-dark-gold);
    border-color: var(--cvas-dark-gold);
    color: var(--cvas-dark-navy);
    box-shadow: 0 8px 30px rgba(255, 203, 43, 0.4);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: scrollBounce 2s infinite;
}

.scroll-indicator i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-12px); }
    60% { transform: translateX(-50%) translateY(-6px); }
}

/* Interior page hero */
.hero-interior {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #00163b 0%, #002852 50%, #2a4b6e 100%);
    background-size: cover;
    background-position: center;
    padding: calc(var(--nav-height) + 40px) clamp(20px, 5vw, 80px) 60px;
}

.hero-interior::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, rgba(0, 22, 59, 0.8) 0%, transparent 60%);
    z-index: 1;
}

.hero-interior .hero-content {
    position: relative;
    z-index: 2;
}

.hero-interior .page-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: clamp(36px, 5vw, 72px);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--cvas-white);
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
}

.hero-interior .breadcrumb {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.hero-interior .breadcrumb a {
    color: var(--cvas-gold);
    transition: color 0.2s;
}

.hero-interior .breadcrumb a:hover {
    color: var(--cvas-white);
}

.hero-interior .breadcrumb .sep {
    margin: 0 0.5rem;
    opacity: 0.5;
}

/* ============================================
   SECTION DIVIDERS & TRANSITIONS
   ============================================ */

/* Container inside full-width sections */
.section-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--section-pad-y) var(--section-pad-x);
}

/* Full-width dark section */
.section-dark {
    background: var(--cvas-dark-navy);
    color: var(--cvas-white);
    position: relative;
}

.section-dark h2, .section-dark h3 {
    color: var(--cvas-white);
}

.section-dark p {
    color: rgba(255, 255, 255, 0.8);
}

/* Full-width light section */
.section-light {
    background: var(--cvas-light-gray);
    color: var(--cvas-text);
}

.section-white {
    background: var(--cvas-white);
    color: var(--cvas-text);
}

/* Gold accent section */
.section-gold {
    background: var(--cvas-gold);
    color: var(--cvas-dark-navy);
}

.section-gold h2, .section-gold h3 {
    color: var(--cvas-dark-navy);
}

/* Diagonal dividers */
.section-divider-diagonal {
    position: relative;
}

.section-divider-diagonal::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: inherit;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
    z-index: 2;
}

.section-wave::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 60px;
    background: inherit;
    clip-path: ellipse(55% 100% at 50% 100%);
    z-index: 2;
}

.section-diagonal-left::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: inherit;
    clip-path: polygon(0 0, 100% 0, 0 100%);
    z-index: 2;
}

.section-diagonal-right::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: inherit;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    z-index: 2;
}

.section-angled::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: inherit;
    clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
    z-index: 2;
}

/* Negative margin overlap */
.section-overlap-up {
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.section-overlap-down {
    margin-bottom: -80px;
    position: relative;
    z-index: 10;
}

/* Full-bleed photo/gradient section */
.section-bleed {
    min-height: 550px;
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.section-bleed::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 22, 59, 0.85) 0%, rgba(0, 22, 59, 0.3) 50%, transparent 100%);
}

.section-bleed .section-bleed-content {
    position: relative;
    z-index: 1;
    padding: var(--section-pad-y) var(--section-pad-x);
    max-width: var(--container-max);
    margin: 0 auto;
    width: 100%;
    color: var(--cvas-white);
}

/* ============================================
   CONTENT: SECTION HEADERS
   ============================================ */
.section-header {
    margin-bottom: clamp(2rem, 3vw, 3rem);
}

.section-header h2 {
    margin-bottom: 0.75rem;
    position: relative;
}

.section-header .section-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: clamp(16px, 1.5vw, 20px);
    text-transform: none;
    letter-spacing: 0;
    line-height: 1.6;
    max-width: 600px;
}

.section-dark .section-header .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.section-header .gold-line {
    width: 60px;
    height: 4px;
    background: var(--cvas-gold);
    margin-bottom: 1rem;
}

.section-header-center {
    text-align: center;
}

.section-header-center .gold-line {
    margin-left: auto;
    margin-right: auto;
}

.section-header-center .section-subtitle {
    margin: 0 auto;
}

/* ============================================
   CARDS
   ============================================ */

/* Performer cards */
.performer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

.performer-card {
    background: var(--cvas-dark-navy);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    color: var(--cvas-white);
}

.performer-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--cvas-gold);
    z-index: 1;
}

.performer-spotlight-card::before {
    display: none;
}

.performer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.performer-card .performer-image {
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, var(--cvas-light-navy), var(--cvas-navy));
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.2);
    font-size: 3rem;
}

.performer-card .performer-body {
    padding: 1.5rem;
}

.performer-card .performer-type {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--cvas-gold);
    margin-bottom: 0.5rem;
}

.performer-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--cvas-white);
    letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
}

.performer-card .performer-detail {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* Info cards (on dark sections) */
.info-card {
    background: var(--cvas-white);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--cvas-gold);
}

.info-card:hover {
    transform: translateY(-3px);
}

.info-card h3 {
    color: var(--cvas-dark-navy);
    margin-bottom: 0.75rem;
}

.info-card p {
    color: var(--cvas-text-muted);
    font-size: 0.9rem;
}
/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--cvas-navy);
    color: var(--cvas-white);
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
}

.btn-primary:hover {
    background: var(--cvas-light-navy);
    transform: translateY(-1px);
}

.btn-accent {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--cvas-gold);
    color: var(--cvas-dark-navy);
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s;
}

.btn-accent:hover {
    background: var(--cvas-dark-gold);
    transform: translateY(-1px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--cvas-navy);
    border: 2px solid var(--cvas-navy);
    padding: 10px 26px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s;
}

.btn-outline:hover {
    background: var(--cvas-navy);
    color: var(--cvas-white);
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--cvas-white);
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 10px 26px;
    border-radius: 50px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s;
}

.btn-outline-white:hover {
    background: var(--cvas-white);
    color: var(--cvas-dark-navy);
    border-color: var(--cvas-white);
}

/* Pill button (CTA style) */
.btn-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 14px 36px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-pill-gold {
    background: var(--cvas-gold);
    color: var(--cvas-dark-navy);
}

.btn-pill-gold:hover {
    background: var(--cvas-dark-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 203, 43, 0.4);
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

/* FAQ styles handled in template inline CSS */

/* faq-item.open styling handled in template */

/* ============================================
   FOOTER
   One section: a photographer's shot ghosted under the navy
   (luminosity blend + fade), show name + date + CTAs on the
   sky, link columns where the photo has faded out, bottom bar.
   Markup: templates/_footer.html. Picked 2026-09-03.
   ============================================ */
.site-footer {
    position: relative;
    background: var(--cvas-dark-navy);
    color: var(--cvas-white);
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}
.site-footer a { text-decoration: none; }

/* ghosted photo layer */
.footer-sky { position: absolute; inset: 0; z-index: 0; }
.footer-sky img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
    opacity: .5;
    mix-blend-mode: luminosity;
}
.footer-sky::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(0, 22, 59, .30) 0%,
        rgba(0, 22, 59, .45) 30%,
        rgba(0, 22, 59, .88) 58%,
        #00163b 74%);
}
.footer-wedge {
    position: absolute;
    top: 0;
    right: 0;
    width: 46%;
    height: 110px;
    background: var(--cvas-gold);
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    z-index: 1;
}

/* show name, date, CTAs */
.footer-hero {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: clamp(84px, 10vw, 150px) var(--section-pad-x) clamp(52px, 6vw, 84px);
}
.footer-eyebrow {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: clamp(13px, 1.3vw, 17px);
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--cvas-gold);
    margin: 0 0 1rem;
}
.footer-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: clamp(42px, 6.5vw, 88px);
    line-height: 1;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--cvas-white);
    margin: 0 0 1rem;
    text-shadow: 0 8px 32px rgba(0, 0, 0, .45);
}
.footer-loc {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: clamp(14px, 1.4vw, 18px);
    letter-spacing: .12em;
    color: rgba(255, 255, 255, .8);
    margin: 0;
}
.footer-loc span { color: var(--cvas-gold); margin: 0 .5rem; }
.footer-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2.2rem; }

.footer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 36px;
    border-radius: 50px;
    border: 2px solid transparent;
    line-height: 1.2;
    white-space: nowrap;
    transition: all .25s;
}
.footer-btn-sm { font-size: 13px; padding: 10px 26px; }
.footer-btn-gold { background: var(--cvas-gold); color: var(--cvas-dark-navy); border-color: var(--cvas-gold); }
.footer-btn-gold:hover { background: var(--cvas-dark-gold); border-color: var(--cvas-dark-gold); color: var(--cvas-dark-navy); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255, 203, 43, .3); }

/* link columns + contact */
.footer-links { position: relative; z-index: 2; padding: 0 var(--section-pad-x); }
.footer-grid {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: clamp(2rem, 3vw, 3rem);
    justify-items: center;
    text-align: center;
    padding: clamp(44px, 5vw, 68px) 0;
    border-top: 1px solid rgba(255, 255, 255, .14);
}
.footer-col h4 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--cvas-gold);
    margin: 0 0 .9rem;
}
.footer-col-links a {
    display: block;
    color: rgba(255, 255, 255, .65);
    font-size: .9rem;
    padding: .22rem 0;
    transition: color .2s;
}
.footer-col-links a:hover { color: var(--cvas-gold); }
.footer-contact { display: flex; flex-direction: column; align-items: center; gap: .55rem; }
.footer-contact p { color: rgba(255, 255, 255, .65); font-size: .9rem; margin: 0; }
.footer-contact p a { color: inherit; transition: color .2s; }
.footer-contact p a:hover { color: var(--cvas-gold); }
.footer-contact .footer-btn { margin: .25rem 0 .5rem; }
.footer-scout { display: inline-block; margin-bottom: .6rem; transition: opacity .3s; }
.footer-scout:hover { opacity: .8; }
.footer-scout img { height: 50px; width: auto; display: block; }
.footer-social { display: flex; justify-content: center; gap: .6rem; margin-top: .5rem; }
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .3);
    color: rgba(255, 255, 255, .75);
    font-size: 1rem;
    transition: all .25s;
}
.footer-social a:hover { background: var(--cvas-gold); border-color: var(--cvas-gold); color: var(--cvas-dark-navy); }
.footer-drone { background: #fff; border-radius: 8px; padding: .45rem .8rem; display: inline-block; margin-top: .75rem; }
.footer-drone img { height: 40px; width: auto; display: block; }

/* bottom bar */
.footer-bottom {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 1.25rem var(--section-pad-x);
    font-size: .82rem;
    color: rgba(255, 255, 255, .45);
}
.footer-bottom-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-bottom p { margin: 0; }
.footer-bottom a { color: rgba(255, 255, 255, .55); transition: color .2s; }
.footer-bottom a:hover { color: var(--cvas-gold); }
.footer-legal { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-left: auto; } /* stays right when the bar wraps */
.footer-sep { color: rgba(255, 255, 255, .25); }
.footer-credit {
    display: inline-block;
    margin-left: 1rem;
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .3);
}

/* tablet: with all three link groups on, only three tracks fit, so the
   contact block would sit alone at the left of row two; span it instead */
@media (min-width: 768px) and (max-width: 1023px) {
    .footer-col:first-child:nth-last-child(4) ~ .footer-contact { grid-column: 1 / -1; }
}
@media (max-width: 767px) {
    .footer-wedge { width: 62%; height: 70px; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .footer-legal { margin-left: 0; justify-content: center; }
    .footer-credit { display: block; margin: .35rem 0 0; }
}
@media (max-width: 479px) {
    .footer-ctas { flex-direction: column; align-items: stretch; }
    .footer-ctas .footer-btn { width: 100%; }
    /* stack airport / city on phones instead of wrapping around the pipe */
    .footer-loc span { display: block; height: .4rem; overflow: hidden; visibility: hidden; margin: 0; }
}

.footer-portal-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    padding: 0.4rem 0.85rem;
    background: #ffcb2b;
    color: #002852;
    border-radius: 6px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: background 0.2s;
    white-space: nowrap;
}

.footer-portal-btn:hover {
    background: #ffe066;
    color: #002852;
}
/* .footer-bottom a (0,1,1) outranks .footer-portal-btn (0,1,0); pin the navy text on the gold pill */
.footer-bottom .footer-portal-btn,
.footer-bottom .footer-portal-btn:hover {
    color: #002852;
    transition: background 0.2s, color 0.2s;
}

/* ============================================
   EMERGENCY BANNER
   ============================================ */
.emergency-banner {
    position: relative;
    z-index: 10002;
}

.emergency-banner div {
    padding: 0.65rem 1.25rem;
    font-weight: 700;
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
}

/* ============================================
   FLASH MESSAGES
   ============================================ */
.flash-messages {
    position: fixed;
    top: calc(var(--nav-height) + 10px);
    right: 20px;
    z-index: 10003;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 400px;
}

.flash-message {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    animation: flashSlideIn 0.3s ease;
}

@keyframes flashSlideIn {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

.flash-success { background: #e6f9ee; color: #1a7a3a; border-left: 4px solid #1a7a3a; }
.flash-error { background: #fde8e8; color: #b83232; border-left: 4px solid #b83232; }
.flash-warning { background: #fff5d6; color: #8a6d00; border-left: 4px solid #8a6d00; }
.flash-info { background: #e8f0fe; color: #1a5fa0; border-left: 4px solid #1a5fa0; }

/* ============================================
   LEGACY/COMPATIBILITY: BACKWARDS-COMPATIBLE CLASSES
   These support existing page templates that use the old class names.
   ============================================ */

/* Container */
.front-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--section-pad-y) var(--section-pad-x);
}

.front-container.narrow {
    max-width: 800px;
}

.front-container.wide {
    max-width: var(--container-max);
}

/* Old page-hero maps to hero-interior styles */
.page-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #00163b 0%, #002852 50%, #2a4b6e 100%);
    color: var(--cvas-white);
    padding: calc(var(--nav-height) + 40px) clamp(20px, 5vw, 80px) 60px;
    text-align: center;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, rgba(0, 22, 59, 0.8) 0%, transparent 60%);
    z-index: 1;
}

.page-hero h1 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: clamp(36px, 5vw, 72px);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--cvas-white);
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.page-hero p {
    position: relative;
    z-index: 2;
    font-size: 1.05rem;
    opacity: 0.85;
    max-width: 600px;
    margin: 0.5rem auto 0;
}

.page-hero .hero-icon {
    font-size: 2.5rem;
    color: var(--cvas-gold);
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 2;
}

.page-hero .hero-date {
    display: inline-block;
    background: var(--cvas-gold);
    color: var(--cvas-dark-navy);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.05em;
    margin-top: 1rem;
    position: relative;
    z-index: 2;
}

.page-hero.small {
    min-height: auto;
    padding: calc(var(--nav-height) + 20px) clamp(20px, 5vw, 80px) 40px;
}

.page-hero.small h1 {
    font-size: clamp(24px, 3vw, 40px);
}

/* Front hero (old homepage hero) */
.front-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #00163b 0%, #002852 50%, #2a4b6e 100%);
    color: var(--cvas-white);
    text-align: center;
}

.front-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #00163b 0%, #002852 50%, #2a4b6e 100%);
    animation: kenBurns 20s ease-in-out infinite alternate;
    z-index: 0;
}

.front-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(0, 22, 59, 0.9) 0%, transparent 100%);
    z-index: 1;
}

.front-hero h1 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: clamp(48px, 8vw, 120px);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--cvas-white);
    position: relative;
    z-index: 2;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.3);
}

.front-hero p {
    font-size: 1.1rem;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.front-hero .hero-date {
    display: inline-block;
    background: var(--cvas-gold);
    color: var(--cvas-dark-navy);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.05em;
    margin-top: 1rem;
    position: relative;
    z-index: 2;
}

/* Countdown */
.countdown-box {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 1.25rem 2rem;
    margin: 1.5rem auto 0;
    max-width: 400px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.countdown-box .countdown-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--cvas-gold);
    margin-bottom: 0.35rem;
}

.countdown-box .countdown-value {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cvas-white);
}

/* Quick link cards */
.quick-link-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.quick-link-card {
    background: var(--cvas-white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    color: var(--cvas-text);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.quick-link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--cvas-gold);
}

.quick-link-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.quick-link-card i {
    font-size: 2rem;
    color: var(--cvas-navy);
    margin-bottom: 0.75rem;
}

.quick-link-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--cvas-dark-navy);
    letter-spacing: 0.04em;
    margin-bottom: 0.3rem;
}

.quick-link-card p {
    font-size: 0.85rem;
    color: var(--cvas-text-muted);
}

/* Front cards (generic grid) */
.front-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.front-card {
    background: var(--cvas-white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    color: var(--cvas-text);
    display: block;
}

.front-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.front-card-icon {
    background: linear-gradient(135deg, var(--cvas-navy), var(--cvas-light-navy));
    color: var(--cvas-gold);
    padding: 2rem;
    text-align: center;
    font-size: 2.5rem;
}

.front-card-body {
    padding: 1.5rem;
}

.front-card-body h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--cvas-dark-navy);
    letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
}

.front-card-body p {
    font-size: 0.9rem;
    color: var(--cvas-text-muted);
    line-height: 1.6;
}

/* Section header (old style) */
.front-section {
    margin-bottom: 2.5rem;
}

.front-section-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--cvas-gold);
}

.front-section-header i {
    font-size: 1.4rem;
    color: var(--cvas-navy);
}

.front-section-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 600;
    color: var(--cvas-dark-navy);
    letter-spacing: 0.04em;
}

/* Spotlight section */
.spotlight {
    background: linear-gradient(135deg, var(--cvas-navy) 0%, var(--cvas-dark-navy) 100%);
    color: var(--cvas-white);
    border-radius: 16px;
    padding: 3rem 2rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.spotlight::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 203, 43, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.spotlight h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(28px, 3vw, 48px);
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
    position: relative;
}

.spotlight p {
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto 1rem;
    position: relative;
}

.spotlight .spotlight-badge {
    display: inline-block;
    background: var(--cvas-gold);
    color: var(--cvas-dark-navy);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    position: relative;
}

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    color: var(--cvas-text-muted);
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.breadcrumbs a {
    color: var(--cvas-navy);
    font-weight: 500;
    transition: color 0.2s;
}

.breadcrumbs a:hover {
    color: var(--cvas-gold);
}

.breadcrumbs .separator {
    color: var(--cvas-border);
    font-size: 0.7rem;
}

.breadcrumbs .current {
    color: var(--cvas-text);
    font-weight: 600;
}

/* ============================================
   SPONSOR TIERS
   ============================================ */
.sponsor-tier-group {
    margin-bottom: 1.5rem;
}

.sponsor-tier-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.sponsor-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 0.75rem;
}

.sponsor-item {
    background: var(--cvas-white);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.2s;
}

.sponsor-item:hover {
    transform: translateY(-2px);
}

.sponsor-item .sponsor-icon {
    font-size: 1.2rem;
}

.sponsor-item .sponsor-name {
    font-weight: 600;
    font-size: 0.95rem;
}

/* ============================================
   SCHEDULE
   ============================================ */
.schedule-day {
    margin-bottom: 2rem;
}

.schedule-day-header {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--cvas-gold);
    padding: 0.75rem 1rem;
    background: var(--cvas-dark-navy);
    border-radius: 8px 8px 0 0;
}

.schedule-block {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--cvas-gray);
    background: var(--cvas-white);
    transition: background 0.15s;
}

.schedule-block:hover {
    background: var(--cvas-light-gray);
}

.schedule-block:last-child {
    border-bottom: none;
    border-radius: 0 0 8px 8px;
}

.schedule-time {
    font-family: 'Oswald', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--cvas-navy);
    min-width: 110px;
    white-space: nowrap;
}

.schedule-name {
    font-weight: 600;
    flex: 1;
}

.schedule-type {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.15rem 0.6rem;
    border-radius: 50px;
    background: rgba(0, 40, 82, 0.08);
    color: var(--cvas-navy);
}

/* ============================================
   VOLUNTEER / PEOPLE CARDS
   ============================================ */
.volunteer-org-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.volunteer-org-card {
    background: var(--cvas-white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
}

.volunteer-org-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--cvas-gold);
}

.volunteer-org-card:hover {
    transform: translateY(-3px);
}

.volunteer-org-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--cvas-dark-navy);
    margin-bottom: 0.25rem;
}

.volunteer-org-card .org-count {
    font-size: 0.85rem;
    color: var(--cvas-text-muted);
}

.people-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.people-card {
    background: var(--cvas-white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.3s;
}

.people-card:hover {
    transform: translateY(-3px);
}

.people-card .people-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cvas-navy), var(--cvas-light-navy));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.8rem;
}

.people-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--cvas-dark-navy);
    margin-bottom: 0.15rem;
}

.people-card .people-role {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--cvas-gold);
    margin-bottom: 0.35rem;
}

.people-card p {
    font-size: 0.82rem;
    color: var(--cvas-text-muted);
}

/* ============================================
   LAYOUT HELPERS
   ============================================ */
.layout-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.layout-two-col.aside {
    grid-template-columns: 2fr 1fr;
}

.layout-three-col {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* ============================================
   INFO BLOCKS & CALLOUTS
   ============================================ */
.info-block {
    background: var(--cvas-white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.info-block h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--cvas-dark-navy);
    letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-block h3 i {
    color: var(--cvas-gold);
}

.info-block p {
    font-size: 0.9rem;
    color: var(--cvas-text-muted);
    line-height: 1.6;
}

.info-block ul {
    margin-top: 0.5rem;
}

.info-block ul li {
    padding: 0.35rem 0;
    font-size: 0.9rem;
    color: var(--cvas-text-muted);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.info-block ul li i {
    color: var(--cvas-navy);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.callout {
    background: rgba(0, 40, 82, 0.05);
    border-left: 4px solid var(--cvas-gold);
    border-radius: 0 8px 8px 0;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
}

.callout.warning {
    border-left-color: #fd7e14;
    background: rgba(253, 126, 20, 0.06);
}

.callout.danger {
    border-left-color: #dc3545;
    background: rgba(220, 53, 69, 0.06);
}

.callout.success {
    border-left-color: #1a7a3a;
    background: rgba(26, 122, 58, 0.06);
}

.callout h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--cvas-dark-navy);
    margin-bottom: 0.25rem;
    text-transform: none;
    letter-spacing: 0;
}

.callout p {
    font-size: 0.88rem;
    color: var(--cvas-text-muted);
}

/* ============================================
   TICKET CARDS
   ============================================ */
.ticket-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.ticket-card {
    background: var(--cvas-white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.ticket-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.ticket-card.featured {
    border: 2px solid var(--cvas-gold);
}

.ticket-card .ticket-header {
    background: var(--cvas-dark-navy);
    color: var(--cvas-white);
    padding: 1.25rem;
}

.ticket-card.featured .ticket-header {
    background: var(--cvas-gold);
    color: var(--cvas-dark-navy);
}

.ticket-card .ticket-header h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.ticket-card .ticket-price {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--cvas-dark-navy);
    padding: 1.25rem 1rem 0.5rem;
}

.ticket-card .ticket-price small {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--cvas-text-muted);
    font-family: 'Inter', sans-serif;
}

.ticket-card .ticket-body {
    padding: 0 1.25rem 1.5rem;
}

.ticket-card .ticket-body ul {
    text-align: left;
    margin-bottom: 1.25rem;
}

.ticket-card .ticket-body ul li {
    padding: 0.3rem 0;
    font-size: 0.85rem;
    color: var(--cvas-text-muted);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.ticket-card .ticket-body ul li i {
    color: var(--cvas-gold);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* ============================================
   FOOD/VENDOR GRIDS
   ============================================ */
.vendor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.vendor-card {
    background: var(--cvas-white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s;
}

.vendor-card:hover {
    transform: translateY(-3px);
}

.vendor-card .vendor-icon {
    font-size: 2rem;
    color: var(--cvas-navy);
    margin-bottom: 0.5rem;
}

.vendor-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--cvas-dark-navy);
    margin-bottom: 0.25rem;
}

.vendor-card p {
    font-size: 0.82rem;
    color: var(--cvas-text-muted);
}

.cuisine-badge {
    display: inline-block;
    padding: 0.2rem 0.65rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    background: rgba(0, 40, 82, 0.08);
    color: var(--cvas-navy);
    margin: 0.15rem;
}

/* ============================================
   GALLERY
   ============================================ */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.photo-grid-item {
    background: linear-gradient(135deg, var(--cvas-navy), var(--cvas-light-navy));
    border-radius: 12px;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 2rem;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

.photo-grid-item:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.video-card {
    background: var(--cvas-white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s;
}

.video-card:hover {
    transform: translateY(-3px);
}

.video-card .video-placeholder {
    background: linear-gradient(135deg, var(--cvas-dark-navy), var(--cvas-navy));
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.25);
    font-size: 3rem;
}

.video-card .video-body {
    padding: 1rem 1.25rem;
}

.video-card .video-body h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--cvas-dark-navy);
    letter-spacing: 0.04em;
    margin-bottom: 0.25rem;
}

.video-card .video-body p {
    font-size: 0.82rem;
    color: var(--cvas-text-muted);
}

/* Filter bar */
.filter-bar {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.filter-bar .filter-btn {
    background: var(--cvas-white);
    border: 1px solid var(--cvas-gray);
    border-radius: 50px;
    padding: 0.4rem 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--cvas-text-muted);
    cursor: pointer;
    transition: all 0.2s;
}

.filter-bar .filter-btn:hover,
.filter-bar .filter-btn.active {
    background: var(--cvas-navy);
    color: var(--cvas-white);
    border-color: var(--cvas-navy);
}

/* ============================================
   ARCHIVE / PAST SHOWS
   ============================================ */
.archive-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.archive-card {
    background: var(--cvas-white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 1.5rem;
    border-left: 4px solid var(--cvas-gold);
    transition: transform 0.3s;
}

.archive-card:hover {
    transform: translateY(-3px);
}

.archive-card .archive-year {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--cvas-navy);
    margin-bottom: 0.25rem;
}

.archive-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--cvas-dark-navy);
    letter-spacing: 0.04em;
    margin-bottom: 0.35rem;
}

.archive-card p {
    font-size: 0.85rem;
    color: var(--cvas-text-muted);
}

/* ============================================
   NEWSLETTER SIGNUP
   ============================================ */
.newsletter-box {
    background: linear-gradient(135deg, var(--cvas-navy) 0%, var(--cvas-dark-navy) 100%);
    color: var(--cvas-white);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.newsletter-box::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 203, 43, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.newsletter-box h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-bottom: 0.5rem;
    position: relative;
}

.newsletter-box p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 1.25rem;
    position: relative;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    max-width: 400px;
    margin: 0 auto;
    position: relative;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.08);
    color: var(--cvas-white);
    transition: border-color 0.2s;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--cvas-gold);
}

.newsletter-form button {
    background: var(--cvas-gold);
    color: var(--cvas-dark-navy);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
}

.newsletter-form button:hover {
    background: var(--cvas-dark-gold);
}

/* ============================================
   SPONSOR TICKER
   ============================================ */
.sponsor-ticker {
    background: var(--cvas-white);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.sponsor-ticker h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--cvas-text-muted);
    margin-bottom: 0.75rem;
}

.sponsor-ticker-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    opacity: 0.5;
}

.sponsor-ticker-logos .ticker-placeholder {
    width: 100px;
    height: 40px;
    background: var(--cvas-gray);
    border-radius: 6px;
}

/* ============================================
   CONTACT INFO BLOCK
   ============================================ */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.contact-info-item {
    background: var(--cvas-white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s;
}

.contact-info-item:hover {
    transform: translateY(-3px);
}

.contact-info-item i {
    font-size: 1.5rem;
    color: var(--cvas-navy);
    margin-bottom: 0.5rem;
}

.contact-info-item h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--cvas-dark-navy);
    letter-spacing: 0.04em;
    margin-bottom: 0.25rem;
}

.contact-info-item p {
    font-size: 0.82rem;
    color: var(--cvas-text-muted);
}

.contact-info-item a {
    color: var(--cvas-navy);
    font-weight: 500;
    transition: color 0.2s;
}

.contact-info-item a:hover {
    color: var(--cvas-gold);
}

/* ============================================
   GROUNDS MAP PLACEHOLDER
   ============================================ */
.map-placeholder {
    background: linear-gradient(135deg, var(--cvas-navy), var(--cvas-light-navy));
    border-radius: 12px;
    aspect-ratio: 16 / 9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 0.75rem;
}

.map-placeholder p {
    font-size: 0.9rem;
}

/* ============================================
   FORMS
   ============================================ */
.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--cvas-dark-navy);
    margin-bottom: 0.35rem;
}

.form-group label .required {
    color: #dc3545;
    font-weight: 400;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--cvas-gray);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    background: var(--cvas-white);
    color: var(--cvas-text);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: var(--cvas-navy);
    box-shadow: 0 0 0 3px rgba(0, 40, 82, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235a6b7e' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

/* ============================================
   BADGES
   ============================================ */
.badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-confirmed { background: #e6f9ee; color: #1a7a3a; }
.badge-pending { background: #fff5d6; color: #8a6d00; }
.badge-tentative { background: #e8f0fe; color: #1a5fa0; }
.badge-cancelled { background: #fde8e8; color: #b83232; }

/* ============================================
   DOWNLOAD/PRINT LINKS
   ============================================ */
.print-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--cvas-white);
    border: 1px solid var(--cvas-gray);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--cvas-text-muted);
    cursor: pointer;
    transition: all 0.2s;
}

.print-btn:hover {
    background: var(--cvas-navy);
    color: var(--cvas-white);
    border-color: var(--cvas-navy);
}

.download-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--cvas-white);
    border: 1px solid var(--cvas-gray);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--cvas-navy);
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.download-link:hover {
    background: var(--cvas-navy);
    color: var(--cvas-white);
    border-color: var(--cvas-navy);
}

.download-link i {
    color: var(--cvas-gold);
}

.download-link:hover i {
    color: var(--cvas-gold);
}

/* ============================================
   OLD NAV (COMPAT for pages that still use front-nav class)
   ============================================ */
.front-nav {
    background: var(--cvas-dark-navy);
    color: #fff;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height-scrolled);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 9999;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet: 768px - 1199px */
@media (max-width: 1199px) {
    .layout-three-col {
        grid-template-columns: 1fr 1fr;
    }
}

/* Tablet: below 1100px — hamburger appears, desktop nav hidden */
@media (max-width: 1100px) {
    .nav-links {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    /* Buy Tickets CTA and CVAS Portal stay visible in nav-actions */
    .btn-nav-cta {
        padding: 8px 18px;
        font-size: 12px;
        letter-spacing: 1px;
    }
}

/* Narrow tablet: below 900px — shrink Buy Tickets, hide portal strip */
@media (max-width: 900px) {
    .btn-nav-cta {
        padding: 7px 14px;
        font-size: 11px;
        letter-spacing: 1px;
    }
}

/* Mobile: < 768px */
@media (max-width: 767px) {
    :root {
        --nav-height: 64px;
    }

    /* Buy Tickets CTA stays visible! nav-links already hidden from 1100px */
    /* nav-hamburger already shown from 1100px */

    /* Ensure nav-actions never overflows on mobile */
    .nav-actions {
        overflow: visible;
    }

    /* Section adjustments */
    .section-bleed {
        background-attachment: scroll;
    }

    .section-overlap-up {
        margin-top: -40px;
    }

    .section-overlap-down {
        margin-bottom: -40px;
    }

    .section-divider-diagonal::after,
    .section-wave::after,
    .section-diagonal-left::after,
    .section-diagonal-right::after,
    .section-angled::after {
        height: 40px;
    }

    /* Hero adjustments */
    .hero-home {
        min-height: 100vh;
    }

    .hero-interior {
        min-height: 40vh;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .btn-hero {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    /* Layouts */
    .layout-two-col,
    .layout-two-col.aside,
    .layout-three-col {
        grid-template-columns: 1fr;
    }

    /* Grids */
    .performer-grid {
        grid-template-columns: 1fr;
    }

    .front-cards,
    .quick-link-cards,
    .sponsor-list,
    .ticket-grid,
    .vendor-grid,
    .photo-grid,
    .video-grid,
    .archive-list,
    .people-grid {
        grid-template-columns: 1fr;
    }

    /* Newsletter */
    .newsletter-form {
        flex-direction: column;
    }

    /* Contact info */
    .contact-info {
        grid-template-columns: 1fr 1fr;
    }

    /* Countdown */
    .countdown-box {
        padding: 1rem;
    }

    /* Old container compat */
    .front-container {
        padding: 2rem 1rem;
    }
}

/* Small mobile: < 480px */
@media (max-width: 479px) {
    .contact-info {
        grid-template-columns: 1fr;
    }

    .hero-date {
        font-size: clamp(36px, 10vw, 48px);
    }

    /* Further shrink Buy Tickets CTA for tiny screens */
    .btn-nav-cta {
        padding: 6px 12px;
        font-size: 10px;
        letter-spacing: 1px;
    }

    .nav-logo .logo-sub {
        display: none;
    }

    .nav-logo-img {
        height: 63px;
    }

    .nav-logo-img.logo-shrunk {
        height: 30px;
    }

    .nav-logo {
        min-width: 150px;
    }

    .footer-portal-btn {
        font-size: 0.65rem;
        padding: 0.35rem 0.65rem;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .main-nav,
    .nav-hamburger,
    .mobile-menu,
    .scroll-indicator,
    .btn-hero,
    .btn-nav-cta,
    .btn-pill,
    .footer-sky,
    .footer-wedge {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .hero-home, .hero-interior, .page-hero {
        min-height: auto;
        background: white !important;
        color: black !important;
    }

    .hero-home::before,
    .hero-home::after,
    .hero-interior::after,
    .page-hero::after {
        display: none;
    }

    .section-dark {
        background: white;
        color: black;
    }

    .section-dark h2,
    .section-dark h3,
    .section-dark p {
        color: black;
    }
}

/* ============================================
   HOMEPAGE-SPECIFIC CLASSES
   Templates use these; bridging the naming gap
   ============================================ */

/* --- Hero Fullscreen (homepage) --- */
.hero-fullscreen {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #00163b 0%, #002852 40%, #2a4b6e 100%);
    background-size: cover;
    background-position: center;
}

.hero-fullscreen::before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    background-size: cover;
    background-position: center;
    animation: kenBurns 20s ease-in-out infinite alternate;
    z-index: 0;
}

.hero-fullscreen::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 22, 59, 0.6) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 clamp(20px, 5vw, 60px);
}

.hero-date-label {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: clamp(12px, 1.5vw, 18px);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--cvas-gold);
    margin-bottom: clamp(16px, 2vw, 24px);
}

.hero-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: clamp(44px, 7.5vw, 110px);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.05;
    color: var(--cvas-white);
    margin-bottom: clamp(12px, 1.5vw, 20px);
    white-space: nowrap;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: clamp(14px, 1.5vw, 20px);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cvas-white);
    margin-bottom: clamp(8px, 1vw, 16px);
}

.hero-location {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: clamp(12px, 1.2vw, 16px);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: clamp(24px, 3vw, 40px);
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: clamp(40px, 5vw, 80px);
}

.hero-btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-btn-primary {
    background: var(--cvas-gold);
    color: var(--cvas-dark-navy);
    border: 2px solid var(--cvas-gold);
}

.hero-btn-primary:hover {
    background: var(--cvas-dark-gold);
    border-color: var(--cvas-dark-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 203, 43, 0.3);
}

.hero-btn-outline {
    background: transparent;
    color: var(--cvas-white);
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.hero-btn-outline:hover {
    background: var(--cvas-white);
    color: var(--cvas-dark-navy);
    border-color: var(--cvas-white);
    transform: translateY(-2px);
}

/* --- Scroll Indicator (homepage hero) --- */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255, 255, 255, 0.6);
    font-size: 24px;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* --- Gold Divider --- */
.gold-divider {
    width: 100%;
    height: 4px;
    background: var(--cvas-gold);
}

/* --- Sponsors Section (homepage) --- */
.sponsors-section {
    background: #ffffff;
    padding: var(--section-pad-y) var(--section-pad-x);
    text-align: center;
    color: #333;
}

.sponsors-section .section-heading {
    color: var(--cvas-navy);
}

.sponsors-section .section-heading h2 {
    color: var(--cvas-navy);
}

.sponsors-section .section-subtitle {
    color: #666;
    margin-bottom: 2rem;
}

/* Sponsor tier blocks */
.sponsor-tier-block {
    margin-bottom: 2.5rem;
}
.sponsor-tier-banner {
    margin-bottom: 1rem;
    text-align: center;
}
.sponsor-tier-banner img {
    max-width: 100%;
    height: auto;
    max-height: 80px;
    display: inline-block;
}
.sponsor-tier-header {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
    padding: 0.5rem 1.5rem;
    background: #f0f4f8;
    border-radius: 8px;
    border-left: 4px solid;
}
.sponsor-tier-header .sponsor-tier-icon {
    font-size: 1.1rem;
}
.sponsor-tier-header .sponsor-tier-name {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--cvas-navy);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Sponsor logo grid */
.sponsor-logo-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
}
.sponsor-logo-card {
    background: #ffffff;
    border: 1px solid #e8ecf0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}
.sponsor-logo-card:hover {
    border-color: var(--cvas-gold);
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.sponsor-logo-card a,
.sponsor-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    position: relative;
}
.sponsor-logo-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    display: block;
    transition: opacity 0.3s ease, filter 0.3s ease;
}
/* Hover: fade logo out and show "Visit Website" label */
.sponsor-logo-card:hover .sponsor-logo-img {
    opacity: 0.15;
    filter: grayscale(100%);
}
.sponsor-logo-hover-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    color: var(--cvas-navy);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}
.sponsor-logo-card:hover .sponsor-logo-hover-label {
    opacity: 1;
}
.sponsor-name-fallback {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    color: var(--cvas-navy);
    text-align: center;
    padding: 0.75rem;
}

/* Tier sizing on white background */
.sponsor-tier-presenting .sponsor-logo-card { width: 280px; height: 110px; padding: 0.75rem 1.25rem; }
.sponsor-tier-major .sponsor-logo-card { width: 240px; height: 95px; padding: 0.6rem 1rem; }
.sponsor-tier-gold .sponsor-logo-card { width: 200px; height: 85px; padding: 0.5rem 0.85rem; }
.sponsor-tier-blue .sponsor-logo-card { width: 175px; height: 75px; padding: 0.4rem 0.75rem; }
.sponsor-tier-supporter .sponsor-logo-card { width: 160px; height: 65px; padding: 0.35rem 0.6rem; }

/* Coming soon state */
.sponsor-coming-soon {
    text-align: center;
    padding: 3rem 2rem;
}
.sponsor-coming-icon {
    width: 70px;
    height: 70px;
    background: #f0f4f8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}
.sponsor-coming-icon i {
    font-size: 1.5rem;
    color: var(--cvas-gold);
}
.sponsor-coming-soon h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--cvas-navy);
    text-transform: uppercase;
    margin: 0 0 0.5rem;
}
.sponsor-coming-soon p {
    color: #888;
    font-size: 0.95rem;
}

.sponsor-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cvas-navy);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    margin-top: 24px;
    transition: all 0.3s ease;
    background: var(--cvas-gold);
    padding: 0.7rem 1.8rem;
    border-radius: 6px;
}

.sponsor-cta:hover {
    gap: 12px;
    background: #e6b800;
    color: var(--cvas-navy);
}

/* --- Photo Bleed Section (homepage) --- */
.photo-bleed-section {
    position: relative;
    min-height: 750px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: linear-gradient(135deg, #2a4b6e 0%, #00163b 50%, #002852 100%);
    background-size: cover;
    background-position: center;
}

.photo-bleed-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: linear-gradient(to top, rgba(0, 22, 59, 0.9) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.photo-bleed-section.section-parallax {
    background-attachment: fixed;
}

@supports (-webkit-touch-callout: none) {
    .photo-bleed-section.section-parallax {
        background-attachment: scroll;
    }
}

.photo-bleed-content {
    position: relative;
    z-index: 2;
    padding: clamp(40px, 5vw, 80px) var(--section-pad-x);
    max-width: 700px;
}

.photo-bleed-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: clamp(36px, 5vw, 72px);
    text-transform: uppercase;
    color: var(--cvas-white);
    line-height: 1.1;
    margin-bottom: 16px;
}

.photo-bleed-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    max-width: 560px;
}

/* --- Performers Section (homepage) --- */
.performers-section {
    background: var(--cvas-light-gray);
    padding: var(--section-pad-y) var(--section-pad-x);
}

.performers-inner {
    max-width: var(--container-max);
    margin: 0 auto;
}

.performer-card {
    background: var(--cvas-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.performer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.performer-card-image {
    position: relative;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, var(--cvas-navy), var(--cvas-light-navy));
    overflow: hidden;
}

.performer-card-body {
    padding: 24px;
}

.performer-card-body h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--cvas-navy);
    margin-bottom: 8px;
}

.performer-card-body p {
    font-size: 14px;
    color: var(--cvas-text-muted);
    line-height: 1.6;
}

.performer-filter {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.performer-filter button {
    padding: 8px 20px;
    border: 2px solid var(--cvas-navy);
    border-radius: 50px;
    background: transparent;
    color: var(--cvas-navy);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.performer-filter button:hover,
.performer-filter button.active {
    background: var(--cvas-navy);
    color: var(--cvas-white);
}

.performers-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--cvas-gold);
    color: var(--cvas-navy);
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 10px 28px;
    border-radius: 50px;
    transition: all 0.25s ease;
}

.performers-cta:hover {
    background: var(--cvas-dark-gold);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 203, 43, 0.4);
}

/* --- Stats Section (homepage) --- */
.stats-section {
    background: var(--cvas-dark-navy);
    padding: clamp(60px, 6vw, 100px) var(--section-pad-x);
    color: var(--cvas-white);
}

.stats-grid {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    text-align: center;
}

.stat-item {
    padding: 24px 16px;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--cvas-gold);
    opacity: 0.4;
}

.stat-number {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: clamp(36px, 4vw, 64px);
    color: var(--cvas-gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: clamp(12px, 1.2vw, 14px);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}

/* --- STEM Section (homepage) --- */
.stem-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 550px;
}

.stem-visual {
    background: linear-gradient(135deg, var(--cvas-light-navy) 0%, var(--cvas-navy) 100%);
    min-height: 550px;
    position: relative;
    background-size: cover;
    background-position: center;
}
.stem-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,40,82,0.3) 0%, rgba(0,40,82,0.1) 100%);
    pointer-events: none;
}

.stem-content {
    background: var(--cvas-dark-navy);
    padding: clamp(40px, 5vw, 80px) clamp(24px, 4vw, 60px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--cvas-white);
}

.stem-label {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cvas-gold);
    margin-bottom: 16px;
}

.stem-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: clamp(28px, 3.5vw, 48px);
    text-transform: uppercase;
    color: var(--cvas-white);
    margin-bottom: 16px;
    line-height: 1.15;
}

.stem-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 24px;
}

.stem-list {
    list-style: none;
    margin-bottom: 32px;
}

.stem-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.stem-list li::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cvas-gold);
    flex-shrink: 0;
    margin-top: 8px;
}

.stem-cta {
    display: inline-block;
    padding: 14px 32px;
    border: 2px solid var(--cvas-gold);
    border-radius: 50px;
    color: var(--cvas-gold);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.stem-cta:hover {
    background: var(--cvas-gold);
    color: var(--cvas-dark-navy);
}

/* --- Kid Zone Section (homepage) --- */
.kidzone-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 550px;
}

.kidzone-visual {
    background: linear-gradient(135deg, var(--cvas-light-navy) 0%, var(--cvas-navy) 100%);
    min-height: 550px;
    position: relative;
    background-size: cover;
    background-position: center;
}
.kidzone-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,40,82,0.3) 0%, rgba(0,40,82,0.1) 100%);
    pointer-events: none;
}

.kidzone-content {
    background: var(--cvas-dark-navy);
    padding: clamp(40px, 5vw, 80px) clamp(24px, 4vw, 60px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--cvas-white);
}

.kidzone-label {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cvas-gold);
    margin-bottom: 16px;
}

.kidzone-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: clamp(28px, 3.5vw, 48px);
    text-transform: uppercase;
    color: var(--cvas-white);
    margin-bottom: 16px;
    line-height: 1.15;
}

.kidzone-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 24px;
}

.kidzone-list {
    list-style: none;
    margin-bottom: 32px;
}

.kidzone-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.kidzone-list li::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cvas-gold);
    flex-shrink: 0;
    margin-top: 8px;
}

.kidzone-cta {
    display: inline-block;
    padding: 14px 32px;
    border: 2px solid var(--cvas-gold);
    border-radius: 50px;
    color: var(--cvas-gold);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.kidzone-cta:hover {
    background: var(--cvas-gold);
    color: var(--cvas-dark-navy);
}

/* --- Scout Display Area Section (homepage) --- */
.scout-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 550px;
}

.scout-visual {
    background: linear-gradient(135deg, var(--cvas-light-navy) 0%, var(--cvas-navy) 100%);
    min-height: 550px;
    position: relative;
    background-size: cover;
    background-position: center;
}
.scout-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,40,82,0.3) 0%, rgba(0,40,82,0.1) 100%);
    pointer-events: none;
}

.scout-content {
    background: var(--cvas-dark-navy);
    padding: clamp(40px, 5vw, 80px) clamp(24px, 4vw, 60px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--cvas-white);
}

.scout-label {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cvas-gold);
    margin-bottom: 16px;
}

.scout-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: clamp(28px, 3.5vw, 48px);
    text-transform: uppercase;
    color: var(--cvas-white);
    margin-bottom: 16px;
    line-height: 1.15;
}

.scout-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 24px;
}

.scout-list {
    list-style: none;
    margin-bottom: 32px;
}

.scout-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.scout-list li::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cvas-gold);
    flex-shrink: 0;
    margin-top: 8px;
}

.scout-cta {
    display: inline-block;
    padding: 14px 32px;
    border: 2px solid var(--cvas-gold);
    border-radius: 50px;
    color: var(--cvas-gold);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.scout-cta:hover {
    background: var(--cvas-gold);
    color: var(--cvas-dark-navy);
}

/* --- Get Involved Section (homepage) --- */
.involved-section {
    background: var(--cvas-gold);
    padding: var(--section-pad-y) var(--section-pad-x);
    text-align: center;
    color: var(--cvas-dark-navy);
}

.involved-section .section-heading {
    margin-bottom: 16px;
}
.involved-section .section-subtitle {
    color: rgba(0, 22, 59, 0.7);
    margin-bottom: 2.5rem;
}

.involved-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: var(--container-max);
    margin: 0 auto;
}

.involved-card {
    background: var(--cvas-white);
    border-radius: 16px;
    padding: 40px 28px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.involved-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.involved-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--cvas-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: var(--cvas-dark-navy);
}

.involved-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--cvas-navy);
    margin-bottom: 12px;
}

.involved-card p {
    font-size: 14px;
    color: var(--cvas-text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.involved-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--cvas-navy);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.involved-card-link:hover {
    gap: 10px;
}

/* --- Newsletter Section (homepage) --- */
.newsletter-section {
    background: var(--cvas-dark-navy);
    padding: var(--section-pad-y) var(--section-pad-x);
    text-align: center;
    color: var(--cvas-white);
}

.newsletter-section .section-heading {
    margin-bottom: 16px;
}

.newsletter-section .section-heading h2 {
    color: var(--cvas-white);
}

.newsletter-section .section-subtitle {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2.5rem;
}

.newsletter-inner {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form {
    display: flex;
    border-radius: 50px;
    overflow: hidden;
    margin-top: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.newsletter-input {
    flex: 1;
    padding: 16px 24px;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--cvas-text);
    background: var(--cvas-white);
    outline: none;
    min-width: 0;
}

.newsletter-btn {
    padding: 16px 32px;
    background: var(--cvas-gold);
    color: var(--cvas-dark-navy);
    border: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: var(--cvas-dark-gold);
}

/* --- Section Heading (shared) --- */
.section-heading {
    text-align: center;
    margin-bottom: clamp(40px, 4vw, 60px);
}

.section-heading h2 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: clamp(28px, 3vw, 42px);
    text-transform: uppercase;
    margin-bottom: 16px;
    color: var(--cvas-text);
}

.section-subtitle {
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    color: var(--cvas-text-muted);
}

/* --- Page Hero Content (interior pages) --- */
.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 clamp(20px, 5vw, 60px);
}

.page-hero-content h1 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: clamp(36px, 5vw, 72px);
    text-transform: uppercase;
    color: var(--cvas-white);
    margin-bottom: 16px;
}

.page-hero-content p {
    font-size: clamp(14px, 1.5vw, 18px);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.page-hero-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.page-hero-breadcrumb a {
    color: var(--cvas-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-hero-breadcrumb a:hover {
    color: var(--cvas-dark-gold);
}

.page-hero-breadcrumb i {
    font-size: 10px;
    opacity: 0.5;
}

/* --- FAQ Tabs --- */
.faq-tab {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    background: transparent;
    transition: all 0.3s ease;
}

.faq-tab:hover,
.faq-tab.active {
    border-color: var(--cvas-gold);
    color: var(--cvas-gold);
    background: rgba(255, 203, 43, 0.1);
}


/* ============================================
   RESPONSIVE: HOMEPAGE & INTERIOR FIXES
   ============================================ */
@media (max-width: 1199px) {
    .performer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2)::after {
        display: none;
    }

    .involved-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .stem-section {
        grid-template-columns: 1fr;
    }

    .stem-visual {
        min-height: 300px;
    }

    .kidzone-section {
        grid-template-columns: 1fr;
    }

    .kidzone-visual {
        min-height: 300px;
    }

    .scout-section {
        grid-template-columns: 1fr;
    }

    .scout-visual {
        min-height: 300px;
    }
}

@media (max-width: 767px) {
    .performer-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .stat-item::after {
        display: none;
    }

    .involved-cards {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
        border-radius: 16px;
    }

    .newsletter-input {
        border-radius: 16px 16px 0 0;
    }

    .newsletter-btn {
        border-radius: 0 0 16px 16px;
        padding: 16px;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .hero-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .sponsor-tier-presenting .sponsor-logo-card { width: 220px; height: 90px; }
    .sponsor-tier-major .sponsor-logo-card { width: 190px; height: 80px; }
    .sponsor-tier-gold .sponsor-logo-card { width: 160px; height: 70px; }
    .sponsor-tier-blue .sponsor-logo-card { width: 140px; height: 60px; }
    .sponsor-tier-supporter .sponsor-logo-card { width: 130px; height: 55px; }
    .sponsor-logo-grid { gap: 0.75rem; }
    .sponsor-tier-banner img { max-height: 50px; }

    .photo-bleed-section {
        min-height: 550px;
    }

    .photo-bleed-content {
        padding: clamp(24px, 4vw, 40px) clamp(16px, 4vw, 32px);
    }

    .photo-bleed-title {
        font-size: clamp(28px, 6vw, 48px);
    }
}

@media (max-width: 479px) {
    .hero-title {
        font-size: clamp(36px, 10vw, 60px);
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* --- Hero Video Background --- */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 22, 59, 0.65) 0%, rgba(0, 40, 82, 0.45) 40%, rgba(42, 75, 110, 0.35) 100%);
    z-index: 1;
    pointer-events: none;
}

/* When video is present, disable the pseudo-element gradient */
.hero-fullscreen:has(.hero-video)::before {
    display: none;
}
.hero-fullscreen:has(.hero-video)::after {
    background: linear-gradient(to top, rgba(0, 22, 59, 0.7) 0%, transparent 50%);
}

/* --- Page Hero with Background Image --- */
.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Parallax disabled — fixed attachment breaks image positioning on large monitors */

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 22, 59, 0.85) 0%, rgba(0, 40, 82, 0.5) 50%, rgba(0, 22, 59, 0.3) 100%);
    z-index: 1;
    pointer-events: none;
}

/* When bg image is present, disable the default gradient pseudo */
.page-hero:has(.page-hero-bg)::after {
    background: transparent;
}

/* --- Photo Bleed with inline bg image --- */
.photo-bleed-section[style*="background-image"]::before {
    display: none; /* hide Ken Burns pseudo when using actual image */
}
.photo-bleed-section[style*="background-image"] {
    background-size: cover;
    background-position: center;
}

/* --- Dark Section Text Override --- */
/* Sections with dark backgrounds need white text */
.sponsors-section,
.stats-section,
.newsletter-section,
.photo-bleed-section,
.hero-fullscreen,
.page-hero,
.stem-content,
.section-dark {
    color: var(--cvas-white);
}

.stats-section .section-heading h2,
.newsletter-section .section-heading h2,
.section-dark .section-heading h2 {
    color: var(--cvas-white);
}

.stats-section .section-subtitle,
.newsletter-section .section-subtitle,
.section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.75);
}

/* --- Global: Force white text on any inline dark background --- */
[style*="background:#00163b"],
[style*="background: #00163b"],
[style*="background:#002852"],
[style*="background: #002852"],
[style*="background:linear-gradient(135deg,#00163b"],
[style*="background: linear-gradient(135deg,#00163b"],
[style*="background:linear-gradient(135deg, #00163b"],
[style*="background: linear-gradient(135deg, #00163b"] {
    color: var(--cvas-white);
}

[style*="background:#00163b"] h1,
[style*="background:#00163b"] h2,
[style*="background:#00163b"] h3,
[style*="background:#00163b"] p,
[style*="background:#002852"] h1,
[style*="background:#002852"] h2,
[style*="background:#002852"] h3,
[style*="background:#002852"] p,
[style*="background:linear-gradient(135deg,#00163b"] h1,
[style*="background:linear-gradient(135deg,#00163b"] h2,
[style*="background:linear-gradient(135deg,#00163b"] h3,
[style*="background:linear-gradient(135deg,#00163b"] p,
[style*="background:linear-gradient(135deg, #00163b"] h1,
[style*="background:linear-gradient(135deg, #00163b"] h2,
[style*="background:linear-gradient(135deg, #00163b"] h3,
[style*="background:linear-gradient(135deg, #00163b"] p {
    color: var(--cvas-white);
}
