/* ===========================
   ELEVATE VOLLEYBALL — SHARED STYLES
   Lawrence, Kansas
   =========================== */

/* ===========================
   CSS CUSTOM PROPERTIES
   =========================== */
:root {
    --navy:       #0f1a2e;
    --navy-mid:   #151f3a;
    --navy-light: #1e2d52;
    --gold:       #a855f7;
    --gold-light: #c084fc;
    --gold-dim:   rgba(168,85,247,0.15);
    --pink:       #ec4899;
    --pink-light: #f472b6;
    --pink-dim:   rgba(236,72,153,0.15);
    --cream:      #f3f0f8;
    --white:      #ffffff;
    --gray-100:   #f1f0f5;
    --gray-300:   #d1d5db;
    --gray-500:   #6b7280;
    --gray-700:   #374151;
    --red-accent: #e63946;
    --green:      #2a9d5c;

    --font-display: 'Bebas Neue', 'Impact', sans-serif;
    --font-heading: 'Barlow Condensed', 'Arial Narrow', sans-serif;
    --font-body:    'Barlow', 'Helvetica Neue', sans-serif;

    --max-width: 1200px;
    --section-pad: 80px;
    --nav-height: 70px;
}

/* ===========================
   RESET & BASE
   =========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    color: var(--gray-700);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===========================
   UTILITIES
   =========================== */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section-pad { padding: var(--section-pad) 0; }
.text-center { text-align: center; }
.gold-text { color: var(--gold); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.mt-48 { margin-top: 48px; }
.mb-48 { margin-bottom: 48px; }

/* ===========================
   TYPOGRAPHY
   =========================== */
.section-label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    line-height: 1.05;
    color: var(--navy);
    margin-bottom: 20px;
}
.section-title.light { color: var(--white); }
.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 640px;
    margin: 0 auto 40px;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
    display: inline-block;
    padding: 14px 36px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.3s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }
.btn-gold { background: var(--pink); color: var(--white); }
.btn-gold:hover { background: var(--pink-light); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-light); }
.btn-outline-dark { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }

/* ===========================
   NAVBAR
   =========================== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 2px solid var(--pink);
}
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
}
.logo {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--white);
    letter-spacing: 2px;
    line-height: 1;
}
.logo span { color: var(--gold); }
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray-300);
    transition: color 0.2s;
    position: relative;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0; right: 0;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}
.hamburger {
    display: none; flex-direction: column; gap: 5px; cursor: pointer;
    background: none; border: none; padding: 4px;
}
.hamburger span { display: block; width: 26px; height: 2px; background: var(--white); border-radius: 2px; transition: 0.3s; }

/* ===========================
   PAGE HERO (sub-pages)
   =========================== */
.page-hero {
    padding: calc(var(--nav-height) + 40px) 0 40px;
    background: linear-gradient(135deg, var(--navy) 0%, #1a1040 50%, #2d1854 100%);
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(circle, rgba(168,85,247,0.06) 1px, transparent 1px);
    background-size: 40px 40px;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .section-title { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: var(--gray-300); font-size: 1.1rem; max-width: 600px; }
.page-hero.centered { text-align: center; }
.page-hero.centered p { margin: 0 auto; }

/* ===========================
   HERO (home page)
   =========================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    padding-top: calc(var(--nav-height) + 60px);
    padding-bottom: 80px;
    background: linear-gradient(135deg, var(--navy) 0%, #1a1040 50%, #2d1854 100%);
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 900px; height: 900px;
    background: radial-gradient(circle, rgba(168,85,247,0.12) 0%, transparent 70%);
    border-radius: 50%;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--white), transparent);
}
.hero-pattern {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(circle, rgba(168,85,247,0.06) 1px, transparent 1px);
    background-size: 40px 40px;
}
.hero-content {
    position: relative; z-index: 2;
    max-width: 720px;
    animation: fadeUp 0.8s ease-out;
}
.hero-badge {
    display: inline-block;
    padding: 6px 18px;
    background: var(--gold-dim);
    border: 1px solid rgba(168,85,247,0.3);
    border-radius: 20px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}
.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5.5rem);
    line-height: 0.95;
    color: var(--white);
    margin-bottom: 24px;
}
.hero h1 .highlight { color: var(--gold); display: block; }
.hero p {
    font-size: 1.2rem;
    color: var(--gray-300);
    max-width: 520px;
    margin-bottom: 36px;
    line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stat-strip {
    position: relative; z-index: 2;
    display: flex; gap: 48px;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    animation: fadeUp 0.8s ease-out 0.3s both;
}
.hero-stat-strip .stat-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--gold);
}
.hero-stat-strip .stat-label {
    font-size: 0.85rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.hero-volleyball {
    position: absolute;
    right: 5%; top: 50%;
    transform: translateY(-50%);
    width: 420px; height: 420px;
    opacity: 0.08; z-index: 1;
}

/* ===========================
   MISSION
   =========================== */
.mission { background: var(--cream); border-top: 4px solid var(--pink); }
.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.mission-quote {
    font-family: var(--font-body);
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.8;
    color: var(--navy);
    padding-left: 30px;
    border-left: 4px solid var(--gold);
}
.mission-values { display: flex; flex-direction: column; gap: 20px; }
.value-card {
    display: flex; align-items: flex-start; gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.value-icon {
    flex-shrink: 0;
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    background: var(--navy);
    color: var(--gold);
    border-radius: 8px;
    font-size: 1.3rem;
}
.value-card h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--navy);
    margin-bottom: 4px;
}
.value-card p { font-size: 0.92rem; color: var(--gray-500); }

/* ===========================
   COACHES
   =========================== */
.coaches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 36px;
    margin-top: 20px;
}
.coach-card {
    border: 1px solid var(--gray-100);
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
}
.coach-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}
.coach-img {
    height: 260px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
}
.coach-img::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 60px;
    background: linear-gradient(to top, var(--white), transparent);
}
.coach-img .placeholder-icon { font-size: 4rem; opacity: 0.3; }
.coach-body { padding: 24px; }
.coach-body h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}
.coach-role {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.coach-body p { font-size: 0.95rem; color: var(--gray-500); }

/* Coaching Philosophy */
.coaching-style {
    margin-top: 48px;
    padding: 40px;
    background: var(--navy);
    border-radius: 12px;
    color: var(--white);
}
.coaching-style h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 16px;
}
.coaching-style p { color: var(--gray-300); line-height: 1.8; }
.style-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 28px;
}
.pillar {
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    text-align: center;
}
.pillar-num { font-family: var(--font-display); font-size: 2.5rem; color: var(--gold); }
.pillar h4 { font-family: var(--font-heading); font-weight: 700; font-size: 1rem; margin: 0 0 6px; color: var(--white); }
.pillar p { font-size: 0.85rem; color: var(--gray-300); }

/* ===========================
   OPEN GYM
   =========================== */
.gym-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
}
.gym-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.gym-header { padding: 28px 28px 20px; }
.gym-header.juniors { border-top: 4px solid var(--pink); }
.gym-header.adults { border-top: 4px solid var(--navy); }
.gym-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.juniors .gym-tag { background: var(--pink-dim); color: var(--pink); }
.adults .gym-tag { background: rgba(10,22,40,0.1); color: var(--navy); }
.gym-header h3 { font-family: var(--font-display); font-size: 2rem; color: var(--navy); margin-bottom: 8px; }
.gym-header p { font-size: 0.95rem; color: var(--gray-500); }
.gym-details { padding: 0 28px 28px; display: flex; flex-direction: column; gap: 12px; }
.gym-detail { display: flex; align-items: center; gap: 12px; font-size: 0.95rem; color: var(--gray-700); }
.gym-detail .icon {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    background: var(--gray-100); border-radius: 6px;
    font-size: 1.1rem; flex-shrink: 0;
}

/* ===========================
   GOOGLE FORM EMBED
   =========================== */
.form-embed {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    min-height: 500px;
    display: flex;
    flex-direction: column;
}
.form-embed-header {
    padding: 16px 24px;
    background: var(--navy);
    color: var(--gold);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.form-embed iframe { flex: 1; width: 100%; min-height: 480px; border: none; }
.form-placeholder {
    flex: 1;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    padding: 40px; text-align: center;
    color: var(--gray-500);
}
.form-placeholder .icon { font-size: 3rem; margin-bottom: 16px; opacity: 0.5; }
.form-placeholder p { font-size: 0.95rem; max-width: 300px; }
.form-placeholder code {
    display: block; margin-top: 12px;
    font-size: 0.8rem;
    background: var(--gray-100);
    padding: 6px 12px; border-radius: 4px;
    color: var(--gray-700);
}

/* ===========================
   SURVEY
   =========================== */
.survey-content {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 48px;
    align-items: start;
}
.survey-info p { color: var(--gray-500); line-height: 1.7; margin-bottom: 16px; }
.survey-benefits { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.benefit { display: flex; gap: 12px; align-items: flex-start; }
.benefit-check {
    flex-shrink: 0;
    width: 24px; height: 24px;
    background: var(--green); color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem; margin-top: 2px;
}
.benefit p { color: var(--gray-700); font-size: 0.95rem; }

/* ===========================
   SPONSORS
   =========================== */
.sponsor-tiers { display: flex; flex-direction: column; gap: 48px; }
.tier-label {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--navy);
    margin-bottom: 16px;
    display: flex; align-items: center; gap: 12px;
}
.tier-label .badge {
    padding: 4px 14px; border-radius: 4px;
    font-family: var(--font-heading);
    font-size: 0.7rem; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
}
.tier-label .badge.gold-tier { background: #f0a500; color: var(--navy); }
.tier-label .badge.silver-tier { background: var(--gray-300); color: var(--gray-700); }
.tier-label .badge.bronze-tier { background: #cd7f32; color: var(--white); }
.sponsor-logos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}
.sponsor-slot {
    height: 120px;
    border: 2px dashed var(--gray-300);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gray-500);
    font-size: 0.85rem; font-weight: 500;
    transition: border-color 0.2s, background 0.2s;
}
.sponsor-slot:hover { border-color: var(--gold); background: rgba(168,85,247,0.04); }
.sponsor-slot img { max-height: 70px; max-width: 160px; object-fit: contain; }
.sponsor-cta {
    margin-top: 48px;
    padding: 40px;
    background: var(--navy);
    border-radius: 12px;
    text-align: center;
    color: var(--white);
}
.sponsor-cta h3 { font-family: var(--font-display); font-size: 1.8rem; color: var(--gold); margin-bottom: 12px; }
.sponsor-cta p { color: var(--gray-300); margin-bottom: 24px; max-width: 560px; margin-left: auto; margin-right: auto; }
.sponsor-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}
.sponsor-benefit {
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    text-align: center;
}
.sponsor-benefit .icon { font-size: 1.6rem; margin-bottom: 8px; }
.sponsor-benefit h4 { font-family: var(--font-heading); font-weight: 700; font-size: 0.9rem; color: var(--white); margin-bottom: 4px; }
.sponsor-benefit p { font-size: 0.8rem; color: var(--gray-500); }

/* ===========================
   TRYOUTS
   =========================== */
.tryout-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.tryout-info h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--navy);
    margin: 24px 0 12px;
}
.tryout-info p { color: var(--gray-500); line-height: 1.7; }
.tryout-info ul { margin: 12px 0; }
.tryout-info li {
    padding: 8px 0; padding-left: 24px;
    position: relative; color: var(--gray-700);
}
.tryout-info li::before {
    content: '▸';
    position: absolute; left: 0;
    color: var(--gold); font-weight: bold;
}
.age-calc-link {
    display: inline-flex;
    align-items: center; gap: 8px;
    margin-top: 16px;
    padding: 12px 24px;
    background: var(--gold-dim);
    border: 1px solid rgba(168,85,247,0.3);
    border-radius: 6px;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.2s;
}
.age-calc-link:hover { background: rgba(168,85,247,0.25); }

/* ===========================
   SCHEDULE / CALENDAR
   =========================== */
.calendar-wrapper {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}
.calendar-header {
    padding: 20px 28px;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.calendar-header h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
}
.subscribe-btn {
    display: inline-flex;
    align-items: center; gap: 8px;
    padding: 8px 20px;
    background: var(--pink);
    color: var(--white);
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background 0.2s;
}
.subscribe-btn:hover { background: var(--pink-light); }
.calendar-embed { width: 100%; min-height: 600px; border: none; }
.calendar-placeholder {
    min-height: 600px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    padding: 40px; text-align: center; color: var(--gray-500);
}
.calendar-placeholder .icon { font-size: 4rem; margin-bottom: 16px; opacity: 0.4; }
.calendar-placeholder code {
    display: block; margin-top: 12px;
    font-size: 0.8rem;
    background: var(--gray-100);
    padding: 6px 12px; border-radius: 4px;
    color: var(--gray-700);
}
.subscribe-options {
    margin-top: 40px;
    padding: 32px;
    background: var(--cream);
    border-radius: 12px;
}
.subscribe-options h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 8px;
}
.subscribe-options p { color: var(--gray-500); margin-bottom: 20px; }
.subscribe-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}
.subscribe-step {
    padding: 20px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.subscribe-step .step-num {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 4px;
}
.subscribe-step h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--navy);
    margin-bottom: 4px;
}
.subscribe-step p { font-size: 0.88rem; color: var(--gray-500); }

/* ===========================
   CONTACT
   =========================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 48px;
    align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon {
    flex-shrink: 0;
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    background: var(--navy); color: var(--gold);
    border-radius: 8px; font-size: 1.2rem;
}
.contact-item h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--navy);
    margin-bottom: 2px;
}
.contact-item p { font-size: 0.92rem; color: var(--gray-500); }

/* ===========================
   FOOTER
   =========================== */
.footer {
    background: var(--navy);
    color: var(--gray-500);
    padding: 48px 0 24px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 320px; }
.footer h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.9rem; color: var(--gray-500); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}
.footer-bottom a { color: var(--gold); }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 900px) {
    .nav-links { display: none; }
    .nav-links.open {
        display: flex; flex-direction: column;
        position: absolute; top: var(--nav-height); left: 0; right: 0;
        background: var(--navy);
        padding: 20px 24px;
        gap: 20px;
        border-bottom: 2px solid var(--pink);
        z-index: 999;
    }
    .nav-links.open a { font-size: 1rem; padding: 4px 0; }
    .hamburger { display: flex; }
    .hamburger span { width: 28px; height: 3px; }
    .hero-volleyball { display: none; }
    .mission-grid,
    .gym-grid,
    .tryout-content,
    .survey-content,
    .contact-grid,
    .footer-grid { grid-template-columns: 1fr; }
    .footer-grid { gap: 28px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 600px) {
    :root { --section-pad: 48px; }
    .hero h1 { font-size: 2.4rem; }
    .hero p { font-size: 1rem; }
    .hero-actions { flex-direction: column; gap: 12px; }
    .hero-actions .btn { width: 100%; text-align: center; padding: 16px 24px; }
    .style-pillars { grid-template-columns: 1fr; }
    .subscribe-steps { grid-template-columns: 1fr; }
    .sponsor-benefits-grid { grid-template-columns: 1fr 1fr; }
    .btn { padding: 14px 24px; font-size: 0.95rem; }
    .container { padding: 0 16px; }
    .page-hero { padding: calc(var(--nav-height) + 24px) 0 32px; }
    .page-hero p { font-size: 1rem; }
    .hero { padding-top: calc(var(--nav-height) + 32px); padding-bottom: 48px; min-height: auto; }
    .mission-quote { font-size: 1.1rem; padding-left: 20px; }
    .tryout-content, .contact-grid { gap: 32px; }
    .coaching-style { padding: 28px 20px; }
    .subscribe-options { padding: 24px 20px; }
    .gym-header { padding: 20px 20px 16px; }
    .gym-details { padding: 0 20px 20px; }
}

/* ===========================
   ELEVATE ACRONYM
   =========================== */
.acronym-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--navy) 0%, #1a1040 100%);
}
.acronym-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}
.acronym-item {
    text-align: center;
    padding: 24px 8px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    transition: background 0.3s, transform 0.2s;
}
.acronym-item:hover {
    background: rgba(236,72,153,0.1);
    transform: translateY(-4px);
}
.acronym-letter {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 4rem);
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}
.acronym-word {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(0.7rem, 1.1vw, 0.95rem);
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
}
.acronym-desc {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-top: 6px;
    line-height: 1.4;
}
@media (max-width: 900px) {
    .acronym-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 500px) {
    .acronym-grid { grid-template-columns: repeat(2, 1fr); }
    .acronym-item { padding: 18px 8px; }
}

/* ===========================
   HERO LOGO
   =========================== */
.hero-logo {
    height: 100px;
    width: auto;
    margin-bottom: 24px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 600px) {
    .hero-logo { height: 72px; }
}

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
