:root {
    --bg: #0a0a0a;
    --bg-elevated: #111111;
    --text: #f0ece6;
    --text-muted: #8a8580;
    --accent: #c4b5a0;
    --border: #222222;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--text);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text);
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 120px 24px 80px;
}

.hero-content {
    animation: fadeInUp 1s ease forwards;
}

.hero-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 300;
    line-height: 1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    font-weight: 300;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.hero-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.divider {
    opacity: 0.4;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--text-muted), transparent);
    animation: scrollPulse 2s ease infinite;
}

/* Sections */
section {
    padding: 100px 0;
    border-top: 1px solid var(--border);
}

h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 300;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.section-intro {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 48px;
    max-width: 500px;
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.about-text p:first-of-type {
    color: var(--text);
    font-size: 1.2rem;
    font-family: var(--font-display);
    font-style: italic;
}

.about-status {
    display: inline-block;
    margin-top: 16px;
    padding: 8px 16px;
    border: 1px solid var(--border);
    font-size: 0.8rem !important;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent) !important;
    font-family: var(--font-body) !important;
    font-style: normal !important;
}

/* Image Placeholders */
.image-placeholder {
    aspect-ratio: 3/4;
    background: var(--bg-elevated);
    border: 1px dashed var(--border);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-align: center;
    padding: 24px;
}

.image-placeholder span {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text);
}

.image-placeholder small {
    font-size: 0.75rem;
    opacity: 0.6;
}

/* Music */
.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.music-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    padding: 32px;
    transition: border-color 0.3s ease;
}

.music-card:hover {
    border-color: var(--accent);
}

.music-art {
    margin-bottom: 20px;
}

.art-placeholder {
    aspect-ratio: 1;
    background: var(--bg);
    border: 1px dashed var(--border);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-muted);
    font-family: var(--font-display);
    font-size: 1.2rem;
}

.video-placeholder {
    aspect-ratio: 16/9;
    background: var(--bg);
    border: 1px dashed var(--border);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--text-muted);
    text-align: center;
    padding: 24px;
}

.video-placeholder span {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text);
}

.music-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 8px;
}

.music-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.coming-soon {
    opacity: 0.7;
}

/* Photos */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.photo-item {
    overflow: hidden;
}

.photo-item .image-placeholder {
    height: 100%;
    min-height: 280px;
}

.photo-item.wide {
    grid-column: span 2;
}

/* Contact */
.contact-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 500px;
}

.contact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.3s ease;
}

.contact-item:hover {
    border-color: var(--accent);
}

.contact-label {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.contact-value {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--text);
}

/* Footer */
.footer {
    padding: 40px 24px;
    text-align: center;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.8rem;
}

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

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scaleY(1);
    }
    50% {
        opacity: 1;
        transform: scaleY(1.2);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        padding: 16px 24px;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .photo-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .photo-item.wide {
        grid-column: span 2;
    }
    
    .hero-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .divider {
        display: none;
    }
}

@media (max-width: 480px) {
    .photo-grid {
        grid-template-columns: 1fr;
    }
    
    .photo-item.wide {
        grid-column: span 1;
    }
    
    .music-grid {
        grid-template-columns: 1fr;
    }
}
