:root {
    --primary: #ffffff;
    --accent: #9e0000;
    --bg: #050505;
    --glass: rgba(255, 255, 255, 0.02);
    --border: rgba(255, 255, 255, 0.08);
    --max-w: 1100px;
}

/* Base Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background-color: var(--bg); color: var(--primary); font-family: 'Inter', sans-serif; overflow-x: hidden; line-height: 1.6; }

h1, h2, h4, .logo, .contact-title, .btn-primary, .btn-secondary { font-family: 'Sora', sans-serif; }

/* Backgrounds */
.mesh-gradient {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(at 0% 0%, hsla(0, 100%, 7%, 1) 0, transparent 50%), 
                radial-gradient(at 100% 0%, hsla(0, 0%, 15%, 1) 0, transparent 50%);
    z-index: -2;
}
.noise-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.04; pointer-events: none; z-index: -1;
}

/* Navbar */
.navbar { position: fixed; top: 0; width: 100%; z-index: 1000; backdrop-filter: blur(30px); border-bottom: 1px solid var(--border); padding: 15px 0; }
.nav-container { width: 90%; max-width: var(--max-w); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.nav-menu { display: flex; align-items: center; }
.logo { font-weight: 800; font-size: 1.4rem; color: white; text-decoration: none; letter-spacing: -1px; }
.logo span { color: var(--accent); }
.nav-link { color: #86868b; text-decoration: none; margin-left: 30px; font-size: 0.9rem; transition: 0.3s; }
.nav-link:hover { color: white; }

/* Nav Status Bubble */
.nav-status {
    margin-left: 30px;
    display: inline-flex; align-items: center; 
    background: rgba(255, 255, 255, 0.03); 
    padding: 6px 14px; border-radius: 100px; 
    border: 1px solid rgba(255, 255, 255, 0.1); 
    backdrop-filter: blur(15px);
}
.status-dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; margin-right: 8px; box-shadow: 0 0 10px var(--accent); transition: all 0.5s ease; }
.badge-text { font-size: 0.75rem; font-weight: 500; color: #fff; text-transform: capitalize; }

.nav-cta-btn { background: var(--accent); color: white; padding: 8px 20px; border-radius: 50px; text-decoration: none; font-weight: 600; margin-left: 15px; font-size: 0.85rem; cursor: pointer; transition: 0.3s; }
.nav-cta-btn:hover { filter: brightness(1.2); transform: translateY(-1px); }

/* Hero - Content moved up */
.hero { height: 90vh; display: flex; align-items: center; justify-content: center; text-align: center; padding-top: 60px; }
h1 { font-size: clamp(3.5rem, 10vw, 5.5rem); line-height: 0.95; letter-spacing: -4px; margin-bottom: 25px; }
.gradient-text { background: linear-gradient(to bottom, #fff, #444); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-subtext { max-width: 700px; margin: 0 auto 35px; color: #86868b; font-size: 1.15rem; font-weight: 300; line-height: 1.5; }

/* Buttons */
.btn-primary { background: white; color: black; padding: 16px 35px; border-radius: 50px; text-decoration: none; font-weight: 600; transition: 0.3s; border: none; font-size: 0.95rem; cursor: pointer; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
.btn-secondary { background: var(--glass); color: white; padding: 16px 35px; border-radius: 50px; text-decoration: none; font-weight: 600; border: 1px solid var(--border); backdrop-filter: blur(10px); font-size: 0.95rem; margin-left: 15px; }

/* Work Section */
.section { padding: 120px 24px; } 
.massive-header { font-size: clamp(2.6rem, 8vw, 4rem); letter-spacing: -2px; margin-bottom: 40px; text-align: center; }

.comparison-labels { max-width: var(--max-w); margin: 0 auto 15px; display: flex; justify-content: space-between; padding: 0 10px; }
.comparison-labels span { font-size: 0.75rem; font-weight: 600; letter-spacing: 2px; color: #444; }

.comparison-wrapper { max-width: var(--max-w); margin: 0 auto; border-radius: 20px; overflow: hidden; border: 1px solid var(--border); position: relative; aspect-ratio: 16/9; }
.comparison-container { position: relative; width: 100%; height: 100%; overflow: hidden; }

.image-before { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: url('images/before1.png'); background-size: cover; background-position: center; }
.image-after-clip { position: absolute; top: 0; left: 0; height: 100%; width: 50%; overflow: hidden; z-index: 2; border-right: 4px solid var(--accent); }
.image-after { width: 1100px; height: 100%; background-image: url('images/after1.png'); background-size: cover; background-position: center; }

.slider-input { position: absolute; inset: 0; width: 100%; height: 100%; -webkit-appearance: none; background: transparent; z-index: 10; cursor: ew-resize; }
.slider-input::-webkit-slider-thumb { -webkit-appearance: none; width: 50px; height: 100vh; background: transparent; }
.slider-line { position: absolute; top: 0; left: 50%; height: 100%; width: 4px; background: var(--accent); z-index: 3; pointer-events: none; transform: translateX(-50%); box-shadow: 0 0 20px rgba(158, 0, 0, 0.4); }

/* Contact Glass */
.booking-glass { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; background: var(--glass); border: 1px solid var(--border); border-radius: 50px; padding: 80px; backdrop-filter: blur(40px); max-width: var(--max-w); margin: 0 auto; position: relative; }
.contact-title { font-size: 3.5rem; letter-spacing: -2px; color: var(--accent); margin-bottom: 20px; }
.contact-desc { font-size: 1.1rem; color: #86868b; margin-bottom: 40px; }
.c-item { margin-top: 35px; }
.c-item strong { display: block; color: #444; text-transform: uppercase; font-size: 0.7rem; letter-spacing: 2px; margin-bottom: 5px; }
.c-item a { color: white; text-decoration: none; font-size: 1.5rem; transition: color 0.3s; }
.studio-form input, .studio-form textarea { width: 100%; background: rgba(255,255,255,0.03); border: 1px solid var(--border); padding: 18px; border-radius: 12px; color: white; margin-bottom: 20px; outline: none; font-family: 'Inter'; }
.full-width { width: 100%; }

/* Footer */
.footer { padding: 120px 24px 60px; border-top: 1px solid var(--border); margin-top: 100px; }
.footer-container { max-width: var(--max-w); margin: 0 auto; }
.footer-top { display: flex; justify-content: space-between; margin-bottom: 80px; }
.footer-links { display: flex; gap: 60px; }
.link-group a { display: block; color: #86868b; text-decoration: none; margin-bottom: 10px; font-size: 0.9rem; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 40px; display: flex; justify-content: space-between; color: #444; font-size: 0.8rem; }

/* Reveal Animations */
.reveal { opacity: 0; transform: translateY(40px); transition: all 1s cubic-bezier(0.2, 1, 0.3, 1); }

@media (max-width: 900px) {
    .booking-glass { grid-template-columns: 1fr; padding: 40px; gap: 40px; }
    .nav-status { display: none; } /* Hides status on mobile to save space */
    .hero-actions { display: flex; flex-direction: column; gap: 15px; align-items: center; }
    .btn-secondary { margin-left: 0; }
}