/* ==========================================
   VOGUE STARS AGENCY — HOLLYWOOD MAXIMALIST
   Background: #0E0E12, Surface: #1A1A22
   Accent: #E94560 (neon pink), Secondary: #FFD700 (gold)
   Gradient: pink -> gold
   Fonts: Abril Fatface (display), Lexend (body)
   ========================================== */

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --bg: #0E0E12;
    --surface: #1A1A22;
    --accent: #E94560;
    --gold: #FFD700;
    --text: #E8E8EC;
    --text-muted: #8A8A9A;
    --light: #FAFAFA;
    --accent-hover: #FF2D55;
    --gold-hover: #FFEA00;
    --gray: #6B6B7A;
    --gray-light: #2A2A35;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.6);
    --shadow-accent: 0 8px 30px rgba(233, 69, 96, 0.4);
    --shadow-gold: 0 8px 30px rgba(255, 215, 0, 0.3);
    --glow-pink: 0 0 20px rgba(233, 69, 96, 0.5), 0 0 40px rgba(233, 69, 96, 0.2);
    --glow-gold: 0 0 20px rgba(255, 215, 0, 0.5), 0 0 40px rgba(255, 215, 0, 0.2);
    --transition: 0.3s ease;
    --font-heading: 'Abril Fatface', serif;
    --font-body: 'Lexend', sans-serif;
    --container: 1200px;
    --navbar-h: 80px;
    --gradient-pink-gold: linear-gradient(135deg, #E94560, #FFD700);
    --gradient-gold-pink: linear-gradient(135deg, #FFD700, #E94560);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); line-height: 1.2; letter-spacing: 0.02em; color: var(--light); }
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 800px; }
.accent-text { color: var(--accent); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--gray); }
.mt-1 { margin-top: 1.5rem; }

/* --- NEON GLOW EFFECTS --- */
.neon-text {
    text-shadow: 0 0 10px rgba(233, 69, 96, 0.3), 0 0 40px rgba(233, 69, 96, 0.15);
}
.neon-text-pink {
    color: var(--accent);
    text-shadow: 0 0 10px rgba(233, 69, 96, 0.5), 0 0 30px rgba(233, 69, 96, 0.3), 0 0 60px rgba(233, 69, 96, 0.15);
}
.gold-glow {
    color: var(--gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5), 0 0 30px rgba(255, 215, 0, 0.3), 0 0 60px rgba(255, 215, 0, 0.15);
}

/* --- GRADIENT BORDER CARD --- */
.gradient-border-card {
    position: relative;
    background: var(--surface);
    border: none;
}
.gradient-border-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: calc(var(--radius) + 2px);
    padding: 2px;
    background: var(--gradient-pink-gold);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
    transition: opacity var(--transition);
    pointer-events: none;
}
.gradient-border-card:hover::before { opacity: 1; }

/* --- SPARKLE DECORATIONS --- */
.sparkle-field {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}
.sparkle-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    animation: sparkleFloat 4s ease-in-out infinite;
    opacity: 0;
    box-shadow: 0 0 6px rgba(255, 215, 0, 0.6);
}
@keyframes sparkleFloat {
    0% { opacity: 0; transform: translateY(0) scale(0); }
    20% { opacity: 1; transform: translateY(-20px) scale(1); }
    80% { opacity: 0.5; transform: translateY(-80px) scale(0.5); }
    100% { opacity: 0; transform: translateY(-120px) scale(0); }
}

/* --- MARQUEE STRIP --- */
.marquee-strip {
    background: var(--gradient-pink-gold);
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}
.marquee-strip-footer {
    background: var(--gradient-gold-pink);
}
.marquee-track {
    display: flex;
    animation: marqueeScroll 25s linear infinite;
    width: max-content;
}
.marquee-content {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--bg);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: inline-block;
    padding-right: 0;
}
.marquee-content .sparkle {
    margin: 0 20px;
    font-size: 0.7rem;
    vertical-align: middle;
}
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 28px; border-radius: var(--radius-sm); font-family: var(--font-body);
    font-weight: 600; font-size: 0.95rem; border: 2px solid transparent;
    cursor: pointer; transition: var(--transition); white-space: nowrap;
}
.btn-accent {
    background: var(--accent); color: #fff; border-color: var(--accent);
}
.btn-accent:hover {
    background: var(--accent-hover); border-color: var(--accent-hover);
    transform: translateY(-2px); box-shadow: var(--shadow-accent);
}
.glow-btn {
    box-shadow: 0 0 15px rgba(233, 69, 96, 0.3);
}
.glow-btn:hover {
    box-shadow: 0 0 25px rgba(233, 69, 96, 0.5), 0 0 50px rgba(233, 69, 96, 0.2);
}
.btn-outline {
    background: transparent; color: var(--text); border-color: var(--gray-light);
}
.btn-outline:hover {
    background: var(--accent); color: #fff; border-color: var(--accent); transform: translateY(-2px);
}
.btn-outline-light {
    background: transparent; color: #fff; border-color: rgba(255,255,255,0.3);
}
.btn-outline-light:hover {
    background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.6); transform: translateY(-2px);
}
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* --- NAVBAR --- */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    background: rgba(14, 14, 18, 0.9); backdrop-filter: blur(20px);
    height: var(--navbar-h); transition: var(--transition);
    border-bottom: 1px solid rgba(233, 69, 96, 0.1);
}
.navbar.scrolled {
    background: rgba(14, 14, 18, 0.98);
    box-shadow: 0 4px 30px rgba(233, 69, 96, 0.1);
    border-bottom-color: rgba(233, 69, 96, 0.2);
}
.navbar-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.navbar-brand {
    display: flex; align-items: center; gap: 10px; color: #fff;
    font-family: var(--font-heading); font-size: 1.3rem; letter-spacing: 0.05em;
}
.brand-icon { color: var(--gold); font-size: 1.2rem; filter: drop-shadow(0 0 6px rgba(255,215,0,0.5)); }
.navbar-menu { display: flex; align-items: center; gap: 4px; }
.nav-link {
    color: rgba(255,255,255,0.6); padding: 8px 16px; border-radius: var(--radius-sm);
    font-size: 0.9rem; font-weight: 500; transition: var(--transition);
}
.nav-link:hover { color: #fff; background: rgba(233, 69, 96, 0.15); }
.nav-link.active { color: var(--accent); text-shadow: 0 0 10px rgba(233, 69, 96, 0.4); }
.navbar-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger-line {
    display: block; width: 24px; height: 2px; background: #fff;
    margin: 5px 0; transition: var(--transition); border-radius: 2px;
}

/* --- HERO --- */
.hero {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    justify-content: center; overflow: hidden; padding-top: var(--navbar-h);
}
.hero-gradient-bg, .cta-gradient-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #0E0E12 0%, #1A0A18 25%, #0E0E12 50%, #0F1A10 75%, #0E0E12 100%);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
}
.hero-gradient-bg::after, .cta-gradient-bg::after {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(233, 69, 96, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(233, 69, 96, 0.08) 0%, transparent 40%);
}
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-model-image {
    position: absolute; right: 5%; bottom: 0; z-index: 1;
    width: 400px; height: auto; opacity: 0.3;
    pointer-events: none;
}
.hero-model-image img {
    width: 100%; height: auto; object-fit: cover;
    mask-image: linear-gradient(to top, transparent 0%, black 30%);
    -webkit-mask-image: linear-gradient(to top, transparent 0%, black 30%);
}
.hero-model-glow {
    position: absolute; inset: -20px; border-radius: 50%;
    background: radial-gradient(ellipse, rgba(233, 69, 96, 0.2) 0%, transparent 70%);
    filter: blur(30px);
    animation: pulseGlow 3s ease-in-out infinite alternate;
}
@keyframes pulseGlow {
    0% { opacity: 0.5; transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1.05); }
}

.hero-content { position: relative; z-index: 2; text-align: center; padding: 60px 0; }
.hero-badge {
    display: inline-block; padding: 8px 24px;
    background: rgba(233, 69, 96, 0.1); border: 1px solid rgba(233, 69, 96, 0.3);
    border-radius: 50px; color: var(--accent); font-size: 0.85rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 24px;
    text-shadow: 0 0 10px rgba(233, 69, 96, 0.3);
}
.hero-badge i { color: var(--gold); margin: 0 4px; }
.hero-title { color: #fff; margin-bottom: 24px; }
.hero-subtitle { color: rgba(255,255,255,0.6); font-size: 1.15rem; max-width: 600px; margin: 0 auto 40px; font-weight: 300; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; }
.hero-stats { display: flex; gap: 48px; justify-content: center; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat-number {
    display: block; color: var(--gold); font-family: var(--font-heading); font-size: 2rem;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}
.hero-stat-label { color: rgba(255,255,255,0.5); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; }
.hero-scroll {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2;
    animation: bounce 2s infinite;
}
.hero-scroll a { color: rgba(255,255,255,0.4); font-size: 1.5rem; }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(10px); } }

/* --- PAGE HERO --- */
.page-hero {
    position: relative; padding: 180px 0 100px; text-align: center; overflow: hidden;
}
.page-hero-sm { padding: 160px 0 80px; }
.page-hero-content { position: relative; z-index: 2; }
.page-hero-title { color: #fff; margin-bottom: 16px; }
.page-hero-subtitle { color: rgba(255,255,255,0.6); font-size: 1.1rem; max-width: 600px; margin: 0 auto; font-weight: 300; }

/* --- SECTIONS --- */
.section { padding: 100px 0; }
.section-dark { background: var(--surface); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-badge {
    display: inline-block; padding: 6px 20px; background: rgba(233, 69, 96, 0.1);
    border: 1px solid rgba(233, 69, 96, 0.15); border-radius: 50px; color: var(--accent);
    font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
    margin-bottom: 16px;
}
.section-badge i { color: var(--gold); margin-right: 6px; font-size: 0.65rem; }
.section-title { margin-bottom: 16px; }
.section-subtitle { color: var(--text-muted); font-size: 1.05rem; max-width: 550px; margin: 0 auto; font-weight: 300; }

/* --- MODELS GRID — Overlapping cards --- */
.models-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.model-card {
    border-radius: var(--radius); overflow: hidden; background: var(--surface);
    box-shadow: var(--shadow); transition: all 0.4s ease; position: relative;
    z-index: calc(1 + var(--card-index, 0));
}
.model-card:hover {
    transform: translateY(-12px) scale(1.03);
    z-index: 20;
    box-shadow: 0 20px 60px rgba(233, 69, 96, 0.3), 0 0 30px rgba(233, 69, 96, 0.15);
}
.model-image { position: relative; overflow: hidden; aspect-ratio: 4/5; }
.model-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.model-card:hover .model-image img { transform: scale(1.08); }
.model-neon-border {
    position: absolute; inset: 0;
    border: 2px solid transparent;
    border-image: var(--gradient-pink-gold) 1;
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
}
.model-card:hover .model-neon-border { opacity: 1; }
.model-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(14,14,18,0.9), transparent 50%);
    opacity: 0; transition: var(--transition); display: flex; align-items: flex-end; padding: 20px;
}
.model-card:hover .model-overlay { opacity: 1; }
.model-details { display: flex; gap: 16px; color: #fff; font-size: 0.85rem; }
.model-details i { color: var(--gold); margin-right: 4px; }
.model-info { padding: 20px; }
.model-name { font-size: 1.15rem; margin-bottom: 4px; }
.model-specialty { color: var(--accent); font-size: 0.85rem; font-weight: 500; }

/* --- SERVICES --- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.service-card {
    background: var(--surface); border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius); padding: 40px 30px; transition: var(--transition);
    position: relative; overflow: hidden;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(233, 69, 96, 0.15);
}
.service-icon, .neon-icon {
    width: 60px; height: 60px; border-radius: var(--radius-sm);
    background: rgba(233, 69, 96, 0.1);
    display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
    color: var(--accent); margin-bottom: 16px;
    transition: var(--transition);
}
.service-card:hover .neon-icon {
    box-shadow: 0 0 20px rgba(233, 69, 96, 0.3);
    background: rgba(233, 69, 96, 0.15);
}
.service-stat {
    font-family: var(--font-heading); font-size: 2rem; color: var(--gold);
    margin-bottom: 8px; text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}
.service-title { margin-bottom: 12px; }
.service-desc { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 20px; font-weight: 300; }
.service-link { color: var(--accent); font-weight: 600; font-size: 0.9rem; }
.service-link:hover { color: var(--gold); }
.service-link i { transition: transform var(--transition); }
.service-link:hover i { transform: translateX(4px); }

/* --- SERVICES DETAILED --- */
.service-detailed-card {
    display: flex; align-items: center; gap: 60px; padding: 60px 0;
    border-bottom: 1px solid var(--gray-light);
}
.service-detailed-card:last-child { border-bottom: none; }
.service-detailed-card.reverse { flex-direction: row-reverse; }
.service-detailed-icon { flex-shrink: 0; text-align: center; position: relative; }
.service-icon-large, .neon-icon-large {
    width: 120px; height: 120px; border-radius: 50%;
    background: rgba(233, 69, 96, 0.1);
    display: flex; align-items: center; justify-content: center; font-size: 2.5rem;
    color: var(--accent); margin: 0 auto 16px;
    box-shadow: 0 0 30px rgba(233, 69, 96, 0.15);
    transition: var(--transition);
}
.service-detailed-card:hover .neon-icon-large {
    box-shadow: 0 0 40px rgba(233, 69, 96, 0.3), 0 0 60px rgba(233, 69, 96, 0.1);
}
.service-number { font-family: var(--font-heading); font-size: 4rem; color: var(--gray-light); position: absolute; top: -20px; right: -20px; }
.service-detailed-title { font-size: 1.8rem; margin-bottom: 16px; }
.service-detailed-desc { color: var(--text-muted); margin-bottom: 24px; font-size: 1.05rem; font-weight: 300; }
.service-features { margin-bottom: 24px; }
.service-features li { padding: 8px 0; display: flex; align-items: center; gap: 12px; color: var(--text); }
.service-features li i { color: var(--gold); font-size: 0.85rem; }

/* --- PROCESS STEPS --- */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.process-step { text-align: center; padding: 30px 20px; border-radius: var(--radius); }
.process-step-number {
    font-family: var(--font-heading); font-size: 3rem; color: var(--accent);
    margin-bottom: 16px; line-height: 1;
    text-shadow: 0 0 20px rgba(233, 69, 96, 0.3);
}
.process-step h3 { color: #fff; margin-bottom: 12px; }
.process-step p { color: var(--text-muted); font-size: 0.95rem; font-weight: 300; }

/* --- TESTIMONIALS --- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.testimonial-card {
    background: var(--surface); border-radius: var(--radius); padding: 36px;
    box-shadow: var(--shadow); transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.05);
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(233, 69, 96, 0.15);
    border-color: rgba(233, 69, 96, 0.2);
}
.testimonial-stars { color: var(--gold); margin-bottom: 16px; font-size: 0.9rem; display: flex; gap: 2px; text-shadow: 0 0 8px rgba(255,215,0,0.4); }
.testimonial-text { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 24px; font-style: italic; line-height: 1.8; font-weight: 300; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--accent); box-shadow: 0 0 10px rgba(233,69,96,0.3); }
.testimonial-name { display: block; font-weight: 700; font-size: 0.95rem; color: var(--light); }
.testimonial-role { color: var(--accent); font-size: 0.8rem; font-weight: 500; }

/* --- CTA SECTION --- */
.cta-section { position: relative; padding: 100px 0; overflow: hidden; }
.cta-content { position: relative; z-index: 2; text-align: center; }
.cta-title { color: #fff; margin-bottom: 16px; }
.cta-subtitle { color: rgba(255,255,255,0.6); font-size: 1.1rem; max-width: 550px; margin: 0 auto 32px; font-weight: 300; }

/* --- ABOUT --- */
.about-story { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }
.about-story-image { position: relative; border-radius: var(--radius); overflow: hidden; }
.about-story-image img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); }
.about-image-glow {
    position: absolute; inset: -2px; border-radius: var(--radius);
    background: var(--gradient-pink-gold); opacity: 0.3; z-index: -1; filter: blur(15px);
}
.about-story-badge, .glow-badge {
    position: absolute; bottom: 24px; right: 24px; background: var(--accent);
    color: #fff; padding: 16px 24px; border-radius: var(--radius-sm); text-align: center;
    box-shadow: var(--glow-pink);
}
.badge-number { display: block; font-family: var(--font-heading); font-size: 2.5rem; line-height: 1; }
.badge-text { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; }
.about-story-content p { color: var(--text-muted); margin-bottom: 16px; font-weight: 300; }
.about-values { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.about-value { display: flex; align-items: flex-start; gap: 16px; }
.about-value i { color: var(--gold); font-size: 1.2rem; margin-top: 4px; flex-shrink: 0; filter: drop-shadow(0 0 4px rgba(255,215,0,0.4)); }
.about-value strong { display: block; margin-bottom: 2px; color: var(--light); }
.about-value span { color: var(--text-muted); font-size: 0.9rem; font-weight: 300; }

/* --- STATS BAR --- */
.stats-bar { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 30px; padding: 40px 0; }
.stat-item { text-align: center; }
.stat-number { display: block; font-family: var(--font-heading); font-size: 3rem; color: var(--accent); line-height: 1; margin-bottom: 8px; }
.stat-label { color: var(--text-muted); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.08em; }

/* --- TEAM --- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.team-card {
    background: var(--surface); border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow); transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.05);
}
.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(233, 69, 96, 0.2);
    border-color: rgba(233, 69, 96, 0.2);
}
.team-image { aspect-ratio: 4/5; overflow: hidden; position: relative; }
.team-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.team-card:hover .team-image img { transform: scale(1.05); }
.team-image-glow {
    position: absolute; bottom: 0; left: 0; right: 0; height: 50%;
    background: linear-gradient(to top, rgba(233, 69, 96, 0.1), transparent);
    opacity: 0; transition: var(--transition);
}
.team-card:hover .team-image-glow { opacity: 1; }
.team-info { padding: 20px; }
.team-name { font-size: 1.1rem; margin-bottom: 4px; }
.team-role { color: var(--gold); font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.team-bio { color: var(--text-muted); font-size: 0.9rem; margin-top: 10px; font-weight: 300; }

/* --- TIMELINE --- */
.timeline-items { position: relative; padding-left: 40px; margin-top: 40px; }
.timeline-items::before {
    content: ''; position: absolute; left: 7px; top: 0; bottom: 0; width: 2px;
    background: linear-gradient(to bottom, var(--accent), var(--gold));
}
.timeline-item { position: relative; margin-bottom: 40px; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-marker {
    position: absolute; left: -40px; top: 4px; width: 16px; height: 16px;
    border-radius: 50%; background: var(--accent); border: 3px solid var(--surface);
    box-shadow: 0 0 10px rgba(233, 69, 96, 0.4);
}
.timeline-content {
    background: rgba(255,255,255,0.03); border-radius: var(--radius-sm);
    padding: 24px; border: 1px solid rgba(255,255,255,0.06);
    transition: var(--transition);
}
.timeline-content:hover {
    border-color: rgba(233, 69, 96, 0.2);
    box-shadow: 0 0 20px rgba(233, 69, 96, 0.1);
}
.timeline-year { color: var(--gold); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; }
.timeline-content h3 { color: #fff; margin: 8px 0; }
.timeline-content p { color: var(--text-muted); font-size: 0.95rem; font-weight: 300; }

/* --- PRICING --- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; align-items: start; }
.pricing-card {
    background: var(--surface); border-radius: var(--radius); padding: 40px 32px;
    box-shadow: var(--shadow); transition: var(--transition); position: relative;
    border: 2px solid rgba(255,255,255,0.05); overflow: hidden;
}
.pricing-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.pricing-highlighted {
    border-color: transparent; transform: scale(1.05);
    box-shadow: 0 0 40px rgba(233, 69, 96, 0.2), 0 0 80px rgba(233, 69, 96, 0.1);
}
.pricing-highlighted:hover { transform: scale(1.05) translateY(-5px); }

/* Animated rotating border for highlighted plan */
.pricing-rotating-border {
    position: absolute; inset: -2px; border-radius: calc(var(--radius) + 2px);
    background: conic-gradient(from 0deg, var(--accent), var(--gold), var(--accent), var(--gold), var(--accent));
    z-index: -1;
    animation: rotateBorder 4s linear infinite;
}
.pricing-highlighted::after {
    content: '';
    position: absolute; inset: 2px; border-radius: calc(var(--radius) - 2px);
    background: var(--surface); z-index: 0;
}
.pricing-highlighted > * { position: relative; z-index: 1; }
@keyframes rotateBorder {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.pricing-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--gradient-pink-gold); color: var(--bg); padding: 6px 24px;
    border-radius: 50px; font-size: 0.8rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.05em; white-space: nowrap; z-index: 2;
}
.pricing-header { text-align: center; padding-bottom: 24px; border-bottom: 1px solid var(--gray-light); margin-bottom: 24px; }
.pricing-name { font-size: 1.5rem; margin-bottom: 8px; }
.pricing-description { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 20px; font-weight: 300; }
.pricing-price { display: flex; align-items: baseline; justify-content: center; gap: 2px; }
.pricing-currency { font-size: 1.5rem; font-weight: 700; color: var(--gold); }
.pricing-amount {
    font-family: var(--font-heading); font-size: 3.5rem; color: var(--light); line-height: 1;
}
.pricing-period { color: var(--text-muted); font-size: 0.9rem; }
.pricing-features { margin-bottom: 32px; }
.pricing-features li { padding: 10px 0; display: flex; align-items: center; gap: 12px; font-size: 0.9rem; border-bottom: 1px solid rgba(255,255,255,0.05); color: var(--text); }
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li i { color: var(--gold); font-size: 0.8rem; flex-shrink: 0; }
.pricing-footer { text-align: center; }
.pricing-note {
    display: flex; gap: 20px; margin-top: 60px; padding: 30px;
    background: var(--surface); border-radius: var(--radius);
    border-left: 4px solid var(--accent); box-shadow: var(--shadow);
}
.pricing-note-icon { color: var(--accent); font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.pricing-note h4 { margin-bottom: 8px; }
.pricing-note p { color: var(--text-muted); font-size: 0.9rem; font-weight: 300; }
.pricing-note a { color: var(--accent); font-weight: 600; }

/* --- COMPARISON TABLE --- */
.comparison-table-wrapper { overflow-x: auto; }
.comparison-table { width: 100%; border-collapse: collapse; background: rgba(255,255,255,0.02); border-radius: var(--radius); overflow: hidden; }
.comparison-table th, .comparison-table td { padding: 16px 24px; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.05); }
.comparison-table th { background: rgba(255,255,255,0.03); color: #fff; font-family: var(--font-heading); font-size: 1.1rem; }
.comparison-table td:first-child { text-align: left; color: var(--text); font-weight: 500; }
.comparison-table td { color: var(--text-muted); }
.highlight-col { background: rgba(233, 69, 96, 0.06); }
.comparison-table th.highlight-col { color: var(--accent); }

/* --- EVENTS --- */
.events-controls { margin-bottom: 40px; }
.events-month-nav { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.events-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.month-btn.active, .filter-btn.active {
    background: var(--accent); color: #fff; border-color: var(--accent);
    box-shadow: 0 0 15px rgba(233, 69, 96, 0.3);
}
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; min-height: 200px; }
.events-loading { grid-column: 1/-1; text-align: center; padding: 60px; color: var(--text-muted); }
.events-loading i { font-size: 2rem; color: var(--accent); margin-bottom: 12px; display: block; }
.event-card {
    background: var(--surface); border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow); transition: var(--transition); cursor: pointer;
    border: 1px solid rgba(255,255,255,0.05);
}
.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(233, 69, 96, 0.2);
    border-color: rgba(233, 69, 96, 0.2);
}
.event-card-header {
    background: linear-gradient(135deg, rgba(233,69,96,0.15), rgba(255,215,0,0.1));
    color: #fff; padding: 20px 24px; position: relative; overflow: hidden;
}
.event-card-header::after {
    content: ''; position: absolute; top: 0; right: 0; width: 80px; height: 80px;
    background: rgba(255, 215, 0, 0.1); border-radius: 0 0 0 80px;
}
.event-date { font-family: var(--font-heading); font-size: 1.1rem; }
.event-time { color: var(--text-muted); font-size: 0.85rem; }
.event-card-body { padding: 24px; }
.event-category {
    display: inline-block; padding: 4px 12px; background: rgba(233, 69, 96, 0.1);
    color: var(--accent); font-size: 0.75rem; font-weight: 600; border-radius: 50px;
    text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 12px;
}
.event-card-body h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--light); }
.event-venue { color: var(--text-muted); font-size: 0.85rem; display: flex; align-items: center; gap: 6px; }
.event-venue i { color: var(--gold); }
.event-price { margin-top: 12px; font-weight: 700; color: var(--light); font-size: 0.9rem; }
.events-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
.events-pagination button {
    width: 40px; height: 40px; border-radius: var(--radius-sm); border: 2px solid var(--gray-light);
    background: var(--surface); color: var(--text); font-weight: 600; cursor: pointer; transition: var(--transition);
}
.events-pagination button.active, .events-pagination button:hover {
    background: var(--accent); color: #fff; border-color: var(--accent);
    box-shadow: 0 0 15px rgba(233, 69, 96, 0.3);
}

/* --- MODAL --- */
.modal-overlay {
    position: fixed; inset: 0; background: rgba(14, 14, 18, 0.9); backdrop-filter: blur(8px);
    z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 24px;
    opacity: 0; visibility: hidden; transition: var(--transition);
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal {
    background: var(--surface); border-radius: var(--radius-lg); max-width: 600px; width: 100%;
    max-height: 80vh; overflow-y: auto; position: relative;
    transform: translateY(20px) scale(0.95); transition: var(--transition);
    border: 1px solid rgba(233, 69, 96, 0.2);
    box-shadow: 0 0 60px rgba(233, 69, 96, 0.15);
}
.modal-overlay.active .modal { transform: translateY(0) scale(1); }
.modal-close {
    position: absolute; top: 16px; right: 16px; width: 40px; height: 40px;
    border-radius: 50%; border: none; background: var(--bg); color: var(--text);
    font-size: 1.1rem; cursor: pointer; transition: var(--transition);
    display: flex; align-items: center; justify-content: center; z-index: 10;
}
.modal-close:hover { background: var(--accent); color: #fff; box-shadow: var(--glow-pink); }
.modal-body { padding: 40px; }
.modal-body h2 { margin-bottom: 8px; font-size: 1.5rem; color: var(--light); }
.modal-body .modal-meta { display: flex; flex-wrap: wrap; gap: 16px; color: var(--text-muted); font-size: 0.9rem; margin-bottom: 20px; }
.modal-body .modal-meta i { color: var(--gold); margin-right: 4px; }
.modal-body .modal-desc { color: var(--text-muted); margin-bottom: 24px; line-height: 1.8; font-weight: 300; }
.modal-body .modal-details { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }
.modal-detail { background: var(--bg); padding: 16px; border-radius: var(--radius-sm); }
.modal-detail strong { display: block; font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.modal-detail span { font-weight: 600; color: var(--light); }

/* --- FAQ --- */
.faq-accordion { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    background: var(--surface); border-radius: var(--radius);
    box-shadow: var(--shadow); overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}
.faq-item:hover { border-color: rgba(233, 69, 96, 0.15); }
.faq-item.active { border-color: rgba(233, 69, 96, 0.3); box-shadow: 0 0 20px rgba(233,69,96,0.1); }
.faq-question {
    width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 24px 28px; border: none; background: none; cursor: pointer;
    font-family: var(--font-body); font-size: 1rem; font-weight: 600; color: var(--text);
    text-align: left; transition: var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-icon { color: var(--accent); font-size: 0.9rem; transition: transform var(--transition); flex-shrink: 0; }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p { padding: 0 28px 24px; color: var(--text-muted); line-height: 1.8; font-weight: 300; }
.faq-cta {
    text-align: center; margin-top: 60px; padding: 48px;
    background: var(--surface); border-radius: var(--radius);
    box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,0.05);
}
.faq-cta h3 { margin-bottom: 8px; }
.faq-cta p { color: var(--text-muted); margin-bottom: 24px; font-weight: 300; }
.faq-cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* --- CONTACT --- */
.contact-layout { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; }
.contact-form-wrapper h2 { margin-bottom: 8px; }
.contact-form-wrapper > p { color: var(--text-muted); margin-bottom: 32px; font-weight: 300; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 6px; color: var(--text); }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 16px; border: 2px solid var(--gray-light);
    border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 0.95rem;
    color: var(--text); background: var(--bg); transition: var(--transition);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray); }
.form-group select { color: var(--text-muted); }
.form-group select option { background: var(--surface); color: var(--text); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.15), 0 0 15px rgba(233, 69, 96, 0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.checkbox-label { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; cursor: pointer; color: var(--text-muted); }
.checkbox-label input { margin-top: 4px; accent-color: var(--accent); }
.checkbox-label a { color: var(--accent); font-weight: 600; }
.contact-sidebar { display: flex; flex-direction: column; gap: 24px; }
.contact-info-card {
    background: var(--surface); border-radius: var(--radius); padding: 28px;
    box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,0.05);
}
.contact-info-card h3 { font-size: 1.1rem; margin-bottom: 20px; }
.contact-info-list { display: flex; flex-direction: column; gap: 20px; }
.contact-info-list li { display: flex; gap: 16px; }
.contact-info-icon {
    width: 44px; height: 44px; border-radius: var(--radius-sm);
    background: rgba(233, 69, 96, 0.1);
    display: flex; align-items: center; justify-content: center; color: var(--accent);
    flex-shrink: 0; font-size: 0.9rem;
}
.contact-info-list strong { display: block; font-size: 0.9rem; margin-bottom: 2px; color: var(--light); }
.contact-info-list span, .contact-info-list a { color: var(--text-muted); font-size: 0.9rem; }
.contact-info-list a:hover { color: var(--accent); }
.contact-social { display: flex; flex-direction: column; gap: 10px; }
.contact-social a { display: flex; align-items: center; gap: 10px; color: var(--text-muted); font-size: 0.9rem; padding: 8px 0; }
.contact-social a:hover { color: var(--accent); }
.contact-social a i { width: 24px; text-align: center; }

/* --- LEGAL CONTENT --- */
.legal-content h2 { font-size: 1.5rem; margin: 40px 0 16px; padding-top: 20px; border-top: 1px solid var(--gray-light); }
.legal-content h2:first-child { margin-top: 0; border-top: none; padding-top: 0; }
.legal-content h3 { font-size: 1.15rem; margin: 24px 0 12px; }
.legal-content p { color: var(--text-muted); margin-bottom: 16px; font-weight: 300; }
.legal-content ul { margin-bottom: 16px; padding-left: 24px; }
.legal-content ul li { color: var(--text-muted); padding: 4px 0; list-style: disc; font-weight: 300; }
.legal-content a { color: var(--accent); font-weight: 600; }
.legal-table { width: 100%; border-collapse: collapse; margin: 16px 0 24px; }
.legal-table th, .legal-table td { padding: 12px 16px; border: 1px solid var(--gray-light); text-align: left; font-size: 0.9rem; }
.legal-table th { background: var(--surface); font-weight: 700; color: var(--light); }
.legal-table td { color: var(--text-muted); }

/* --- 404 PAGE --- */
.error-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 120px 24px 60px; position: relative; overflow: hidden; }
.error-content { text-align: center; max-width: 600px; position: relative; z-index: 2; }
.error-icon { font-size: 4rem; color: var(--gold); margin-bottom: 16px; filter: drop-shadow(0 0 15px rgba(255,215,0,0.4)); }
.error-code { font-family: var(--font-heading); font-size: 8rem; line-height: 1; margin-bottom: 16px; color: var(--light); }
.error-title { font-size: 1.8rem; margin-bottom: 16px; }
.error-text { color: var(--text-muted); margin-bottom: 32px; font-weight: 300; }
.error-actions { display: flex; gap: 16px; justify-content: center; margin-bottom: 48px; flex-wrap: wrap; }
.error-links p { color: var(--text-muted); margin-bottom: 12px; }
.error-links ul { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }
.error-links a { color: var(--accent); font-weight: 600; }
.error-links a:hover { color: var(--gold); }

/* --- FOOTER --- */
.footer { background: var(--surface); color: var(--text-muted); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.footer-brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-heading); color: #fff; font-size: 1.2rem; margin-bottom: 16px; }
.footer-brand .brand-icon { color: var(--gold); }
.footer-description { font-size: 0.9rem; margin-bottom: 20px; line-height: 1.7; font-weight: 300; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 38px; height: 38px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.5); font-size: 0.9rem; transition: var(--transition);
}
.footer-social a:hover {
    background: var(--accent); border-color: var(--accent); color: #fff;
    box-shadow: 0 0 15px rgba(233, 69, 96, 0.3);
}
.footer-heading { color: var(--light); font-size: 1rem; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 0.9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--accent); padding-left: 4px; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 14px; font-size: 0.9rem; font-weight: 300; }
.footer-contact li i { color: var(--gold); margin-top: 4px; flex-shrink: 0; width: 16px; }
.footer-contact a { color: rgba(255,255,255,0.5); }
.footer-contact a:hover { color: var(--accent); }
.footer-newsletter { display: flex; gap: 0; margin-top: 8px; }
.footer-newsletter input {
    flex: 1; padding: 10px 14px; border: 1px solid rgba(255,255,255,0.1);
    border-right: none; border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    background: var(--bg); color: #fff; font-family: var(--font-body);
    font-size: 0.85rem;
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.25); }
.footer-newsletter input:focus { outline: none; border-color: var(--accent); }
.footer-newsletter button {
    padding: 10px 16px; background: var(--accent); border: 1px solid var(--accent); color: #fff;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0; cursor: pointer; transition: var(--transition);
}
.footer-newsletter button:hover { background: var(--accent-hover); box-shadow: 0 0 15px rgba(233,69,96,0.3); }
.footer-bottom { text-align: center; padding: 24px 0; font-size: 0.85rem; color: rgba(255,255,255,0.3); }

/* --- SCROLL TO TOP --- */
.scroll-top {
    position: fixed; bottom: 30px; right: 30px; width: 48px; height: 48px;
    border-radius: 50%; background: var(--accent); color: #fff; border: none;
    font-size: 1rem; cursor: pointer; z-index: 900; opacity: 0; visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--glow-pink);
    display: flex; align-items: center; justify-content: center;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-3px); background: var(--accent-hover); box-shadow: 0 0 30px rgba(233,69,96,0.5); }

/* --- COOKIE BANNER --- */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; background: var(--surface);
    color: var(--text-muted); padding: 20px 0; z-index: 1500;
    transform: translateY(100%); transition: transform 0.4s ease;
    border-top: 1px solid rgba(233, 69, 96, 0.2);
    box-shadow: 0 -5px 30px rgba(233, 69, 96, 0.1);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-content { max-width: var(--container); margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.cookie-content p { font-size: 0.9rem; flex: 1; font-weight: 300; }
.cookie-content a { color: var(--accent); font-weight: 600; }
.cookie-buttons { display: flex; gap: 12px; flex-shrink: 0; }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .models-grid, .services-grid, .testimonials-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .about-story { grid-template-columns: 1fr; gap: 40px; }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .events-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-highlighted { transform: scale(1); }
    .pricing-highlighted:hover { transform: translateY(-5px); }
    .service-detailed-card, .service-detailed-card.reverse { flex-direction: column; gap: 30px; }
    .hero-model-image { display: none; }
}

@media (max-width: 768px) {
    .navbar-menu {
        position: fixed; top: var(--navbar-h); left: 0; right: 0;
        background: rgba(14, 14, 18, 0.98);
        flex-direction: column; padding: 24px; gap: 4px;
        transform: translateY(-120%); transition: transform 0.4s ease;
        border-bottom: 1px solid rgba(233, 69, 96, 0.1);
    }
    .navbar-menu.active { transform: translateY(0); }
    .nav-link { width: 100%; padding: 12px 16px; }
    .navbar-toggle { display: block; }
    .navbar-toggle.active .hamburger-line:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .navbar-toggle.active .hamburger-line:nth-child(2) { opacity: 0; }
    .navbar-toggle.active .hamburger-line:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    .models-grid, .services-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-stats { gap: 24px; }
    .stats-bar { gap: 16px; }
    .stat-number { font-size: 2.2rem; }
    .contact-layout { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .section { padding: 70px 0; }
    .page-hero { padding: 140px 0 70px; }
    .events-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .comparison-table th, .comparison-table td { padding: 10px 12px; font-size: 0.85rem; }
    .cookie-content { flex-direction: column; text-align: center; }
    .hero-actions { flex-direction: column; align-items: center; }
    .marquee-content { font-size: 0.9rem; }
}

@media (max-width: 480px) {
    .team-grid { grid-template-columns: 1fr; }
    .hero-stats { flex-direction: column; gap: 16px; }
    .error-code { font-size: 5rem; }
    .events-month-nav { gap: 4px; }
    .month-btn { padding: 6px 10px; font-size: 0.75rem; }
}

/* Breadcrumbs */
.breadcrumbs { padding: 80px 0 12px 0; font-size: 0.85rem; opacity: 0.7; }
.breadcrumbs-list { display: flex; list-style: none; margin: 0; padding: 0; gap: 8px; }
.breadcrumbs-list li:not(:last-child)::after { content: "/"; margin-left: 8px; opacity: 0.5; }
.breadcrumbs-list a { text-decoration: none; color: inherit; }
.breadcrumbs-list a:hover { text-decoration: underline; }
.breadcrumbs-list li[aria-current] { opacity: 0.6; }
