/* URBAN — Resident profile */

.urban-resident-page {
    --urban-accent: #ef4536;
    --urban-accent-dark: #88000c;
}

.urban-resident-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.urban-resident-hero.well-7 {
    height: auto !important;
    min-height: 0;
}

.urban-resident-hero__overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.55);
}

.urban-resident-hero .container {
    position: relative;
    z-index: 1;
    padding-bottom: 0 !important;
}

.urban-resident-hero__subtitle {
    margin: 0.5rem auto 0;
    max-width: 36rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.urban-resident {
    padding: 2.5rem 0 4rem;
}

.urban-resident__back {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.2s ease;
}

.urban-resident__back:hover,
.urban-resident__back:focus-visible {
    color: var(--urban-accent);
    outline: none;
}

.urban-resident__back i {
    font-size: 1.1rem;
}

.urban-resident__layout {
    display: grid;
    grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
    gap: 3rem;
    align-items: start;
}

.urban-resident__media {
    position: sticky;
    top: 1.5rem;
}

.urban-resident__photo {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #1a1a1a;
}

.urban-resident__content {
    min-width: 0;
}

.urban-resident__heading {
    margin: 0 0 1.5rem;
}

.urban-resident__stage {
    display: block;
    margin: 0;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
}

.urban-resident__name {
    display: block;
    margin-top: 0.5rem;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.65);
}

.urban-resident__bio {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.78);
}

.urban-resident__bio p {
    margin: 0 0 1rem;
}

.urban-resident__bio p:last-child {
    margin-bottom: 0;
}

.urban-resident__bio h1,
.urban-resident__bio h2,
.urban-resident__bio h3 {
    margin: 1.5rem 0 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.urban-resident__bio ul,
.urban-resident__bio ol {
    margin: 0 0 1rem;
    padding-left: 1.25rem;
}

.urban-resident__bio a {
    color: var(--urban-accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.urban-resident__social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.urban-resident__social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.urban-resident__social-link i {
    font-size: 1.25rem;
}

.urban-resident__social-link:hover,
.urban-resident__social-link:focus-visible {
    border-color: rgba(239, 69, 54, 0.45);
    color: var(--urban-accent);
    outline: none;
}

.urban-resident__social-link--soundcloud:hover,
.urban-resident__social-link--soundcloud:focus-visible {
    color: #ff8800;
    border-color: rgba(255, 136, 0, 0.45);
}

.urban-resident__social-link--instagram:hover,
.urban-resident__social-link--instagram:focus-visible {
    color: #e1306c;
    border-color: rgba(225, 48, 108, 0.45);
}

body:not(.dark) .urban-resident__back {
    color: rgba(0, 0, 0, 0.55);
}

body:not(.dark) .urban-resident__stage {
    color: #111;
}

body:not(.dark) .urban-resident__name {
    color: rgba(0, 0, 0, 0.55);
}

body:not(.dark) .urban-resident__bio {
    color: rgba(0, 0, 0, 0.72);
}

body:not(.dark) .urban-resident__photo {
    border-color: rgba(0, 0, 0, 0.08);
}

body:not(.dark) .urban-resident__social {
    border-top-color: rgba(0, 0, 0, 0.08);
}

body:not(.dark) .urban-resident__social-link {
    color: #111;
    border-color: rgba(0, 0, 0, 0.12);
}

@media (max-width: 768px) {
    .urban-resident-hero.well-7 {
        padding-top: 1.75rem !important;
        padding-bottom: 1.75rem !important;
    }

    .urban-resident-hero .container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .urban-resident {
        padding: 1.5rem 0 3rem;
    }

    .urban-resident__layout {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .urban-resident__media {
        position: static;
        max-width: 420px;
        margin: 0 auto;
    }

    .urban-resident__heading {
        text-align: center;
        margin-bottom: 1.25rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .urban-resident__back,
    .urban-resident__social-link {
        transition: none;
    }
}
