* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;

    background:
        radial-gradient(
            circle at 50% 40%,
            #faf8f4 0%,
            #f5f2ec 55%,
            #eeebe5 100%
        );

    color: #080808;

    font-family: "Inter", Arial, sans-serif;
}


/* =========================
   MAIN LAYOUT
   ========================= */

.page-shell {
    min-height: 100vh;
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 40px 6vw;
}

.hero {
    width: min(1280px, 100%);

    display: grid;
    grid-template-columns: minmax(0, 1fr) clamp(280px, calc((100svh - 280px) * 0.8), 540px);

    align-items: center;

    gap: clamp(40px, 4vw, 80px);
}


/* =========================
   BRAND
   ========================= */

.brand-wrap {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* SVG has an intrinsic width of 1880px; constrain it in every layout. */
.brand-logo {
    display: block;
    width: min(100%, 640px);
    max-width: 100%;
    height: auto;
}

.hero > * {
    min-width: 0;
}

/* =========================
   CARD
   ========================= */

.profile-card {
    width: 100%;

    padding: 22px;

    background: rgba(255, 255, 255, 0.94);

    border-radius: 6px;

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.08),
        0 3px 10px rgba(0, 0, 0, 0.05);
}


/* =========================
   IMAGE
   ========================= */

.photo-frame {
    width: 100%;

    overflow: hidden;
}

.profile-photo {
    display: block;

    width: 100%;

    height: auto;

    aspect-ratio: auto;

    object-fit: contain;
    object-position: center;

    user-select: none;
}


/* =========================
   SOCIAL LINKS
   ========================= */

.social-list {
    margin-top: 12px;
}

.social-link {
    min-height: 72px;

    display: grid;

    grid-template-columns:
        56px
        1fr
        40px;

    align-items: center;

    gap: 18px;

    padding: 10px 10px;

    color: #090909;

    text-decoration: none;

    border-bottom: 1px solid rgba(0, 0, 0, 0.12);

    transition:
        opacity 150ms ease,
        transform 150ms ease;
}

.social-link:last-child {
    border-bottom: 0;
}

.social-link:hover {
    opacity: 0.62;
}

.social-link:hover .arrow {
    transform: translateX(4px);
}

.social-name {
    font-size: 24px;
    font-weight: 400;

    letter-spacing: -0.025em;
}


/* =========================
   ICONS
   ========================= */

.social-icon {
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #050505;
}

.social-icon svg {
    display: block;

    width: 100%;
    height: 100%;
}

.youtube-icon svg {
    width: 48px;
    height: auto;

    fill: currentColor;
}

.instagram-icon svg {
    width: 44px;
    height: 44px;
}


/* =========================
   ARROW
   ========================= */

.arrow {
    justify-self: end;

    font-size: 38px;
    font-family: Arial, sans-serif;
    font-weight: 300;

    line-height: 1;

    transition: transform 150ms ease;
}


/* =========================
   MOBILE
   ========================= */

@media (max-width: 800px) {

    .page-shell {
        min-height: 100vh;

        align-items: flex-start;

        padding: 46px 20px 50px;
    }

    .hero {
        width: min(580px, 100%);

        display: flex;
        flex-direction: column;

        align-items: center;

        gap: 26px;
    }

    .brand-wrap {
        width: 100%;
    }

    .brand-logo {
        width: min(92vw, 520px);
        height: auto;
    }

    .profile-card {
        width: min(100%, 390px);

        padding: 14px;

        border-radius: 5px;

        box-shadow:
            0 16px 38px rgba(0, 0, 0, 0.09),
            0 3px 8px rgba(0, 0, 0, 0.04);
    }

    .photo-frame {
        width: 100%;
    }

    .profile-photo {
        width: 100%;

        height: auto;

    aspect-ratio: auto;

        object-fit: contain;
        object-position: center;

        display: block;
    }

    .social-list {
        margin-top: 7px;
    }

    .social-link {
        min-height: 58px;

        grid-template-columns:
            42px
            1fr
            30px;

        gap: 12px;

        padding: 7px 5px;
    }

    .social-icon {
        width: 36px;
        height: 36px;
    }

    .youtube-icon svg {
        width: 38px;
    }

    .instagram-icon svg {
        width: 35px;
        height: 35px;
    }

    .social-name {
        font-size: 19px;
    }

    .arrow {
        font-size: 27px;
    }
}