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

:root {
    --navy:  #0d1f3c;
    --gold:  #b8972a;
    --red:   #cf142b;
    --rss:   #f26522;
    --light: #f5f7fa;
    --card:  #ffffff;
    --text:  #1a1a2e;
    --muted: #5a6070;
    --radius: 12px;
    --shadow: 0 4px 24px rgba(13,31,60,.12);
}

@media (prefers-reduced-motion: no-preference) {
    html { scroll-behavior: smooth; }
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: var(--light);
    color: var(--text);
    line-height: 1.7;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ── Hero ── */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, #1a3560 100%);
    color: #fff;
    padding: 3.5rem 1.5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        45deg,
        rgba(184,151,42,.06) 0px,
        rgba(184,151,42,.06) 1px,
        transparent 1px,
        transparent 40px
    );
    pointer-events: none;
}
.hero-inner {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
}
.hero-logo {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--gold);
    box-shadow: 0 8px 32px rgba(0,0,0,.4);
    margin-bottom: 1.4rem;
}
.hero h1 {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -.02em;
    margin-bottom: .5rem;
    line-height: 1.2;
}
.hero h1 span {
    color: var(--gold);
}
.hero-subtitle {
    font-size: 1.05rem;
    opacity: .85;
    max-width: 520px;
    margin: 0 auto 2rem;
}

/* ── Listen badges ── */
.listen-section {
    background: var(--card);
    padding: 2.5rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid #e4e8f0;
}
.listen-section h2 {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--muted);
    margin-bottom: 1.4rem;
}
.badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}
.badge-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    border-radius: 10px;
    transition: transform .18s ease, box-shadow .18s ease;
}
.badge-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(13,31,60,.18);
}
.badge-link img { display: block; }

/* ── Links section ── */
.links-section {
    background: var(--light);
    padding: 1.6rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid #e4e8f0;
}
.links-section h2 {
    font-size: .85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--muted);
    margin-bottom: 1rem;
}
.icon-links {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    align-items: center;
    justify-content: center;
}
.icon-link {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    text-decoration: none;
    color: var(--navy);
    font-size: .9rem;
    font-weight: 600;
    padding: .5rem .9rem;
    border-radius: 8px;
    border: 1.5px solid #d0d7e3;
    background: var(--card);
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.icon-link:hover {
    border-color: var(--navy);
    box-shadow: 0 4px 14px rgba(13,31,60,.12);
    transform: translateY(-2px);
}
.icon-link svg { flex-shrink: 0; }
.icon-rss { color: var(--rss); }

/* ── Main content ── */
main {
    flex: 1;
    max-width: 760px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem;
    width: 100%;
}

.card {
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 2rem 2.25rem;
    margin-bottom: 1.5rem;
}
.card h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .9rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}
.card h2::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 1.1em;
    background: var(--gold);
    border-radius: 2px;
    flex-shrink: 0;
}
.card p {
    color: var(--text);
    margin-bottom: .75rem;
}
.card p:last-child { margin-bottom: 0; }
.card a {
    color: var(--navy);
    font-weight: 600;
    text-underline-offset: 3px;
}
.card a:hover { color: var(--red); }

.disclaimer {
    border-left: 4px solid var(--red);
    background: #fff5f5;
    border-radius: 0 var(--radius) var(--radius) 0;
}
.disclaimer h2::before { background: var(--red); }

/* ── Footer ── */
footer {
    background: var(--navy);
    color: rgba(255,255,255,.6);
    text-align: center;
    font-size: .85rem;
    padding: 1.5rem 1rem;
}
footer a {
    color: var(--gold);
    text-decoration: none;
}
footer a:hover { text-decoration: underline; }

@media (max-width: 480px) {
    .card { padding: 1.5rem 1.25rem; }
}
