/* MUSICAL THEATER PORTFOLIO - WARM ELEGANT THEME */

:root {
    /* New Color Palette */
    --lavender-blush: #E0D2D9;
    --rosewood: #AC6477;
    --coffee-bean: #634837;
    --pale-slate: #D0C3CC;
    --taupe: #A58A84;
    
    /* Semantic Colors */
    --color-primary: var(--rosewood);
    --color-primary-light: var(--pale-slate);
    --color-primary-lighter: var(--lavender-blush);
    --color-accent: var(--rosewood);
    --color-accent-dark: #8B4D5C;
    --color-deep: var(--coffee-bean);
    --color-white: #ffffff;
    --color-cream: #FAF7F8;
    --color-light: #F5F0F2;
    --color-gray: var(--taupe);
    --color-dark: var(--coffee-bean);
    --color-charcoal: #3D2E28;
    
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Quicksand', -apple-system, BlinkMacSystemFont, sans-serif;
    --space-xs: 0.5rem; --space-sm: 1rem; --space-md: 1.5rem; --space-lg: 2.5rem; --space-xl: 4rem; --space-2xl: 6rem; --space-3xl: 10rem;
    --transition-fast: 0.2s ease; --transition-smooth: 0.4s ease;
    --radius-sm: 8px; --radius-md: 16px; --radius-lg: 24px; --radius-xl: 32px; --radius-full: 9999px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body { font-family: var(--font-body); font-size: 1rem; line-height: 1.7; color: var(--color-dark); background: var(--color-cream); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition-fast); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.2; color: var(--color-charcoal); }
h1 { font-size: clamp(2.5rem, 7vw, 5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 3rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
p { margin-bottom: var(--space-md); }

.section-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: var(--space-xs); background: linear-gradient(135deg, var(--rosewood), var(--taupe)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-title { font-style: italic; margin-bottom: var(--space-md); }
.section-subtitle { font-size: 0.9rem; color: var(--color-gray); margin-bottom: 0; }
.section-header { margin-bottom: var(--space-xl); }
.section-header.centered { text-align: center; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 var(--space-md); }
section { padding: var(--space-2xl) 0; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: var(--space-xs); padding: var(--space-sm) var(--space-lg); font-family: var(--font-body); font-size: 0.85rem; font-weight: 600; border-radius: var(--radius-full); border: 2px solid transparent; cursor: pointer; transition: all var(--transition-smooth); }
.btn-primary { background: linear-gradient(135deg, var(--rosewood), var(--taupe)); color: var(--color-white); box-shadow: 0 4px 20px rgba(172, 100, 119, 0.3); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(172, 100, 119, 0.4); }
.btn-outline { background: transparent; color: var(--rosewood); border-color: var(--rosewood); }
.btn-outline:hover { background: var(--rosewood); color: var(--color-white); transform: translateY(-3px); }
.btn-full { width: 100%; justify-content: center; }

/* HEADER */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(250, 247, 248, 0.9); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(172, 100, 119, 0.15); transition: all var(--transition-smooth); }
.header.scrolled { box-shadow: 0 4px 30px rgba(99, 72, 55, 0.1); }
.nav { display: flex; justify-content: space-between; align-items: center; padding: var(--space-sm) var(--space-md); max-width: 1400px; margin: 0 auto; }
.nav-logo { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; font-style: italic; color: var(--coffee-bean); }
.nav-toggle { display: none; }
.nav-toggle-label { display: flex; flex-direction: column; justify-content: center; align-items: center; width: 40px; height: 40px; cursor: pointer; z-index: 1001; }
.nav-toggle-label span, .nav-toggle-label span::before, .nav-toggle-label span::after { display: block; width: 24px; height: 2px; background: var(--coffee-bean); border-radius: 2px; transition: all var(--transition-fast); position: relative; }
.nav-toggle-label span::before, .nav-toggle-label span::after { content: ''; position: absolute; }
.nav-toggle-label span::before { transform: translateY(-8px); }
.nav-toggle-label span::after { transform: translateY(8px); }
.nav-toggle:checked + .nav-toggle-label span { background: transparent; }
.nav-toggle:checked + .nav-toggle-label span::before { transform: rotate(45deg); }
.nav-toggle:checked + .nav-toggle-label span::after { transform: rotate(-45deg); }
.nav-links { position: fixed; top: 0; right: -100%; width: 100%; height: 100vh; background: linear-gradient(180deg, var(--color-cream) 0%, var(--lavender-blush) 100%); display: flex; flex-direction: column; justify-content: center; align-items: center; gap: var(--space-lg); transition: right var(--transition-smooth); }
.nav-toggle:checked ~ .nav-links { right: 0; }
.nav-links a { font-family: var(--font-display); font-size: 1.75rem; font-style: italic; color: var(--coffee-bean); position: relative; }
.nav-links a::after { content: '•'; position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%); font-size: 0.75rem; color: var(--rosewood); opacity: 0; transition: opacity var(--transition-fast); }
.nav-links a:hover::after { opacity: 1; }

/* HERO */
.hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; position: relative; padding: 100px var(--space-md) var(--space-xl); background: linear-gradient(180deg, var(--color-cream) 0%, var(--lavender-blush) 50%, var(--color-cream) 100%); overflow: hidden; }
.hero-bg-shape { position: absolute; border-radius: 50%; background: linear-gradient(135deg, var(--rosewood), var(--taupe)); opacity: 0.08; animation: float 8s ease-in-out infinite; }
.hero-bg-shape:nth-child(1) { width: 300px; height: 300px; top: 10%; left: -100px; }
.hero-bg-shape-2 { width: 200px; height: 200px; top: 60%; right: -50px; animation-delay: -3s; }
.hero-bg-shape-3 { width: 150px; height: 150px; bottom: 20%; left: 10%; animation-delay: -5s; }
@keyframes float { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-20px) rotate(5deg); } }
.hero-image-container { position: relative; margin-bottom: var(--space-lg); z-index: 1; }
.hero-image-frame { width: 280px; height: 350px; border-radius: var(--radius-xl); overflow: hidden; box-shadow: 0 20px 60px rgba(99, 72, 55, 0.2); border: 4px solid var(--color-white); }
.hero-image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.hero-image-frame:hover .hero-image { transform: scale(1.05); }
.hero-image-decoration { position: absolute; top: -15px; right: -15px; width: 100px; height: 100px; background: linear-gradient(135deg, var(--rosewood), var(--taupe)); border-radius: 50%; opacity: 0.4; z-index: -1; animation: pulse 3s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { transform: scale(1); opacity: 0.4; } 50% { transform: scale(1.1); opacity: 0.2; } }
.hero-content { text-align: center; z-index: 1; }
.hero-badge { display: inline-block; padding: var(--space-xs) var(--space-md); background: var(--color-white); border-radius: var(--radius-full); font-size: 0.8rem; font-weight: 600; color: var(--rosewood); margin-bottom: var(--space-md); box-shadow: 0 4px 20px rgba(99, 72, 55, 0.1); animation: fadeInUp 0.8s ease-out; }
.hero-union { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--taupe); margin-bottom: var(--space-sm); animation: fadeInUp 0.8s ease-out 0.1s both; }
.hero-name { font-style: italic; background: linear-gradient(135deg, var(--coffee-bean), var(--rosewood), var(--taupe)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: var(--space-xs); animation: fadeInUp 0.8s ease-out 0.2s both; }
.hero-tagline { font-family: var(--font-display); font-size: 1.25rem; font-style: italic; color: var(--coffee-bean); margin-bottom: var(--space-xs); animation: fadeInUp 0.8s ease-out 0.3s both; }
.hero-subtitle { font-size: 0.9rem; letter-spacing: 0.15em; color: var(--taupe); margin-bottom: var(--space-md); animation: fadeInUp 0.8s ease-out 0.4s both; }
.hero-social { display: flex; justify-content: center; gap: var(--space-md); animation: fadeInUp 0.8s ease-out 0.5s both; }
.hero-social-link { display: flex; align-items: center; justify-content: center; width: 50px; height: 50px; border-radius: 50%; background: var(--color-white); color: var(--rosewood); box-shadow: 0 4px 15px rgba(99, 72, 55, 0.15); transition: all 0.3s ease; }
.hero-social-link:hover { background: var(--rosewood); color: var(--color-white); transform: translateY(-3px); box-shadow: 0 8px 25px rgba(172, 100, 119, 0.3); }
.hero-cta-group { display: flex; flex-direction: column; gap: var(--space-sm); animation: fadeInUp 0.8s ease-out 0.5s both; }
.hero-scroll-indicator { position: absolute; bottom: var(--space-lg); left: 50%; transform: translateX(-50%); display: none; flex-direction: column; align-items: center; gap: var(--space-sm); }
.scroll-mouse { width: 24px; height: 40px; border: 2px solid var(--rosewood); border-radius: 12px; display: flex; justify-content: center; padding-top: 8px; }
.scroll-wheel { width: 4px; height: 8px; background: var(--rosewood); border-radius: 2px; animation: scroll 2s ease-in-out infinite; }
@keyframes scroll { 0%, 100% { transform: translateY(0); opacity: 1; } 50% { transform: translateY(8px); opacity: 0.3; } }
.hero-scroll-indicator span { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--taupe); }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* MARQUEE */
.featured { padding: 0; background: linear-gradient(135deg, var(--coffee-bean), var(--rosewood)); overflow: hidden; }
.marquee { padding: var(--space-md) 0; overflow: hidden; position: relative; }
.marquee-content { display: flex; gap: var(--space-xl); white-space: nowrap; animation: marquee 20s linear infinite; }
.marquee-content span { font-family: var(--font-display); font-size: 1rem; font-style: italic; color: var(--color-white); flex-shrink: 0; }
@keyframes marquee { 
    0% { transform: translateX(0); } 
    100% { transform: translateX(-50%); } 
}

/* ABOUT */
.about { background: var(--color-white); padding: var(--space-3xl) 0; position: relative; overflow: hidden; }
.about::before { content: ''; position: absolute; top: 0; right: 0; width: 40%; height: 100%; background: linear-gradient(180deg, var(--lavender-blush), transparent); opacity: 0.5; }
.about-content { display: grid; grid-template-columns: 1fr; gap: var(--space-xl); position: relative; z-index: 1; }
.about-image-wrapper { position: relative; max-width: 350px; margin: 0 auto; }
.about-image-frame { border-radius: var(--radius-xl); overflow: hidden; box-shadow: 0 20px 60px rgba(99, 72, 55, 0.15); }
.about-image { width: 100%; aspect-ratio: 3/4; object-fit: cover; transition: transform var(--transition-smooth); }
.about-image-frame:hover .about-image { transform: scale(1.03); }
.about-image-blob { position: absolute; top: -30px; left: -30px; width: 120px; height: 120px; background: linear-gradient(135deg, var(--rosewood), var(--taupe)); border-radius: 50%; opacity: 0.2; z-index: -1; }
.about-image-dots { position: absolute; bottom: -20px; right: -20px; width: 80px; height: 80px; background-image: radial-gradient(var(--rosewood) 2px, transparent 2px); background-size: 10px 10px; z-index: -1; }
.about-text { max-width: 600px; margin: 0 auto; }
.about-intro { font-family: var(--font-display); font-size: 1.2rem; font-style: italic; line-height: 1.8; color: var(--coffee-bean); margin-bottom: var(--space-lg); }
.about-text p { color: var(--color-dark); font-size: 0.95rem; }
.about-personal { background: linear-gradient(135deg, var(--lavender-blush), var(--color-white)); padding: var(--space-md); border-radius: var(--radius-md); border-left: 3px solid var(--rosewood); margin-top: var(--space-lg); }
.about-personal p { margin-bottom: 0; font-style: italic; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); margin-top: var(--space-xl); padding-top: var(--space-xl); border-top: 1px solid var(--pale-slate); }
.stat { text-align: center; }
.stat-icon { display: block; font-size: 1.5rem; margin-bottom: var(--space-xs); }
.stat-number { display: block; font-family: var(--font-display); font-size: 2.5rem; font-weight: 600; color: var(--rosewood); }
.stat-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--taupe); }

/* RESUME */
.resume { background: linear-gradient(180deg, var(--color-cream), var(--lavender-blush)); padding: var(--space-3xl) 0; }
.resume-content { max-width: 800px; margin: 0 auto; }

/* GALLERY */
.gallery { background: var(--color-white); padding: var(--space-3xl) 0; }
.gallery-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-sm); margin-top: var(--space-xl); }
.gallery-item { position: relative; overflow: hidden; aspect-ratio: 4/3; border-radius: var(--radius-md); cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform var(--transition-smooth); }
.gallery-item:hover img { transform: scale(1.08); }

/* Always visible title at bottom */
.gallery-title { 
    position: absolute; 
    bottom: 0; 
    left: 0; 
    right: 0; 
    background: linear-gradient(to top, rgba(45, 35, 30, 0.9), rgba(45, 35, 30, 0.7) 60%, transparent); 
    padding: var(--space-xl) var(--space-md) var(--space-md); 
    font-family: var(--font-display); 
    font-size: 1.1rem; 
    font-style: italic; 
    color: var(--color-white); 
    text-align: center;
    transition: background var(--transition-smooth);
}
.gallery-item:hover .gallery-title {
    background: linear-gradient(to top, rgba(172, 100, 119, 0.95), rgba(172, 100, 119, 0.8) 60%, transparent);
}

/* Legacy overlay - keep for backwards compatibility */
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(99, 72, 55, 0.8), transparent 60%); display: flex; align-items: flex-end; padding: var(--space-md); opacity: 0; transition: opacity var(--transition-smooth); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { font-family: var(--font-display); font-size: 1rem; font-style: italic; color: var(--color-white); }

.gallery-item-large { aspect-ratio: 3/4; }
.gallery-item-large .gallery-title { font-size: 1.3rem; }
.gallery-item-wide { aspect-ratio: 16/9; object-position: center center; }

/* GALLERY MODAL */
.modal-overlay { position: fixed; inset: 0; z-index: 2000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all var(--transition-smooth); }
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-bg { position: absolute; inset: 0; background: rgba(45, 37, 39, 0.95); cursor: pointer; }
.modal-container { position: relative; width: 90%; max-width: 1000px; max-height: 90vh; z-index: 2001; display: flex; flex-direction: column; align-items: center; }
.modal-close { position: absolute; top: -50px; right: 0; font-size: 2.5rem; color: white; cursor: pointer; z-index: 2002; transition: all var(--transition-fast); background: none; border: none; width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; }
.modal-close:hover { transform: scale(1.2); color: var(--rosewood); }
.modal-content { position: relative; max-width: 100%; max-height: 75vh; }
.modal-image { max-width: 100%; max-height: 70vh; border-radius: var(--radius-lg); box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5); }
.modal-caption { color: white; font-family: var(--font-display); font-style: italic; font-size: 1.2rem; margin-top: var(--space-md); text-align: center; }

/* Modal Arrows */
.modal-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 90px; height: 90px; background: rgba(255, 255, 255, 0.2); border: 2px solid rgba(255, 255, 255, 0.5); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; cursor: pointer; transition: all var(--transition-fast); z-index: 2002; }
.modal-arrow:hover { background: var(--rosewood); border-color: var(--rosewood); transform: translateY(-50%) scale(1.1); }
.modal-arrow svg { width: 36px; height: 36px; }
.modal-prev { left: -110px; }
.modal-next { right: -110px; }
.modal-dots { display: flex; justify-content: center; gap: var(--space-xs); margin-top: var(--space-lg); flex-wrap: wrap; max-width: 300px; }
.modal-dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255, 255, 255, 0.3); cursor: pointer; transition: all var(--transition-fast); border: none; }
.modal-dot:hover { background: rgba(255, 255, 255, 0.6); }
.modal-dot.active { background: var(--rosewood); transform: scale(1.3); }

/* MEDIA */
.media { background: linear-gradient(180deg, var(--lavender-blush), var(--color-cream)); padding: var(--space-3xl) 0 var(--space-2xl); }
.video-featured { max-width: 900px; margin: 0 auto var(--space-md); }
.video-featured-wrapper { position: relative; width: 100%; aspect-ratio: 16/9; border-radius: var(--radius-xl); overflow: hidden; box-shadow: 0 30px 80px rgba(99, 72, 55, 0.2); border: 4px solid var(--color-white); }
.video-featured-wrapper iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
.video-featured-info { text-align: center; padding: var(--space-sm) var(--space-md) var(--space-md); }
.video-featured-info h3 { font-family: var(--font-display); font-size: 1.5rem; font-style: italic; color: var(--coffee-bean); margin-bottom: var(--space-xs); }
.video-featured-info p { color: var(--taupe); margin-bottom: 0; }
.video-carousel-header { text-align: center; margin-bottom: var(--space-sm); }
.video-carousel-header h3 { font-family: var(--font-display); font-size: 1.1rem; font-style: italic; color: var(--coffee-bean); margin-bottom: 0.25rem; }
.video-carousel-header p { font-size: 0.8rem; color: var(--taupe); margin-bottom: 0; }

/* Video Carousel */
.video-carousel-wrapper { overflow: hidden; padding: var(--space-md) 0; }
.video-carousel { position: relative; width: 100%; }
.video-carousel-track { display: flex; gap: var(--space-md); animation: carouselScroll 45s linear infinite; width: max-content; }
.video-carousel-wrapper:hover .video-carousel-track { animation-play-state: paused; }
@keyframes carouselScroll { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-320px * 6 - var(--space-md) * 6)); } }

/* Video Selector Grid (for fewer videos) */
.video-selector { 
    display: flex; 
    justify-content: center; 
    gap: var(--space-lg); 
    flex-wrap: wrap; 
    padding: var(--space-md) 0; 
}
.video-card { 
    flex: 0 0 320px; 
    background: var(--color-white); 
    border-radius: var(--radius-lg); 
    overflow: hidden; 
    box-shadow: 0 8px 30px rgba(99, 72, 55, 0.1); 
    border: 3px solid var(--pale-slate); 
    transition: all var(--transition-smooth); 
    cursor: pointer; 
    position: relative; 
}
.video-card:hover { 
    transform: translateY(-8px); 
    box-shadow: 0 16px 50px rgba(99, 72, 55, 0.2); 
    border-color: var(--rosewood); 
}
.video-card.active { 
    transform: translateY(-10px) scale(1.05); 
    box-shadow: 0 20px 60px rgba(172, 100, 119, 0.3); 
    border-color: var(--rosewood); 
    border-width: 4px;
}
.video-card.active::before {
    content: '✓ Now Playing';
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--rosewood);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    z-index: 10;
}
.video-card.active { border-color: var(--rosewood); border-width: 3px; }
.video-thumb { position: relative; width: 100%; aspect-ratio: 16/9; background: var(--coffee-bean); overflow: hidden; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-smooth); }
.video-card:hover .video-thumb img { transform: scale(1.05); }
.video-play-icon { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; color: white; background: rgba(0, 0, 0, 0.3); opacity: 0; transition: opacity var(--transition-fast); }
.video-card:hover .video-play-icon { opacity: 1; }
.video-info { padding: var(--space-md); }
.video-info h3 { font-family: var(--font-display); font-size: 0.95rem; font-style: italic; color: var(--coffee-bean); margin-bottom: var(--space-xs); }
.video-info p { font-size: 0.8rem; color: var(--taupe); margin-bottom: 0; }

/* TESTIMONIALS */
.testimonials { background: linear-gradient(135deg, var(--coffee-bean), var(--rosewood)); padding: var(--space-2xl) 0; position: relative; overflow: hidden; }
.testimonials::before { content: '"'; position: absolute; font-family: var(--font-display); font-size: 20rem; color: rgba(255, 255, 255, 0.03); top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none; }
.testimonial-carousel { max-width: 900px; margin: 0 auto; position: relative; padding: 0 100px; }
.testimonial-slides { position: relative; height: 400px; overflow: hidden; }
.testimonial-slide { position: absolute; top: 0; left: 0; right: 0; height: 100%; opacity: 0; visibility: hidden; transition: opacity 0.5s ease; display: flex; align-items: center; justify-content: center; }
.testimonial-slide.active { opacity: 1; visibility: visible; }
.testimonial-card { text-align: center; padding: var(--space-md); width: 100%; max-width: 700px; }
.testimonial-card blockquote { font-family: var(--font-display); font-size: 1.15rem; font-style: italic; line-height: 1.7; color: var(--color-white); margin-bottom: var(--space-md); }
.testimonial-card cite { display: flex; flex-direction: column; gap: var(--space-xs); }
.testimonial-card cite strong { font-family: var(--font-body); font-size: 0.9rem; font-weight: 600; color: var(--color-white); }
.testimonial-card cite span { font-size: 0.8rem; color: rgba(255, 255, 255, 0.7); }

/* Testimonial Arrows */
.testimonial-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 80px; height: 80px; background: rgba(255, 255, 255, 0.2); border: 2px solid rgba(255, 255, 255, 0.5); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; cursor: pointer; transition: all var(--transition-fast); z-index: 10; }
.testimonial-arrow svg { width: 32px; height: 32px; }
.testimonial-arrow:hover { background: rgba(255, 255, 255, 0.35); border-color: white; transform: translateY(-50%) scale(1.1); }
.testimonial-prev { left: -10px; }
.testimonial-next { right: -10px; }

.testimonial-dots { display: flex; justify-content: center; gap: var(--space-sm); margin-top: var(--space-lg); }
.testimonial-dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255, 255, 255, 0.3); cursor: pointer; transition: all var(--transition-fast); border: none; }
.testimonial-dot:hover { background: rgba(255, 255, 255, 0.6); }
.testimonial-dot.active { background: var(--color-white); transform: scale(1.3); }

/* CONTACT */
.contact { background: linear-gradient(180deg, var(--color-cream), var(--lavender-blush)); padding: var(--space-3xl) 0; }
.contact-wrapper { display: grid; grid-template-columns: 1fr; gap: var(--space-2xl); }
.contact-info { max-width: 500px; }
.contact-intro { color: var(--coffee-bean); margin-bottom: var(--space-xl); }
.contact-details { margin-bottom: var(--space-xl); }
.contact-item { display: flex; align-items: flex-start; gap: var(--space-md); padding: var(--space-sm) 0; border-bottom: 1px solid var(--pale-slate); }
.contact-icon { font-size: 1.25rem; }
.contact-label { display: block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--taupe); margin-bottom: 2px; }
.contact-value { font-family: var(--font-display); font-size: 1rem; font-style: italic; color: var(--coffee-bean); }
a.contact-value:hover { color: var(--rosewood); }
.social-links { display: flex; gap: var(--space-sm); }
.social-link { display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; border: 2px solid var(--pale-slate); border-radius: var(--radius-full); color: var(--rosewood); transition: all var(--transition-fast); }
.social-link:hover { background: linear-gradient(135deg, var(--rosewood), var(--taupe)); border-color: transparent; color: var(--color-white); transform: translateY(-4px); }
.contact-form-wrapper { background: var(--color-white); padding: var(--space-xl); border-radius: var(--radius-xl); box-shadow: 0 20px 60px rgba(99, 72, 55, 0.1); position: relative; }
.form-decoration { position: absolute; top: -15px; right: 30px; font-size: 2rem; color: var(--rosewood); }
.contact-form { display: flex; flex-direction: column; gap: var(--space-md); }
.form-group { position: relative; }
.form-group input, .form-group textarea { width: 100%; padding: var(--space-md) var(--space-sm) var(--space-sm); font-family: var(--font-body); font-size: 1rem; color: var(--coffee-bean); background: var(--color-light); border: 2px solid transparent; border-radius: var(--radius-md); outline: none; transition: all var(--transition-fast); }
.form-group input:focus, .form-group textarea:focus { background: var(--color-white); border-color: var(--rosewood); box-shadow: 0 0 0 4px rgba(172, 100, 119, 0.15); }
.form-group label { position: absolute; top: 50%; left: var(--space-sm); transform: translateY(-50%); font-size: 0.9rem; color: var(--taupe); pointer-events: none; transition: all var(--transition-fast); }
.form-group textarea + label { top: var(--space-md); transform: none; }
.form-group input:focus + label, .form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label, .form-group textarea:not(:placeholder-shown) + label { top: 8px; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; color: var(--rosewood); transform: none; }
.form-group textarea { resize: vertical; min-height: 120px; }

/* FOOTER */
.footer { background: var(--color-charcoal); padding: var(--space-2xl) 0; }
.footer-content { text-align: center; }
.footer-brand { margin-bottom: var(--space-lg); }
.footer-logo { font-family: var(--font-display); font-size: 1.5rem; font-style: italic; color: var(--rosewood); display: block; margin-bottom: var(--space-xs); }
.footer-brand p { font-size: 0.85rem; color: rgba(255, 255, 255, 0.6); margin-bottom: 0; }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-sm) var(--space-md); margin-bottom: var(--space-xl); padding-bottom: var(--space-xl); border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.footer-nav a { font-size: 0.8rem; font-weight: 500; color: rgba(255, 255, 255, 0.6); }
.footer-nav a:hover { color: var(--rosewood); }
.footer-bottom { display: flex; flex-direction: column; gap: var(--space-xs); }
.copyright { font-size: 0.75rem; color: rgba(255, 255, 255, 0.4); margin-bottom: 0; }
.design-credit { font-size: 0.75rem; color: var(--rosewood); margin-bottom: 0; }

/* TABLET */
@media (min-width: 768px) {
    .nav-toggle-label { display: none; }
    .nav-links { position: static; width: auto; height: auto; background: transparent; flex-direction: row; gap: var(--space-lg); }
    .nav-links a { font-family: var(--font-body); font-size: 0.8rem; font-style: normal; font-weight: 600; }
    .hero { flex-direction: row; justify-content: center; gap: var(--space-2xl); padding: 120px var(--space-xl) var(--space-xl); }
    .hero-image-frame { width: 350px; height: 450px; }
    .hero-content { text-align: left; max-width: 450px; }
    .hero-cta-group { flex-direction: row; }
    .hero-scroll-indicator { display: flex; }
    .about-content { grid-template-columns: 1fr 1.3fr; align-items: start; gap: var(--space-2xl); }
    .about-image-wrapper { margin: 0; max-width: none; }
    .about-text { margin: 0; }
    .resume-actions { flex-direction: row; justify-content: center; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }
    .gallery-item { aspect-ratio: 1; }
    .gallery-item-large { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
    .gallery-item-wide { grid-column: span 2; aspect-ratio: 16/9; }
    .modal-prev { left: -110px; }
    .modal-next { right: -110px; }
    .video-card { flex: 0 0 320px; }
    .contact-wrapper { grid-template-columns: 1fr 1fr; align-items: start; }
}

/* DESKTOP */
@media (min-width: 1024px) {
    :root { --space-2xl: 8rem; --space-3xl: 10rem; }
    .hero-image-frame { width: 400px; height: 520px; }
    .stat-number { font-size: 3rem; }
    .video-card { flex: 0 0 350px; }
}

/* Mobile modal arrows */
@media (max-width: 900px) {
    .modal-prev { left: 20px; }
    .modal-next { right: 20px; }
    .modal-arrow { width: 70px; height: 70px; background: rgba(0,0,0,0.7); border: none; }
    .modal-arrow svg { width: 30px; height: 30px; }
    
    /* Mobile testimonials */
    .testimonials { padding-top: 30px; padding-bottom: 30px; }
    .testimonial-slides { height: 420px !important; min-height: 420px !important; }
    .testimonial-carousel { padding: 0 75px; }
    .testimonial-arrow { width: 65px; height: 65px; }
    .testimonial-arrow svg { width: 28px; height: 28px; }
    .testimonial-prev { left: 0; }
    .testimonial-next { right: 0; }
    .testimonial-card blockquote { font-size: 1.15rem; line-height: 1.7; }
    
    /* Mobile carousel arrows */
    .glide__arrow { width: 60px; height: 60px; font-size: 1.8rem; }
}

/* Small mobile */
@media (max-width: 480px) {
    /* Testimonials */
    .testimonials { padding-top: 25px; padding-bottom: 25px; }
    .testimonial-slides { height: 450px !important; min-height: 450px !important; }
    .testimonial-card blockquote { font-size: 1.1rem; line-height: 1.65; }
    .testimonial-carousel { padding: 0 55px; }
    .testimonial-card blockquote { font-size: 0.95rem; line-height: 1.55; }
    .testimonial-card { padding: var(--space-xs); }
    .testimonial-arrow { width: 50px; height: 50px; }
    .testimonial-arrow svg { width: 22px; height: 22px; }
    .testimonial-prev { left: 0; }
    .testimonial-next { right: 0; }
    
    .modal-arrow { width: 60px; height: 60px; }
    .modal-arrow svg { width: 26px; height: 26px; }
    
    /* Mobile carousel arrows */
    .glide__arrow { width: 50px; height: 50px; font-size: 1.5rem; }
}

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
    .video-carousel-track { animation: none; overflow-x: auto; scroll-snap-type: x mandatory; }
    .video-card { scroll-snap-align: start; }
}

/* ==========================================
   THEME TOGGLE - Elegant and Minimal
   ========================================== */
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid var(--pale-slate);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: var(--space-sm);
    flex-shrink: 0;
    z-index: 1002;
}
.theme-toggle:hover {
    background: var(--lavender-blush);
    border-color: var(--rosewood);
}
.theme-toggle .sun-icon {
    display: block;
    color: var(--rosewood);
}
.theme-toggle .moon-icon {
    display: none;
    color: var(--rosewood);
}

/* Header positioning - sticky at TOP with no gap */
html, body {
    margin: 0;
    padding: 0;
}
.header { 
    top: 0; 
    left: 0;
    right: 0;
    margin: 0;
}
.hero { padding-top: 100px; }

/* About download button */
.about-download-btn {
    margin-top: var(--space-md);
}

/* Resume image preview - show FULL image without any cutoff */
.resume-preview-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(99, 72, 55, 0.15);
}
.resume-preview-frame {
    width: 100%;
    line-height: 0;
    margin: 0;
    padding: 0;
}
.resume-preview-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
}
.resume-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: var(--color-white);
    position: relative;
    z-index: 10;
    margin: 0;
}
.resume-actions .btn {
    justify-content: center;
    min-height: 48px;
}
@media (min-width: 480px) {
    .resume-actions {
        flex-direction: row;
        justify-content: center;
        padding: var(--space-lg);
    }
}

/* ==========================================
   VIDEO CAROUSEL - Glide.js
   ========================================== */
.video-carousel-wrapper { 
    padding: var(--space-md) 0; 
    position: relative;
}
#videoGlide {
    position: relative;
}
.glide__track {
    overflow: hidden;
}
.glide__slides {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}
.glide__slide {
    padding: 0 8px;
}
.glide__slide .video-card {
    cursor: pointer;
}
.glide__slide .video-thumb {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}
.glide__slide .video-thumb img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.glide__slide .video-card:hover .video-thumb img {
    transform: scale(1.05);
}
.glide__slide.active .video-thumb {
    border-color: var(--rosewood);
    box-shadow: 0 8px 25px rgba(172, 100, 119, 0.4);
}
.glide__slide .video-card:hover .video-thumb {
    border-color: var(--rosewood);
}
.glide__slide .video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 45px;
    height: 45px;
    background: rgba(172, 100, 119, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.glide__slide .video-card:hover .video-play-icon,
.glide__slide.active .video-play-icon {
    opacity: 1;
}
.glide__slide .video-info {
    padding: var(--space-sm) var(--space-xs);
    text-align: center;
}
.glide__slide .video-info h3 {
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}
.glide__slide .video-info p {
    font-size: 0.75rem;
    color: var(--taupe);
    margin: 0;
}

/* Glide arrows - LARGE */
.glide__arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-80%);
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    pointer-events: none;
}
.glide__arrow {
    pointer-events: auto;
    background: var(--rosewood);
    border: none;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(172, 100, 119, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}
.glide__arrow:hover {
    background: var(--coffee-bean);
    transform: scale(1.1);
}

/* ==========================================
   DARK MODE THEME
   ========================================== */
body.dark-mode {
    --color-primary: #AC6477;
    --color-primary-light: #7D484B;
    --color-primary-lighter: #4F3D32;
    --color-accent: #B57580;
    --color-accent-dark: #7D484B;
    --color-deep: #4F3D32;
    --color-white: #ffffff;
    --color-cream: #2A2220;
    --color-light: #3D3230;
    --color-gray: #765C47;
    --color-dark: #E8DDD8;
    --color-charcoal: #1A1614;
    
    --lavender-blush: #3D3230;
    --rosewood: #AC6477;
    --coffee-bean: #4F3D32;
    --pale-slate: #5A4A45;
    --taupe: #765C47;
}

/* Dark mode toggle button */
body.dark-mode .theme-toggle {
    border-color: #5A4A45;
}
body.dark-mode .theme-toggle:hover {
    background: #3D3230;
    border-color: #B57580;
}
body.dark-mode .theme-toggle .sun-icon {
    display: none;
}
body.dark-mode .theme-toggle .moon-icon {
    display: block;
    color: #B57580;
}

/* Dark mode header */
body.dark-mode .header { 
    background: rgba(26, 22, 20, 0.98); 
    border-bottom-color: rgba(172, 100, 119, 0.3); 
}
body.dark-mode .nav-logo { color: #B57580; }
body.dark-mode .nav-toggle-label span,
body.dark-mode .nav-toggle-label span::before,
body.dark-mode .nav-toggle-label span::after { background: #B57580; }
body.dark-mode .nav-links { background: linear-gradient(180deg, #1A1614 0%, #2A2220 100%); }
body.dark-mode .nav-links a { color: #E8DDD8; }
body.dark-mode .nav-links a::after { color: #AC6477; }

/* Dark mode hero */
body.dark-mode .hero { background: linear-gradient(180deg, #1A1614 0%, #2A2220 40%, #3D3230 70%, #4F3D32 100%); }
body.dark-mode .hero-bg-shape { background: linear-gradient(135deg, #AC6477, #7D484B); opacity: 0.15; }
body.dark-mode .hero-image-frame { box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5); border-color: #3D3230; }
body.dark-mode .hero-image-decoration { background: linear-gradient(135deg, #AC6477, #7D484B); opacity: 0.5; }
body.dark-mode .hero-union { color: #765C47; }
body.dark-mode .hero-name { background: linear-gradient(135deg, #B57580, #AC6477, #7D484B); -webkit-background-clip: text; background-clip: text; }
body.dark-mode .hero-subtitle { color: #765C47; }

/* Dark mode marquee */
body.dark-mode .featured { background: linear-gradient(135deg, #7D484B, #4F3D32); }

/* Dark mode about */
body.dark-mode .about { background: #2A2220; }
body.dark-mode .about::before { background: linear-gradient(180deg, #3D3230, transparent); }
body.dark-mode .about-intro { color: #E8DDD8; }
body.dark-mode .about-text p { color: #B0A5A0; }
body.dark-mode .about-personal { background: linear-gradient(135deg, #3D3230, #2A2220); border-left-color: #AC6477; }
body.dark-mode .about-image-blob { background: linear-gradient(135deg, #AC6477, #7D484B); }
body.dark-mode .about-image-dots { background-image: radial-gradient(#AC6477 2px, transparent 2px); }
body.dark-mode .about-stats { border-top-color: #3D3230; }
body.dark-mode .stat-number { color: #B57580; }
body.dark-mode .stat-label { color: #765C47; }
body.dark-mode .section-title { color: #E8DDD8; }
body.dark-mode .section-label { background: linear-gradient(135deg, #AC6477, #B57580); -webkit-background-clip: text; background-clip: text; }

/* Dark mode resume */
body.dark-mode .resume { background: linear-gradient(180deg, #2A2220, #3D3230); }
body.dark-mode .resume-preview-container { background: #3D3230; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4); }
body.dark-mode .resume-actions { background: #3D3230; }

/* Dark mode gallery */
body.dark-mode .gallery { background: #2A2220; }
body.dark-mode .gallery-overlay { background: linear-gradient(to top, rgba(125, 72, 75, 0.9), transparent 60%); }

/* Dark mode media */
body.dark-mode .media { background: linear-gradient(180deg, #3D3230, #2A2220); }
body.dark-mode .video-featured-wrapper { border-color: #3D3230; box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5); }
body.dark-mode .video-featured-info h3 { color: #E8DDD8; }
body.dark-mode .video-featured-info p { color: #765C47; }
body.dark-mode .video-carousel-header h3 { color: #E8DDD8; }
body.dark-mode .video-carousel-header p { color: #765C47; }
body.dark-mode .video-card { background: #3D3230; border-color: #4F3D32; }
body.dark-mode .video-card:hover, body.dark-mode .video-card.active { border-color: #AC6477; }
body.dark-mode .video-info h3 { color: #E8DDD8; }
body.dark-mode .video-info p { color: #765C47; }

/* Dark mode testimonials */
body.dark-mode .testimonials { background: linear-gradient(135deg, #4F3D32, #7D484B); }
body.dark-mode .testimonials::before { color: rgba(255, 255, 255, 0.03); }

/* Dark mode contact */
body.dark-mode .contact { background: linear-gradient(180deg, #2A2220, #3D3230); }
body.dark-mode .contact-intro { color: #B0A5A0; }
body.dark-mode .contact-item { border-bottom-color: #3D3230; }
body.dark-mode .contact-label { color: #765C47; }
body.dark-mode .contact-value { color: #E8DDD8; }
body.dark-mode .social-link { border-color: #4F3D32; color: #AC6477; }
body.dark-mode .social-link:hover { background: linear-gradient(135deg, #AC6477, #7D484B); }
body.dark-mode .contact-form-wrapper { background: #3D3230; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3); }
body.dark-mode .form-decoration { color: #AC6477; }
body.dark-mode .form-group input,
body.dark-mode .form-group textarea { background: #2A2220; color: #E8DDD8; }
body.dark-mode .form-group input:focus,
body.dark-mode .form-group textarea:focus { background: #1A1614; border-color: #AC6477; box-shadow: 0 0 0 4px rgba(172, 100, 119, 0.2); }
body.dark-mode .form-group label { color: #765C47; }

/* Dark mode footer */
body.dark-mode .footer { background: #0F0D0C; }
body.dark-mode .footer-logo { color: #AC6477; }
body.dark-mode .footer-nav { border-bottom-color: rgba(255, 255, 255, 0.05); }

/* Dark mode buttons */
body.dark-mode .btn-primary { background: linear-gradient(135deg, #AC6477, #7D484B); box-shadow: 0 4px 20px rgba(172, 100, 119, 0.3); }
body.dark-mode .btn-outline { color: #B57580; border-color: #AC6477; }
body.dark-mode .btn-outline:hover { background: #AC6477; color: #fff; }

/* Dark mode modal */
body.dark-mode .modal-bg { background: rgba(15, 13, 12, 0.98); }
