/* ========================================
   VOICES STAGE — listener spotlight
   ======================================== */

.voices-stage {
    position: relative;
    isolation: isolate;
    width: 100%;
    padding: clamp(3.75rem, 10vw, 6.5rem) 0 clamp(4rem, 11vw, 7rem);
    overflow: hidden;
    background:
        radial-gradient(ellipse 80% 55% at 15% 10%, rgba(205, 178, 42, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse 70% 50% at 90% 90%, rgba(241, 227, 0, 0.06) 0%, transparent 50%),
        linear-gradient(165deg, #0e0d0d 0%, #1a1a1a 42%, #292929 100%);
    border-top: 1px solid rgba(205, 178, 42, 0.14);
    border-bottom: 1px solid rgba(205, 178, 42, 0.08);
    color: #fff;
}

.voices-stage__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.55;
    animation: voicesGlowDrift 12s ease-in-out infinite alternate;
}

.voices-stage__glow--a {
    width: min(48vw, 420px);
    height: min(48vw, 420px);
    top: -12%;
    left: -8%;
    background: rgba(205, 178, 42, 0.18);
}

.voices-stage__glow--b {
    width: min(40vw, 360px);
    height: min(40vw, 360px);
    bottom: -18%;
    right: -6%;
    background: rgba(241, 227, 0, 0.1);
    animation-delay: -4s;
}

@keyframes voicesGlowDrift {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(18px, 24px) scale(1.08); }
}

.voices-stage__scan {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 3px,
        rgba(255, 255, 255, 0.015) 3px,
        rgba(255, 255, 255, 0.015) 4px
    );
    mask-image: linear-gradient(180deg, transparent, #000 20%, #000 80%, transparent);
    opacity: 0.7;
}

.voices-stage__wave {
    position: absolute;
    left: 50%;
    bottom: 8%;
    transform: translateX(-50%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 5px;
    height: 72px;
    width: min(90%, 640px);
    z-index: 0;
    opacity: 0.28;
    pointer-events: none;
}

.voices-stage__wave span {
    flex: 1;
    max-width: 10px;
    height: 20%;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--accent-bright), var(--accent-color));
    animation: voicesBarPulse 1.4s ease-in-out infinite;
    transform-origin: bottom center;
}

.voices-stage__wave span:nth-child(odd) { animation-duration: 1.1s; }
.voices-stage__wave span:nth-child(3n) { animation-duration: 1.7s; }
.voices-stage__wave span:nth-child(1) { animation-delay: 0s; }
.voices-stage__wave span:nth-child(2) { animation-delay: 0.08s; }
.voices-stage__wave span:nth-child(3) { animation-delay: 0.16s; }
.voices-stage__wave span:nth-child(4) { animation-delay: 0.05s; }
.voices-stage__wave span:nth-child(5) { animation-delay: 0.22s; }
.voices-stage__wave span:nth-child(6) { animation-delay: 0.12s; }
.voices-stage__wave span:nth-child(7) { animation-delay: 0.3s; }
.voices-stage__wave span:nth-child(8) { animation-delay: 0.18s; }
.voices-stage__wave span:nth-child(9) { animation-delay: 0.04s; }
.voices-stage__wave span:nth-child(10) { animation-delay: 0.26s; }
.voices-stage__wave span:nth-child(11) { animation-delay: 0.14s; }
.voices-stage__wave span:nth-child(12) { animation-delay: 0.2s; }
.voices-stage__wave span:nth-child(13) { animation-delay: 0.07s; }
.voices-stage__wave span:nth-child(14) { animation-delay: 0.28s; }
.voices-stage__wave span:nth-child(15) { animation-delay: 0.1s; }
.voices-stage__wave span:nth-child(16) { animation-delay: 0.24s; }
.voices-stage__wave span:nth-child(17) { animation-delay: 0.15s; }
.voices-stage__wave span:nth-child(18) { animation-delay: 0.02s; }
.voices-stage__wave span:nth-child(19) { animation-delay: 0.19s; }
.voices-stage__wave span:nth-child(20) { animation-delay: 0.11s; }

@keyframes voicesBarPulse {
    0%, 100% { height: 18%; opacity: 0.45; }
    50% { height: 100%; opacity: 1; }
}

.voices-stage__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(1.75rem, 4vw, 2.75rem);
}

.voices-stage__head {
    text-align: center;
    max-width: 34rem;
}

.voices-stage__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.95rem 0.4rem 0.65rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(205, 178, 42, 0.32);
}

.voices-stage__live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-color);
    box-shadow: 0 0 0 0 rgba(205, 178, 42, 0.5);
    animation: voicesLivePulse 1.8s ease-out infinite;
}

@keyframes voicesLivePulse {
    0% { box-shadow: 0 0 0 0 rgba(205, 178, 42, 0.55); }
    70% { box-shadow: 0 0 0 10px rgba(205, 178, 42, 0); }
    100% { box-shadow: 0 0 0 0 rgba(205, 178, 42, 0); }
}

.voices-stage__title {
    margin: 0 0 0.65rem;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 6vw, 3.4rem);
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.05;
    color: #fff;
}

.voices-stage__title em {
    font-style: normal;
    color: var(--accent-color);
    position: relative;
}

.voices-stage__title em::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.05em;
    height: 0.12em;
    background: linear-gradient(90deg, transparent, var(--accent-bright), transparent);
    opacity: 0.55;
    animation: voicesUnderline 3s ease-in-out infinite;
}

@keyframes voicesUnderline {
    0%, 100% { transform: scaleX(0.55); opacity: 0.35; }
    50% { transform: scaleX(1); opacity: 0.75; }
}

.voices-stage__lede {
    margin: 0;
    font-size: clamp(0.95rem, 2.2vw, 1.1rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.62);
}

.voices-stage__stage {
    width: 100%;
    max-width: 46rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.35rem;
}

.voices-stage__quote {
    position: relative;
    margin: 0;
    width: 100%;
    padding: clamp(2rem, 5vw, 3rem) clamp(1.35rem, 4vw, 2.75rem) clamp(1.5rem, 4vw, 2.25rem);
    text-align: center;
    border-radius: 0;
    background: transparent;
    border: none;
    min-height: clamp(12rem, 32vw, 15.5rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.voices-stage__quote.is-leaving {
    opacity: 0;
    transform: translateY(12px) scale(0.985);
}

.voices-stage__quote.is-entering {
    animation: voicesQuoteIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes voicesQuoteIn {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.97);
        filter: blur(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.voices-stage__mark {
    position: absolute;
    top: -0.15em;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Montserrat', Georgia, serif;
    font-size: clamp(5rem, 16vw, 8.5rem);
    font-weight: 800;
    line-height: 0.7;
    color: rgba(205, 178, 42, 0.14);
    pointer-events: none;
    user-select: none;
    animation: voicesMarkFloat 5s ease-in-out infinite;
}

@keyframes voicesMarkFloat {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-8px); }
}

.voices-stage__text {
    position: relative;
    z-index: 1;
    margin: 0 0 1.35rem;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: clamp(1.15rem, 3.2vw, 1.65rem);
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: -0.01em;
    color: rgba(255, 255, 255, 0.95);
    text-wrap: balance;
}

.voices-stage__byline {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
}

.voices-stage__stars {
    display: inline-flex;
    gap: 0.28rem;
    color: var(--accent-color);
    font-size: 0.82rem;
    letter-spacing: 0.05em;
}

.voices-stage__stars .is-off {
    color: rgba(255, 255, 255, 0.2);
}

.voices-stage__who {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.voices-stage__name {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
}

.voices-stage__place {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(205, 178, 42, 0.85);
}

.voices-stage__place::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-right: 0.45rem;
    border-radius: 50%;
    background: var(--accent-color);
    vertical-align: 0.1em;
    box-shadow: 0 0 10px rgba(205, 178, 42, 0.55);
}

.voices-stage__progress {
    width: min(100%, 14rem);
    height: 2px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    overflow: hidden;
}

.voices-stage__progress-bar {
    display: block;
    height: 100%;
    width: 0%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-bright));
    transform-origin: left center;
}

.voices-stage__progress-bar.is-running {
    animation: voicesProgress linear forwards;
}

@keyframes voicesProgress {
    from { width: 0%; }
    to { width: 100%; }
}

.voices-stage__controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.voices-stage__nav {
    width: 2.85rem;
    height: 2.85rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.85rem;
    transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.voices-stage__nav:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--primary-color);
    transform: scale(1.06);
}

.voices-stage__nav:active {
    transform: scale(0.96);
}

.voices-stage__count {
    min-width: 3.5rem;
    text-align: center;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.45);
}

.voices-stage__cast {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(0.65rem, 2vw, 1rem);
    width: 100%;
    max-width: 40rem;
    padding-top: 0.35rem;
}

.voices-stage__avatar {
    appearance: none;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 0.45rem 0.5rem;
    min-width: 4.25rem;
    border-radius: 18px;
    transition:
        transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.28s ease;
}

.voices-stage__avatar:hover {
    transform: translateY(-4px);
    border-color: rgba(205, 178, 42, 0.4);
    background: rgba(205, 178, 42, 0.08);
}

.voices-stage__avatar.is-active {
    border-color: var(--accent-color);
    background: linear-gradient(160deg, rgba(205, 178, 42, 0.2) 0%, rgba(41, 41, 41, 0.5) 100%);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(205, 178, 42, 0.25);
    transform: translateY(-6px) scale(1.04);
}

.voices-stage__initials {
    width: 2.65rem;
    height: 2.65rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: var(--accent-color);
    background: linear-gradient(145deg, #292929 0%, #141414 100%);
    border: 1px solid rgba(205, 178, 42, 0.35);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
    transition: background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.voices-stage__avatar.is-active .voices-stage__initials {
    background: linear-gradient(145deg, var(--accent-color) 0%, var(--accent-gold) 100%);
    color: var(--primary-color);
    box-shadow: 0 0 18px rgba(205, 178, 42, 0.45);
}

.voices-stage__avatar-name {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.voices-stage__avatar.is-active .voices-stage__avatar-name {
    color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 640px) {
    .voices-stage__avatar {
        min-width: 3.55rem;
        padding: 0.45rem 0.3rem 0.4rem;
        border-radius: 14px;
    }

    .voices-stage__initials {
        width: 2.35rem;
        height: 2.35rem;
        font-size: 0.65rem;
    }

    .voices-stage__avatar-name {
        font-size: 0.58rem;
    }

    .voices-stage__wave {
        opacity: 0.18;
        height: 48px;
        bottom: 5%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .voices-stage__glow,
    .voices-stage__wave span,
    .voices-stage__live-dot,
    .voices-stage__mark,
    .voices-stage__title em::after,
    .voices-stage__quote.is-entering,
    .voices-stage__progress-bar.is-running {
        animation: none !important;
    }

    .voices-stage__quote.is-leaving {
        transition: none;
    }
}


/* 
  Gee Radio - Global Styles
  Primary Color: #292929 (Charcoal)
  Accent Color: #cdb22a (Gold)
  Bright Accent: #f1e300 (Electric Yellow)
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Montserrat:wght@700;800&family=Outfit:wght@500;600;700&display=swap');

:root {
    --primary-color: #292929;
    --accent-color: #cdb22a;
    --accent-bright: #f1e300;
    --accent-gold: #ddb837;
    --brand-cream: #fffef8;
    --brand-cream-muted: #f7f6f2;
    --text-light: #FFFFFF;
    --text-dark: #292929;
    --near-black: #0e0d0d;
    --bg-light: #f3f5f7;
    --border-color: #e5e5e5;
    --transition: all 0.3s ease;
    
    /* Fluid Typography */
    --fs-h1: clamp(2.5rem, 8vw, 4.5rem);
    --fs-h2: clamp(2rem, 5vw, 3rem);
    --fs-h3: clamp(1.5rem, 3vw, 2rem);
    --fs-body: clamp(1rem, 2vw, 1.125rem);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
    width: 100%;
    min-width: 0;
}

html {
    width: 100%;
}

h1, h2, h3, .brand-name {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Layout Containers — fluid width so large desktops aren’t boxed */
.container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding-inline: clamp(1.15rem, 4vw, 3.25rem);
}

@media (min-width: 1800px) {
    .container {
        max-width: 1720px;
        padding-inline: clamp(1.5rem, 3.5vw, 4rem);
    }

    .news-desk.container {
        padding-inline: clamp(1.5rem, 3.5vw, 4rem);
    }

    .career-page.container,
    .career-page.section-padding {
        padding-inline: clamp(1.5rem, 3.5vw, 4rem);
    }
}

.section-padding {
    padding: 80px 0;
}

/* Mobile drawer header (logo + close) — hidden on desktop */
.nav-drawer__head {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Shared music-bar loader (preloader + inline sections) */
.gee-music-bars {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 6px;
    height: 2.75rem;
}

.gee-music-bars__bar {
    width: 7px;
    height: 2.5rem;
    border-radius: 4px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), var(--accent-color));
    transform-origin: bottom center;
    will-change: transform;
    animation: geeMusicBar 0.85s ease-in-out infinite;
}

.gee-music-bars__bar:nth-child(1) { animation-delay: 0s; }
.gee-music-bars__bar:nth-child(2) { animation-delay: 0.1s; }
.gee-music-bars__bar:nth-child(3) { animation-delay: 0.2s; }
.gee-music-bars__bar:nth-child(4) { animation-delay: 0.3s; }
.gee-music-bars__bar:nth-child(5) { animation-delay: 0.4s; }

@keyframes geeMusicBar {
    0%, 100% {
        transform: scaleY(0.28);
        opacity: 0.75;
    }
    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .gee-music-bars__bar {
        animation: none;
        transform: scaleY(0.55);
        opacity: 0.9;
    }
}

/* Global preloader */
.site-preloader {
    position: fixed;
    inset: 0;
    z-index: 2147483646;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(180deg, #292929 0%, #1d1d1d 100%);
    color: rgba(255, 255, 255, 0.92);
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.site-preloader.site-preloader--hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.site-preloader .gee-music-bars {
    margin: 0;
}

.site-preloader__text {
    margin: 0;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

/* Sticky Navbar — full-bleed bar; content uses wider container */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.navbar > .container.nav-container {
    max-width: 1720px;
}

/* Sidebar stays off; bottom player returns on desktop only */
.desktop-layout-sidebar {
    display: none !important;
}

.desktop-bottom-player {
    display: none;
}

@media (min-width: 993px) {
    body {
        padding-bottom: 80px;
    }

    .desktop-bottom-player {
        display: flex;
    }

    /* Top-bar Listen Live removed — stream controls live in the bottom player */
    .nav-container > .live-btn-container {
        display: none;
    }

    .nav-left-group {
        display: flex;
        align-items: center;
    }

    .nav-links {
        gap: clamp(0.85rem, 1.4vw, 1.75rem);
        flex-wrap: nowrap;
    }

    .nav-links > li.nav-drawer__item > a {
        display: inline-flex;
        align-items: center;
        white-space: nowrap;
        font-size: clamp(0.82rem, 1.05vw, 0.95rem);
        font-weight: 500;
        color: var(--text-light);
        border-bottom: 2px solid transparent;
        padding-bottom: 0.15rem;
    }

    .nav-links > li.nav-drawer__item > a:hover,
    .nav-links > li.nav-drawer__item > a.active {
        color: var(--accent-color);
        border-bottom-color: var(--accent-color);
    }

    .nav-links > li.nav-drawer__item > a i,
    .nav-links > li.nav-drawer__item > a svg,
    .nav-drawer__dropdown-label i,
    .nav-drawer__dropdown-label svg,
    .nav-drawer__submenu a i,
    .nav-drawer__submenu a svg {
        display: none;
    }

    .nav-drawer__item--dropdown {
        position: relative;
    }

    .nav-drawer__dropdown-toggle {
        display: inline-flex;
        align-items: center;
        gap: 0.3rem;
        margin: 0;
        padding: 0 0 0.15rem;
        border: none;
        border-bottom: 2px solid transparent;
        background: none;
        color: var(--text-light);
        font: inherit;
        font-size: clamp(0.82rem, 1.05vw, 0.95rem);
        font-weight: 500;
        cursor: pointer;
        white-space: nowrap;
    }

    .nav-drawer__dropdown-toggle:hover,
    .nav-drawer__dropdown-toggle.active,
    .nav-drawer__item--dropdown.is-open .nav-drawer__dropdown-toggle {
        color: var(--accent-color);
        border-bottom-color: var(--accent-color);
    }

    .nav-drawer__dropdown-toggle > svg:last-child {
        width: 0.85rem;
        height: 0.85rem;
        opacity: 0.75;
        transition: transform 0.2s ease;
    }

    .nav-drawer__item--dropdown.is-open .nav-drawer__dropdown-toggle > svg:last-child {
        transform: rotate(180deg);
    }

    .nav-drawer__submenu {
        position: absolute;
        top: calc(100% + 0.75rem);
        left: 50%;
        transform: translateX(-50%);
        min-width: 210px;
        display: none;
        flex-direction: column;
        gap: 0.15rem;
        padding: 0.55rem;
        margin: 0;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 12px;
        background: #1f1f1f;
        box-shadow: 0 14px 32px rgba(0, 0, 0, 0.4);
        z-index: 1100;
    }

    .nav-drawer__submenu[hidden] {
        display: none !important;
    }

    .nav-drawer__item--dropdown.is-open .nav-drawer__submenu {
        display: flex;
    }

    .nav-drawer__submenu a {
        display: block;
        padding: 0.55rem 0.75rem;
        border-radius: 8px;
        color: var(--text-light);
        font-size: 0.9rem;
        font-weight: 500;
        white-space: nowrap;
        border-bottom: none;
    }

    .nav-drawer__submenu a:hover,
    .nav-drawer__submenu a.active {
        color: var(--accent-color);
        background: rgba(255, 255, 255, 0.06);
        border-bottom: none;
    }

    /* Legacy sidebar styles retained but unused while top navbar is active */
    .desktop-layout-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 80px; /* clear bottom player */
        width: 220px;
        display: none;
        flex-direction: column;
        gap: 1.25rem;
        padding: 1rem 0.9rem 1.25rem;
        z-index: 1200;
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        background:
            radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.35) 0%, transparent 45%),
            linear-gradient(180deg, #f1e300 0%, var(--accent-color) 48%, #b89a22 100%);
        border-right: 1px solid rgba(14, 13, 13, 0.12);
        box-shadow: 6px 0 28px rgba(0, 0, 0, 0.18);
        scrollbar-width: thin;
        scrollbar-color: rgba(14, 13, 13, 0.35) transparent;
    }

    .desktop-layout-sidebar__brand {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 88px;
        border-radius: 0;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        flex-shrink: 0;
    }

    .desktop-layout-sidebar__brand img {
        max-width: 172px;
        width: 100%;
        height: auto;
        display: block;
    }

    .desktop-layout-sidebar__nav {
        display: flex;
        flex-direction: column;
        gap: 0.42rem;
        flex: 1 1 auto;
        min-height: 0;
        padding-bottom: 0.35rem;
    }


    .desktop-layout-sidebar__link {
        display: flex;
        align-items: center;
        gap: 0.78rem;
        padding: 0.72rem 0.75rem;
        border-radius: 12px;
        color: #1d1d1d;
        text-decoration: none;
        font-size: 0.98rem;
        font-weight: 600;
        letter-spacing: 0.01em;
        line-height: 1.15;
        transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
    }

    .desktop-layout-sidebar__link i,
    .desktop-layout-sidebar__link svg {
        width: 1.15rem;
        height: 1.15rem;
        flex-shrink: 0;
        stroke-width: 1.75;
        color: #0e0d0d;
        opacity: 0.88;
    }

    .desktop-layout-sidebar__link:hover {
        background: rgba(14, 13, 13, 0.1);
        color: #0e0d0d;
    }

    .desktop-layout-sidebar__link:hover i,
    .desktop-layout-sidebar__link:hover svg {
        color: #0e0d0d;
        opacity: 1;
    }

    .desktop-layout-sidebar__link.active {
        background: #0e0d0d;
        color: #f1e300;
        box-shadow: 0 8px 20px rgba(14, 13, 13, 0.2);
    }

    .desktop-layout-sidebar__link.active i,
    .desktop-layout-sidebar__link.active svg {
        color: #f1e300;
        stroke: #f1e300;
        opacity: 1;
    }

    .desktop-layout-sidebar__dropdown {
        display: flex;
        flex-direction: column;
        gap: 0.2rem;
        margin-top: 0.35rem;
        padding-top: 0.45rem;
        border-top: 1px solid rgba(14, 13, 13, 0.12);
    }

    .desktop-layout-sidebar__dropdown-toggle {
        width: 100%;
        border: none;
        cursor: pointer;
        font: inherit;
        font-weight: 600;
        text-align: left;
        position: relative;
        padding-right: 2rem;
        background: rgba(255, 255, 255, 0.35);
        box-shadow: inset 0 0 0 1px rgba(14, 13, 13, 0.08);
    }

    .desktop-layout-sidebar__chevron {
        position: absolute;
        right: 0.72rem;
        top: 50%;
        transform: translateY(-50%);
        width: 0.95rem !important;
        height: 0.95rem !important;
        opacity: 0.7;
        transition: transform 0.2s ease;
    }

    .desktop-layout-sidebar__dropdown.is-open .desktop-layout-sidebar__chevron {
        transform: translateY(-50%) rotate(180deg);
    }

    .desktop-layout-sidebar__dropdown.is-open .desktop-layout-sidebar__dropdown-toggle {
        background: rgba(14, 13, 13, 0.1);
        color: #0e0d0d;
        box-shadow: none;
    }

    .desktop-layout-sidebar__submenu {
        display: none;
        flex-direction: column;
        gap: 0.15rem;
        padding: 0.15rem 0 0.35rem 0.55rem;
        margin: 0 0 0.15rem 0.55rem;
        border-left: 2px solid rgba(14, 13, 13, 0.18);
    }

    .desktop-layout-sidebar__dropdown.is-open .desktop-layout-sidebar__submenu {
        display: flex;
    }

    .desktop-layout-sidebar__sublink {
        display: flex;
        align-items: center;
        gap: 0.65rem;
        padding: 0.58rem 0.7rem;
        border-radius: 10px;
        color: #292929;
        text-decoration: none;
        font-size: 0.9rem;
        font-weight: 600;
        letter-spacing: 0.01em;
        transition: background 0.2s ease, color 0.2s ease;
    }

    .desktop-layout-sidebar__sublink i,
    .desktop-layout-sidebar__sublink svg {
        width: 1rem;
        height: 1rem;
        flex-shrink: 0;
        stroke-width: 1.75;
        color: #0e0d0d;
        opacity: 0.85;
    }

    .desktop-layout-sidebar__sublink:hover {
        background: rgba(14, 13, 13, 0.1);
        color: #0e0d0d;
    }

    .desktop-layout-sidebar__sublink:hover i,
    .desktop-layout-sidebar__sublink:hover svg {
        opacity: 1;
    }

    .desktop-layout-sidebar__sublink.active {
        background: #0e0d0d;
        color: #f1e300;
    }

    .desktop-layout-sidebar__sublink.active i,
    .desktop-layout-sidebar__sublink.active svg {
        color: #f1e300;
        stroke: #f1e300;
        opacity: 1;
    }

    .desktop-bottom-player {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1.1rem;
        padding: 0.6rem 1.1rem;
        z-index: 1305;
        background: linear-gradient(180deg, #2f3235 0%, #232628 100%);
        border-top: 1px solid rgba(255, 255, 255, 0.14);
        box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.28);
        position: fixed;
    }

    .desktop-bottom-player__controls {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        min-width: 175px;
        z-index: 1;
    }

    .desktop-bottom-player__btn {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: #19220f;
        background: var(--accent-color);
        transition: transform 0.15s ease, filter 0.2s ease;
    }

    .desktop-bottom-player__btn i {
        font-size: 0.95rem;
    }

    .desktop-bottom-player__btn:hover {
        filter: brightness(1.05);
    }

    .desktop-bottom-player__btn:active {
        transform: scale(0.95);
    }

    #desktop-player-pause {
        background: #f4f4f4;
        color: #1f2224;
    }

    .desktop-bottom-player:not(.playing) #desktop-player-pause {
        opacity: 0.6;
    }

    .desktop-bottom-player.playing #desktop-player-play {
        opacity: 0.6;
    }

    .desktop-bottom-player__meta {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        display: inline-flex;
        align-items: center;
        gap: 0.45rem;
        color: #fff;
        font-size: 0.92rem;
        max-width: min(72vw, 920px);
        pointer-events: none;
        white-space: nowrap;
    }

    .desktop-bottom-player__live-dot {
        width: 8px;
        height: 8px;
        flex: 0 0 auto;
        border-radius: 50%;
        background: #9ea3a8;
        box-shadow: 0 0 8px rgba(158, 163, 168, 0.55);
    }

    .desktop-bottom-player.playing .desktop-bottom-player__live-dot {
        background: #1cff63;
        box-shadow: 0 0 10px rgba(28, 255, 99, 0.7);
    }

    .desktop-bottom-player__status {
        color: #ff6161;
        font-size: 0.76rem;
        font-weight: 800;
        letter-spacing: 0.08em;
        flex: 0 0 auto;
    }

    .desktop-bottom-player.playing .desktop-bottom-player__status {
        color: #8cffaa;
    }

    .desktop-bottom-player__track {
        overflow: hidden;
        text-overflow: ellipsis;
        opacity: 0.92;
        font-weight: 700;
        min-width: 0;
    }

    .desktop-bottom-player__sep {
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.35);
        flex: 0 0 auto;
    }

    .desktop-bottom-player__flip {
        display: inline-grid;
        align-items: center;
        perspective: 700px;
        min-width: 0;
        max-width: 18rem;
        line-height: 1.2;
    }

    .desktop-bottom-player__flip[hidden] {
        display: none !important;
    }

    .desktop-bottom-player__flip-inner {
        display: grid;
        grid-template-areas: "stack";
        transform-style: preserve-3d;
        transition: transform 0.65s cubic-bezier(0.4, 0.15, 0.2, 1);
    }

    .desktop-bottom-player__flip.is-flipped .desktop-bottom-player__flip-inner {
        transform: rotateX(180deg);
    }

    .desktop-bottom-player__flip-face {
        grid-area: stack;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        font-size: 0.82rem;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.72);
    }

    .desktop-bottom-player__flip-face--back {
        transform: rotateX(180deg);
        color: rgba(255, 246, 168, 0.92);
    }

    .desktop-bottom-player__flip.is-host-only .desktop-bottom-player__flip-face--front {
        visibility: hidden;
    }

    .desktop-bottom-player__meta:not(.has-details) .desktop-bottom-player__sep,
    .desktop-bottom-player__meta:not(.has-details) .desktop-bottom-player__flip {
        display: none;
    }

    .desktop-bottom-player__volume {
        display: inline-flex;
        align-items: center;
        gap: 0.45rem;
        color: rgba(255, 255, 255, 0.9);
        min-width: 170px;
        justify-content: flex-end;
        z-index: 1;
    }

    .desktop-bottom-player__mute {
        width: 28px;
        height: 28px;
        border: none;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.08);
        color: rgba(255, 255, 255, 0.92);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: filter 0.2s ease, transform 0.15s ease;
    }

    .desktop-bottom-player__mute:hover {
        filter: brightness(1.08);
    }

    .desktop-bottom-player__mute:active {
        transform: scale(0.94);
    }

    .desktop-bottom-player__mute.is-muted {
        color: #ff7d7d;
    }

    #desktop-volume-slider {
        width: 110px;
        accent-color: var(--accent-color);
    }
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    display: block;
    transition: var(--transition);
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.nav-links a.active {
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
}

.nav-links a.nav-drawer__logo,
.nav-links a.nav-drawer__logo.active,
.nav-links a.nav-drawer__logo:hover {
    border-bottom: none !important;
    text-decoration: none !important;
    box-shadow: none !important;
}

/* Listen Live Button (header player — scoped to .live-btn-container) */
.live-btn-container {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

/* Desktop / default: promo + mobile player rows hidden */
.stream-dock-promo {
    display: none;
}

.btn-live__progress-bar {
    display: none;
}

.btn-live__desktop-only {
    display: contents;
}

.btn-live__mobile-only {
    display: none;
}

.live-btn-container .btn-live {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.35rem 1rem 0.35rem 0.4rem;
    border-radius: 100px;
    border: 1px solid rgba(205, 178, 42, 0.28);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.04) 100%);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: #fff;
    cursor: pointer;
    font-family: inherit;
    box-shadow:
        0 4px 22px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
    transition:
        transform 0.22s cubic-bezier(0.34, 1.2, 0.64, 1),
        box-shadow 0.22s ease,
        border-color 0.22s ease,
        background 0.25s ease;
    overflow: visible;
}

.live-btn-container .btn-live:hover {
    border-color: rgba(205, 178, 42, 0.48);
    box-shadow:
        0 8px 28px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(205, 178, 42, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
    transform: translateY(-1px);
}

.live-btn-container .btn-live:active {
    transform: translateY(0) scale(0.98);
}

.live-btn-container .btn-live:focus-visible {
    outline: 2px solid rgba(205, 178, 42, 0.85);
    outline-offset: 3px;
}

.live-btn-container .btn-live:focus:not(:focus-visible) {
    outline: none;
}

.live-btn-container .btn-live__play-halo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 50%;
    background: linear-gradient(145deg, #fffef0 0%, var(--accent-color) 55%, #ddb837 100%);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.35) inset,
        0 2px 14px rgba(205, 178, 42, 0.35);
}

.live-btn-container .btn-live__play-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.85rem;
    height: 1.85rem;
    border-radius: 50%;
    background: linear-gradient(160deg, rgba(41, 41, 41, 0.95) 0%, rgba(1, 40, 34, 0.98) 100%);
    color: var(--accent-color);
}

.live-btn-container .btn-live__icon {
    font-size: 0.62rem;
    width: 1em;
    height: 1em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: translateX(1px);
}

.live-btn-container .btn-live__copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.08rem;
    line-height: 1.05;
    text-align: left;
    padding-right: 0.15rem;
}

.live-btn-container .btn-live__title {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fff;
}

.live-btn-container .btn-live__subtitle {
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.52);
}

.live-btn-container .btn-live.playing {
    border-color: rgba(0, 230, 118, 0.45);
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.22) 0%, rgba(255, 255, 255, 0.06) 100%);
    box-shadow:
        0 4px 26px rgba(0, 200, 83, 0.25),
        0 0 0 1px rgba(0, 230, 118, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.live-btn-container .btn-live.playing .btn-live__play-halo {
    background: linear-gradient(145deg, #69f0ae 0%, #00c853 50%, #009624 100%);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.25) inset,
        0 2px 16px rgba(0, 200, 83, 0.45);
}

.live-btn-container .btn-live.playing .btn-live__play-inner {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.live-btn-container .live-indicator {
    position: absolute;
    top: -7px;
    right: -2px;
    background: linear-gradient(135deg, #ff5252 0%, #d50000 100%);
    color: #fff;
    font-size: 0.5rem;
    font-weight: 800;
    padding: 3px 6px;
    border-radius: 6px;
    letter-spacing: 0.12em;
    z-index: 2;
    pointer-events: none;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(213, 0, 0, 0.45);
    display: none;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.live-btn-container:has(.btn-live.playing) .live-indicator {
    display: none;
}

.live-btn-container .live-indicator::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: inherit;
    z-index: -1;
    opacity: 0.55;
    animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
    75%, 100% {
        transform: scale(1.75);
        opacity: 0;
    }
}

/* Audio Visualizer */
.live-btn-container .audio-visualizer {
    display: none;
    align-items: flex-end;
    justify-content: center;
    gap: 2px;
    width: 12px;
    height: 12px;
}

.live-btn-container .btn-live.playing .btn-live__icon {
    display: none;
}

.live-btn-container .btn-live.playing .audio-visualizer {
    display: flex;
}

.live-btn-container .audio-visualizer span {
    display: inline-block;
    width: 2px;
    background-color: currentColor;
    border-radius: 1px;
    animation: bounce-bars 1.2s infinite ease-in-out;
}

.live-btn-container .audio-visualizer span:nth-child(1) { animation-delay: 0.0s; height: 100%; }
.live-btn-container .audio-visualizer span:nth-child(2) { animation-delay: 0.2s; height: 60%; }
.live-btn-container .audio-visualizer span:nth-child(3) { animation-delay: 0.4s; height: 80%; }
.live-btn-container .audio-visualizer span:nth-child(4) { animation-delay: 0.6s; height: 40%; }

@keyframes bounce-bars {
    0%, 100% {
        transform: scaleY(0.4);
    }
    50% {
        transform: scaleY(1);
    }
}

/* About section CTA (was mis-classed as btn-live) */
.btn-learn-more {
    display: inline-block;
    width: auto;
    text-align: center;
    padding: 0.55rem 1.4rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    background: var(--accent-color);
    color: var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-learn-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 18px rgba(205, 178, 42, 0.35);
}

/* ========================================
   HOME — About (modern block + waveform)
   ======================================== */

.about-modern {
    position: relative;
    width: 100%;
    overflow: hidden;
    color: var(--text-light);
    font-synthesis: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    background:
        radial-gradient(ellipse 90% 70% at 15% 20%, rgba(205, 178, 42, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 70% 55% at 92% 85%, rgba(0, 200, 167, 0.12) 0%, transparent 48%),
        linear-gradient(168deg, #1d1d1d 0%, var(--primary-color) 42%, #1d1d1d 100%);
    border-block: 1px solid rgba(205, 178, 42, 0.1);
}

.about-modern__noise {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.about-modern__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    opacity: 0.35;
}

.about-modern__glow--1 {
    width: min(420px, 55vw);
    height: min(420px, 55vw);
    top: -18%;
    right: -8%;
    background: rgba(205, 178, 42, 0.12);
}

.about-modern__glow--2 {
    width: min(320px, 45vw);
    height: min(320px, 45vw);
    bottom: -12%;
    left: -5%;
    background: rgba(0, 180, 150, 0.2);
}

.about-modern__container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2.5rem, 6vw, 4rem);
    align-items: center;
}

@media (min-width: 900px) {
    .about-modern__container {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        gap: clamp(2rem, 4vw, 3.5rem);
    }
}

.about-modern__copy {
    max-width: 36rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-modern__topline {
    margin: 0 0 clamp(1.65rem, 4.5vw, 2.6rem);
    flex-shrink: 0;
}

.about-modern__listener-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.4rem 0.85rem 0.4rem 0.4rem;
    border-radius: 999px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 10px 28px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.about-modern__live-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.65rem 0.35rem 0.5rem;
    border-radius: 999px;
    background: rgba(14, 13, 13, 0.55);
    border: 1px solid rgba(241, 227, 0, 0.18);
}

.about-modern__live-dot {
    flex-shrink: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #1cff63;
    box-shadow: 0 0 0 0 rgba(28, 255, 99, 0.45);
    animation: aboutLiveDotPulse 2s ease-out infinite;
}

.about-modern__live-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1;
}

@keyframes aboutLiveDotPulse {
    0% { box-shadow: 0 0 0 0 rgba(28, 255, 99, 0.55); }
    70% { box-shadow: 0 0 0 8px rgba(28, 255, 99, 0); }
    100% { box-shadow: 0 0 0 0 rgba(28, 255, 99, 0); }
}

.about-modern__listener-divider {
    width: 1px;
    height: 1.15rem;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.28), transparent);
    flex-shrink: 0;
}

.about-modern__listener-text {
    display: inline-flex;
    align-items: baseline;
    gap: 0.45rem;
    padding-right: 0.15rem;
    min-width: 0;
}

.about-modern__listener-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.03em;
    line-height: 1;
    min-width: 1.5ch;
    color: var(--accent-bright);
    text-shadow: 0 0 18px rgba(241, 227, 0, 0.25);
    transition: color 0.25s ease;
}

.about-modern__listener-label {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.62);
    white-space: nowrap;
}

@media (max-width: 420px) {
    .about-modern__listener-badge {
        gap: 0.55rem;
        padding-right: 0.7rem;
    }

    .about-modern__listener-label {
        font-size: 0.72rem;
    }
}

.about-modern__location {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.52);
    margin: 0 0 1.15rem;
    line-height: 1.6;
    max-width: 36rem;
}

.about-modern__location i {
    margin-top: 0.1rem;
    color: rgba(205, 178, 42, 0.82);
    font-size: 0.78rem;
    opacity: 0.95;
}

.about-modern__kicker {
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(180, 200, 120, 0.55);
    margin: 0 0 0.4rem;
}

.about-modern__title {
    font-family: 'Outfit', 'Montserrat', system-ui, sans-serif;
    color: var(--accent-color);
    margin: 0 0 clamp(1.05rem, 2.8vw, 1.5rem);
    font-size: clamp(1.65rem, 4.2vw, 2.35rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: 0.06em;
    text-shadow: 0 2px 28px rgba(0, 0, 0, 0.3);
}

.about-modern__lead {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: clamp(0.98rem, 2vw, 1.125rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.86);
    margin: 0 0 clamp(1.35rem, 3.5vw, 2.1rem);
    line-height: 1.72;
    letter-spacing: 0.006em;
    max-width: 34rem;
}

.about-modern__body {
    font-size: clamp(0.94rem, 1.8vw, 1.02rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.72);
    margin: 0 0 1.85rem;
    line-height: 1.72;
    max-width: 34rem;
}

.about-modern .btn-learn-more.about-modern__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0.62rem 1.35rem 0.62rem 1.5rem;
    border-radius: 999px;
    font-family: 'Outfit', 'Inter', system-ui, sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.96);
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.14) 0%,
        rgba(255, 255, 255, 0.05) 45%,
        rgba(41, 41, 41, 0.35) 100%
    );
    border: 1px solid rgba(205, 178, 42, 0.32);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.08) inset,
        0 10px 36px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition:
        transform 0.25s cubic-bezier(0.34, 1.15, 0.64, 1),
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease,
        color 0.2s ease;
}

.about-modern .btn-learn-more.about-modern__cta:hover {
    transform: translateY(-2px);
    color: #fff;
    border-color: rgba(205, 178, 42, 0.55);
    background: linear-gradient(
        135deg,
        rgba(205, 178, 42, 0.2) 0%,
        rgba(255, 255, 255, 0.12) 50%,
        rgba(1, 50, 44, 0.45) 100%
    );
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.12) inset,
        0 14px 40px rgba(0, 0, 0, 0.32),
        0 0 28px rgba(205, 178, 42, 0.12);
}

.about-modern .btn-learn-more.about-modern__cta:focus-visible {
    outline: 2px solid rgba(205, 178, 42, 0.85);
    outline-offset: 3px;
}

.about-modern__cta-icon {
    font-size: 0.72rem;
    opacity: 0.9;
    transition: transform 0.25s ease;
}

.about-modern .btn-learn-more.about-modern__cta:hover .about-modern__cta-icon {
    transform: translateX(4px);
}

.about-modern__visual {
    display: flex;
    justify-content: center;
}

@media (min-width: 900px) {
    .about-modern__visual {
        justify-content: flex-end;
    }
}

.about-modern__visual-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    width: min(100%, 520px);
    margin-inline: auto;
    padding: clamp(1rem, 3vw, 1.35rem);
    border-radius: clamp(18px, 2.5vw, 26px);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.08),
        0 28px 64px rgba(0, 0, 0, 0.35);
}

@media (min-width: 640px) {
    .about-modern__visual-card {
        display: grid;
        grid-template-columns: minmax(72px, 28%) minmax(0, 1fr);
        grid-template-rows: auto;
        align-items: center;
        gap: clamp(0.65rem, 2vw, 1.1rem);
    }
}

.about-modern__waveform {
    position: relative;
    order: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2px;
    width: 100%;
    height: 68px;
    padding: 0 0.15rem;
    pointer-events: none;
    opacity: 0.72;
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .about-modern__waveform {
        order: unset;
        grid-column: 1;
        grid-row: 1;
        width: 100%;
        height: min(240px, 32vw);
        min-height: 140px;
        max-height: 100%;
        align-self: center;
        gap: 3px;
        padding: 0 4%;
        opacity: 0.88;
    }
}

.about-modern__waveform span {
    flex: 1;
    min-width: 2px;
    max-width: 10px;
    height: 100%;
    border-radius: 3px 3px 0 0;
    background: linear-gradient(
        to top,
        rgba(205, 178, 42, 0.15) 0%,
        var(--accent-color) 38%,
        rgba(255, 255, 255, 0.55) 100%
    );
    transform-origin: bottom center;
    transform: scaleY(0.22);
    animation: aboutWaveBar 0.85s ease-in-out infinite;
}

.about-modern__waveform span:nth-child(odd) {
    animation-duration: 0.72s;
}

.about-modern__waveform span:nth-child(3n) {
    animation-duration: 1.05s;
}

.about-modern__waveform span:nth-child(4n + 1) { animation-delay: 0s; }
.about-modern__waveform span:nth-child(4n + 2) { animation-delay: 0.12s; }
.about-modern__waveform span:nth-child(4n + 3) { animation-delay: 0.24s; }
.about-modern__waveform span:nth-child(4n + 4) { animation-delay: 0.08s; }
.about-modern__waveform span:nth-child(5) { animation-delay: 0.18s; }
.about-modern__waveform span:nth-child(7) { animation-delay: 0.3s; }
.about-modern__waveform span:nth-child(11) { animation-delay: 0.35s; }
.about-modern__waveform span:nth-child(13) { animation-delay: 0.05s; }
.about-modern__waveform span:nth-child(17) { animation-delay: 0.28s; }
.about-modern__waveform span:nth-child(19) { animation-delay: 0.15s; }
.about-modern__waveform span:nth-child(23) { animation-delay: 0.22s; }

@keyframes aboutWaveBar {
    0%, 100% { transform: scaleY(0.18); opacity: 0.75; }
    50% { transform: scaleY(1); opacity: 1; }
}

.about-modern__figure {
    position: relative;
    z-index: 1;
    order: 1;
    margin: 0;
    border-radius: clamp(14px, 2vw, 20px);
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.1) inset,
        0 18px 48px rgba(0, 0, 0, 0.45);
}

.about-modern__figure .about-modern__visual-accent {
    position: absolute;
    z-index: 2;
    top: 0.65rem;
    right: 0.65rem;
}

@media (min-width: 640px) {
    .about-modern__figure {
        order: unset;
        grid-column: 2;
        grid-row: 1;
    }
}

.about-modern__photo {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.about-modern__visual-accent {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(205, 178, 42, 0.95) 0%, #ddb837 100%);
    opacity: 0.22;
    pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
    .about-modern__live-dot {
        animation: none;
        box-shadow: 0 0 0 2px rgba(0, 230, 118, 0.35);
    }

    .about-modern__waveform span {
        animation: none;
        transform: scaleY(0.55);
        opacity: 0.65;
    }
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    border-radius: 2px;
    transform-origin: center;
    transition: transform 0.28s cubic-bezier(0.32, 0.72, 0, 1), opacity 0.2s ease;
}

/* Hero Sections — full-bleed visual plane */
.hero, .slider-container {
    position: relative;
    width: 100%;
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    background-size: cover;
    background-position: center;
}

.team-hero .hero-overlay {
    background:
        radial-gradient(circle at 20% 20%, rgba(205, 178, 42, 0.22) 0%, rgba(205, 178, 42, 0) 32%),
        linear-gradient(155deg, rgba(1, 40, 34, 0.84) 0%, rgba(41, 41, 41, 0.58) 48%, rgba(1, 28, 24, 0.82) 100%);
}

.team-hero__content {
    max-width: 900px;
}

.team-hero__badge {
    display: inline-flex;
    align-items: center;
    padding: 0.36rem 0.82rem;
    margin-bottom: 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(205, 178, 42, 0.55);
    background: rgba(255, 255, 255, 0.08);
    color: #fffed0;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.team-hero__highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 0.8rem;
}

.team-hero__highlights span {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    padding: 0.45rem 0.78rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #f8fffc;
    font-size: 0.8rem;
    font-weight: 700;
}

@media (max-width: 768px) {
    .team-hero__highlights span {
        font-size: 0.74rem;
    }
}

.slider-container {
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(41, 41, 41, 0.8), rgba(41, 41, 41, 0.4));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: clamp(1rem, 4vw, 2rem) 20px;
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-top: 0;
}

.hero h1 {
    font-size: var(--fs-h1);
    word-break: break-word;
    margin-bottom: 1rem;
    line-height: 1.3;
    opacity: 0;
    transform: translate3d(0, 36px, 0) scale(0.985);
    filter: blur(8px);
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translate3d(0, 30px, 0) scale(0.99);
    filter: blur(6px);
}

.slide.active .hero h1,
.slide.active .hero p,
.slide.active .hero-cta-group {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
}

.slide.active .hero h1 {
    animation: hero-text-title-in 950ms cubic-bezier(0.2, 0.7, 0, 1) 120ms both;
}

.slide.active .hero p {
    animation: hero-text-sub-in 1050ms cubic-bezier(0.2, 0.7, 0, 1) 300ms both;
}

.slide.slide-exiting .hero h1,
.slide.slide-exiting .hero p {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
}

.slide.slide-exiting .hero h1 {
    animation: hero-text-title-out-type 620ms steps(18, end) both;
}

.slide.slide-exiting .hero p {
    animation: hero-text-sub-out-type 620ms steps(24, end) 80ms both;
}

.slide:nth-child(odd).active .hero h1 {
    animation-name: hero-text-title-in-left;
}

.slide:nth-child(odd).active .hero p {
    animation-name: hero-text-sub-in-left;
}

.slide:nth-child(even).active .hero h1 {
    animation-name: hero-text-title-in-right;
}

.slide:nth-child(even).active .hero p {
    animation-name: hero-text-sub-in-right;
}

@keyframes hero-text-title-in {
    0% {
        opacity: 0;
        transform: translate3d(0, 40px, 0) scale(0.98);
        filter: blur(8px);
    }
    65% {
        opacity: 1;
        transform: translate3d(0, -3px, 0) scale(1.006);
        filter: blur(0);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
        filter: blur(0);
    }
}

@keyframes hero-text-sub-in {
    0% {
        opacity: 0;
        transform: translate3d(0, 32px, 0) scale(0.99);
        filter: blur(6px);
    }
    70% {
        opacity: 1;
        transform: translate3d(0, -2px, 0) scale(1.003);
        filter: blur(0);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
        filter: blur(0);
    }
}

@keyframes hero-text-title-in-left {
    0% {
        opacity: 0;
        transform: translate3d(-56px, 34px, 0) scale(0.98);
        filter: blur(8px);
    }
    65% {
        opacity: 1;
        transform: translate3d(2px, -3px, 0) scale(1.006);
        filter: blur(0);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
        filter: blur(0);
    }
}

@keyframes hero-text-sub-in-left {
    0% {
        opacity: 0;
        transform: translate3d(-44px, 28px, 0) scale(0.99);
        filter: blur(6px);
    }
    70% {
        opacity: 1;
        transform: translate3d(2px, -2px, 0) scale(1.003);
        filter: blur(0);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
        filter: blur(0);
    }
}

@keyframes hero-text-title-in-right {
    0% {
        opacity: 0;
        transform: translate3d(56px, 34px, 0) scale(0.98);
        filter: blur(8px);
    }
    65% {
        opacity: 1;
        transform: translate3d(-2px, -3px, 0) scale(1.006);
        filter: blur(0);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
        filter: blur(0);
    }
}

@keyframes hero-text-sub-in-right {
    0% {
        opacity: 0;
        transform: translate3d(44px, 28px, 0) scale(0.99);
        filter: blur(6px);
    }
    70% {
        opacity: 1;
        transform: translate3d(-2px, -2px, 0) scale(1.003);
        filter: blur(0);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
        filter: blur(0);
    }
}

@keyframes hero-text-title-out-type {
    0% {
        opacity: 1;
        width: 100%;
        filter: blur(0);
        transform: translate3d(0, 0, 0);
    }
    100% {
        opacity: 0;
        width: 0;
        filter: blur(3px);
        transform: translate3d(0, -4px, 0);
    }
}

@keyframes hero-text-sub-out-type {
    0% {
        opacity: 1;
        width: 100%;
        filter: blur(0);
        transform: translate3d(0, 0, 0);
    }
    100% {
        opacity: 0;
        width: 0;
        filter: blur(2px);
        transform: translate3d(0, -3px, 0);
    }
}

/* Inner pages: compact hero banner (homepage uses .slider-container rules) */
@media (max-width: 600px) {
    header.hero {
        min-height: 48vh;
    }
}

@media (max-width: 768px) {
    .slider-container .hero-content {
        max-width: min(100%, 26rem);
        padding-left: max(12px, env(safe-area-inset-left, 0px));
        padding-right: max(12px, env(safe-area-inset-right, 0px));
        padding-bottom: max(0.75rem, env(safe-area-inset-bottom, 0px));
    }

    .slider-container .hero h1 {
        font-size: clamp(1.55rem, 6.5vw, 2.25rem);
        line-height: 1.15;
        margin-bottom: 0.65rem;
    }

    .slider-container .hero p {
        font-size: clamp(0.92rem, 3.4vw, 1.08rem);
        line-height: 1.45;
        margin-bottom: 1.35rem;
        max-width: 22rem;
    }

    .slider-container .hero-overlay {
        background: linear-gradient(
            165deg,
            rgba(1, 48, 42, 0.78) 0%,
            rgba(41, 41, 41, 0.52) 42%,
            rgba(1, 28, 24, 0.82) 100%
        );
    }
}

@media (max-width: 600px) {
    .hero-content {
        max-width: 95vw;
        padding-left: max(8px, env(safe-area-inset-left, 0px));
        padding-right: max(8px, env(safe-area-inset-right, 0px));
    }

    header.hero h1 {
        font-size: clamp(1.2rem, 6vw, 2rem);
    }

    header.hero p {
        font-size: clamp(0.8rem, 2.5vw, 1rem);
    }
}

/* Hero CTA buttons (per slide) */
.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0.25rem;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease 0.45s, transform 0.7s ease 0.45s;
}

.slide.active .hero-cta-group {
    opacity: 1;
    transform: translateY(0);
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 2.85rem;
    padding: 0.7rem 1.45rem;
    border-radius: 999px;
    font-family: 'Outfit', 'Montserrat', system-ui, sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none !important;
    cursor: pointer;
    border: 1px solid transparent;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.hero-cta-btn i {
    font-size: 0.78em;
}

.hero-cta-btn--primary {
    color: var(--primary-color) !important;
    background: linear-gradient(145deg, #fffef0 0%, var(--accent-color) 55%, var(--accent-gold) 100%);
    border-color: rgba(205, 178, 42, 0.45);
    box-shadow: 0 8px 28px rgba(205, 178, 42, 0.32);
}

.hero-cta-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(205, 178, 42, 0.42);
    filter: brightness(1.04);
}

.hero-cta-btn--primary.playing {
    color: #fff !important;
    background: linear-gradient(145deg, #292929 0%, #1a1a1a 100%);
    border-color: rgba(205, 178, 42, 0.55);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.hero-cta-btn--ghost {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-cta-btn--ghost:hover {
    color: var(--primary-color) !important;
    background: #fff;
    border-color: #fff;
    transform: translateY(-2px);
}

.hero-cta-btn:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 3px;
}

@media (max-width: 600px) {
    .hero-cta-group {
        width: 100%;
        max-width: 20rem;
        gap: 0.6rem;
    }

    .hero-cta-btn {
        flex: 1 1 calc(50% - 0.35rem);
        min-width: 0;
        padding: 0.7rem 0.9rem;
        font-size: 0.7rem;
        letter-spacing: 0.08em;
    }
}

/* Hero player — glass “broadcast bar” (legacy; kept for other pages if needed) */
.hero-play-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: min(560px, 94vw);
    padding: 0.5rem 0.65rem 0.5rem 0.5rem;
    margin-left: 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.6s;
    border-radius: 100px;
    border: 1px solid rgba(205, 178, 42, 0.28);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow:
        0 12px 48px rgba(0, 0, 0, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.btn-hero-play {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    border: none;
    cursor: pointer;
    background: transparent;
    position: relative;
    border-radius: 50%;
    transition: transform 0.22s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.btn-hero-play:focus-visible {
    outline: 2px solid rgba(205, 178, 42, 0.9);
    outline-offset: 4px;
}

.btn-hero-play:focus:not(:focus-visible) {
    outline: none;
}

.btn-hero-play:hover {
    transform: scale(1.05);
}

.btn-hero-play:active {
    transform: scale(0.97);
}

.btn-hero-play__halo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(56px, 11vw, 84px);
    height: clamp(56px, 11vw, 84px);
    border-radius: 50%;
    background: linear-gradient(145deg, #fffef0 0%, var(--accent-color) 55%, #ddb837 100%);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.35) inset,
        0 4px 22px rgba(205, 178, 42, 0.38);
    position: relative;
}

.btn-hero-play__halo::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(205, 178, 42, 0.35);
    animation: hero-halo-pulse 2.4s ease-out infinite;
    pointer-events: none;
}

@keyframes hero-halo-pulse {
    0% { transform: scale(1); opacity: 0.65; }
    100% { transform: scale(1.35); opacity: 0; }
}

.btn-hero-play__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72%;
    height: 72%;
    border-radius: 50%;
    background: linear-gradient(160deg, rgba(41, 41, 41, 0.96) 0%, rgba(1, 36, 30, 0.98) 100%);
    color: var(--accent-color);
}

.btn-hero-play__icon {
    font-size: clamp(0.85rem, 2.2vw, 1.15rem);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: translateX(2px);
}

.btn-hero-play.playing .btn-hero-play__halo {
    background: linear-gradient(145deg, #69f0ae 0%, #00c853 50%, #009624 100%);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.28) inset,
        0 4px 26px rgba(0, 200, 83, 0.45);
}

.btn-hero-play.playing .btn-hero-play__halo::after {
    border-color: rgba(0, 230, 118, 0.4);
    animation-name: hero-halo-pulse-playing;
}

@keyframes hero-halo-pulse-playing {
    0% { transform: scale(1); opacity: 0.55; }
    100% { transform: scale(1.32); opacity: 0; }
}

.btn-hero-play.playing .btn-hero-play__inner {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.btn-hero-play.playing .btn-hero-play__icon {
    display: none;
}

.btn-hero-play .hero-audio-visualizer {
    display: none;
    align-items: flex-end;
    justify-content: center;
    gap: 2px;
    width: clamp(14px, 3.5vw, 18px);
    height: clamp(14px, 3.5vw, 18px);
}

.btn-hero-play.playing .hero-audio-visualizer {
    display: flex;
}

.btn-hero-play .hero-audio-visualizer span {
    display: inline-block;
    width: 3px;
    background-color: currentColor;
    border-radius: 1px;
    animation: bounce-bars 1.2s infinite ease-in-out;
}

.btn-hero-play .hero-audio-visualizer span:nth-child(1) { animation-delay: 0.0s; height: 100%; }
.btn-hero-play .hero-audio-visualizer span:nth-child(2) { animation-delay: 0.2s; height: 60%; }
.btn-hero-play .hero-audio-visualizer span:nth-child(3) { animation-delay: 0.4s; height: 80%; }
.btn-hero-play .hero-audio-visualizer span:nth-child(4) { animation-delay: 0.6s; height: 40%; }

/* Hero Song Info */
.hero-song-info {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.2rem;
    flex: 1 1 140px;
    min-width: 0;
    margin: 0;
    padding: 0.35rem 1rem 0.35rem 1rem;
    text-align: left;
    max-width: 240px;
    opacity: 1 !important;
    z-index: 10;
    background: transparent;
    border: none;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0;
    box-shadow: none;
}

.hero-now-playing {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
    opacity: 1 !important;
}

.hero-song-title {
    font-size: clamp(0.88rem, 2.2vw, 1.05rem);
    font-weight: 700;
    color: var(--accent-color);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.45);
    letter-spacing: 0.02em;
    animation: fadeInSong 0.5s ease;
    opacity: 1 !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

@keyframes fadeInSong {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-cta-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.12rem;
    padding: 0.25rem 0.85rem 0.25rem 1rem;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

.hero-cta-title {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.1;
}

.hero-cta-sub {
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.52);
    line-height: 1.1;
}

@media (max-width: 600px) {
    /* Horizontal pill: CTA never truncates; middle flexes and song title ellipsizes */
    .hero-play-wrapper {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: flex-start;
        align-self: center;
        border-radius: 100px;
        padding: 0.28rem 0.38rem 0.28rem 0.28rem;
        width: 100%;
        max-width: min(24rem, calc(100vw - 1.25rem));
        margin-left: auto;
        margin-right: auto;
    }

    .btn-hero-play {
        align-self: center;
        flex-shrink: 0;
    }

    .btn-hero-play__halo {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
    }

    .btn-hero-play__halo::after {
        inset: -2px;
    }

    .btn-hero-play__icon {
        font-size: 0.72rem;
    }

    .btn-hero-play .hero-audio-visualizer {
        width: 12px;
        height: 12px;
    }

    .btn-hero-play .hero-audio-visualizer span {
        width: 2px;
    }

    .hero-song-info {
        align-items: center;
        text-align: center;
        flex: 1 1 0;
        min-width: 0;
        max-width: none;
        margin: 0;
        border-left: 1px solid rgba(255, 255, 255, 0.18);
        border-top: none;
        padding: 0.12rem 0.35rem 0.12rem 0.42rem;
    }

    .hero-song-info .hero-now-playing,
    .hero-song-info .hero-song-title {
        width: 100%;
        text-align: center;
    }

    .hero-cta-copy {
        align-items: flex-start;
        text-align: left;
        border-left: 1px solid rgba(255, 255, 255, 0.15);
        border-top: none;
        padding: 0.12rem 0.36rem 0.12rem 0.4rem;
        margin-top: 0;
        flex-shrink: 0;
        flex-grow: 0;
        width: max-content;
        max-width: none;
    }

    .hero-cta-title {
        font-size: 0.52rem;
        letter-spacing: 0.05em;
        white-space: nowrap;
        overflow: visible;
        text-overflow: clip;
        max-width: none;
    }

    .hero-cta-sub {
        font-size: 0.45rem;
        letter-spacing: 0.05em;
        white-space: nowrap;
        overflow: visible;
        text-overflow: clip;
        max-width: none;
    }

    .hero-now-playing {
        font-size: 0.5rem;
        letter-spacing: 0.08em;
    }

    .hero-song-title {
        font-size: 0.78rem;
    }
}

/* Very narrow phones: same rules — CTA still must not clip */
@media (max-width: 380px) {
    .hero-play-wrapper {
        padding: 0.26rem 0.32rem 0.26rem 0.26rem;
        max-width: calc(100vw - 1rem);
    }

    .hero-cta-copy {
        padding-left: 0.32rem;
        padding-right: 0.28rem;
    }

    .btn-hero-play__halo {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
    }

    .hero-cta-title {
        font-size: 0.5rem;
        letter-spacing: 0.04em;
    }

    .hero-cta-sub {
        font-size: 0.42rem;
        letter-spacing: 0.04em;
    }

    .hero-song-title {
        font-size: 0.72rem;
    }
}

/* Slider (Index Only) */
.slider-container {
    height: 85vh;
    min-height: 420px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    will-change: opacity, background-size, background-position;
}

/* Mobile / small tablet: shorter hero, clean image crop */
@media (max-width: 768px) {
    .hero.slider-container,
    .slider-container {
        height: 58vh;
        min-height: 300px;
        max-height: 480px;
        height: 58dvh;
        min-height: max(300px, 52dvh);
        max-height: min(480px, 70dvh);
    }

    .slider-container .slide {
        animation: none !important;
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
    }

    .slider-container .hero-content {
        max-width: min(100%, 26rem);
        width: 100%;
        padding: 0.75rem max(12px, env(safe-area-inset-left, 0px)) 1rem max(12px, env(safe-area-inset-right, 0px));
        margin-top: 0;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .slider-container {
        height: 52vh;
        min-height: 280px;
        max-height: 420px;
        height: 52dvh;
        min-height: max(280px, 48dvh);
        max-height: min(420px, 62dvh);
    }

    .slider-container .slide {
        background-position: center 30% !important;
    }

    .slider-container .hero h1 {
        font-size: clamp(1.4rem, 6.2vw, 1.95rem);
        margin-bottom: 0.45rem;
    }

    .slider-container .hero p {
        font-size: clamp(0.86rem, 3.2vw, 1rem);
        margin-bottom: 1rem;
    }

    .slider-container .hero-cta-btn {
        min-height: 2.55rem;
        padding: 0.6rem 0.85rem;
    }
}

@media (min-width: 769px) {
    .slider-container .hero-content {
        margin-top: clamp(1.5rem, 6vh, 4rem);
    }
}

.slide.active {
    opacity: 1;
    animation: hero-kenburns 5s ease-out forwards;
}

@keyframes hero-kenburns {
    0% {
        background-size: 100%;
        background-position: 50% 50%;
    }
    100% {
        background-size: 112%;
        background-position: 53% 47%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .slide,
    .slide.active {
        animation: none !important;
        background-size: cover;
        background-position: center;
    }

    .hero h1,
    .hero p,
    .slide.active .hero h1,
    .slide.active .hero p,
    .slide.slide-exiting .hero h1,
    .slide.slide-exiting .hero p {
        animation: none !important;
        opacity: 1;
        transform: none;
        filter: none;
        width: auto;
        overflow: visible;
        white-space: normal;
    }
}

/* Grid Sections (Shows, News, Team) */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.team-card-img {
    height: 340px;
    background: linear-gradient(180deg, #f5f7f7 0%, #eef2f1 100%);
    display: flex;
    align-items: stretch;
    justify-content: center;
    padding: 0;
}

.team-card-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 22%;
    border-radius: 0;
    filter: saturate(1.05) contrast(1.04);
}

.team-card-photo--vbox {
    object-position: center 20%;
}

.team-card-photo--wakini {
    object-position: center 18%;
}

.team-card {
    border-radius: 14px;
    border: 1px solid rgba(41, 41, 41, 0.08);
}

.team-card-content {
    padding-top: 1.2rem;
}

.team-card .card-tag {
    margin-bottom: 0.78rem;
    font-size: 0.69rem;
    letter-spacing: 0.06em;
}

.team-card__name {
    margin: 0;
    font-size: clamp(1.35rem, 2.3vw, 1.62rem);
    letter-spacing: 0.01em;
    color: #17201d;
}

.team-card__role {
    margin: 0.42rem 0 0.18rem;
    font-size: 0.96rem;
    font-weight: 700;
    color: #13483d;
}

.team-card__meta {
    display: inline-flex;
    align-items: center;
    gap: 0.48rem;
    margin: 0 0 0.86rem;
    padding: 0.26rem 0.58rem;
    border-radius: 999px;
    background: rgba(41, 41, 41, 0.08);
    color: #24544a;
    font-size: 0.78rem;
    font-weight: 700;
}

.team-card__bio {
    margin: 0;
    color: #424d49;
    line-height: 1.68;
    font-size: 0.97rem;
}

.team-card__socials {
    display: flex;
    align-items: center;
    gap: 0.62rem;
    margin-top: 1rem;
}

.team-card__socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f0f3f2;
    color: #1a5549;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.team-card__socials a:hover {
    transform: translateY(-2px);
    background: #292929;
    color: #cdb22a;
}

.card-content {
    padding: 1.5rem;
}

.card-tag {
    display: inline-block;
    background: var(--primary-color);
    color: var(--accent-color);
    padding: 0.2rem 0.6rem;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.card h3 {
    margin-bottom: 0.5rem;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

.btn-submit {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
    width: 100%;
}

.btn-submit:hover {
    background-color: #1a1a1a;
    color: var(--accent-bright);
}

/* Section Dividers & Backgrounds */
.section-relative {
    position: relative;
    z-index: 1;
}

.divider-top-slanted {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: inherit;
    clip-path: polygon(0 0, 100% 100%, 100% 0);
    transform: translateY(-99%);
}

.bg-pattern {
    background-image: radial-gradient(var(--primary-color) 0.5px, transparent 0.5px);
    background-size: 20px 20px;
    background-color: #f9f9f9;
    opacity: 0.1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.bg-dark-section {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.bg-accent-section {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.bg-warm-section {
    background-color: #FFFDE7;
}

.latest-news-bg {
    position: relative;
    z-index: 1;
    width: 100%;
}

.latest-news-bg .latest-news-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 6, 6, 0.753); /* dark green overlay, adjust opacity as needed */
    z-index: 2;
    pointer-events: none;
}

.latest-news-bg .container,
.latest-news-bg .bg-pattern {
    position: relative;
    z-index: 3;
}
/* Latest News Section Fixed Background */
.latest-news-bg {
    background: url('../img/news.webp') no-repeat center center fixed;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.latest-news-bg .bg-pattern {
    background: none;
}

/* ------------------------------------------------------------------
   Trending Kenyan songs (YouTube) — index
   ------------------------------------------------------------------ */

/* ------------------------------------------------------------------
   Gee Charts — curated Kenya hot list (YouTube API under the hood)
   ------------------------------------------------------------------ */

.gee-charts {
    position: relative;
    overflow: hidden;
    color: #f7f4ea;
    background:
        radial-gradient(ellipse 90% 70% at 0% 0%, rgba(241, 227, 0, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 70% 60% at 100% 100%, rgba(205, 178, 42, 0.08) 0%, transparent 48%),
        linear-gradient(165deg, #121212 0%, #1c1b19 42%, #0e0d0d 100%);
}

.gee-charts__glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(70px);
}

.gee-charts__glow--a {
    width: min(42vw, 420px);
    height: min(42vw, 420px);
    top: -12%;
    left: -8%;
    background: rgba(205, 178, 42, 0.18);
}

.gee-charts__glow--b {
    width: min(36vw, 360px);
    height: min(36vw, 360px);
    right: -6%;
    bottom: -10%;
    background: rgba(241, 227, 0, 0.08);
}

.gee-charts__grid-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.22;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 90%);
}

.gee-charts__inner {
    position: relative;
    z-index: 1;
}

.gee-charts__head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 1rem 1.5rem;
    margin-bottom: clamp(1.35rem, 3vw, 2.1rem);
}

.gee-charts__brand {
    flex-shrink: 0;
    width: 3.35rem;
    height: 3.35rem;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #fffef0 0%, var(--accent-color) 55%, var(--accent-gold) 100%);
    box-shadow: 0 10px 28px rgba(205, 178, 42, 0.35);
}

.gee-charts__brand-bars {
    display: inline-flex;
    align-items: flex-end;
    gap: 3px;
    height: 1.15rem;
}

.gee-charts__brand-bars i {
    display: block;
    width: 3px;
    border-radius: 2px;
    background: #0e0d0d;
    animation: geeChartsBar 1.1s ease-in-out infinite;
}

.gee-charts__brand-bars i:nth-child(1) { height: 45%; animation-delay: 0s; }
.gee-charts__brand-bars i:nth-child(2) { height: 80%; animation-delay: 0.12s; }
.gee-charts__brand-bars i:nth-child(3) { height: 100%; animation-delay: 0.24s; }
.gee-charts__brand-bars i:nth-child(4) { height: 60%; animation-delay: 0.36s; }

@keyframes geeChartsBar {
    0%, 100% { transform: scaleY(0.55); }
    50% { transform: scaleY(1); }
}

.gee-charts__intro {
    flex: 1 1 14rem;
    min-width: 0;
}

.gee-charts__eyebrow {
    margin: 0 0 0.4rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(241, 227, 0, 0.88);
}

.gee-charts__title {
    margin: 0 0 0.4rem;
    color: #fff;
    font-size: clamp(1.55rem, 4vw, 2.35rem);
    line-height: 1.1;
    letter-spacing: 0.04em;
}

.gee-charts__meta {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.58);
}

.gee-charts__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #0e0d0d;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.gee-charts__badge-live {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: #1cff63;
    box-shadow: 0 0 0 4px rgba(28, 255, 99, 0.2);
    animation: geeChartsPulse 1.6s ease-in-out infinite;
}

@keyframes geeChartsPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.55; transform: scale(0.85); }
}

.gee-charts__stage {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: clamp(1rem, 2.5vw, 1.5rem);
    align-items: stretch;
}

.gee-charts__loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: clamp(2.5rem, 6vw, 3.75rem) 1.25rem;
    color: rgba(255, 255, 255, 0.55);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.gee-charts__loading .gee-music-bars {
    margin: 0 auto 1rem;
}

.gee-charts__error {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-size: 0.88rem;
    color: #ffcdd2;
    background: rgba(183, 28, 28, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.gee-charts__feature {
    min-width: 0;
    display: flex;
    flex-direction: column;
    border-radius: 22px;
    overflow: hidden;
    background: #161513;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
}

.gee-charts__feature-art {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #0e0d0d;
}

.gee-charts__feature-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.gee-charts__feature-veil {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 35%, rgba(14, 13, 13, 0.72) 100%),
        radial-gradient(circle at 80% 20%, rgba(241, 227, 0, 0.18), transparent 40%);
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.gee-charts__feature-play {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 4rem;
    height: 4rem;
    border: none;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    background: linear-gradient(145deg, #fffef0 0%, var(--accent-color) 100%);
    color: #0e0d0d;
    font-size: 1.05rem;
    cursor: pointer;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
    opacity: 0.95;
    transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    z-index: 2;
}

.gee-charts__feature-play:hover {
    transform: translate(-50%, -50%) scale(1.06);
    box-shadow: 0 14px 36px rgba(205, 178, 42, 0.4);
}

.gee-charts__feature:hover .gee-charts__feature-art img {
    transform: scale(1.04);
}

.gee-charts__embed {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    z-index: 3;
    background: #000;
}

.gee-charts__feature.is-playing .gee-charts__feature-veil,
.gee-charts__feature.is-playing .gee-charts__feature-play {
    opacity: 0;
    pointer-events: none;
}

.gee-charts__feature.is-playing:hover .gee-charts__feature-art img {
    transform: none;
}

.gee-charts__feature-body {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    padding: 1.15rem 1.25rem 1.3rem;
    flex: 1;
}

.gee-charts__feature-rank {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent-color);
}

.gee-charts__feature-title {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.15rem, 2.4vw, 1.45rem);
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1.2;
    text-transform: none;
    color: #fff;
}

.gee-charts__feature-artist {
    margin: 0;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.58);
}

.gee-charts__feature-foot {
    margin-top: auto;
    padding-top: 0.85rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
}

.gee-charts__feature-stat {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.72);
}

.gee-charts__feature-stat i {
    color: var(--accent-color);
}

.gee-charts__queue {
    min-width: 0;
    display: flex;
    flex-direction: column;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    overflow: hidden;
}

.gee-charts__queue-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.85rem 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.gee-charts__queue-list {
    display: flex;
    flex-direction: column;
    max-height: min(34rem, 70vh);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(205, 178, 42, 0.55) transparent;
}

.gee-charts__track {
    display: grid;
    grid-template-columns: 2.1rem 3.5rem minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    margin: 0;
    padding: 0.7rem 1rem;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0;
    background: transparent;
    text-align: left;
    font: inherit;
    color: inherit;
    cursor: pointer;
    transition: background 0.2s ease;
}

.gee-charts__track:last-child {
    border-bottom: 0;
}

.gee-charts__track:hover,
.gee-charts__track.is-active {
    background: rgba(241, 227, 0, 0.06);
}

.gee-charts__track-rank {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.42);
    font-variant-numeric: tabular-nums;
}

.gee-charts__track:hover .gee-charts__track-rank,
.gee-charts__track.is-active .gee-charts__track-rank {
    color: var(--accent-color);
}

.gee-charts__track-art {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 10px;
    overflow: hidden;
    background: #0e0d0d;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.gee-charts__track-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gee-charts__track-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.gee-charts__track-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gee-charts__track-artist {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.48);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gee-charts__track-meta {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
}

.gee-charts__track-plays {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.45);
    font-variant-numeric: tabular-nums;
}

.gee-charts__track-play {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    color: #0e0d0d;
    background: rgba(255, 255, 255, 0.88);
    opacity: 0.55;
    transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.gee-charts__track:hover .gee-charts__track-play,
.gee-charts__track.is-active .gee-charts__track-play {
    opacity: 1;
    background: linear-gradient(145deg, #fffef0 0%, var(--accent-color) 100%);
    transform: scale(1.06);
}

.gee-charts__footnote {
    margin: 1rem 0 0;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.02em;
}

@media (max-width: 900px) {
    .gee-charts__stage {
        grid-template-columns: 1fr;
    }

    .gee-charts__queue-list {
        max-height: none;
    }
}

@media (max-width: 600px) {
    .gee-charts__head {
        align-items: flex-start;
    }

    .gee-charts__badge {
        order: 3;
    }

    .gee-charts__track {
        grid-template-columns: 1.7rem 3rem minmax(0, 1fr) auto;
        gap: 0.55rem;
        padding: 0.65rem 0.8rem;
    }

    .gee-charts__track-art {
        width: 3rem;
        height: 3rem;
    }

    .gee-charts__track-plays {
        display: none;
    }
}

/* ------------------------------------------------------------------
   Dial promo (home) — music submission CTA below trending chart
   ------------------------------------------------------------------ */

.dial-promo {
    position: relative;
    width: 100%;
    overflow: hidden;
    background:
        radial-gradient(ellipse 80% 70% at 100% 0%, rgba(241, 227, 0, 0.35) 0%, transparent 55%),
        radial-gradient(ellipse 60% 50% at 0% 100%, rgba(205, 178, 42, 0.22) 0%, transparent 50%),
        linear-gradient(160deg, #fffdf3 0%, #f4eec8 48%, #ebe2a8 100%);
    color: var(--near-black);
}

.dial-promo__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.dial-promo__glow--a {
    width: min(52vw, 420px);
    height: min(52vw, 420px);
    top: -18%;
    right: -8%;
    background: rgba(241, 227, 0, 0.35);
    animation: dialGlowDrift 12s ease-in-out infinite alternate;
}

.dial-promo__glow--b {
    width: min(40vw, 320px);
    height: min(40vw, 320px);
    bottom: -22%;
    left: -6%;
    background: rgba(205, 178, 42, 0.22);
    animation: dialGlowDrift 14s ease-in-out infinite alternate-reverse;
}

@keyframes dialGlowDrift {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(-18px, 14px) scale(1.08); }
}

.dial-promo__grain {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(14, 13, 13, 0.35) 0.5px, transparent 0.6px),
        radial-gradient(circle at 70% 60%, rgba(14, 13, 13, 0.25) 0.5px, transparent 0.6px);
    background-size: 18px 18px, 22px 22px;
}

.dial-promo__inner {
    position: relative;
    z-index: 1;
}

.dial-promo__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(1.5rem, 4vw, 3rem);
}

.dial-promo__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    max-height: min(360px, 54vw);
    border-radius: 4px;
    background: #111;
}

.dial-promo__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    display: block;
    filter: saturate(1.05) contrast(1.02);
    transition: transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.dial-promo:hover .dial-promo__photo {
    transform: scale(1.04);
}

@media (prefers-reduced-motion: reduce) {
    .dial-promo__glow--a,
    .dial-promo__glow--b {
        animation: none;
    }

    .dial-promo:hover .dial-promo__photo {
        transform: none;
    }
}

.dial-promo__copy {
    min-width: 0;
}

.dial-promo__eyebrow {
    margin: 0 0 0.45rem;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: #7a6814;
}

.dial-promo__title {
    margin: 0 0 0.75rem;
    font-size: clamp(1.65rem, 4.2vw, 2.35rem);
    color: var(--near-black);
    line-height: 1.1;
}

.dial-promo__lead {
    margin: 0 0 1.1rem;
    font-size: clamp(0.95rem, 2.2vw, 1.08rem);
    line-height: 1.65;
    color: rgba(14, 13, 13, 0.78);
    max-width: 36rem;
}

.dial-promo__ticks {
    margin: 0 0 1.5rem;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.dial-promo__ticks li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(14, 13, 13, 0.88);
}

.dial-promo__ticks i {
    color: #8a7518;
    font-size: 1rem;
    flex-shrink: 0;
}

.dial-promo__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem 0.9rem;
}

.dial-promo__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45em;
    padding: 0.7rem 1.35rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    text-decoration: none;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.dial-promo__btn--primary {
    color: #fffef0;
    background: var(--near-black);
    border: 1px solid rgba(14, 13, 13, 0.9);
    box-shadow: 0 6px 22px rgba(14, 13, 13, 0.22);
}

.dial-promo__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(14, 13, 13, 0.3);
    color: #fff;
    background: #1a1918;
}

.dial-promo__btn--ghost {
    color: var(--near-black);
    background: transparent;
    border: 1px solid rgba(14, 13, 13, 0.28);
}

.dial-promo__btn--ghost:hover {
    background: rgba(14, 13, 13, 0.06);
    border-color: rgba(14, 13, 13, 0.45);
    color: var(--near-black);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .dial-promo__layout {
        grid-template-columns: 1fr;
        gap: 1.35rem;
    }

    .dial-promo__media {
        max-height: none;
        aspect-ratio: 16 / 10;
        order: -1;
    }
}

@media (max-width: 600px) {
    .dial-promo__copy {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .dial-promo__ticks {
        align-items: stretch;
        width: 100%;
        max-width: 22rem;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

    .dial-promo__ticks li {
        justify-content: flex-start;
        text-align: left;
    }

    .dial-promo__actions {
        justify-content: center;
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

    .dial-promo__btn {
        width: 100%;
        max-width: 20rem;
    }
}

/* ------------------------------------------------------------------
   Presenters band (home) — stone neutral bridge to dark news
   ------------------------------------------------------------------ */

.presenters-band {
    position: relative;
    width: 100%;
    overflow: hidden;
    background:
        radial-gradient(ellipse 75% 55% at 50% 0%, rgba(255, 253, 243, 0.72) 0%, transparent 58%),
        radial-gradient(ellipse 55% 45% at 100% 85%, rgba(41, 41, 41, 0.05) 0%, transparent 52%),
        linear-gradient(180deg, #e5e1d9 0%, #f2efe9 38%, #ddd9d2 100%);
    color: #1c1b19;
}

.presenters-band__sheen {
    position: absolute;
    left: 0;
    width: 100%;
    pointer-events: none;
    z-index: 0;
}

.presenters-band__sheen--top {
    top: 0;
    height: clamp(3rem, 8vw, 5.5rem);
    background: linear-gradient(180deg, rgba(255, 253, 243, 0.55) 0%, transparent 100%);
}

.presenters-band__sheen--bottom {
    bottom: 0;
    height: clamp(2.5rem, 6vw, 4.5rem);
    background: linear-gradient(0deg, rgba(26, 26, 24, 0.08) 0%, transparent 100%);
}

.presenters-band .container {
    position: relative;
    z-index: 1;
}

.presenters-band__head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem 1.5rem;
}

.presenters-band__titles {
    flex: 1 1 14rem;
    min-width: 0;
}

.presenters-band__eyebrow {
    margin: 0 0 0.35rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: rgba(74, 68, 58, 0.85);
}

.presenters-band__title {
    margin: 0;
    color: #121110;
    font-size: clamp(1.55rem, 4vw, 2.25rem);
}

.presenters-band__lead {
    margin: 0.65rem 0 0;
    max-width: 36rem;
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    line-height: 1.55;
    color: rgba(28, 27, 25, 0.78);
}

.presenters-band__actions {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.presenters-band__nav {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.presenters-band__nav-btn {
    width: 2.65rem;
    height: 2.65rem;
    border-radius: 50%;
    border: 1px solid rgba(28, 27, 25, 0.14);
    background: rgba(255, 255, 255, 0.72);
    color: #1c1b19;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.82rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 6px 18px rgba(28, 27, 25, 0.08);
    transition:
        background 0.22s ease,
        border-color 0.22s ease,
        color 0.22s ease,
        transform 0.22s ease,
        opacity 0.22s ease,
        box-shadow 0.22s ease;
}

.presenters-band__nav-btn:hover:not(:disabled) {
    background: linear-gradient(145deg, #fffef0 0%, var(--accent-color) 100%);
    border-color: transparent;
    color: var(--primary-color);
    transform: translateY(-1px) scale(1.04);
    box-shadow: 0 10px 24px rgba(205, 178, 42, 0.28);
}

.presenters-band__nav-btn:active:not(:disabled) {
    transform: scale(0.96);
}

.presenters-band__nav-btn:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 3px;
}

.presenters-band__nav-btn:disabled {
    opacity: 0.35;
    cursor: default;
    box-shadow: none;
}

.presenters-band__all {
    display: inline-flex;
    align-items: center;
    gap: 0.45em;
    padding: 0.55rem 1.15rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #fff !important;
    background: linear-gradient(145deg, #2a2926 0%, #121110 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(18, 17, 16, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    float: none !important;
    margin: 0 !important;
}

.presenters-band__all:hover {
    transform: translateX(3px);
    box-shadow: 0 10px 28px rgba(18, 17, 16, 0.24);
    color: #fff !important;
}

.presenters-band__track {
    position: relative;
    z-index: 1;
    margin-top: clamp(1.35rem, 3vw, 2rem);
}

.presenters-band__track::before,
.presenters-band__track::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0.35rem;
    width: clamp(1.25rem, 3vw, 2.75rem);
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.presenters-band__track::before {
    left: 0;
    background: linear-gradient(90deg, rgba(229, 225, 217, 0.95), transparent);
}

.presenters-band__track::after {
    right: 0;
    background: linear-gradient(270deg, rgba(221, 217, 210, 0.95), transparent);
}

.presenters-band__track.is-scrollable-start::before,
.presenters-band__track.is-scrollable-end::after {
    opacity: 1;
}

.presenters-band__scroller {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: clamp(1.15rem, 4vw, 3.25rem);
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-block: 0.35rem 0.75rem;
}

.presenters-band__scroller::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.presenters-band__rail {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: clamp(0.85rem, 2vw, 1.35rem);
    width: max-content;
    min-width: 100%;
    padding-inline: clamp(1.15rem, 4vw, 3.25rem);
}

@media (min-width: 1800px) {
    .presenters-band__scroller {
        scroll-padding-inline: clamp(1.5rem, 3.5vw, 4rem);
    }

    .presenters-band__rail {
        padding-inline: clamp(1.5rem, 3.5vw, 4rem);
    }
}

.presenters-band__card {
    flex: 0 0 clamp(220px, calc((100vw - 3.5rem) / 2.35), 260px);
    width: clamp(220px, calc((100vw - 3.5rem) / 2.35), 260px);
    scroll-snap-align: start;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(28, 27, 25, 0.08);
    box-shadow:
        0 10px 32px rgba(28, 27, 25, 0.08),
        0 1px 0 rgba(255, 255, 255, 0.65) inset;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

@media (min-width: 768px) {
    .presenters-band__card {
        flex-basis: clamp(230px, calc((100vw - 5rem) / 3.4), 270px);
        width: clamp(230px, calc((100vw - 5rem) / 3.4), 270px);
    }
}

@media (min-width: 1100px) {
    .presenters-band__card {
        flex-basis: clamp(240px, calc((100vw - 6rem) / 4.5), 280px);
        width: clamp(240px, calc((100vw - 6rem) / 4.5), 280px);
    }
}

.presenters-band__card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 18px 44px rgba(28, 27, 25, 0.14),
        0 1px 0 rgba(255, 255, 255, 0.75) inset;
}

.presenters-band__media {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: linear-gradient(165deg, #f5f3ef 0%, #ebe7e0 100%);
}

.presenters-band__media--dark {
    background: linear-gradient(165deg, #3a3936 0%, #22211f 100%);
}

.presenters-band__media--bright {
    background: linear-gradient(165deg, #fffef0 0%, #f1e300 55%, #cdb22a 100%);
}

.presenters-band__orb {
    position: absolute;
    width: 72%;
    height: 72%;
    left: 50%;
    bottom: -18%;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(circle, var(--presenter-tone, #cdb22a) 0%, transparent 68%);
    opacity: 0.28;
    filter: blur(18px);
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.presenters-band__media--dark .presenters-band__orb {
    opacity: 0.18;
}

.presenters-band__card:hover .presenters-band__orb {
    opacity: 0.42;
    transform: translateX(-50%) scale(1.06);
}

.presenters-band__photo {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
    transition: transform 0.45s ease;
}

.presenters-band__media--dark .presenters-band__photo {
    object-position: center 15%;
}

.presenters-band__card:hover .presenters-band__photo {
    transform: scale(1.04);
}

.presenters-band__badge {
    position: absolute;
    z-index: 2;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.32rem 0.62rem;
    border-radius: 999px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #121110;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(28, 27, 25, 0.08);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.presenters-band__media--dark .presenters-band__badge {
    color: #fff;
    background: rgba(18, 17, 16, 0.72);
    border-color: rgba(255, 255, 255, 0.12);
}

.presenters-band__body {
    padding: 1rem 1.05rem 1.15rem;
}

.presenters-band__name {
    margin: 0;
    font-size: clamp(1.05rem, 2vw, 1.18rem);
    letter-spacing: 0.01em;
    color: #121110;
}

.presenters-band__role {
    margin: 0.35rem 0 0;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(74, 68, 58, 0.9);
}

.presenters-band__meta {
    margin: 0.45rem 0 0;
    font-size: 0.78rem;
    color: rgba(28, 27, 25, 0.68);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.presenters-band__meta i {
    color: var(--accent-color);
    font-size: 0.72rem;
}

@media (max-width: 640px) {
    .presenters-band__head {
        align-items: flex-start;
    }

    .presenters-band__actions {
        width: 100%;
        justify-content: space-between;
    }
}

/* ------------------------------------------------------------------
   Latest news hub (home) — over photo band
   ------------------------------------------------------------------ */

.news-hub__head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem 1.5rem;
    margin-bottom: 0.25rem;
}

.news-hub__titles {
    flex: 1 1 12rem;
    min-width: 0;
}

.news-hub__eyebrow {
    margin: 0 0 0.35rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: rgba(205, 178, 42, 0.85);
}

.news-hub__title {
    margin: 0;
    color: #fff;
    font-size: clamp(1.55rem, 4vw, 2.25rem);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.45);
}

.news-hub__actions {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.news-hub__nav {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.news-hub__nav-btn {
    width: 2.65rem;
    height: 2.65rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(14, 13, 13, 0.45);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.82rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
    transition:
        background 0.22s ease,
        border-color 0.22s ease,
        color 0.22s ease,
        transform 0.22s ease,
        opacity 0.22s ease,
        box-shadow 0.22s ease;
}

.news-hub__nav-btn:hover:not(:disabled) {
    background: linear-gradient(145deg, #fffef0 0%, var(--accent-color) 100%);
    border-color: transparent;
    color: var(--primary-color);
    transform: translateY(-1px) scale(1.04);
    box-shadow: 0 10px 26px rgba(205, 178, 42, 0.35);
}

.news-hub__nav-btn:active:not(:disabled) {
    transform: scale(0.96);
}

.news-hub__nav-btn:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 3px;
}

.news-hub__nav-btn:disabled {
    opacity: 0.35;
    cursor: default;
    box-shadow: none;
}

.news-hub__all {
    display: inline-flex;
    align-items: center;
    gap: 0.45em;
    padding: 0.55rem 1.15rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--primary-color) !important;
    background: linear-gradient(145deg, #fffef0 0%, var(--accent-color) 100%);
    border: 1px solid rgba(255, 255, 255, 0.35);
    text-decoration: none;
    box-shadow: 0 4px 22px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    float: none !important;
    margin: 0 !important;
}

.news-hub__all:hover {
    transform: translateX(3px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
    color: var(--primary-color) !important;
}

.latest-news-bg.news-hub .news-hub__track {
    position: relative;
    margin-top: clamp(1.25rem, 3vw, 2rem);
}

.latest-news-bg.news-hub .news-hub__track::before,
.latest-news-bg.news-hub .news-hub__track::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0.35rem;
    width: clamp(1.25rem, 3vw, 2.5rem);
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.latest-news-bg.news-hub .news-hub__track::before {
    left: 0;
    background: linear-gradient(90deg, rgba(20, 20, 20, 0.55), transparent);
}

.latest-news-bg.news-hub .news-hub__track::after {
    right: 0;
    background: linear-gradient(270deg, rgba(20, 20, 20, 0.55), transparent);
}

.latest-news-bg.news-hub .news-hub__track.is-scrollable-start::before,
.latest-news-bg.news-hub .news-hub__track.is-scrollable-end::after {
    opacity: 1;
}

.latest-news-bg.news-hub .news-hub__scroller {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0.25rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.latest-news-bg.news-hub .news-hub__scroller::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.latest-news-bg.news-hub .news-hub__grid {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: clamp(0.85rem, 2vw, 1.35rem);
    width: max-content;
    min-width: 100%;
    margin: 0;
}

.latest-news-bg.news-hub .news-hub__card {
    flex: 0 0 clamp(240px, calc((100vw - 3.5rem) / 2.15), 280px);
    width: clamp(240px, calc((100vw - 3.5rem) / 2.15), 280px);
    scroll-snap-align: start;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(6px);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

@media (min-width: 768px) {
    .latest-news-bg.news-hub .news-hub__card {
        flex-basis: clamp(240px, calc((100vw - 5rem) / 3.2), 280px);
        width: clamp(240px, calc((100vw - 5rem) / 3.2), 280px);
    }
}

@media (min-width: 1100px) {
    .latest-news-bg.news-hub .news-hub__card {
        flex-basis: clamp(250px, calc((100vw - 6rem) / 4.25), 280px);
        width: clamp(250px, calc((100vw - 6rem) / 4.25), 280px);
    }
}

.latest-news-bg.news-hub .news-hub__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.32);
}

.latest-news-bg.news-hub .news-hub__card-img {
    height: clamp(160px, 32vw, 200px);
    transition: transform 0.45s ease;
}

.latest-news-bg.news-hub .news-hub__card:hover .news-hub__card-img {
    transform: scale(1.05);
}

.latest-news-bg.news-hub .news-hub__card-body {
    padding: 1.25rem 1.35rem 1.4rem;
}

.latest-news-bg.news-hub .news-hub__tag {
    border-radius: 6px;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
}

.latest-news-bg.news-hub .news-hub__card h3 {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    color: var(--primary-color);
    margin: 0.35rem 0 0.5rem;
    line-height: 1.25;
}

.latest-news-bg.news-hub .news-hub__card p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.55;
    color: #4a5560;
}

@media (max-width: 600px) {
    .news-hub__head {
        flex-direction: column;
        align-items: stretch;
    }

    .news-hub__title,
    .news-hub__eyebrow {
        text-align: center;
    }

    .news-hub__actions {
        justify-content: center;
        width: 100%;
    }

    .news-hub__all {
        justify-content: center;
    }
}

/* View More Arrow Hover Effect */
.view-more-arrow {
    transition: color 0.3s, transform 0.3s;
}
.view-more-arrow:hover {
    color: var(--accent-color);
    transform: translateX(6px) scale(1.08);
}
.view-more-arrow i {
    transition: transform 0.3s;
}
.view-more-arrow:hover i {
    transform: translateX(3px);
}



/* Reviews Section - Legacy styles removed and consolidated above */

/* FAQ — split layout with pill accordion */

.faq-bg-section.faq-modern.faq-split {
    position: relative;
    width: 100%;
    padding: clamp(3.5rem, 9vw, 6.5rem) 0;
    overflow: hidden;
    color: var(--primary-color);
    background: #fff;
    border-top: 1px solid rgba(41, 41, 41, 0.06);
    border-bottom: 1px solid rgba(41, 41, 41, 0.06);
}

.faq-split__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
}

.faq-split__content {
    min-width: 0;
}

.faq-split__header {
    margin: 0 0 clamp(1.5rem, 3.5vw, 2.25rem);
}

.faq-split__title {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.85rem, 4.2vw, 2.85rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--primary-color);
}

.faq-split__list.faq-modern__accordion {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: none;
    margin: 0;
}

.faq-bg-section.faq-modern.faq-split .faq-container {
    max-width: none;
    margin: 0;
}

.faq-bg-section.faq-modern.faq-split .faq-modern__item {
    display: grid;
    grid-template-rows: auto 0fr;
    transition:
        grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
    border-radius: 999px;
    border: 1px solid transparent;
    background: #f3f3f3;
    box-shadow: none;
    overflow: hidden;
}

.faq-bg-section.faq-modern.faq-split .faq-modern__item.active {
    grid-template-rows: auto 1fr;
    border-radius: 28px;
    background: #f7f7f7;
    border-color: rgba(205, 178, 42, 0.28);
    box-shadow: 0 10px 32px rgba(41, 41, 41, 0.07);
}

.faq-bg-section.faq-modern.faq-split .faq-modern__trigger.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    margin: 0;
    padding: 0.95rem 0.95rem 0.95rem 1.35rem;
    border: none;
    background: transparent;
    cursor: pointer;
    font: inherit;
    text-align: left;
    color: var(--primary-color);
    min-height: 3.5rem;
    transition: color 0.2s ease;
}

.faq-bg-section.faq-modern.faq-split .faq-modern__trigger.faq-question:hover {
    background: transparent;
}

.faq-bg-section.faq-modern.faq-split .faq-modern__trigger.faq-question:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: -2px;
    border-radius: inherit;
}

.faq-bg-section.faq-modern.faq-split .faq-modern__q-text {
    font-family: 'Outfit', 'Inter', system-ui, sans-serif;
    font-size: clamp(0.92rem, 1.8vw, 1.05rem);
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.35;
    color: var(--primary-color);
}

.faq-bg-section.faq-modern.faq-split .faq-modern__chev {
    flex-shrink: 0;
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(41, 41, 41, 0.08);
    border: 1px solid rgba(41, 41, 41, 0.08);
    transition: background 0.25s ease, color 0.25s ease, transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s ease;
}

.faq-bg-section.faq-modern.faq-split .faq-modern__chev i {
    font-size: 0.72rem;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    color: inherit;
}

.faq-bg-section.faq-modern.faq-split .faq-modern__item.active .faq-modern__chev {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 4px 14px rgba(41, 41, 41, 0.2);
}

.faq-bg-section.faq-modern.faq-split .faq-modern__item.active .faq-modern__chev i {
    transform: rotate(45deg);
}

.faq-bg-section.faq-modern.faq-split .faq-modern__panel.faq-answer {
    overflow: hidden;
    min-height: 0;
    margin: 0;
    padding: 0;
    max-height: none;
    transition: none;
}

.faq-bg-section.faq-modern.faq-split .faq-modern__panel-inner {
    padding: 0 1.35rem 1.2rem 1.35rem;
    border-top: none;
    background: transparent;
}

.faq-bg-section.faq-modern.faq-split .faq-modern__panel-inner p {
    margin: 0;
    font-size: clamp(0.88rem, 1.7vw, 0.98rem);
    line-height: 1.65;
    color: rgba(41, 41, 41, 0.68);
}

.faq-split__visual {
    position: relative;
    min-width: 0;
}

.faq-split__visual-frame {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    max-height: min(640px, 78vh);
    background: #ececec;
    box-shadow: 0 18px 48px rgba(41, 41, 41, 0.12);
}

.faq-split__visual-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(14, 13, 13, 0.28) 100%);
    pointer-events: none;
}

.faq-split__visual-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 88% 35%;
    display: block;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-split__visual:hover .faq-split__visual-frame img {
    transform: scale(1.04);
}

@media (max-width: 992px) {
    .faq-split__inner {
        grid-template-columns: 1fr;
        gap: 2.25rem;
    }

    .faq-split__visual {
        order: -1;
        max-width: 28rem;
        margin: 0 auto;
        width: 100%;
    }

    .faq-split__visual-frame {
        aspect-ratio: 16 / 11;
        max-height: none;
    }

    .faq-split__title {
        text-align: left;
    }
}

@media (max-width: 560px) {
    .faq-bg-section.faq-modern.faq-split {
        padding: 2.75rem 0 3.25rem;
    }

    .faq-bg-section.faq-modern.faq-split .faq-modern__item,
    .faq-bg-section.faq-modern.faq-split .faq-modern__item.active {
        border-radius: 22px;
    }

    .faq-bg-section.faq-modern.faq-split .faq-modern__trigger.faq-question {
        padding: 0.85rem 0.8rem 0.85rem 1.1rem;
    }

    .faq-bg-section.faq-modern.faq-split .faq-modern__panel-inner {
        padding: 0 1.1rem 1rem;
    }

    .faq-bg-section.faq-modern.faq-split .faq-modern__chev {
        width: 2.15rem;
        height: 2.15rem;
    }
}

/* Footer — Radiocast-inspired, Gee brand */

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

.site-footer {
    position: relative;
    width: 100%;
    color: rgba(255, 255, 255, 0.92);
    background: linear-gradient(180deg, #0e0d0d 0%, #161616 40%, #1d1d1d 100%);
    padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(1.35rem, 3vw, 2rem);
    overflow: hidden;
    border-top: 1px solid rgba(205, 178, 42, 0.14);
}

.site-footer__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding-inline: clamp(0.25rem, 1.5vw, 0.5rem);
}

.site-footer__cta {
    position: relative;
    isolation: isolate;
    border-radius: clamp(16px, 2.5vw, 28px);
    overflow: hidden;
    margin-bottom: clamp(2rem, 5vw, 3.75rem);
    min-height: clamp(200px, 34vw, 300px);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1a1a1a;
    background-image: var(--footer-cta-image);
    background-size: cover;
    background-position: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.site-footer__cta-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(115deg, rgba(14, 13, 13, 0.92) 0%, rgba(41, 41, 41, 0.78) 48%, rgba(14, 13, 13, 0.7) 100%),
        radial-gradient(ellipse 70% 80% at 80% 50%, rgba(205, 178, 42, 0.18) 0%, transparent 55%);
    pointer-events: none;
}

.site-footer__cta-body {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 36rem;
    margin: 0 auto;
    padding: clamp(1.5rem, 4vw, 2.75rem) clamp(1rem, 4vw, 2rem);
    text-align: center;
}

.site-footer__cta-title {
    margin: 0 0 0.65rem;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.35rem, 3.8vw, 2.15rem);
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1.15;
    color: #fff;
}

.site-footer__cta-desc {
    margin: 0 0 1.35rem;
    font-size: clamp(0.88rem, 2vw, 1.02rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.72);
}

.site-footer__subscribe {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 0.55rem;
    justify-content: center;
    width: 100%;
    max-width: 28rem;
    margin: 0 auto;
}

.site-footer__subscribe-input {
    flex: 1 1 11rem;
    min-width: 0;
    padding: 0.85rem 1.2rem;
    border: none;
    border-radius: 999px;
    background: #fff;
    color: var(--primary-color);
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 500;
    outline: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.site-footer__subscribe-input::placeholder {
    color: rgba(41, 41, 41, 0.45);
}

.site-footer__subscribe-input:focus {
    box-shadow: 0 0 0 2px var(--accent-color), 0 4px 20px rgba(0, 0, 0, 0.2);
}

.site-footer__subscribe-btn {
    flex: 0 0 auto;
    padding: 0.85rem 1.45rem;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-color);
    background: linear-gradient(145deg, #fffef0 0%, var(--accent-color) 55%, var(--accent-gold) 100%);
    box-shadow: 0 6px 22px rgba(205, 178, 42, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.site-footer__subscribe-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
    box-shadow: 0 10px 28px rgba(205, 178, 42, 0.45);
}

.site-footer__subscribe-msg {
    margin: 0.85rem 0 0;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-color);
}

/* Desktop / large laptop: brand + 3 link columns */
.site-footer__main {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 2.4fr);
    gap: clamp(1.75rem, 4vw, 3.5rem);
    align-items: start;
}

.site-footer__accordion {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1.25rem, 2.8vw, 2.5rem);
    min-width: 0;
}

.site-footer__brand,
.site-footer__col {
    min-width: 0;
}

.site-footer__logo-link {
    display: inline-block;
    margin-bottom: 0.85rem;
    line-height: 0;
    border-radius: 12px;
    transition: opacity 0.2s ease, transform 0.25s ease;
}

.site-footer__logo-link:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

.site-footer__logo {
    height: clamp(44px, 7vw, 58px);
    width: auto;
    max-width: 100%;
    display: block;
    filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.35));
}

.site-footer__brand-title {
    margin: 0 0 0.55rem;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    font-weight: 800;
    letter-spacing: 0.02em;
    color: #fff;
}

.site-footer__tagline {
    margin: 0 0 1.35rem;
    max-width: 22rem;
    font-size: clamp(0.84rem, 1.8vw, 0.95rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.62);
}

.site-footer__social {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.site-footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.45rem;
    height: 2.45rem;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.88) !important;
    text-decoration: none !important;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.site-footer__social-link:hover {
    color: var(--primary-color) !important;
    background: linear-gradient(145deg, var(--accent-color) 0%, #fff6a8 100%);
    border-color: rgba(205, 178, 42, 0.45);
    transform: translateY(-2px);
}

.site-footer__social-link i {
    font-size: 0.9rem;
}

.site-footer__heading {
    margin: 0 0 1.15rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: #fff;
    text-transform: none;
}

.site-footer__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.site-footer__list a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.68) !important;
    text-decoration: none !important;
    padding: 0.15rem 0;
    transition: color 0.2s ease, transform 0.2s ease;
    word-break: break-word;
}

.site-footer__list a:hover {
    color: var(--accent-color) !important;
    transform: translateX(3px);
}

.site-footer__contact {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.site-footer__contact-row {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
}

.site-footer__contact-icon {
    flex-shrink: 0;
    width: 2.15rem;
    height: 2.15rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--primary-color);
    background: linear-gradient(145deg, var(--accent-color) 0%, #fff6b0 100%);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.site-footer__contact-text {
    font-size: 0.86rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.72);
    padding-top: 0.25rem;
    flex: 1;
    min-width: 0;
    text-align: left;
    word-break: break-word;
}

a.site-footer__contact-link {
    color: rgba(255, 255, 255, 0.82) !important;
    text-decoration: none !important;
    font-weight: 600;
    transition: color 0.2s ease;
}

a.site-footer__contact-link:hover {
    color: var(--accent-color) !important;
}

.site-footer__bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1.5rem;
    margin-top: clamp(2rem, 5vw, 3.25rem);
    padding: 1.5rem clamp(0.85rem, 2.5vw, 1.5rem) 0.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__meta {
    min-width: 0;
    flex: 1 1 auto;
}

.site-footer__policies {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
    flex-shrink: 0;
    white-space: nowrap;
}

.site-footer__policies a {
    font-size: clamp(0.72rem, 1.6vw, 0.8rem);
    font-weight: 600;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.55) !important;
    text-decoration: none !important;
    transition: color 0.2s ease;
}

.site-footer__policies a:hover {
    color: var(--accent-color) !important;
}

.site-footer__policies-divider {
    display: inline-block;
    width: 1px;
    height: 0.85em;
    background: rgba(255, 255, 255, 0.28);
    flex-shrink: 0;
}

.site-footer__legal {
    margin: 0;
    font-size: clamp(0.72rem, 1.6vw, 0.8rem);
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

.site-footer__credit-inline {
    color: rgba(255, 255, 255, 0.42);
}

.site-footer__credit-link {
    color: var(--accent-color) !important;
    text-decoration: none !important;
    font-weight: 600;
}

.site-footer__credit-link:hover {
    text-decoration: underline !important;
}

.site-footer__acc-trigger {
    display: none;
}

.site-footer__acc-panel {
    display: block;
}

.site-footer__acc-panel-inner {
    min-height: 0;
}

/* Laptop */
@media (max-width: 1100px) {
    .site-footer__main {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 2.2fr);
        gap: 1.75rem;
    }

    .site-footer__accordion {
        gap: 1.15rem;
    }

    .site-footer__list a,
    .site-footer__contact-text {
        font-size: 0.84rem;
    }
}

/* Tablet / small laptop: stack brand, keep 3 columns below */
@media (max-width: 992px) {
    .site-footer__main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .site-footer__brand {
        text-align: left;
        max-width: 36rem;
    }

    .site-footer__tagline {
        max-width: 36rem;
    }

    .site-footer__accordion {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.25rem;
    }
}

/* Narrow tablet: 2-column link grid, contact full width */
@media (max-width: 860px) {
    .site-footer__accordion {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem 1.25rem;
    }

    .site-footer__col--contact {
        grid-column: 1 / -1;
    }
}

/* Mobile: stacked accordion list (divider rows + chevrons) */
@media (max-width: 700px) {
    .site-footer {
        padding: 2rem 0 1.25rem;
    }

    .site-footer__inner {
        padding-inline: 0;
    }

    .site-footer__cta--banner {
        display: block;
    }

    .site-footer__cta {
        min-height: 0;
        border-radius: 0;
        margin: 0 clamp(1.15rem, 4vw, 3.25rem) 1.5rem;
    }

    .site-footer__cta-body {
        padding: 1.5rem 1rem;
    }

    .site-footer__subscribe {
        flex-direction: column;
        max-width: none;
    }

    .site-footer__subscribe-input,
    .site-footer__subscribe-btn {
        width: 100%;
        flex: none;
    }

    .site-footer__main {
        gap: 1.5rem;
        padding-inline: clamp(1.15rem, 4vw, 3.25rem);
    }

    .site-footer__brand {
        margin-bottom: 0.25rem;
    }

    .site-footer__accordion {
        display: flex;
        flex-direction: column;
        gap: 0;
        width: calc(100% + 2 * clamp(1.15rem, 4vw, 3.25rem));
        max-width: none;
        margin-inline: calc(-1 * clamp(1.15rem, 4vw, 3.25rem));
        border-top: 1px solid rgba(255, 255, 255, 0.14);
        border-bottom: none;
    }

    .site-footer__col.site-footer__acc-item {
        display: grid;
        grid-template-rows: auto 0fr;
        width: 100%;
        text-align: left;
        border: none;
        border-radius: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
        background: transparent;
        overflow: hidden;
        box-shadow: none;
        transition: grid-template-rows 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .site-footer__col.site-footer__acc-item:last-child {
        border-bottom: none;
    }

    .site-footer__col.site-footer__acc-item.is-open {
        grid-template-rows: auto 1fr;
        border-color: rgba(255, 255, 255, 0.14);
        background: transparent;
        box-shadow: none;
    }

    .site-footer__col--contact {
        grid-column: auto;
    }

    .site-footer__heading--desktop {
        display: none;
    }

    .site-footer__acc-trigger {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        width: 100%;
        margin: 0;
        padding: 1.05rem clamp(1.15rem, 4vw, 3.25rem);
        border: none;
        background: transparent;
        cursor: pointer;
        font: inherit;
        color: #fff;
        text-align: left;
        transition: background 0.2s ease;
    }

    .site-footer__acc-trigger:hover {
        background: rgba(255, 255, 255, 0.03);
    }

    .site-footer__acc-trigger:focus-visible {
        outline: 2px solid var(--accent-color);
        outline-offset: -2px;
    }

    .site-footer__acc-label {
        font-family: 'Montserrat', sans-serif;
        font-size: 0.98rem;
        font-weight: 700;
        letter-spacing: 0.01em;
        color: #fff;
        text-transform: none;
    }

    .site-footer__acc-chev.faq-modern__chev {
        width: auto;
        height: auto;
        min-width: 1.25rem;
        border-radius: 0;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: none;
        color: rgba(255, 255, 255, 0.92);
        border: none;
        box-shadow: none;
        padding: 0;
    }

    .site-footer__acc-chev.faq-modern__chev i {
        font-size: 0.72rem;
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .site-footer__acc-item.is-open .site-footer__acc-chev i {
        transform: rotate(180deg);
    }

    .site-footer__acc-panel {
        overflow: hidden;
        min-height: 0;
    }

    .site-footer__acc-panel-inner {
        padding: 0 clamp(1.15rem, 4vw, 3.25rem) 1.15rem;
    }

    .site-footer__list {
        gap: 0.05rem;
        padding-left: 0;
        border-left: none;
    }

    .site-footer__list a {
        display: flex;
        justify-content: flex-start;
        width: fit-content;
        max-width: 100%;
        padding: 0.4rem 0;
        color: rgba(255, 255, 255, 0.72);
    }

    .site-footer__list a:hover {
        transform: none;
        color: var(--accent-color);
    }

    .site-footer__contact {
        width: 100%;
    }

    .site-footer__contact-row {
        width: 100%;
    }

    .site-footer__bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        gap: 0.95rem;
        margin-top: 1.5rem;
        padding-top: 1.35rem;
        padding-inline: clamp(1.15rem, 4vw, 3.25rem);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .site-footer__meta {
        width: auto;
        max-width: none;
        text-align: left;
        flex: 1 1 auto;
    }

    .site-footer__policies {
        order: 0;
        justify-content: flex-end;
        align-self: center;
    }

    .site-footer__legal {
        font-size: 0.74rem;
        line-height: 1.55;
        text-wrap: balance;
    }

    .site-footer__credit-inline {
        display: block;
        margin-top: 0.35rem;
        text-align: left;
    }
}

@media (min-width: 701px) {
    .site-footer__acc-trigger {
        display: none !important;
    }

    .site-footer__acc-panel {
        display: block !important;
        overflow: visible !important;
    }

    .site-footer__col.site-footer__acc-item {
        display: block;
        border: none;
        background: transparent;
        overflow: visible;
    }
}


/* News page hero — matches contact / team compact hero style */
.news-hero {
    position: relative;
    overflow: hidden;
    background-position: center;
    background-size: cover;
}

.news-hero__overlay {
    background:
        radial-gradient(ellipse 70% 55% at 50% 100%, rgba(205, 178, 42, 0.14) 0%, transparent 58%),
        linear-gradient(180deg, rgba(14, 13, 13, 0.42) 0%, rgba(41, 41, 41, 0.72) 52%, rgba(14, 13, 13, 0.9) 100%);
}

.news-hero__content {
    position: relative;
    z-index: 2;
    max-width: 46rem;
    text-align: center;
    align-items: center;
    animation: newsHeroIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes newsHeroIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.news-hero__eyebrow {
    display: inline-block;
    margin: 0 0 0.75rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: none;
    color: var(--accent-bright);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.news-hero h1 {
    margin: 0 auto 0.65rem;
    max-width: 22ch;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.45rem, 3vw, 1.85rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
    color: #fff;
    text-wrap: balance;
    opacity: 1;
    transform: none;
    filter: none;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.news-hero h1::after {
    content: '';
    display: block;
    width: 2.75rem;
    height: 3px;
    margin: 0.65rem auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent-bright), var(--accent-color));
}

.news-hero p {
    margin: 0 auto;
    max-width: 46ch;
    font-size: clamp(0.95rem, 1.8vw, 1.08rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
    text-wrap: pretty;
    opacity: 1;
    transform: none;
    filter: none;
}

/* News desk — TOC sidebar + main column */
.news-desk.container {
    /* section-padding shorthand zeros horizontal padding; restore container gutters */
    padding-inline: clamp(1.15rem, 4vw, 3.25rem);
    padding-block: 80px;
    box-sizing: border-box;
}

.news-desk {
    display: grid;
    grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
    gap: 2.5rem 2.75rem;
    align-items: start;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: clip;
}

.news-toc {
    position: sticky;
    top: 1.25rem;
    background: #fff;
    border: 1px solid rgba(41, 41, 41, 0.08);
    border-left: 4px solid var(--accent-color);
    padding: 1.35rem 0 1rem;
    max-height: calc(100vh - 7.5rem);
    overflow-y: auto;
    scrollbar-width: thin;
    min-width: 0;
    max-width: 100%;
}

.news-toc__header {
    padding: 0 1.25rem 1rem;
    border-bottom: 1px solid rgba(41, 41, 41, 0.08);
    margin-bottom: 0.5rem;
}

.news-toc__eyebrow {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 0.35rem;
}

.news-toc__title {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.news-toc__nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0.35rem 0;
    min-width: 0;
    max-width: 100%;
}

.news-toc__link.category-btn {
    display: grid;
    grid-template-columns: 2rem 1fr;
    align-items: center;
    gap: 0.65rem;
    width: 100%;
    margin: 0;
    padding: 0.7rem 1.15rem;
    border: none;
    border-radius: 0;
    border-left: 3px solid transparent;
    background: transparent;
    color: #3a3a3a;
    font-weight: 500;
    font-size: 0.9rem;
    text-align: left;
    text-transform: none;
    letter-spacing: 0;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.news-toc__index {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: rgba(41, 41, 41, 0.35);
    font-variant-numeric: tabular-nums;
}

.news-toc__label {
    line-height: 1.25;
}

.news-toc__link.category-btn:hover {
    background: rgba(205, 178, 42, 0.12);
    color: var(--primary-color);
    border-left-color: var(--accent-color);
}

.news-toc__link.category-btn:hover .news-toc__index {
    color: var(--accent-color);
}

.news-toc__link.category-btn.active {
    background: var(--primary-color);
    color: #f1e300;
    border-left-color: #f1e300;
    font-weight: 600;
}

.news-toc__link.category-btn.active .news-toc__index {
    color: rgba(241, 227, 0, 0.65);
}

.news-desk__main {
    min-width: 0;
    max-width: 100%;
    overflow-x: clip;
}

.news-desk .grid-container,
#news-grid.grid-container {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
    gap: clamp(1.25rem, 2.5vw, 2rem);
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    margin-top: 1.75rem;
}

.news-desk .card,
#news-grid .card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.news-filters {
    margin-bottom: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.news-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 1.75rem;
    flex-wrap: wrap;
}

.news-filter-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-left: auto;
    margin-right: 0.35rem;
    padding: 0.45rem 0.25rem;
    border: none;
    background: transparent;
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.news-filter-toggle:hover {
    color: #0e0d0d;
    opacity: 0.82;
}

.news-filter-toggle:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 3px;
}

.news-filter-toggle i {
    font-size: 0.95rem;
    color: inherit;
}

.news-filter-toggle.is-open {
    color: var(--primary-color);
}

.news-filter-panel {
    width: 100%;
}

.news-filter-panel[hidden] {
    display: none !important;
}

.news-filter-panel__inner {
    padding: 1.15rem 1.25rem 1.25rem;
    background: #fff;
    border: 1px solid rgba(41, 41, 41, 0.1);
    border-left: 4px solid var(--accent-color);
}

.news-filter-panel__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.news-filter-panel__eyebrow {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 0.3rem;
}

.news-filter-panel__title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.01em;
}

.news-filter-panel__reset {
    flex-shrink: 0;
    padding: 0.4rem 0.85rem;
    border: 1px solid rgba(41, 41, 41, 0.15);
    background: transparent;
    color: var(--primary-color);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.news-filter-panel__reset:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #f1e300;
}

.news-filter-panel__options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.news-sort-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.7rem 1rem;
    border: 1px solid rgba(41, 41, 41, 0.12);
    background: #f7f8f9;
    color: var(--primary-color);
    font-size: 0.88rem;
    font-weight: 650;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.news-sort-btn i {
    font-size: 0.85rem;
    color: rgba(41, 41, 41, 0.55);
    transition: color 0.2s ease;
}

.news-sort-btn:hover {
    border-color: var(--accent-color);
    background: rgba(205, 178, 42, 0.14);
}

.news-sort-btn:hover i {
    color: var(--primary-color);
}

.news-sort-btn.is-active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #f1e300;
}

.news-sort-btn.is-active i {
    color: #f1e300;
}

.news-desk__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.5rem 1.25rem;
    padding-bottom: 0.85rem;
    border-bottom: 2px solid var(--primary-color);
}

.news-desk__heading {
    margin: 0;
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

.news-desk__count {
    margin: 0.65rem 0 0;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(41, 41, 41, 0.55);
    letter-spacing: 0.02em;
    text-align: center;
}

.news-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.55rem;
    margin: 1.5rem 0 0.5rem;
    padding: 2.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.55);
    border: 1px dashed rgba(41, 41, 41, 0.16);
}

.news-empty[hidden] {
    display: none !important;
}

.news-empty__emoji {
    font-size: 2.75rem;
    line-height: 1;
    margin-bottom: 0.35rem;
}

.news-empty__title {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary-color);
}

.news-empty__text {
    margin: 0;
    max-width: 22rem;
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(41, 41, 41, 0.58);
}

.news-pagination {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(41, 41, 41, 0.1);
}

.news-pagination__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.65rem 0.85rem;
}

.news-pagination__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.6rem 1rem;
    border: 1px solid rgba(41, 41, 41, 0.15);
    background: #fff;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.news-pagination__btn:hover:not(:disabled) {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #0e0d0d;
}

.news-pagination__btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.news-pagination__pages {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.news-pagination__page {
    min-width: 2.4rem;
    height: 2.4rem;
    padding: 0 0.55rem;
    border: 1px solid rgba(41, 41, 41, 0.12);
    background: #fff;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.news-pagination__page:hover {
    border-color: var(--accent-color);
    background: rgba(205, 178, 42, 0.15);
}

.news-pagination__page.is-active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #f1e300;
}

.search-wrapper {
    position: relative;
    max-width: 22rem;
    margin: 0;
    width: 100%;
    flex: 1 1 14rem;
    isolation: isolate;
}

.search-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.28) 45%, rgba(255, 255, 255, 0.5) 100%);
    pointer-events: none;
    z-index: 0;
    opacity: 0.9;
}

.search-wrapper input {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 0.95rem 1.4rem 0.95rem 3.35rem;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.38);
    backdrop-filter: blur(18px) saturate(1.35);
    -webkit-backdrop-filter: blur(18px) saturate(1.35);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.75),
        inset 0 -1px 0 rgba(41, 41, 41, 0.04),
        0 8px 28px rgba(41, 41, 41, 0.08),
        0 1px 2px rgba(41, 41, 41, 0.04);
    color: var(--primary-color);
    font-size: 1rem;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, transform 0.25s ease;
    outline: none;
}

.search-wrapper input::placeholder {
    color: rgba(41, 41, 41, 0.45);
}

.search-wrapper input:hover {
    background: rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.85);
}

.search-wrapper input:focus {
    background: rgba(255, 255, 255, 0.58);
    border-color: rgba(205, 178, 42, 0.65);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.85),
        0 0 0 3px rgba(205, 178, 42, 0.18),
        0 12px 32px rgba(41, 41, 41, 0.1);
}

.search-wrapper i {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    color: rgba(41, 41, 41, 0.48);
    font-size: 1.05rem;
    pointer-events: none;
    transition: color 0.25s ease;
}

.search-wrapper:focus-within i {
    color: var(--primary-color);
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    .search-wrapper input {
        background: rgba(255, 255, 255, 0.88);
    }
}

.category-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
}

.category-btn {
    padding: 0.55rem 1.05rem;
    border: 1px solid transparent;
    background: var(--accent-color);
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.88rem;
    text-transform: lowercase;
    letter-spacing: 0.01em;
    transition: var(--transition);
    color: #0e0d0d;
}

.category-btn:hover, .category-btn.active {
    background-color: #0e0d0d;
    color: #f1e300;
    border-color: #0e0d0d;
}

@media (max-width: 992px) {
    .news-desk {
        grid-template-columns: minmax(0, 1fr);
        gap: 1.5rem;
        overflow-x: clip;
    }

    .news-toc {
        position: relative;
        top: 0;
        max-height: none;
        padding: 1rem 0 0.75rem;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow: hidden;
    }

    .news-toc__header {
        padding: 0 1rem 0.75rem;
    }

    .news-toc__nav {
        flex-direction: row;
        flex-wrap: nowrap;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow-x: auto;
        overflow-y: hidden;
        overscroll-behavior-x: contain;
        gap: 0.35rem;
        padding: 0.5rem 0.85rem 0.85rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }

    .news-toc__link.category-btn {
        display: inline-flex;
        grid-template-columns: none;
        flex: 0 0 auto;
        width: auto;
        max-width: none;
        gap: 0.4rem;
        padding: 0.55rem 0.9rem;
        border-left: none;
        border-radius: 4px;
        background: rgba(205, 178, 42, 0.18);
        white-space: nowrap;
    }

    .news-toc__index {
        display: none;
    }

    .news-toc__link.category-btn:hover {
        border-left-color: transparent;
        background: rgba(205, 178, 42, 0.35);
    }

    .news-toc__link.category-btn.active {
        border-left-color: transparent;
        background: var(--primary-color);
        color: #f1e300;
    }

    .news-desk .grid-container,
    #news-grid.grid-container {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-top: 1.25rem;
    }

    .news-desk .card,
    #news-grid .card {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .news-pagination {
        width: 100%;
        max-width: 100%;
        padding-left: 0.25rem;
        padding-right: 0.25rem;
    }
}

@media (max-width: 576px) {
    .news-desk.container,
    .news-desk.section-padding {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
        padding-inline: clamp(1.15rem, 4vw, 3.25rem);
    }

    .news-desk__heading {
        font-size: 1.2rem;
    }

    .news-desk__meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
}

/* Article Page Styles */
.article-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 1rem;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    color: #666;
    font-size: 0.9rem;
}

.article-content {
    line-height: 1.8;
    font-size: 1.1rem;
    color: #333;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content h2 {
    margin: 2.5rem 0 1rem;
    color: var(--primary-color);
}

.article-content img {
    width: 100%;
    border-radius: 12px;
    margin: 2rem 0;
}

.share-section {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.share-section h4 {
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    font-size: 0.9rem;
}

.share-btn.facebook { background-color: #1877F2; }
.share-btn.instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.share-btn.tiktok { background-color: #000000; }
.share-btn.x { background-color: #000000; }

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    opacity: 0.9;
}

/* Modern article share bar */
.article-share {
    margin-top: 2.75rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(41, 41, 41, 0.08);
}

.article-share__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem 1.75rem;
}

.article-share__intro {
    min-width: 0;
}

.article-share__eyebrow {
    display: inline-block;
    margin: 0 0 0.35rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-color);
}

.article-share__title {
    margin: 0 0 0.28rem;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--primary-color);
    text-transform: none;
}

.article-share__hint {
    margin: 0;
    font-size: 0.86rem;
    color: #6b6b6b;
    transition: color 0.2s ease;
}

.article-share__hint.is-active {
    color: #2b8a3e;
    font-weight: 600;
}

.article-share__buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem;
}

.article-share__btn {
    appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 2.55rem;
    padding: 0.55rem 0.9rem;
    border: 1px solid rgba(41, 41, 41, 0.12);
    border-radius: 999px;
    background: #fff;
    color: #3a3a3a;
    font-family: inherit;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    cursor: pointer;
    box-shadow: none;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.article-share__btn i,
.article-share__btn svg {
    width: 0.95rem;
    height: 0.95rem;
    font-size: 0.95rem;
    flex: 0 0 auto;
}

.article-share__btn span {
    line-height: 1;
}

.article-share__btn:hover {
    transform: translateY(-1px);
    border-color: rgba(41, 41, 41, 0.22);
    box-shadow: 0 8px 18px rgba(41, 41, 41, 0.08);
    color: var(--primary-color);
    background: #fcfbf7;
}

.article-share__btn:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

.article-share__btn--facebook:hover {
    color: #1877f2;
    border-color: rgba(24, 119, 242, 0.35);
    background: rgba(24, 119, 242, 0.06);
}

.article-share__btn--x:hover {
    color: #111;
    border-color: rgba(17, 17, 17, 0.28);
    background: rgba(17, 17, 17, 0.05);
}

.article-share__btn--whatsapp:hover {
    color: #128c7e;
    border-color: rgba(18, 140, 126, 0.35);
    background: rgba(18, 140, 126, 0.07);
}

.article-share__btn--telegram:hover {
    color: #229ed9;
    border-color: rgba(34, 158, 217, 0.35);
    background: rgba(34, 158, 217, 0.07);
}

.article-share__btn--native:hover,
.article-share__btn--copy:hover {
    color: var(--primary-color);
    border-color: rgba(205, 178, 42, 0.55);
    background: rgba(205, 178, 42, 0.12);
}

@media (max-width: 720px) {
    .article-share__inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .article-share__buttons {
        width: 100%;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 0.15rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .article-share__buttons::-webkit-scrollbar {
        display: none;
    }

    .article-share__btn {
        flex: 0 0 auto;
        padding: 0.55rem 0.8rem;
    }

    .article-share__btn span {
        display: none;
    }

    .article-share__btn {
        width: 2.65rem;
        min-height: 2.65rem;
        padding: 0;
        border-radius: 50%;
    }
}


.news-item {
    cursor: pointer;
    transition: var(--transition);
}

.news-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.news-item:hover h3 {
    color: var(--primary-color);
}

/* ========================================
   ABOUT PAGE — brand gold / charcoal (no green)
   ======================================== */

.about-hero {
    background-position: center 30%;
    background-size: cover;
    overflow: hidden;
}

.about-hero__overlay {
    background:
        radial-gradient(ellipse 50% 48% at 78% 40%, rgba(205, 178, 42, 0.22) 0%, transparent 55%),
        linear-gradient(115deg, rgba(14, 13, 13, 0.93) 0%, rgba(41, 41, 41, 0.74) 44%, rgba(14, 13, 13, 0.5) 100%);
}

.about-hero__content {
    max-width: 38rem;
    text-align: center;
    align-items: center;
    animation: aboutHeroIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes aboutHeroIn {
    from { opacity: 0; transform: translateY(22px); }
    to { opacity: 1; transform: translateY(0); }
}

.about-hero__brand {
    margin: 0 0 0.65rem;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.4rem, 7vw, 4rem);
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 0.95;
    color: #fff;
    opacity: 1;
    transform: none;
    filter: none;
    text-shadow: 0 10px 32px rgba(0, 0, 0, 0.35);
}

.about-hero__brand::after {
    content: '';
    display: block;
    width: 3.25rem;
    height: 3px;
    margin: 0.75rem auto 0;
    background: linear-gradient(90deg, var(--accent-bright), var(--accent-color));
}

.about-hero h1 {
    margin: 0 0 0.75rem;
    font-size: clamp(1.35rem, 3.2vw, 1.85rem);
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--accent-color);
    text-transform: uppercase;
    opacity: 1;
    transform: none;
    filter: none;
}

.about-hero p:not(.about-hero__brand) {
    margin: 0 auto 1.35rem;
    max-width: 34ch;
    font-size: clamp(1rem, 2vw, 1.12rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.9);
    opacity: 1;
    transform: none;
    filter: none;
}

.about-hero__cta-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
}

.about-story {
    position: relative;
    isolation: isolate;
    padding: clamp(3.5rem, 8vw, 5.5rem) 0;
    background:
        radial-gradient(ellipse 70% 50% at 0% 0%, rgba(241, 227, 0, 0.08) 0%, transparent 55%),
        var(--brand-cream, #fffef8);
    color: var(--near-black, #0e0d0d);
}

.about-story__noise {
    position: absolute;
    inset: 0;
    opacity: 0.035;
    pointer-events: none;
    z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.about-story__inner {
    position: relative;
    z-index: 1;
}

.about-story__eyebrow {
    display: inline-block;
    margin: 0 0 0.75rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent-color);
}

.about-story__eyebrow--on-dark {
    color: var(--accent-bright);
}

.about-story__title {
    margin: 0 0 1rem;
    font-size: clamp(1.75rem, 4vw, 2.45rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--near-black, #0e0d0d);
}

.about-who {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 5vw, 3.5rem);
    align-items: center;
}

@media (min-width: 900px) {
    .about-who {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
        gap: clamp(2.5rem, 5vw, 4rem);
    }
}

.about-who__lead {
    margin: 0 0 1.25rem;
    font-size: 1.08rem;
    line-height: 1.65;
    color: rgba(14, 13, 13, 0.72);
    max-width: 38rem;
}

.about-cms-body {
    display: grid;
    gap: 1rem;
    font-size: 1.02rem;
    line-height: 1.75;
    color: rgba(14, 13, 13, 0.82);
    max-width: 40rem;
}

.about-cms-body p { margin: 0; }
.about-cms-body a {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.about-who__figure {
    position: relative;
    margin: 0;
    isolation: isolate;
}

.about-who__figure img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 24px 48px rgba(14, 13, 13, 0.18);
}

.about-who__accent {
    position: absolute;
    inset: auto -0.85rem -0.85rem auto;
    width: 42%;
    height: 42%;
    z-index: -1;
    background: linear-gradient(145deg, var(--accent-bright), var(--accent-color));
    border-radius: 4px;
    animation: aboutAccentIn 1s 0.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes aboutAccentIn {
    from { opacity: 0; transform: translate(12px, 12px); }
    to { opacity: 1; transform: translate(0, 0); }
}

.about-pillars {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: clamp(3rem, 7vw, 4.5rem);
    padding-top: clamp(2.5rem, 5vw, 3.25rem);
    border-top: 1px solid rgba(14, 13, 13, 0.1);
}

@media (min-width: 768px) {
    .about-pillars {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

.about-pillar {
    position: relative;
    padding: 0 0 0 1.15rem;
    border-left: 3px solid var(--accent-color);
}

.about-pillar__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    background: rgba(205, 178, 42, 0.14);
    color: var(--near-black, #0e0d0d);
}

.about-pillar__icon svg {
    width: 1.2rem;
    height: 1.2rem;
    stroke-width: 1.75;
}

.about-pillar h3 {
    margin: 0 0 0.65rem;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--near-black, #0e0d0d);
}

.about-pillar p {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.7;
    color: rgba(14, 13, 13, 0.78);
}

.about-values {
    position: relative;
    padding: clamp(3.5rem, 8vw, 5rem) 0;
    color: #fff;
    background:
        radial-gradient(ellipse 60% 50% at 100% 0%, rgba(241, 227, 0, 0.12) 0%, transparent 50%),
        linear-gradient(165deg, #0e0d0d 0%, #1a1a1a 48%, #292929 100%);
}

.about-values__head {
    max-width: 36rem;
    margin-bottom: clamp(2rem, 5vw, 3rem);
}

.about-values__head h2 {
    margin: 0 0 0.75rem;
    font-size: clamp(1.75rem, 4vw, 2.35rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
}

.about-values__head p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.72);
}

.about-values__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
}

@media (min-width: 700px) {
    .about-values__list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1100px) {
    .about-values__list {
        grid-template-columns: repeat(3, 1fr);
    }
}

.about-values__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 1.15rem 1.2rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(241, 227, 0, 0.12);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.about-values__list li:hover {
    background: rgba(241, 227, 0, 0.08);
    border-color: rgba(241, 227, 0, 0.35);
    transform: translateY(-2px);
}

.about-values__list li:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 28rem;
}

@media (min-width: 1100px) {
    .about-values__list li:nth-child(5) {
        grid-column: auto;
        max-width: none;
    }
}

.about-values__list svg {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.15rem;
    color: var(--accent-bright);
    stroke: var(--accent-bright);
    stroke-width: 1.75;
}

.about-values__list strong {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 1.02rem;
    font-weight: 700;
    color: #fff;
}

.about-values__list span {
    display: block;
    font-size: 0.92rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.68);
}

.about-founder {
    position: relative;
    padding: clamp(3.5rem, 8vw, 5.5rem) 0;
    background:
        radial-gradient(ellipse 70% 50% at 100% 0%, rgba(241, 227, 0, 0.06) 0%, transparent 55%),
        linear-gradient(180deg, #ffffff 0%, #faf9f6 100%);
    border-bottom: 1px solid rgba(41, 41, 41, 0.09);
    box-shadow: 0 10px 28px rgba(14, 13, 13, 0.05);
}

.about-founder::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(205, 178, 42, 0.45) 18%,
        rgba(205, 178, 42, 0.75) 50%,
        rgba(205, 178, 42, 0.45) 82%,
        transparent 100%
    );
    pointer-events: none;
}

.about-founder__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 5vw, 3.5rem);
    align-items: center;
}

@media (min-width: 900px) {
    .about-founder__inner {
        grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    }
}

.about-founder__media {
    min-height: clamp(320px, 52vw, 480px);
    border-radius: 4px;
    background-size: cover;
    background-position: center 18%;
    background-color: #fff;
    box-shadow:
        14px 14px 0 0 var(--accent-color),
        0 24px 48px rgba(14, 13, 13, 0.14);
    animation: aboutFounderMedia 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes aboutFounderMedia {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

.about-founder__role {
    margin: 0 0 0.35rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-color);
}

.about-founder__copy h2 {
    margin: 0 0 1.15rem;
    font-size: clamp(1.85rem, 4vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--near-black, #0e0d0d);
}

.about-founder__copy p {
    margin: 0 0 1rem;
    font-size: 1.02rem;
    line-height: 1.75;
    color: rgba(14, 13, 13, 0.78);
    max-width: 40rem;
}

.about-founder__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.5rem;
}

.about-founder__socials a {
    width: 2.65rem;
    height: 2.65rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #fff;
    color: var(--near-black, #0e0d0d);
    border: 1px solid rgba(14, 13, 13, 0.1);
    font-size: 1rem;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.about-founder__socials a:hover {
    background: var(--accent-bright);
    border-color: var(--accent-color);
    color: var(--near-black, #0e0d0d);
    transform: translateY(-3px);
}

.about-experience {
    position: relative;
    overflow: hidden;
    padding: clamp(3.75rem, 8vw, 5.5rem) 0;
    background:
        radial-gradient(ellipse 74% 60% at 0% 0%, rgba(255, 248, 182, 0.55) 0%, transparent 52%),
        radial-gradient(ellipse 40% 38% at 100% 100%, rgba(166, 125, 18, 0.18) 0%, transparent 56%),
        linear-gradient(160deg, #f4dd42 0%, #e5c62d 46%, #cda51f 100%);
}

.about-experience__glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(70px);
}

.about-experience__glow--a {
    width: min(44vw, 380px);
    height: min(44vw, 380px);
    top: -18%;
    left: -8%;
    background: rgba(255, 252, 218, 0.52);
}

.about-experience__glow--b {
    width: min(36vw, 320px);
    height: min(36vw, 320px);
    bottom: -20%;
    right: -6%;
    background: rgba(133, 93, 12, 0.22);
}

.about-experience__inner {
    position: relative;
    z-index: 1;
}

.about-experience__layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 5vw, 3rem);
    align-items: center;
}

@media (min-width: 960px) {
    .about-experience__layout {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    }
}

.about-experience__intro {
    max-width: 34rem;
}

.about-experience .about-story__eyebrow,
.about-experience .about-story__eyebrow--on-dark {
    color: rgba(255, 255, 255, 0.96);
    text-shadow: 0 1px 12px rgba(86, 63, 4, 0.18);
}

.about-experience__intro h2 {
    margin: 0 0 0.85rem;
    font-size: clamp(1.85rem, 4vw, 2.55rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #17130a;
}

.about-experience__intro p {
    margin: 0;
    font-size: 1.04rem;
    line-height: 1.7;
    color: rgba(23, 19, 10, 0.78);
}

.about-experience__listen {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.6rem;
    padding: 0.95rem 1.35rem 0.95rem 0.95rem;
    border: 1px solid rgba(23, 19, 10, 0.12);
    border-radius: 999px;
    background: rgba(255, 252, 236, 0.72);
    color: #17130a;
    font-weight: 700;
    cursor: pointer;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.about-experience__listen-icon {
    width: 2.35rem;
    height: 2.35rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(145deg, #1f1c12 0%, #39301d 100%);
    color: #fff3a5;
    box-shadow: 0 8px 20px rgba(86, 63, 4, 0.2);
}

.about-experience__listen:hover {
    transform: translateY(-2px);
    background: rgba(255, 252, 236, 0.92);
    border-color: rgba(23, 19, 10, 0.2);
    box-shadow: 0 14px 32px rgba(86, 63, 4, 0.18);
}

.about-experience__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
}

@media (min-width: 640px) {
    .about-experience__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.about-experience__tile {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.9rem;
    padding: 1.1rem 1.15rem;
    border-radius: 18px;
    border: 1px solid rgba(23, 19, 10, 0.1);
    background: rgba(255, 251, 233, 0.3);
    color: #17130a;
    text-decoration: none;
    transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.about-experience__tile:hover {
    transform: translateY(-3px);
    background: rgba(255, 252, 236, 0.64);
    border-color: rgba(23, 19, 10, 0.16);
    box-shadow: 0 16px 36px rgba(86, 63, 4, 0.16);
}

.about-experience__tile-icon {
    width: 2.75rem;
    height: 2.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #b88a05;
    background: rgba(23, 19, 10, 0.06);
    border: 1px solid rgba(23, 19, 10, 0.08);
    font-size: 1rem;
}

.about-experience__tile-copy {
    display: grid;
    gap: 0.2rem;
    min-width: 0;
}

.about-experience__tile-copy strong {
    font-size: 0.98rem;
    letter-spacing: 0.01em;
    color: #17130a;
}

.about-experience__tile-copy span {
    font-size: 0.86rem;
    line-height: 1.5;
    color: rgba(23, 19, 10, 0.72);
}

.about-experience__tile-arrow {
    font-size: 0.82rem;
    color: rgba(23, 19, 10, 0.38);
    transition: transform 0.22s ease, color 0.22s ease;
}

.about-experience__tile:hover .about-experience__tile-arrow {
    transform: translateX(3px);
    color: #8f6b00;
}

@media (max-width: 600px) {
    .about-who__accent {
        inset: auto -0.45rem -0.45rem auto;
    }

    .about-founder__media {
        min-height: 280px;
        box-shadow:
            8px 8px 0 0 var(--accent-color),
            0 16px 32px rgba(14, 13, 13, 0.12);
    }

    .about-experience__listen {
        width: 100%;
        justify-content: center;
    }

    .about-experience__tile {
        grid-template-columns: auto 1fr;
    }

    .about-experience__tile-arrow {
        display: none;
    }
}


/* ========================================
   OUR MISSION & OUR STORY
   ======================================== */

.gee-page-eyebrow {
    display: inline-block;
    margin-bottom: 0.65rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-color);
}

.gee-page-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: clamp(2rem, 4vw, 3rem);
}

.gee-page-cta--center {
    justify-content: center;
}

.gee-mission,
.gee-story {
    position: relative;
    padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(4rem, 7vw, 5rem);
    background: var(--primary-color);
    color: #fff;
    overflow: hidden;
}

.gee-mission__noise,
.gee-story__noise {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    pointer-events: none;
}

.gee-mission__inner,
.gee-story__inner {
    position: relative;
    z-index: 1;
}

.gee-mission__intro,
.gee-story__intro {
    max-width: 42rem;
    margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.gee-story__intro {
    margin-inline: auto;
    text-align: center;
}

.gee-mission__intro h2,
.gee-story__intro h2 {
    margin: 0 0 0.85rem;
    font-size: clamp(1.65rem, 3.5vw, 2.35rem);
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
}

.gee-mission__lead,
.gee-story__lead {
    margin: 0;
    font-size: clamp(1rem, 2vw, 1.12rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
}

.gee-mission__body {
    max-width: 46rem;
    display: grid;
    gap: 1.15rem;
}

.gee-mission__body p {
    margin: 0;
    font-size: clamp(1rem, 1.8vw, 1.08rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
}

.gee-mission-prose {
    max-width: 44rem;
    margin: 0 auto;
    text-align: center;
}

.gee-mission-prose__head {
    margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
}

.gee-mission-prose__head h2 {
    margin: 0 0 0.65rem;
    font-size: clamp(1.85rem, 3.8vw, 2.5rem);
    font-weight: 800;
    line-height: 1.12;
    color: #fff;
}

.gee-mission-prose__tagline {
    margin: 0 auto;
    max-width: 28rem;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.72rem, 1.5vw, 0.82rem);
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-bright);
    line-height: 1.4;
}

.gee-mission-prose__body {
    display: grid;
    gap: 1.15rem;
    text-align: center;
}

.gee-mission-prose__body p {
    margin: 0;
    font-size: clamp(1rem, 1.8vw, 1.08rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.86);
}

.gee-mission-prose__closing {
    font-weight: 700;
    color: var(--accent-bright);
}

.gee-sayings-marquee {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: clamp(1.25rem, 3vw, 1.75rem) 0;
    margin-top: clamp(2rem, 4vw, 2.75rem);
    mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.gee-sayings-marquee__track {
    display: flex;
    width: max-content;
    animation: geeSayingsMarquee 48s linear infinite;
    will-change: transform;
}

.gee-sayings-marquee:hover .gee-sayings-marquee__track {
    animation-play-state: paused;
}

.gee-sayings-marquee__group {
    display: flex;
    align-items: stretch;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0 0.5rem;
    flex: 0 0 auto;
}

.gee-saying-card {
    flex: 0 0 auto;
    width: min(320px, 78vw);
    padding: 1.2rem 1.15rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gee-saying-card blockquote {
    margin: 0 0 0.85rem;
    font-size: 0.98rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-style: normal;
}

.gee-saying-card cite {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-color);
    font-style: normal;
}

@keyframes geeSayingsMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .gee-sayings-marquee__track {
        animation: none;
        flex-wrap: wrap;
        width: 100%;
        justify-content: center;
        gap: 1rem;
    }

    .gee-sayings-marquee__group[aria-hidden="true"] {
        display: none;
    }

    .gee-sayings-marquee {
        mask-image: none;
        overflow: visible;
    }
}

/* Timeline */
.gee-timeline {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    display: grid;
    gap: 0;
    max-width: 52rem;
}

.gee-timeline__item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0 1.35rem;
    position: relative;
}

.gee-timeline__rail {
    position: relative;
    width: 2.5rem;
    display: flex;
    justify-content: center;
    padding-top: 1.35rem;
}

.gee-timeline__item:not(:last-child) .gee-timeline__rail::after {
    content: '';
    position: absolute;
    top: 2.1rem;
    bottom: -0.5rem;
    left: 50%;
    width: 2px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, var(--accent-color) 0%, rgba(205, 178, 42, 0.15) 100%);
}

.gee-timeline__dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent-bright);
    border: 3px solid var(--primary-color);
    box-shadow: 0 0 0 2px var(--accent-color);
    flex-shrink: 0;
}

.gee-timeline__item.is-current .gee-timeline__dot {
    background: var(--accent-color);
    box-shadow: 0 0 0 2px var(--accent-bright), 0 0 18px rgba(205, 178, 42, 0.55);
    animation: geeTimelinePulse 2.2s ease-out infinite;
}

@keyframes geeTimelinePulse {
    0%, 100% { box-shadow: 0 0 0 2px var(--accent-bright), 0 0 12px rgba(205, 178, 42, 0.4); }
    50% { box-shadow: 0 0 0 2px var(--accent-bright), 0 0 22px rgba(205, 178, 42, 0.65); }
}

.gee-timeline__card {
    margin-bottom: 1.5rem;
    padding: 1.35rem 1.4rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.gee-timeline__item:hover .gee-timeline__card,
.gee-timeline__item.is-current .gee-timeline__card {
    border-color: rgba(205, 178, 42, 0.45);
    background: rgba(255, 255, 255, 0.06);
}

.gee-timeline__item.is-current .gee-timeline__card {
    transform: translateX(4px);
}

.gee-timeline__card-head {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
    margin-bottom: 0.45rem;
}

.gee-timeline__date {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-bright);
}

.gee-timeline__badge {
    display: inline-flex;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(205, 178, 42, 0.2);
    color: var(--accent-bright);
    border: 1px solid rgba(205, 178, 42, 0.45);
}

.gee-timeline__title {
    margin: 0 0 0.55rem;
    font-size: clamp(1.1rem, 2.2vw, 1.28rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
}

.gee-timeline__body {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 600px) {
    .gee-timeline__item {
        grid-template-columns: auto 1fr;
        gap: 0 0.85rem;
    }

    .gee-timeline__rail {
        width: 2rem;
        padding-top: 1.35rem;
        justify-content: center;
    }

    .gee-timeline__item:not(:last-child) .gee-timeline__rail::after {
        top: 2.1rem;
        bottom: -0.5rem;
        width: 2px;
    }

    .gee-timeline__card {
        margin-bottom: 1rem;
    }

    .gee-page-cta {
        flex-direction: column;
    }

    .gee-page-cta .hero-cta-btn {
        width: 100%;
        justify-content: center;
    }
}


/* Contact Page Styles */
.contact-hero {
    position: relative;
    overflow: hidden;
}

.contact-hero::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -1px;
    z-index: 2;
    width: 130%;
    height: clamp(2.5rem, 5vw, 3.75rem);
    transform: translateX(-50%);
    background: #f8f5ea;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    pointer-events: none;
}

.contact-hero__overlay {
    background:
        radial-gradient(ellipse 70% 55% at 50% 100%, rgba(205, 178, 42, 0.16) 0%, transparent 58%),
        linear-gradient(180deg, rgba(14, 13, 13, 0.35) 0%, rgba(41, 41, 41, 0.72) 52%, rgba(14, 13, 13, 0.92) 100%);
}

.contact-hero__content {
    position: relative;
    z-index: 3;
    max-width: 52rem;
    text-align: center;
    align-items: center;
    animation: contactHeroIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes contactHeroIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-hero__eyebrow {
    display: inline-block;
    margin: 0 0 0.75rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: none;
    color: var(--accent-bright);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.contact-hero h1 {
    margin: 0 auto 0.65rem;
    max-width: 22ch;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.45rem, 3vw, 1.85rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
    color: #fff;
    text-wrap: balance;
    opacity: 1;
    transform: none;
    filter: none;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.contact-hero h1::after {
    content: '';
    display: block;
    width: 2.75rem;
    height: 3px;
    margin: 0.65rem auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent-bright), var(--accent-color));
}

.contact-hero p {
    margin: 0 auto;
    max-width: 46ch;
    font-size: clamp(0.95rem, 1.8vw, 1.08rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
    text-wrap: pretty;
    opacity: 1;
    transform: none;
    filter: none;
}

.contact-shell {
    position: relative;
    padding: 0 0 6rem;
    background: linear-gradient(180deg, #f8f5ea 0%, #ffffff 28%, #f7f6f1 100%);
}

.contact-panel {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(2rem, 4vw, 3rem);
    margin-top: clamp(-3.25rem, -5vw, -2.5rem);
    padding: clamp(1.2rem, 2.5vw, 1.6rem);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(41, 41, 41, 0.1);
    box-shadow: 0 26px 70px rgba(41, 41, 41, 0.12);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.contact-panel__info {
    padding: clamp(1.1rem, 2vw, 1.5rem);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 250, 232, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.contact-panel__eyebrow {
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--accent-color);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.contact-panel__info h2,
.contact-form__intro h2 {
    margin: 0 0 0.65rem;
    font-size: clamp(1.45rem, 3vw, 1.85rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-color);
    letter-spacing: -0.02em;
    text-transform: none;
    text-wrap: balance;
}

.contact-panel__lede {
    margin: 0 0 1.8rem;
    max-width: 44ch;
    color: #5f5a4f;
    font-size: 1rem;
    line-height: 1.7;
}

.contact-detail-list {
    display: grid;
    gap: 1rem;
}

.contact-detail-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.05rem;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(41, 41, 41, 0.08);
    box-shadow: 0 12px 30px rgba(41, 41, 41, 0.07);
}

.contact-detail-card__icon {
    flex: 0 0 auto;
    width: 3rem;
    height: 3rem;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-bright) 0%, var(--accent-color) 100%);
    color: var(--primary-color);
    box-shadow: 0 12px 24px rgba(205, 178, 42, 0.24);
}

.contact-detail-card h3 {
    margin: 0 0 0.28rem;
    font-size: 1rem;
    color: var(--primary-color);
}

.contact-detail-card p {
    margin: 0;
    color: #5e5a55;
    line-height: 1.6;
}

.contact-detail-card a {
    color: inherit;
    text-decoration: none;
}

.contact-detail-card a:hover {
    color: var(--accent-color);
}

.contact-hours-card {
    margin-top: 1rem;
    padding: 1.1rem 1.15rem;
    border-radius: 20px;
    background: linear-gradient(135deg, #292929 0%, #1a1a1a 100%);
    color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 34px rgba(41, 41, 41, 0.2);
}

.contact-hours-card__head {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.75rem;
}

.contact-hours-card__head i {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
}

.contact-hours-card__head h3 {
    margin: 0;
    color: #fff;
    font-size: 0.98rem;
}

.contact-hours-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.75;
}

.contact-socials {
    display: flex;
    align-items: center;
    gap: 0.95rem;
    margin-top: 1.3rem;
    flex-wrap: wrap;
}

.contact-socials__label {
    color: #5e5a55;
    font-size: 0.92rem;
    font-weight: 700;
}

.contact-socials__list {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.contact-socials__list a {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid rgba(41, 41, 41, 0.1);
    color: var(--accent-color);
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(41, 41, 41, 0.08);
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.contact-socials__list a:hover {
    transform: translateY(-2px);
    background: var(--accent-color);
    color: var(--primary-color);
}

.contact-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.58rem;
    margin-top: 1.4rem;
    padding: 0.92rem 1.1rem;
    border-radius: 14px;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: 0 16px 28px rgba(37, 211, 102, 0.24);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-whatsapp-btn i {
    font-size: 1.15rem;
}

.contact-whatsapp-btn:hover {
    transform: translateY(-2px);
    background: #1fb85a;
    color: #fff;
    box-shadow: 0 20px 34px rgba(37, 211, 102, 0.28);
}

.contact-form {
    position: relative;
    background: #fff;
    border: 1px solid rgba(41, 41, 41, 0.1);
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(41, 41, 41, 0.08);
    padding: clamp(1.35rem, 3vw, 2rem);
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: -110px;
    right: -110px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(205, 178, 42, 0.16) 0%, rgba(205, 178, 42, 0) 72%);
    pointer-events: none;
}

.contact-form__intro {
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
}

.contact-form__kicker {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(205, 178, 42, 0.16);
    color: var(--primary-color);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.contact-form__intro p {
    margin: 0;
    color: #5e5a55;
    font-size: 0.96rem;
    line-height: 1.6;
    max-width: 45ch;
}

#contactForm {
    position: relative;
    z-index: 1;
}

.contact-form__row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.contact-form .form-group {
    margin-bottom: 1.05rem;
}

.contact-form .form-group label {
    display: block;
    margin-bottom: 0.48rem;
    color: var(--primary-color);
    font-size: 0.88rem;
    font-weight: 700;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 100%;
    padding: 0.92rem 1rem;
    border: 1px solid rgba(41, 41, 41, 0.14);
    border-radius: 14px;
    background: #fcfbf7;
    color: var(--primary-color);
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease, background-color 0.2s ease;
}

.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
    color: #938b79;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(205, 178, 42, 0.18);
    transform: translateY(-1px);
    background: #fff;
}

.contact-form .form-group.is-invalid input,
.contact-form .form-group.is-invalid textarea {
    border-color: #d64545;
    box-shadow: 0 0 0 3px rgba(214, 69, 69, 0.14);
}

.contact-form .form-group.is-invalid input:focus,
.contact-form .form-group.is-invalid textarea:focus {
    border-color: #d64545;
    box-shadow: 0 0 0 4px rgba(214, 69, 69, 0.18);
}

.contact-form .form-field-error {
    margin: 0.42rem 0 0;
    min-height: 1.1em;
    font-size: 0.82rem;
    line-height: 1.35;
    color: #b42318;
}

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

.contact-message-meta {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 0.42rem;
}

.contact-message-meta .form-field-error {
    margin: 0;
    flex: 1 1 auto;
    min-height: 1.1em;
}

.contact-message-count {
    flex: 0 0 auto;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #7a7468;
    white-space: nowrap;
}

.contact-message-count.is-near-limit {
    color: #b45309;
}

.contact-message-count.is-at-limit,
.contact-form .form-group.is-invalid .contact-message-count {
    color: #b42318;
}

.contact-challenge {
    margin: 0.35rem 0 1.15rem;
    padding: 1rem 1.05rem;
    border-radius: 16px;
    border: 1px solid rgba(41, 41, 41, 0.1);
    background: linear-gradient(145deg, #fffef8 0%, #f7f4ea 100%);
}

.contact-challenge__head {
    margin-bottom: 0.75rem;
}

.contact-challenge__label {
    display: inline-block;
    margin-bottom: 0.28rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-color);
}

.contact-challenge__help {
    margin: 0;
    color: #5e5a55;
    font-size: 0.9rem;
    line-height: 1.45;
}

.contact-challenge__row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
}

.contact-challenge__question {
    margin: 0;
    flex: 1 1 12rem;
    color: var(--primary-color);
    font-size: 0.98rem;
    font-weight: 700;
}

.contact-challenge__answer-group {
    margin-bottom: 0;
    flex: 0 0 auto;
}

.contact-challenge__controls {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    flex: 0 0 auto;
}

.contact-challenge__input {
    width: 6.5rem;
    padding: 0.78rem 0.85rem;
    border: 1px solid rgba(41, 41, 41, 0.14);
    border-radius: 12px;
    background: #fff;
    color: var(--primary-color);
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    text-align: center;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-challenge__input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(205, 178, 42, 0.18);
}

.contact-challenge .form-group.is-valid .contact-challenge__input,
.contact-challenge.is-verified .contact-challenge__input {
    border-color: #2f9e44;
    box-shadow: 0 0 0 3px rgba(47, 158, 68, 0.16);
    background: #f7fff8;
}

.contact-challenge .form-group.is-invalid .contact-challenge__input {
    border-color: #d64545;
    box-shadow: 0 0 0 3px rgba(214, 69, 69, 0.14);
}

.contact-challenge .form-field-error {
    margin: 0.45rem 0 0;
    min-height: 1.1em;
    font-size: 0.82rem;
    line-height: 1.35;
    color: #b42318;
}

.contact-challenge .form-field-error.is-success {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #2b8a3e;
    font-weight: 600;
}

.contact-challenge .form-field-error.is-success i {
    font-size: 0.95em;
}

.contact-challenge__refresh {
    width: 2.6rem;
    height: 2.6rem;
    border: 1px solid rgba(41, 41, 41, 0.12);
    border-radius: 12px;
    background: #fff;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.contact-challenge__refresh:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--accent-bright);
}

.contact-challenge__refresh.is-spinning i {
    animation: contactChallengeSpin 0.7s linear infinite;
}

@keyframes contactChallengeSpin {
    to { transform: rotate(360deg); }
}

.contact-challenge__hint {
    margin: 0.7rem 0 0;
    color: #7a7468;
    font-size: 0.8rem;
    line-height: 1.4;
}

.contact-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.contact-form .form-group.is-invalid .contact-challenge__input,
.contact-challenge .form-group.is-invalid .contact-challenge__input {
    border-color: #d64545;
    box-shadow: 0 0 0 3px rgba(214, 69, 69, 0.14);
}

.contact-form .btn-submit {
    margin-top: 0.4rem;
    width: 100%;
    border: none;
    border-radius: 999px;
    padding: 1rem 1.2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a1a1a 100%);
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    cursor: pointer;
    box-shadow: 0 16px 30px rgba(41, 41, 41, 0.24);
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.contact-form .btn-submit:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-gold) 100%);
    color: var(--primary-color);
    box-shadow: 0 20px 34px rgba(205, 178, 42, 0.28);
    filter: none;
}

.contact-form .btn-submit:active {
    transform: translateY(0);
}

.contact-form .btn-submit:disabled {
    opacity: 0.78;
    cursor: not-allowed;
    transform: none;
}

.contact-form__message {
    margin-top: 0.95rem;
    padding: 0.75rem 0.85rem;
    display: none;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
}

.map-container {
    position: relative;
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(41, 41, 41, 0.1);
    background: linear-gradient(145deg, #ffffff 0%, #fbfaf5 100%);
    box-shadow: 0 24px 54px rgba(41, 41, 41, 0.1);
    margin-top: 2rem;
    padding: 1.15rem;
}

.map-container__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.2rem;
    padding: 0.7rem 0.55rem 1.1rem;
}

.map-container__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(205, 178, 42, 0.16);
    color: var(--primary-color);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.map-container__title-wrap h3 {
    margin: 0.8rem 0 0.38rem;
    color: var(--primary-color);
    font-size: 1.32rem;
}

.map-container__title-wrap p {
    margin: 0;
    color: #5e5a55;
    font-size: 0.96rem;
    max-width: 48ch;
    line-height: 1.7;
}

.map-container__cta {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.82rem 1.05rem;
    border-radius: 999px;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    font-size: 0.84rem;
    font-weight: 700;
    box-shadow: 0 14px 24px rgba(41, 41, 41, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.map-container__cta:hover {
    transform: translateY(-2px);
    background: var(--accent-color);
    color: var(--primary-color);
    box-shadow: 0 18px 30px rgba(205, 178, 42, 0.24);
    filter: none;
}

.map-container__frame {
    height: clamp(300px, 44vw, 460px);
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(41, 41, 41, 0.12);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42), 0 12px 28px rgba(41, 41, 41, 0.08);
}

.map-container__frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: saturate(1.05) contrast(1.02);
}

/* ------------------------------------------------------------------
   Featured Shows (home) + show cards (shows page)
   ------------------------------------------------------------------ */

.featured-shows {
    position: relative;
    background: linear-gradient(165deg, #f5f8f7 0%, #eceff0 48%, #e3e8e7 100%);
    overflow: hidden;
}

.featured-shows::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse 70% 50% at 12% 15%, rgba(205, 178, 42, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse 60% 45% at 88% 85%, rgba(41, 41, 41, 0.07) 0%, transparent 50%);
    pointer-events: none;
}

.featured-shows .container {
    position: relative;
    z-index: 1;
}

.featured-shows__head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem 1.5rem;
}

.featured-shows__titles {
    flex: 1 1 12rem;
    min-width: 0;
}

.featured-shows__eyebrow {
    margin: 0 0 0.35rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary-color);
    opacity: 0.72;
}

.featured-shows__title {
    margin: 0;
    color: var(--primary-color);
    font-size: clamp(1.6rem, 4.5vw, 2.35rem);
}

.featured-shows__all-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45em;
    padding: 0.55rem 1.2rem;
    border-radius: 999px;
    background: var(--primary-color);
    color: #fff !important;
    font-weight: 700;
    font-size: 0.8rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 1px solid rgba(205, 178, 42, 0.28);
    box-shadow: 0 4px 20px rgba(41, 41, 41, 0.14);
    transition: transform 0.22s ease, box-shadow 0.22s ease, color 0.22s ease, background 0.22s ease, border-color 0.22s ease;
    float: none !important;
    margin: 0 !important;
}

.featured-shows__all-link:hover {
    color: #fff !important;
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateX(4px);
    box-shadow: 0 8px 28px rgba(205, 178, 42, 0.35);
    filter: none;
}

.featured-shows__all-link i {
    font-size: 0.78em;
    transition: transform 0.22s ease;
}

.featured-shows__all-link:hover i {
    transform: translateX(3px);
}

.featured-shows .shows-grid,
.featured-shows__grid {
    margin-top: clamp(1.35rem, 4vw, 2.25rem);
}

/* Grid: works on home + /shows */
.shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: clamp(1.2rem, 3.5vw, 2rem);
    margin-top: 2rem;
}

.show-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(41, 41, 41, 0.08);
    box-shadow:
        0 2px 4px rgba(41, 41, 41, 0.04),
        0 14px 36px rgba(41, 41, 41, 0.09);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    display: flex;
    flex-direction: column;
}

.show-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 6px 12px rgba(41, 41, 41, 0.06),
        0 22px 48px rgba(41, 41, 41, 0.14);
}

.show-card__media {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #292929 0%, #1a1a1a 100%);
}

/* “Live” when current Nairobi day/time falls in data-live-* slot (see script.js) */
.show-card__live-badge {
    position: absolute;
    top: 0.55rem;
    right: 0.55rem;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 0.32rem;
    padding: 0.2rem 0.5rem 0.2rem 0.38rem;
    border-radius: 999px;
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, #ff5252 0%, #c62828 100%);
    border: 1px solid rgba(255, 255, 255, 0.38);
    box-shadow: 0 2px 14px rgba(198, 40, 40, 0.5);
    pointer-events: none;
}

.show-card__live-badge[hidden] {
    display: none !important;
}

.show-card__live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    animation: showLiveDotPulse 1.35s ease-in-out infinite;
}

@keyframes showLiveDotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.55; transform: scale(0.86); }
}

.show-card-img {
    aspect-ratio: 16 / 10;
    height: auto;
    min-height: 176px;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.show-card:hover .show-card-img {
    transform: scale(1.045);
}

/* Time slot on image (modern overlay) */
.show-card__media .show-time-banner,
.show-time-banner--overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.65rem 1rem 0.7rem;
    margin: 0;
    background: linear-gradient(
        to top,
        rgba(41, 41, 41, 0.96) 0%,
        rgba(41, 41, 41, 0.72) 42%,
        rgba(41, 41, 41, 0.2) 78%,
        transparent 100%
    );
    color: #fff;
    font-weight: 700;
    font-size: clamp(0.78rem, 2.2vw, 0.92rem);
    letter-spacing: 0.04em;
    text-transform: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
    border: none;
}

.show-card__media .show-time-banner::before,
.show-time-banner--overlay::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(205, 178, 42, 0.35);
    flex-shrink: 0;
}

/* Legacy: flat banner above image (older markup) */
.show-card > .show-time-banner:not(.show-time-banner--overlay) {
    background: var(--primary-color);
    color: var(--accent-color);
    padding: 0.75rem 1.25rem;
    font-weight: 700;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.show-card-body {
    padding: clamp(1.2rem, 3.2vw, 1.75rem);
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.show-card__tag {
    display: inline-block;
    align-self: flex-start;
    padding: 0.3rem 0.7rem;
    margin-bottom: 0.55rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--near-black) 100%);
    color: #fff;
    border-radius: 8px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.2;
}

.show-card-body h3 {
    font-size: clamp(1.12rem, 2.6vw, 1.55rem);
    color: var(--primary-color);
    margin: 0 0 0.4rem;
    line-height: 1.2;
}

.show-card__schedule {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin: 0 0 0.65rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(41, 41, 41, 0.62);
}

.show-card__schedule i {
    color: var(--primary-color);
    opacity: 0.55;
    font-size: 0.85em;
}

.show-card__excerpt {
    margin: 0 0 1rem;
    font-size: 0.9rem;
    line-height: 1.55;
    color: #4a5560;
    flex: 1;
}

.show-card__more {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: auto;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.show-card__more i {
    color: var(--accent-color);
    font-size: 0.75em;
    transition: transform 0.2s ease;
}

.show-card__more:hover {
    color: #7a680f;
}

.show-card__more:hover i {
    transform: translateX(3px);
}

.show-host {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-top: auto;
    padding: 0.85rem 0.95rem;
    padding-bottom: 0;
    border-radius: 12px;
    background: rgba(41, 41, 41, 0.04);
    border: 1px solid rgba(41, 41, 41, 0.06);
}

.show-host img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(205, 178, 42, 0.35);
}

.show-host-info h4 {
    font-size: 0.95rem;
    color: var(--primary-color);
    margin-bottom: 0.1rem;
}

.show-host-info span {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(41, 41, 41, 0.5);
}

@media (max-width: 768px) {
    .featured-shows .shows-grid,
    .featured-shows__grid {
        display: flex;
        flex-wrap: nowrap;
        align-items: stretch;
        gap: 0.9rem;
        margin-top: 1.1rem;
        margin-inline: calc(-1 * clamp(1.15rem, 4vw, 3.25rem));
        padding-inline: clamp(1.15rem, 4vw, 3.25rem);
        padding-bottom: 0.65rem;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: clamp(1.15rem, 4vw, 3.25rem);
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .featured-shows .shows-grid::-webkit-scrollbar,
    .featured-shows__grid::-webkit-scrollbar {
        display: none;
        width: 0;
        height: 0;
    }

    .featured-shows .show-card {
        flex: 0 0 min(82vw, 300px);
        width: min(82vw, 300px);
        max-width: 300px;
        scroll-snap-align: start;
    }

    .featured-shows .show-card:hover {
        transform: none;
    }
}

@media (max-width: 600px) {
    .featured-shows {
        padding: 2rem 0 1.6rem;
    }

    .featured-shows__titles {
        flex: 0 0 auto;
    }

    .featured-shows__head {
        flex-direction: column;
        align-items: stretch;
        gap: 0.35rem;
    }

    .featured-shows__title {
        text-align: center;
        margin-bottom: 0.15rem;
    }

    .featured-shows__eyebrow {
        text-align: center;
        margin-bottom: 0.2rem;
    }

    .featured-shows__all-link {
        width: 100%;
        padding: 0.65rem 1rem;
    }

    .featured-shows .shows-grid,
    .featured-shows__grid {
        margin-top: 0.95rem;
        gap: 0.8rem;
    }

    .featured-shows .show-card {
        flex-basis: min(84vw, 290px);
        width: min(84vw, 290px);
    }

    .show-card-img {
        min-height: 160px;
        aspect-ratio: 16 / 11;
    }

    .show-card-body {
        padding: 1.15rem 1.1rem 1.2rem;
    }

    .show-host {
        margin-top: 0.75rem;
        padding: 0.75rem 0.85rem;
    }

    .show-card__excerpt {
        font-size: 0.86rem;
        margin-bottom: 0.85rem;
    }
}

/* ========================================
   SHOW SCHEDULE PAGE — weekly timeline
   ======================================== */

.schedule-hero {
    height: clamp(220px, 38vh, 340px);
    min-height: 200px;
}

.schedule-hero__overlay {
    background: linear-gradient(
        135deg,
        rgba(41, 41, 41, 0.94) 0%,
        rgba(14, 13, 13, 0.82) 50%,
        rgba(41, 41, 41, 0.72) 100%
    );
}

.schedule-hero__content {
    text-align: center;
    max-width: 36rem;
}

.schedule-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.38rem 0.95rem;
    margin-bottom: 0.85rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(205, 178, 42, 0.35);
}

.schedule-hero__eyebrow i {
    color: var(--accent-color);
}

.schedule-hero__title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin: 0 0 0.55rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
}

.schedule-hero__title span,
.schedule-hero__tagline strong {
    color: var(--accent-color);
}

.schedule-hero__tagline {
    margin: 0;
    font-size: clamp(0.95rem, 2.2vw, 1.12rem);
    color: rgba(255, 255, 255, 0.88);
    font-weight: 500;
    line-height: 1.5;
}

.schedule-section {
    position: relative;
    padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(3.5rem, 8vw, 5.5rem);
    background:
        radial-gradient(ellipse 90% 60% at 50% 0%, rgba(205, 178, 42, 0.1) 0%, transparent 55%),
        radial-gradient(ellipse 70% 50% at 100% 100%, rgba(41, 41, 41, 0.04) 0%, transparent 50%),
        linear-gradient(180deg, var(--brand-cream-muted) 0%, #f0efe8 100%);
}

.schedule-section__band {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), rgba(241, 227, 0, 0.85), var(--accent-color), transparent);
    opacity: 0.9;
}

.schedule-section__inner {
    position: relative;
    z-index: 1;
}

.schedule-now {
    display: flex;
    align-items: center;
    gap: clamp(0.85rem, 2.5vw, 1.35rem);
    flex-wrap: wrap;
    padding: clamp(0.9rem, 2.5vw, 1.15rem) clamp(1rem, 3vw, 1.5rem);
    margin-bottom: clamp(1.35rem, 3.5vw, 2rem);
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--near-black) 100%);
    border: 1px solid rgba(205, 178, 42, 0.35);
    box-shadow:
        0 4px 24px rgba(41, 41, 41, 0.28),
        0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.schedule-now[hidden] {
    display: none !important;
}

.schedule-now__pulse {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff5252;
    box-shadow: 0 0 0 0 rgba(255, 82, 82, 0.55);
    animation: scheduleNowPulse 1.6s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes scheduleNowPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 82, 82, 0.55); }
    50% { box-shadow: 0 0 0 8px rgba(255, 82, 82, 0); }
}

.schedule-now__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.schedule-now__label {
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.schedule-now__show {
    font-size: clamp(1rem, 2.8vw, 1.25rem);
    color: #fff;
    line-height: 1.2;
}

.schedule-now__time {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent-color);
}

.schedule-now__listen {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    font-family: inherit;
    cursor: pointer;
    color: var(--primary-color) !important;
    background: linear-gradient(145deg, #fffef0 0%, var(--accent-color) 100%);
    border: 1px solid rgba(205, 178, 42, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.schedule-now__listen:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(205, 178, 42, 0.35);
}

.schedule-days {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.45rem;
    padding: 0.45rem;
    margin-bottom: clamp(1.5rem, 4vw, 2.25rem);
    border-radius: 18px;
    background: rgba(255, 254, 248, 0.88);
    border: 1px solid rgba(41, 41, 41, 0.1);
    box-shadow: 0 8px 32px rgba(41, 41, 41, 0.06);
    position: sticky;
    top: calc(var(--header-height, 72px) + 0.5rem);
    z-index: 20;
    backdrop-filter: blur(12px);
}

.schedule-days__btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.15rem;
    padding: 0.7rem 0.35rem;
    border: none;
    border-radius: 12px;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.schedule-days__btn:hover {
    background: rgba(41, 41, 41, 0.06);
}

.schedule-days__btn[aria-selected="true"] {
    background: linear-gradient(145deg, var(--near-black) 0%, var(--primary-color) 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(41, 41, 41, 0.28);
    transform: translateY(-1px);
}

.schedule-days__btn[aria-selected="true"] .schedule-days__abbr {
    color: var(--accent-color);
}

.schedule-days__btn--today:not([aria-selected="true"]) {
    box-shadow: 0 0 0 2px rgba(205, 178, 42, 0.45);
}

.schedule-days__abbr {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--primary-color);
    transition: color 0.2s ease;
}

.schedule-days__btn[aria-selected="true"] .schedule-days__abbr {
    color: var(--accent-color);
}

.schedule-days__full {
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(41, 41, 41, 0.45);
    display: none;
}

.schedule-days__btn[aria-selected="true"] .schedule-days__full {
    color: rgba(255, 255, 255, 0.65);
}

.schedule-panel[hidden] {
    display: none !important;
}

.schedule-panel__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
    padding-bottom: 0.85rem;
    border-bottom: 2px solid rgba(41, 41, 41, 0.1);
}

.schedule-panel__title {
    margin: 0;
    font-size: clamp(1.35rem, 3.5vw, 1.85rem);
    color: var(--primary-color);
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.schedule-panel__title::before {
    content: '';
    width: 4px;
    height: 1.1em;
    border-radius: 2px;
    background: linear-gradient(180deg, var(--accent-color), var(--primary-color));
    flex-shrink: 0;
}

.schedule-panel__meta {
    margin: 0;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(41, 41, 41, 0.55);
}

.schedule-timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.schedule-slot {
    display: grid;
    grid-template-columns: minmax(72px, 96px) 28px 1fr;
    gap: 0 0.85rem;
    align-items: stretch;
    padding: 0 0 clamp(1rem, 2.5vw, 1.35rem);
    margin: 0;
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
}

.schedule-slot:hover {
    transform: none;
    box-shadow: none;
}

.schedule-slot__time-col {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 0.2rem;
    padding-top: 1.1rem;
    text-align: right;
}

.schedule-slot__start,
.schedule-slot__end {
    font-size: clamp(0.68rem, 1.8vw, 0.78rem);
    font-weight: 700;
    letter-spacing: 0.03em;
    color: rgba(41, 41, 41, 0.55);
    line-height: 1.2;
    white-space: nowrap;
}

.schedule-slot__start {
    color: var(--primary-color);
    font-size: clamp(0.75rem, 2vw, 0.88rem);
}

.schedule-slot__time-sep {
    width: 1px;
    height: 10px;
    background: rgba(205, 178, 42, 0.45);
    margin: 0.1rem 0;
}

.schedule-slot__track {
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 1.1rem;
}

.schedule-slot__track::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, var(--accent-color) 0%, rgba(41, 41, 41, 0.22) 55%, rgba(41, 41, 41, 0.1) 100%);
}

.schedule-slot:last-child .schedule-slot__track::before {
    bottom: 50%;
}

.schedule-slot__dot {
    position: relative;
    z-index: 1;
    width: 12px;
    height: 12px;
    margin-top: 0.35rem;
    border-radius: 50%;
    background: var(--brand-cream);
    border: 2px solid rgba(41, 41, 41, 0.22);
    box-shadow: 0 0 0 3px var(--brand-cream-muted);
    transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.schedule-slot__card {
    position: relative;
    display: flex;
    align-items: stretch;
    gap: clamp(0.85rem, 2.5vw, 1.15rem);
    padding: clamp(0.75rem, 2vw, 1rem);
    border-radius: 16px;
    background: linear-gradient(135deg, var(--brand-cream) 0%, #faf8f2 100%);
    border: 1px solid rgba(41, 41, 41, 0.1);
    box-shadow:
        0 2px 4px rgba(41, 41, 41, 0.03),
        0 10px 28px rgba(41, 41, 41, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    overflow: hidden;
}

.schedule-slot__card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--accent-color) 0%, var(--primary-color) 100%);
    border-radius: 16px 0 0 16px;
    opacity: 0.85;
}

.schedule-slot:hover .schedule-slot__card {
    transform: translateX(4px);
    border-color: rgba(205, 178, 42, 0.28);
    box-shadow:
        0 4px 8px rgba(41, 41, 41, 0.05),
        0 16px 36px rgba(41, 41, 41, 0.1);
}

.schedule-slot.show-card--on-air .schedule-slot__card {
    border-color: rgba(205, 178, 42, 0.55);
    background: linear-gradient(135deg, #fffef5 0%, #faf6e8 100%);
    box-shadow:
        0 0 0 1px rgba(205, 178, 42, 0.2),
        0 8px 32px rgba(205, 178, 42, 0.18);
}

.schedule-slot.show-card--on-air .schedule-slot__card::before {
    opacity: 1;
    width: 4px;
    background: linear-gradient(180deg, var(--accent-bright) 0%, var(--accent-color) 50%, var(--accent-gold) 100%);
}

.schedule-slot.show-card--on-air .schedule-slot__dot {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(205, 178, 42, 0.25), 0 0 12px rgba(205, 178, 42, 0.45);
}

.schedule-slot__live {
    top: 0.65rem;
    left: clamp(0.75rem, 2vw, 1rem);
    right: auto;
}

.schedule-slot__poster {
    flex: 0 0 clamp(88px, 22vw, 120px);
    width: clamp(88px, 22vw, 120px);
    aspect-ratio: 4 / 5;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(145deg, var(--near-black) 0%, var(--primary-color) 100%);
    box-shadow: 0 4px 16px rgba(41, 41, 41, 0.2);
    border: 1px solid rgba(205, 178, 42, 0.15);
}

.schedule-slot__poster:not(.schedule-slot__poster--placeholder) {
    cursor: zoom-in;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.schedule-slot__poster:not(.schedule-slot__poster--placeholder):focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

.schedule-slot__poster:not(.schedule-slot__poster--placeholder):hover {
    box-shadow: 0 6px 22px rgba(41, 41, 41, 0.22);
    border-color: rgba(205, 178, 42, 0.35);
}

.schedule-slot__poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.schedule-slot:hover .schedule-slot__poster img {
    transform: scale(1.05);
}

.schedule-slot__poster--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse 85% 75% at 50% 42%, #464545 0%, var(--primary-color) 45%, var(--near-black) 100%);
    border: 1px solid rgba(205, 178, 42, 0.22);
}

.schedule-slot__poster--placeholder i {
    font-size: 1.75rem;
    color: var(--accent-color);
    text-shadow: 0 0 18px rgba(205, 178, 42, 0.4);
}

.schedule-slot__info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0.15rem 0;
}

.schedule-slot__name {
    margin: 0 0 0.4rem;
    font-size: clamp(1rem, 2.6vw, 1.22rem);
    color: var(--primary-color);
    line-height: 1.25;
}

.schedule-slot__window {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(41, 41, 41, 0.62);
    opacity: 1;
}

.schedule-slot__window i {
    color: var(--accent-color);
    opacity: 1;
    font-size: 0.9em;
}

.schedule-slot__more {
    flex: 0 0 auto;
    align-self: center;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-left: auto;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(41, 41, 41, 0.14);
    background: #fff;
    color: var(--primary-color);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.schedule-slot__more i {
    font-size: 0.75em;
    color: var(--accent-color);
    transition: transform 0.2s ease;
}

.schedule-slot__more:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: translateX(2px);
}

.schedule-slot__more:hover i {
    color: var(--accent-color);
    transform: translateX(2px);
}

.schedule-slot__more:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 3px;
}

@media (min-width: 768px) {
    .schedule-days__full {
        display: block;
    }

    .schedule-days__btn {
        padding: 0.85rem 0.5rem;
    }
}

@media (max-width: 640px) {
    .schedule-days {
        grid-template-columns: repeat(7, minmax(0, 1fr));
        gap: 0.3rem;
        padding: 0.35rem;
        top: calc(var(--header-height, 64px) + 0.25rem);
    }

    .schedule-days__btn {
        padding: 0.55rem 0.2rem;
    }

    .schedule-days__abbr {
        font-size: 0.72rem;
    }

    .schedule-slot {
        grid-template-columns: minmax(58px, 68px) 20px 1fr;
        gap: 0 0.55rem;
    }

    .schedule-slot__card {
        flex-direction: column;
        gap: 0.75rem;
    }

    .schedule-slot__poster {
        flex: none;
        width: 100%;
        aspect-ratio: 16 / 7;
    }

    .schedule-slot__more {
        width: 100%;
        justify-content: center;
        margin-left: 0;
    }

    .schedule-now {
        flex-direction: column;
        align-items: flex-start;
    }

    .schedule-now__listen {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   SHOW DETAIL PAGE
   ======================================== */

.show-hero {
    min-height: clamp(420px, 68vh, 640px);
    align-items: flex-end;
    justify-content: flex-start;
    text-align: left;
    overflow: hidden;
    isolation: isolate;
}

.show-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.show-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 28%;
    display: block;
    transform: scale(1.03);
    animation: showHeroKenBurns 14s ease-out both;
}

@keyframes showHeroKenBurns {
    from { transform: scale(1.08); }
    to { transform: scale(1.03); }
}

.show-hero__overlay {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(12, 12, 12, 0.88) 0%, rgba(12, 12, 12, 0.55) 48%, rgba(12, 12, 12, 0.28) 100%),
        linear-gradient(180deg, rgba(12, 12, 12, 0.25) 0%, rgba(12, 12, 12, 0.72) 100%),
        radial-gradient(ellipse 50% 45% at 75% 20%, rgba(205, 178, 42, 0.2) 0%, transparent 60%);
}

.show-hero__wrap {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: flex-end;
    min-height: inherit;
}

.show-hero__content {
    position: relative;
    z-index: 2;
    width: min(100%, 44rem);
    max-width: 44rem;
    margin: 0;
    padding: clamp(3rem, 8vw, 5rem) 0 clamp(2.75rem, 6vw, 4rem);
    align-items: flex-start;
    text-align: left;
    animation: showHeroIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes showHeroIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.show-hero__brand,
.show-hero__title,
.show-hero__tagline {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
}

.show-hero__brand {
    margin: 0 0 0.55rem;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.1rem, 6vw, 3.4rem);
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    line-height: 0.95;
    color: #fff;
    text-shadow: 0 12px 34px rgba(0, 0, 0, 0.35);
}

.show-hero__brand::after {
    content: '';
    display: block;
    width: 3rem;
    height: 3px;
    margin-top: 0.7rem;
    background: linear-gradient(90deg, var(--accent-bright), var(--accent-color));
}

.show-hero__title {
    margin: 0 0 0.7rem;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.35rem, 3.2vw, 1.85rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--accent-color);
    line-height: 1.2;
}

.show-hero__tagline {
    margin: 0 0 1.5rem;
    max-width: 32rem;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: clamp(1.02rem, 2.2vw, 1.18rem);
    font-weight: 500;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.9);
}

.show-hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem 1.15rem;
}

.show-hero__listen {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.9rem 1.4rem;
    border: 0;
    border-radius: 999px;
    background: var(--accent-color);
    color: var(--primary-color);
    font-family: 'Outfit', system-ui, sans-serif;
    font-weight: 700;
    font-size: 0.94rem;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.show-hero__listen:hover {
    background: #e0c63a;
    transform: translateY(-1px);
}

.show-hero__schedule {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(205, 178, 42, 0.55);
    padding-bottom: 0.15rem;
}

.show-hero__schedule:hover {
    color: #fff;
    border-bottom-color: var(--accent-color);
}

.show-story {
    position: relative;
    background:
        linear-gradient(180deg, #faf8f2 0%, #ffffff 38%, #ffffff 100%);
    padding: clamp(2.5rem, 6vw, 4.25rem) 0 clamp(3.5rem, 8vw, 5.5rem);
}

.show-story__shell {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.7fr);
    gap: clamp(2rem, 5vw, 3.5rem);
    align-items: start;
}

.show-story__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 1.75rem;
}

.show-story__chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(205, 178, 42, 0.14);
    color: #6f5d0c;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.show-story__chip--quiet {
    background: rgba(41, 41, 41, 0.05);
    color: #444;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 600;
}

.show-story__chip i {
    color: var(--accent-color);
    font-size: 0.85em;
}

.show-story__heading {
    margin: 0 0 1.15rem;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.55rem, 3vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    text-transform: none;
    color: #111;
}

.show-story__prose {
    max-width: 40rem;
}

.show-story__prose p {
    margin: 0 0 1.2rem;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: clamp(1.05rem, 2vw, 1.15rem);
    font-weight: 500;
    line-height: 1.8;
    color: #2c2c2c;
}

.show-story__prose p:last-child {
    margin-bottom: 0;
}

.show-story__host {
    display: grid;
    grid-template-columns: minmax(150px, 220px) minmax(0, 1fr);
    gap: clamp(1.35rem, 3vw, 2rem);
    margin-top: 2.75rem;
    padding: clamp(1.25rem, 3vw, 1.75rem);
    border-radius: 22px;
    background: linear-gradient(145deg, #292929 0%, #1d1d1d 100%);
    color: #fff;
    overflow: hidden;
    position: relative;
}

.show-story__host::before {
    content: '';
    position: absolute;
    inset: auto -20% -40% auto;
    width: 55%;
    height: 80%;
    background: radial-gradient(circle, rgba(205, 178, 42, 0.22) 0%, transparent 70%);
    pointer-events: none;
}

.show-story__host-photo {
    position: relative;
    z-index: 1;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: #111;
}

.show-story__host-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.show-story__host-body {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.show-story__host-eyebrow {
    margin: 0 0 0.4rem;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-color);
}

.show-story__host-name {
    margin: 0 0 0.3rem;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.4rem, 2.8vw, 1.85rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    text-transform: none;
    color: #fff;
}

.show-story__host-role {
    margin: 0 0 0.55rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.78);
}

.show-story__host-meta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0 0 1rem;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
}

.show-story__host-meta i {
    color: var(--accent-color);
}

.show-story__host-bio {
    margin: 0 0 1.2rem;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 1.02rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.86);
}

.show-story__host-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    width: fit-content;
    color: var(--accent-color);
    font-weight: 700;
    text-decoration: none;
}

.show-story__host-link:hover {
    color: #e0c63a;
}

.show-story__aside {
    position: sticky;
    top: calc(var(--header-height, 72px) + 1rem);
}

.show-story__aside-title {
    margin: 0 0 1rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    text-transform: none;
    color: #111;
}

.show-story__rail {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.75rem;
}

.show-story__rail-card {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 0.85rem;
    align-items: center;
    padding: 0.55rem;
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border: 1px solid rgba(41, 41, 41, 0.08);
    box-shadow: 0 8px 22px rgba(41, 41, 41, 0.04);
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.show-story__rail-card:hover {
    border-color: rgba(205, 178, 42, 0.45);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(41, 41, 41, 0.08);
}

.show-story__rail-card img {
    width: 78px;
    height: 78px;
    border-radius: 10px;
    object-fit: cover;
    display: block;
    background: #292929;
}

.show-story__rail-copy {
    display: grid;
    gap: 0.18rem;
    min-width: 0;
}

.show-story__rail-tag {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #7a680f;
}

.show-story__rail-copy strong {
    font-size: 0.95rem;
    color: #111;
    line-height: 1.25;
}

.show-story__rail-copy span:last-child {
    font-size: 0.78rem;
    color: #6b6b6b;
    line-height: 1.35;
}

.show-story__aside-link {
    display: inline-flex;
    margin-top: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.show-story__aside-link:hover {
    color: #7a680f;
}

@media (prefers-reduced-motion: reduce) {
    .show-hero__media img,
    .show-hero__content {
        animation: none;
    }
}

@media (max-width: 960px) {
    .show-story__shell {
        grid-template-columns: 1fr;
    }

    .show-story__aside {
        position: static;
    }
}

@media (max-width: 720px) {
    .show-hero {
        min-height: clamp(380px, 62vh, 520px);
        align-items: flex-end;
        justify-content: center;
        text-align: center;
    }

    .show-hero__content {
        margin-left: auto;
        margin-right: auto;
        align-items: center;
        text-align: center;
        padding-left: 0;
        padding-right: 0;
    }

    .show-hero__brand::after {
        margin-left: auto;
        margin-right: auto;
    }

    .show-hero__actions {
        justify-content: center;
    }

    .show-hero__overlay {
        background:
            linear-gradient(180deg, rgba(12, 12, 12, 0.2) 0%, rgba(12, 12, 12, 0.78) 100%),
            radial-gradient(ellipse 60% 40% at 50% 15%, rgba(205, 178, 42, 0.18) 0%, transparent 65%);
    }

    .show-story__host {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .show-story__host-photo {
        max-width: 220px;
        margin: 0 auto;
    }

    .show-story__host-meta,
    .show-story__host-link {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

    .show-story__meta {
        justify-content: center;
    }

    .show-story__prose {
        text-align: left;
    }
}

/* Responsive Queries */
@media (max-width: 992px) {
    .contact-panel {
        grid-template-columns: 1fr;
        margin-top: -2.75rem;
    }

    .contact-hero__content {
        align-items: center;
        text-align: center;
    }

    .contact-hero h1,
    .contact-hero p {
        max-width: 100%;
    }

    .contact-form__row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-socials {
        justify-content: flex-start;
    }

    .map-container__top {
        flex-direction: column;
    }

    .map-container__cta {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .contact-shell {
        padding-bottom: 4.5rem;
    }

    .contact-panel {
        margin-top: -2.25rem;
        padding: 0.9rem;
        border-radius: 24px;
    }

    .contact-panel__info,
    .contact-form {
        padding: 1.1rem;
        border-radius: 20px;
    }

    .contact-socials {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-socials__list {
        flex-wrap: wrap;
    }

    .contact-whatsapp-btn {
        width: 100%;
    }

    .map-container {
        padding: 0.85rem;
        border-radius: 24px;
    }

    .map-container__frame {
        border-radius: 18px;
    }
}

@media (max-width: 992px) {
    .about-founder__inner {
        text-align: left;
    }
}

@media (max-width: 992px) {
    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        min-height: 100vh;
        min-height: 100dvh;
        width: min(300px, 86vw);
        transform: translateX(-100%);
        background:
            radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.35) 0%, transparent 45%),
            linear-gradient(180deg, #f1e300 0%, var(--accent-color) 48%, #b89a22 100%);
        flex-direction: column;
        align-items: stretch;
        padding:
            max(0.75rem, env(safe-area-inset-top, 0px))
            1.15rem
            max(5.5rem, calc(env(safe-area-inset-bottom, 0px) + 4.5rem))
            max(1rem, env(safe-area-inset-left, 0px));
        gap: 0.25rem;
        text-align: left;
        transition: transform 0.32s cubic-bezier(0.32, 0.72, 0, 1), visibility 0s linear 0.32s;
        visibility: hidden;
        z-index: 1000;
        box-shadow:
            4px 0 28px rgba(0, 0, 0, 0.22),
            1px 0 0 rgba(14, 13, 13, 0.12);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }

    .nav-links.active {
        transform: translateX(0);
        visibility: visible;
        transition: transform 0.32s cubic-bezier(0.32, 0.72, 0, 1), visibility 0s linear 0s;
    }

    .nav-drawer__head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
        width: 100%;
        margin: 0 0 0.35rem;
        padding-bottom: 0.5rem;
        border-bottom: none;
        flex-shrink: 0;
    }

    .nav-drawer__logo {
        display: flex;
        align-items: center;
        min-width: 0;
        line-height: 0;
        border-bottom: none !important;
        text-decoration: none !important;
        box-shadow: none !important;
    }

    .nav-drawer__logo.active,
    .nav-drawer__logo:hover {
        border-bottom: none !important;
        color: inherit;
    }

    .nav-drawer__logo img {
        height: 56px;
        width: auto;
        max-width: min(170px, 58vw);
        object-fit: contain;
        display: block;
    }

    .nav-drawer__close {
        flex-shrink: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        margin: 0;
        padding: 0;
        border: 1px solid rgba(14, 13, 13, 0.2);
        border-radius: 12px;
        background: rgba(14, 13, 13, 0.08);
        color: #0e0d0d;
        font-size: 1.1rem;
        cursor: pointer;
        transition:
            background 0.2s ease,
            border-color 0.2s ease,
            color 0.2s ease,
            transform 0.2s ease;
    }

    .nav-drawer__close:hover {
        background: #0e0d0d;
        border-color: #0e0d0d;
        color: #f1e300;
    }

    .nav-drawer__close:focus-visible {
        outline: 2px solid #0e0d0d;
        outline-offset: 2px;
    }

    .nav-drawer__close:active {
        transform: scale(0.96);
    }

    .nav-links > li.nav-drawer__item {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .nav-links > li.nav-drawer__item > a i,
    .nav-links > li.nav-drawer__item > a svg {
        display: none;
    }

    .nav-links > li.nav-drawer__item > a {
        display: flex;
        align-items: center;
        gap: 0;
        font-family: 'Outfit', 'Inter', system-ui, sans-serif;
        font-size: 1.02rem;
        font-weight: 600;
        letter-spacing: 0.01em;
        color: #1d1d1d;
        text-decoration: none;
        padding: 0.78rem 1rem;
        border-radius: 12px;
        border-bottom: none;
        transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    }

    .nav-links > li.nav-drawer__item > a:hover {
        background: rgba(14, 13, 13, 0.1);
        color: #0e0d0d;
    }

    .nav-links > li.nav-drawer__item > a.active {
        background: #0e0d0d;
        color: #f1e300;
        font-weight: 600;
        box-shadow: 0 6px 18px rgba(14, 13, 13, 0.22);
    }

    .nav-drawer__item--dropdown {
        display: flex;
        flex-direction: column;
        gap: 0.2rem;
    }

    .nav-drawer__dropdown-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        border: none;
        background: rgba(255, 255, 255, 0.35);
        box-shadow: inset 0 0 0 1px rgba(14, 13, 13, 0.08);
        cursor: pointer;
        font-family: 'Outfit', 'Inter', system-ui, sans-serif;
        font-size: 1.02rem;
        font-weight: 600;
        letter-spacing: 0.01em;
        color: #1d1d1d;
        text-align: left;
        padding: 0.78rem 1rem;
        border-radius: 12px;
    }

    .nav-drawer__dropdown-label {
        display: inline-flex;
        align-items: center;
        gap: 0;
    }

    .nav-drawer__dropdown-label i,
    .nav-drawer__dropdown-label svg {
        display: none;
    }

    .nav-drawer__dropdown-toggle > svg:last-child,
    .nav-drawer__dropdown-toggle > i:last-child {
        width: 1.15rem;
        height: 1.15rem;
        flex-shrink: 0;
        stroke-width: 1.75;
        display: inline-block;
    }

    .nav-drawer__submenu a {
        display: flex;
        align-items: center;
        gap: 0;
    }

    .nav-drawer__submenu a i,
    .nav-drawer__submenu a svg {
        display: none;
    }

    .nav-drawer__dropdown-toggle > svg:last-child {
        width: 0.95rem;
        height: 0.95rem;
        opacity: 0.75;
        transition: transform 0.2s ease;
    }

    .nav-drawer__item--dropdown.is-open .nav-drawer__dropdown-toggle {
        background: rgba(14, 13, 13, 0.1);
        color: #0e0d0d;
        box-shadow: none;
    }

    .nav-drawer__item--dropdown.is-open .nav-drawer__dropdown-toggle > svg:last-child {
        transform: rotate(180deg);
    }

    .nav-drawer__submenu {
        display: none;
        flex-direction: column;
        gap: 0.15rem;
        padding: 0.1rem 0 0.35rem 0.85rem;
        margin: 0 0 0.2rem 0.85rem;
        border-left: 2px solid rgba(14, 13, 13, 0.18);
    }

    .nav-drawer__item--dropdown.is-open .nav-drawer__submenu {
        display: flex;
    }

    .nav-drawer__submenu a {
        display: block;
        padding: 0.62rem 0.85rem;
        border-radius: 10px;
        color: #292929;
        text-decoration: none;
        font-size: 0.95rem;
        font-weight: 650;
        transition: background 0.2s ease, color 0.2s ease;
    }

    .nav-drawer__submenu a:hover {
        background: rgba(14, 13, 13, 0.1);
        color: #0e0d0d;
    }

    .nav-drawer__submenu a.active {
        background: #0e0d0d;
        color: #f1e300;
        font-weight: 700;
    }

    .menu-toggle {
        display: flex;
        z-index: 1001;
        position: relative;
        transition: opacity 0.2s ease, visibility 0.2s ease;
    }

    /* One close control: hide hamburger while drawer is open (avoids duplicate X) */
    .nav-container.nav-drawer-open .menu-toggle {
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
    }

    .nav-container {
        position: relative;
    }

    /* Mobile: full-width dock — green promo strip + charcoal player (reference UI) */
    .live-btn-container {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 990;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        pointer-events: none;
        background: transparent;
        box-shadow: none;
    }

    .stream-dock-promo {
        position: absolute;
        right: max(0.55rem, env(safe-area-inset-right, 0px));
        bottom: calc(0.55rem + env(safe-area-inset-bottom, 0px));
        z-index: 4;
        min-height: 0;
        padding: 0;
        background: transparent;
        border: 0;
        pointer-events: none;
    }

    .stream-dock-promo.stream-dock-promo--minimized {
        bottom: calc(4.35rem + env(safe-area-inset-bottom, 0px));
        z-index: 6;
    }

    .stream-dock-install {
        flex-shrink: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
        margin: 0;
        padding: 0.55rem 0.85rem 0.55rem 0.75rem;
        border: none;
        border-radius: 10px;
        cursor: pointer;
        font-family: 'Montserrat', 'Inter', system-ui, sans-serif;
        font-size: 0.68rem;
        font-weight: 800;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: #0a0a0a;
        background: #cdb22a;
        box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
        transition: filter 0.2s ease, background 0.2s ease;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(205, 178, 42, 0.35);
        pointer-events: auto;
    }

    .stream-dock-install i {
        font-size: 0.85rem;
    }

    .stream-dock-install:hover {
        filter: brightness(1.05);
    }

    .stream-dock-install:active {
        filter: brightness(0.96);
    }

    .stream-dock-install.stream-dock-install--minimized {
        box-shadow:
            0 10px 26px rgba(0, 0, 0, 0.35),
            0 0 0 2px rgba(205, 178, 42, 0.55);
        animation: installDockPulse 1.6s ease-in-out infinite;
    }

    @keyframes installDockPulse {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-1px); }
    }

    .live-btn-container .btn-live {
        position: static;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        margin: 0;
        padding: 0;
        gap: 0;
        pointer-events: auto;
        border-radius: 0;
        border: none;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        background: #2b2b2d;
        box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.35);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        overflow: hidden;
        text-align: left;
    }

    .live-btn-container .btn-live:hover {
        transform: none;
        filter: brightness(1.03);
    }

    .live-btn-container .btn-live:active {
        transform: none;
        filter: brightness(0.97);
    }

    .btn-live__desktop-only {
        display: none !important;
    }

    .btn-live__progress-bar {
        display: block;
        position: relative;
        width: 100%;
        height: 3px;
        flex-shrink: 0;
        background: rgba(255, 255, 255, 0.14);
    }

    .btn-live__progress-fill {
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 34%;
        max-width: 100%;
        background: #fff;
        border-radius: 0 2px 2px 0;
        transform-origin: left center;
        transition: width 0.35s ease;
    }

    .live-btn-container .btn-live.playing .btn-live__progress-fill {
        animation: streamDockProgressPulse 2.4s ease-in-out infinite;
    }

    @keyframes streamDockProgressPulse {
        0%, 100% { width: 30%; opacity: 0.95; }
        50% { width: 46%; opacity: 1; }
    }

    @media (prefers-reduced-motion: reduce) {
        .live-btn-container .btn-live.playing .btn-live__progress-fill {
            animation: none;
            width: 36%;
        }
    }

    .btn-live__mobile-only {
        display: flex;
        align-items: center;
        gap: 0.65rem;
        padding: 0.55rem calc(6.3rem + env(safe-area-inset-right, 0px)) calc(0.45rem + env(safe-area-inset-bottom, 0px)) max(0.65rem, env(safe-area-inset-left, 0px));
        min-height: 3.35rem;
    }

    .btn-live__thumb-wrap {
        flex-shrink: 0;
        width: 2.75rem;
        height: 2.75rem;
        border-radius: 50%;
        position: relative;
        overflow: hidden;
        background: #111;
        border: 2px solid rgba(255, 255, 255, 0.18);
        box-shadow:
            0 2px 10px rgba(0, 0, 0, 0.35),
            inset 0 0 0 2px rgba(255, 255, 255, 0.06);
    }

    .btn-live__thumb {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
    }

    .live-btn-container .btn-live.playing .btn-live__thumb-wrap {
        animation: deckSpin 1.3s linear infinite;
    }

    @keyframes deckSpin {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }

    .btn-live__dock-meta {
        flex: 1;
        min-width: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.12rem;
    }

    .btn-live__dock-label {
        font-family: 'Outfit', 'Inter', system-ui, sans-serif;
        font-size: 0.58rem;
        font-weight: 600;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.45);
    }

    .btn-live__dock-label[hidden] {
        display: none !important;
    }

    .btn-live__dock-flip {
        display: inline-grid;
        align-items: center;
        perspective: 700px;
        min-width: 0;
        max-width: 100%;
        line-height: 1.15;
    }

    .btn-live__dock-flip[hidden] {
        display: none !important;
    }

    .btn-live__dock-flip-inner {
        display: grid;
        grid-template-areas: "stack";
        transform-style: preserve-3d;
        transition: transform 0.65s cubic-bezier(0.4, 0.15, 0.2, 1);
    }

    .btn-live__dock-flip.is-flipped .btn-live__dock-flip-inner {
        transform: rotateX(180deg);
    }

    .btn-live__dock-flip-face {
        grid-area: stack;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        font-family: 'Outfit', 'Inter', system-ui, sans-serif;
        font-size: 0.58rem;
        font-weight: 600;
        letter-spacing: 0.06em;
        text-transform: none;
        color: rgba(255, 255, 255, 0.55);
    }

    .btn-live__dock-flip-face--back {
        transform: rotateX(180deg);
        color: rgba(255, 246, 168, 0.88);
        letter-spacing: 0.04em;
    }

    .btn-live__dock-flip.is-host-only .btn-live__dock-flip-face--front {
        visibility: hidden;
    }

    .btn-live__dock-meta .dock-now-playing,
    .btn-live__dock-meta .hero-song-title {
        font-family: 'Montserrat', 'Inter', system-ui, sans-serif;
        font-size: 0.95rem;
        font-weight: 700;
        line-height: 1.2;
        color: #fff;
        max-width: 100%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .btn-live__dock-controls {
        flex-shrink: 0;
        display: inline-flex;
        align-items: center;
        gap: 0.65rem;
        padding-left: 0.15rem;
        color: #fff;
        font-size: 1.52rem;
    }

    .btn-live__dock-ic {
        opacity: 0.38;
        transition: opacity 0.2s ease;
        text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
    }

    .btn-live__dock-volume {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 1.72rem;
        height: 1.72rem;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        cursor: pointer;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(205, 178, 42, 0.28);
    }

    .btn-live__dock-volume .btn-live__dock-ic {
        opacity: 0.95;
        font-size: 0.78em;
    }

    .btn-live__dock-volume.is-muted .btn-live__dock-ic {
        color: #ff9f9f;
    }

    .live-btn-container .btn-live:not(.playing) .btn-live__dock-ic-play {
        opacity: 1;
    }

    .live-btn-container .btn-live:not(.playing) .btn-live__dock-ic-pause {
        opacity: 0.32;
    }

    .live-btn-container .btn-live.playing .btn-live__dock-ic-pause {
        opacity: 1;
    }

    .live-btn-container .btn-live.playing .btn-live__dock-ic-play {
        opacity: 0.32;
    }

    .live-btn-container .live-indicator {
        display: none !important;
    }

    .live-btn-container .btn-live.playing {
        background: #2b2b2d;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.35);
    }


    body {
        padding-bottom: calc(4.95rem + env(safe-area-inset-bottom, 0px));
    }

}




/* Desktop Offcanvas */
.btn-desktop-menu {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.85rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.3s ease;
    display: none;
    padding: 0.35rem;
    margin: 0;
    flex-shrink: 0;
}

.btn-desktop-menu:hover {
    color: var(--accent-color);
}

@media (min-width: 993px) {
    .btn-desktop-menu {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

.desktop-offcanvas {
    position: fixed;
    top: 0;
    right: -350px;
    left: auto;
    width: 350px;
    height: 100vh;
    background: var(--primary-color);
    box-shadow: -2px 0 15px rgba(0, 0, 0, 0.5);
    z-index: 2000;
    transition: right 0.4s ease-in-out;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
}

.desktop-offcanvas.active {
    right: 0;
}

.close-desktop-menu {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-desktop-menu:hover {
    color: var(--accent-color);
}

.desktop-offcanvas-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 2rem;
}

.offcanvas-socials {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.offcanvas-socials h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.offcanvas-socials .social-links {
    display: flex;
    gap: 1rem;
}

.offcanvas-socials .social-links a {
    color: var(--text-light);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.offcanvas-socials .social-links a:hover {
    color: var(--accent-color);
}
@media (max-width: 992px) {
    .desktop-offcanvas { display: none; }
}

/* ========== PWA install prompt (disabled) ========== */
.pwa-install-root,
.pwa-install-chip,
.stream-dock-promo,
.stream-dock-install {
    display: none !important;
}

body.pwa-install-open {
    overflow: hidden;
}

.pwa-install-root {
    position: fixed;
    inset: 0;
    z-index: 2147483000;
    display: none;
    align-items: flex-end;
    justify-content: center;
    padding: max(0.5rem, env(safe-area-inset-top, 0px)) 1rem max(1rem, env(safe-area-inset-bottom, 0px));
    pointer-events: none;
    isolation: isolate;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.pwa-install-root--hidden {
    display: none;
}

.pwa-install-root:not(.pwa-install-root--hidden) {
    pointer-events: auto;
}

.pwa-install-backdrop {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: rgba(14, 13, 13, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    pointer-events: auto;
}

.pwa-install-card {
    position: relative;
    z-index: 1;
    width: min(100%, 26rem);
    max-height: min(88vh, 34rem);
    max-height: min(88dvh, 34rem);
    margin-bottom: 0.25rem;
    padding: 1.35rem 1.35rem 1.15rem;
    border-radius: 1.1rem;
    background: linear-gradient(155deg, #333333 0%, #292929 55%, #1d1d1d 100%);
    border: 1px solid rgba(205, 178, 42, 0.22);
    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.06) inset;
    text-align: center;
    animation: pwa-install-rise 0.38s ease-out;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    pointer-events: auto;
    touch-action: manipulation;
}

@keyframes pwa-install-rise {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .pwa-install-card {
        animation: none;
    }
}

.pwa-install-close {
    position: absolute;
    top: 0.65rem;
    right: 0.65rem;
    width: 2.25rem;
    height: 2.25rem;
    border: none;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.2);
    color: rgba(255, 255, 255, 0.85);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease, background 0.2s ease;
}

.pwa-install-close:hover {
    color: var(--accent-color);
    background: rgba(0, 0, 0, 0.35);
}

.pwa-install-icon {
    border-radius: 1rem;
    margin: 0 auto 0.85rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.pwa-install-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.15rem, 4vw, 1.35rem);
    color: var(--text-light);
    margin-bottom: 0.45rem;
    text-transform: none;
    letter-spacing: 0.02em;
}

.pwa-install-desc {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 1.15rem;
}

.pwa-install-actions {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.pwa-install-btn {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.72rem 1rem;
    border-radius: 0.65rem;
    border: none;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(205, 178, 42, 0.35);
    transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.pwa-install-btn:active {
    transform: scale(0.98);
}

.pwa-install-btn--primary {
    background: linear-gradient(145deg, var(--accent-color) 0%, #fff6a8 100%);
    color: #1d1d1d;
    box-shadow: 0 4px 14px rgba(205, 178, 42, 0.25);
}

.pwa-install-btn--primary:hover {
    box-shadow: 0 6px 20px rgba(205, 178, 42, 0.35);
}

.pwa-install-btn--ghost {
    background: transparent;
    color: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.pwa-install-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.06);
}

@media (min-width: 480px) {
    .pwa-install-root {
        align-items: center;
        padding-bottom: 2rem;
    }

    .pwa-install-actions {
        flex-direction: row;
        justify-content: center;
    }

    .pwa-install-btn {
        flex: 1;
        min-width: 0;
    }
}

/* Compact reminder after “Not now” / close (install still available) */
.pwa-install-chip {
    position: fixed;
    right: max(0.75rem, env(safe-area-inset-right, 0));
    bottom: max(1rem, calc(0.65rem + env(safe-area-inset-bottom, 0px)));
    z-index: 2147482000;
    will-change: transform;
    display: flex;
    align-items: stretch;
    border-radius: 999px;
    overflow: hidden;
    box-shadow:
        0 12px 36px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(0, 0, 0, 0.14);
    animation: pwa-chip-in 0.35s ease-out;
}

.pwa-install-chip--hidden {
    display: none;
}

@keyframes pwa-chip-in {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .pwa-install-chip {
        animation: none;
    }
}

.pwa-install-chip__main {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.95rem 0.55rem 0.85rem;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', 'Inter', system-ui, sans-serif;
    font-weight: 800;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #0a0a0a;
    background: #cdb22a;
    transition: filter 0.2s ease, background 0.2s ease;
}

.pwa-install-chip__main:hover {
    filter: brightness(1.04);
}

.pwa-install-chip__icon {
    font-size: 1rem;
    opacity: 1;
    color: #0a0a0a;
}

.pwa-install-chip__close {
    width: 2.45rem;
    flex-shrink: 0;
    border: none;
    border-left: 1px solid rgba(0, 0, 0, 0.18);
    cursor: pointer;
    color: #0a0a0a;
    background: #cdb22a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    transition: background 0.2s ease, color 0.2s ease;
}

.pwa-install-chip__close:hover {
    background: #e6e600;
    color: #0a0a0a;
}

@media (min-width: 993px) {
    .pwa-install-chip {
        bottom: 78px;
        right: 12px;
        z-index: 1320;
    }
}

/* Mobile floating install ribbon (shown above player bar) */
@media (max-width: 992px) {
    .pwa-install-chip {
        right: max(0.55rem, env(safe-area-inset-right, 0px));
        bottom: calc(5.45rem + env(safe-area-inset-bottom, 0px));
        z-index: 2147483640;
        max-width: min(19rem, calc(100vw - 1.1rem));
    }
}

/* PWA standalone: no install strip; shorter inset for player bar only */
@media (max-width: 992px) {
    @media (display-mode: standalone) {
        .stream-dock-promo {
            display: none !important;
        }

        body {
            padding-bottom: calc(4.85rem + env(safe-area-inset-bottom, 0px)) !important;
        }
    }
}



/* ========================================
   SHOP / MERCHANDISE PAGE
   ======================================== */

.shop-hero {
    background-position: center 28%;
    background-size: cover;
    overflow: hidden;
}

.shop-hero__overlay {
    background:
        radial-gradient(ellipse 50% 48% at 78% 40%, rgba(205, 178, 42, 0.22) 0%, transparent 55%),
        linear-gradient(115deg, rgba(14, 13, 13, 0.93) 0%, rgba(41, 41, 41, 0.74) 44%, rgba(14, 13, 13, 0.5) 100%);
}

.shop-hero__content {
    max-width: 38rem;
    text-align: center;
    align-items: center;
    animation: shopHeroIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes shopHeroIn {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.shop-hero__brand {
    margin: 0 0 0.65rem;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.4rem, 7vw, 4rem);
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 0.95;
    color: #fff;
    opacity: 1;
    transform: none;
    filter: none;
    text-shadow: 0 10px 32px rgba(0, 0, 0, 0.35);
}

.shop-hero__brand::after {
    content: '';
    display: block;
    width: 3.25rem;
    height: 3px;
    margin: 0.75rem auto 0;
    background: linear-gradient(90deg, var(--accent-bright), var(--accent-color));
}

.shop-hero h1 {
    margin: 0 0 0.75rem;
    font-size: clamp(1.35rem, 3.2vw, 1.85rem);
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--accent-color);
    text-transform: uppercase;
    opacity: 1;
    transform: none;
    filter: none;
}

.shop-hero p:not(.shop-hero__brand) {
    margin: 0 auto 1.5rem;
    max-width: 30ch;
    font-size: clamp(1rem, 2vw, 1.12rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.9);
    opacity: 1;
    transform: none;
    filter: none;
}

.shop-hero__cta-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
}

.shop-page {
    position: relative;
    isolation: isolate;
    padding: clamp(3rem, 7vw, 5rem) 0 clamp(3.5rem, 8vw, 5.5rem);
    background:
        radial-gradient(ellipse 70% 40% at 0% 0%, rgba(205, 178, 42, 0.07) 0%, transparent 50%),
        linear-gradient(180deg, #f7f6f2 0%, #eef0f2 55%, #f3f5f7 100%);
    overflow: hidden;
}

.shop-page__noise {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.35;
    background-image: radial-gradient(rgba(41, 41, 41, 0.04) 0.6px, transparent 0.6px);
    background-size: 3px 3px;
}

.shop-page__inner {
    position: relative;
    z-index: 1;
}

.shop-page__head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem 2rem;
    margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.shop-page__eyebrow {
    display: inline-block;
    margin-bottom: 0.55rem;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent-color);
}

.shop-page__title {
    margin: 0 0 0.5rem;
    font-size: clamp(1.75rem, 4vw, 2.45rem);
    color: var(--primary-color);
    line-height: 1.15;
}

.shop-page__lead {
    margin: 0;
    max-width: 36rem;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #464545;
}

.shop-page__stats {
    display: flex;
    gap: 1.25rem;
}

.shop-page__stat {
    min-width: 4.5rem;
    text-align: center;
    padding: 0.65rem 0.9rem;
    border-bottom: 2px solid var(--accent-color);
}

.shop-page__stat-num {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.65rem;
    font-weight: 800;
    line-height: 1;
    color: var(--primary-color);
}

.shop-page__stat-label {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6b6b6b;
}

/* Toolbar */
.shop-toolbar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.15rem;
    padding: 1.1rem 1.15rem;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(41, 41, 41, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.shop-toolbar__search {
    position: relative;
    display: flex;
    align-items: center;
}

.shop-toolbar__search-icon {
    position: absolute;
    left: 1rem;
    color: #8a8a8a;
    font-size: 0.9rem;
    pointer-events: none;
}

.shop-toolbar__input {
    width: 100%;
    padding: 0.85rem 2.75rem 0.85rem 2.65rem;
    border: 1px solid rgba(41, 41, 41, 0.12);
    background: #fff;
    color: var(--primary-color);
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.shop-toolbar__input:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(205, 178, 42, 0.2);
}

.shop-toolbar__clear {
    position: absolute;
    right: 0.55rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border: 0;
    background: transparent;
    color: #6b6b6b;
    cursor: pointer;
    border-radius: 50%;
}

.shop-toolbar__clear:hover {
    background: rgba(41, 41, 41, 0.06);
    color: var(--primary-color);
}

.shop-toolbar__row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem 1rem;
}

.shop-toolbar__types {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.shop-type-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 0.9rem;
    border: 1px solid rgba(41, 41, 41, 0.14);
    background: #fff;
    color: var(--primary-color);
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.82rem;
    font-weight: 650;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.shop-type-btn:hover {
    border-color: rgba(205, 178, 42, 0.55);
    transform: translateY(-1px);
}

.shop-type-btn.is-active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.shop-type-btn__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.35rem;
    height: 1.35rem;
    padding: 0 0.35rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    background: rgba(205, 178, 42, 0.22);
    color: inherit;
}

.shop-type-btn.is-active .shop-type-btn__count {
    background: rgba(241, 227, 0, 0.28);
    color: var(--accent-bright);
}

.shop-toolbar__controls {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem;
}

.shop-sort {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem 0.55rem 0.35rem 0.75rem;
    border: 1px solid rgba(41, 41, 41, 0.12);
    background: #fff;
    color: #6b6b6b;
}

.shop-sort__select {
    border: 0;
    background: transparent;
    color: var(--primary-color);
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.84rem;
    font-weight: 600;
    padding: 0.35rem 0.15rem;
    cursor: pointer;
    outline: none;
    max-width: 11.5rem;
}

.shop-view {
    display: inline-flex;
    border: 1px solid rgba(41, 41, 41, 0.12);
    background: #fff;
}

.shop-view__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    border: 0;
    background: transparent;
    color: #6b6b6b;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.shop-view__btn.is-active,
.shop-view__btn:hover {
    background: var(--primary-color);
    color: var(--accent-color);
}

.shop-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1.35rem;
}

.shop-meta__count {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: #5c5c5c;
}

.shop-meta__right {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem;
}

.shop-meta__reset {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border: 0;
    background: transparent;
    color: var(--primary-color);
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.84rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.shop-meta__reset:hover {
    color: #8a7618;
}

.shop-meta__cart {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 0.9rem;
    border: 1px solid rgba(41, 41, 41, 0.14);
    background: var(--primary-color);
    color: #fff;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.84rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.shop-meta__cart:hover {
    transform: translateY(-1px);
    background: #1a1a1a;
}

.shop-meta__cart-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.25rem;
    height: 1.25rem;
    padding: 0 0.3rem;
    border-radius: 999px;
    background: var(--accent-color);
    color: var(--primary-color);
    font-size: 0.68rem;
    font-weight: 800;
}

.shop-meta__cart-count[hidden] {
    display: none !important;
}

/* Product grid */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1rem, 2.5vw, 1.75rem);
}

@media (min-width: 700px) {
    .shop-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1100px) {
    .shop-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.shop-grid--grouped {
    max-width: 920px;
    margin-inline: auto;
}

@media (min-width: 700px) {
    .shop-grid--grouped {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1100px) {
    .shop-grid--grouped {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.shop-grid[data-view="list"] {
    grid-template-columns: 1fr;
    gap: 1rem;
}

.shop-product {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid rgba(41, 41, 41, 0.06);
    overflow: hidden;
    animation: shopCardIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: calc(var(--shop-stagger, 0) * 45ms);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.shop-product[hidden] {
    display: none !important;
}

@keyframes shopCardIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.shop-product:hover {
    transform: translateY(-4px);
    border-color: rgba(205, 178, 42, 0.35);
    box-shadow: 0 16px 36px rgba(14, 13, 13, 0.08);
}

.shop-product__media {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    padding: 0;
    border: 0;
    background:
        linear-gradient(180deg, #f4f4f2 0%, #ebeae6 100%);
    cursor: pointer;
    overflow: hidden;
}

.shop-product__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.shop-product:hover .shop-product__img {
    transform: scale(1.045);
}

.shop-product__badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 2;
    padding: 0.32rem 0.55rem;
    background: var(--accent-color);
    color: var(--primary-color);
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.shop-product__quick {
    position: absolute;
    left: 50%;
    bottom: 1rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    width: max-content;
    max-width: calc(100% - 1.5rem);
    padding: 0.65rem 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(14, 13, 13, 0.82);
    color: #fff;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
    opacity: 0;
    transform: translate(-50%, 10px);
    transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), background 0.2s ease, border-color 0.2s ease;
    pointer-events: none;
}

.shop-product__quick i {
    font-size: 0.78rem;
    color: var(--accent-color);
}

.shop-product:hover .shop-product__quick,
.shop-product__media:focus-visible .shop-product__quick {
    opacity: 1;
    transform: translate(-50%, 0);
}

.shop-product:hover .shop-product__media::after,
.shop-product__media:focus-visible::after {
    opacity: 1;
}

.shop-product__media::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, transparent 45%, rgba(14, 13, 13, 0.45) 100%);
    opacity: 0;
    transition: opacity 0.28s ease;
    pointer-events: none;
}

.shop-product__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1rem 1rem 1.1rem;
    gap: 0.2rem;
}

.shop-product__type {
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-color);
}

.shop-product__name {
    margin: 0;
    font-size: clamp(0.95rem, 1.6vw, 1.05rem);
    font-weight: 800;
    letter-spacing: 0.03em;
    line-height: 1.25;
    color: var(--primary-color);
    text-transform: uppercase;
}

.shop-product__color {
    margin: 0;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(41, 41, 41, 0.72);
}

.shop-product__variant-count {
    margin: 0.15rem 0 0;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(41, 41, 41, 0.45);
}

.shop-product__colors {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 0.65rem;
}

.shop-color-swatch {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    width: 3.1rem;
    padding: 0.2rem;
    border: 2px solid transparent;
    border-radius: 0.55rem;
    background: #f7f7f5;
    cursor: pointer;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.shop-color-swatch img {
    width: 2.35rem;
    height: 2.35rem;
    object-fit: cover;
    border-radius: 0.35rem;
    background: #fff;
}

.shop-color-swatch__label {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: rgba(41, 41, 41, 0.62);
}

.shop-color-swatch:hover {
    transform: translateY(-1px);
    border-color: rgba(205, 178, 42, 0.45);
}

.shop-color-swatch.is-active {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 1px rgba(205, 178, 42, 0.25);
}

.shop-product__desc {
    display: none;
    margin: 0.45rem 0 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #5c5c5c;
}

.shop-product__footer {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 0.85rem;
}

.shop-product__price {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--primary-color);
}

.shop-product__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.shop-product__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    flex: 1;
    min-height: 2.45rem;
    padding: 0.55rem 0.75rem;
    border: 1px solid transparent;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.shop-product__btn:hover {
    transform: translateY(-1px);
}

.shop-product__btn--ghost {
    background: transparent;
    border-color: rgba(41, 41, 41, 0.18);
    color: var(--primary-color);
}

.shop-product__btn--ghost:hover {
    border-color: var(--primary-color);
}

.shop-product__btn--primary {
    background: linear-gradient(145deg, #fffef0 0%, var(--accent-color) 55%, var(--accent-gold) 100%);
    color: var(--primary-color);
}

.shop-product__btn--primary:hover {
    filter: brightness(1.04);
}

/* List view */
.shop-grid[data-view="list"] .shop-product {
    display: grid;
    grid-template-columns: minmax(140px, 220px) 1fr;
    align-items: stretch;
}

.shop-grid[data-view="list"] .shop-product__media {
    aspect-ratio: 1 / 1.15;
    min-height: 100%;
}

.shop-grid[data-view="list"] .shop-product__body {
    padding: 1.15rem 1.25rem;
    justify-content: center;
}

.shop-grid[data-view="list"] .shop-product__desc {
    display: block;
}

.shop-grid[data-view="list"] .shop-product__footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.shop-grid[data-view="list"] .shop-product__actions {
    flex: 0 0 auto;
}

.shop-grid[data-view="list"] .shop-product__btn {
    flex: 0 0 auto;
    min-width: 6.5rem;
}

/* Empty + pagination */
.shop-empty {
    text-align: center;
    padding: 3.5rem 1rem;
    color: #5c5c5c;
}

.shop-empty i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.shop-empty h3 {
    margin: 0 0 0.4rem;
    color: var(--primary-color);
}

.shop-empty p {
    margin: 0 0 1.25rem;
}

.shop-empty__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.2rem;
    border: 0;
    background: var(--primary-color);
    color: #fff;
    font-family: 'Outfit', system-ui, sans-serif;
    font-weight: 700;
    cursor: pointer;
}

.shop-pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    margin-top: 2.25rem;
}

.shop-pagination[hidden] {
    display: none !important;
}

.shop-pagination__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    min-height: 2.5rem;
    padding: 0.5rem 0.95rem;
    border: 1px solid rgba(41, 41, 41, 0.14);
    background: #fff;
    color: var(--primary-color);
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.84rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.shop-pagination__btn:hover:not(:disabled) {
    border-color: var(--accent-color);
    background: #fffef0;
}

.shop-pagination__btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.shop-pagination__numbers {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.shop-pagination__page {
    min-width: 2.5rem;
    height: 2.5rem;
    border: 1px solid rgba(41, 41, 41, 0.14);
    background: #fff;
    color: var(--primary-color);
    font-family: 'Outfit', system-ui, sans-serif;
    font-weight: 700;
    cursor: pointer;
}

.shop-pagination__page.is-active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--accent-color);
}

/* Order band */
.shop-order-band {
    position: relative;
    padding: clamp(2.75rem, 6vw, 4rem) 0;
    background:
        radial-gradient(ellipse 50% 80% at 100% 50%, rgba(205, 178, 42, 0.14) 0%, transparent 55%),
        linear-gradient(165deg, #0e0d0d 0%, #1a1a1a 50%, #292929 100%);
    color: #fff;
    overflow: hidden;
}

.shop-order-band__inner {
    display: grid;
    grid-template-columns: 1.2fr 1.4fr auto;
    gap: 1.75rem 2rem;
    align-items: center;
}

.shop-order-band h2 {
    margin: 0 0 0.55rem;
    font-size: clamp(1.4rem, 3vw, 1.85rem);
    color: #fff;
}

.shop-order-band p {
    margin: 0;
    max-width: 34rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.55;
}

.shop-order-band__steps {
    display: grid;
    gap: 0.55rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.shop-order-band__steps li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.shop-order-band__steps span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.1rem;
    height: 2.1rem;
    border: 1px solid rgba(205, 178, 42, 0.45);
    color: var(--accent-color);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
}

.shop-order-band__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.95rem 1.35rem;
    background: linear-gradient(145deg, #fffef0 0%, var(--accent-color) 55%, var(--accent-gold) 100%);
    color: var(--primary-color);
    font-family: 'Outfit', system-ui, sans-serif;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.shop-order-band__cta:hover {
    transform: translateY(-2px);
    filter: brightness(1.04);
    color: var(--primary-color);
}

/* Modal */
.shop-modal {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: max(1rem, env(safe-area-inset-top)) 1rem max(1rem, env(safe-area-inset-bottom));
}

.shop-modal[hidden] {
    display: none !important;
}

.shop-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(14, 13, 13, 0.72);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    animation: shopModalFade 0.25s ease both;
}

@keyframes shopModalFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

.shop-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(920px, 100%);
    max-height: min(92vh, 860px);
    overflow: auto;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    animation: shopModalRise 0.35s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes shopModalRise {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.shop-modal__close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    border: 0;
    background: rgba(255, 255, 255, 0.92);
    color: var(--primary-color);
    cursor: pointer;
    transition: background 0.2s ease;
}

.shop-modal__close:hover {
    background: var(--accent-color);
}

.shop-modal__layout {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
}

.shop-modal__figure {
    position: relative;
    margin: 0;
    background: linear-gradient(180deg, #f4f4f2 0%, #ebeae6 100%);
    min-height: 100%;
}

.shop-modal__figure img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: contain;
    object-position: center center;
    background: linear-gradient(180deg, #f4f4f2 0%, #ebeae6 100%);
}

.shop-modal__nav {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

.shop-modal__nav[hidden] {
    display: none !important;
}

.shop-modal__nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.55rem;
    height: 2.55rem;
    border: 0;
    border-radius: 999px;
    background: rgba(21, 21, 21, 0.72);
    color: #fff;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.shop-modal__nav-btn:hover {
    background: var(--primary-color);
    color: var(--accent-bright);
}

.shop-modal__nav-btn:active {
    transform: translateY(-50%) scale(0.96);
}

.shop-modal__nav-btn--prev {
    left: 0.75rem;
}

.shop-modal__nav-btn--next {
    right: 0.75rem;
}

.shop-modal__nav-count {
    position: absolute;
    left: 50%;
    bottom: 0.85rem;
    transform: translateX(-50%);
    margin: 0;
    padding: 0.28rem 0.7rem;
    border-radius: 999px;
    background: rgba(21, 21, 21, 0.62);
    color: #fff;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    pointer-events: none;
}

.shop-modal__info {
    padding: clamp(1.5rem, 4vw, 2.25rem);
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.shop-modal__type {
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-color);
}

.shop-modal__title {
    margin: 0;
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    line-height: 1.15;
    color: var(--primary-color);
}

.shop-modal__color {
    margin: 0;
    font-size: 0.92rem;
    font-weight: 600;
    color: rgba(41, 41, 41, 0.72);
}

.shop-modal__colors {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin: 0.65rem 0 0.25rem;
}

.shop-modal__colors[hidden] {
    display: none !important;
}

.shop-modal__price {
    margin: 0.35rem 0 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--primary-color);
}

.shop-modal__desc {
    margin: 0 0 0.85rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #5c5c5c;
}

.shop-modal__sizes {
    margin: 0 0 1.1rem;
    padding: 0;
    border: 0;
}

.shop-modal__sizes legend {
    margin-bottom: 0.55rem;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary-color);
}

.shop-modal__size-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.shop-size {
    cursor: pointer;
}

.shop-size input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.shop-size span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.7rem;
    height: 2.7rem;
    border: 1px solid rgba(41, 41, 41, 0.16);
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.shop-size:hover span {
    border-color: var(--accent-color);
}

.shop-size input:checked + span {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--accent-color);
}

.shop-size input:focus-visible + span {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

.shop-modal__order {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    width: 100%;
    min-height: 3rem;
    padding: 0.85rem 1.1rem;
    margin-top: auto;
    background: linear-gradient(145deg, #fffef0 0%, var(--accent-color) 55%, var(--accent-gold) 100%);
    color: var(--primary-color);
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.shop-modal__order:hover {
    transform: translateY(-2px);
    filter: brightness(1.04);
    color: var(--primary-color);
}

.shop-modal__note {
    margin: 0.65rem 0 0;
    font-size: 0.78rem;
    color: #8a8a8a;
}

/* Responsive */
@media (max-width: 900px) {
    .shop-order-band__inner {
        grid-template-columns: 1fr;
    }

    .shop-order-band__cta {
        justify-self: start;
    }

    .shop-modal__layout {
        grid-template-columns: 1fr;
    }

    .shop-modal__figure img {
        min-height: 280px;
        max-height: 42vh;
    }
}

@media (max-width: 700px) {
    .shop-hero {
        background-position: center 22%;
    }

    .shop-hero__content {
        max-width: min(100%, 26rem);
    }

    .shop-page__stats {
        width: 100%;
        justify-content: flex-start;
    }

    .shop-toolbar {
        padding: 0.9rem;
    }

    .shop-toolbar__types {
        width: 100%;
    }

    .shop-type-btn {
        flex: 1 1 auto;
        justify-content: center;
    }

    .shop-toolbar__controls {
        width: 100%;
        justify-content: space-between;
    }

    .shop-sort {
        flex: 1;
    }

    .shop-sort__select {
        max-width: none;
        width: 100%;
    }

    .shop-grid[data-view="list"] .shop-product {
        grid-template-columns: 118px 1fr;
    }

    .shop-grid[data-view="list"] .shop-product__desc {
        display: none;
    }

    .shop-grid[data-view="list"] .shop-product__footer {
        flex-direction: column;
        align-items: stretch;
    }

    .shop-grid[data-view="list"] .shop-product__actions {
        width: 100%;
    }

    .shop-product__body {
        padding: 0.85rem 0.8rem 0.95rem;
    }

    .shop-product__actions {
        flex-direction: column;
    }

    .shop-pagination__btn span {
        display: none;
    }
}

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

    .shop-hero__brand {
        font-size: clamp(2.1rem, 11vw, 2.6rem);
    }
}

@media (prefers-reduced-motion: reduce) {
    .shop-hero__content,
    .shop-product,
    .shop-modal__dialog,
    .shop-modal__backdrop,
    .shop-product__img {
        animation: none !important;
        transition: none !important;
    }
}


/* ========================================
   SHOP CART / CHECKOUT / TOAST
   ======================================== */

.shop-modal__actions {
    display: grid;
    gap: 0.55rem;
    margin-top: auto;
}

.shop-modal__order {
    margin-top: 0;
}

.shop-modal__order--cart {
    background: linear-gradient(145deg, #fffef0 0%, var(--accent-color) 55%, var(--accent-gold) 100%);
    color: var(--primary-color);
}

.shop-modal__order--wa {
    background: #128c7e;
    color: #fff;
}

.shop-modal__order--wa:hover {
    filter: brightness(1.06);
    color: #fff;
}

.shop-cart-fab {
    display: none !important;
}

.shop-cart {
    position: fixed;
    inset: 0;
    z-index: 10060;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: max(1rem, env(safe-area-inset-top)) 1rem max(1rem, env(safe-area-inset-bottom));
}

.shop-cart[hidden] {
    display: none !important;
}

.shop-cart__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.58);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: shopCartFade 0.25s ease both;
}

@keyframes shopCartFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

.shop-cart__panel {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    width: min(460px, 100%);
    max-height: min(90vh, 700px);
    background:
        radial-gradient(ellipse 80% 40% at 100% 0%, rgba(205, 178, 42, 0.1) 0%, transparent 55%),
        #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    box-shadow:
        0 4px 8px rgba(0, 0, 0, 0.04),
        0 24px 64px rgba(0, 0, 0, 0.22);
    overflow: hidden;
    animation: shopCartPop 0.34s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes shopCartPop {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.shop-cart__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.35rem 1.05rem;
    border-bottom: 1px solid rgba(41, 41, 41, 0.07);
}

.shop-cart__head-copy {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.shop-cart__eyebrow {
    margin: 0;
}

.shop-cart__head h2 {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-transform: none;
    line-height: 1.1;
    color: var(--primary-color);
}

.shop-cart__count-label {
    margin: 0;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    color: #8a8a8a;
}

.shop-cart__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    border: 0;
    border-radius: 999px;
    background: rgba(41, 41, 41, 0.06);
    color: var(--primary-color);
    cursor: pointer;
    font-size: 0.95rem;
    transition: background 0.2s ease, transform 0.2s ease;
}

.shop-cart__close:hover {
    background: rgba(41, 41, 41, 0.12);
    transform: rotate(90deg);
}

.shop-cart__steps {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.35rem;
    padding: 0.75rem 1.25rem;
    background: rgba(41, 41, 41, 0.03);
}

.shop-cart.is-checkout .shop-cart__steps {
    display: grid;
}

.shop-cart__step {
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #8a8a8a;
    text-align: center;
    padding-bottom: 0.35rem;
    border-bottom: 2px solid transparent;
}

.shop-cart__step.is-active {
    color: var(--primary-color);
    border-bottom-color: var(--accent-color);
}

.shop-cart__body {
    flex: 1;
    overflow: auto;
    padding: 1rem 1.2rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(41, 41, 41, 0.2) transparent;
}

.shop-cart__list {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.shop-cart-item {
    display: grid;
    grid-template-columns: 76px 1fr auto;
    gap: 0.85rem;
    align-items: center;
    padding: 0.75rem;
    background: #f7f7f5;
    border: 1px solid rgba(41, 41, 41, 0.04);
    border-radius: 14px;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.shop-cart-item:hover {
    background: #f3f2ee;
    border-color: rgba(205, 178, 42, 0.28);
}

.shop-cart-item__media {
    width: 76px;
    height: 76px;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(160deg, #fff 0%, #ecece8 100%);
}

.shop-cart-item__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.shop-cart-item__info {
    min-width: 0;
}

.shop-cart-item__name {
    margin: 0;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
    line-height: 1.25;
    color: var(--primary-color);
}

.shop-cart-item__meta {
    margin: 0.2rem 0 0.55rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #8a8a8a;
}

.shop-cart-item__controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
}

.shop-cart-item__qty {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(41, 41, 41, 0.1);
    border-radius: 999px;
    background: #fff;
    overflow: hidden;
}

.shop-cart-item__qty button {
    width: 1.85rem;
    height: 1.85rem;
    border: 0;
    background: transparent;
    color: var(--primary-color);
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1;
    transition: background 0.15s ease;
}

.shop-cart-item__qty button:hover {
    background: rgba(205, 178, 42, 0.18);
}

.shop-cart-item__qty span {
    min-width: 1.4rem;
    text-align: center;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary-color);
}

.shop-cart-item__price {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--primary-color);
    white-space: nowrap;
}

.shop-cart-item__row,
.shop-cart-item__qty-line {
    display: none;
}

.shop-cart-item__remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    width: 2.1rem;
    height: 2.1rem;
    margin-top: 0.15rem;
    border: 0;
    border-radius: 999px;
    background: rgba(225, 75, 75, 0.08);
    color: #d64545;
    font-size: 0.82rem;
    cursor: pointer;
    padding: 0;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.shop-cart-item__remove:hover {
    background: rgba(225, 75, 75, 0.16);
    transform: scale(1.06);
}

.shop-cart__empty {
    text-align: center;
    padding: 2.75rem 1rem 2rem;
    color: #5c5c5c;
}

.shop-cart__empty-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    margin-bottom: 0.9rem;
    border-radius: 999px;
    background: rgba(205, 178, 42, 0.14);
    color: var(--accent-color);
    font-size: 1.25rem;
}

.shop-cart__empty h3 {
    margin: 0 0 0.35rem;
    font-size: 1.05rem;
    color: var(--primary-color);
    text-transform: none;
    letter-spacing: 0;
}

.shop-cart__empty p {
    margin: 0 0 1.15rem;
    font-size: 0.9rem;
}

.shop-cart__foot {
    padding: 1rem 1.25rem 1.25rem;
    border-top: 1px solid rgba(41, 41, 41, 0.07);
    background: linear-gradient(180deg, rgba(247, 247, 245, 0.65) 0%, #fff 100%);
}

.shop-cart__foot[hidden] {
    display: none !important;
}

.shop-cart__summary {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin-bottom: 1rem;
    padding: 0.85rem 0.95rem;
    border-radius: 12px;
    background: #f4f4f1;
    border: 1px solid rgba(41, 41, 41, 0.05);
}

.shop-cart__total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: #6b6b6b;
}

.shop-cart__total-row strong {
    font-weight: 700;
    color: var(--primary-color);
}

.shop-cart__total-row--grand {
    margin-top: 0.2rem;
    padding-top: 0.55rem;
    border-top: 1px dashed rgba(41, 41, 41, 0.14);
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.shop-cart__total-row--grand strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary-color);
}

.shop-cart__actions--popup {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 0.55rem;
}

.shop-cart__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    min-height: 2.7rem;
    padding: 0.65rem 1.05rem;
    border: 0;
    border-radius: 12px;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, filter 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}

.shop-cart__btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    box-shadow: none;
}

.shop-cart__btn:not(:disabled):hover {
    transform: translateY(-1px);
}

.shop-cart__btn--clear {
    background: #fff;
    color: var(--primary-color);
    border: 1px solid rgba(41, 41, 41, 0.14);
}

.shop-cart__btn--clear:not(:disabled):hover {
    border-color: var(--primary-color);
}

.shop-cart__btn--checkout {
    background: linear-gradient(145deg, #fffef0 0%, var(--accent-color) 55%, var(--accent-gold) 100%);
    color: var(--primary-color);
    box-shadow: 0 8px 18px rgba(205, 178, 42, 0.28);
}

.shop-cart__btn--checkout:not(:disabled):hover {
    filter: brightness(1.03);
}

.shop-cart__wa-link {
    grid-column: 1 / -1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    margin-top: 0.15rem;
    padding: 0.7rem 0.85rem;
    border-radius: 12px;
    background: rgba(18, 140, 126, 0.08);
    color: #0f7a6e;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.84rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.shop-cart__wa-link:hover {
    background: rgba(18, 140, 126, 0.14);
    transform: translateY(-1px);
    text-decoration: none;
}

.shop-cart.is-checkout .shop-cart__panel {
    width: min(540px, 100%);
    max-height: min(94vh, 820px);
}

.shop-cart.is-checkout .shop-cart__actions {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 0.55rem;
}

.shop-cart.is-checkout .shop-cart__wa-link {
    grid-column: 1 / -1;
}

.shop-cart.is-checkout .shop-cart__head h2 {
    font-size: 1.25rem;
}

@media (max-width: 480px) {
    .shop-cart__panel {
        border-radius: 16px;
        max-height: min(94vh, 100%);
    }

    .shop-cart-item {
        grid-template-columns: 64px 1fr auto;
        padding: 0.65rem;
    }

    .shop-cart-item__media {
        width: 64px;
        height: 64px;
    }

    .shop-cart__actions--popup {
        grid-template-columns: 1fr;
    }
}

.shop-checkout {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.shop-checkout__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
}

.shop-checkout__field {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.shop-checkout__field label {
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary-color);
}

.shop-checkout__field label span {
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    color: #8a8a8a;
}

.shop-checkout__field input,
.shop-checkout__field textarea {
    width: 100%;
    padding: 0.7rem 0.75rem;
    border: 1px solid rgba(41, 41, 41, 0.14);
    border-radius: 0.55rem;
    background: #fff;
    color: var(--primary-color);
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.92rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.shop-checkout__field input:focus,
.shop-checkout__field textarea:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(205, 178, 42, 0.18);
}

.shop-checkout__field.is-invalid input,
.shop-checkout__field.is-invalid textarea {
    border-color: #c24848;
    box-shadow: 0 0 0 3px rgba(194, 72, 72, 0.12);
}

.shop-checkout__field.is-valid input,
.shop-checkout__field.is-valid textarea {
    border-color: #5f9e6f;
}

.shop-checkout__field-error {
    margin: 0;
    min-height: 0;
    font-size: 0.76rem;
    line-height: 1.35;
    color: #b33a3a;
}

.shop-checkout__field.is-invalid .shop-checkout__field-error {
    margin-top: 0.1rem;
}

.shop-checkout__msg {
    margin: 0;
    padding: 0.65rem 0.75rem;
    border-radius: 0.55rem;
    font-size: 0.86rem;
    background: #fff4f4;
    color: #8a1f1f;
    border: 1px solid rgba(138, 31, 31, 0.2);
}

.shop-checkout__msg.is-info {
    background: #fffef0;
    color: #5c4d10;
    border-color: rgba(205, 178, 42, 0.35);
}

.shop-cart__actions {
    display: grid;
    gap: 0.5rem;
}

.shop-cart__actions[hidden],
.shop-cart__body[hidden],
.shop-toast[hidden],
.shop-checkout__msg[hidden] {
    display: none !important;
}

.shop-toast {
    position: fixed;
    left: 50%;
    bottom: calc(7.2rem + env(safe-area-inset-bottom, 0px));
    z-index: 10070;
    transform: translateX(-50%);
    padding: 0.75rem 1.15rem;
    background: var(--primary-color);
    color: #fff;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    animation: shopToastIn 0.28s ease both;
}

@keyframes shopToastIn {
    from { opacity: 0; transform: translate(-50%, 8px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}

@media (min-width: 993px) {
    .shop-toast {
        bottom: 2rem;
    }
}

.shop-success {
    min-height: 60vh;
    display: flex;
    align-items: center;
    background:
        radial-gradient(ellipse 60% 40% at 50% 0%, rgba(205, 178, 42, 0.12) 0%, transparent 55%),
        #f3f5f7;
}

.shop-success__inner {
    width: 100%;
}

.shop-success__card {
    max-width: 34rem;
    margin: 0 auto;
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: #fff;
    border: 1px solid rgba(41, 41, 41, 0.08);
}

.shop-success__icon {
    display: inline-flex;
    font-size: 2.2rem;
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.shop-success h1 {
    margin: 0 0 0.75rem;
    color: var(--primary-color);
}

.shop-success__lead {
    margin: 0 0 1.5rem;
    color: #5c5c5c;
    line-height: 1.6;
}

.shop-success__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.55rem;
}

@media (max-width: 520px) {
    .shop-checkout__row {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .shop-cart__panel,
    .shop-cart__backdrop,
    .shop-toast {
        animation: none !important;
    }
}


/* Shop payment methods + STK waiting */
.shop-pay-methods {
    margin: 0.35rem 0 0;
    padding: 0;
    border: 0;
}

.shop-pay-methods legend {
    margin-bottom: 0.55rem;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary-color);
}

.shop-pay-method {
    display: block;
    margin-bottom: 0.5rem;
    cursor: pointer;
}

.shop-pay-method input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.shop-pay-method__card {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.8rem 0.9rem;
    border: 1px solid rgba(41, 41, 41, 0.12);
    border-radius: 12px;
    background: #fff;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.shop-pay-method__card strong {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.9rem;
    color: var(--primary-color);
}

.shop-pay-method__card small {
    color: #7a7a7a;
    font-size: 0.78rem;
    line-height: 1.35;
}

.shop-pay-method input:checked + .shop-pay-method__card {
    border-color: var(--accent-color);
    background: rgba(205, 178, 42, 0.08);
    box-shadow: 0 0 0 3px rgba(205, 178, 42, 0.12);
}

.shop-pay-method input:disabled + .shop-pay-method__card {
    opacity: 0.45;
    cursor: not-allowed;
}

.shop-stk {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 22rem;
    padding: clamp(1.75rem, 5vw, 2.75rem) 1rem;
}

.shop-stk[hidden] {
    display: none !important;
}

.shop-stk__visual {
    position: relative;
    width: 5.5rem;
    height: 5.5rem;
    margin-bottom: 1.35rem;
}

.shop-stk__ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(205, 178, 42, 0.45);
    animation: shopStkPulse 2.4s ease-out infinite;
}

.shop-stk__ring--inner {
    inset: 0.65rem;
    border-color: rgba(205, 178, 42, 0.28);
    animation-delay: 0.6s;
}

.shop-stk__icon {
    position: absolute;
    inset: 50%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    margin: -1.625rem 0 0 -1.625rem;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(205, 178, 42, 0.28), rgba(255, 246, 168, 0.45));
    color: var(--primary-color);
    font-size: 1.2rem;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

@keyframes shopStkPulse {
    0% {
        transform: scale(0.92);
        opacity: 0.9;
    }
    70% {
        transform: scale(1.12);
        opacity: 0;
    }
    100% {
        transform: scale(1.12);
        opacity: 0;
    }
}

.shop-stk__title {
    margin: 0 0 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 1.4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    text-transform: none;
    color: var(--primary-color);
}

.shop-stk__copy {
    margin: 0 0 1.25rem;
    max-width: 18rem;
    font-size: 0.92rem;
    line-height: 1.55;
    color: #6a6a6a;
}

.shop-stk__status {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin: 0;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(41, 41, 41, 0.04);
    border: 1px solid rgba(41, 41, 41, 0.1);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary-color);
}

.shop-stk__status.is-done .shop-stk__dots {
    display: none;
}

.shop-stk__dots {
    display: inline-flex;
    gap: 0.2rem;
    align-items: center;
}

.shop-stk__dots span {
    width: 0.28rem;
    height: 0.28rem;
    border-radius: 50%;
    background: var(--accent-color);
    animation: shopStkDot 1.2s ease-in-out infinite;
}

.shop-stk__dots span:nth-child(2) { animation-delay: 0.15s; }
.shop-stk__dots span:nth-child(3) { animation-delay: 0.3s; }

@keyframes shopStkDot {
    0%, 80%, 100% { opacity: 0.25; transform: translateY(0); }
    40% { opacity: 1; transform: translateY(-2px); }
}

.shop-stk__cancel {
    margin-top: 1.35rem;
    padding: 0.45rem 0.75rem;
    border: 0;
    background: transparent;
    color: #8a8a8a;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.84rem;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.2s ease;
}

.shop-stk__cancel:hover {
    color: var(--primary-color);
}

.shop-stk__retry {
    margin-top: 1rem;
    padding: 0.7rem 1.4rem;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(145deg, var(--accent-color) 0%, #fff6a8 100%);
    color: #1a1a1a;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.84rem;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.shop-stk__retry:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
}

.shop-stk__retry[hidden],
.shop-stk__cancel[hidden] {
    display: none !important;
}

.shop-stk.is-failed .shop-stk__visual {
    opacity: 0.55;
}

.shop-stk.is-success .shop-stk__status {
    border-color: rgba(95, 158, 111, 0.35);
    color: #2f6b3c;
    background: rgba(95, 158, 111, 0.08);
}

.shop-stk.is-failed .shop-stk__status {
    border-color: rgba(194, 72, 72, 0.3);
    color: #a83333;
    background: rgba(194, 72, 72, 0.06);
}

.shop-cart.is-waiting-stk .shop-cart__steps {
    display: grid;
}

.shop-cart.is-waiting-stk .shop-cart__body {
    display: flex;
    align-items: center;
    justify-content: center;
}


/* ========================================
   MUSIC SUBMISSION PAGE
   ======================================== */

.music-sub-hero {
    background-image: url('/img/Hero%20radio.webp');
    background-position: center 30%;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    min-height: clamp(420px, 58vh, 560px);
}

.music-sub-hero__overlay {
    background:
        radial-gradient(ellipse 50% 48% at 78% 40%, rgba(205, 178, 42, 0.22) 0%, transparent 55%),
        linear-gradient(115deg, rgba(14, 13, 13, 0.88) 0%, rgba(41, 41, 41, 0.62) 44%, rgba(14, 13, 13, 0.55) 100%);
}

.music-sub-hero__content {
    max-width: 38rem;
    text-align: center;
    align-items: center;
    animation: shopHeroIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.music-sub-hero p.music-sub-hero__brand {
    margin: 0 0 0.65rem;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.4rem, 7vw, 4rem);
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 0.95;
    color: #fff;
    opacity: 1;
    transform: none;
    filter: none;
    text-shadow: 0 10px 32px rgba(0, 0, 0, 0.35);
}

.music-sub-hero p.music-sub-hero__brand::after {
    content: '';
    display: block;
    width: 3.25rem;
    height: 3px;
    margin: 0.75rem auto 0;
    background: linear-gradient(90deg, var(--accent-bright), var(--accent-color));
}

.music-sub-hero h1 {
    margin: 0 0 0.75rem;
    font-size: clamp(1.35rem, 3.2vw, 1.85rem);
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--accent-color);
    text-transform: uppercase;
    opacity: 1;
    transform: none;
    filter: none;
}

.music-sub-hero p:not(.music-sub-hero__brand) {
    margin: 0 auto 1.4rem;
    max-width: 34ch;
    font-size: clamp(1rem, 2vw, 1.12rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.9);
    opacity: 1;
    transform: none;
    filter: none;
}

.music-sub-hero__cta-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    opacity: 1;
    transform: none;
}

.music-sub {
    position: relative;
    padding: clamp(3rem, 7vw, 5rem) 0;
    background:
        radial-gradient(ellipse 70% 40% at 100% 0%, rgba(205, 178, 42, 0.07) 0%, transparent 50%),
        linear-gradient(180deg, #f7f6f2 0%, #eef0f2 100%);
    overflow: hidden;
}

.music-sub__noise {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.3;
    background-image: radial-gradient(rgba(41, 41, 41, 0.04) 0.6px, transparent 0.6px);
    background-size: 3px 3px;
}

.music-sub__inner {
    position: relative;
    z-index: 1;
    display: grid;
    gap: clamp(2.25rem, 5vw, 3.5rem);
}

.music-sub__story {
    display: grid;
    gap: clamp(1.75rem, 4vw, 2.5rem);
}

.music-sub__head {
    max-width: 44rem;
}

.music-sub__eyebrow {
    display: inline-block;
    margin-bottom: 0.5rem;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent-color);
}

.music-sub__title {
    margin: 0 0 0.75rem;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.85rem, 4vw, 2.65rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--primary-color);
}

.music-sub__lead {
    margin: 0;
    color: #464545;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: clamp(1.02rem, 1.6vw, 1.12rem);
    line-height: 1.7;
    max-width: 42rem;
}

.music-sub__pitch {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 1.75rem;
}

.music-sub__accept,
.music-sub__why {
    padding: 1.35rem 1.3rem;
    background: #fff;
    border: 1px solid rgba(41, 41, 41, 0.08);
}

.music-sub__accept h3,
.music-sub__why h3 {
    margin: 0 0 1rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--primary-color);
    text-transform: none;
}

.music-sub__accept ul,
.music-sub__why ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.75rem;
}

.music-sub__accept li,
.music-sub__why li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.7rem;
    align-items: start;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.95rem;
    line-height: 1.45;
    color: #444;
}

.music-sub__accept li i {
    color: var(--accent-color);
    margin-top: 0.15rem;
    width: 1rem;
    text-align: center;
}

.music-sub__why li span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--accent-color);
    padding-top: 0.15rem;
}

.music-sub__guidelines {
    scroll-margin-top: 6rem;
}

.music-sub__guidelines-head {
    margin-bottom: 1.25rem;
}

.music-sub__guidelines-head h3 {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.25rem, 2.4vw, 1.55rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--primary-color);
    text-transform: none;
}

.music-sub__guide-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.music-sub__guide {
    padding: 1.2rem 1.1rem;
    background: rgba(255, 255, 255, 0.85);
    border-top: 2px solid var(--primary-color);
}

.music-sub__guide-num {
    display: block;
    margin-bottom: 0.55rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--accent-color);
}

.music-sub__guide h4 {
    margin: 0 0 0.4rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.98rem;
    font-weight: 750;
    letter-spacing: -0.015em;
    color: var(--primary-color);
}

.music-sub__guide p {
    margin: 0;
    color: #5c5c5c;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
}

.music-sub__layout {
    display: grid;
    grid-template-columns: minmax(220px, 0.85fr) minmax(0, 1.6fr);
    gap: clamp(1.5rem, 4vw, 2.75rem);
    align-items: start;
}

.music-sub__aside {
    padding: 1.35rem 1.25rem;
    background: var(--primary-color);
    color: #fff;
}

.music-sub__aside h3 {
    margin: 0 0 1rem;
    font-size: 1.1rem;
    color: #fff;
    text-transform: none;
    letter-spacing: 0;
}

.music-sub__steps {
    margin: 0 0 1.25rem;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.7rem;
}

.music-sub__steps li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.music-sub__steps span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.7rem;
    height: 1.7rem;
    border: 1px solid rgba(205, 178, 42, 0.45);
    color: var(--accent-color);
    font-size: 0.72rem;
    font-weight: 800;
}

.music-sub__aside-note {
    margin: 0 0 1.1rem;
    font-size: 0.85rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
}

.music-sub__aside-wa {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--accent-color);
    font-family: 'Outfit', system-ui, sans-serif;
    font-weight: 700;
    text-decoration: none;
}

.music-sub__aside-wa:hover {
    color: var(--accent-bright);
}

.music-sub__form-wrap {
    padding: clamp(1.35rem, 3vw, 1.85rem);
    background: #fff;
    border: 1px solid rgba(41, 41, 41, 0.07);
    box-shadow: 0 16px 40px rgba(14, 13, 13, 0.05);
}

.music-sub__form-kicker {
    display: inline-block;
    margin-bottom: 0.4rem;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-color);
}

.music-sub__form-intro h3 {
    margin: 0 0 0.35rem;
    font-size: 1.35rem;
    text-transform: none;
    letter-spacing: 0;
    color: var(--primary-color);
}

.music-sub__form-intro p {
    margin: 0 0 1.35rem;
    color: #5c5c5c;
}

.music-sub-form {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.music-sub-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}

.music-sub-form__field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.music-sub-form__field label {
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary-color);
}

.music-sub-form__field label span {
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    color: #8a8a8a;
}

.music-sub-form__field input:not([type="checkbox"]):not([type="radio"]):not([type="file"]),
.music-sub-form__field select,
.music-sub-form__field textarea {
    width: 100%;
    padding: 0.75rem 0.85rem;
    border: 1px solid rgba(41, 41, 41, 0.14);
    background: #fff;
    color: var(--primary-color);
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.music-sub-form__field.is-invalid input:not([type="checkbox"]):not([type="radio"]):not([type="file"]),
.music-sub-form__field.is-invalid select,
.music-sub-form__field.is-invalid textarea {
    border-color: rgba(138, 31, 31, 0.55);
    box-shadow: 0 0 0 3px rgba(138, 31, 31, 0.08);
}

.music-sub-form__upload.is-invalid {
    border-color: rgba(138, 31, 31, 0.55);
    background: #fff8f8;
}

.music-sub-form .form-field-error {
    margin: 0;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.8rem;
    line-height: 1.4;
    color: #8a1f1f;
}

.music-sub-form .form-field-error[hidden] {
    display: none !important;
}

.music-sub-form__meta {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
}

.music-sub-form__count {
    flex-shrink: 0;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.75rem;
    color: #8a8a8a;
    white-space: nowrap;
}

.music-sub-form__count.is-near-limit {
    color: #b07a00;
}

.music-sub-form__count.is-at-limit {
    color: #8a1f1f;
    font-weight: 700;
}

.music-sub-form__field input:not([type="checkbox"]):not([type="radio"]):not([type="file"]):focus,
.music-sub-form__field select:focus,
.music-sub-form__field textarea:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(205, 178, 42, 0.18);
}

.music-sub-form__upload {
    position: relative;
    min-height: 160px;
    border: 1.5px dashed rgba(41, 41, 41, 0.2);
    background: #fafaf8;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.music-sub-form__upload.is-dragover {
    border-color: var(--accent-color);
    background: rgba(205, 178, 42, 0.08);
}

.music-sub-form__upload.has-file {
    border-style: solid;
    border-color: rgba(205, 178, 42, 0.45);
}

.music-sub-form__upload input[type="file"] {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0;
    cursor: pointer;
}

.music-sub-form__upload-ui {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    min-height: 160px;
    padding: 1.25rem;
    text-align: center;
    pointer-events: none;
}

.music-sub-form__upload-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin-bottom: 0.35rem;
    border-radius: 999px;
    background: rgba(205, 178, 42, 0.16);
    color: var(--accent-color);
    font-size: 1.15rem;
}

.music-sub-form__upload-title {
    margin: 0;
    font-family: 'Outfit', system-ui, sans-serif;
    font-weight: 700;
    color: var(--primary-color);
}

.music-sub-form__upload-hint {
    margin: 0;
    font-size: 0.82rem;
    color: #8a8a8a;
}

.music-sub-form__file {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-height: 160px;
    padding: 1.1rem 1.2rem;
}

.music-sub-form__file[hidden] {
    display: none !important;
}

.music-sub-form__file > i {
    color: var(--accent-color);
    font-size: 1.25rem;
}

.music-sub-form__file strong {
    display: block;
    font-family: 'Outfit', system-ui, sans-serif;
    color: var(--primary-color);
    word-break: break-all;
}

.music-sub-form__file span {
    font-size: 0.8rem;
    color: #8a8a8a;
}

.music-sub-form__file-clear {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.2rem;
    height: 2.2rem;
    border: 0;
    background: rgba(41, 41, 41, 0.06);
    color: var(--primary-color);
    cursor: pointer;
    z-index: 3;
    position: relative;
}

.music-sub-form__check {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.88rem;
    color: #5c5c5c;
    line-height: 1.45;
    cursor: pointer;
}

.music-sub-form__check input[type="checkbox"] {
    flex: 0 0 auto;
    width: 1.05rem;
    height: 1.05rem;
    margin: 0.2rem 0 0;
    padding: 0;
    border: 1px solid rgba(41, 41, 41, 0.35);
    border-radius: 3px;
    background: #fff;
    accent-color: var(--accent-color);
    cursor: pointer;
}

.music-sub-form__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    width: 100%;
    min-height: 3rem;
    padding: 0.95rem 1.25rem;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-gold) 100%);
    color: var(--primary-color);
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(205, 178, 42, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.music-sub-form__submit:hover:not(:disabled) {
    transform: translateY(-1px);
    filter: brightness(1.04);
    box-shadow: 0 16px 28px rgba(205, 178, 42, 0.34);
}

.music-sub-form__submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.music-sub-form__progress {
    display: grid;
    gap: 0.45rem;
    margin-top: 0.15rem;
}

.music-sub-form__progress[hidden] {
    display: none !important;
}

.music-sub-form__progress-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.82rem;
    color: #5c5c5c;
}

.music-sub-form__progress-top strong {
    color: var(--primary-color);
    font-variant-numeric: tabular-nums;
}

.music-sub-form__progress-track {
    position: relative;
    height: 0.55rem;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(41, 41, 41, 0.08);
}

.music-sub-form__progress-fill {
    display: block;
    width: 0%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-bright));
    transition: width 0.18s ease;
}

.music-sub-form__progress.is-complete .music-sub-form__progress-fill {
    background: linear-gradient(90deg, #2f9e5b, #57c07f);
}

.music-sub-form__msg {
    margin: 0;
    padding: 0.75rem 0.9rem;
    font-size: 0.9rem;
    border: 1px solid rgba(138, 31, 31, 0.2);
    background: #fff4f4;
    color: #8a1f1f;
}

.music-sub-form__msg.is-success {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    background: #f3faf4;
    border-color: rgba(34, 120, 70, 0.25);
    color: #1f6b3d;
}

.music-sub-form__msg.is-success i {
    flex-shrink: 0;
    font-size: 1.05rem;
    color: #2f9e5b;
}

.music-sub-form__msg[hidden] {
    display: none !important;
}

@media (max-width: 980px) {
    .music-sub__pitch,
    .music-sub__guide-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .music-sub__layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .music-sub-form__row,
    .music-sub__pitch,
    .music-sub__guide-grid {
        grid-template-columns: 1fr;
    }

    .music-sub-hero {
        min-height: max(360px, 52vh);
    }

    .music-sub-hero__content {
        max-width: min(100%, 26rem);
    }
}

/* ========================================
   EVENTS PAGE
   ======================================== */

.events-hero {
    background-position: center 35%;
    background-size: cover;
    overflow: hidden;
}

.events-hero__overlay {
    background:
        radial-gradient(ellipse 50% 48% at 78% 40%, rgba(205, 178, 42, 0.22) 0%, transparent 55%),
        linear-gradient(115deg, rgba(14, 13, 13, 0.93) 0%, rgba(41, 41, 41, 0.74) 44%, rgba(14, 13, 13, 0.5) 100%);
}

.events-hero__content {
    max-width: 38rem;
    text-align: center;
    align-items: center;
    animation: eventsHeroIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes eventsHeroIn {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.events-hero__brand {
    margin: 0 0 0.65rem;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.4rem, 7vw, 4rem);
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 0.95;
    color: #fff;
    opacity: 1;
    transform: none;
    filter: none;
    text-shadow: 0 10px 32px rgba(0, 0, 0, 0.35);
}

.events-hero__brand::after {
    content: '';
    display: block;
    width: 3.25rem;
    height: 3px;
    margin: 0.75rem auto 0;
    background: linear-gradient(90deg, var(--accent-bright), var(--accent-color));
}

.events-hero h1 {
    margin: 0 0 0.75rem;
    font-size: clamp(1.35rem, 3.2vw, 1.85rem);
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--accent-color);
    text-transform: uppercase;
    opacity: 1;
    transform: none;
    filter: none;
}

.events-hero p:not(.events-hero__brand) {
    margin: 0 auto 1.5rem;
    max-width: 34ch;
    font-size: clamp(1rem, 2vw, 1.12rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.9);
    opacity: 1;
    transform: none;
    filter: none;
}

.events-hero__cta-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
}

.events-page {
    position: relative;
    isolation: isolate;
    padding: clamp(3rem, 7vw, 5rem) 0 clamp(3.5rem, 8vw, 5.5rem);
    background:
        radial-gradient(ellipse 70% 40% at 100% 0%, rgba(205, 178, 42, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, #f7f6f2 0%, #eef0f2 55%, #f3f5f7 100%);
    overflow: hidden;
}

.events-page__noise {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.35;
    background-image: radial-gradient(rgba(41, 41, 41, 0.04) 0.6px, transparent 0.6px);
    background-size: 3px 3px;
}

.events-page__inner {
    position: relative;
    z-index: 1;
}

.events-page__head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem 2rem;
    margin-bottom: clamp(1.5rem, 3.5vw, 2.25rem);
}

.events-page__eyebrow {
    display: inline-block;
    margin-bottom: 0.55rem;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent-color);
}

.events-page__title {
    margin: 0 0 0.5rem;
    font-size: clamp(1.75rem, 4vw, 2.45rem);
    color: var(--primary-color);
    line-height: 1.15;
}

.events-page__lead {
    margin: 0;
    max-width: 36rem;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #464545;
}

.events-page__stats {
    display: flex;
    gap: 1.25rem;
}

.events-page__stat {
    min-width: 4.5rem;
    text-align: center;
    padding: 0.65rem 0.9rem;
    border-bottom: 2px solid var(--accent-color);
}

.events-page__stat-num {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.65rem;
    font-weight: 800;
    line-height: 1;
    color: var(--primary-color);
}

.events-page__stat-label {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6b6b6b;
}

/* Featured event */
.events-featured {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
    gap: clamp(1.25rem, 3vw, 2rem);
    margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
    padding: clamp(1rem, 2.5vw, 1.35rem);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(41, 41, 41, 0.08);
    animation: eventsCardIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.events-featured__media {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    max-height: 420px;
    overflow: hidden;
    border: 0;
    padding: 0;
    background: #1a1a1a;
    cursor: zoom-in;
}

.events-featured__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.events-featured__media:hover img {
    transform: scale(1.04);
}

.events-featured__media--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default;
    background: linear-gradient(145deg, #292929 0%, #3a3a3a 100%);
    color: rgba(241, 227, 0, 0.55);
    font-size: 2.5rem;
}

.events-featured__media::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: linear-gradient(180deg, transparent 0%, rgba(14, 13, 13, 0.55) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Shared poster CTA chip */
.events-poster-action {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.5rem 0.9rem 0.5rem 0.5rem;
    border-radius: 12px;
    background: rgba(14, 13, 13, 0.52);
    backdrop-filter: blur(14px) saturate(1.2);
    -webkit-backdrop-filter: blur(14px) saturate(1.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow:
        0 10px 28px rgba(0, 0, 0, 0.28),
        0 1px 0 rgba(255, 255, 255, 0.08) inset;
    color: #fff;
    font-family: 'Outfit', system-ui, sans-serif;
    pointer-events: none;
    transition:
        transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.events-poster-action__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.85rem;
    height: 1.85rem;
    flex-shrink: 0;
    border-radius: 8px;
    background: linear-gradient(145deg, var(--accent-bright) 0%, var(--accent-color) 100%);
    color: var(--primary-color);
    font-size: 0.72rem;
    box-shadow: 0 4px 12px rgba(205, 178, 42, 0.35);
}

.events-poster-action__label {
    padding-right: 0.2rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.events-featured__media:hover .events-poster-action,
.events-featured__media:focus-visible .events-poster-action {
    transform: translateY(-2px);
    background: rgba(14, 13, 13, 0.72);
    border-color: rgba(205, 178, 42, 0.45);
    box-shadow:
        0 14px 32px rgba(0, 0, 0, 0.34),
        0 1px 0 rgba(255, 255, 255, 0.1) inset;
}

.events-featured__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0.35rem 0.25rem 0.35rem 0;
}

.events-featured__tag {
    display: inline-block;
    width: fit-content;
    margin-bottom: 0.75rem;
    padding: 0.3rem 0.65rem;
    background: var(--primary-color);
    color: var(--accent-bright);
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.events-featured__title {
    margin: 0 0 0.85rem;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.45rem, 3.2vw, 2.05rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--primary-color);
}

.events-featured__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem 1.1rem;
    margin: 0 0 0.9rem;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.88rem;
    color: #555;
}

.events-featured__meta i {
    margin-right: 0.35rem;
    color: var(--accent-color);
}

.events-featured__desc {
    margin: 0 0 1.25rem;
    max-width: 38rem;
    font-size: 1.02rem;
    line-height: 1.6;
    color: #464545;
}

.events-featured__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
}

.events-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.75rem;
    border: 1px solid rgba(41, 41, 41, 0.14);
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.78rem;
    font-weight: 650;
    color: var(--primary-color);
}

.events-featured__cta {
    display: inline-flex;
    align-items: center;
    padding: 0.7rem 1.25rem;
    background: var(--primary-color);
    color: #fff;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.events-featured__cta:hover {
    background: #1f1f1f;
    color: var(--accent-bright);
    transform: translateY(-1px);
}

/* Toolbar */
.events-toolbar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.15rem;
    padding: 1.1rem 1.15rem;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(41, 41, 41, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.events-toolbar__search {
    position: relative;
    display: flex;
    align-items: center;
}

.events-toolbar__search-icon {
    position: absolute;
    left: 1rem;
    color: #8a8a8a;
    font-size: 0.9rem;
    pointer-events: none;
}

.events-toolbar__input {
    width: 100%;
    padding: 0.85rem 2.75rem 0.85rem 2.65rem;
    border: 1px solid rgba(41, 41, 41, 0.12);
    background: #fff;
    color: var(--primary-color);
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.events-toolbar__input:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(205, 178, 42, 0.2);
}

.events-toolbar__clear {
    position: absolute;
    right: 0.55rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border: 0;
    background: transparent;
    color: #6b6b6b;
    cursor: pointer;
    border-radius: 50%;
}

.events-toolbar__clear:hover {
    background: rgba(41, 41, 41, 0.06);
    color: var(--primary-color);
}

.events-toolbar__row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem 1rem;
}

.events-toolbar__types {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.events-type-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 0.9rem;
    border: 1px solid rgba(41, 41, 41, 0.14);
    background: #fff;
    color: var(--primary-color);
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.82rem;
    font-weight: 650;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.events-type-btn:hover {
    border-color: rgba(205, 178, 42, 0.55);
    transform: translateY(-1px);
}

.events-type-btn.is-active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.events-type-btn__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.35rem;
    height: 1.35rem;
    padding: 0 0.35rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    background: rgba(205, 178, 42, 0.22);
    color: inherit;
}

.events-type-btn.is-active .events-type-btn__count {
    background: rgba(241, 227, 0, 0.28);
    color: var(--accent-bright);
}

.events-toolbar__controls {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem;
}

.events-status {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    padding: 0.25rem;
    border: 1px solid rgba(41, 41, 41, 0.1);
    background: #fff;
}

.events-status-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.7rem;
    border: 0;
    background: transparent;
    color: #555;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.8rem;
    font-weight: 650;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.events-status-btn span {
    font-size: 0.7rem;
    opacity: 0.75;
}

.events-status-btn.is-active {
    background: var(--primary-color);
    color: #fff;
}

.events-sort {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem 0.55rem 0.35rem 0.75rem;
    border: 1px solid rgba(41, 41, 41, 0.12);
    background: #fff;
    color: #6b6b6b;
}

.events-sort__select {
    border: 0;
    background: transparent;
    color: var(--primary-color);
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.84rem;
    font-weight: 600;
    padding: 0.35rem 0.15rem;
    cursor: pointer;
    outline: none;
    max-width: 11.5rem;
}

.events-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
    margin-bottom: 1.15rem;
}

.events-meta__count {
    margin: 0;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #555;
}

.events-meta__reset {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border: 0;
    background: transparent;
    color: var(--primary-color);
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.82rem;
    font-weight: 650;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

.events-meta__reset[hidden] {
    display: none !important;
}

/* Grid + cards */
.events-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2.5vw, 1.5rem);
}

.events-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid rgba(41, 41, 41, 0.08);
    overflow: hidden;
    animation: eventsCardIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: calc(var(--events-stagger, 0) * 45ms);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.events-card:hover {
    transform: translateY(-3px);
    border-color: rgba(205, 178, 42, 0.4);
}

.events-card[hidden] {
    display: none !important;
}

@keyframes eventsCardIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.events-card__media {
    position: relative;
    aspect-ratio: 4 / 5;
    background: #1a1a1a;
    overflow: hidden;
}

.events-card__poster-btn {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    padding: 0;
    background: transparent;
    cursor: zoom-in;
}

.events-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.events-card__poster-btn:hover .events-card__img {
    transform: scale(1.05);
}

.events-card__media::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 40%;
    background: linear-gradient(180deg, transparent 0%, rgba(14, 13, 13, 0.5) 100%);
    pointer-events: none;
    z-index: 1;
    opacity: 0.85;
    transition: opacity 0.25s ease;
}

.events-card__poster-btn .events-poster-action--card {
    left: 0.75rem;
    bottom: 0.75rem;
    opacity: 0;
    transform: translateY(8px);
}

.events-card__poster-btn:hover .events-poster-action--card,
.events-card__poster-btn:focus-visible .events-poster-action--card {
    opacity: 1;
    transform: translateY(0);
}

.events-card__poster-btn:hover .events-poster-action--card,
.events-card__poster-btn:focus-visible .events-poster-action--card {
    background: rgba(14, 13, 13, 0.72);
    border-color: rgba(205, 178, 42, 0.45);
}

@media (hover: none) {
    .events-card__poster-btn .events-poster-action--card {
        opacity: 1;
        transform: none;
    }
}

.events-card__placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 100%;
    background:
        radial-gradient(ellipse 60% 50% at 50% 40%, rgba(205, 178, 42, 0.12) 0%, transparent 60%),
        linear-gradient(160deg, #292929 0%, #3d3d3d 100%);
    color: rgba(255, 255, 255, 0.55);
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
}

.events-card__placeholder i {
    font-size: 1.75rem;
    color: rgba(241, 227, 0, 0.55);
}

.events-card__date-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 3.1rem;
    padding: 0.4rem 0.45rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    line-height: 1;
    pointer-events: none;
}

.events-card__month {
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6b6b6b;
}

.events-card__day {
    margin-top: 0.2rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
}

.events-card__status-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.3rem 0.55rem;
    background: rgba(14, 13, 13, 0.78);
    color: #fff;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    pointer-events: none;
}

.events-card__status-badge--hot {
    background: var(--accent-color);
    color: #1a1a1a;
}

.events-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1rem 1.05rem 1.1rem;
}

.events-card__type {
    margin-bottom: 0.4rem;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-color);
}

.events-card__title {
    margin: 0 0 0.65rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.25;
    color: var(--primary-color);
}

.events-card__when,
.events-card__where {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    margin: 0 0 0.35rem;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.82rem;
    line-height: 1.4;
    color: #555;
}

.events-card__when i,
.events-card__where i {
    margin-top: 0.15rem;
    color: var(--accent-color);
    font-size: 0.75rem;
}

.events-card__desc {
    margin: 0.55rem 0 1rem;
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #5a5a5a;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.events-card__footer {
    display: flex;
    align-items: stretch;
    margin-top: auto;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(41, 41, 41, 0.08);
}

.events-card__more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.7rem 1rem;
    border: 0;
    background: var(--primary-color);
    color: #fff;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.events-card__more:hover {
    background: #1f1f1f;
    color: var(--accent-bright);
    transform: translateY(-1px);
}

.events-card__placeholder--btn {
    width: 100%;
    border: 0;
    cursor: pointer;
    font: inherit;
}

/* Empty + pagination */
.events-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: #555;
}

.events-empty[hidden] {
    display: none !important;
}

.events-empty i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.events-empty h3 {
    margin: 0 0 0.4rem;
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-color);
}

.events-empty p {
    margin: 0 0 1rem;
}

.events-empty__btn {
    display: inline-flex;
    padding: 0.65rem 1.1rem;
    border: 1px solid rgba(41, 41, 41, 0.18);
    background: #fff;
    color: var(--primary-color);
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.88rem;
    font-weight: 650;
    cursor: pointer;
}

.events-pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    margin-top: 2rem;
}

.events-pagination[hidden] {
    display: none !important;
}

.events-pagination__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 0.9rem;
    border: 1px solid rgba(41, 41, 41, 0.14);
    background: #fff;
    color: var(--primary-color);
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.84rem;
    font-weight: 650;
    cursor: pointer;
}

.events-pagination__btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.events-pagination__numbers {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.events-pagination__page {
    min-width: 2.25rem;
    height: 2.25rem;
    border: 1px solid rgba(41, 41, 41, 0.14);
    background: #fff;
    color: var(--primary-color);
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.84rem;
    font-weight: 650;
    cursor: pointer;
}

.events-pagination__page.is-active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

/* CTA band — gold (contrasts with black footer) */
.events-cta-band {
    position: relative;
    isolation: isolate;
    margin: 0 0 clamp(1.75rem, 4vw, 2.75rem);
    padding: clamp(2.5rem, 5.5vw, 3.5rem) 0;
    background:
        radial-gradient(ellipse 65% 90% at 0% 50%, rgba(255, 255, 255, 0.28) 0%, transparent 50%),
        radial-gradient(ellipse 70% 80% at 100% 50%, rgba(241, 227, 0, 0.45) 0%, transparent 55%),
        linear-gradient(115deg, #cdb22a 0%, #e8d24f 45%, #f1e300 100%);
    color: var(--primary-color);
    overflow: hidden;
    border-top: 3px solid rgba(41, 41, 41, 0.12);
    border-bottom: 3px solid rgba(41, 41, 41, 0.12);
}

.events-cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.18;
    background-image: radial-gradient(rgba(41, 41, 41, 0.14) 0.7px, transparent 0.7px);
    background-size: 4px 4px;
}

.events-cta-band__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem 2rem;
}

.events-cta-band h2 {
    margin: 0 0 0.45rem;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.45rem, 3vw, 1.9rem);
    font-weight: 800;
    text-transform: none;
    letter-spacing: 0;
    color: var(--primary-color);
}

.events-cta-band p {
    margin: 0;
    max-width: 36rem;
    color: rgba(41, 41, 41, 0.8);
    line-height: 1.55;
}

.events-cta-band__btn {
    display: inline-flex;
    align-items: center;
    padding: 0.9rem 1.45rem;
    background: var(--primary-color);
    color: #fff;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.92rem;
    font-weight: 750;
    letter-spacing: 0.03em;
    text-decoration: none;
    border: 0;
    box-shadow: 0 10px 24px rgba(41, 41, 41, 0.2);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.events-cta-band__btn:hover {
    background: #1a1a1a;
    color: var(--accent-bright);
    transform: translateY(-1px);
}

/* Event details modal */
.events-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
}

.events-modal[hidden] {
    display: none !important;
}

.events-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.82);
    cursor: pointer;
}

.events-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 52rem);
    max-height: min(92vh, 56rem);
    overflow: auto;
    padding: 0;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.08);
    animation: eventsModalIn 0.35s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes eventsModalIn {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.events-modal__close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    border: 0;
    background: rgba(14, 13, 13, 0.72);
    color: #fff;
    cursor: pointer;
    transition: background 0.2s ease;
}

.events-modal__close:hover {
    background: var(--primary-color);
}

.events-modal__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.1fr);
    min-height: 20rem;
}

.events-modal:not(.has-poster) .events-modal__layout {
    grid-template-columns: 1fr;
}

.events-modal__figure {
    margin: 0;
    background: #111;
    min-height: 100%;
}

.events-modal__figure[hidden] {
    display: none !important;
}

.events-modal__poster-btn {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    padding: 0;
    background: transparent;
    cursor: zoom-in;
}

.events-modal__figure img {
    display: block;
    width: 100%;
    height: 100%;
    max-height: min(88vh, 52rem);
    object-fit: cover;
    background: #0a0a0a;
}

.events-modal__poster-btn .events-poster-action--modal {
    left: 1rem;
    bottom: 1rem;
    opacity: 0;
    transform: translateY(8px);
}

.events-modal__poster-btn:hover .events-poster-action--modal,
.events-modal__poster-btn:focus-visible .events-poster-action--modal {
    opacity: 1;
    transform: translateY(0);
    background: rgba(14, 13, 13, 0.72);
    border-color: rgba(205, 178, 42, 0.45);
}

@media (hover: none) {
    .events-modal__poster-btn .events-poster-action--modal {
        opacity: 1;
        transform: none;
    }
}

.events-modal__placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    min-height: 16rem;
    padding: 2rem;
    background:
        radial-gradient(ellipse 60% 50% at 50% 40%, rgba(205, 178, 42, 0.14) 0%, transparent 60%),
        linear-gradient(160deg, #292929 0%, #3d3d3d 100%);
    color: rgba(255, 255, 255, 0.65);
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
}

.events-modal__placeholder[hidden] {
    display: none !important;
}

.events-modal__placeholder i {
    font-size: 2rem;
    color: rgba(241, 227, 0, 0.55);
}

.events-modal:not(.has-poster) .events-modal__placeholder {
    min-height: 12rem;
}

.events-modal__body {
    display: flex;
    flex-direction: column;
    padding: clamp(1.35rem, 3vw, 2rem);
    background: #fff;
}

.events-modal__type {
    display: inline-block;
    margin-bottom: 0.55rem;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-color);
}

.events-modal__title {
    margin: 0 2.25rem 1rem 0;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.25rem, 2.8vw, 1.65rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--primary-color);
}

.events-modal__meta {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin: 0 0 0.45rem;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.92rem;
    line-height: 1.45;
    color: #555;
}

.events-modal__meta[hidden] {
    display: none !important;
}

.events-modal__meta i {
    margin-top: 0.2rem;
    color: var(--accent-color);
    font-size: 0.8rem;
}

.events-modal__desc {
    margin: 0.85rem 0 1.35rem;
    flex: 1;
    font-size: 1rem;
    line-height: 1.6;
    color: #464545;
}

.events-modal__actions {
    margin-top: auto;
    padding-top: 0.5rem;
}

.events-modal__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.85rem 1.15rem;
    background: var(--primary-color);
    color: #fff;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-decoration: none;
    text-align: center;
    transition: background 0.2s ease, color 0.2s ease;
}

.events-modal__cta:hover {
    background: #1f1f1f;
    color: var(--accent-bright);
}

.events-featured__cta {
    border: 0;
    cursor: pointer;
    font: inherit;
}

@media (max-width: 980px) {
    .events-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .events-featured {
        grid-template-columns: 1fr;
    }

    .events-featured__media {
        max-height: 360px;
        aspect-ratio: 16 / 10;
    }

    .events-modal__layout {
        grid-template-columns: 1fr;
    }

    .events-modal__figure img {
        max-height: 42vh;
        object-fit: cover;
    }
}

@media (max-width: 640px) {
    .events-hero__content {
        max-width: min(100%, 26rem);
    }

    .events-page__stats {
        width: 100%;
        justify-content: flex-start;
    }

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

    .events-toolbar__controls {
        width: 100%;
    }

    .events-status,
    .events-sort {
        width: 100%;
    }

    .events-sort__select {
        max-width: none;
        flex: 1;
    }

    .events-cta-band__inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ========================================
   TEAM / CREW PAGE
   ======================================== */

.crew-hero {
    background-position: center 30%;
    background-size: cover;
    overflow: hidden;
}

.crew-hero__overlay {
    background:
        radial-gradient(ellipse 50% 48% at 78% 40%, rgba(205, 178, 42, 0.22) 0%, transparent 55%),
        linear-gradient(115deg, rgba(14, 13, 13, 0.93) 0%, rgba(41, 41, 41, 0.74) 44%, rgba(14, 13, 13, 0.5) 100%);
}

.crew-hero__content {
    max-width: 38rem;
    text-align: center;
    align-items: center;
    animation: crewHeroIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes crewHeroIn {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.crew-hero__brand {
    margin: 0 0 0.65rem;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.4rem, 7vw, 4rem);
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 0.95;
    color: #fff;
    opacity: 1;
    transform: none;
    filter: none;
    text-shadow: 0 10px 32px rgba(0, 0, 0, 0.35);
}

.crew-hero__brand::after {
    content: '';
    display: block;
    width: 3.25rem;
    height: 3px;
    margin: 0.75rem auto 0;
    background: linear-gradient(90deg, var(--accent-bright), var(--accent-color));
}

.crew-hero h1 {
    margin: 0 0 0.75rem;
    font-size: clamp(1.35rem, 3.2vw, 1.85rem);
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--accent-color);
    text-transform: uppercase;
    opacity: 1;
    transform: none;
    filter: none;
}

.crew-hero p:not(.crew-hero__brand) {
    margin: 0 auto;
    max-width: 30ch;
    font-size: clamp(1rem, 2vw, 1.12rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.9);
    opacity: 1;
    transform: none;
    filter: none;
}

.crew-page {
    position: relative;
    isolation: isolate;
    padding: clamp(3.25rem, 7vw, 5.5rem) 0 clamp(3.5rem, 8vw, 5.5rem);
    background:
        radial-gradient(ellipse 60% 35% at 0% 0%, rgba(205, 178, 42, 0.09) 0%, transparent 55%),
        linear-gradient(180deg, #faf9f6 0%, #f3f5f7 55%, #eef0f2 100%);
    overflow: hidden;
}

.crew-page__noise {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.32;
    background-image: radial-gradient(rgba(41, 41, 41, 0.045) 0.6px, transparent 0.6px);
    background-size: 3px 3px;
}

.crew-page__inner {
    position: relative;
    z-index: 1;
}

.crew-page__head {
    max-width: 40rem;
    margin: 0 auto clamp(2.25rem, 5vw, 3.25rem);
    text-align: center;
}

.crew-page__eyebrow {
    display: inline-block;
    margin-bottom: 0.65rem;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-color);
}

.crew-page__title {
    margin: 0 0 0.75rem;
    font-size: clamp(1.9rem, 4.5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--primary-color);
    text-transform: none;
    letter-spacing: -0.01em;
}

.crew-page__lead {
    margin: 0 auto;
    max-width: 34rem;
    font-size: 1.05rem;
    line-height: 1.65;
    color: #555;
}

.crew-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(1.1rem, 2.5vw, 1.65rem);
    margin-bottom: clamp(2.5rem, 6vw, 3.75rem);
}

.crew-member {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid rgba(41, 41, 41, 0.08);
    overflow: hidden;
    animation: crewCardIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: calc(var(--crew-stagger, 0) * 80ms);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.crew-member:hover {
    transform: translateY(-6px);
    border-color: rgba(205, 178, 42, 0.45);
    box-shadow: 0 18px 40px rgba(41, 41, 41, 0.1);
}

@keyframes crewCardIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.crew-member__media {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.28) 0%, transparent 42%),
        linear-gradient(165deg, color-mix(in srgb, var(--crew-tone) 88%, #fff) 0%, var(--crew-tone) 100%);
}

.crew-member__media--dark {
    background:
        radial-gradient(circle at 50% 35%, rgba(241, 227, 0, 0.18) 0%, transparent 45%),
        linear-gradient(165deg, #3a3a3a 0%, #1f1f1f 100%);
}

.crew-member__media--bright {
    background:
        radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.35) 0%, transparent 48%),
        linear-gradient(165deg, #f1e300 0%, #cdb22a 100%);
}

.crew-member__orb {
    position: absolute;
    left: 50%;
    top: 42%;
    width: min(78%, 17rem);
    aspect-ratio: 1;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    pointer-events: none;
    z-index: 0;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), background 0.35s ease;
}

.crew-member__media--dark .crew-member__orb {
    background: rgba(205, 178, 42, 0.22);
    border-color: rgba(241, 227, 0, 0.28);
}

.crew-member:hover .crew-member__orb {
    transform: translate(-50%, -50%) scale(1.08);
    background: rgba(255, 255, 255, 0.28);
}

.crew-member__photo {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.crew-member__media--dark .crew-member__photo {
    filter: contrast(1.04) saturate(1.05);
}

.crew-member:hover .crew-member__photo {
    transform: scale(1.06);
}

.crew-member__social-pop {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    width: 100%;
    padding: 0.95rem 1rem;
    background:
        linear-gradient(180deg, transparent 0%, rgba(14, 13, 13, 0.55) 35%, rgba(14, 13, 13, 0.88) 100%);
    border: 0;
    box-shadow: none;
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition:
        opacity 0.3s ease,
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.crew-member__media:hover .crew-member__social-pop,
.crew-member__media:focus-within .crew-member__social-pop,
.crew-member:hover .crew-member__social-pop,
.crew-member:focus-within .crew-member__social-pop {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.crew-member__social-pop a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.55rem;
    height: 2.55rem;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    color: #fff;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.crew-member__social-pop a:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #1a1a1a;
    transform: translateY(-3px);
}

@media (hover: none) {
    .crew-member__social-pop {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
}

.crew-member__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.2rem 1.2rem 1.3rem;
}

.crew-member__name {
    margin: 0 0 0.3rem;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--primary-color);
    text-transform: none;
    letter-spacing: 0;
}

.crew-member__role {
    margin: 0 0 0.55rem;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: #6b6b6b;
}

.crew-member__meta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0 0 0.75rem;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.78rem;
    font-weight: 650;
    color: var(--accent-color);
}

.crew-member__meta i {
    font-size: 0.72rem;
}

.crew-member__bio {
    margin: 0 0 1rem;
    flex: 1;
    font-size: 0.92rem;
    line-height: 1.55;
    color: #5a5a5a;
}

.crew-member__more {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: auto;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.crew-member__more i {
    color: var(--accent-color);
    font-size: 0.75em;
    transition: transform 0.2s ease;
}

.crew-member__more:hover {
    color: #7a680f;
}

.crew-member__more:hover i {
    transform: translateX(3px);
}

/* Founder spotlight */
.crew-spotlight {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.1fr);
    gap: 0;
    overflow: hidden;
    border: 1px solid rgba(41, 41, 41, 0.08);
    background: #fff;
    animation: crewCardIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

.crew-spotlight__media {
    min-height: clamp(280px, 42vw, 420px);
    background-size: cover;
    background-position: center 20%;
    position: relative;
}

.crew-spotlight__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 55%, rgba(255, 255, 255, 0.08) 100%);
    pointer-events: none;
}

.crew-spotlight__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(1.5rem, 4vw, 2.75rem);
    background:
        linear-gradient(135deg, rgba(205, 178, 42, 0.06) 0%, transparent 40%),
        #fff;
}

.crew-spotlight__eyebrow {
    display: inline-block;
    width: fit-content;
    margin-bottom: 0.75rem;
    padding: 0.3rem 0.65rem;
    background: var(--primary-color);
    color: var(--accent-bright);
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.crew-spotlight__title {
    margin: 0 0 1rem;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--primary-color);
    text-transform: none;
    letter-spacing: 0;
}

.crew-spotlight__text {
    margin: 0 0 0.85rem;
    font-size: 1rem;
    line-height: 1.65;
    color: #555;
}

.crew-spotlight__cta {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-top: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: var(--primary-color);
    color: #fff;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.crew-spotlight__cta:hover {
    background: #1f1f1f;
    color: var(--accent-bright);
    transform: translateY(-1px);
}

.crew-cta-band {
    position: relative;
    margin: 0 0 clamp(1.5rem, 4vw, 2.5rem);
    padding: clamp(2.25rem, 5vw, 3.25rem) 0;
    background:
        radial-gradient(ellipse 70% 80% at 100% 50%, rgba(241, 227, 0, 0.35) 0%, transparent 55%),
        linear-gradient(115deg, #cdb22a 0%, #e0c84a 48%, #f1e300 100%);
    color: var(--primary-color);
    overflow: hidden;
}

.crew-cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.22;
    background-image: radial-gradient(rgba(41, 41, 41, 0.12) 0.7px, transparent 0.7px);
    background-size: 4px 4px;
}

.crew-cta-band__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem 2rem;
}

.crew-cta-band h2 {
    margin: 0 0 0.4rem;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.45rem, 3vw, 1.9rem);
    font-weight: 800;
    text-transform: none;
    letter-spacing: 0;
    color: var(--primary-color);
}

.crew-cta-band p {
    margin: 0;
    max-width: 36rem;
    color: rgba(41, 41, 41, 0.78);
    line-height: 1.55;
}

.crew-cta-band__btn {
    display: inline-flex;
    align-items: center;
    padding: 0.85rem 1.35rem;
    background: var(--primary-color);
    color: #fff;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.92rem;
    font-weight: 750;
    letter-spacing: 0.03em;
    text-decoration: none;
    border: 0;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.crew-cta-band__btn:hover {
    background: #1a1a1a;
    color: var(--accent-bright);
    transform: translateY(-1px);
}

@media (max-width: 1100px) {
    .crew-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .crew-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .crew-spotlight {
        grid-template-columns: 1fr;
    }

    .crew-spotlight__media {
        min-height: 280px;
    }
}

@media (max-width: 640px) {
    .crew-hero__content {
        max-width: min(100%, 26rem);
    }

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

    .crew-cta-band__inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@supports not (background: color-mix(in srgb, #cdb22a 88%, #fff)) {
    .crew-member__media {
        background: var(--crew-tone);
    }
}

/* ========================================
   CAREERS — GEE RADIO
   ======================================== */

.career-hero {
    background-image: url('/img/internship.webp');
    background-position: center 45%;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    min-height: clamp(480px, 68vh, 680px);
    align-items: center;
}

.career-hero__overlay {
    background:
        radial-gradient(ellipse 55% 50% at 70% 30%, rgba(205, 178, 42, 0.18) 0%, transparent 58%),
        linear-gradient(
            180deg,
            rgba(14, 13, 13, 0.42) 0%,
            rgba(14, 13, 13, 0.22) 36%,
            rgba(14, 13, 13, 0.4) 68%,
            rgba(14, 13, 13, 0.72) 100%
        );
}

.career-hero__content {
    max-width: 38rem;
    text-align: center;
    align-items: center;
    padding-top: clamp(3.5rem, 8vh, 5.5rem);
    padding-bottom: clamp(2rem, 5vh, 3.5rem);
    animation: careerHeroIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes careerHeroIn {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Beat global `.hero p { opacity: 0 }` (homepage slider) */
.career-hero p.career-hero__brand {
    margin: 0 0 0.65rem;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.4rem, 7vw, 4rem);
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 0.95;
    color: #fff;
    opacity: 1;
    transform: none;
    filter: none;
    text-shadow: 0 10px 32px rgba(0, 0, 0, 0.45);
}

.career-hero p.career-hero__brand::after {
    content: '';
    display: block;
    width: 3.25rem;
    height: 3px;
    margin: 0.75rem auto 0;
    background: linear-gradient(90deg, var(--accent-bright), var(--accent-color));
}

.career-hero h1 {
    margin: 0 0 0.75rem;
    font-size: clamp(1.35rem, 3.2vw, 1.85rem);
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--accent-color);
    text-transform: uppercase;
    opacity: 1;
    transform: none;
    filter: none;
    text-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.career-hero p:not(.career-hero__brand) {
    margin: 0 auto 1.35rem;
    max-width: 34ch;
    font-size: clamp(1rem, 2vw, 1.12rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.94);
    opacity: 1;
    transform: none;
    filter: none;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.career-hero__cta-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    margin-top: 0;
    opacity: 1;
    transform: none;
}

.career-hero__cta-group .hero-cta-btn {
    align-self: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.career-hero__cta-group .hero-cta-btn--primary {
    box-shadow: 0 8px 28px rgba(205, 178, 42, 0.35);
}

.career-eyebrow {
    display: inline-block;
    margin: 0 0 0.7rem;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent-color);
}

.career-section-title {
    margin: 0 0 0.75rem;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.55rem, 3.4vw, 2.15rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--primary-color);
    line-height: 1.15;
}

.career-lead {
    margin: 0;
    max-width: 46rem;
    font-size: 1.05rem;
    line-height: 1.65;
    color: #555;
}

.career-lead--tight {
    margin-top: 0.9rem;
}

/* —— Culture: join / why / CEO as one composition —— */
.career-culture {
    position: relative;
    overflow: hidden;
    padding: clamp(3.5rem, 8vw, 6rem) 0;
    background:
        radial-gradient(ellipse 55% 60% at 8% 12%, rgba(241, 227, 0, 0.1) 0%, transparent 55%),
        radial-gradient(ellipse 45% 50% at 92% 88%, rgba(205, 178, 42, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, #faf9f5 0%, #fff 48%, #f7f6f2 100%);
}

.career-culture__noise {
    pointer-events: none;
    position: absolute;
    inset: 0;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.career-culture__shell {
    position: relative;
    z-index: 1;
    display: grid;
    gap: clamp(2.5rem, 5vw, 3.75rem);
}

.career-culture__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.9fr);
    gap: clamp(2rem, 4.5vw, 3.5rem);
    align-items: start;
}

.career-culture__intro {
    max-width: 38rem;
    animation: careerHeroIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.career-culture__title {
    margin: 0 0 1.15rem;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 4.2vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.08;
    color: var(--primary-color);
    text-wrap: balance;
}

.career-culture__lead {
    margin: 0 0 1rem;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: clamp(1.08rem, 1.7vw, 1.22rem);
    font-weight: 450;
    line-height: 1.7;
    color: #3a3a3a;
    max-width: 34em;
}

.career-culture__body {
    margin: 0;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 1.02rem;
    font-weight: 400;
    line-height: 1.72;
    color: #666;
    max-width: 34em;
}

.career-culture__ceo {
    position: relative;
    padding: 1.5rem 0 0 1.35rem;
    border-left: 3px solid var(--accent-color);
    animation: careerHeroIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

.career-culture__ceo-label {
    margin: 0 0 1rem;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
    color: var(--primary-color);
}

.career-culture__quote {
    margin: 0;
    padding: 0;
    border: none;
}

.career-culture__quote p {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.05rem, 1.65vw, 1.2rem);
    font-weight: 500;
    font-style: italic;
    letter-spacing: -0.015em;
    line-height: 1.55;
    color: #2a2a2a;
}

.career-culture__quote footer {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    margin-top: 1.25rem;
}

.career-culture__quote cite {
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0.02em;
    color: var(--primary-color);
}

.career-culture__quote footer span {
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #888;
}

.career-culture__why {
    padding-top: clamp(1.75rem, 3vw, 2.25rem);
    border-top: 1px solid rgba(41, 41, 41, 0.1);
    animation: careerHeroIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.16s both;
}

.career-culture__why-head {
    margin-bottom: 1.5rem;
}

.career-culture__why-title {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.25rem, 2.2vw, 1.55rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--primary-color);
}

.career-culture__reasons {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem 1.75rem;
}

.career-culture__reasons li {
    display: grid;
    gap: 0.45rem;
    align-content: start;
    padding-top: 1rem;
    border-top: 2px solid var(--primary-color);
}

.career-culture__index {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--accent-color);
}

.career-culture__reasons h4 {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.98rem;
    font-weight: 750;
    letter-spacing: -0.015em;
    line-height: 1.3;
    color: var(--primary-color);
}

.career-culture__reasons p {
    margin: 0;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.92rem;
    line-height: 1.55;
    color: #666;
}

@media (max-width: 980px) {
    .career-culture__grid {
        grid-template-columns: 1fr;
        gap: 2.25rem;
    }

    .career-culture__ceo {
        max-width: 36rem;
        padding-left: 1.15rem;
    }

    .career-culture__reasons {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.35rem 1.5rem;
    }
}

@media (max-width: 560px) {
    .career-culture {
        padding: 3rem 0;
    }

    .career-culture__title {
        font-size: clamp(1.75rem, 8vw, 2.15rem);
    }

    .career-culture__reasons {
        grid-template-columns: 1fr;
        gap: 1.1rem;
    }

    .career-culture__ceo {
        padding: 1.15rem 0 0 1rem;
    }
}

.career-page {
    display: grid;
    gap: 2.4rem;
    box-sizing: border-box;
}

/* section-padding shorthand zeros horizontal padding; restore container gutters */
.career-page.container,
.career-page.section-padding {
    padding-inline: clamp(1.15rem, 4vw, 3.25rem);
    padding-block: 80px;
}

.career-page *,
.career-page *::before,
.career-page *::after {
    box-sizing: border-box;
}

.career-intro {
    width: 100%;
    max-width: none;
}

.career-intro__head {
    max-width: 46rem;
    margin: 0 0 1.35rem;
    padding-inline: 0.15rem;
}

.career-intro__head .career-lead {
    max-width: none;
}

.career-role-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    width: 100%;
    margin: 0;
    counter-reset: careerRole;
    align-items: stretch;
}

.career-role-card {
    position: relative;
    counter-increment: careerRole;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.55rem;
    width: 100%;
    height: 100%;
    min-height: 100%;
    text-align: left;
    cursor: pointer;
    background: #fff;
    border: 1px solid rgba(41, 41, 41, 0.12);
    border-left: 4px solid var(--accent-color);
    padding: 1.05rem 1.15rem 1.05rem 3.35rem;
    font: inherit;
    color: inherit;
    transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.career-role-card::before {
    content: counter(careerRole, decimal-leading-zero);
    position: absolute;
    left: 0.9rem;
    top: 1.1rem;
    width: 1.6rem;
    height: 1.6rem;
    display: grid;
    place-items: center;
    background: var(--primary-color);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--accent-bright);
    line-height: 1;
}

.career-role-card:hover,
.career-role-card:focus-visible {
    outline: none;
    background: var(--brand-cream);
    border-color: rgba(205, 178, 42, 0.55);
    transform: translateY(-2px);
}

.career-role-card__head {
    display: grid;
    grid-template-columns: 1.15rem minmax(0, 1fr);
    gap: 0.55rem;
    align-items: start;
}

.career-role-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.15rem;
    height: 1.35rem;
    color: var(--accent-color);
    font-size: 0.95rem;
    line-height: 1;
}

.career-role-card h3 {
    margin: 0;
    color: var(--primary-color);
    font-size: 0.92rem;
    line-height: 1.35;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.career-role-card p {
    margin: 0;
    padding-left: calc(1.15rem + 0.55rem);
    font-size: 0.92rem;
    color: #555;
    line-height: 1.55;
    flex: 1 1 auto;
}

.career-form-wrap {
    position: relative;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(41, 41, 41, 0.1);
    padding: clamp(1.4rem, 3vw, 2.15rem);
    scroll-margin-top: 6rem;
    box-shadow: 0 18px 42px rgba(41, 41, 41, 0.07);
}

.career-form-wrap::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -100px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(205, 178, 42, 0.16) 0%, rgba(205, 178, 42, 0) 72%);
    pointer-events: none;
}

.career-form-head,
.career-form {
    position: relative;
    z-index: 1;
}

.career-form-head .career-section-title {
    margin-bottom: 0.45rem;
}

.career-form-head > p {
    margin: 0 0 1.25rem;
    max-width: 42rem;
    color: #5e5a55;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.98rem;
    line-height: 1.6;
}

.career-progress {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.55rem;
    margin: 0 0 0.85rem;
    padding: 0;
}

.career-step {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    margin: 0;
    padding: 0.7rem 0.75rem;
    background: #faf9f5;
    border: 1px solid rgba(41, 41, 41, 0.08);
    color: #777;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.career-step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.55rem;
    height: 1.55rem;
    background: rgba(41, 41, 41, 0.08);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--primary-color);
}

.career-step em {
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.78rem;
    font-style: normal;
    font-weight: 650;
    letter-spacing: 0.02em;
}

.career-step.is-active {
    background: #fff;
    border-color: rgba(205, 178, 42, 0.55);
    color: var(--primary-color);
    transform: translateY(-1px);
}

.career-step.is-active span {
    background: var(--accent-color);
    color: var(--primary-color);
}

.career-step.is-done {
    border-color: rgba(41, 41, 41, 0.16);
    color: var(--primary-color);
}

.career-step.is-done span {
    background: var(--primary-color);
    color: var(--accent-bright);
}

.career-progress-bar-wrap {
    height: 4px;
    background: rgba(41, 41, 41, 0.08);
    overflow: hidden;
    margin: 0 0 0.85rem;
}

.career-progress-bar {
    height: 100%;
    width: 25%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--accent-bright));
    transition: width 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.career-funline {
    margin: 0 0 1.35rem;
    padding: 0;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #666;
    line-height: 1.45;
    background: none;
    border: none;
    animation: none;
}

.career-funline.is-animating {
    animation: careerHintPulse 420ms ease;
}

@keyframes careerHintPulse {
    0% { opacity: 0.45; transform: translateY(3px); }
    100% { opacity: 1; transform: translateY(0); }
}

.career-panel {
    display: none;
    padding: 0;
    background: transparent;
    border: none;
}

.career-panel.is-active {
    display: block;
    animation: careerHeroIn 0.4s ease both;
}

.career-panel__head {
    margin-bottom: 1.2rem;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid rgba(41, 41, 41, 0.08);
}

.career-panel__head h3 {
    margin: 0 0 0.3rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--primary-color);
}

.career-panel__head p {
    margin: 0;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.92rem;
    color: #6b6b6b;
    line-height: 1.5;
}

.career-prefill-box {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.35rem;
    padding: 1.15rem 1.2rem;
    background:
        linear-gradient(145deg, rgba(41, 41, 41, 0.03), rgba(241, 227, 0, 0.1));
    border: 1px solid rgba(41, 41, 41, 0.08);
}

.career-prefill-box__copy h3 {
    margin: 0 0 0.35rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.98rem;
    font-weight: 750;
    color: var(--primary-color);
}

.career-prefill-box__copy h3 i {
    color: var(--accent-color);
    margin-right: 0.3rem;
}

.career-prefill-box__copy p {
    margin: 0;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #555;
}

.career-prefill-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.career-prefill-status {
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.86rem;
    color: var(--primary-color);
    font-weight: 600;
}

.career-prefill-status.is-loading::after {
    content: ' ...';
    display: inline-block;
    width: 24px;
    overflow: hidden;
    vertical-align: bottom;
    animation: careerDots 1.1s steps(4, end) infinite;
}

@keyframes careerDots {
    0% { width: 0; }
    100% { width: 24px; }
}

.career-field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.05rem;
}

.career-field {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.42rem;
    min-width: 0;
}

.career-field--full {
    grid-column: 1 / -1;
}

.career-field label,
.career-field__label {
    font-family: 'Outfit', system-ui, sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.86rem;
    letter-spacing: 0.01em;
}

.career-field label abbr,
.career-field__label abbr {
    color: var(--accent-color);
    text-decoration: none;
    margin-left: 0.1rem;
}

.career-field input,
.career-field select,
.career-field textarea {
    width: 100%;
    border: 1px solid rgba(41, 41, 41, 0.14);
    padding: 0.92rem 1rem;
    font-size: 0.95rem;
    font-family: 'Outfit', system-ui, sans-serif;
    color: var(--primary-color);
    background: #fcfbf7;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease, background-color 0.2s ease;
    appearance: none;
}

.career-field textarea {
    resize: vertical;
    min-height: 132px;
    line-height: 1.55;
}

.career-field input::placeholder,
.career-field textarea::placeholder {
    color: #938b79;
}

.career-field input:hover,
.career-field select:hover,
.career-field textarea:hover {
    border-color: rgba(41, 41, 41, 0.28);
}

.career-field input:focus,
.career-field select:focus,
.career-field textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(205, 178, 42, 0.18);
    transform: translateY(-1px);
    background: #fff;
}

.career-select {
    position: relative;
}

.career-select::after {
    content: '';
    position: absolute;
    right: 1rem;
    top: 50%;
    width: 0.45rem;
    height: 0.45rem;
    border-right: 2px solid #555;
    border-bottom: 2px solid #555;
    transform: translateY(-65%) rotate(45deg);
    pointer-events: none;
}

.career-select select {
    padding-right: 2.4rem;
    cursor: pointer;
}

.career-choice-chips {
    margin-top: 0.2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.career-chip {
    border: 1px solid rgba(41, 41, 41, 0.14);
    background: #fff;
    color: var(--primary-color);
    padding: 0.42rem 0.8rem;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.8rem;
    font-weight: 650;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.career-chip:hover {
    background: rgba(241, 227, 0, 0.22);
    border-color: var(--accent-color);
    transform: translateY(-1px);
}

.career-chip.is-active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--accent-bright);
}

.career-file {
    position: relative;
    display: block;
    cursor: pointer;
}

.career-file input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    transform: none;
    box-shadow: none;
    background: transparent;
}

.career-file__ui {
    display: grid;
    justify-items: center;
    gap: 0.3rem;
    text-align: center;
    padding: 1.35rem 1rem;
    border: 1.5px dashed rgba(41, 41, 41, 0.2);
    background: #fcfbf7;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.career-file__ui i {
    font-size: 1.25rem;
    color: var(--accent-color);
    margin-bottom: 0.2rem;
}

.career-file__ui strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    font-weight: 750;
    color: var(--primary-color);
}

.career-file__ui small {
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.78rem;
    color: #777;
}

.career-file:hover .career-file__ui,
.career-file:focus-within .career-file__ui,
.career-file.has-file .career-file__ui {
    border-color: var(--accent-color);
    background: #fff;
    transform: translateY(-1px);
}

.career-file.has-file .career-file__ui {
    border-style: solid;
    border-color: rgba(41, 41, 41, 0.22);
}

.career-field.is-invalid input,
.career-field.is-invalid select,
.career-field.is-invalid textarea,
.career-field.is-invalid .career-file__ui {
    border-color: #d64545;
    box-shadow: 0 0 0 3px rgba(214, 69, 69, 0.14);
}

.career-field.is-valid input,
.career-field.is-valid select,
.career-field.is-valid textarea {
    border-color: #2e7d4f;
}

.career-field.is-valid .career-file__ui {
    border-color: #2e7d4f;
    border-style: solid;
}

.career-field__error {
    display: none;
    margin: 0;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.35;
    color: #b42318;
}

.career-field.is-invalid .career-field__error {
    display: block;
}

.career-review {
    display: grid;
    gap: 0.55rem;
    background: #faf9f5;
    border: 1px solid rgba(41, 41, 41, 0.08);
    padding: 1.1rem 1.15rem;
    margin-bottom: 1.15rem;
}

.career-review p {
    display: grid;
    grid-template-columns: minmax(7rem, 11rem) minmax(0, 1fr);
    gap: 0.5rem 1rem;
    margin: 0;
    padding: 0.45rem 0;
    border-bottom: 1px solid rgba(41, 41, 41, 0.06);
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.92rem;
    color: #444;
}

.career-review p:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.career-review p strong {
    font-weight: 700;
    color: var(--primary-color);
}

.career-review,
.career-review p,
.career-prefill-status {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.career-checks {
    display: grid;
    gap: 0.65rem;
}

.career-check {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.7rem;
    align-items: start;
    margin: 0;
    padding: 0.85rem 0.95rem;
    background: #fcfbf7;
    border: 1px solid rgba(41, 41, 41, 0.1);
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.92rem;
    color: #333;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.career-check:hover {
    border-color: rgba(205, 178, 42, 0.45);
}

.career-check.is-invalid {
    border-color: #d64545;
    color: #842029;
}

.career-check.is-valid {
    border-color: rgba(46, 125, 79, 0.45);
    background: #f4fbf6;
}

.career-checks input[type="checkbox"] {
    width: 1.05rem;
    height: 1.05rem;
    margin: 0.15rem 0 0;
    accent-color: var(--accent-color);
    cursor: pointer;
}

.career-checks .career-field__error {
    margin: 0;
    grid-column: 1 / -1;
}

.career-actions {
    display: flex;
    gap: 0.7rem;
    margin-top: 1.55rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.career-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.78rem 1.35rem;
    border: 1px solid transparent;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.22s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.career-btn--primary {
    background: var(--primary-color);
    color: #fff;
}

.career-btn--primary:hover,
.career-btn--primary:focus-visible {
    background: #1a1a1a;
    color: var(--accent-bright);
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(41, 41, 41, 0.18);
}

.career-btn--accent {
    background: var(--accent-color);
    color: var(--primary-color);
}

.career-btn--accent:hover,
.career-btn--accent:focus-visible {
    background: var(--accent-bright);
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(205, 178, 42, 0.28);
}

.career-btn--ghost {
    background: transparent;
    border-color: rgba(41, 41, 41, 0.16);
    color: var(--primary-color);
}

.career-btn--ghost:hover,
.career-btn--ghost:focus-visible {
    border-color: var(--accent-color);
    background: rgba(241, 227, 0, 0.12);
    transform: translateY(-1px);
}

.career-btn:disabled {
    cursor: not-allowed;
    opacity: 0.65;
    transform: none;
    box-shadow: none;
}

#careerPrevBtn,
#careerNextBtn,
#careerSubmitBtn,
#careerPrefillBtn {
    width: auto;
}

.career-form-message {
    margin-top: 1rem;
    padding: 0.95rem 1.05rem;
    display: none;
    font-family: 'Outfit', system-ui, sans-serif;
    font-weight: 600;
    font-size: 0.92rem;
    position: relative;
    overflow: hidden;
    transition: opacity 0.26s ease, transform 0.26s ease;
}

.career-form-message.is-ok {
    display: block;
    background: #e8f6eb;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.career-form-message.is-error {
    display: block;
    background: #f8d7da;
    color: #842029;
    border: 1px solid #f5c2c7;
}

.career-form-message.has-timer::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 4px;
    width: 100%;
    transform-origin: left center;
}

.career-form-message.is-ok.has-timer::after {
    background: rgba(21, 87, 36, 0.45);
    animation: careerMessageTimer 4.5s linear forwards;
}

.career-form-message.is-error.has-timer::after {
    background: rgba(132, 32, 41, 0.5);
    animation: careerMessageTimer 7s linear forwards;
}

.career-form-message.is-hiding {
    opacity: 0;
    transform: translateY(-5px);
}

@keyframes careerMessageTimer {
    0% { transform: scaleX(1); }
    100% { transform: scaleX(0); }
}

@media (max-width: 720px) {
    .career-progress {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0.35rem;
    }

    .career-step {
        padding: 0.55rem 0.4rem;
        align-items: center;
        text-align: center;
    }

    .career-step em {
        font-size: 0.68rem;
    }
}

@media (max-width: 900px) {
    .career-role-grid,
    .career-field-grid {
        grid-template-columns: 1fr;
    }

    .career-form-wrap {
        padding: 1rem 0.9rem;
    }

    .career-actions {
        justify-content: stretch;
        flex-wrap: wrap;
    }

    #careerPrevBtn,
    #careerNextBtn,
    #careerSubmitBtn,
    #careerPrefillBtn {
        flex: 1 1 100%;
        width: 100%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .career-field input,
    .career-field select,
    .career-field textarea {
        font-size: 16px;
        min-height: 50px;
    }
}

@media (max-width: 640px) {
    .career-hero {
        min-height: max(400px, 56vh);
        background-position: center 42%;
    }

    .career-hero__content {
        max-width: min(100%, 26rem);
        padding-top: clamp(4rem, 12vh, 5.5rem);
    }

    .career-hero__overlay {
        background:
            radial-gradient(ellipse 60% 45% at 50% 25%, rgba(205, 178, 42, 0.14) 0%, transparent 55%),
            linear-gradient(
                180deg,
                rgba(14, 13, 13, 0.45) 0%,
                rgba(14, 13, 13, 0.24) 40%,
                rgba(14, 13, 13, 0.62) 100%
            );
    }

    .career-role-card {
        padding: 0.9rem 0.9rem 0.9rem 3rem;
    }

    .career-role-card::before {
        left: 0.75rem;
        top: 0.95rem;
    }

    .career-role-card h3 {
        font-size: 0.84rem;
    }

    .career-role-card p {
        padding-left: 0;
        font-size: 0.86rem;
    }

    .career-form-wrap {
        padding: 0.9rem 0.75rem;
    }

    .career-step {
        width: 32px;
        height: 32px;
        font-size: 0.88rem;
    }
}

/* ========================================
   ARTICLE MODERN — CMS news template
   ======================================== */

.news-item--link {
    display: block;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.article-modern {
    background: #fff;
    padding-top: clamp(2rem, 5vw, 3.5rem);
    padding-bottom: clamp(3rem, 8vw, 5rem);
}

.article-modern__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(260px, 0.75fr);
    gap: clamp(2rem, 5vw, 3.5rem);
    align-items: start;
}

.article-modern__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem 1rem;
    font-size: 0.9rem;
    color: #6b6b6b;
    padding-bottom: 1.15rem;
    margin-bottom: 1.35rem;
    border-bottom: 1px solid #e8e8e8;
}

.article-modern__meta strong {
    color: var(--primary-color);
    font-weight: 700;
}

.article-modern__meta a {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.article-modern__meta a:hover {
    border-bottom-color: var(--accent-color);
}

.article-modern__meta-sep {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #cfcfcf;
}

.article-tags {
    list-style: none;
    margin: 0.85rem 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.article-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.28rem 0.7rem;
    border-radius: 999px;
    background: rgba(205, 178, 42, 0.14);
    border: 1px solid rgba(205, 178, 42, 0.28);
    color: var(--primary-color);
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.news-card-tags {
    list-style: none;
    margin: 0.55rem 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.news-card-tags li {
    padding: 0.18rem 0.5rem;
    border-radius: 999px;
    background: rgba(41, 41, 41, 0.06);
    color: #5c5c5c;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* Sponsored ad slots */
.gee-ad-slot-wrap--hub {
    margin-top: clamp(1rem, 3vw, 1.75rem);
    margin-bottom: 0;
}

.gee-ad-slot[hidden] {
    display: none !important;
}

.gee-ad {
    position: relative;
    display: grid;
    gap: 0.45rem;
    width: 100%;
}

.gee-ad[hidden] {
    display: none !important;
}

.gee-ad__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.gee-ad__label {
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #8a8a8a;
}

.gee-ad__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.7rem;
    height: 1.7rem;
    border: 0;
    border-radius: 999px;
    background: rgba(41, 41, 41, 0.08);
    color: #5c5c5c;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.gee-ad__close:hover {
    background: rgba(41, 41, 41, 0.14);
    color: var(--primary-color);
    transform: scale(1.05);
}

.gee-ad__link,
.gee-ad__media {
    display: block;
    overflow: hidden;
    border-radius: 0.85rem;
    border: 1px solid rgba(41, 41, 41, 0.08);
    background: #f4f4f2;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    animation: geeAdBlink 1.1s ease-in-out 5, geeAdGlow 2.4s ease-in-out 5.5s infinite;
}

.gee-ad__link:hover {
    border-color: rgba(205, 178, 42, 0.45);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    animation: none;
}

.gee-ad img {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: middle;
}

.gee-ad--sidebar img {
    aspect-ratio: 1.2 / 1;
    object-fit: cover;
}

.gee-ad--strip img {
    max-height: 110px;
    object-fit: cover;
    object-position: center;
}

.gee-ad-slot__stage {
    position: relative;
}

.gee-ad-slot__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    margin-top: 0.7rem;
}

.gee-ad-slot__nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border: 0;
    border-radius: 999px;
    background: rgba(41, 41, 41, 0.06);
    color: var(--primary-color);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.gee-ad-slot__nav:hover {
    background: rgba(205, 178, 42, 0.22);
    transform: translateY(-1px);
}

.gee-ad-slot__nav[hidden] {
    display: none !important;
}

.gee-ad-slot__dots {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.gee-ad-slot__dot {
    width: 0.45rem;
    height: 0.45rem;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(41, 41, 41, 0.18);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, width 0.2s ease;
}

.gee-ad-slot__dot.is-active {
    width: 1.1rem;
    background: var(--accent-color);
}

.article-ad-after {
    margin: 1.75rem 0 0.35rem;
}

.gee-ad--feature {
    padding: 0.85rem;
    border-radius: 1.1rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), #f7f6f2);
    border: 1px solid rgba(41, 41, 41, 0.08);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.06);
}

.gee-ad--feature .gee-ad__link,
.gee-ad--feature .gee-ad__media {
    border-radius: 0.8rem;
    animation: geeAdGlow 2.8s ease-in-out infinite;
}

.gee-ad--feature img {
    max-height: 220px;
    object-fit: cover;
    object-position: center;
}

.gee-ad__foot {
    display: flex;
    justify-content: flex-end;
    margin-top: 0.15rem;
}

.gee-ad__cta {
    display: inline-flex;
    align-items: center;
    min-height: 2.2rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: linear-gradient(145deg, var(--accent-color) 0%, #fff6a8 100%);
    color: #1a1a1a !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    text-decoration: none !important;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.gee-ad__cta:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
}

.article-side-block--ad {
    padding-top: 0.15rem;
}

@keyframes geeAdBlink {
    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(205, 178, 42, 0);
        border-color: rgba(205, 178, 42, 0.2);
    }
    40% {
        opacity: 0.55;
        box-shadow: 0 0 0 5px rgba(205, 178, 42, 0.28);
        border-color: rgba(205, 178, 42, 0.85);
    }
    70% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(205, 178, 42, 0);
        border-color: var(--accent-color);
    }
}

@keyframes geeAdGlow {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(205, 178, 42, 0.12);
        border-color: rgba(205, 178, 42, 0.35);
    }
    50% {
        box-shadow: 0 0 0 4px rgba(205, 178, 42, 0.22);
        border-color: rgba(205, 178, 42, 0.7);
    }
}

@media (prefers-reduced-motion: reduce) {
    .gee-ad__link,
    .gee-ad__media {
        animation: none;
        border-color: rgba(205, 178, 42, 0.4);
    }
}

.article-modern__title {
    font-family: 'Montserrat', 'Outfit', sans-serif;
    font-size: clamp(1.85rem, 4.2vw, 2.75rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    text-transform: none;
    margin: 0 0 0.85rem;
    color: #111;
}

.article-modern__subtitle {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    font-weight: 700;
    color: #222;
    line-height: 1.45;
    margin: 0 0 1rem;
}

.article-modern__byline {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.35rem;
    color: #6b6b6b;
    font-size: 0.92rem;
    margin-bottom: 1.75rem;
}

.article-modern__byline i {
    margin-right: 0.35rem;
    color: var(--accent-color);
}

.article-modern__hero-fig {
    margin: 0 0 0.85rem;
    border-radius: 16px;
    overflow: hidden;
}

.article-modern__hero-fig img {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.article-like {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    margin: 0 0 1.75rem;
}

.article-like__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: #111;
    cursor: pointer;
    border-radius: 50%;
    position: relative;
    transition: transform 0.18s ease, color 0.18s ease;
}

.article-like__btn:hover {
    color: #ed4956;
}

.article-like__btn:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 3px;
}

.article-like__btn.is-liked {
    color: #ed4956;
}

.article-like__btn.is-animating {
    animation: article-like-pop 0.35s ease;
}

.article-like__icon {
    font-size: 1.55rem;
    line-height: 1;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-like__icon--filled {
    opacity: 0;
    transform: scale(0.55);
    transition: opacity 0.15s ease, transform 0.15s ease;
}

.article-like__icon--outline {
    opacity: 1;
    transition: opacity 0.15s ease;
}

.article-like__btn.is-liked .article-like__icon--filled {
    opacity: 1;
    transform: scale(1);
}

.article-like__btn.is-liked .article-like__icon--outline {
    opacity: 0;
}

.article-like__count {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.3;
    color: #111;
}

.article-like__count strong {
    font-weight: 700;
    letter-spacing: -0.01em;
}

@keyframes article-like-pop {
    0% { transform: scale(1); }
    35% { transform: scale(1.28); }
    100% { transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
    .article-like__btn.is-animating {
        animation: none;
    }
}

.news-card-stats {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
    margin-top: 0.85rem;
    font-size: 0.82rem;
    color: #6b6b6b;
}

.news-card-stats__likes,
.news-card-stats__views {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.news-card-stats__likes i {
    color: #ed4956;
    font-size: 0.78rem;
}

.news-card-stats__views i {
    color: var(--accent-color);
}

.news-card-stats__likes-text {
    margin-left: 0.1rem;
}

.article-modern__body {
    font-size: 1.08rem;
    line-height: 1.85;
    color: #2a2a2a;
}

.article-modern__body p {
    margin: 0 0 1.25rem;
}

.article-modern__body h1,
.article-modern__body h2,
.article-modern__body h3 {
    text-transform: none;
    letter-spacing: 0;
    margin: 2rem 0 0.85rem;
    color: #111;
}

.article-modern__body h1 { font-size: 1.85rem; }
.article-modern__body h2 { font-size: 1.45rem; }
.article-modern__body h3 { font-size: 1.2rem; }

.article-modern__body img {
    max-width: 100%;
    border-radius: 14px;
    margin: 1.5rem 0;
}

.article-modern__body a {
    color: #7a680f;
    font-weight: 600;
}

.article-modern__body .ql-align-center,
.article-modern__body [style*="text-align: center"] {
    text-align: center;
}

.article-modern__body .ql-align-right,
.article-modern__body [style*="text-align: right"] {
    text-align: right;
}

.article-modern__body .ql-align-justify,
.article-modern__body [style*="text-align: justify"] {
    text-align: justify;
}

.article-modern__body .ql-align-center img,
.article-modern__body p.ql-align-center img {
    margin-left: auto;
    margin-right: auto;
}

.article-modern__body iframe {
    display: block;
    max-width: 100%;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    min-height: 220px;
    border: 0;
    border-radius: 14px;
    margin: 1.5rem 0;
}

.article-modern__body ul,
.article-modern__body ol {
    margin: 0 0 1.25rem;
    padding-left: 1.4rem;
}

.article-modern__body blockquote {
    margin: 1.4rem 0;
    padding: 0.9rem 1.1rem;
    border-left: 4px solid var(--accent-color, #cdb22a);
    background: rgba(205, 178, 42, 0.08);
    border-radius: 0 12px 12px 0;
    color: #333;
}

.article-story-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #ececec;
}

.article-story-nav__link {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    min-width: 0;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(41, 41, 41, 0.1);
    border-radius: 16px;
    background: linear-gradient(165deg, #fffef8 0%, #f7f5ef 100%);
    color: inherit;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.article-story-nav__link:hover {
    transform: translateY(-2px);
    border-color: rgba(205, 178, 42, 0.45);
    box-shadow: 0 14px 28px rgba(41, 41, 41, 0.08);
}

.article-story-nav__link--empty {
    border: 0;
    background: transparent;
    pointer-events: none;
}

.article-story-nav__link--next {
    text-align: right;
    align-items: flex-end;
}

.article-story-nav__dir {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-color);
}

.article-story-nav__card {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    width: 100%;
    min-width: 0;
}

.article-story-nav__link--next .article-story-nav__card {
    justify-content: flex-end;
}

.article-story-nav__thumb {
    flex: 0 0 3.5rem;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    background-color: #e8e8e8;
}

.article-story-nav__copy {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

.article-story-nav__cat {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #7a7468;
}

.article-story-nav__copy strong {
    font-size: 0.98rem;
    line-height: 1.35;
    color: var(--primary-color);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 720px) {
    .article-story-nav {
        grid-template-columns: 1fr;
    }

    .article-story-nav__link--empty {
        display: none;
    }

    .article-story-nav__link--next {
        text-align: left;
        align-items: flex-start;
    }

    .article-story-nav__link--next .article-story-nav__card {
        justify-content: flex-start;
        flex-direction: row-reverse;
    }
}

.article-modern__sidebar {
    position: sticky;
    top: 1.25rem;
}

.article-side-block {
    margin-bottom: 2.25rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #ececec;
}

.article-side-block:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.article-side-block__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    text-transform: none;
    letter-spacing: 0;
    margin: 0 0 1rem;
    color: #111;
}

.article-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.article-cat-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    border: 1px solid #d9d9d9;
    background: #fff;
    color: #222;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.article-cat-pill:hover,
.article-cat-pill.is-active {
    border-color: var(--accent-color);
    background: rgba(205, 178, 42, 0.12);
    color: var(--primary-color);
}

.article-popular {
    display: grid;
    gap: 1rem;
}

.article-popular__item {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 0.85rem;
    text-decoration: none;
    color: inherit;
    align-items: start;
}

.article-popular__thumb {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    background-color: #f0f0f0;
}

.article-popular__copy {
    display: grid;
    gap: 0.25rem;
    min-width: 0;
}

.article-popular__copy strong {
    font-size: 0.95rem;
    line-height: 1.3;
    color: #111;
}

.article-popular__copy span {
    font-size: 0.82rem;
    color: #6b6b6b;
    line-height: 1.4;
}

.article-popular__item:hover strong {
    color: #7a680f;
}

.article-popular__empty {
    color: #6b6b6b;
    font-size: 0.9rem;
}

@media (max-width: 920px) {
    .article-modern__layout {
        grid-template-columns: 1fr;
    }
    .article-modern__sidebar {
        position: static;
    }
}

/* ========================================
   PERSON / PRESENTER PROFILE
   ======================================== */

.person-hero {
    min-height: clamp(420px, 68vh, 640px);
    align-items: flex-end;
    justify-content: flex-start;
    text-align: left;
    overflow: hidden;
    isolation: isolate;
}

.person-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.person-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
    display: block;
    transform: scale(1.03);
    animation: personHeroKenBurns 14s ease-out both;
}

@keyframes personHeroKenBurns {
    from { transform: scale(1.1); }
    to { transform: scale(1.03); }
}

.person-hero__overlay {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(12, 12, 12, 0.9) 0%, rgba(12, 12, 12, 0.58) 46%, rgba(12, 12, 12, 0.3) 100%),
        linear-gradient(180deg, rgba(12, 12, 12, 0.22) 0%, rgba(12, 12, 12, 0.74) 100%),
        radial-gradient(ellipse 48% 42% at 78% 18%, color-mix(in srgb, var(--person-tone, #cdb22a) 35%, transparent) 0%, transparent 62%);
}

.person-hero__wrap {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: flex-end;
    min-height: inherit;
}

.person-hero__content {
    position: relative;
    z-index: 2;
    width: min(100%, 44rem);
    max-width: 44rem;
    margin: 0;
    padding: clamp(3rem, 8vw, 5rem) 0 clamp(2.75rem, 6vw, 4rem);
    align-items: flex-start;
    text-align: left;
    animation: personHeroIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes personHeroIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.person-hero__brand,
.person-hero__title,
.person-hero__tagline {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
}

.person-hero__brand {
    margin: 0 0 0.55rem;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.1rem, 6vw, 3.4rem);
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    line-height: 0.95;
    color: #fff;
    text-shadow: 0 12px 34px rgba(0, 0, 0, 0.35);
}

.person-hero__brand::after {
    content: '';
    display: block;
    width: 3rem;
    height: 3px;
    margin-top: 0.7rem;
    background: linear-gradient(90deg, var(--accent-bright), var(--person-tone, var(--accent-color)));
}

.person-hero__title {
    margin: 0 0 0.7rem;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.45rem, 3.4vw, 2rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: none;
    color: var(--accent-color);
    line-height: 1.15;
}

.person-hero__tagline {
    margin: 0 0 1.5rem;
    max-width: 32rem;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: clamp(1.02rem, 2.2vw, 1.18rem);
    font-weight: 500;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.88);
}

.person-hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.35rem;
}

.person-hero__listen {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.85rem 1.35rem;
    border: 0;
    background: var(--accent-color);
    color: #1a1a1a;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.95rem;
    font-weight: 750;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.person-hero__listen:hover {
    background: var(--accent-bright);
    transform: translateY(-1px);
}

.person-hero__back {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(205, 178, 42, 0.55);
    padding-bottom: 0.15rem;
}

.person-hero__back:hover {
    color: #fff;
    border-bottom-color: var(--accent-color);
}

.person-story {
    position: relative;
    background:
        radial-gradient(ellipse 55% 30% at 0% 0%, color-mix(in srgb, var(--person-tone, #cdb22a) 12%, transparent) 0%, transparent 55%),
        linear-gradient(180deg, #faf8f2 0%, #ffffff 38%, #ffffff 100%);
    padding: clamp(2.5rem, 6vw, 4.25rem) 0 clamp(3.5rem, 8vw, 5.5rem);
}

.person-story__shell {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.7fr);
    gap: clamp(2rem, 5vw, 3.5rem);
    align-items: start;
}

.person-story__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 1.75rem;
    animation: personStoryRise 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
}

.person-story__chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(205, 178, 42, 0.14);
    color: #6f5d0c;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.person-story__chip--quiet {
    background: rgba(41, 41, 41, 0.05);
    color: #444;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 600;
}

.person-story__chip i {
    color: var(--accent-color);
    font-size: 0.85em;
}

.person-story__about {
    animation: personStoryRise 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.16s both;
}

.person-story__heading {
    margin: 0 0 1.15rem;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.55rem, 3vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    text-transform: none;
    color: #111;
}

.person-story__prose {
    max-width: 40rem;
}

.person-story__prose p {
    margin: 0 0 1.2rem;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: clamp(1.05rem, 2vw, 1.15rem);
    font-weight: 500;
    line-height: 1.8;
    color: #2c2c2c;
}

.person-story__prose p:last-child {
    margin-bottom: 0;
}

@keyframes personStoryRise {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.person-story__show {
    display: grid;
    grid-template-columns: minmax(150px, 240px) minmax(0, 1fr);
    gap: clamp(1.35rem, 3vw, 2rem);
    margin-top: 2.75rem;
    padding: clamp(1.25rem, 3vw, 1.75rem);
    border-radius: 22px;
    background: linear-gradient(145deg, #292929 0%, #1d1d1d 100%);
    color: #fff;
    overflow: hidden;
    position: relative;
    animation: personStoryRise 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.24s both;
}

.person-story__show::before {
    content: '';
    position: absolute;
    inset: auto -20% -40% auto;
    width: 55%;
    height: 80%;
    background: radial-gradient(circle, rgba(205, 178, 42, 0.22) 0%, transparent 70%);
    pointer-events: none;
}

.person-story__show-media {
    position: relative;
    z-index: 1;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #111;
}

.person-story__show-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.person-story__show:hover .person-story__show-media img {
    transform: scale(1.04);
}

.person-story__show-body {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.person-story__show-eyebrow {
    margin: 0 0 0.4rem;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-color);
}

.person-story__show-name {
    margin: 0 0 0.3rem;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.4rem, 2.8vw, 1.85rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    text-transform: none;
    color: #fff;
}

.person-story__show-tagline {
    margin: 0 0 0.7rem;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 1.02rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.78);
}

.person-story__show-meta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0 0 1.1rem;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
}

.person-story__show-meta i {
    color: var(--accent-color);
}

.person-story__show-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    width: fit-content;
    color: var(--accent-color);
    font-weight: 700;
    text-decoration: none;
}

.person-story__show-link:hover {
    color: #e0c63a;
}

.person-story__aside {
    position: sticky;
    top: 6.5rem;
    animation: personStoryRise 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

.person-story__aside-title {
    margin: 0 0 1rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    text-transform: none;
    color: #111;
}

.person-story__rail {
    list-style: none;
    margin: 0 0 1.15rem;
    padding: 0;
    display: grid;
    gap: 0.75rem;
}

.person-story__rail-card {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 0.85rem;
    align-items: center;
    padding: 0.55rem;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(41, 41, 41, 0.08);
    background: #fff;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.person-story__rail-card:hover {
    border-color: rgba(205, 178, 42, 0.45);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(41, 41, 41, 0.08);
}

.person-story__rail-card img {
    width: 72px;
    height: 88px;
    object-fit: cover;
    object-position: center 18%;
    display: block;
    background: #f0f0f0;
}

.person-story__rail-copy {
    display: grid;
    gap: 0.2rem;
    min-width: 0;
}

.person-story__rail-tag {
    font-size: 0.68rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-color);
}

.person-story__rail-copy strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    color: #111;
    line-height: 1.25;
}

.person-story__rail-copy span:last-child {
    font-size: 0.82rem;
    color: #666;
    line-height: 1.35;
}

.person-story__aside-link {
    display: inline-flex;
    align-items: center;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid rgba(205, 178, 42, 0.5);
    padding-bottom: 0.1rem;
}

.person-story__aside-link:hover {
    color: #7a680f;
}

@media (max-width: 980px) {
    .person-story__shell {
        grid-template-columns: 1fr;
    }

    .person-story__aside {
        position: static;
    }

    .person-story__show {
        grid-template-columns: 1fr;
    }

    .person-story__show-media {
        max-width: 280px;
    }
}

@media (max-width: 640px) {
    .person-hero {
        min-height: clamp(380px, 72vh, 520px);
    }

    .person-hero__actions {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    .person-hero__media img,
    .person-hero__content,
    .person-story__meta,
    .person-story__about,
    .person-story__show,
    .person-story__aside {
        animation: none !important;
    }
}

/* ==========================================================================
   Watch Live — YouTube watch page (Gee Radio branded)
   ========================================================================== */

.watch-live {
    --watch-bg: #0e0d0d;
    --watch-panel: #161616;
    --watch-panel-2: #1c1c1c;
    --watch-line: rgba(255, 255, 255, 0.08);
    --watch-muted: rgba(255, 254, 248, 0.62);
    min-height: calc(100vh - 88px);
    background:
        radial-gradient(ellipse 70% 50% at 12% 0%, color-mix(in srgb, var(--accent-color) 18%, transparent) 0%, transparent 55%),
        radial-gradient(ellipse 55% 40% at 90% 10%, color-mix(in srgb, var(--accent-bright) 10%, transparent) 0%, transparent 50%),
        linear-gradient(165deg, #0e0d0d 0%, #161616 48%, #1f1f1f 100%);
    color: var(--brand-cream);
    padding-bottom: 4rem;
}

.watch-live__status-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1.25rem;
    padding: 0.7rem clamp(1rem, 3vw, 1.75rem);
    background: rgba(0, 0, 0, 0.45);
    border-bottom: 1px solid var(--watch-line);
    backdrop-filter: blur(10px);
}

.watch-live__status-left {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem 0.75rem;
    min-width: 0;
}

.watch-live__pulse {
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 50%;
    background: #6b6b6b;
    box-shadow: 0 0 0 0 rgba(107, 107, 107, 0.4);
    flex-shrink: 0;
}

.watch-live__pulse.is-live {
    background: #e11d48;
    animation: watch-live-pulse 1.6s ease-out infinite;
}

@keyframes watch-live-pulse {
    0% { box-shadow: 0 0 0 0 rgba(225, 29, 72, 0.55); }
    70% { box-shadow: 0 0 0 10px rgba(225, 29, 72, 0); }
    100% { box-shadow: 0 0 0 0 rgba(225, 29, 72, 0); }
}

.watch-live__status-label {
    font-family: 'Outfit', 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.watch-live.is-live .watch-live__status-label {
    color: #fb7185;
}

.watch-live.is-offline .watch-live__status-label {
    color: rgba(255, 254, 248, 0.55);
}

.watch-live__status-detail {
    font-size: 0.9rem;
    color: var(--watch-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: min(52vw, 28rem);
}

.watch-live__status-right {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.watch-live__stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--watch-line);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--brand-cream);
}

.watch-live__stat-pill i {
    color: var(--accent-color);
    font-size: 0.75rem;
}

.watch-live__stat-pill-label {
    color: var(--watch-muted);
    font-weight: 500;
}

.watch-live__shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
    gap: 1.25rem;
    align-items: start;
    padding-top: 1.25rem;
    padding-bottom: 1rem;
}

.watch-live__main {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.watch-live__stage {
    border-radius: 14px;
    overflow: hidden;
    background: #000;
    border: 1px solid var(--watch-line);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.watch-live__player {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #050505;
}

.watch-live__frame-wrap,
.watch-live__iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.watch-live__native-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #050505;
    display: flex;
    align-items: center;
    justify-content: center;
}

.watch-live__native-wrap[hidden] {
    display: none;
}

.watch-live__native-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

.watch-live__audio-stage {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #050505;
}

.watch-live__audio-stage[hidden] {
    display: none;
}

.watch-live__audio-backdrop {
    position: absolute;
    inset: -8%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    filter: blur(28px) saturate(1.15);
    transform: scale(1.08);
    opacity: 0.45;
    pointer-events: none;
}

.watch-live__audio-backdrop::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.35) 0%, rgba(5, 5, 5, 0.55) 42%, rgba(5, 5, 5, 0.92) 100%),
        radial-gradient(circle at 50% 35%, transparent 0%, rgba(0, 0, 0, 0.55) 72%);
}

.watch-live__audio-glow {
    position: absolute;
    inset: 18% 20% auto;
    height: 42%;
    background: radial-gradient(circle, color-mix(in srgb, var(--accent-color) 28%, transparent) 0%, transparent 70%);
    pointer-events: none;
    filter: blur(8px);
}

.watch-live__audio-main {
    position: relative;
    z-index: 1;
    flex: 1;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 1.1rem 0.35rem;
}

.watch-live__audio-art {
    position: relative;
    width: min(72%, 22rem);
    aspect-ratio: 1;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 28px 60px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(205, 178, 42, 0.08);
}

.watch-live__audio-stage.is-playing .watch-live__audio-art {
    animation: watch-audio-pulse 2.8s ease-in-out infinite;
}

.watch-live__audio-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.watch-live__audio-art:not(.has-cover) img {
    display: none;
}

.watch-live__audio-art-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 3rem;
    background: linear-gradient(160deg, #171717, #090909);
}

.watch-live__audio-art.has-cover .watch-live__audio-art-fallback {
    display: none;
}

.watch-live__audio-eq {
    position: absolute;
    left: 50%;
    bottom: 8%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 0.28rem;
    height: 3.4rem;
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    opacity: 0.55;
    transition: opacity 0.25s ease;
}

.watch-live__audio-stage.is-playing .watch-live__audio-eq {
    opacity: 1;
}

.watch-live__audio-eq span {
    display: block;
    width: 0.28rem;
    height: 22%;
    border-radius: 999px;
    background: linear-gradient(180deg, #f1e300 0%, var(--accent-color) 55%, #8f7a18 100%);
    transform-origin: bottom center;
    animation: watch-eq-jump 0.9s ease-in-out infinite;
    animation-play-state: paused;
}

.watch-live__audio-stage.is-playing .watch-live__audio-eq span {
    animation-play-state: running;
}

.watch-live__audio-eq span:nth-child(1) { animation-duration: 0.72s; animation-delay: -0.1s; }
.watch-live__audio-eq span:nth-child(2) { animation-duration: 0.95s; animation-delay: -0.35s; }
.watch-live__audio-eq span:nth-child(3) { animation-duration: 0.68s; animation-delay: -0.2s; }
.watch-live__audio-eq span:nth-child(4) { animation-duration: 1.05s; animation-delay: -0.55s; }
.watch-live__audio-eq span:nth-child(5) { animation-duration: 0.8s; animation-delay: -0.15s; }
.watch-live__audio-eq span:nth-child(6) { animation-duration: 0.9s; animation-delay: -0.4s; }
.watch-live__audio-eq span:nth-child(7) { animation-duration: 0.75s; animation-delay: -0.05s; }
.watch-live__audio-eq span:nth-child(8) { animation-duration: 1.1s; animation-delay: -0.62s; }
.watch-live__audio-eq span:nth-child(9) { animation-duration: 0.84s; animation-delay: -0.28s; }
.watch-live__audio-eq span:nth-child(10) { animation-duration: 0.7s; animation-delay: -0.48s; }
.watch-live__audio-eq span:nth-child(11) { animation-duration: 0.98s; animation-delay: -0.18s; }
.watch-live__audio-eq span:nth-child(12) { animation-duration: 0.78s; animation-delay: -0.33s; }
.watch-live__audio-eq span:nth-child(13) { animation-duration: 1.02s; animation-delay: -0.08s; }
.watch-live__audio-eq span:nth-child(14) { animation-duration: 0.86s; animation-delay: -0.44s; }
.watch-live__audio-eq span:nth-child(15) { animation-duration: 0.74s; animation-delay: -0.22s; }
.watch-live__audio-eq span:nth-child(16) { animation-duration: 0.92s; animation-delay: -0.5s; }
.watch-live__audio-eq span:nth-child(17) { animation-duration: 0.81s; animation-delay: -0.12s; }
.watch-live__audio-eq span:nth-child(18) { animation-duration: 1.08s; animation-delay: -0.38s; }

@keyframes watch-eq-jump {
    0%, 100% { height: 18%; }
    35% { height: 92%; }
    60% { height: 38%; }
    80% { height: 70%; }
}

@keyframes watch-audio-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.015); }
}

.watch-live__audio-dock {
    position: relative;
    z-index: 2;
    margin-top: auto;
    padding: 0.85rem 1rem 1rem;
    display: grid;
    gap: 0.7rem;
    background:
        linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.35) 18%, rgba(8, 8, 8, 0.88) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
}

.watch-live__audio-dock-copy {
    min-width: 0;
}

.watch-live__audio-dock-eyebrow {
    margin: 0;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-color);
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
}

.watch-live__audio-title {
    margin: 0.18rem 0 0;
    font-family: 'Montserrat', 'Outfit', sans-serif;
    font-size: clamp(0.95rem, 2.1vw, 1.2rem);
    font-weight: 800;
    color: var(--brand-cream);
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.watch-live__audio-controls {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.7rem;
}

.watch-live__audio-volume {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    min-width: 0;
}

.watch-live__audio-vol-panel {
    display: flex;
    align-items: center;
    width: 0;
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition: width 0.22s ease, max-width 0.22s ease, opacity 0.18s ease;
}

.watch-live__audio-volume.is-open .watch-live__audio-vol-panel {
    width: 7.5rem;
    max-width: 7.5rem;
    opacity: 1;
    pointer-events: auto;
}

.watch-live__audio-btn--vol.is-active,
.watch-live__audio-volume.is-open .watch-live__audio-btn--vol {
    border-color: rgba(205, 178, 42, 0.55);
    background: rgba(255, 255, 255, 0.1);
}

.watch-live__audio-vol-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 7.2rem;
    height: 0.42rem;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        var(--accent-color) 0%,
        var(--accent-color) var(--vol-pct, 100%),
        rgba(255, 255, 255, 0.16) var(--vol-pct, 100%)
    );
    outline: none;
    cursor: pointer;
}

.watch-live__audio-vol-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 1.05rem;
    height: 1.05rem;
    border-radius: 50%;
    background: var(--accent-color);
    border: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    cursor: pointer;
}

.watch-live__audio-vol-slider::-moz-range-thumb {
    width: 1.05rem;
    height: 1.05rem;
    border-radius: 50%;
    background: var(--accent-color);
    border: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    cursor: pointer;
}

.watch-live__audio-vol-slider::-moz-range-track {
    height: 0.42rem;
    border-radius: 999px;
    background: transparent;
}

.watch-live__audio-btn {
    width: 2.55rem;
    height: 2.55rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: var(--brand-cream);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.watch-live__audio-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(205, 178, 42, 0.45);
}

.watch-live__audio-btn:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

.watch-live__audio-btn--play {
    width: 2.9rem;
    height: 2.9rem;
    background: linear-gradient(145deg, #f1e300 0%, var(--accent-color) 100%);
    color: #111;
    border-color: transparent;
    box-shadow: 0 8px 22px rgba(205, 178, 42, 0.35);
}

.watch-live__audio-btn--play:hover {
    background: linear-gradient(145deg, #fff166 0%, #d6bc2e 100%);
    transform: scale(1.04);
}

.watch-live__audio-timeline {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.55rem;
    min-width: 0;
}

.watch-live__audio-time {
    font-size: 0.72rem;
    font-variant-numeric: tabular-nums;
    color: rgba(255, 254, 248, 0.72);
    font-family: 'Outfit', sans-serif;
    min-width: 2.4rem;
}

.watch-live__audio-time:last-child {
    text-align: right;
}

.watch-live__audio-seek {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 0.35rem;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        var(--accent-color) 0%,
        var(--accent-color) var(--seek-pct, 0%),
        rgba(255, 255, 255, 0.18) var(--seek-pct, 0%)
    );
    outline: none;
    cursor: pointer;
}

.watch-live__audio-seek::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 0.95rem;
    height: 0.95rem;
    border-radius: 50%;
    background: #fffef8;
    border: 2px solid var(--accent-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
    cursor: pointer;
}

.watch-live__audio-seek::-moz-range-thumb {
    width: 0.95rem;
    height: 0.95rem;
    border-radius: 50%;
    background: #fffef8;
    border: 2px solid var(--accent-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
    cursor: pointer;
}

.watch-live__native-audio {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 640px) {
    .watch-live__audio-art {
        width: min(78%, 16.5rem);
        border-radius: 14px;
    }

    .watch-live__audio-eq {
        gap: 0.2rem;
        height: 2.7rem;
        padding: 0.35rem 0.55rem;
    }

    .watch-live__audio-eq span {
        width: 0.22rem;
    }

    .watch-live__audio-eq span:nth-child(n + 13) {
        display: none;
    }

    .watch-live__audio-dock {
        padding: 0.75rem 0.8rem 0.9rem;
    }

    .watch-live__audio-controls {
        gap: 0.5rem;
    }

    .watch-live__audio-volume {
        gap: 0.3rem;
    }

    .watch-live__audio-volume.is-open .watch-live__audio-vol-panel {
        width: 5.8rem;
        max-width: 5.8rem;
    }

    .watch-live__audio-vol-slider {
        width: 5.5rem;
    }

    .watch-live__audio-btn {
        width: 2.3rem;
        height: 2.3rem;
    }

    .watch-live__audio-btn--play {
        width: 2.55rem;
        height: 2.55rem;
    }
}

.watch-live__archive-type {
    position: absolute;
    top: 0.55rem;
    left: 0.55rem;
    z-index: 2;
    padding: 0.2rem 0.45rem;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.72);
    color: var(--brand-cream);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-family: 'Outfit', sans-serif;
}

.watch-live__archive-thumb-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #1c1c1c, #0f0f0f);
    color: var(--accent-color);
    font-size: 1.75rem;
}

.watch-live__archive-thumb.is-audio img {
    object-fit: cover;
}

.watch-live__offline {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
    background:
        radial-gradient(circle at 50% 35%, color-mix(in srgb, var(--accent-color) 16%, transparent) 0%, transparent 55%),
        linear-gradient(160deg, #121212 0%, #0a0a0a 100%);
}

.watch-live__offline-glow {
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, color-mix(in srgb, var(--accent-bright) 22%, transparent) 0%, transparent 70%);
    top: 18%;
    pointer-events: none;
    animation: watch-live-glow 4.5s ease-in-out infinite alternate;
}

@keyframes watch-live-glow {
    from { transform: scale(0.92); opacity: 0.55; }
    to { transform: scale(1.08); opacity: 1; }
}

.watch-live__offline-icon {
    position: relative;
    width: 4.25rem;
    height: 4.25rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
    background: color-mix(in srgb, var(--accent-color) 18%, #1a1a1a);
    border: 1px solid color-mix(in srgb, var(--accent-color) 45%, transparent);
    color: var(--accent-bright);
    font-size: 1.45rem;
}

.watch-live__offline-brand {
    position: relative;
    font-family: 'Outfit', 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.75rem;
    color: var(--accent-color);
    margin-bottom: 0.4rem;
}

.watch-live__offline-title {
    position: relative;
    font-family: 'Montserrat', 'Outfit', sans-serif;
    font-size: clamp(1.45rem, 3vw, 2rem);
    font-weight: 800;
    margin: 0 0 0.55rem;
    color: var(--brand-cream);
}

.watch-live__offline-copy {
    position: relative;
    max-width: 28rem;
    margin: 0 0 1.25rem;
    color: var(--watch-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.watch-live__offline-actions {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
}

.watch-live__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.15rem;
    border-radius: 999px;
    font-family: 'Outfit', sans-serif;
    font-weight: 650;
    font-size: 0.92rem;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.watch-live__btn--primary {
    background: linear-gradient(115deg, var(--accent-color) 0%, var(--accent-bright) 100%);
    color: var(--near-black);
}

.watch-live__btn--primary:hover {
    transform: translateY(-1px);
}

.watch-live__btn--ghost {
    background: transparent;
    color: var(--brand-cream);
    border-color: rgba(255, 255, 255, 0.22);
}

.watch-live__btn--ghost:hover {
    border-color: var(--accent-color);
    color: var(--accent-bright);
}

.watch-live__meta {
    padding: 0.15rem 0.15rem 0;
}

.watch-live__meta-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem 0.85rem;
    margin-bottom: 0.35rem;
}

.watch-live__live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.28rem 0.6rem;
    border-radius: 6px;
    background: #e11d48;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.watch-live__live-dot {
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: #fff;
}

.watch-live__title {
    font-family: 'Montserrat', 'Outfit', sans-serif;
    font-size: clamp(1.25rem, 2.4vw, 1.75rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
    color: var(--brand-cream);
}

.watch-live__tagline {
    margin: 0 0 1rem;
    color: var(--watch-muted);
    font-size: 0.95rem;
}

.watch-live__meta-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.65rem;
}

.watch-live__meta-stat {
    padding: 0.75rem 0.85rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--watch-line);
}

.watch-live__meta-stat-val {
    display: block;
    font-family: 'Outfit', 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--accent-bright);
    margin-bottom: 0.15rem;
}

.watch-live__meta-stat-lbl {
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--watch-muted);
}

.watch-live__aside {
    display: flex;
    flex-direction: column;
    min-height: min(70vh, 640px);
    max-height: min(78vh, 720px);
    border-radius: 14px;
    background: linear-gradient(165deg, var(--watch-panel) 0%, var(--watch-panel-2) 100%);
    border: 1px solid var(--watch-line);
    overflow: hidden;
}

.watch-live__aside-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1rem 1.1rem 0.85rem;
    border-bottom: 1px solid var(--watch-line);
}

.watch-live__aside-eyebrow {
    margin: 0;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-color);
    font-weight: 650;
}

.watch-live__aside-title {
    margin: 0.15rem 0 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
}

.watch-live__aside-count {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: rgba(205, 178, 42, 0.12);
    border: 1px solid color-mix(in srgb, var(--accent-color) 35%, transparent);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--accent-bright);
}

.watch-live__chat-feed {
    flex: 1;
    overflow-y: auto;
    padding: 0.85rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    scroll-behavior: smooth;
}

.watch-live__chat-empty {
    margin: auto;
    text-align: center;
    color: var(--watch-muted);
    font-size: 0.9rem;
    max-width: 16rem;
    line-height: 1.45;
}

.watch-live__chat-msg {
    display: grid;
    grid-template-columns: 2.25rem minmax(0, 1fr);
    gap: 0.65rem;
    animation: watch-chat-in 0.28s ease;
}

@keyframes watch-chat-in {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: none; }
}

.watch-live__chat-avatar {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    background: linear-gradient(145deg, var(--accent-color), var(--accent-bright));
    color: var(--near-black);
}

.watch-live__chat-body {
    min-width: 0;
    padding: 0.55rem 0.7rem 0.65rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--watch-line);
}

.watch-live__chat-meta {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.watch-live__chat-meta strong {
    font-size: 0.82rem;
    color: var(--accent-bright);
}

.watch-live__chat-meta time {
    font-size: 0.7rem;
    color: var(--watch-muted);
    flex-shrink: 0;
}

.watch-live__chat-body p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--brand-cream);
    word-wrap: break-word;
}

.watch-live__chat-form {
    padding: 0.85rem 1rem 1rem;
    border-top: 1px solid var(--watch-line);
    background: rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.watch-live__chat-name,
.watch-live__chat-input {
    width: 100%;
    border: 1px solid var(--watch-line);
    background: rgba(255, 255, 255, 0.04);
    color: var(--brand-cream);
    border-radius: 10px;
    padding: 0.65rem 0.8rem;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s ease;
}

.watch-live__chat-name:focus,
.watch-live__chat-input:focus {
    border-color: color-mix(in srgb, var(--accent-color) 70%, transparent);
}

.watch-live__chat-name::placeholder,
.watch-live__chat-input::placeholder {
    color: rgba(255, 254, 248, 0.35);
}

.watch-live__chat-compose {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.45rem;
}

.watch-live__chat-send {
    width: 2.75rem;
    border: 0;
    border-radius: 10px;
    cursor: pointer;
    background: linear-gradient(145deg, var(--accent-color), var(--accent-bright));
    color: var(--near-black);
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.watch-live__chat-send:hover:not(:disabled) {
    transform: translateY(-1px);
}

.watch-live__chat-send:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.watch-live__chat-hint {
    margin: 0;
    font-size: 0.78rem;
    color: var(--watch-muted);
}

.watch-live__chat-hint.is-error {
    color: #fb7185;
}

@media (max-width: 980px) {
    .watch-live__shell {
        grid-template-columns: 1fr;
    }

    .watch-live__aside {
        min-height: 420px;
        max-height: 520px;
    }

    .watch-live__meta-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .watch-live__status-detail {
        max-width: 100%;
        white-space: normal;
    }
}

@media (max-width: 560px) {
    .watch-live {
        padding-bottom: 5.5rem;
    }

    .watch-live__status-right {
        display: none;
    }

    .watch-live__stage {
        border-radius: 0;
        margin-inline: calc(-1 * clamp(1rem, 4vw, 1.5rem));
        border-left: 0;
        border-right: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .watch-live__pulse.is-live,
    .watch-live__offline-glow,
    .watch-live__chat-msg {
        animation: none !important;
    }
}

.watch-live__live-badge--featured {
    background: linear-gradient(115deg, var(--accent-color) 0%, var(--accent-bright) 100%);
    color: var(--near-black);
}

.watch-live__live-badge--featured .watch-live__live-dot {
    background: var(--near-black);
}

/* Previous streams archive */
.watch-live__archive {
    margin-top: 0.5rem;
    padding-top: 1.35rem;
    padding-bottom: 0.5rem;
    border-top: 1px solid var(--watch-line);
}

.watch-live__archive-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.5rem 1rem;
    margin-bottom: 1rem;
}

.watch-live__archive-eyebrow {
    margin: 0;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-color);
    font-weight: 650;
    font-family: 'Outfit', sans-serif;
}

.watch-live__archive-title {
    margin: 0.2rem 0 0;
    font-family: 'Montserrat', 'Outfit', sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 800;
    color: var(--brand-cream);
}

.watch-live__archive-count {
    margin: 0;
    font-size: 0.8rem;
    color: var(--watch-muted);
}

.watch-live__archive-loading,
.watch-live__archive-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    min-height: 7rem;
    margin: 0;
    padding: 1.5rem 1rem;
    text-align: center;
    color: var(--watch-muted);
    font-size: 0.92rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed var(--watch-line);
}

.watch-live__archive-loading[hidden],
.watch-live__archive-empty[hidden],
.watch-live__archive-layout[hidden] {
    display: none;
}

.watch-live__archive-spinner {
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-top-color: var(--accent-bright);
    animation: watch-archive-spin 0.7s linear infinite;
    flex-shrink: 0;
}

@keyframes watch-archive-spin {
    to { transform: rotate(360deg); }
}

.watch-live__archive-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.15rem;
    align-items: start;
}

.watch-live__archive-layout.has-rail {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
}

.watch-live__archive-primary {
    min-width: 0;
}

.watch-live__archive-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
}

.watch-live__archive-card {
    min-width: 0;
    animation: watch-archive-in 0.35s ease both;
    animation-delay: calc(var(--archive-stagger, 0) * 40ms);
}

@keyframes watch-archive-in {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: none; }
}

.watch-live__archive-card-btn {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    text-align: left;
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s ease;
}

.watch-live__archive-card-btn:hover {
    transform: translateY(-2px);
}

.watch-live__archive-card-btn:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 3px;
}

.watch-live__archive-thumb {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    background: #0a0a0a;
    border: 1px solid var(--watch-line);
}

.watch-live__archive-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.watch-live__archive-card-btn:hover .watch-live__archive-thumb img {
    transform: scale(1.04);
}

.watch-live__archive-duration {
    position: absolute;
    right: 0.45rem;
    bottom: 0.45rem;
    z-index: 1;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.82);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    font-weight: 650;
    letter-spacing: 0.02em;
}

.watch-live__archive-play {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    transition: opacity 0.2s ease;
    color: var(--near-black);
}

.watch-live__archive-play i {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, var(--accent-color), var(--accent-bright));
    font-size: 0.85rem;
    padding-left: 2px;
}

.watch-live__archive-card-btn:hover .watch-live__archive-play,
.watch-live__archive-card-btn:focus-visible .watch-live__archive-play {
    opacity: 1;
}

.watch-live__archive-body {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.65rem 0.15rem 0.2rem;
}

.watch-live__archive-card-title {
    font-family: 'Outfit', 'Montserrat', sans-serif;
    font-size: 0.88rem;
    font-weight: 650;
    line-height: 1.3;
    color: var(--brand-cream);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.watch-live__archive-card-meta {
    font-size: 0.72rem;
    color: var(--watch-muted);
    letter-spacing: 0.01em;
}

.watch-live__archive-pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.15rem;
}

.watch-live__archive-pagination[hidden] {
    display: none;
}

.watch-live__archive-page-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.85rem;
    border-radius: 8px;
    border: 1px solid var(--watch-line);
    background: rgba(255, 255, 255, 0.04);
    color: var(--brand-cream);
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.watch-live__archive-page-btn:hover:not(:disabled) {
    border-color: var(--accent-color);
    background: rgba(205, 178, 42, 0.1);
}

.watch-live__archive-page-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.watch-live__archive-page-numbers {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.watch-live__archive-page-num {
    min-width: 2.1rem;
    height: 2.1rem;
    padding: 0 0.4rem;
    border-radius: 8px;
    border: 1px solid var(--watch-line);
    background: rgba(255, 255, 255, 0.04);
    color: var(--brand-cream);
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    font-weight: 650;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.watch-live__archive-page-num:hover {
    border-color: var(--accent-color);
}

.watch-live__archive-page-num.is-active {
    background: linear-gradient(115deg, var(--accent-color) 0%, var(--accent-bright) 100%);
    border-color: transparent;
    color: var(--near-black);
}

/* Archive sidebar rail — videos not on the current page */
.watch-live__archive-rail {
    position: sticky;
    top: 5.5rem;
    align-self: start;
    border-radius: 14px;
    background: linear-gradient(165deg, var(--watch-panel) 0%, var(--watch-panel-2) 100%);
    border: 1px solid var(--watch-line);
    overflow: hidden;
    max-height: min(72vh, 640px);
    display: flex;
    flex-direction: column;
}

.watch-live__archive-rail[hidden] {
    display: none;
}

.watch-live__archive-rail-head {
    padding: 0.95rem 1rem 0.75rem;
    border-bottom: 1px solid var(--watch-line);
    background: rgba(0, 0, 0, 0.2);
}

.watch-live__archive-rail-eyebrow {
    margin: 0;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-color);
    font-weight: 650;
    font-family: 'Outfit', sans-serif;
}

.watch-live__archive-rail-title {
    margin: 0.2rem 0 0;
    font-family: 'Montserrat', 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--brand-cream);
}

.watch-live__archive-rail-list {
    flex: 1;
    overflow-y: auto;
    padding: 0.55rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(205, 178, 42, 0.45) transparent;
}

.watch-live__archive-rail-item {
    animation: watch-archive-in 0.3s ease both;
    animation-delay: calc(var(--rail-stagger, 0) * 30ms);
}

.watch-live__archive-rail-btn {
    display: grid;
    grid-template-columns: 7.25rem minmax(0, 1fr);
    gap: 0.65rem;
    width: 100%;
    padding: 0.4rem;
    border: 1px solid transparent;
    border-radius: 10px;
    background: transparent;
    color: inherit;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.watch-live__archive-rail-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--watch-line);
    transform: translateX(2px);
}

.watch-live__archive-rail-btn:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

.watch-live__archive-rail-thumb {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
    background: #0a0a0a;
    border: 1px solid var(--watch-line);
}

.watch-live__archive-rail-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.watch-live__archive-rail-btn:hover .watch-live__archive-rail-thumb img {
    transform: scale(1.05);
}

.watch-live__archive-rail-duration {
    position: absolute;
    right: 0.3rem;
    bottom: 0.3rem;
    padding: 0.1rem 0.3rem;
    border-radius: 3px;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.62rem;
    font-weight: 650;
}

.watch-live__archive-rail-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.2rem;
    padding-right: 0.15rem;
}

.watch-live__archive-rail-item-title {
    font-family: 'Outfit', 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 650;
    line-height: 1.3;
    color: var(--brand-cream);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.watch-live__archive-rail-item-meta {
    font-size: 0.68rem;
    color: var(--watch-muted);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 1100px) {
    .watch-live__archive-layout.has-rail {
        grid-template-columns: minmax(0, 1fr) minmax(220px, 260px);
    }
}

@media (max-width: 980px) {
    .watch-live__archive-layout.has-rail {
        grid-template-columns: 1fr;
    }

    .watch-live__archive-rail {
        position: static;
        max-height: none;
    }

    .watch-live__archive-rail-list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.45rem;
        overflow: visible;
    }

    .watch-live__archive-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .watch-live__archive-grid {
        grid-template-columns: 1fr;
    }

    .watch-live__archive-rail-list {
        grid-template-columns: 1fr;
    }

    .watch-live__archive-page-btn span {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .watch-live__archive-card,
    .watch-live__archive-rail-item,
    .watch-live__archive-spinner {
        animation: none !important;
    }

    .watch-live__archive-thumb img,
    .watch-live__archive-card-btn,
    .watch-live__archive-rail-btn,
    .watch-live__archive-rail-thumb img {
        transition: none;
    }
}

/* Legal document pages */

.legal-page {
    --legal-ink: #1a1a1a;
    --legal-muted: #5c5c5c;
    --legal-line: rgba(26, 26, 26, 0.12);
    --legal-surface: #f7f6f2;
    --legal-accent: #cdb22a;
    background:
        radial-gradient(ellipse 80% 50% at 10% -10%, rgba(205, 178, 42, 0.12), transparent 55%),
        radial-gradient(ellipse 60% 40% at 100% 0%, rgba(41, 41, 41, 0.06), transparent 50%),
        linear-gradient(180deg, #fffef9 0%, var(--legal-surface) 45%, #f0eee8 100%);
    padding: clamp(5.5rem, 12vw, 7.5rem) 0 clamp(3.5rem, 8vw, 5.5rem);
    color: var(--legal-ink);
}

.legal-page__inner {
    max-width: 46rem;
}

.legal-page__header {
    margin-bottom: clamp(2rem, 5vw, 3rem);
    padding-bottom: 1.75rem;
    border-bottom: 1px solid var(--legal-line);
}

.legal-page__brand {
    margin: 0 0 0.65rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--legal-accent);
}

.legal-page__header h1 {
    margin: 0 0 0.75rem;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.85rem, 4.5vw, 2.65rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--legal-ink);
}

.legal-page__updated {
    margin: 0 0 1.15rem;
    font-size: 0.84rem;
    color: var(--legal-muted);
}

.legal-page__lede {
    margin: 0;
    font-size: clamp(1rem, 2.2vw, 1.1rem);
    line-height: 1.7;
    color: #3a3a3a;
}

.legal-page__body section {
    margin: 0 0 1.85rem;
}

.legal-page__body h2 {
    margin: 0 0 0.75rem;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.05rem, 2.4vw, 1.2rem);
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--legal-ink);
}

.legal-page__body h3 {
    margin: 1rem 0 0.45rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.98rem;
    font-weight: 700;
    color: #2c2c2c;
}

.legal-page__body p,
.legal-page__body li {
    font-size: 0.95rem;
    line-height: 1.75;
    color: #3f3f3f;
}

.legal-page__body p {
    margin: 0 0 0.85rem;
}

.legal-page__body ul {
    margin: 0 0 0.85rem;
    padding-left: 1.2rem;
}

.legal-page__body li {
    margin-bottom: 0.45rem;
}

.legal-page__body a {
    color: #8a7410;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.legal-page__body a:hover {
    color: #5c4d08;
}

.legal-page__cross {
    margin-top: 1.25rem !important;
    padding-top: 1.25rem;
    border-top: 1px solid var(--legal-line);
}

/* Donate — modern M-Pesa Paybill support */
.donate-hero {
    min-height: clamp(18rem, 42vw, 26rem);
    background-position: center 30%;
}

.donate-hero__overlay {
    background: linear-gradient(
        180deg,
        rgba(20, 20, 20, 0.55) 0%,
        rgba(20, 20, 20, 0.82) 55%,
        rgba(41, 41, 41, 0.95) 100%
    );
}

.donate-hero__content {
    max-width: 40rem;
}

.donate-hero__brand {
    margin: 0 0 0.65rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-bright);
}

.donate-hero h1 {
    margin: 0 0 0.75rem;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 5vw, 3.1rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.08;
    color: #fff;
    opacity: 1;
    transform: none;
    filter: none;
}

.donate-hero p {
    margin: 0;
    max-width: 34rem;
    font-size: clamp(1rem, 2.2vw, 1.12rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
    opacity: 1;
    transform: none;
    filter: none;
}

.donate-shell {
    position: relative;
    padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(4rem, 8vw, 5.5rem);
    background: var(--primary-color);
    color: #fff;
    overflow: hidden;
}

.donate-shell__noise {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    pointer-events: none;
}

.donate-shell__inner {
    position: relative;
    z-index: 1;
}

.donate-shell__intro {
    max-width: 36rem;
    margin: 0 auto clamp(2rem, 5vw, 3rem);
    text-align: center;
}

.donate-shell__intro .gee-page-eyebrow {
    color: var(--accent-bright);
}

.donate-shell__intro h2 {
    margin: 0 0 0.75rem;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.65rem, 3.5vw, 2.35rem);
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
}

.donate-shell__lede {
    margin: 0;
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.72);
}

.donate-shell__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    gap: clamp(1.25rem, 3vw, 2rem);
    align-items: start;
    max-width: 62rem;
    margin-inline: auto;
}

.donate-shell__layout--give {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.75rem, 4vw, 2.75rem);
    max-width: 56rem;
    margin-inline: auto;
}

.donate-give-stack {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.75rem, 4vw, 2.75rem);
    justify-items: center;
    width: 100%;
}

.donate-give-stack > .donate-online {
    width: 100%;
    max-width: 42rem;
}

.donate-give-stack > .donate-aside--below {
    width: 100%;
}

.donate-main {
    display: grid;
    gap: clamp(1rem, 2.5vw, 1.35rem);
}

.donate-online {
    border-radius: 1.35rem;
    overflow: hidden;
    background:
        radial-gradient(ellipse 90% 60% at 50% -10%, rgba(205, 178, 42, 0.12), transparent 55%),
        rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 24px 50px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    padding: clamp(1.35rem, 3.5vw, 2rem);
}

.donate-online__head {
    margin-bottom: 1.25rem;
    text-align: center;
}

.donate-online__tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.55rem;
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    background: rgba(205, 178, 42, 0.14);
    color: var(--accent-bright);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.donate-online__head h3 {
    margin: 0 0 0.35rem;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 1.45rem);
    font-weight: 800;
    color: #fff;
}

.donate-online__head p {
    margin: 0 auto;
    max-width: 28rem;
    font-size: 0.92rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.68);
}

.donate-online__alert {
    margin-bottom: 1rem;
    padding: 0.85rem 1rem;
    border-radius: 0.65rem;
    background: rgba(205, 178, 42, 0.12);
    border: 1px solid rgba(205, 178, 42, 0.22);
    color: var(--accent-bright);
    font-size: 0.88rem;
    line-height: 1.5;
}

.donate-currency {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin: 0 auto 1.1rem;
    padding: 0.28rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.donate-form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.donate-currency__btn {
    min-width: 4.25rem;
    padding: 0.45rem 0.85rem;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: rgba(255, 255, 255, 0.62);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.donate-currency__btn.is-active {
    background: linear-gradient(145deg, var(--accent-color) 0%, #fff6a8 100%);
    color: #1a1a1a;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

.donate-form__method[hidden] {
    display: none !important;
}

.donate-or {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.donate-or::before,
.donate-or::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
}

.donate-aside--below {
    text-align: center;
    padding-top: 0.35rem;
}

.donate-aside--below .donate-aside__title {
    margin-bottom: 1.35rem;
    font-size: clamp(1.05rem, 2.2vw, 1.2rem);
    letter-spacing: -0.01em;
}

.donate-aside--below .donate-impact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.95rem;
    text-align: left;
}

.donate-aside--below .donate-impact__item {
    height: 100%;
}

.donate-aside--below .donate-aside__contact {
    margin-top: 1.5rem;
    max-width: 28rem;
    margin-inline: auto;
}

.donate-form__amounts,
.donate-form__methods {
    margin: 0 0 1.25rem;
    padding: 0;
    border: 0;
}

.donate-form__amounts legend,
.donate-form__methods legend {
    margin-bottom: 0.7rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.92rem;
    font-weight: 800;
    color: #fff;
}

.donate-form__amounts legend span,
.donate-form__field label span {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
}

.donate-form__presets {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
}

.donate-form__preset {
    cursor: pointer;
}

.donate-form__preset input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.donate-form__preset span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    padding: 0.45rem 0.5rem;
    border-radius: 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.88rem;
    font-weight: 700;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.donate-form__preset input:checked + span,
.donate-form__preset:hover span {
    border-color: rgba(205, 178, 42, 0.65);
    background: rgba(205, 178, 42, 0.16);
    color: var(--accent-bright);
}

.donate-form__custom {
    margin-top: 0.75rem;
}

.donate-form__custom label,
.donate-form__field label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.82);
}

.donate-form__custom input,
.donate-form__field input,
.donate-form__field textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0.65rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.7rem 0.85rem;
    font: inherit;
    color: #fff;
}

.donate-form__custom input::placeholder,
.donate-form__field input::placeholder,
.donate-form__field textarea::placeholder {
    color: rgba(255, 255, 255, 0.38);
}

.donate-form__custom input:focus,
.donate-form__field input:focus,
.donate-form__field textarea:focus {
    outline: 2px solid rgba(205, 178, 42, 0.45);
    outline-offset: 1px;
    border-color: rgba(205, 178, 42, 0.55);
}

.donate-form__fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem 0.75rem;
    margin-bottom: 1.25rem;
}

.donate-form__field--full {
    grid-column: 1 / -1;
}

.donate-form__field.is-invalid input,
.donate-form__field.is-invalid textarea {
    border-color: #e07070;
    box-shadow: 0 0 0 1px rgba(224, 112, 112, 0.25);
}

.donate-form__field.is-valid input,
.donate-form__field.is-valid textarea {
    border-color: #6dbf8a;
}

.donate-form__field-error {
    display: none;
    margin: 0.35rem 0 0;
    font-size: 0.76rem;
    font-weight: 600;
    line-height: 1.35;
    color: #ff9b9b;
}

.donate-form__field.is-invalid .donate-form__field-error {
    display: block;
}

.donate-form__method {
    display: block;
    cursor: pointer;
    margin-bottom: 0.55rem;
}

.donate-form__method input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.donate-form__method span {
    display: block;
    padding: 0.8rem 0.95rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    transition: border-color 0.2s ease, background 0.2s ease;
}

.donate-form__method strong {
    display: block;
    margin-bottom: 0.15rem;
    font-size: 0.92rem;
    color: #fff;
}

.donate-form__method small {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.78rem;
}

.donate-form__method input:checked + span {
    border-color: rgba(205, 178, 42, 0.7);
    background: rgba(205, 178, 42, 0.12);
}

.donate-form__summary {
    margin: 0 0 1rem;
    text-align: center;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
}

.donate-form__summary strong {
    color: var(--accent-bright);
}

.donate-form__note {
    margin: -0.35rem 0 1rem;
    text-align: center;
    font-size: 0.82rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.55);
}

.donate-form__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    width: 100%;
    min-height: 3rem;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(145deg, var(--accent-color) 0%, #fff6a8 100%);
    color: #1a1a1a !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-decoration: none !important;
    cursor: pointer;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.donate-form__submit:hover:not(:disabled) {
    transform: translateY(-1px);
    filter: brightness(1.03);
}

.donate-form__submit:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.donate-form__submit--ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff !important;
}

.donate-form__msg {
    margin: 0.85rem 0 0;
    font-size: 0.88rem;
    line-height: 1.45;
}

.donate-form__msg.is-error {
    color: #ff8a8a;
}

.donate-form__msg.is-info {
    color: #b8e0a0;
}

.donate-stk {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 18rem;
    padding: clamp(1.5rem, 4vw, 2.5rem) 1rem;
}

.donate-stk[hidden],
.donate-form[hidden],
.donate-online__head[hidden] {
    display: none !important;
}

.donate-online.is-waiting {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.donate-stk__visual {
    position: relative;
    width: 5.5rem;
    height: 5.5rem;
    margin-bottom: 1.35rem;
}

.donate-stk__ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(205, 178, 42, 0.35);
    animation: donateStkPulse 2.4s ease-out infinite;
}

.donate-stk__ring--inner {
    inset: 0.65rem;
    border-color: rgba(205, 178, 42, 0.2);
    animation-delay: 0.6s;
}

.donate-stk__icon {
    position: absolute;
    inset: 50%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    margin: -1.625rem 0 0 -1.625rem;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(205, 178, 42, 0.28), rgba(255, 246, 168, 0.12));
    color: var(--accent-bright);
    font-size: 1.2rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

@keyframes donateStkPulse {
    0% {
        transform: scale(0.92);
        opacity: 0.85;
    }
    70% {
        transform: scale(1.12);
        opacity: 0;
    }
    100% {
        transform: scale(1.12);
        opacity: 0;
    }
}

.donate-stk__title {
    margin: 0 0 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 1.45rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
}

.donate-stk__copy {
    margin: 0 0 1.25rem;
    max-width: 22rem;
    font-size: 0.92rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.62);
}

.donate-stk__status {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin: 0;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.88);
}

.donate-stk__status.is-done .donate-stk__dots {
    display: none;
}

.donate-stk__dots {
    display: inline-flex;
    gap: 0.2rem;
    align-items: center;
}

.donate-stk__dots span {
    width: 0.28rem;
    height: 0.28rem;
    border-radius: 50%;
    background: var(--accent-bright);
    animation: donateStkDot 1.2s ease-in-out infinite;
}

.donate-stk__dots span:nth-child(2) { animation-delay: 0.15s; }
.donate-stk__dots span:nth-child(3) { animation-delay: 0.3s; }

@keyframes donateStkDot {
    0%, 80%, 100% { opacity: 0.25; transform: translateY(0); }
    40% { opacity: 1; transform: translateY(-2px); }
}

.donate-stk__cancel {
    margin-top: 1.35rem;
    padding: 0.45rem 0.75rem;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.2s ease;
}

.donate-stk__cancel:hover {
    color: var(--accent-bright);
}

.donate-stk__retry {
    margin-top: 1rem;
    padding: 0.65rem 1.35rem;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(145deg, var(--accent-color) 0%, #fff6a8 100%);
    color: #1a1a1a;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.donate-stk__retry:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
}

.donate-stk__retry[hidden],
.donate-stk__cancel[hidden] {
    display: none !important;
}

.donate-stk.is-failed .donate-stk__visual {
    opacity: 0.55;
}

.donate-stk.is-success .donate-stk__status {
    border-color: rgba(109, 191, 138, 0.35);
    color: #b8e0a0;
}

.donate-stk.is-failed .donate-stk__status {
    border-color: rgba(224, 112, 112, 0.35);
    color: #ff9b9b;
}

.donate-success {
    background:
        radial-gradient(ellipse 70% 45% at 50% 0%, rgba(205, 178, 42, 0.16), transparent 55%),
        linear-gradient(180deg, #faf8f2 0%, #f3f0e8 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.donate-success__inner {
    max-width: 32rem;
}

.donate-success__card {
    text-align: center;
    background: #fffef9;
    border: 1px solid rgba(21, 21, 21, 0.08);
    border-radius: 1.15rem;
    padding: clamp(1.75rem, 4vw, 2.5rem);
    box-shadow: 0 18px 40px rgba(21, 21, 21, 0.06);
}

.donate-success__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    margin-bottom: 1rem;
    border-radius: 50%;
    background: rgba(205, 178, 42, 0.18);
    color: #6e5c0c;
    font-size: 1.35rem;
}

.donate-success__card h1 {
    margin: 0 0 0.75rem;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    color: var(--primary-color);
}

.donate-success__lead {
    margin: 0 0 1.5rem;
    font-size: 1rem;
    line-height: 1.65;
    color: #5a5a5a;
}

.donate-success__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
}

.donate-success__actions .donate-form__submit {
    width: auto;
    min-width: 10rem;
    padding-inline: 1.5rem;
}

.donate-success .donate-form__submit--ghost {
    border-color: rgba(21, 21, 21, 0.18);
    color: var(--primary-color) !important;
}

.donate-card {
    border-radius: 1.35rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 24px 50px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.donate-card__stripe {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.85rem 1.25rem;
    background: linear-gradient(115deg, #1b9e4b 0%, #0d7a38 100%);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
}

.donate-card__stripe-mpesa {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    letter-spacing: 0.02em;
}

.donate-card__stripe-tag {
    padding: 0.22rem 0.65rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.donate-card__body {
    padding: clamp(1.25rem, 3vw, 1.75rem);
}

.donate-card__numbers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.donate-num {
    padding: 1rem 1.05rem;
    border-radius: 1rem;
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.donate-num__label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.52);
}

.donate-num__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.donate-num__value {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.35rem, 3.5vw, 1.75rem);
    font-weight: 800;
    letter-spacing: 0.03em;
    color: var(--accent-bright);
    line-height: 1.1;
}

.donate-num__value--account {
    font-size: clamp(1.05rem, 2.8vw, 1.35rem);
    letter-spacing: 0.06em;
    color: #fff;
}

.donate-num__copy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.88);
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.donate-num__copy:hover {
    background: rgba(205, 178, 42, 0.18);
    border-color: rgba(205, 178, 42, 0.45);
    color: var(--accent-bright);
    transform: translateY(-1px);
}

.donate-num__copy.is-copied {
    background: rgba(27, 158, 75, 0.22);
    border-color: rgba(27, 158, 75, 0.5);
    color: #7dffb0;
}

.donate-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1.35rem;
    padding: 0.8rem 1rem;
    border-radius: 0.85rem;
    background: linear-gradient(115deg, rgba(205, 178, 42, 0.14), rgba(255, 246, 168, 0.08));
    border: 1px solid rgba(205, 178, 42, 0.28);
}

.donate-card__meta-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 246, 168, 0.75);
}

.donate-card__meta strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    color: #fff;
}

.donate-steps {
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 0;
    display: grid;
    gap: 0.65rem;
}

.donate-steps li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.85rem;
    align-items: start;
    padding: 0.85rem 0.95rem;
    border-radius: 0.9rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.donate-steps__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.65rem;
    background: rgba(205, 178, 42, 0.14);
    color: var(--accent-bright);
    font-size: 0.85rem;
}

.donate-steps strong {
    display: block;
    margin-bottom: 0.15rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    color: #fff;
}

.donate-steps p {
    margin: 0;
    font-size: 0.84rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.62);
}

.donate-steps em {
    font-style: normal;
    font-weight: 700;
    color: var(--accent-bright);
}

.donate-card__toast {
    margin: 0 0 1rem;
    padding: 0.65rem 0.85rem;
    border-radius: 0.65rem;
    background: rgba(27, 158, 75, 0.16);
    border: 1px solid rgba(27, 158, 75, 0.35);
    color: #8dffb8;
    font-size: 0.84rem;
    font-weight: 600;
    text-align: center;
}

.donate-card__pending {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
    padding: 1rem 1.1rem;
    border-radius: 0.9rem;
    background: rgba(205, 178, 42, 0.1);
    border: 1px solid rgba(205, 178, 42, 0.28);
}

.donate-card__pending i {
    margin-top: 0.15rem;
    font-size: 1.1rem;
    color: var(--accent-bright);
}

.donate-card__pending strong {
    display: block;
    margin-bottom: 0.25rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    color: #fff;
}

.donate-card__pending p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.72);
}

.donate-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.donate-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 2.85rem;
    padding: 0.65rem 1.15rem;
    border-radius: 999px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.84rem;
    font-weight: 800;
    text-decoration: none !important;
    transition: transform 0.2s ease, filter 0.2s ease, border-color 0.2s ease;
}

.donate-card__btn--wa {
    flex: 1 1 auto;
    background: linear-gradient(145deg, #25d366, #128c7e);
    color: #fff !important;
    border: 0;
}

.donate-card__btn--ghost {
    background: transparent;
    color: rgba(255, 255, 255, 0.88) !important;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.donate-card__btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
}

.donate-aside__title {
    margin: 0 0 1.15rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
}

.donate-impact {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.85rem;
}

.donate-impact__item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.85rem;
    align-items: start;
    padding: 1rem 1.05rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.donate-impact__item:hover {
    border-color: rgba(205, 178, 42, 0.35);
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-2px);
}

.donate-impact__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: linear-gradient(145deg, rgba(205, 178, 42, 0.22), rgba(255, 246, 168, 0.1));
    color: var(--accent-bright);
    font-size: 0.95rem;
}

.donate-impact__item h3 {
    margin: 0 0 0.25rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.92rem;
    font-weight: 800;
    color: #fff;
}

.donate-impact__item p {
    margin: 0;
    font-size: 0.84rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.62);
}

.donate-aside__contact {
    margin-top: 1.25rem;
    padding: 1rem 1.05rem;
    border-radius: 1rem;
    border: 1px dashed rgba(255, 255, 255, 0.14);
    text-align: center;
}

.donate-aside__contact p {
    margin: 0 0 0.35rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
}

.donate-aside__contact a {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-bright) !important;
    text-decoration: none !important;
}

.donate-aside__contact a:hover {
    text-decoration: underline !important;
}

@media (max-width: 900px) {
    .donate-shell__layout {
        grid-template-columns: 1fr;
    }

    .donate-aside--below .donate-impact {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .donate-form__presets {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .donate-form__fields {
        grid-template-columns: 1fr;
    }

    .donate-card__numbers {
        grid-template-columns: 1fr;
    }

    .donate-card__actions {
        flex-direction: column;
    }

    .donate-card__btn {
        width: 100%;
    }

    .donate-card__meta {
        flex-direction: column;
        align-items: flex-start;
    }
}
