:root {
    --brand: #c8102e;
    --ink: #111;
    --muted: #6b7280;
    --paper: #fff;
    --bg: #f7f7f9;
    --line: #e6e9f0;
    --wrap: 64rem;
    --radius: 14px;
}

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

html {
    scroll-behavior: smooth;
    background:
        radial-gradient(circle at top center,
            rgba(200, 16, 46, 0.04) 0%,
            rgba(200, 16, 46, 0.025) 12%,
            rgba(200, 16, 46, 0.01) 25%,
            rgba(200, 16, 46, 0) 40%),
        linear-gradient(180deg,
            #f9fafc 0%,
            #f8f9fb 20%,
            #f6f7fb 45%,
            #f4f6fa 70%,
            #f9fafc 100%);
}

html,
body {
    height: 100%
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: transparent;
    color: var(--ink);
    line-height: 1.6;
    font-size: 16px;
}

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

.wrap {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 2rem 1rem
}

.section {
    margin: 3rem 0;
    padding-bottom: 20px;
}

h1,
h2,
h3 {
    font-weight: 700;
    letter-spacing: .2px
}

h2 {
    font-size: 1.45rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--brand);
    display: inline-block;
    padding-bottom: .25rem
}

h3 {
    font-size: 1.25rem;
    margin: .25rem 0 .75rem
}

p {
    margin: .85rem 0
}

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

a:hover {
    text-decoration: underline
}

.muted {
    color: var(--muted)
}

.max {
    max-width: 60ch
}

/* Hero */
.hero {
    position: relative;
    background: var(--paper);
    border-bottom: 1px solid var(--line)
}

.hero-bg {
    --overlay: linear-gradient(180deg,
            rgba(255, 255, 255, 0.35) 0%,
            rgba(255, 255, 255, 0.22) 25%,
            rgba(255, 255, 255, 0.12) 50%,
            rgba(240, 240, 240, 0.1) 70%,
            rgba(255, 255, 255, 0) 100%);
    background-image: var(--overlay), var(--hero-img);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
    height: 150px;
}

.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
    padding: 3rem 1rem;
    margin-top: -92px
}

.avatar {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
    border: 6px solid var(--paper);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .12)
}

.title {
    font-size: 2rem;
    margin-top: .9rem
}

.subtitle {
    color: var(--muted);
    margin-top: .25rem
}

.availability {
    margin-top: 0.3rem;
    font-size: 0.95rem;
    color: var(--muted);
    letter-spacing: 0.1px;
}

/* Social */
.social {
    display: flex;
    gap: .9rem;
    justify-content: center;
    margin-top: .9rem
}

.social a {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: #222;
    background: var(--paper);
    border: 1px solid var(--line);
    transition: transform .15s ease, box-shadow .15s ease, color .15s ease, border-color .15s ease
}

.social a:hover {
    transform: translateY(-2px);
    border-color: var(--brand);
    color: var(--brand);
    box-shadow: 0 6px 16px rgba(0, 0, 0, .08)
}

/* Tabs */
.tabs {
    display: inline-flex;
    gap: .5rem;
    margin: 1.1rem auto 0
}

.tab {
    display: inline-block;
    padding: .55rem .9rem;
    border-radius: 999px;
    background: var(--paper);
    border: 1px solid var(--line);
    color: #222;
    text-decoration: none;
    font-weight: 600;
    font-size: .95rem;
    transition: background .15s ease, border-color .15s ease, color .15s ease, transform .15s ease
}

.tab:hover {
    transform: translateY(-1px);
    border-color: var(--brand);
    color: var(--brand)
}

.tab.is-active {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff
}

/*About*/
.about-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.3fr);
    gap: 2rem;
    align-items: flex-start;
    margin-top: .75rem;
    padding-bottom: 30px;
}

.about-image {
    border-radius: var(--radius);
    box-shadow: 0 8px 20px rgba(0 0 0 0.08);
    background: var(--paper);
    overflow: hidden;
    padding: 0;
}

.about-photo {
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.about-image figcaption {
    padding: 0.75rem 0.5rem 1rem;
    font-size: 0.9rem;
    color: var(--muted);
    text-align: center;
}



/* Band block (stacked) */
.band-block {
    margin-top: 2.5rem
}

.band-block .panel {
    width: 100%;
}

.media-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem
}

.feature img {
    border-radius: var(--radius);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .12);
    transition: transform .18s ease, box-shadow .18s ease;
}

.feature img:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .14);
}

.feature figcaption {
    font-size: .9rem;
    color: var(--muted);
    margin-top: .4rem
}

.panel {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 1rem
}

/* Books: two column layout using flexbox */
.book {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.5rem 1.75rem;
    margin: 1.25rem 0;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .06);
    display: flex;
    gap: 1.75rem;
    align-items: center;
    transition: transform .18s ease, box-shadow .18s ease;
}

.book:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .10);
}

.book-header {
    margin: 0 0 .5rem;
}

.book-cover {
    flex: 0 0 220px;
    max-width: 220px;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .08);
}

.book-header h3 {
    margin: 0 0 .6rem;
    font-size: 1.2rem;
}

.book-body {
    flex: 1 1 auto;
}

.book-body p:last-child {
    margin-bottom: 0;
}



/* Band section */
.band-description {
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
}

.band-card {
    background: var(--paper);
    border-radius: var(--radius);
    box-shadow: 0 8px 20px rgba(0 0 0 0.08);
    overflow: hidden;
}

.band-card figcaption {
    padding: 0.75rem 0.5rem 1rem;
    font-size: 0.9rem;
    color: var(--muted);
    text-align: center;
}

.band-photo {
    width: 100%;
    height: 550px;
    overflow: hidden;
}

.band-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.link-row {
    display: flex;
    gap: .6rem;
    flex-wrap: wrap;
    margin-top: .6rem;
    padding-top: 1rem;
}

.btn {
    display: inline-block;
    padding: .6rem 1rem;
    border-radius: 10px;
    border: 1px solid var(--brand);
    background: var(--brand);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: transform .15s ease, box-shadow .15s ease;
}

.btn:hover {
    filter: brightness(.95);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--brand);
    transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
    transform: translateY(0);
}

.btn-ghost:hover {
    transform: translateY(-2px);
    filter: brightness(.95);
}

/* Lists */
.list {
    padding-left: 1.2rem
}

.list li {
    margin: .4rem 0
}

.article-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.article-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 10px 22px rgba(0, 0, 0, .06);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.article-card a {
    display: flex;
    flex-direction: column;
    padding: 1rem 1.25rem;
    text-decoration: none;
    color: inherit;
}

.article-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .12);
    border-color: var(--brand);
}

.article-source {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-bottom: 0.4rem;
    background: rgba(255, 210, 210, 0.075);
    padding: 0.15rem 0.5rem;
    border-radius: 6px;
    display: inline-block;
}

.article-title {
    font-size: 1rem;
    font-weight: 600;
}

.article-meta {
    margin-top: 0.35rem;
    font-size: 0.9rem;
    color: var(--muted);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.article-meta i {
    font-size: 0.8rem;
}



.podcast-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.podcast-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .04);
    width: 100%;
}

.podcast-card h3 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.podcast-embed iframe {
    width: 100%;
    max-width: 100%;
    border-radius: 14px;
}

.podcast-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .04);
    transition: transform .18s ease, box-shadow .18s ease;
}

.podcast-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .12);
}


/* Footer */
.site-footer {
    background: var(--paper);
    border-top: 1px solid var(--line);
    text-align: center;
    color: var(--muted)
}

/* Generic hover-lift effect */
.hover-lift {
    transition: transform .18s ease, box-shadow .18s ease;
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
}

/* Responsive */
@media (max-width: 900px) {
    .hero-bg {
        height: 240px;
    }

    .hero-inner {
        padding: 2.5rem 1rem;
        margin-top: -80px;
    }

    .about-layout {
        grid-template-columns: 1fr;
    }

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

    /* Books stack nicely on smaller screens */
    .book {
        flex-direction: column;
        align-items: flex-start;
    }

    .book-cover {
        flex: 0 0 auto;
        max-width: 190px;
    }

    /* Podcast grid is already a column with flex,
       this just tightens spacing a bit on tablets */
    .podcast-card {
        padding: 1.25rem;
    }
}

@media (max-width: 600px) {
    .hero-inner {
        margin-top: -82px;
    }

    .title {
        font-size: 1.65rem;
    }

    .wrap {
        padding: 1.5rem 1rem;
    }

    .social a {
        width: 36px;
        height: 36px;
    }
}