/* Palette: Concrete Grey, Acid Lime, Black, White */
:root {
    --bg: #EAEAEA;
    --dark: #111111;
    --lime: #CCFF00;
    --concrete: #999999;
    --text: #222222;
    
    --font-head: 'Archivo Black', sans-serif;
    --font-mono: 'Space Mono', monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-mono);
    line-height: 1.5;
}

.container { width: 92%; max-width: 1400px; margin: 0 auto; }
.section-padding { padding: 120px 0; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; height: auto; display: block; filter: grayscale(100%); transition: 0.5s; }
img:hover { filter: grayscale(0%); }

/* Header */
.raw-header { padding: 30px 0; position: fixed; top: 0; width: 100%; z-index: 1000; background: rgba(234, 234, 234, 0.9); backdrop-filter: blur(5px); border-bottom: 1px solid var(--dark); }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-head); font-size: 2rem; color: var(--dark); letter-spacing: -2px; }
.lime-block { background: var(--lime); padding: 0 5px; }

.mono-nav a { margin-left: 30px; font-weight: 700; color: var(--concrete); }
.mono-nav a:hover, .mono-nav a.active { color: var(--dark); text-decoration: line-through; text-decoration-color: var(--lime); text-decoration-thickness: 3px; }

.burger-raw { display: none; background: var(--dark); color: var(--lime); border: none; padding: 10px 20px; font-family: var(--font-head); cursor: pointer; }

/* Mobile Menu */
.mobile-menu { position: fixed; top: 0; right: -100%; width: 100%; height: 100%; background: var(--dark); z-index: 2000; display: flex; flex-direction: column; justify-content: center; align-items: center; transition: 0.3s; }
.mobile-menu.active { right: 0; }
.close-raw { position: absolute; top: 30px; right: 30px; background: none; border: 1px solid var(--lime); color: var(--lime); padding: 10px; cursor: pointer; font-family: var(--font-mono); }
.mobile-menu a { font-family: var(--font-head); font-size: 3rem; color: var(--bg); margin: 10px 0; }
.mobile-menu a:hover { color: var(--lime); }

@media (max-width: 900px) {
    .mono-nav { display: none; }
    .burger-raw { display: block; }
}

/* Hero */
.hero-raw { height: 90vh; position: relative; display: flex; align-items: center; border-bottom: 1px solid var(--dark); }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; filter: grayscale(100%); z-index: -1; }
.hero-content { padding-left: 5%; max-width: 900px; }

.label-box { background: var(--lime); color: var(--dark); display: inline-block; padding: 5px 10px; font-weight: 700; margin-bottom: 20px; }
.hero-content h1 { font-family: var(--font-head); font-size: 6rem; line-height: 0.85; margin-bottom: 30px; color: var(--white); text-shadow: 2px 2px 0 var(--dark); }
.hero-content p { font-size: 1.2rem; color: var(--white); background: var(--dark); display: inline; box-shadow: 5px 0 0 var(--dark), -5px 0 0 var(--dark); line-height: 1.8; }

.btn-lime { display: inline-block; background: var(--lime); color: var(--dark); padding: 20px 40px; font-family: var(--font-head); margin-top: 40px; border: 2px solid var(--dark); box-shadow: 5px 5px 0 var(--dark); transition: 0.2s; }
.btn-lime:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--dark); }

/* Services */
.section-head { border-bottom: 5px solid var(--dark); padding-bottom: 20px; margin-bottom: 60px; }
.section-head h2 { font-family: var(--font-head); font-size: 4rem; margin: 0; }
.scrolling-text { white-space: nowrap; overflow: hidden; color: var(--concrete); font-weight: 700; }

.raw-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.raw-card { border: 1px solid var(--dark); padding: 30px; transition: 0.3s; background: var(--bg); }
.raw-card:hover { background: var(--dark); color: var(--lime); }
.raw-card .num { font-family: var(--font-head); font-size: 2rem; color: var(--lime); display: block; margin-bottom: 10px; }
.raw-card h3 { font-family: var(--font-head); font-size: 1.5rem; margin-bottom: 15px; }

/* Marquee */
.project-marquee { background: var(--lime); color: var(--dark); padding: 15px 0; overflow: hidden; border-top: 1px solid var(--dark); border-bottom: 1px solid var(--dark); }
.marquee-content { white-space: nowrap; animation: marquee 20s linear infinite; font-family: var(--font-head); font-size: 1.2rem; }
@keyframes marquee { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }

/* About */
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-txt h1 { font-family: var(--font-head); font-size: 5rem; line-height: 0.9; margin-bottom: 20px; }
.lime-line { width: 100px; height: 10px; background: var(--lime); margin-bottom: 30px; }
.lead { font-weight: 700; font-size: 1.2rem; margin-bottom: 20px; }
.specs-list { margin-top: 40px; font-weight: 700; }
.about-img img { box-shadow: 10px 10px 0 var(--dark); border: 2px solid var(--dark); }

/* Stories */
.reviews-stack { display: flex; flex-direction: column; gap: 30px; max-width: 800px; margin: 0 auto; }
.review-item { background: var(--white); border: 2px solid var(--dark); padding: 30px; position: relative; }
.review-item.highlight { background: var(--dark); color: var(--bg); }
.meta { font-size: 0.8rem; border-bottom: 1px dashed var(--concrete); padding-bottom: 10px; margin-bottom: 15px; }
.client { text-align: right; font-weight: 700; margin-top: 15px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; }
.c-info h2 { font-family: var(--font-head); font-size: 4rem; line-height: 0.9; margin-bottom: 30px; }
.c-details { border-left: 5px solid var(--lime); padding-left: 20px; font-weight: 700; line-height: 2; }

.raw-form .input-wrap { margin-bottom: 20px; }
.raw-form label { display: block; font-weight: 700; margin-bottom: 5px; background: var(--dark); color: var(--lime); display: inline-block; padding: 2px 5px; }
.raw-form input, .raw-form select, .raw-form textarea { width: 100%; background: transparent; border: 2px solid var(--dark); padding: 15px; font-family: var(--font-mono); font-size: 1rem; color: var(--dark); }
.raw-form input:focus { background: var(--white); outline: none; }
.btn-submit { width: 100%; background: var(--dark); color: var(--lime); border: none; padding: 20px; font-family: var(--font-head); font-size: 1.2rem; cursor: pointer; transition: 0.3s; }
.btn-submit:hover { background: var(--lime); color: var(--dark); }

/* Footer */
.raw-footer { background: var(--dark); color: var(--concrete); padding: 60px 0 20px; margin-top: 100px; }
.footer-grid { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; border-bottom: 1px solid #333; padding-bottom: 30px; }
.f-brand h4 { color: var(--white); font-family: var(--font-head); margin-bottom: 5px; }
.f-links a { margin-left: 20px; font-weight: 700; color: var(--white); }
.f-links a:hover { color: var(--lime); }
.copyright { text-align: center; font-size: 0.8rem; }

@media (max-width: 900px) {
    .hero-content h1 { font-size: 3rem; }
    .raw-grid, .about-layout, .contact-grid { grid-template-columns: 1fr; }
    .hero-content { padding-left: 20px; }
    .footer-grid { flex-direction: column; text-align: center; gap: 20px; }
}