:root {
    /* Colors - Soft Navy, Warm Gold, Cream */
    --navy-dark: #0f172a;
    --navy-main: #1e293b;
    --navy-light: #334155;
    
    --gold-main: #d97706;
    --gold-light: #f59e0b;
    --gold-hover: #b45309;
    
    --bg-cream: #fafaf9;
    --bg-white: #ffffff;
    
    --text-main: #334155;
    --text-light: #64748b;
    --text-white: #f8fafc;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions & Shadows */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-gold: 0 4px 14px 0 rgba(217, 119, 6, 0.39);
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--navy-dark);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
}

.bg-light {
    background-color: var(--bg-white);
}

.highlight {
    color: var(--gold-main);
}

.center {
    text-align: center;
}

/* --- Buttons --- */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--gold-main);
    color: var(--bg-white);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    background-color: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(217, 119, 6, 0.5);
}

.btn-secondary {
    background-color: transparent;
    color: var(--navy-main);
    border: 2px solid var(--navy-main);
}

.btn-secondary:hover {
    background-color: var(--navy-main);
    color: var(--bg-white);
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--navy-dark);
}

.logo span {
    color: var(--gold-main);
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--navy-light);
}

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

.nav-btn {
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
}

/* --- Hero Section --- */
.hero {
    padding-top: 8rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--bg-cream) 0%, #f0f0f0 100%);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.subtitle {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--navy-light);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image-backdrop {
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--navy-main);
    border-radius: 50%;
    z-index: 0;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: inset 0 0 50px rgba(0,0,0,0.5);
}

.hero-image {
    position: relative;
    z-index: 1;
    max-width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 8px solid var(--bg-white);
    transform: rotate(2deg);
    transition: var(--transition);
}

.hero-image:hover {
    transform: rotate(0deg) scale(1.02);
}

/* --- About Section --- */
.about-container {
    max-width: 800px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.bio-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--navy-light);
}

/* --- Services Section --- */
.section-header {
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.125rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-cream);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: white;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: var(--navy-main);
    color: var(--gold-main);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* --- Demos Section (Audio Player) --- */
.audio-player-container {
    background: var(--navy-dark);
    border-radius: 24px;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    box-shadow: var(--shadow-lg);
    color: var(--text-white);
}

.playlist {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.track {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.track:hover {
    background: rgba(255,255,255,0.1);
}

.track.active {
    background: rgba(217, 119, 6, 0.1);
    border-color: rgba(217, 119, 6, 0.3);
}

.track.active .play-icon {
    color: var(--gold-main);
}

.track-title {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.track-desc {
    display: block;
    font-size: 0.85rem;
    color: #94a3b8;
}

.play-icon {
    font-size: 1.5rem;
    color: #94a3b8;
    transition: var(--transition);
}

.player-controls-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--navy-main);
    padding: 2.5rem;
    border-radius: 16px;
}

.now-playing h3 {
    color: var(--bg-white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.now-playing p {
    color: var(--gold-light);
    margin-bottom: 2rem;
}

.progress-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    font-size: 0.85rem;
    color: #94a3b8;
}

.progress-bar {
    flex-grow: 1;
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    cursor: pointer;
    position: relative;
}

.progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--gold-main);
    border-radius: 3px;
    width: 0%;
}

.controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.control-btn {
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.control-btn:hover {
    color: var(--gold-main);
}

.main-play {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gold-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-gold);
}

.main-play:hover {
    background: var(--gold-hover);
    color: white;
    transform: scale(1.05);
}

/* --- Footer --- */
footer {
    background: var(--navy-dark);
    color: var(--text-white);
    padding: 5rem 0 2rem;
}

.footer-cta {
    text-align: center;
    margin-bottom: 4rem;
}

.footer-cta h2 {
    color: var(--bg-white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.footer-cta p {
    color: #94a3b8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.email-btn {
    font-size: 1.25rem;
    padding: 1rem 2.5rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    color: #94a3b8;
}

.social-links a {
    color: #94a3b8;
    font-size: 1.5rem;
}

.social-links a:hover {
    color: var(--gold-main);
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .hero-container, .audio-player-container {
        grid-template-columns: 1fr;
    }
    
    .hero {
        text-align: center;
        padding-top: 10rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image-wrapper {
        order: -1;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
}
