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

:root {
    --bg-dark: #000000;
    --bg-subtle: #0a0a0a;
    --text-primary: #ffffff;
    --text-muted: #888888;
    --accent-gold: #c9a962;
}

html {
    font-size: 16px;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    min-height: 100vh;
    line-height: 1.6;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(201, 169, 98, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
}

.tagline {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
}

.accent {
    color: var(--accent-gold);
}

.bio {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.bio strong {
    color: var(--text-primary);
}

/* Hero Art */
.hero-art {
    margin-bottom: 4rem;
    max-width: 900px;
    width: 100%;
    position: relative;
}

.masterpiece {
    width: 100%;
    height: auto;
    opacity: 0.85;
    border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 3rem 1.5rem;
    }

    .hero-art {
        margin-bottom: 3rem;
    }
}