/* ===== TOKENS ===== */
:root {
    --white:   #ffffff;
    --off:     #f5f5f7;
    --off2:    #eaeaed;
    --text:    #0a0a0b;
    --text-2:  #3a3a3c;
    --text-3:  #6e6e73;
    --blue:    #0071e3;
    --blue-lt: #e8f1fc;
    --blue-vv: #005bb5;
    --accent:  #ff3b30;
    --accent-lt: #fff0ef;
    --green:   #34c759;
    --border:  #d8d8dc;
    --border2: #c5c5ca;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 28px rgba(0,0,0,0.10);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
    --r-sm: 10px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-xl: 32px;
    --container: 1160px;
    --nav-h: 66px;
    --section: clamp(5rem, 10vw, 7.5rem);
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--white);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 5vw, 2.5rem);
}

/* ===== NAV ===== */
.header {
    position: fixed;
    top: 0; width: 100%; z-index: 1000;
    background: rgba(255,255,255,0.88);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s;
}
.header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

.nav-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 5vw, 2.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-h);
}

.logo { display: flex; align-items: center; gap: 0.75rem; }
.logo-image { height: 36px; width: auto; object-fit: contain; }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name { font-size: 0.95rem; font-weight: 800; color: var(--text); letter-spacing: -0.02em; }
.logo-sub { font-size: 0.65rem; font-weight: 600; color: var(--text-3); letter-spacing: 0.06em; text-transform: uppercase; }

.nav-menu { display: flex; list-style: none; gap: 0.1rem; align-items: center; }
.nav-link { font-size: 0.875rem; font-weight: 500; color: var(--text-2); padding: 0.45rem 0.85rem; border-radius: var(--r-sm); transition: color 0.2s, background 0.2s; }
.nav-link:hover, .nav-link.active { color: var(--blue); background: var(--blue-lt); }

.nav-link.cta-nav {
    background: var(--blue); color: var(--white);
    font-weight: 700; padding: 0.5rem 1.1rem;
    border-radius: var(--r-sm);
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.nav-link.cta-nav:hover { background: var(--blue-vv); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,113,227,0.35); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.bar { width: 22px; height: 2px; background: var(--text-2); border-radius: 2px; transition: all 0.3s ease; }
.hamburger.active .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active .bar:nth-child(2) { opacity: 0; }
.hamburger.active .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    padding-top: var(--nav-h);
    background: var(--white);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* diagonal colour block */
.hero::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(135deg, #e8f3ff 0%, #cce3ff 60%, #b8d5ff 100%);
    clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 0;
}

.hero-inner {
    position: relative; z-index: 1;
    max-width: var(--container);
    margin: 0 auto;
    padding: clamp(3rem, 8vw, 5rem) clamp(1.25rem, 5vw, 2.5rem);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    width: 100%;
}

.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--blue-lt);
    border: 1.5px solid rgba(0,113,227,0.25);
    color: var(--blue);
    font-size: 0.78rem; font-weight: 700;
    padding: 0.35rem 0.875rem;
    border-radius: 999px;
    letter-spacing: 0.04em;
    margin-bottom: 1.5rem;
    width: fit-content;
}

.hero-content h1 {
    font-size: clamp(2.75rem, 6.5vw, 5rem);
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -0.04em;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.hero-accent { color: var(--blue); display: inline; }

.hero-description {
    font-size: clamp(1rem, 1.8vw, 1.1rem);
    color: var(--text-2);
    line-height: 1.7;
    max-width: 460px;
    margin-bottom: 2.5rem;
}

.hero-buttons { display: flex; gap: 0.875rem; flex-wrap: wrap; margin-bottom: 3rem; }

.btn-primary {
    background: var(--blue); color: var(--white);
    font-weight: 700; font-size: 0.95rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--r-md);
    border: none; cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    display: inline-flex; align-items: center;
}
.btn-primary:hover { background: var(--blue-vv); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,113,227,0.35); }

.btn-ghost {
    background: transparent; color: var(--text-2);
    font-weight: 600; font-size: 0.95rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--r-md);
    border: 1.5px solid var(--border2);
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
    display: inline-flex; align-items: center;
}
.btn-ghost:hover { color: var(--text); border-color: var(--text-2); background: var(--off); }

.hero-stats { display: flex; align-items: center; gap: 2rem; }
.hero-stat { display: flex; flex-direction: column; gap: 0.15rem; }
.hero-stat-num { font-size: 1.5rem; font-weight: 900; color: var(--blue); letter-spacing: -0.04em; line-height: 1; }
.hero-stat-label { font-size: 0.72rem; font-weight: 600; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.07em; }
.hero-stat-divider { width: 1px; height: 34px; background: var(--border); }

.hero-visual { display: flex; justify-content: center; align-items: center; }

.hero-logo-card {
    background: var(--white);
    border-radius: var(--r-xl);
    padding: clamp(2rem, 5vw, 3rem);
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,113,227,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
}
.hero-logo-card:hover { transform: translateY(-8px) rotate(-1deg); box-shadow: 0 32px 80px rgba(0,0,0,0.14); }
.hero-logo { max-width: clamp(180px, 24vw, 280px); height: auto; }

.hero-scroll-hint {
    position: absolute;
    bottom: 2rem; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    color: var(--text-3); font-size: 0.68rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.7;
}
.scroll-arrow {
    width: 1px; height: 36px;
    background: linear-gradient(to bottom, var(--text-3), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%,100% { opacity: 0.5; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.3); }
}

/* ===== SECTION COMMON ===== */
section { padding: var(--section) 0; }

.section-header { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-label {
    display: inline-block;
    font-size: 0.72rem; font-weight: 800;
    color: var(--blue);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}
.section-header h2 {
    font-size: clamp(1.875rem, 4vw, 2.75rem);
    font-weight: 900;
    letter-spacing: -0.035em;
    color: var(--text);
    line-height: 1.1;
    margin-bottom: 1rem;
}
.section-intro {
    font-size: clamp(1rem, 1.8vw, 1.05rem);
    color: var(--text-3);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== SHORT BALL ===== */
.shortball-section { background: var(--off); }

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.25rem;
    max-width: 1000px; margin: 0 auto;
}

.rule-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 2.25rem 2rem;
    transition: transform 0.25s, box-shadow 0.25s;
    position: relative;
    overflow: hidden;
}
.rule-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--off2);
    transition: background 0.3s;
}
.rule-card--accent { border-color: rgba(0,113,227,0.2); background: linear-gradient(135deg, #f0f7ff 0%, #fff 70%); }
.rule-card--accent::after { background: linear-gradient(90deg, var(--blue), #6eb5ff); }
.rule-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.rule-card:hover::after { background: linear-gradient(90deg, var(--blue), #6eb5ff); }

.rule-icon-wrap { font-size: 2rem; margin-bottom: 1.25rem; line-height: 1; }
.rule-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--text); margin-bottom: 1.1rem; letter-spacing: -0.01em; }

.rule-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.625rem; }
.rule-card li { font-size: 0.875rem; color: var(--text-2); padding-left: 1.2rem; position: relative; line-height: 1.5; }
.rule-card li::before { content: ''; position: absolute; left: 0; top: 0.55em; width: 5px; height: 5px; border-radius: 50%; background: var(--blue); }

/* ===== GALLERY ===== */
.gallery-section { background: var(--white); }

.photo-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    height: clamp(380px, 55vw, 600px);
    max-width: 980px; margin: 0 auto;
}

.photo-item {
    position: relative; overflow: hidden;
    border-radius: var(--r-lg); cursor: pointer;
    background: var(--off);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}
.photo-item--large { grid-row: 1 / 3; }

.photo-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.photo-item:hover img { transform: scale(1.06); }

.photo-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(10,10,11,0.65));
    transform: translateY(16px); opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
}
.photo-item:hover .photo-overlay { transform: translateY(0); opacity: 1; }
.photo-overlay h3 { font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 0.2rem; }
.photo-overlay p { font-size: 0.78rem; color: rgba(255,255,255,0.8); }

/* ===== NEWS ===== */
.news-section { background: var(--off); }

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.news-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
    display: flex; flex-direction: column;
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.news-card--featured { grid-column: span 2; flex-direction: row; }

.news-img { position: relative; overflow: hidden; flex-shrink: 0; }
.news-card--featured .news-img { width: 44%; min-height: 260px; }
.news-card:not(.news-card--featured) .news-img { height: 175px; }

.news-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.news-card:hover .news-img img { transform: scale(1.05); }

.news-tag {
    position: absolute; top: 0.875rem; left: 0.875rem;
    background: var(--blue); color: #fff;
    font-size: 0.68rem; font-weight: 800;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    letter-spacing: 0.05em; text-transform: uppercase;
}
.news-tag--inline { position: static; display: inline-block; margin-bottom: 0.75rem; }

.news-body { padding: 1.625rem; display: flex; flex-direction: column; flex: 1; }
.news-body h3 { font-size: 1rem; font-weight: 800; color: var(--text); line-height: 1.3; margin-bottom: 0.625rem; letter-spacing: -0.01em; }
.news-card--featured .news-body h3 { font-size: 1.3rem; }
.news-body p { font-size: 0.86rem; color: var(--text-3); line-height: 1.65; flex: 1; margin-bottom: 1rem; }
.news-meta { display: flex; gap: 0.375rem; font-size: 0.76rem; border-top: 1px solid var(--border); padding-top: 1rem; margin-top: auto; }
.news-date { color: var(--text-3); font-weight: 500; }
.news-author { color: var(--blue); font-weight: 700; }
.news-card--text { background: var(--off); }

/* Newsletter */
.newsletter-bar {
    background: linear-gradient(130deg, var(--blue) 0%, #1a7cf0 50%, #0057b3 100%);
    border-radius: var(--r-xl);
    padding: clamp(2rem, 4vw, 2.75rem) clamp(1.75rem, 4vw, 3.5rem);
    display: flex; align-items: center; justify-content: space-between;
    gap: 2rem; flex-wrap: wrap;
    box-shadow: 0 8px 32px rgba(0,113,227,0.3);
}
.newsletter-text h3 { font-size: 1.2rem; font-weight: 800; color: #fff; margin-bottom: 0.25rem; letter-spacing: -0.01em; }
.newsletter-text p { font-size: 0.875rem; color: rgba(255,255,255,0.75); }

.newsletter-form { display: flex; gap: 0.5rem; flex-shrink: 0; }
.newsletter-form input {
    background: rgba(255,255,255,0.15);
    border: 1.5px solid rgba(255,255,255,0.3);
    border-radius: var(--r-sm);
    padding: 0.7rem 1rem;
    font-size: 0.875rem;
    color: #fff; font-family: inherit;
    width: 220px; outline: none;
    transition: border-color 0.2s, background 0.2s;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.55); }
.newsletter-form input:focus { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.22); }
.newsletter-form button {
    background: #fff; color: var(--blue);
    border: none; border-radius: var(--r-sm);
    padding: 0.7rem 1.25rem;
    font-size: 0.875rem; font-weight: 800;
    cursor: pointer; font-family: inherit;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
}
.newsletter-form button:hover { background: var(--off); transform: translateY(-1px); }

/* ===== ABOUT ===== */
.about-section { background: var(--white); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 5rem);
    align-items: start;
    max-width: 1000px; margin: 0 auto;
}

.block-title { font-size: 0.72rem; font-weight: 800; color: var(--text-3); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.25rem; }

.founders-row { display: flex; flex-direction: column; gap: 0.875rem; }

.founder-card {
    display: flex; align-items: center; gap: 1rem;
    background: var(--off);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 1rem 1.25rem;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.founder-card:hover { border-color: var(--blue); transform: translateX(4px); box-shadow: var(--shadow-sm); }

.founder-avatar {
    width: 46px; height: 46px; border-radius: 50%;
    background: linear-gradient(135deg, var(--blue) 0%, #60a5fa 100%);
    color: #fff; font-size: 1.05rem; font-weight: 900;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.founder-card h4 { font-size: 0.9rem; font-weight: 800; color: var(--text); margin-bottom: 0.1rem; }
.founder-card p { font-size: 0.78rem; color: var(--text-3); }

.about-text-block p { font-size: 0.925rem; color: var(--text-2); line-height: 1.75; margin-bottom: 1.125rem; }

.horizont-logo-block {
    display: flex; align-items: center; gap: 1.125rem;
    background: var(--off);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 1.125rem 1.375rem;
    margin-top: 1.5rem;
}
.horizont-logo { height: 44px; width: auto; object-fit: contain; flex-shrink: 0; }
.horizont-logo-block span { font-size: 0.82rem; color: var(--text-2); line-height: 1.55; }

/* ===== SPORTS ===== */
.sports-section { background: var(--off); }

.sports-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.125rem;
    max-width: 880px; margin: 0 auto;
}

.sport-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 1.875rem 1.5rem;
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    position: relative; overflow: hidden;
}
.sport-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--off2); transition: background 0.3s;
}
.sport-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--border2); }
.sport-card:hover::before { background: linear-gradient(90deg, var(--blue), #60a5fa); }

.sport-emoji { font-size: 2.25rem; margin-bottom: 0.875rem; line-height: 1; }
.sport-card h3 { font-size: 0.9rem; font-weight: 800; color: var(--text); margin-bottom: 0.5rem; }
.sport-card p { font-size: 0.8rem; color: var(--text-3); line-height: 1.5; }

/* ===== CONTACT ===== */
.contact-section { background: var(--white); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 5rem);
    align-items: start;
    max-width: 1000px; margin: 0 auto;
}

.contact-text .section-label { display: block; margin-bottom: 0.625rem; }
.contact-text h2 { font-size: clamp(1.75rem, 3.5vw, 2.4rem); font-weight: 900; letter-spacing: -0.03em; color: var(--text); line-height: 1.1; margin-bottom: 1.25rem; }
.contact-text > p { font-size: 0.925rem; color: var(--text-2); line-height: 1.75; margin-bottom: 2rem; }

.contact-details { display: flex; flex-direction: column; gap: 0.875rem; margin-bottom: 2rem; }

.contact-detail {
    display: flex; align-items: flex-start; gap: 1rem;
    background: var(--off);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 1rem 1.2rem;
}
.detail-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 0.1rem; }
.contact-detail strong { display: block; font-size: 0.85rem; font-weight: 800; color: var(--text); margin-bottom: 0.15rem; }
.contact-detail span { font-size: 0.8rem; color: var(--text-3); }

.btn-outline {
    display: inline-flex; align-items: center; gap: 0.5rem;
    border: 1.5px solid var(--border2);
    border-radius: var(--r-md);
    padding: 0.75rem 1.375rem;
    font-size: 0.875rem; font-weight: 700;
    color: var(--text-2);
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.btn-outline:hover { color: var(--text); border-color: var(--text-2); background: var(--off); }

.contact-card {
    background: linear-gradient(135deg, #f0f7ff 0%, #e4f0ff 100%);
    border: 1.5px solid rgba(0,113,227,0.2);
    border-radius: var(--r-xl);
    padding: 2.5rem;
    position: relative; overflow: hidden;
}
.contact-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--blue), #60a5fa);
}
.contact-card h3 { font-size: 1.2rem; font-weight: 800; color: var(--text); margin-bottom: 0.875rem; }
.contact-card > p { font-size: 0.9rem; color: var(--text-2); line-height: 1.65; margin-bottom: 2rem; }

.contact-founders-mini { display: flex; align-items: center; gap: 0.5rem; }
.mini-avatar {
    width: 38px; height: 38px; border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), #60a5fa);
    color: #fff; font-size: 0.8rem; font-weight: 900;
    display: flex; align-items: center; justify-content: center;
    border: 2.5px solid #e4f0ff;
    margin-left: -8px;
}
.mini-avatar:first-child { margin-left: 0; }
.mini-label { font-size: 0.8rem; color: var(--text-2); margin-left: 0.625rem; font-weight: 600; }

/* ===== FOOTER ===== */
.footer {
    background: var(--text);
    padding: 4rem 0 2rem;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.footer-logo { height: 40px; width: auto; object-fit: contain; margin-bottom: 1rem; filter: brightness(0) invert(1) opacity(0.8); }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.65; }
.footer-brand { max-width: 240px; }

.footer-links { display: flex; gap: 4rem; }
.footer-col { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col h5 { font-size: 0.72rem; font-weight: 800; color: rgba(255,255,255,0.7); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.375rem; }
.footer-col a { font-size: 0.875rem; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-col a:hover { color: rgba(255,255,255,0.85); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.75rem; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); text-align: center; }

/* ===== ANIMATIONS ===== */
.animate-ready { opacity: 0; transform: translateY(22px); transition: opacity 0.55s ease, transform 0.55s ease; }
.animate-in { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .hero::before { width: 100%; clip-path: none; height: 50%; top: auto; bottom: 0; opacity: 0.5; }
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-badge { margin: 0 auto 1.5rem; }
    .hero-description { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { display: none; }
    .about-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .sports-grid { grid-template-columns: repeat(2, 1fr); }
    .news-card--featured { flex-direction: column; }
    .news-card--featured .news-img { width: 100%; min-height: 210px; }
    .newsletter-bar { flex-direction: column; text-align: center; }
    .newsletter-form { flex-direction: column; width: 100%; }
    .newsletter-form input { width: 100%; }
}

@media (max-width: 680px) {
    .nav-menu {
        position: fixed; top: var(--nav-h); left: 0; right: 0;
        background: rgba(255,255,255,0.97);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border);
        padding: 1.25rem;
        flex-direction: column; gap: 0.25rem;
        transform: translateY(-100%); opacity: 0; pointer-events: none;
        transition: transform 0.3s ease, opacity 0.3s ease;
        z-index: 999;
    }
    .nav-menu.active { transform: translateY(0); opacity: 1; pointer-events: all; }
    .nav-link { padding: 0.75rem 1rem; width: 100%; }
    .nav-link.cta-nav { width: 100%; text-align: center; margin-top: 0.375rem; }
    .hamburger { display: flex; }

    .news-grid { grid-template-columns: 1fr; }
    .news-card--featured { grid-column: span 1; }

    .photo-grid { grid-template-columns: 1fr; grid-template-rows: auto; height: auto; }
    .photo-item { height: 240px; }
    .photo-item--large { grid-row: auto; }

    .footer-links { flex-direction: column; gap: 2rem; }
    .footer-inner { flex-direction: column; }
    .sports-grid { grid-template-columns: repeat(2, 1fr); }
}
