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

:root {
    --dark-cherry: #3D0519;
    --deep-burgundy: #2A0311;
    --cherry-blossom: #E8D4D0;
    --vintage-gold: #C9A96A;
    --charcoal: #1A1A1A;
    --cream: #FAF5F0;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: var(--charcoal);
    background: var(--cream);
    scroll-behavior: smooth;
}

/* ELEGANT LEOPARD PRINT */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 15% 25%, var(--vintage-gold) 0px, transparent 50px),
        radial-gradient(circle at 85% 75%, var(--vintage-gold) 0px, transparent 55px),
        radial-gradient(circle at 45% 10%, var(--vintage-gold) 0px, transparent 45px),
        radial-gradient(circle at 10% 60%, var(--vintage-gold) 0px, transparent 52px),
        radial-gradient(circle at 90% 35%, var(--vintage-gold) 0px, transparent 48px),
        radial-gradient(circle at 35% 85%, var(--vintage-gold) 0px, transparent 54px);
    background-size: 400px 400px;
    opacity: 0.06;
    pointer-events: none;
    z-index: -1;
    filter: blur(0.5px);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(61, 5, 25, 0.95);
    padding: 1.2rem 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    text-align: center;
    border-bottom: 2px solid var(--vintage-gold);
}

nav a {
    color: var(--cherry-blossom);
    text-decoration: none;
    margin: 0 1.8rem;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav a:hover {
    color: var(--vintage-gold);
    transform: translateY(-2px);
}

/* Page Container */
.page {
    display: none;
    padding: 100px 20px 50px;
    min-height: 100vh;
    animation: fadeIn 0.8s ease;
    position: relative;
}

.active {
    display: block;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--deep-burgundy), var(--dark-cherry));
    color: var(--cherry-blossom);
    text-align: center;
    position: relative;
    padding: 150px 20px 100px;
}

.hero h1 {
    font-size: 5.5rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
    font-weight: 400;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-family: 'Parisienne', cursive;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s both;
    font-style: italic;
    font-family: 'Crimson Text', serif;
}

.hero .tagline {
    font-size: 1.1rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.4s both;
    font-family: 'Inter', sans-serif;
}

/* Section Headers */
h2 {
    font-size: 3.2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--dark-cherry);
    font-weight: 500;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--dark-cherry), var(--vintage-gold));
    margin: 1.5rem auto;
    border-radius: 2px;
}

/* Content Cards */
.content-card {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(61, 5, 25, 0.08);
    border: 1px solid rgba(61, 5, 25, 0.1);
    margin-bottom: 2rem;
}

.content-card h3 {
    color: var(--dark-cherry);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-family: 'Crimson Text', serif;
}

.content-card h4 {
    color: var(--deep-burgundy);
    margin: 2rem 0 1rem;
    font-size: 1.4rem;
    font-family: 'Playfair Display', serif;
}

.content-card p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Image Grids */
.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.fashion-image, .music-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(61, 5, 25, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.fashion-image:hover, .music-image:hover {
    transform: translateY(-5px);
}

.fashion-image img, .music-image img {
    width: 100%;
    height: 400px;
    object-fit: contain;
    object-position: center top;
    background: var(--cherry-blossom);
}

/* Audio Player */
.audio-player {
    background: var(--cherry-blossom);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    border-left: 4px solid var(--vintage-gold);
    text-align: center;
}

.audio-player h4 {
    color: var(--dark-cherry);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.song-title {
    color: var(--deep-burgundy);
    font-weight: 600;
    margin: 0.5rem 0;
    font-family: 'Crimson Text', serif;
}

audio {
    width: 90%;
    margin: 0.5rem 0;
    border-radius: 25px;
}

/* Ma Cheris Callout */
.cheris-callout {
    background: linear-gradient(135deg, var(--vintage-gold), #D4B98A);
    color: var(--deep-burgundy);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    display: inline-block;
    margin: 1.5rem 0;
    font-weight: 600;
    font-family: 'Crimson Text', serif;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(201, 169, 106, 0.3);
}

/* Podcast Embed */
.podcast-embed {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(61, 5, 25, 0.1);
    margin: 2rem 0;
    text-align: center;
}

.podcast-embed iframe {
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Skills Grid */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.skill-category {
    background: var(--cherry-blossom);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--vintage-gold);
}

.skill-category h4 {
    color: var(--dark-cherry);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.skill-list {
    list-style: none;
}

.skill-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(61, 5, 25, 0.1);
    font-size: 1rem;
}

.skill-list li:last-child {
    border-bottom: none;
}

/* Quote Box */
.quote-box {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--cherry-blossom);
    border-radius: 10px;
}

.quote-box p {
    font-style: italic;
    color: var(--deep-burgundy);
    font-size: 1.1rem;
    font-family: 'Crimson Text', serif;
    margin: 0;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.social-links a {
    color: var(--dark-cherry);
    font-size: 2.2rem;
    transition: all 0.3s ease;
    padding: 0.5rem;
}

.social-links a:hover {
    color: var(--vintage-gold);
    transform: translateY(-5px);
}

/* Contact Info */
.contact-info {
    text-align: center;
    margin-top: 2rem;
    padding: 2rem;
    background: var(--cherry-blossom);
    border-radius: 10px;
}

.contact-info h4 {
    color: var(--deep-burgundy);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.contact-info p {
    font-size: 1.2rem;
    color: var(--dark-cherry);
    margin-bottom: 0.5rem;
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Manager Bio Section */
.manager-bio {
    background: linear-gradient(135deg, var(--cherry-blossom), #f5e9e6);
    padding: 2.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 5px solid var(--vintage-gold);
    text-align: center;
}

.manager-bio h3 {
    color: var(--dark-cherry);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.manager-bio p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--deep-burgundy);
    max-width: 800px;
    margin: 0 auto;
}

/* Audio Gallery */
.audio-gallery {
    margin: 3rem 0;
}

.audio-track {
    background: var(--cherry-blossom);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-left: 4px solid var(--vintage-gold);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.audio-track:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(61, 5, 25, 0.1);
}

.track-info {
    margin-bottom: 1.5rem;
    width: 100%;
}

.track-title {
    color: var(--dark-cherry);
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-family: 'Crimson Text', serif;
}

.track-description {
    color: var(--deep-burgundy);
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
}

.audio-gallery audio {
    width: 100%;
    max-width: 600px;
    height: 40px;
    border-radius: 20px;
}

/* Performance Summary Box */
.performance-summary {
    text-align: center;
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(201, 169, 106, 0.08);
    border-radius: 10px;
    border: 1px solid rgba(201, 169, 106, 0.2);
}

.performance-summary h4 {
    color: var(--dark-cherry);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.performance-summary p {
    color: var(--deep-burgundy);
    line-height: 1.8;
}

/* Book Showcase Section */
.book-showcase {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2.5rem;
    margin: 2.5rem 0;
    padding: 2rem;
    background: rgba(232, 212, 208, 0.2);
    border-radius: 12px;
    align-items: start;
}

.book-cover {
    text-align: center;
}

.book-cover img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(61, 5, 25, 0.15);
    border: 1px solid rgba(61, 5, 25, 0.1);
}

.buy-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--vintage-gold), #d4b98a);
    color: var(--deep-burgundy);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--vintage-gold);
}

.buy-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(201, 169, 106, 0.3);
    background: linear-gradient(135deg, #d4b98a, var(--vintage-gold));
}

.book-details h4 {
    color: var(--dark-cherry);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.book-description {
    color: var(--deep-burgundy);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.book-description strong {
    color: var(--dark-cherry);
    font-weight: 700;
}

.book-description em {
    font-style: italic;
    color: var(--vintage-gold);
}

.book-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin: 1.5rem 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.feature i {
    color: var(--vintage-gold);
    font-size: 1rem;
    width: 20px;
}

.feature span {
    color: var(--dark-cherry);
    font-weight: 500;
    font-size: 0.95rem;
}

.amazon-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark-cherry);
    text-decoration: none;
    font-weight: 600;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 6px;
    border: 1px solid rgba(61, 5, 25, 0.1);
    transition: all 0.3s ease;
}

.amazon-link:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.amazon-link i {
    color: #ff9900;
}

/* Video Gallery */
.video-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.video-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(61, 5, 25, 0.1);
    transition: transform 0.3s ease;
