:root {
    --bg: #ffffff;
    --text: #000000;
    --accent: #ccff00;
    --accent-alt: #ff00ff;
    --accent-blue: #00ffff;
    --accent-yellow: #ffcc00;
    --border-thick: 8px;
    --border-medium: 4px;
    --shadow: 12px 12px 0 #000;
    --transition: all 0.1s steps(4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Archivo Black', sans-serif;
    text-transform: uppercase;
    line-height: 1;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.border-y {
    border-top: var(--border-thick) solid var(--text);
    border-bottom: var(--border-thick) solid var(--text);
}

.bg-black {
    background: #000;
}

.bg-yellow {
    background: var(--accent-yellow);
}

.text-white {
    color: #fff;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4rem;
    border-bottom: var(--border-thick) solid var(--text);
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1000;
}

.nav-brand {
    font-size: 2.5rem;
    letter-spacing: -2px;
}

.nav-links {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.nav-link {
    color: var(--text);
    text-decoration: none;
    font-size: 1.2rem;
    transition: var(--transition);
}

.nav-link:hover {
    background: var(--accent);
    padding: 0.5rem;
}

.contact-btn {
    border: var(--border-medium) solid var(--text);
    padding: 1rem 2rem;
    background: var(--accent);
    box-shadow: 6px 6px 0 #000;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    border: var(--border-medium) solid var(--text);
    padding: 0.5rem 1rem;
    cursor: pointer;
}

/* Hero */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 10rem 4rem;
}

.hero h1 {
    font-size: 18vw;
    line-height: 0.75;
    letter-spacing: -0.05em;
    margin-bottom: 4rem;
}

.hero-sub {
    font-size: 4vw;
    max-width: 1000px;
    margin-bottom: 5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}

.hero-actions {
    display: flex;
    gap: 3rem;
}

/* Sections */
section {
    padding: 10rem 0;
}

.label {
    font-size: 1.5rem;
    background: var(--text);
    color: var(--bg);
    padding: 0.5rem 1.5rem;
    display: inline-block;
    margin-bottom: 2rem;
}

.section-title-box h2 {
    font-size: 10rem;
    line-height: 0.8;
}

.section-title-box.white .label {
    background: #fff;
    color: #000;
}

/* Buttons */
.brutal-btn {
    display: inline-block;
    padding: 1.5rem 3rem;
    background: var(--accent);
    color: var(--text);
    border: var(--border-medium) solid var(--text);
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 8px 8px 0 #000;
    transition: var(--transition);
    cursor: pointer;
    font-family: inherit;
    text-transform: uppercase;
}

.brutal-btn:hover {
    transform: translate(-4px, -4px);
    box-shadow: 12px 12px 0 #000;
}

.brutal-btn.large {
    font-size: 2.5rem;
    padding: 2rem 5rem;
    box-shadow: 15px 15px 0 #000;
}

.brutal-btn.outline {
    background: transparent;
}

.brutal-btn.full {
    display: block;
    width: 100%;
    text-align: center;
}

.brutal-btn.dark {
    background: #000;
    color: #fff;
    border-color: #fff;
    box-shadow: 8px 8px 0 var(--accent);
}

.brutal-btn.yellow {
    background: var(--accent-yellow);
}

/* Services */
.service-box {
    border-bottom: var(--border-medium) solid var(--text);
    padding: 4rem 0;
}

.service-box:last-child {
    border: none;
}

.service-box h3 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-box p {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    max-width: 600px;
    line-height: 1.4;
}

/* Brutal Grid */
.brutal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: var(--border-thick) solid var(--text);
}

.brutal-card {
    border-right: var(--border-medium) solid var(--text);
    border-bottom: var(--border-medium) solid var(--text);
    padding: 4rem 2.5rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 450px;
}

.brutal-card:hover {
    transform: scale(0.98);
}

.card-num {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.brutal-card h3 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.brutal-card p {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    line-height: 1.3;
}

.card-link {
    margin-top: 3rem;
    color: var(--text);
    text-decoration: underline;
    font-weight: 700;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    margin-top: 6rem;
}

.gallery-item {
    border: var(--border-medium) solid var(--text);
    background: #000;
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: contrast(1.5) grayscale(1);
    transition: var(--transition);
}

.gallery-item:hover img {
    filter: none;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-top: 8rem;
}

.pricing-card {
    border: var(--border-thick) solid #fff;
    padding: 6rem 3rem;
    position: relative;
    background: #111;
}

.pricing-card.main {
    background: var(--accent);
    border-color: #000;
    color: #000;
    transform: scale(1.05);
    z-index: 2;
}

.badge {
    position: absolute;
    top: -20px;
    left: 20px;
    background: #000;
    color: #fff;
    padding: 0.5rem 2rem;
    font-size: 1rem;
}

.pricing-card h3 {
    font-size: 3rem;
    margin-bottom: 2.5rem;
}

.price {
    font-size: 5rem;
    margin-bottom: 4rem;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 5rem;
}

.pricing-card li {
    padding: 1rem 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.main li {
    border-color: rgba(0, 0, 0, 0.1);
}

/* Reviews */
.reviews-slider {
    margin-top: 6rem;
    position: relative;
}

.review-slide {
    display: none;
    padding: 8rem 4rem;
    border: var(--border-thick) solid var(--text);
    box-shadow: 20px 20px 0 #000;
}

.review-slide.active {
    display: block;
}

.review-slide p {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 4rem;
}

.review-slide .author {
    font-size: 1.5rem;
    text-decoration: underline;
}

.slider-controls {
    display: flex;
    gap: 2rem;
    margin-top: 6rem;
}

.slider-controls button {
    padding: 2rem 4rem;
    background: #fff;
    border: var(--border-medium) solid var(--text);
    font-family: inherit;
    font-size: 2rem;
    cursor: pointer;
    box-shadow: 10px 10px 0 #000;
}

.slider-controls button:hover {
    background: var(--accent);
    transform: translate(-3px, -3px);
}

/* About Split */
.about-split {
    display: flex;
}

.about-text {
    flex: 1.2;
    padding: 10rem 4rem;
    border-right: var(--border-thick) solid var(--text);
}

.about-text h2 {
    font-size: 12rem;
    margin-bottom: 4rem;
}

.about-text p {
    font-size: 2.5rem;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.2;
}

.skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 6rem;
}

.skills-grid span {
    background: #000;
    color: #fff;
    padding: 1rem 2rem;
    font-size: 1.5rem;
}

.about-image {
    flex: 0.8;
    padding: 10rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-image h2 {
    font-size: 8rem;
    margin-bottom: 2rem;
}

/* Contact Form */
.massive-title {
    font-size: 12vw;
    margin-bottom: 6rem;
    text-align: center;
}

.brutal-form {
    max-width: 1000px;
    margin: 0 auto;
}

.brutal-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.brutal-form input,
.brutal-form textarea {
    width: 100%;
    padding: 2.5rem;
    border: var(--border-medium) solid var(--text);
    font-family: inherit;
    font-size: 1.5rem;
    background: #fff;
}

.brutal-form input:focus {
    background: var(--accent);
    outline: none;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 6rem;
    margin-top: 10rem;
}

.footer-social a {
    color: var(--text);
    text-decoration: underline;
    font-size: 2rem;
}

/* Footer */
.footer {
    padding: 5rem 0;
    border-top: var(--border-thick) solid var(--text);
}

.footer .container {
    display: flex;
    justify-content: space-between;
    font-size: 1.5rem;
}

/* Drawer */
.drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 60%;
    height: 100vh;
    background: var(--accent);
    z-index: 2000;
    padding: 4rem;
    border-left: var(--border-thick) solid var(--text);
    transition: var(--transition);
}

.drawer.active {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8rem;
    font-size: 3rem;
}

.drawer-links {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.drawer-links a {
    font-size: 5rem;
    color: var(--text);
    text-decoration: none;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
}

.modal-content {
    background: var(--bg);
    border: var(--border-thick) solid var(--text);
    margin: 5% auto;
    padding: 6rem;
    width: 70%;
    max-width: 900px;
    box-shadow: 20px 20px 0 var(--accent);
    position: relative;
}

.close-modal {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    border: none;
    background: transparent;
    cursor: pointer;
}

.logs {
    margin: 4rem 0;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 2;
}

/* Responsive */
@media (max-width: 1024px) {
    .section-title-box h2 {
        font-size: 6rem;
    }

    .brutal-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .about-split {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 2rem;
    }

    .navbar {
        padding: 1.5rem 2rem;
    }

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 22vw;
    }

    .hero-actions {
        flex-direction: column;
    }

    .section-title-box h2 {
        font-size: 4rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .brutal-grid {
        grid-template-columns: 1fr;
    }

    .review-slide p {
        font-size: 2.2rem;
    }

    .massive-title {
        font-size: 5rem;
    }

    .brutal-form .form-row {
        grid-template-columns: 1fr;
    }

    .footer-social {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }

    .drawer {
        width: 100%;
    }

    .drawer-links a {
        font-size: 3rem;
    }
}