/* Aurora Volleyball Club — main.css */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --cyan:       #2de2e6;
    --magenta:    #d400d4;
    --purple:     #9b5de5;
    --dark:       #141418;
    --dark2:      #1c1c24;
    --dark3:      #242430;
    --text:       #f0f0f5;
    --text-muted: #9090a8;
    --grad:       linear-gradient(135deg, #2de2e6 0%, #9b5de5 50%, #d400d4 100%);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Barlow', sans-serif;
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
}

/* ── NAV ── */
#aurora-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5%;
    height: 68px;
    background: rgba(20, 20, 24, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(45, 226, 230, 0.12);
}

.nav-logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.35rem;
    letter-spacing: 0.04em;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--cyan); }

.nav-cta {
    background: transparent;
    border: 1px solid var(--cyan);
    color: var(--cyan);
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.nav-cta:hover { background: var(--cyan); color: var(--dark); }

.hamburger {
    display: none; flex-direction: column; gap: 5px;
    cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s; }

/* ── HERO ── */
.section-hero {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    padding: 100px 5% 60px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 60% 70% at 0% 30%, rgba(45,226,230,0.13) 0%, transparent 55%),
        radial-gradient(ellipse 60% 70% at 100% 70%, rgba(212,0,212,0.13) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 50% 100%, rgba(155,93,229,0.1) 0%, transparent 60%),
        radial-gradient(ellipse 40% 30% at 50% 0%, rgba(45,226,230,0.06) 0%, transparent 50%);
}

/* Orbs removed — glow handled entirely by .hero-bg radial gradients below */
.hero-orb { display: none; }

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content { position: relative; max-width: 820px; }

.hero-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cyan);
    border: 1px solid rgba(45, 226, 230, 0.3);
    padding: 5px 16px;
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(3.5rem, 9vw, 7rem);
    line-height: 0.95;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-title .grad-text {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto 2.5rem;
}

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

.btn-primary {
    background: var(--grad);
    color: var(--dark);
    border: none;
    padding: 14px 32px;
    border-radius: 4px;
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
    display: inline-block;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 14px 32px;
    border-radius: 4px;
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
    display: inline-block;
}
.btn-outline:hover { border-color: var(--magenta); color: var(--magenta); }

.hero-stats {
    display: flex; justify-content: center; gap: 3rem;
    margin-top: 4rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.07);
}
.stat-item { text-align: center; }
.stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.stat-label { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); margin-top: 4px; }

/* ── SECTIONS SHARED ── */
section { padding: 100px 5%; }
.section-about  { background: var(--dark2); }
.section-team   { background: var(--dark); }
.section-schedule { background: var(--dark2); }
.section-sponsors { background: var(--dark); }
.section-contact  { background: var(--dark2); }

.section-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3rem);
    text-transform: uppercase;
    line-height: 1.05;
    margin-bottom: 1rem;
}
.section-title .accent {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-sub { color: var(--text-muted); font-size: 1rem; line-height: 1.7; max-width: 520px; }

.divider { width: 48px; height: 3px; background: var(--grad); border-radius: 2px; margin: 1.2rem 0 2.5rem; }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; max-width: 1100px; margin: 0 auto; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 2rem; }
.feature-card {
    background: var(--dark3); border: 1px solid rgba(45,226,230,0.12);
    border-radius: 6px; padding: 1.25rem; transition: border-color 0.2s;
}
.feature-card:hover { border-color: rgba(45,226,230,0.35); }
.feature-icon { font-size: 1.5rem; margin-bottom: 0.6rem; }
.feature-title { font-weight: 600; font-size: 0.9rem; margin-bottom: 0.4rem; }
.feature-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }
.about-visual { display: flex; align-items: center; justify-content: center; }
.aurora-ring {
    width: 340px; height: 340px; border-radius: 50%;
    border: 1px solid rgba(45,226,230,0.15);
    display: flex; align-items: center; justify-content: center; position: relative;
}
.aurora-ring::before { content: ''; position: absolute; inset: -20px; border-radius: 50%; border: 1px solid rgba(212,0,212,0.1); }
.vball-svg { width: 200px; height: 200px; }

/* ── TEAM ── */
.team-header { max-width: 1100px; margin: 0 auto 3rem; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.5rem; max-width: 1100px; margin: 0 auto; }
.player-card {
    background: var(--dark2); border: 1px solid rgba(255,255,255,0.07);
    border-radius: 8px; overflow: hidden; transition: border-color 0.2s, transform 0.2s;
}
.player-card:hover { border-color: rgba(45,226,230,0.3); transform: translateY(-4px); }
.player-number-bg {
    height: 120px; display: flex; align-items: center; justify-content: center;
    background: var(--dark3); position: relative; overflow: hidden;
}
.player-number-bg::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at center, rgba(45,226,230,0.06) 0%, transparent 70%);
}
.player-number-bg img.player-photo { width: 100%; height: 100%; object-fit: cover; }
.player-jersey-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 5rem; font-weight: 800;
    background: var(--grad);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    line-height: 1; opacity: 0.9;
}
.player-info { padding: 1rem; }
.player-name { font-weight: 600; font-size: 0.95rem; margin-bottom: 0.2rem; }
.player-pos { font-size: 0.75rem; color: var(--cyan); letter-spacing: 0.1em; text-transform: uppercase; }
.player-meta { display: flex; gap: 0.75rem; margin-top: 0.6rem; }
.player-meta span { font-size: 0.72rem; color: var(--text-muted); }

/* ── SCHEDULE ── */
.schedule-inner { max-width: 900px; margin: 0 auto; }
.schedule-filter { display: flex; gap: 0.75rem; margin-bottom: 2rem; flex-wrap: wrap; }
.filter-btn {
    background: var(--dark3); border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-muted); padding: 7px 18px; border-radius: 3px;
    font-family: 'Barlow', sans-serif;
    font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
    cursor: pointer; transition: 0.2s;
}
.filter-btn.active, .filter-btn:hover { border-color: var(--cyan); color: var(--cyan); background: rgba(45,226,230,0.06); }

.game-card {
    background: var(--dark); border: 1px solid rgba(255,255,255,0.07);
    border-radius: 6px; padding: 1.25rem 1.5rem;
    display: grid; grid-template-columns: 90px 1fr auto;
    align-items: center; gap: 1.5rem; margin-bottom: 0.75rem; transition: border-color 0.2s;
}
.game-card:hover { border-color: rgba(45,226,230,0.25); }
.game-card.home    { border-left: 3px solid var(--cyan); }
.game-card.away    { border-left: 3px solid var(--magenta); }
.game-card.tourney { border-left: 3px solid var(--purple); }

.game-date-block { text-align: center; }
.game-month { font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); }
.game-day { font-family: 'Barlow Condensed', sans-serif; font-size: 2.2rem; font-weight: 800; line-height: 1; }
.game-weekday { font-size: 0.65rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }
.game-title { font-weight: 600; font-size: 0.97rem; margin-bottom: 0.25rem; }
.game-location { font-size: 0.78rem; color: var(--text-muted); }
.game-time { font-size: 0.78rem; color: var(--cyan); margin-top: 0.15rem; }
.game-badge { font-size: 0.67rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 10px; border-radius: 3px; white-space: nowrap; }
.badge-home    { background: rgba(45,226,230,0.1);  color: var(--cyan);    border: 1px solid rgba(45,226,230,0.25); }
.badge-away    { background: rgba(212,0,212,0.1);   color: var(--magenta); border: 1px solid rgba(212,0,212,0.25); }
.badge-tourney { background: rgba(155,93,229,0.1);  color: var(--purple);  border: 1px solid rgba(155,93,229,0.25); }

/* ── SPONSORS ── */
.sponsors-inner { max-width: 1000px; margin: 0 auto; }
.sponsors-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1.25rem; }
.sponsor-card {
    background: var(--dark2); border: 1px solid rgba(255,255,255,0.07);
    border-radius: 6px; height: 100px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.9rem; color: var(--text-muted);
    letter-spacing: 0.06em; text-transform: uppercase;
    transition: border-color 0.2s, color 0.2s;
    position: relative; overflow: hidden;
    text-decoration: none;
}
.sponsor-card::before {
    content: ''; position: absolute; inset: 0;
    background: var(--grad); opacity: 0; transition: opacity 0.2s;
}
.sponsor-card:hover { border-color: transparent; color: var(--dark); }
.sponsor-card:hover::before { opacity: 1; }
.sponsor-card span, .sponsor-card img { position: relative; z-index: 1; }

.sponsor-cta {
    margin-top: 3rem; background: var(--dark2);
    border: 1px solid rgba(155,93,229,0.25); border-radius: 8px; padding: 2.5rem;
    display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.sponsor-cta-text h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.6rem; font-weight: 800; text-transform: uppercase; }
.sponsor-cta-text p { color: var(--text-muted); font-size: 0.9rem; margin-top: 0.35rem; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; max-width: 1000px; margin: 0 auto; align-items: start; }
.contact-info-items { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-info-icon {
    width: 40px; height: 40px; border-radius: 6px;
    background: rgba(45,226,230,0.08); border: 1px solid rgba(45,226,230,0.2);
    display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.contact-info-label { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.25rem; }
.contact-info-value { font-size: 0.95rem; font-weight: 500; }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); font-weight: 600; }
.form-group input,
.form-group select,
.form-group textarea {
    background: var(--dark3); border: 1px solid rgba(255,255,255,0.1);
    color: var(--text); padding: 11px 14px; border-radius: 4px;
    font-family: 'Barlow', sans-serif; font-size: 0.9rem;
    transition: border-color 0.2s; outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--cyan); }
.form-group select option { background: var(--dark3); }
.form-group textarea { resize: vertical; min-height: 100px; }

.form-success {
    background: rgba(45,226,230,0.1); border: 1px solid rgba(45,226,230,0.3);
    color: var(--cyan); padding: 1rem 1.25rem; border-radius: 6px; margin-bottom: 1rem;
    font-weight: 600;
}

/* CF7 style overrides */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 select,
.wpcf7 textarea {
    background: var(--dark3) !important; border: 1px solid rgba(255,255,255,0.1) !important;
    color: var(--text) !important; padding: 11px 14px !important; border-radius: 4px !important;
    font-family: 'Barlow', sans-serif !important; width: 100% !important;
}
.wpcf7 input[type="submit"] {
    background: var(--grad) !important; border: none !important; color: var(--dark) !important;
    padding: 14px 32px !important; border-radius: 4px !important; font-weight: 700 !important;
    font-size: 0.9rem !important; letter-spacing: 0.08em !important; text-transform: uppercase !important;
    cursor: pointer !important; width: 100% !important; margin-top: 0.5rem !important;
}

/* ── FOOTER ── */
#aurora-footer {
    background: var(--dark); border-top: 1px solid rgba(255,255,255,0.06);
    padding: 3rem 5%; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem;
}
.footer-brand {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.2rem;
    background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; letter-spacing: 0.04em;
}
.footer-links { display: flex; gap: 2rem; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.83rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--cyan); }
.footer-copy { color: var(--text-muted); font-size: 0.78rem; }

/* ── MOBILE MENU ── */
.mobile-menu {
    display: none; position: fixed; top: 68px; left: 0; right: 0; z-index: 99;
    background: rgba(20,20,24,0.98); border-bottom: 1px solid rgba(45,226,230,0.12);
    padding: 1.5rem 5%; flex-direction: column; gap: 1.25rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--text); text-decoration: none; font-size: 1rem; font-weight: 500; padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); }

/* ── MISC ── */
.placeholder-note {
    color: var(--text-muted); font-size: 0.78rem; margin-top: 1rem;
    border: 1px dashed rgba(155,93,229,0.3); padding: 0.75rem 1rem; border-radius: 4px;
    grid-column: 1 / -1;
}
.placeholder-note strong { color: var(--purple); }

/* ── SCROLL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-visual { display: none; }
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .form-row { grid-template-columns: 1fr; }
    .game-card { grid-template-columns: 70px 1fr; }
    .game-badge { display: none; }
}

@media (max-width: 680px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .hero-stats { gap: 1.5rem; }
    .about-features { grid-template-columns: 1fr; }
    #aurora-footer { flex-direction: column; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-orb { animation: none; }
    .reveal { transition: none; }
}

/* ── NEWS SECTION ── */
.section-news { background: var(--dark3); }
.news-inner { max-width: 1100px; margin: 0 auto; }

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.news-card {
    background: var(--dark2);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
}
.news-card:hover { border-color: rgba(45,226,230,0.3); transform: translateY(-4px); }

.news-card-image { width: 100%; aspect-ratio: 16/9; overflow: hidden; }
.news-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.news-card:hover .news-card-image img { transform: scale(1.04); }

.news-card-body { padding: 1.25rem; display: flex; flex-direction: column; flex: 1; }

.news-meta { display: flex; gap: 0.6rem; align-items: center; margin-bottom: 0.6rem; }
.news-date { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cyan); }
.news-time { font-size: 0.72rem; color: var(--text-muted); }
.news-meta::before { content: ''; display: inline-block; width: 3px; height: 3px; border-radius: 50%; background: var(--text-muted); margin: 0 0.1rem; }

.news-title { font-family: 'Barlow Condensed', sans-serif; font-size: 1.2rem; font-weight: 700; line-height: 1.2; margin-bottom: 0.6rem; }
.news-title a { color: var(--text); text-decoration: none; transition: color 0.2s; }
.news-title a:hover { color: var(--cyan); }

.news-excerpt { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; flex: 1; }
.news-excerpt p { margin: 0; }

.news-read-more {
    display: inline-block; margin-top: 1rem;
    font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--cyan); text-decoration: none; transition: color 0.2s;
}
.news-read-more:hover { color: var(--magenta); }

.news-archive-link { text-align: center; margin-top: 2.5rem; }

/* ── SINGLE POST ── */
.post-hero-meta {
    display: flex; gap: 0.75rem; align-items: center; justify-content: center;
    margin-top: 0.75rem; font-size: 0.82rem; color: var(--text-muted);
}
.meta-dot { color: var(--text-muted); }

.post-featured-image {
    margin-bottom: 2rem;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    background: var(--dark3);
    padding: 1.25rem;
}
.post-featured-image img {
    max-width: 100%;
    width: auto !important;
    height: auto !important;
    max-height: 800px;
    display: block;
    margin: 0 auto;
    border-radius: 6px;
    object-fit: contain;
    cursor: zoom-in;
    transition: opacity 0.2s;
}
.post-featured-image img:hover { opacity: 0.88; }

/* ── Lightbox ── */
.aurora-lightbox {
    display: none;
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(0,0,0,0.92);
    align-items: center; justify-content: center;
    cursor: zoom-out;
    padding: 1.5rem;
}
.aurora-lightbox.open { display: flex; }
.aurora-lightbox img {
    max-width: 95vw;
    max-height: 95vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 60px rgba(45,226,230,0.15);
}
.aurora-lightbox-close {
    position: fixed; top: 1.25rem; right: 1.5rem;
    color: white; font-size: 2rem; line-height: 1;
    cursor: pointer; background: none; border: none;
    opacity: 0.7; transition: opacity 0.2s;
    z-index: 10000;
}
.aurora-lightbox-close:hover { opacity: 1; }

.single-post-content p { color: var(--text-muted); line-height: 1.8; margin-bottom: 1.25rem; }
.single-post-content p:first-of-type { color: var(--text); font-size: 1.05rem; }

.post-back-link { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.07); }

/* ── ARCHIVE PAGE ── */
.archive-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; }

.archive-pagination { grid-column: 1 / -1; display: flex; justify-content: center; gap: 0.5rem; margin-top: 2rem; }
.archive-pagination .page-numbers {
    background: var(--dark3); border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-muted); padding: 8px 14px; border-radius: 4px;
    text-decoration: none; font-size: 0.85rem; transition: 0.2s;
}
.archive-pagination .page-numbers.current,
.archive-pagination .page-numbers:hover { border-color: var(--cyan); color: var(--cyan); background: rgba(45,226,230,0.06); }

/* ── COACHES SECTION ── */
.section-coaches { background: var(--dark2); }
.coaches-inner { max-width: 1100px; margin: 0 auto; }
.coaches-header { margin-bottom: 3rem; }

.coaches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.75rem;
}

.coach-card {
    background: var(--dark);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
}
.coach-card:hover {
    border-color: rgba(45,226,230,0.3);
    transform: translateY(-4px);
}

.coach-photo-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--dark3);
    display: flex;
    align-items: center;
    justify-content: center;
}
.coach-photo-wrap::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 80%, rgba(45,226,230,0.06) 0%, transparent 60%);
}

.coach-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.coach-photo-placeholder {
    width: 100px; height: 100px;
    border-radius: 50%;
    background: var(--dark2);
    border: 1px solid rgba(45,226,230,0.2);
    display: flex; align-items: center; justify-content: center;
}

.coach-role-badge {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(20,20,24,0.95) 0%, transparent 100%);
    padding: 1.5rem 1rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--cyan);
    text-align: center;
}

.coach-info { padding: 1.25rem 1.25rem 1.5rem; flex: 1; display: flex; flex-direction: column; gap: 0.5rem; }

.coach-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text);
    line-height: 1.1;
}

.coach-exp {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.coach-exp-icon { font-size: 0.85rem; }

.coach-bio {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.65;
    flex: 1;
    margin-top: 0.25rem;
}

.coach-email {
    font-size: 0.78rem;
    color: var(--cyan);
    text-decoration: none;
    letter-spacing: 0.02em;
    margin-top: 0.25rem;
    transition: color 0.2s;
}
.coach-email:hover { color: var(--magenta); }

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