/* ============================================
   HOME PAGE — 2026 PREMIUM REDESIGN
   Immersive hero · floating status chips
   discover grid · live cams · seasonal tabs
   glance stats · quick-link cards
   ============================================ */

/* ─── HERO — Full immersive experience ─── */
.hero {
    position: relative;
    height: 100vh;
    height: 100dvh;
    min-height: 640px;
    max-height: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}
.hero-bg-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    display: block;
    animation: heroZoom 30s ease-in-out infinite alternate;
}
@keyframes heroZoom {
    0%   { transform: scale(1);    }
    100% { transform: scale(1.06); }
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 21, 37, 0.35)  0%,
        rgba(13, 27, 42, 0.50) 40%,
        rgba(8,  16, 28, 0.82) 100%
    );
    z-index: 1;
}

/* Floating particles */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}
.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(212, 195, 130, 0.3);
    border-radius: 50%;
    animation: particleFall linear infinite;
}
.particle:nth-child(1) { left: 10%; animation-duration: 12s; animation-delay: 0s; width: 2px; height: 2px; }
.particle:nth-child(2) { left: 25%; animation-duration: 16s; animation-delay: 3s; }
.particle:nth-child(3) { left: 45%; animation-duration: 10s; animation-delay: 6s; width: 4px; height: 4px; }
.particle:nth-child(4) { left: 65%; animation-duration: 14s; animation-delay: 2s; }
.particle:nth-child(5) { left: 80%; animation-duration: 18s; animation-delay: 5s; width: 2px; height: 2px; }
.particle:nth-child(6) { left: 92%; animation-duration: 11s; animation-delay: 8s; }
@keyframes particleFall {
    0%   { transform: translateY(20px) translateX(0); opacity: 0; }
    10%  { opacity: 0.5; }
    90%  { opacity: 0.35; }
    100% { transform: translateY(-100vh) translateX(20px); opacity: 0; }
}

/* Hero content */
.hero-content {
    position: relative;
    z-index: 2;
    padding: 1.5rem 2rem;
    max-width: 800px;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0.5rem 1.25rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}
.hero-eyebrow i {
    font-size: 0.75rem;
    color: var(--sky-light);
}
.hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.5px;
    line-height: 1.15;
}
.hero h1 em {
    font-style: normal;
    background: linear-gradient(135deg, #7ab8f5, #5dade2, #a8e6cf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-tagline {
    font-size: 1.15rem;
    opacity: 0.88;
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero buttons */
.hero-actions {
    display: flex;
    gap: 0.85rem;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-highlights {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin: 1.25rem auto 0;
    padding: 0;
    max-width: 760px;
}
.hero-highlights li {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 40px;
    padding: 0.55rem 0.9rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.8rem;
    line-height: 1.35;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.hero-highlights i {
    color: var(--sky-light);
    font-size: 0.78rem;
}
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    background: var(--pine);
    color: var(--white);
    border: 2px solid var(--pine);
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    min-height: 48px;
}
.btn-hero-primary:hover {
    background: var(--pine-light);
    border-color: var(--pine-light);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 42, 58, 0.4);
}
.btn-hero-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.35);
    color: var(--white);
    border-radius: 10px;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    min-height: 48px;
}
.btn-hero-ghost:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.6);
    color: var(--white);
    transform: translateY(-2px);
}

/* ─── LIVE STATUS PANEL ─── */
.hero-status-shell {
    position: absolute;
    bottom: 1.35rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    width: min(980px, calc(100% - 2rem));
    padding: 1rem;
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(10, 21, 37, 0.56) 0%, rgba(13, 27, 42, 0.36) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.24);
}
.hero-status-copy {
    text-align: center;
    margin-bottom: 0.85rem;
}
.hero-status-kicker {
    display: inline-block;
    margin-bottom: 0.35rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.68);
}
.hero-status-copy p {
    margin: 0;
    font-size: 0.96rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}
.hero-status-bar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
}
.status-chip {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    height: 100%;
    min-height: 82px;
    padding: 0.85rem 0.95rem;
    background: rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.status-chip:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.35);
    color: var(--white);
    transform: translateY(-3px);
}
.status-chip i {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-top: 0.1rem;
}
.chip-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    text-align: left;
    min-width: 0;
}
.chip-label {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    opacity: 0.62;
    font-weight: 700;
}
.chip-value {
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.3;
}

/* Live dot */
.live-dot-icon {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #e53935;
    border-radius: 50%;
    animation: livePulse 2s ease-in-out infinite;
    flex-shrink: 0;
}
.status-chip--live .live-dot-icon {
    margin-right: 0;
    margin-top: 0.3rem;
}
@keyframes livePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(229, 57, 53, 0.6); }
    50% { opacity: 0.6; box-shadow: 0 0 0 4px rgba(229, 57, 53, 0); }
}

/* Scroll hint */
.scroll-hint {
    position: absolute;
    bottom: 10.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    color: rgba(255, 255, 255, 0.45);
    animation: scrollBounce 2.5s ease-in-out infinite;
}
.scroll-hint-text {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}
.scroll-hint i { font-size: 0.85rem; }
@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(6px); }
}

/* ─── SECTION HEADS ─── */
.section-head {
    text-align: center;
    margin-bottom: 2.5rem;
}
.section-head .section-title {
    margin-bottom: 0.5rem;
}
.section-head .section-subtitle {
    margin: 0 auto;
}

/* ─── DARK SECTION ─── */
.section-dark {
    background: var(--summit);
    padding: var(--gap-xl) 0;
}
.section-title--light { color: var(--white); }
.section-subtitle--light { color: rgba(255, 255, 255, 0.6); }

/* ─── OUTLINE LIGHT BUTTON ─── */
.btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 44px;
    padding: 0.65rem 1.35rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}
.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
}

/* ─── DISCOVER GRID ─── */
.discover-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 210px;
    gap: 1rem;
}
.discover-hero-tile {
    grid-column: span 2;
    grid-row: span 2;
}
.discover-tile {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    text-decoration: none;
    color: var(--white);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    box-shadow: var(--shadow-md);
}
.discover-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    color: var(--white);
}
.discover-tile-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}
.discover-tile:hover .discover-tile-bg {
    transform: scale(1.08);
}
/* Fallback color when no image */
.discover-tile .discover-tile-bg {
    background-color: hsl(var(--tile-hue, 200), 35%, 28%);
}

.discover-tile-body {
    position: relative;
    z-index: 2;
    padding: 1.25rem;
    width: 100%;
    background: linear-gradient(transparent 0%, rgba(0, 0, 0, 0.75) 100%);
}
.tile-icon {
    width: 28px;
    height: 28px;
    margin-bottom: 0.4rem;
    filter: brightness(0) invert(1);
    opacity: 0.85;
}
.discover-tile-body h3 {
    font-size: 1.05rem;
    margin-bottom: 0.2rem;
    font-weight: 700;
}
.discover-tile-body p {
    font-size: 0.78rem;
    opacity: 0.8;
    line-height: 1.45;
}
.discover-hero-tile .discover-tile-body h3 { font-size: 1.35rem; }
.discover-hero-tile .discover-tile-body p { font-size: 0.9rem; }
.discover-hero-tile .tile-icon { width: 36px; height: 36px; }

/* ─── LIVE NOW ─── */
.live-now-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.live-now-cam {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: var(--white);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 0.65rem;
    transition: all 0.3s ease;
}
.live-now-cam:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
}
.live-now-thumb-wrap {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
}
.live-now-thumb { width: 100%; height: 100%; object-fit: cover; display: block; }
.live-now-name { font-weight: 600; font-size: 0.92rem; line-height: 1.3; }
.live-now-source { color: rgba(255, 255, 255, 0.5); font-size: 0.78rem; }
.live-now-fallback {
    grid-column: 1 / -1;
    padding: 1.5rem;
    border: 1px dashed rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}
.live-now-fallback a { color: var(--sky-light); }
.live-now-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

/* ─── SEASONAL TABS ─── */
.season-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}
.season-tab {
    padding: 0.6rem 1.2rem;
    border: 2px solid var(--border);
    border-radius: 25px;
    background: var(--white);
    color: var(--text);
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    min-height: 44px;
}
.season-tab:hover {
    border-color: var(--pine);
    color: var(--pine);
}
.season-tab.active {
    background: var(--pine);
    color: var(--white);
    border-color: var(--pine);
    box-shadow: 0 4px 15px rgba(26, 42, 58, 0.3);
}
.season-content { display: none; }
.season-content.active {
    display: block;
    animation: fadeSlideIn 0.4s ease;
}
@keyframes fadeSlideIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.season-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.season-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--white);
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--pine);
    transition: all 0.3s ease;
}
.season-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.season-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    margin-top: 0.1rem;
    filter: brightness(0) saturate(100%) invert(15%) sepia(25%) saturate(1400%) hue-rotate(180deg) brightness(95%) contrast(88%);
}
.season-item h4 {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    color: var(--pine);
    font-weight: 700;
}
.season-item p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.55;
    margin: 0;
}

/* ─── BANNER GALLERY ─── */
.banner-gallery {
    position: relative;
    height: 300px;
    overflow: hidden;
}
.banner-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.8s ease-in-out;
}
.banner-slide.active { opacity: 1; }
.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 40%, rgba(0, 0, 0, 0.55) 100%);
    z-index: 1;
}
.banner-caption {
    position: absolute;
    bottom: 1.75rem;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 2;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    font-family: var(--font-heading);
    font-style: italic;
}

/* ─── GLANCE LAYOUT (About section) ─── */
.glance-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-lg);
    align-items: start;
}
.glance-stats .section-title { text-align: left; }
.glance-intro {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}
.stat-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.stat {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--white);
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}
.stat:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--pine);
    line-height: 1;
    margin-bottom: 0.4rem;
    font-family: var(--font-heading);
}
.stat-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 600;
}

/* Glance icon grid (right column) */
.glance-visual {
    padding-top: 1rem;
}
.glance-icon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.glance-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 0.75rem;
    background: var(--white);
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    cursor: default;
}
.glance-icon-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.glance-icon-item img {
    width: 40px;
    height: 40px;
    filter: brightness(0) saturate(100%) invert(15%) sepia(25%) saturate(1400%) hue-rotate(180deg) brightness(95%) contrast(88%);
}
.glance-icon-item span {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* ─── QUICK LINKS GRID ─── */
.quick-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.quick-link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    text-decoration: none;
    color: var(--text);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}
.quick-link-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--pine);
    color: var(--text);
}
.qlc-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--pine), var(--pine-light));
    color: var(--white);
    border-radius: 14px;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}
.quick-link-card:hover .qlc-icon {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(26, 42, 58, 0.3);
}
.quick-link-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--pine);
}
.quick-link-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.55;
}

/* ═══════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ═══════════════════════════════════════════ */

@media (max-width: 1100px) {
    .discover-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 190px;
    }
    .discover-hero-tile {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 1024px) {
    .glance-layout { grid-template-columns: 1fr; }
    .glance-stats .section-title { text-align: center; }
    .glance-intro { text-align: center; }
    .live-now-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .quick-grid { grid-template-columns: repeat(2, 1fr); }
    .season-list { grid-template-columns: 1fr 1fr; }
    .hero-status-bar { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px), (max-height: 760px) {
    .hero {
        height: auto;
        max-height: none;
        min-height: calc(100dvh - var(--nav-height));
        justify-content: flex-start;
        gap: 1.25rem;
        padding: clamp(2.75rem, 8vh, 4.5rem) 0 5rem;
    }
    .hero-content {
        max-width: 700px;
        padding: 0 1.25rem;
    }
    .hero-status-shell {
        position: relative;
        left: auto;
        bottom: auto;
        transform: none;
        width: min(100%, 720px);
        margin: 0 1rem;
    }
    .hero-status-copy {
        text-align: left;
    }
    .scroll-hint {
        display: none;
    }
}

@media (max-width: 768px) {
    /* Hero */
    .hero {
        min-height: calc(100dvh - var(--nav-height));
    }
    .hero h1 { font-size: 2.5rem; }
    .hero-tagline { font-size: 0.95rem; }
    .hero-eyebrow { font-size: 0.7rem; padding: 0.4rem 1rem; letter-spacing: 1.5px; }
    .hero-actions { gap: 0.6rem; }
    .btn-hero-primary,
    .btn-hero-ghost {
        font-size: 0.9rem;
        padding: 0.75rem 1.25rem;
    }
    .hero-highlights {
        max-width: 100%;
        gap: 0.55rem;
    }
    .hero-highlights li {
        padding: 0.55rem 0.8rem;
        font-size: 0.77rem;
    }

    /* Status panel */
    .hero-status-shell {
        padding: 0.85rem;
    }
    .hero-status-copy p {
        font-size: 0.9rem;
    }
    .hero-status-bar {
        grid-template-columns: 1fr 1fr;
        gap: 0.6rem;
    }
    .status-chip {
        min-width: 0;
        min-height: 74px;
        padding: 0.75rem 0.8rem;
    }

    /* Discover */
    .discover-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 170px;
    }
    .discover-hero-tile { grid-column: span 2; }

    /* Seasons */
    .season-list { grid-template-columns: 1fr; }

    /* Live cams */
    .live-now-strip {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.75rem;
        gap: 0.75rem;
    }
    .live-now-cam {
        min-width: 240px;
        flex: 0 0 240px;
        scroll-snap-align: start;
    }

    /* Stats */
    .stat-row { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .stat { padding: 1.15rem 0.75rem; }
    .stat-number { font-size: 1.75rem; }

    /* Quick links */
    .quick-grid { grid-template-columns: 1fr 1fr; }
    .quick-link-card { padding: 1.5rem 1rem; }

    /* Banner */
    .banner-gallery { height: 220px; }

    /* Glance icons */
    .glance-icon-grid { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
    .glance-icon-item { padding: 1rem 0.5rem; }
    .glance-icon-item img { width: 32px; height: 32px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2rem; }
    .hero-tagline { font-size: 0.88rem; margin-bottom: 1.5rem; }
    .hero-eyebrow { font-size: 0.6rem; letter-spacing: 1px; }
    .hero-content {
        padding: 0 1rem;
    }
    .hero-highlights {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 0.5rem;
    }
    .hero-highlights li {
        width: 100%;
        justify-content: center;
        border-radius: 16px;
        text-align: center;
    }

    .hero-status-shell {
        width: calc(100% - 1.2rem);
        margin: 0 0.6rem;
        padding: 0.75rem;
        border-radius: 20px;
    }
    .hero-status-copy {
        margin-bottom: 0.7rem;
    }
    .hero-status-copy p {
        font-size: 0.86rem;
    }
    .hero-status-bar {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    .status-chip {
        min-height: 68px;
    }

    .scroll-hint { display: none; }

    .discover-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 150px;
    }
    .discover-hero-tile {
        grid-column: span 1;
        grid-auto-rows: auto;
    }

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

    .season-tabs { justify-content: center; }
    .season-tab { font-size: 0.8rem; padding: 0.5rem 0.9rem; }

    .glance-icon-grid { grid-template-columns: repeat(3, 1fr); gap: 0.6rem; }
    .glance-icon-item { padding: 0.85rem 0.4rem; }
    .glance-icon-item img { width: 28px; height: 28px; }
    .glance-icon-item span { font-size: 0.68rem; }

    .banner-gallery { height: 180px; }
    .banner-caption { font-size: 0.88rem; bottom: 1rem; }
}

/* ─── TOUCH FRIENDLINESS ─── */
@media (hover: none) and (pointer: coarse) {
    .discover-tile:hover { transform: none; }
    .discover-tile:active { transform: scale(0.98); }
    
    .status-chip:hover { transform: none; }
    .status-chip:active { transform: scale(0.97); }
    
    .quick-link-card:hover { transform: none; }
    .quick-link-card:active { transform: translateY(-2px); }
    
    .season-item:hover { transform: none; }
    .stat:hover { transform: none; }
    .glance-icon-item:hover { transform: none; }
    
    .btn-hero-primary:hover { transform: none; }
    .btn-hero-primary:active { transform: scale(0.97); }
    .btn-hero-ghost:hover { transform: none; }
    .btn-hero-ghost:active { transform: scale(0.97); }
}

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
    .hero-bg { animation: none; }
    .particle { animation: none; display: none; }
    .scroll-hint { animation: none; }
    .discover-tile-bg { transition: none; }
    .banner-slide { transition-duration: 0.3s; }
    .season-content.active { animation: none; }
}
