/* Palette: Dark Graphite, Concrete Grey, Neon Lime, White */
:root {
    --bg: #121212;
    --card-bg: #1E1E1E;
    --neon: #D4FF00;
    --grey: #808080;
    --white: #F0F0F0;
    --line: #333333;
    
    --font-head: 'Space Grotesk', sans-serif;
    --font-mono: 'Space Mono', monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg);
    color: var(--white);
    font-family: var(--font-head);
    line-height: 1.6;
}

/* Noise Texture Overlay */
.noise-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-padding { padding: 100px 0; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; height: auto; display: block; filter: grayscale(20%); }

/* Header */
.header { padding: 30px 0; background: rgba(18,18,18,0.9); position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid var(--line); backdrop-filter: blur(5px); }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-head); font-weight: 700; font-size: 1.8rem; letter-spacing: -1px; }
.neon-dot { color: var(--neon); }

.nav a { margin-left: 30px; font-family: var(--font-mono); font-size: 0.8rem; color: var(--grey); }
.nav a:hover, .nav a.active { color: var(--white); }

.menu-btn { display: none; background: transparent; border: 1px solid var(--white); color: var(--white); padding: 5px 10px; cursor: pointer; font-family: var(--font-mono); }

/* Mobile Menu */
.mobile-menu { position: fixed; top: 0; right: -100%; width: 100%; height: 100%; background: var(--bg); z-index: 2000; padding: 50px; transition: 0.3s; display: flex; flex-direction: column; justify-content: center; border-left: 1px solid var(--line); }
.mobile-menu.active { right: 0; }
.close-btn { position: absolute; top: 30px; right: 30px; background: none; border: none; font-family: var(--font-mono); font-size: 1.2rem; color: var(--neon); cursor: pointer; }
.mobile-menu a { display: block; font-family: var(--font-head); font-size: 2rem; margin-bottom: 20px; font-weight: 700; }
.mobile-menu a:hover { color: var(--neon); }

@media (max-width: 900px) {
    .nav { display: none; }
    .menu-btn { display: block; }
}

/* Hero */
.hero { height: 90vh; position: relative; display: flex; align-items: center; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; filter: brightness(0.4); }
.hero-content { position: relative; z-index: 2; max-width: 800px; }

.meta-tag { font-family: var(--font-mono); font-size: 0.8rem; color: var(--neon); border: 1px solid var(--neon); padding: 5px 10px; display: inline-block; margin-bottom: 20px; }
.hero h1 { font-size: 4.5rem; line-height: 1; margin-bottom: 30px; font-weight: 700; }
.outline { -webkit-text-stroke: 1px var(--white); color: transparent; }
.hero p { font-size: 1.2rem; margin-bottom: 40px; color: #ccc; max-width: 500px; font-family: var(--font-mono); }

.hero-actions { display: flex; gap: 20px; }
.btn-neon { background: var(--neon); color: var(--bg); padding: 15px 40px; font-family: var(--font-mono); font-weight: 700; border: none; cursor: pointer; transition: 0.3s; }
.btn-neon:hover { background: var(--white); }
.btn-line { background: transparent; border: 1px solid var(--white); color: var(--white); padding: 15px 40px; font-family: var(--font-mono); font-weight: 700; transition: 0.3s; }
.btn-line:hover { border-color: var(--neon); color: var(--neon); }

/* Focus / Services */
.section-header h2 { font-size: 2.5rem; margin-bottom: 10px; }
.neon-bar { width: 60px; height: 4px; background: var(--neon); margin-bottom: 50px; }
.left { margin-right: auto; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.focus-card { border-top: 1px solid var(--line); padding-top: 20px; transition: 0.3s; }
.focus-card:hover { border-top-color: var(--neon); }
.num { font-family: var(--font-mono); color: var(--grey); font-size: 0.9rem; display: block; margin-bottom: 10px; }
.focus-card h3 { font-size: 1.5rem; margin-bottom: 15px; }
.focus-card p { color: #aaa; font-size: 0.95rem; }

/* Aesthetic Strip */
.aesthetic-strip { background: var(--card-bg); padding: 80px 0; margin-top: 50px; }
.strip-flex { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.strip-text h3 { font-size: 2.5rem; margin-bottom: 20px; }
.strip-text p { color: #ccc; margin-bottom: 30px; font-family: var(--font-mono); font-size: 0.9rem; }
.link-neon { color: var(--neon); font-family: var(--font-mono); font-weight: 700; border-bottom: 1px solid var(--neon); }
.strip-img img { border-radius: 0; filter: contrast(1.1); }

/* Projects Page */
.project-grid { display: flex; flex-direction: column; gap: 80px; }
.project-item { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: flex-end; }
.p-img { position: relative; }
.p-img img { width: 100%; height: auto; }
.p-overlay { position: absolute; bottom: 20px; left: -20px; background: var(--neon); color: var(--bg); padding: 10px 20px; font-family: var(--font-mono); font-weight: 700; }
.p-info h3 { font-size: 2rem; margin-bottom: 15px; line-height: 1.1; }
.tags { list-style: none; display: flex; gap: 15px; margin-top: 20px; font-family: var(--font-mono); font-size: 0.8rem; color: var(--grey); }

/* Studio Page */
.studio-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.studio-text h1 { font-size: 3.5rem; line-height: 1; margin-bottom: 20px; }
.stats-box { display: flex; gap: 40px; margin-top: 40px; border-top: 1px solid var(--line); padding-top: 30px; }
.stat strong { display: block; font-size: 2.5rem; color: var(--neon); line-height: 1; font-family: var(--font-head); }
.stat span { font-family: var(--font-mono); font-size: 0.8rem; color: var(--grey); }

/* Contact Page */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; background: var(--card-bg); padding: 60px; border: 1px solid var(--line); }
.contact-intro h2 { font-size: 3rem; margin-bottom: 20px; color: var(--neon); }
.contact-intro p { margin-bottom: 40px; font-family: var(--font-mono); color: #ccc; }
.contact-data p { font-family: var(--font-mono); font-size: 0.9rem; margin-bottom: 10px; color: var(--white); }

.dark-form .input-line { margin-bottom: 30px; }
.dark-form label { display: block; font-family: var(--font-mono); font-size: 0.7rem; color: var(--grey); margin-bottom: 10px; }
.dark-form input, .dark-form select, .dark-form textarea { width: 100%; background: transparent; border: none; border-bottom: 1px solid var(--white); color: var(--white); padding: 10px 0; font-family: var(--font-head); font-size: 1.1rem; }
.dark-form input:focus, .dark-form select:focus, .dark-form textarea:focus { border-bottom-color: var(--neon); outline: none; }
.full { width: 100%; margin-top: 20px; }

/* Legal */
.legal-box { max-width: 800px; margin: 0 auto; border: 1px solid var(--line); padding: 60px; background: var(--card-bg); }

/* Footer */
.footer { border-top: 1px solid var(--line); padding: 60px 0 20px; margin-top: 100px; }
.footer-content { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.f-brand h4 { font-size: 1.5rem; margin-bottom: 5px; }
.f-brand p { font-family: var(--font-mono); color: var(--grey); font-size: 0.8rem; }
.f-social a { margin-left: 20px; font-family: var(--font-mono); font-size: 0.8rem; color: var(--grey); }
.f-social a:hover { color: var(--neon); }
.copyright { text-align: center; font-family: var(--font-mono); font-size: 0.7rem; color: var(--line); }

@media (max-width: 900px) {
    .hero h1 { font-size: 3rem; }
    .grid-3, .strip-flex, .project-item, .studio-layout, .contact-wrapper { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .p-overlay { left: 0; bottom: 0; width: 100%; }
    .footer-content { flex-direction: column; gap: 20px; text-align: center; }
}