:root {
    --color-bg: #0f0f10;
    --color-bg-alt: #17171a;
    --color-text: #f2f0ec;
    --color-text-muted: #b9b6b0;
    --color-accent: #c8a35a;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

body {
    background: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-sans);
    line-height: 1.6;
}

/* HERO */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 72px 24px 56px;
    background: linear-gradient(180deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
}

.hero-photo {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--color-accent);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    margin-bottom: 28px;
}

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

.hero-text h1 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.hero-subtitle {
    color: var(--color-accent);
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 8px;
    font-weight: 500;
}

.hero-bio {
    max-width: 620px;
    margin: 24px auto 0;
    color: var(--color-text-muted);
    font-size: 1.05rem;
}

/* GALLERY */
.gallery-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 24px 80px;
}

.gallery-section h2 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin-bottom: 32px;
    text-align: center;
    color: var(--color-text);
}

.gallery-empty {
    text-align: center;
    color: var(--color-text-muted);
    padding: 40px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.gallery-item {
    background: var(--color-bg-alt);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    transition: transform 0.25s ease;
}

.gallery-item:hover {
    transform: translateY(-4px);
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    background: #000;
}

.gallery-caption {
    padding: 12px 16px;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* CONTACT */
.contact-section {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px 64px;
    text-align: center;
}

.contact-section h2 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    margin-bottom: 24px;
}

.contact-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.contact-links a {
    padding: 10px 22px;
    border: 1px solid var(--color-accent);
    border-radius: 30px;
    color: var(--color-accent);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: background 0.2s ease, color 0.2s ease;
}

.contact-links a:hover {
    background: var(--color-accent);
    color: #14140f;
}

/* FOOTER */
.site-footer {
    text-align: center;
    padding: 24px;
    color: var(--color-text-muted);
    font-size: 0.85rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 480px) {
    .hero-photo { width: 160px; height: 160px; }
}
