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

:root {
    --gold: #C9A227;
    --dark: #1A1A1A;
    --gray: #666666;
    --light-gray: #F5F5F5;
    --white: #FFFFFF;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--dark);
    min-height: 100vh;
}

.container {
    max-width: 480px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HERO IMAGE */
.hero-image {
    width: 100%;
    height: 45vh;
    min-height: 280px;
    max-height: 400px;
    position: relative;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, var(--white) 0%, transparent 100%);
}

/* PROFILE */
.profile {
    text-align: center;
    margin-top: -40px;
    position: relative;
    z-index: 2;
    padding-bottom: 30px;
    animation: fadeInUp 0.5s ease forwards;
}

.profile-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    margin-bottom: 6px;
}

.profile-handle {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 4px;
}

.profile-bio {
    font-size: 0.8rem;
    color: var(--gray);
    letter-spacing: 0.05em;
}

/* LINKS SECTION */
.links-section {
    padding: 20px 0 40px;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 24px;
    background: var(--white);
    border: 1.5px solid var(--dark);
    border-radius: 10px;
    color: var(--dark);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.link-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dark);
    transform: translateY(100%);
    transition: transform 0.25s ease;
    z-index: 0;
}

.link-btn:hover::before {
    transform: translateY(0);
}

.link-btn:hover {
    color: var(--white);
    border-color: var(--dark);
}

.link-btn span,
.link-btn svg {
    position: relative;
    z-index: 1;
}

.link-btn svg {
    width: 20px;
    height: 20px;
    stroke-width: 1.5;
    flex-shrink: 0;
}

/* HIGHLIGHT BUTTON */
.link-btn.highlight {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

.link-btn.highlight::before {
    background: var(--gold);
}

.link-btn.highlight:hover {
    color: var(--dark);
    border-color: var(--gold);
}

/* FOOTER */
.footer {
    padding: 30px 0 40px;
    text-align: center;
    border-top: 1px solid var(--light-gray);
}

.footer-text {
    font-size: 0.7rem;
    color: var(--gray);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
}

.social-icons a {
    color: var(--gray);
    transition: color 0.2s ease;
}

.social-icons a:hover {
    color: var(--dark);
}

.social-icons svg {
    width: 22px;
    height: 22px;
}

/* BOTTOM ARTWORK IMAGE */
.bottom-artwork {
    margin-top: 30px;
    margin-left: -20px;
    margin-right: -20px;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .bottom-artwork {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
    }
}

.bottom-artwork img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.bottom-artwork:hover img {
    opacity: 1;
}

.bottom-artwork::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 20%;
    background: linear-gradient(to bottom, var(--white) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.bottom-artwork::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 25%;
    background: linear-gradient(to top, var(--white) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

/* ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.link-btn:nth-child(1) { animation: fadeInUp 0.5s ease 0.1s forwards; opacity: 0; }
.link-btn:nth-child(2) { animation: fadeInUp 0.5s ease 0.2s forwards; opacity: 0; }
.link-btn:nth-child(3) { animation: fadeInUp 0.5s ease 0.3s forwards; opacity: 0; }
