/*
Theme Name: BYT Foundation
Theme URI: https://bytfoundation.org
Author: BYT Foundation
Description: Custom theme for Bellevue Youth Theatre Foundation
Version: 1.0
License: GNU General Public License v3.0 or later
License URI: https://www.gnu.org/licenses/gpl-3.0.html
*/

/* === VARIABLES === */
:root {
    --primary-plum: #5B2E7A;
    --secondary-gold: #D4A574;
    --accent-coral: #FF6B6B;
    --accent-teal: #2A7F7F;
    --light-cream: #FAF7F5;
    --warm-white: #FFFFFF;
    --warm-gray: #5A5556;
    --charcoal: #2D2327;

    --font-display: 'Playfair Display', serif;
    --font-body: 'DM Sans', sans-serif;

    --section-padding: clamp(60px, 10vw, 120px);
    --container-max: 1400px;
}

/* === RESET === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background: var(--light-cream);
    line-height: 1.6;
}

/* === NAVIGATION === */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(250, 247, 245, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(91, 46, 122, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--primary-plum);
}

.logo img {
    height: 60px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--warm-gray);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-plum);
}

.nav-links a.active {
    color: var(--primary-plum);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--secondary-gold);
    border-radius: 2px;
}

/* Nav Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    cursor: pointer;
}

.nav-dropdown-toggle::after {
    content: '';
    border: solid var(--warm-gray);
    border-width: 0 2px 2px 0;
    padding: 2px;
    transform: rotate(45deg);
    margin-top: -2px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle::after {
    border-color: var(--primary-plum);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(91, 46, 122, 0.15);
    padding: 0.75rem 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    margin-top: 0.5rem;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--charcoal) !important;
    font-size: 0.9rem;
    transition: background 0.2s ease;
}

.nav-dropdown-menu a:hover {
    background: var(--light-cream);
    color: var(--primary-plum) !important;
}

.nav-dropdown-menu .dropdown-divider {
    height: 1px;
    background: #E5E0DC;
    margin: 0.5rem 0;
}

.nav-dropdown-menu .dropdown-label {
    padding: 0.5rem 1.25rem 0.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-teal);
}

.btn-nav-donate {
    background: var(--accent-coral);
    color: white !important;
    padding: 0.75rem 1.75rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-nav-donate:hover {
    background: #ff5252;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 107, 0.3);
}

/* === MOBILE MENU === */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-plum);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250, 247, 245, 0.98);
    backdrop-filter: blur(10px);
    z-index: 999;
    padding-top: 100px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
}

.mobile-menu a {
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 600;
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--primary-plum);
}

.mobile-menu .btn-nav-donate {
    margin-top: 1rem;
}

/* === HERO - HOMEPAGE (with carousel) === */
.hero-home {
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-plum) 0%, #7a4a9e 100%);
    padding: calc(110px + 100px) 2rem 100px;
}

.hero-home::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.2) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-30px, 30px) rotate(5deg); }
}

.hero-home .hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    color: white;
}

.hero-home h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5.6vw, 4.8rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1.2rem;
    letter-spacing: -0.03em;
}

.hero-tagline {
    font-size: clamp(1.2rem, 2.4vw, 1.6rem);
    font-family: var(--font-display);
    font-style: italic;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.hero-description {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: var(--accent-coral);
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(255, 107, 107, 0.3);
}

.btn-hero-primary:hover {
    background: #ff5252;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(255, 107, 107, 0.4);
}

.btn-hero-secondary {
    background: transparent;
    color: white;
    border: 3px solid white;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: white;
    color: var(--primary-plum);
    transform: translateY(-4px);
}

.hero-image {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 4px solid rgba(212, 165, 116, 0.3);
    position: relative;
}

.hero-carousel {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-carousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    animation: carousel-fade 27s infinite;
}

.hero-carousel img:nth-child(1) { animation-delay: 0s; }
.hero-carousel img:nth-child(2) { animation-delay: 3s; }
.hero-carousel img:nth-child(3) { animation-delay: 6s; }
.hero-carousel img:nth-child(4) { animation-delay: 9s; }
.hero-carousel img:nth-child(5) { animation-delay: 12s; }
.hero-carousel img:nth-child(6) { animation-delay: 15s; }
.hero-carousel img:nth-child(7) { animation-delay: 18s; }
.hero-carousel img:nth-child(8) { animation-delay: 21s; }
.hero-carousel img:nth-child(9) { animation-delay: 24s; }

@keyframes carousel-fade {
    0% { opacity: 0; }
    2% { opacity: 1; }
    9% { opacity: 1; }
    11.1% { opacity: 0; }
    100% { opacity: 0; }
}

/* === HERO - INNER PAGES (centered, no image) === */
.hero-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-plum) 0%, #7a4a9e 100%);
    padding: calc(80px + 5rem) 2rem 5rem;
}

.hero-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.2) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.hero-inner .hero-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.hero-inner h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.hero-inner .hero-tagline {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-style: normal;
    margin-bottom: 0;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Donate hero is taller */
.hero-donate {
    min-height: 40vh;
    padding: calc(80px + 3rem) 2rem 3rem;
}

.hero-donate h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    margin-bottom: 1.5rem;
}

.hero-donate .hero-tagline {
    font-size: clamp(1.3rem, 2.5vw, 1.75rem);
    font-style: italic;
    margin-bottom: 2rem;
}

.hero-donate .hero-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.btn-hero {
    background: var(--accent-coral);
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 8px 24px rgba(255, 107, 107, 0.3);
}

.btn-hero:hover {
    background: #ff5252;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(255, 107, 107, 0.4);
}

/* Shop/Photos hero with negative bottom margin */
.hero-overlap .hero-container {
    margin-bottom: -20px;
}

/* === SHOW LOGO HERO (swag pages) === */
.show-logo {
    width: 280px;
    height: auto;
    margin: 0 auto 1.5rem;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    background: white;
    padding: 20px;
    display: block;
}

/* === DEADLINE BANNER === */
.deadline-banner {
    background: linear-gradient(90deg, var(--accent-coral), #ff5252);
    color: white;
    text-align: center;
    padding: 1rem 2rem;
    font-weight: 700;
    font-size: 1.1rem;
    position: sticky;
    top: 93px;
    z-index: 900;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.deadline-banner span {
    background: white;
    color: var(--accent-coral);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    margin-left: 0.5rem;
    font-size: 0.95rem;
}

/* === SECTION UTILITIES === */
.section {
    padding: var(--section-padding) 2rem;
}

.section-alt {
    background: white;
}

.section-dark {
    background: var(--charcoal);
    color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header.mb-4 {
    margin-bottom: 4rem;
}

.section-label {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-teal);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--primary-plum);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-dark .section-title {
    color: white;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--warm-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

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

/* === PURPOSE SECTION (Homepage) === */
.purpose {
    padding: clamp(60px, 10vw, 120px) 2rem;
    background: white;
}

.purpose-container {
    max-width: 1400px;
    margin: 0 auto;
}

.purpose .section-header {
    margin-bottom: 4rem;
}

.purpose .section-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
}

.purpose .section-subtitle {
    font-size: 1.2rem;
}

.purpose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.purpose-card {
    background: var(--light-cream);
    padding: 3rem;
    border-radius: 20px;
    border-left: 6px solid var(--secondary-gold);
    transition: all 0.4s ease;
    position: relative;
}

.purpose-card:hover {
    transform: translateY(-12px) rotate(-1deg);
    box-shadow: 0 20px 48px rgba(91, 46, 122, 0.15);
    border-left-color: var(--accent-coral);
}

.purpose-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    color: var(--secondary-gold);
    line-height: 1;
    margin-bottom: 1.5rem;
    opacity: 0.3;
}

.purpose-card h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-plum);
    margin-bottom: 1rem;
}

.purpose-card p {
    color: var(--warm-gray);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* === SHOWS SECTION (Homepage) === */
.shows {
    padding: clamp(60px, 10vw, 120px) 2rem;
    background: linear-gradient(135deg, var(--charcoal) 0%, #1a1516 100%);
    color: white;
}

.shows-container {
    max-width: 1400px;
    margin: 0 auto;
}

.shows-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.shows-info h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.shows-info p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-tickets {
    background: var(--accent-coral);
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-tickets:hover {
    background: #ff5252;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(255, 107, 107, 0.4);
}

.shows-image {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid rgba(212, 165, 116, 0.2);
}

.shows-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* === CTA SECTIONS === */
.cta {
    padding: clamp(60px, 10vw, 120px) 2rem;
    background: linear-gradient(135deg, var(--primary-plum) 0%, #7a4a9e 100%);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 165, 116, 0.15) 0%, transparent 60%);
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: white;
    color: var(--primary-plum);
    padding: 1.5rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-white:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 32px rgba(255, 255, 255, 0.3);
}

/* Board CTA (dark background) */
.cta-section {
    background: linear-gradient(135deg, var(--charcoal) 0%, #1a1516 100%);
    color: white;
    padding: var(--section-padding) 2rem;
}

.cta-section .cta-container {
    max-width: 800px;
}

.cta-section h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-section p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-cta {
    background: var(--accent-coral);
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: #ff5252;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(255, 107, 107, 0.4);
}

/* === BOARD PAGE === */
.board-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.board-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 16px rgba(91, 46, 122, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.board-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(91, 46, 122, 0.15);
    border-color: var(--secondary-gold);
}

.board-card.executive {
    border-left: 4px solid var(--secondary-gold);
}

.board-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-plum), #7a4a9e);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
}

.board-card.executive .board-avatar {
    background: linear-gradient(135deg, var(--secondary-gold), #c49463);
}

.board-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.board-role {
    font-size: 0.95rem;
    color: var(--accent-teal);
    font-weight: 600;
}

.board-card.executive .board-role {
    color: var(--secondary-gold);
}

/* === DONATE PAGE === */
.stats-section {
    background: white;
    padding: var(--section-padding) 2rem;
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, var(--light-cream), white);
}

.stats-container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
    position: relative;
}

.stat-item {
    padding: 2rem;
    position: relative;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 6vw, 5rem);
    font-weight: 900;
    color: var(--secondary-gold);
    line-height: 1;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(212, 165, 116, 0.1);
}

.stat-label {
    font-size: 1.1rem;
    color: var(--warm-gray);
    font-weight: 500;
}

.giving-section {
    padding: var(--section-padding) 2rem;
    background: var(--light-cream);
}

.giving-grid {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.giving-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    position: relative;
    transition: all 0.4s ease;
    border: 3px solid transparent;
    box-shadow: 0 8px 24px rgba(91, 46, 122, 0.08);
}

.giving-card:hover {
    transform: translateY(-12px);
    border-color: var(--secondary-gold);
    box-shadow: 0 20px 48px rgba(91, 46, 122, 0.15);
}

.giving-card.featured {
    border-color: var(--accent-coral);
    background: linear-gradient(135deg, #fff5f5 0%, white 100%);
    transform: scale(1.05);
}

.giving-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-coral);
    color: white;
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.giving-amount {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-plum);
    line-height: 1;
    margin-bottom: 1rem;
}

.giving-name {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.giving-impact {
    color: var(--warm-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.btn-give {
    background: var(--accent-coral);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: block;
    text-align: center;
}

.btn-give:hover {
    background: #ff5252;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
}

.custom-section {
    background: linear-gradient(135deg, var(--primary-plum) 0%, #7a4a9e 100%);
    padding: var(--section-padding) 2rem;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.custom-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 165, 116, 0.15) 0%, transparent 60%);
}

.custom-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.custom-container h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.custom-container p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.btn-custom {
    background: white;
    color: var(--primary-plum);
    padding: 1.5rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-custom:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(255, 255, 255, 0.3);
}

.workplace-section {
    padding: var(--section-padding) 2rem;
    background: white;
}

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

.company-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.company-badge {
    background: var(--light-cream);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    color: var(--charcoal);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.company-badge:hover {
    border-color: var(--secondary-gold);
    transform: translateY(-4px);
}

.faq-section {
    padding: var(--section-padding) 2rem;
    background: var(--light-cream);
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 2.5rem;
    margin-bottom: 1.5rem;
    border-radius: 16px;
    border-left: 6px solid var(--accent-teal);
    box-shadow: 0 4px 16px rgba(91, 46, 122, 0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(91, 46, 122, 0.12);
}

.faq-question {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-plum);
    margin-bottom: 1rem;
}

.faq-answer {
    color: var(--warm-gray);
    line-height: 1.8;
    font-size: 1.05rem;
}

.faq-answer ul {
    margin-top: 1rem;
    padding-left: 2rem;
}

.faq-answer li {
    margin-bottom: 0.75rem;
}

.sponsors-section {
    background: var(--charcoal);
    color: white;
    padding: var(--section-padding) 2rem;
    text-align: center;
}

.sponsor-box {
    max-width: 600px;
    margin: 3rem auto 0;
    background: rgba(212, 165, 116, 0.1);
    padding: 3rem;
    border-radius: 20px;
    border: 3px solid var(--secondary-gold);
}

.sponsor-label {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-gold);
    margin-bottom: 1rem;
}

.sponsor-name {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
}

.footer-note {
    background: var(--light-cream);
    padding: 2rem;
    text-align: center;
    color: var(--warm-gray);
    font-size: 0.9rem;
}

.footer-note a {
    color: var(--accent-teal);
    text-decoration: none;
    font-weight: 600;
}

/* === SHOP PAGE === */
.byt-shop .product-grid {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 3rem;
}

.byt-shop .product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(91, 46, 122, 0.1);
    transition: all 0.4s ease;
    border: 3px solid transparent;
    position: relative;
}

.byt-shop .product-card:hover {
    transform: translateY(-12px) rotate(-1deg);
    box-shadow: 0 20px 48px rgba(91, 46, 122, 0.2);
    border-color: var(--secondary-gold);
}

.product-image {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, var(--light-cream), #E5E7EB);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    position: relative;
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-coral);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.product-badge.new {
    background: var(--accent-teal);
}

.byt-shop .product-info {
    padding: 2.5rem;
}

.product-category {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-teal);
    margin-bottom: 0.75rem;
}

.byt-shop .product-name {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-plum);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.product-description {
    color: var(--warm-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.byt-shop .product-price {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--secondary-gold);
    margin-bottom: 1.5rem;
}

.byt-shop .product-price small {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--warm-gray);
}

.btn-shop {
    background: var(--accent-coral);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: block;
    text-align: center;
}

.btn-shop:hover {
    background: #ff5252;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-plum);
    border: 3px solid var(--primary-plum);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: block;
    text-align: center;
}

.btn-secondary:hover {
    background: var(--primary-plum);
    color: white;
    transform: translateY(-3px);
}

/* Show Cards (light) */
.show-grid-light {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.show-card-light {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    border: 3px solid transparent;
    border-left: 6px solid var(--primary-plum);
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    box-shadow: 0 4px 16px rgba(91, 46, 122, 0.08);
}

.show-card-light:hover {
    transform: translateY(-8px);
    border-color: var(--secondary-gold);
    box-shadow: 0 12px 32px rgba(91, 46, 122, 0.15);
}

.show-card-light .show-season {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-teal);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.show-card-light .show-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-plum);
}

.show-card-light .show-subtitle {
    color: var(--warm-gray);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Show Cards (dark, for archive) */
.show-grid {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.show-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 16px;
    border-left: 6px solid var(--secondary-gold);
    transition: all 0.3s ease;
}

.show-card:hover {
    transform: translateX(12px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.show-season {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-teal);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.show-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.show-links {
    display: flex;
    gap: 1rem;
}

.show-link {
    flex: 1;
    padding: 0.75rem;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    transition: all 0.2s;
}

.show-link.photos {
    background: rgba(212, 165, 116, 0.2);
    color: var(--secondary-gold);
}

.show-link.photos:hover {
    background: var(--secondary-gold);
    color: var(--charcoal);
}

.show-link.recording {
    background: var(--accent-coral);
    color: white;
}

.show-link.recording:hover {
    background: #ff5252;
}

/* Legacy Feature */
.legacy-feature {
    background: linear-gradient(135deg, var(--primary-plum) 0%, #7a4a9e 100%);
    padding: var(--section-padding) 2rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.legacy-feature::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.15) 0%, transparent 70%);
}

.legacy-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.legacy-image {
    width: 100%;
    height: 450px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    border: 4px solid rgba(212, 165, 116, 0.3);
}

.legacy-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.legacy-content p {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.legacy-price {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--secondary-gold);
    margin-bottom: 2rem;
}

/* Help Section */
.help-section {
    background: var(--light-cream);
    padding: 3rem 2rem;
    text-align: center;
}

.help-section h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--primary-plum);
    margin-bottom: 1rem;
}

.help-section a {
    color: var(--accent-teal);
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
}

/* === PHOTOS PAGE === */
.info-box {
    max-width: 800px;
    margin: 0 auto 4rem;
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    border-left: 6px solid var(--accent-teal);
    box-shadow: 0 4px 16px rgba(91, 46, 122, 0.08);
}

.info-box p {
    margin-bottom: 1rem;
    color: var(--warm-gray);
    line-height: 1.7;
}

.info-box p:last-child {
    margin-bottom: 0;
}

.price-highlight {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-plum);
    margin-top: 1rem;
}

.shows-grid {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.show-photo-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid transparent;
    box-shadow: 0 4px 12px rgba(91, 46, 122, 0.08);
    transition: all 0.3s ease;
}

.show-photo-card:hover {
    border-color: var(--secondary-gold);
    box-shadow: 0 8px 24px rgba(91, 46, 122, 0.12);
    transform: translateY(-4px);
}

.show-photo-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-plum);
    margin-bottom: 1.5rem;
}

.show-photo-card label {
    display: block;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.show-photo-card input[type="email"] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.show-photo-card input[type="email"]:focus {
    outline: none;
    border-color: var(--primary-plum);
}

.show-photo-card button {
    width: 100%;
    margin-top: 1rem;
    background: var(--accent-coral);
    color: white;
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.show-photo-card button:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

/* === SWAG PAGES === */
.byt-swag .product-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
}

.byt-swag .product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(91, 46, 122, 0.1);
    transition: all 0.4s ease;
    border: 3px solid transparent;
    display: flex;
    flex-direction: column;
}

.byt-swag .product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(91, 46, 122, 0.18);
    border-color: var(--secondary-gold);
}

.byt-swag .product-card.featured {
    border-color: var(--accent-coral);
    position: relative;
}

.byt-swag .product-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--accent-coral);
    color: white;
    padding: 0.5rem 2.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(45deg);
    z-index: 1;
}

.product-icon {
    width: 100%;
    height: 160px;
    background: linear-gradient(135deg, var(--light-cream), #E8E4E1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.product-icon.tshirt { background: linear-gradient(135deg, #E8D5F0, #D4C4E0); }
.product-icon.candy { background: linear-gradient(135deg, #FFE4E4, #FFD0D0); }
.product-icon.photo { background: linear-gradient(135deg, #D5EEE8, #C4E0DA); }
.product-icon.video { background: linear-gradient(135deg, #E8E4D5, #E0DCC4); }
.product-icon.treat { background: linear-gradient(135deg, #FFE8D5, #FFD9C0); }

.byt-swag .product-info {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.byt-swag .product-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-plum);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.byt-swag .product-description {
    color: var(--warm-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    flex: 1;
}

.product-details {
    background: var(--light-cream);
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.product-details li {
    margin-bottom: 0.5rem;
    color: var(--warm-gray);
    list-style: none;
    padding-left: 1.5rem;
    position: relative;
}

.product-details li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--accent-teal);
    font-weight: 700;
}

.product-details li:last-child {
    margin-bottom: 0;
}

.byt-swag .product-price {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--secondary-gold);
    margin-bottom: 1rem;
}

.byt-swag .product-price small {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--warm-gray);
}

/* Swag Forms */
.product-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--charcoal);
}

.form-group select,
.form-group input,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 2px solid #E5E0DC;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.form-group select:focus,
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-plum);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.char-count {
    font-size: 0.75rem;
    color: var(--warm-gray);
    text-align: right;
}

.btn-buy {
    background: var(--accent-coral);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-body);
}

.btn-buy:hover {
    background: #ff5252;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
}

.btn-buy svg {
    width: 20px;
    height: 20px;
}

/* Treat Card (special full-width swag card) */
.treat-card {
    background: linear-gradient(135deg, var(--primary-plum) 0%, #7a4a9e 100%);
    color: white;
    grid-column: 1 / -1;
    max-width: 700px;
    margin: 1rem auto 0;
}

.treat-card .product-icon {
    background: rgba(255, 255, 255, 0.1);
}

.treat-card .product-name {
    color: white !important;
}

.treat-card .product-description {
    color: rgba(255, 255, 255, 0.9) !important;
}

.treat-card .product-details {
    background: rgba(255, 255, 255, 0.1);
}

.treat-card .product-details li {
    color: rgba(255, 255, 255, 0.9);
}

.treat-card .product-details li::before {
    color: var(--secondary-gold);
}

.treat-card .product-price {
    color: var(--secondary-gold) !important;
}

.treat-card .product-price small {
    color: rgba(255, 255, 255, 0.8) !important;
}

.treat-card .btn-buy {
    background: white;
    color: var(--primary-plum);
}

.treat-card .btn-buy:hover {
    background: var(--secondary-gold);
    color: var(--charcoal);
}

/* Swag Info Bar */
.info-section {
    background: var(--charcoal);
    color: white;
    padding: 3rem 2rem;
}

.info-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.info-item h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-gold);
}

.info-item p {
    opacity: 0.9;
    font-size: 0.95rem;
}

/* === FOOTER - FULL === */
footer {
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-about h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
}

.footer-about p {
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(212, 165, 116, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-gold);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary-gold);
    color: var(--charcoal);
    transform: translateY(-4px);
}

.footer-section h4 {
    color: white;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
}

/* === FOOTER - SIMPLE === */
.footer-simple {
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.8);
    padding: 3rem 2rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-simple .footer-container {
    text-align: center;
}

.footer-simple .footer-container p {
    margin-bottom: 0.5rem;
}

.footer-links {
    margin-top: 1rem;
}

.footer-links a {
    color: var(--secondary-gold);
    text-decoration: none;
    margin: 0 1rem;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.8;
}

/* === RESPONSIVE === */
@media (min-width: 969px) {
    .hero-home {
        padding: calc(90px + 100px) 2rem 100px;
    }

    .purpose,
    .shows,
    .cta {
        padding: 100px 2rem;
    }
}

@media (max-width: 968px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    /* Homepage hero */
    .hero-home {
        padding: calc(80px + 2rem + 20px) 1.5rem calc(2rem + 20px);
    }

    .hero-home .hero-container,
    .shows-content {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        gap: 0.75rem;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
        flex: 1;
        text-align: center;
    }

    .hero-image {
        height: 300px;
    }

    /* Deadline banner */
    .deadline-banner {
        top: 81px;
        font-size: 0.95rem;
        padding: 0.75rem 1rem;
    }

    .deadline-banner span {
        display: block;
        margin: 0.5rem auto 0;
    }

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

    .board-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }

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

    .giving-card.featured {
        transform: scale(1);
    }

    .legacy-container {
        grid-template-columns: 1fr;
    }

    .byt-shop .product-grid,
    .show-grid,
    .show-grid-light,
    .shows-grid {
        grid-template-columns: 1fr;
    }

    .byt-swag .product-grid {
        grid-template-columns: 1fr;
    }

    .treat-card {
        grid-column: 1;
    }

    .show-logo {
        width: 200px;
    }
}
