/*
Theme Name: BYTF 2026
Theme URI: https://bytfoundation.org
Author: Matt Gamboa
Description: Custom theme for Bellevue Youth Theatre Foundation
Version: 1.4
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: 77px;
    width: auto;
    display: block;
}

/* Logo variants: wide on desktop, square on mobile */
.logo img.logo-square {
    display: none !important;
}

.logo img.logo-wide {
    display: block !important;
}

@media (max-width: 968px) {
    .logo img.logo-square {
        display: block !important;
        height: 50px;
    }

    .logo img.logo-wide {
        display: none !important;
    }
}

.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:not(.nav-dropdown-toggle):not(.btn-nav-donate)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--secondary-gold);
    border-radius: 2px;
}

/* Active underline for dropdown toggles - use ::before to avoid conflict with arrow */
.nav-dropdown-toggle.active::before {
    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);
}

/* Support dropdown button */
.btn-nav-donate.nav-dropdown-toggle::after {
    border-color: white;
    margin-left: 0.5rem;
}

.nav-dropdown:hover .btn-nav-donate.nav-dropdown-toggle::after {
    border-color: white;
}

/* === 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: 1.25rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero-donate h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

.hero-donate .hero-tagline {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-style: normal;
    margin-bottom: 1.25rem;
}

.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-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    margin: 0 auto 1.25rem;
    display: block;
}

.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) 4rem;
    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(3, 1fr);
    gap: 3rem;
    text-align: center;
    position: relative;
    justify-items: center;
}

.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);
    border: 2px solid transparent;
}

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

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

.faq-item {
    background: white;
    padding: 1.5rem 2rem;
    margin-bottom: 1rem;
    border-radius: 12px;
    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.2rem;
    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;
    align-items: start;
}

.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 - Collapsible */
.product-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.product-form .form-fields {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease;
}

.product-form .form-fields-inner {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.product-form.form-open .form-fields {
    grid-template-rows: 1fr;
}

.product-form.form-open .form-fields-inner {
    padding-top: 0.25rem;
}

.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;
}

/* Product Group Sections */
.product-group {
    margin-bottom: 3rem;
}

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

.product-group-header {
    max-width: 1200px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.product-group-header::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, var(--secondary-gold), transparent);
}

.product-group-icon {
    font-size: 4rem;
    line-height: 1;
}

.product-group-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-plum);
    white-space: nowrap;
}

.product-group-subtitle {
    max-width: 1200px;
    margin: -1rem auto 1.5rem;
    font-size: 0.9rem;
    color: var(--warm-gray);
    padding-left: 2.75rem;
}

/* Treat Card (same size as other cards, purple gradient) */
.byt-swag .product-card.treat-card {
    background: linear-gradient(135deg, var(--primary-plum) 0%, #7a4a9e 100%) !important;
    color: white;
}

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

.byt-swag .product-card.treat-card .product-name {
    color: white;
}

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

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

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

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

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

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

.byt-swag .product-card.treat-card .form-group label {
    color: rgba(255, 255, 255, 0.9);
}

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

.byt-swag .product-card.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 + 2.5rem) 1.25rem 2rem;
    }

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

    .hero-home h1 {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .hero-tagline {
        font-size: 1rem;
        margin-bottom: 0.875rem;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }

    .hero-buttons {
        gap: 0.75rem;
    }

    .btn-hero-primary,
    .btn-hero-secondary,
    .btn-white,
    .btn-tickets {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .hero-image {
        height: 220px;
    }

    /* Purpose */
    .purpose {
        padding: 2.5rem 1.25rem;
    }

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

    .purpose .section-title {
        font-size: 1.9rem;
        margin-bottom: 0.75rem;
    }

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

    .purpose-grid {
        gap: 1.25rem;
        margin-top: 0;
    }

    .purpose-card {
        padding: 1.5rem 1.25rem;
    }

    .purpose-number {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }

    .purpose-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .purpose-card p {
        font-size: 0.95rem;
    }

    /* Shows */
    .shows {
        padding: 2.5rem 1.25rem;
    }

    .shows-info h2 {
        font-size: 1.9rem;
        margin-bottom: 1rem;
    }

    .shows-info p {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }

    .shows-image {
        height: 220px;
    }

    /* Newsletter section */
    .section {
        padding: 2.5rem 1.25rem;
    }

    /* CTA */
    .cta {
        padding: 2.5rem 1.25rem;
    }

    .cta h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .cta p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .cta-buttons {
        gap: 0.75rem;
        flex-direction: column;
        align-items: stretch;
    }

    /* 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;
    }

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

/* ============================================
   NEW PAGE STYLES - Shows & Photos, Our Story
   ============================================ */

/* === MOBILE SUBMENU === */
.mobile-sub {
    font-size: 1rem;
    opacity: 0.7;
}

.mobile-sub a::before {
    content: "– ";
}

/* === QUICK NAVIGATION (Shows & Photos) === */
.quick-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.quick-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 2rem;
    background: white;
    border-radius: 16px;
    text-decoration: none;
    color: var(--charcoal);
    box-shadow: 0 4px 16px rgba(91, 46, 122, 0.08);
    transition: all 0.3s ease;
    min-width: 140px;
}

.quick-nav-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(91, 46, 122, 0.15);
    color: var(--primary-plum);
}

.quick-nav-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.quick-nav-label {
    font-weight: 600;
    font-size: 0.95rem;
}

/* === CURRENT SHOWS GRID === */
.current-shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.current-show-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(91, 46, 122, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.current-show-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(91, 46, 122, 0.15);
}

.current-show-image {
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    position: relative;
    background: linear-gradient(135deg, #f8f6f4, #ebe7e3);
}

.current-show-image .show-logo-img {
    max-height: 100px;
    max-width: 80%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.show-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--charcoal);
}

.current-show-content {
    padding: 1.5rem;
}

.current-show-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--primary-plum);
    margin-bottom: 0.5rem;
}

.show-dates {
    color: var(--accent-teal);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.show-description {
    color: var(--warm-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

/* === SHOW BLOCK (single show, multiple casts) === */
.show-block {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(91, 46, 122, 0.1);
    transition: box-shadow 0.3s ease;
}

.show-block:hover {
    box-shadow: 0 16px 40px rgba(91, 46, 122, 0.15);
}

.show-block-intro {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, #f8f6f4, #ebe7e3);
}

.show-block-logo {
    max-height: 120px;
    max-width: 180px;
    width: auto;
    flex-shrink: 0;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.show-block-info h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--primary-plum);
    margin-bottom: 0.5rem;
}

.show-block-info .show-description {
    margin-bottom: 0;
}

.cast-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(91, 46, 122, 0.1);
}

.cast-card {
    padding: 1.75rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
}

.cast-card + .cast-card {
    border-left: 1px solid rgba(91, 46, 122, 0.1);
}

.cast-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--primary-plum);
    margin: 0;
}

.cast-badge {
    background: var(--light-cream);
    border: 1px solid rgba(91, 46, 122, 0.15);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--charcoal);
}

/* === PHOTO SEARCH === */
.photo-search-container {
    max-width: 500px;
    margin: 0 auto 2rem;
}

.photo-search {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border: 2px solid rgba(91, 46, 122, 0.2);
    border-radius: 50px;
    background: white;
    font-family: var(--font-body);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.photo-search:focus {
    outline: none;
    border-color: var(--primary-plum);
    box-shadow: 0 0 0 4px rgba(91, 46, 122, 0.1);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* === RECORDINGS GRID === */
.recordings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.recording-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(91, 46, 122, 0.08);
    transition: all 0.3s ease;
}

.recording-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(91, 46, 122, 0.12);
}

.recording-thumbnail {
    height: 140px;
    background: linear-gradient(135deg, var(--primary-plum), #7a4a9e);
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    transition: transform 0.3s ease, background 0.3s ease;
}

.recording-card:hover .play-icon {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

.recording-info {
    padding: 1.5rem;
}

.recording-info h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--primary-plum);
    margin-bottom: 0.25rem;
}

.recording-meta {
    color: var(--warm-gray);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.recording-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-teal);
    margin-bottom: 1rem;
}

/* === ARCHIVE STATS === */
.archive-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.archive-stat {
    text-align: center;
}

.archive-stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--secondary-gold);
    line-height: 1.2;
}

.archive-stat-label {
    font-size: 1rem;
    color: var(--warm-gray);
    font-weight: 600;
}

/* === ARCHIVE DECADES === */
.archive-decades {
    max-width: 900px;
    margin: 0 auto;
}

.decade-section {
    margin-bottom: 2.5rem;
}

.decade-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--primary-plum);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--secondary-gold);
    display: inline-block;
}

.decade-shows {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.decade-shows span {
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--charcoal);
    box-shadow: 0 2px 8px rgba(91, 46, 122, 0.06);
}

/* === OUR STORY - IMPACT STATS === */
.impact-stats-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.impact-stat {
    text-align: center;
    padding: 1.5rem 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(91, 46, 122, 0.08);
    min-width: 180px;
}

.impact-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--secondary-gold);
    line-height: 1.2;
}

.impact-label {
    font-size: 0.9rem;
    color: var(--warm-gray);
    font-weight: 600;
    margin-top: 0.25rem;
}

/* === STORY INTRO === */
.story-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.lead-text {
    font-size: 1.35rem;
    line-height: 1.8;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.story-intro p {
    color: var(--warm-gray);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* === FEATURED QUOTE === */
.featured-quote {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.featured-quote .quote-mark {
    font-family: var(--font-display);
    font-size: 6rem;
    color: var(--secondary-gold);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: -2rem;
}

.featured-quote blockquote {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-style: italic;
    color: var(--primary-plum);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.featured-quote .quote-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.author-info {
    text-align: left;
}

.author-name {
    display: block;
    font-weight: 700;
    color: var(--charcoal);
}

.author-title {
    font-size: 0.9rem;
    color: var(--accent-teal);
}

/* === STORY TIMELINE === */
.story-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--secondary-gold), var(--primary-plum), var(--accent-teal), var(--accent-coral));
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-left {
    flex-direction: row;
}

.timeline-right {
    flex-direction: row-reverse;
}

.timeline-year {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 900;
    color: white;
    flex-shrink: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.timeline-content {
    width: calc(50% - 60px);
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(91, 46, 122, 0.1);
}

.timeline-left .timeline-content {
    margin-right: auto;
    text-align: right;
    border-right: 4px solid var(--secondary-gold);
}

.timeline-right .timeline-content {
    margin-left: auto;
    text-align: left;
    border-left: 4px solid var(--secondary-gold);
}

.timeline-content h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--primary-plum);
    margin-bottom: 0.75rem;
}

.timeline-content p {
    color: var(--warm-gray);
    line-height: 1.7;
}

.timeline-features {
    margin-top: 1rem;
    padding-left: 1.25rem;
    text-align: left;
}

.timeline-features li {
    color: var(--warm-gray);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* === TESTIMONIALS GRID === */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(91, 46, 122, 0.1);
    position: relative;
}

.testimonial-card .testimonial-quote {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--secondary-gold);
    opacity: 0.4;
    line-height: 1;
    margin-bottom: -1rem;
}

.testimonial-card blockquote {
    color: var(--warm-gray);
    font-size: 1rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* === SOCIAL CONNECT === */
.social-connect {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.social-connect p {
    color: var(--warm-gray);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.social-link {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.social-facebook {
    background: var(--primary-plum);
}

.social-youtube {
    background: var(--accent-coral);
}

.social-instagram {
    background: linear-gradient(135deg, #833AB4, #FD1D1D, #FCAF45);
}

/* === MORE WAYS TO GIVE (Donate Page) === */
.more-ways-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.giving-method-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(91, 46, 122, 0.08);
}

.giving-method-header {
    padding: 1.5rem 2rem;
    border-left: 6px solid var(--secondary-gold);
    background: white;
}

.giving-method-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-teal);
    margin-bottom: 0.5rem;
}

.giving-method-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--primary-plum);
    margin: 0;
}

.giving-method-content {
    padding: 1.5rem 2rem 2rem;
}

.giving-method-content p {
    color: var(--warm-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.giving-method-steps {
    background: var(--light-cream);
    padding: 1.5rem;
    border-radius: 12px;
}

.giving-method-steps h4 {
    font-size: 1rem;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
}

.giving-method-steps ol {
    padding-left: 1.25rem;
    color: var(--warm-gray);
    line-height: 1.9;
}

.giving-method-steps a {
    color: var(--accent-teal);
    font-weight: 600;
}

/* === BUTTONS === */
.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--accent-coral);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #e55555;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.btn-secondary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--primary-plum);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-secondary:hover {
    background: #4a2565;
    transform: translateY(-2px);
}

.btn-outline-white {
    display: inline-block;
    padding: calc(1.5rem - 2px) calc(3rem - 2px);
    background: transparent;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    border: 2px solid white;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary-plum);
}

/* === RESPONSIVE - NEW COMPONENTS === */
@media (max-width: 768px) {
    .stats-section {
        padding: var(--section-padding) 2rem;
    }

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

    .quick-nav {
        gap: 1rem;
    }

    .quick-nav-item {
        padding: 1rem 1.25rem;
        min-width: 120px;
    }

    .quick-nav-icon {
        font-size: 1.5rem;
    }

    .current-shows-grid {
        grid-template-columns: 1fr;
    }

    .show-block-intro {
        flex-direction: column;
        text-align: center;
        padding: 1.75rem 1.5rem;
    }

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

    .cast-card + .cast-card {
        border-left: none;
        border-top: 1px solid rgba(91, 46, 122, 0.1);
    }

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

    .archive-stats {
        gap: 1.5rem;
    }

    .archive-stat-number {
        font-size: 2.25rem;
    }

    .impact-stats-row {
        gap: 1rem;
    }

    .impact-stat {
        padding: 1rem 1.5rem;
        min-width: 140px;
    }

    .impact-number {
        font-size: 2rem;
    }

    .story-timeline::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: column !important;
        padding-left: 80px;
    }

    .timeline-year {
        left: 30px;
        width: 60px;
        height: 60px;
        font-size: 0.9rem;
    }

    .timeline-content {
        width: 100% !important;
        text-align: left !important;
        border-left: 4px solid var(--secondary-gold) !important;
        border-right: none !important;
    }

    .featured-quote blockquote {
        font-size: 1.35rem;
    }

    .featured-quote .quote-mark {
        font-size: 4rem;
    }

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

    .more-ways-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   CONSOLIDATED SHOP PAGE STYLES
   ============================================ */

/* === SHOP QUICK NAV === */
.shop-quick-nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.shop-nav-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 3rem 2rem;
    background: white;
    border-radius: 20px;
    text-decoration: none;
    color: var(--charcoal);
    box-shadow: 0 4px 16px rgba(91, 46, 122, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.shop-nav-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(91, 46, 122, 0.15);
    border-color: var(--primary-plum);
}

.shop-nav-icon {
    font-size: 5rem;
    line-height: 1;
}

.shop-nav-text {
    display: flex;
    flex-direction: column;
}

.shop-nav-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-plum);
}

.shop-nav-desc {
    font-size: 0.9rem;
    color: var(--warm-gray);
    margin-top: 0.25rem;
}

/* === SEASON SHOWS GRID === */
.season-shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.season-show-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(91, 46, 122, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.season-show-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(91, 46, 122, 0.15);
}

.season-show-header {
    padding: 1.5rem;
    color: white;
    position: relative;
}

.season-show-header .show-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--charcoal);
}

.season-show-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.season-show-header .show-dates {
    font-size: 0.9rem;
    opacity: 0.9;
}

.season-show-content {
    padding: 1.5rem;
}

.season-show-content > p {
    color: var(--warm-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

/* === SHOW ACTION BUTTONS === */
.season-show-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.9rem;
    background: var(--light-cream);
    color: var(--charcoal);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s ease;
    border: 1px solid rgba(91, 46, 122, 0.1);
}

.action-btn:hover {
    background: var(--primary-plum);
    color: white;
    border-color: var(--primary-plum);
}

.action-btn.action-primary {
    background: var(--primary-plum);
    color: white;
    border-color: var(--primary-plum);
}

.action-btn.action-primary:hover {
    background: #4a2565;
}

.action-icon {
    font-size: 1rem;
}

/* === MEMORIES PRODUCTS === */
.memories-products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.memory-product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 16px;
    text-decoration: none;
    color: var(--charcoal);
    box-shadow: 0 4px 16px rgba(91, 46, 122, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
}

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

.memory-product-card.memory-featured {
    border-color: var(--secondary-gold);
    background: linear-gradient(to bottom, white, #fffaf5);
}

.memory-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.memory-product-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--primary-plum);
    margin-bottom: 0.5rem;
}

.memory-product-card p {
    font-size: 0.9rem;
    color: var(--warm-gray);
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.memory-price {
    font-weight: 700;
    color: var(--accent-teal);
    font-size: 1rem;
}

/* === PURCHASE FORMS === */
.purchase-forms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.purchase-form-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 24px rgba(91, 46, 122, 0.1);
    text-align: center;
}

.purchase-form-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.purchase-form-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--primary-plum);
    margin-bottom: 0.75rem;
}

.purchase-form-card > p {
    color: var(--warm-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.purchase-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent-teal);
    margin-bottom: 1.5rem;
}

.purchase-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--warm-gray);
}

.purchase-form {
    text-align: left;
}

.form-group {
    margin-bottom: 1rem;
}

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

.form-group select,
.form-group input {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    font-family: var(--font-body);
    border: 2px solid rgba(91, 46, 122, 0.15);
    border-radius: 10px;
    background: white;
    color: var(--charcoal);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group select:focus,
.form-group input:focus {
    outline: none;
    border-color: var(--primary-plum);
    box-shadow: 0 0 0 4px rgba(91, 46, 122, 0.1);
}

.form-group select {
    cursor: pointer;
    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='%235A5556' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.btn-purchase {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-body);
    background: var(--accent-coral);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.btn-purchase:hover {
    background: #e55555;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.purchase-note {
    text-align: center;
    color: var(--warm-gray);
    font-size: 0.95rem;
    margin-top: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.purchase-note a {
    color: var(--primary-plum);
    font-weight: 600;
}

/* === PAYPAL FORM STYLING ===
   Applies to PayPal table-based forms in .purchase-form-card (shop page)
   and .byt-swag .product-info (swag pages).
   Hidden inputs and form action are untouched — only visual elements styled.
*/

.purchase-form-card form,
.byt-swag .product-info form {
    margin-top: 1.25rem;
    text-align: left;
}

/* Collapse table layout into stacked blocks */
.purchase-form-card form table,
.purchase-form-card form tbody,
.purchase-form-card form tr,
.purchase-form-card form td,
.byt-swag .product-info form table,
.byt-swag .product-info form tbody,
.byt-swag .product-info form tr,
.byt-swag .product-info form td {
    display: block;
    width: 100%;
    border: none;
    padding: 0;
    background: transparent;
}

/* Label rows: td that contains a hidden input + text node */
.byt-swag .product-card.treat-card form td:has(> input[type="hidden"]) {
    color: rgba(255, 255, 255, 0.85);
}

.purchase-form-card form td:has(> input[type="hidden"]),
.byt-swag .product-info form td:has(> input[type="hidden"]) {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--warm-gray);
    margin-top: 1rem;
    margin-bottom: 0.35rem;
}

/* Style select dropdowns */
.purchase-form-card form select,
.byt-swag .product-info form select {
    width: 100%;
    box-sizing: border-box;
    padding: 0.75rem 2.5rem 0.75rem 1rem;
    font-size: 0.95rem;
    font-family: var(--font-body);
    color: var(--charcoal);
    border: 2px solid rgba(91, 46, 122, 0.2);
    border-radius: 10px;
    background-color: white;
    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='%235A5556' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.purchase-form-card form select:focus,
.byt-swag .product-info form select:focus {
    outline: none;
    border-color: var(--primary-plum);
    box-shadow: 0 0 0 4px rgba(91, 46, 122, 0.1);
}

/* Style text inputs */
.purchase-form-card form input[type="text"],
.byt-swag .product-info form input[type="text"] {
    width: 100%;
    box-sizing: border-box;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    font-family: var(--font-body);
    color: var(--charcoal);
    border: 2px solid rgba(91, 46, 122, 0.2);
    border-radius: 10px;
    background: white;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.purchase-form-card form input[type="text"]:focus,
.byt-swag .product-info form input[type="text"]:focus {
    outline: none;
    border-color: var(--primary-plum);
    box-shadow: 0 0 0 4px rgba(91, 46, 122, 0.1);
}

/* PayPal submit image button */
.purchase-form-card form input[type="image"],
.byt-swag .product-info form input[type="image"] {
    display: block;
    margin-top: 1.25rem;
    cursor: pointer;
    border-radius: 6px;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.purchase-form-card form input[type="image"]:hover,
.byt-swag .product-info form input[type="image"]:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

/* === RESPONSIVE - SHOP === */
@media (max-width: 768px) {
    .shop-quick-nav {
        grid-template-columns: 1fr;
    }

    .shop-nav-card {
        padding: 1.25rem 1.5rem;
    }

    .current-shows-grid {
        grid-template-columns: 1fr;
    }

    .purchase-forms-grid {
        grid-template-columns: 1fr;
    }

    .purchase-form-card {
        padding: 2rem 1.5rem;
    }
}

/* === CONTACT PAGE === */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(91, 46, 122, 0.08);
}

.contact-card h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--primary-plum);
    margin-bottom: 0.75rem;
}

.contact-card > p {
    color: var(--warm-gray);
    margin-bottom: 1.5rem;
}

.contact-card-highlight {
    background: linear-gradient(135deg, var(--primary-plum), #7a4a9e);
    color: white;
}

.contact-card-highlight h2,
.contact-card-highlight p {
    color: white;
}

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

.contact-card-highlight .btn-primary:hover {
    background: var(--light-cream);
}

.contact-method {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.contact-method:last-of-type {
    margin-bottom: 0;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--light-cream);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-method h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--charcoal);
    margin-bottom: 0.25rem;
}

.contact-method a {
    color: var(--primary-plum);
    text-decoration: none;
    font-weight: 500;
}

.contact-method a:hover {
    text-decoration: underline;
}

.contact-method address {
    font-style: normal;
    color: var(--warm-gray);
    line-height: 1.6;
}

.contact-method p {
    color: var(--warm-gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Social Links */
.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: var(--light-cream);
    border-radius: 8px;
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.social-link:hover {
    background: var(--primary-plum);
    color: white;
}

.social-icon {
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

/* Contact Form */
.contact-form-wrapper {
    position: sticky;
    top: 120px;
    align-self: start;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-form .form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e8e4e1;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

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

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

.contact-form button {
    align-self: flex-start;
    padding: 1rem 2rem;
}

.form-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--warm-gray);
}

.form-note a {
    color: var(--primary-plum);
    font-weight: 500;
}

/* === RESPONSIVE - CONTACT === */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        position: static;
    }
}

@media (max-width: 480px) {
    .contact-card {
        padding: 1.5rem;
    }

    .contact-card .social-links {
        flex-direction: column;
    }

    .contact-card .social-link {
        justify-content: center;
    }
}
