:root {
    --night: #130f22;
    --night-soft: #201934;
    --gold: #f7c75a;
    --gold-deep: #b97822;
    --sunset: #d36337;
    --rose: #b93b4b;
    --cream: #fff4cf;
    --muted: #d8c5a0;
    --panel: rgba(23, 17, 36, .86);
    --line: rgba(247, 199, 90, .22);
}

* {
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    margin: 0;
    color: var(--cream);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(211, 99, 55, .38), transparent 34rem),
        radial-gradient(circle at top right, rgba(247, 199, 90, .22), transparent 31rem),
        linear-gradient(180deg, #0d0a17 0%, var(--night) 43%, #080710 100%);
}

a {
    color: inherit;
}

.page-shell {
    min-height: 100vh;
    overflow-x: hidden;
}

.hero-banner {
    position: relative;
    height: clamp(132px, 18vw, 282px);
    overflow: hidden;
    background: #0a0710;
    box-shadow: 0 18px 56px rgba(0, 0, 0, .38);
}

.hero-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 4, 10, 0) 52%, rgba(13, 10, 23, .92) 100%);
    pointer-events: none;
}

.hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.profile-section {
    position: relative;
    padding: 0 0 42px;
    margin-top: -42px;
}

.profile-card {
    width: min(100%, 680px);
    padding: 0 18px 28px;
}

.brand-avatar {
    width: 138px;
    height: 138px;
    display: block;
    margin: 0 auto 18px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid rgba(247, 199, 90, .9);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .5), 0 0 0 9px rgba(19, 15, 34, .74);
}

.profile-copy {
    text-align: center;
    max-width: 540px;
    margin: 0 auto 24px;
}

.kicker {
    margin: 0 0 8px;
    color: var(--gold);
    font-size: .83rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.profile-copy h1 {
    margin: 0;
    color: #fff8df;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.4rem, 8vw, 4.8rem);
    font-weight: 800;
    line-height: .95;
    text-shadow: 0 5px 18px rgba(0, 0, 0, .45);
}

.profile-copy p:last-child {
    margin: 14px auto 0;
    color: var(--muted);
    font-size: clamp(1rem, 2vw, 1.12rem);
    line-height: 1.55;
}

.link-list {
    display: grid;
    gap: 14px;
}

.link-card {
    position: relative;
    display: grid;
    grid-template-columns: 54px 1fr 34px;
    align-items: center;
    min-height: 88px;
    padding: 16px;
    text-decoration: none;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .03)),
        var(--panel);
    box-shadow: 0 16px 42px rgba(0, 0, 0, .26);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.link-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 8px;
    background: linear-gradient(90deg, rgba(247, 199, 90, .16), transparent 58%);
    opacity: .7;
    pointer-events: none;
}

.link-card:hover,
.link-card:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(247, 199, 90, .72);
    box-shadow: 0 22px 52px rgba(0, 0, 0, .34);
    outline: none;
}

.link-icon,
.link-arrow {
    position: relative;
    z-index: 1;
}

.link-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: #180d12;
    background: linear-gradient(135deg, var(--gold), #fff1a8);
    font-size: 1.45rem;
}

.link-content {
    position: relative;
    z-index: 1;
    min-width: 0;
    padding-right: 10px;
}

.link-content strong,
.link-content small {
    display: block;
}

.link-content strong {
    color: #fff9e8;
    font-size: 1.12rem;
    line-height: 1.2;
}

.link-content small {
    margin-top: 4px;
    color: var(--muted);
    font-size: .94rem;
    line-height: 1.38;
}

.link-arrow {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    color: var(--gold);
}

.link-card.youtube .link-icon {
    background: linear-gradient(135deg, #ff4545, #ffc36a);
}

.link-card.instagram .link-icon {
    background: linear-gradient(135deg, #feda75, #d62976 55%, #4f5bd5);
    color: #fff;
}

.contact-box {
    margin-top: 22px;
    padding: 22px;
    border: 1px solid rgba(255, 244, 207, .12);
    border-radius: 8px;
    background: rgba(255, 244, 207, .06);
}

.contact-box h2 {
    margin: 0 0 14px;
    color: #fff8df;
    font-size: 1.15rem;
    font-weight: 800;
}

.contact-list {
    display: grid;
    gap: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    color: var(--muted);
    text-decoration: none;
    border-top: 1px solid rgba(255, 244, 207, .1);
}

.contact-item:first-child {
    border-top: 0;
}

.contact-item span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #fff3c3;
    font-weight: 700;
}

.contact-item i {
    color: var(--gold);
}

.contact-item strong {
    color: var(--cream);
    font-weight: 600;
    word-break: break-word;
    text-align: right;
}

.contact-item:hover strong,
.contact-item:focus-visible strong {
    color: var(--gold);
}

@media (max-width: 575.98px) {
    .hero-banner {
        height: 150px;
    }

    .profile-section {
        margin-top: -32px;
        padding-bottom: 28px;
    }

    .profile-card {
        padding-inline: 10px;
    }

    .brand-avatar {
        width: 112px;
        height: 112px;
        margin-bottom: 14px;
    }

    .link-card {
        grid-template-columns: 48px 1fr 28px;
        min-height: 82px;
        padding: 14px;
    }

    .link-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .contact-box {
        padding: 18px;
    }

    .contact-item {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    .contact-item strong {
        text-align: left;
    }
}
