/* =========================================================
   WOEWOE DIPPING
   GREEN / BLACK WEBSITE
========================================================= */

:root {
    --black: #050505;
    --black-2: #0a0a0a;
    --black-3: #111111;
    --green: #9dff00;
    --green-bright: #b7ff20;
    --green-dark: #5e9c00;
    --white: #f5f5f0;
    --grey: #9a9a9a;
    --border: rgba(157, 255, 0, 0.22);

    --font-main: Arial, Helvetica, sans-serif;
    --font-heavy: "Arial Black", Arial, Helvetica, sans-serif;
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-main);
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}

::selection {
    background: var(--green);
    color: #000;
}


/* =========================================================
   LOADER
========================================================= */

.loader {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 9999;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    transition:
        opacity 0.6s ease,
        visibility 0.6s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader img {
    width: 130px;
    height: 130px;
    object-fit: contain;
    animation: logoSpin 2s linear infinite;
}

.loader p {
    color: var(--green);
    font-family: var(--font-heavy);
    font-size: 12px;
    letter-spacing: 4px;
    margin-top: 20px;
}

.loader-line {
    width: 180px;
    height: 2px;
    background: #222;
    margin-top: 20px;
    overflow: hidden;
}

.loader-line span {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--green);
    transform: translateX(-100%);
    animation: loading 1.4s ease forwards;
}


/* =========================================================
   HEADER
========================================================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    height: 84px;

    display: flex;
    align-items: center;

    padding: 0 5vw;

    background: rgba(5, 5, 5, 0.88);
    backdrop-filter: blur(14px);

    border-bottom: 1px solid rgba(157, 255, 0, 0.12);

    z-index: 1000;
}

.brand {
    width: 62px;
    flex-shrink: 0;
}

.brand img {
    width: 62px;
    height: 62px;
    object-fit: contain;

    animation: logoSpin 10s linear infinite;
}

.nav {
    display: flex;
    align-items: center;
    gap: 34px;

    margin-left: auto;
    margin-right: 35px;
}

.nav a {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #d4d4d4;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.nav a:hover {
    color: var(--green);
    transform: translateY(-2px);
}

.nav-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 43px;
    padding: 0 21px;

    background: var(--green);
    color: #000;

    font-family: var(--font-heavy);
    font-size: 10px;
    letter-spacing: 1.2px;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.nav-button:hover {
    background: var(--green-bright);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    border: 1px solid var(--border);
    background: transparent;
    cursor: pointer;

    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--green);
}


/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: 100vh;
    position: relative;

    display: flex;
    align-items: center;

    padding: 130px 8vw 80px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 75% 50%,
            rgba(157, 255, 0, 0.09),
            transparent 30%
        ),
        var(--black);
}

.hero-grid {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(157, 255, 0, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(157, 255, 0, 0.035) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    mask-image:
        linear-gradient(
            to right,
            black,
            transparent 80%
        );
}

.hero::before {
    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    right: -180px;
    top: 18%;

    border: 1px solid rgba(157, 255, 0, 0.15);
    border-radius: 50%;

    box-shadow:
        0 0 100px rgba(157, 255, 0, 0.06),
        inset 0 0 100px rgba(157, 255, 0, 0.04);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-logo-wrap {
    margin-bottom: 25px;
}

.hero-logo {
    width: 170px;
    height: 170px;
    object-fit: contain;

    animation: logoFloat 4s ease-in-out infinite;
}

.hero-small {
    color: var(--green);

    font-size: 11px;
    font-weight: 900;
    letter-spacing: 4px;

    margin-bottom: 20px;
}

.hero h1 {
    font-family: var(--font-heavy);
    font-size: clamp(70px, 10vw, 160px);
    line-height: 0.8;
    letter-spacing: -7px;
}

.hero h1 span {
    display: block;
    color: var(--white);
}

.hero h1 strong {
    display: block;
    color: var(--green);
}

.hero-content > p {
    max-width: 520px;

    color: #aaa;
    font-size: 16px;
    line-height: 1.7;

    margin-top: 35px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;

    margin-top: 32px;
}

.button {
    min-height: 51px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 25px;

    font-size: 10px;
    font-family: var(--font-heavy);
    letter-spacing: 1.5px;

    border: 1px solid var(--green);

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}

.button-primary {
    background: var(--green);
    color: #000;
}

.button-primary:hover {
    background: var(--green-bright);
    transform: translateY(-3px);
}

.button-outline {
    background: transparent;
    color: var(--green);
}

.button-outline:hover {
    background: var(--green);
    color: #000;
    transform: translateY(-3px);
}

.hero-side-text {
    position: absolute;

    right: 35px;
    top: 50%;

    transform: rotate(90deg) translateX(50%);

    color: rgba(157, 255, 0, 0.3);

    font-size: 10px;
    font-weight: 900;
    letter-spacing: 5px;
}

.hero-bottom {
    position: absolute;
    bottom: 35px;
    left: 8vw;

    display: flex;
    gap: 18px;

    color: #666;

    font-size: 9px;
    font-weight: 900;
    letter-spacing: 2px;
}


/* =========================================================
   SECTIONS
========================================================= */

.section {
    position: relative;
    padding: 130px 8vw;
    background: var(--black);
}

.dark-section {
    position: relative;
    padding: 130px 8vw;
    background: #080808;
}

.section-heading {
    display: flex;
    gap: 30px;
    align-items: flex-start;

    margin-bottom: 80px;
}

.section-heading.light {
    color: var(--white);
}

.section-number {
    color: var(--green);

    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;

    padding-top: 9px;
}

.eyebrow {
    display: block;

    color: var(--green);

    font-size: 10px;
    font-weight: 900;
    letter-spacing: 3px;

    margin-bottom: 15px;
}

.section-heading h2 {
    font-family: var(--font-heavy);
    font-size: clamp(55px, 8vw, 110px);
    line-height: 0.84;
    letter-spacing: -4px;
}

.section-heading h2 span {
    color: var(--green);
}


/* =========================================================
   ABOUT
========================================================= */

.about-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 100px;
    align-items: center;
}

.about-copy {
    max-width: 650px;
}

.large-copy {
    color: var(--white);

    font-family: var(--font-heavy);
    font-size: clamp(24px, 3vw, 42px);
    line-height: 1.05;

    margin-bottom: 30px;
}

.about-copy > p:not(.large-copy) {
    color: #888;
    font-size: 15px;
    line-height: 1.8;

    margin-bottom: 20px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;

    margin-top: 20px;

    color: var(--green);

    font-size: 10px;
    font-family: var(--font-heavy);
    letter-spacing: 2px;
}

.text-link span {
    font-size: 18px;
    transition: transform 0.25s ease;
}

.text-link:hover span {
    transform: translate(4px, -4px);
}

.about-stat {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.stat-card {
    min-height: 240px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    padding: 25px;

    background: #0d0d0d;
    border: 1px solid #1b1b1b;

    transition:
        border-color 0.3s ease,
        transform 0.3s ease;
}

.stat-card:hover {
    border-color: var(--green);
    transform: translateY(-8px);
}

.stat-card span {
    color: var(--green);
    font-size: 10px;
    margin-bottom: auto;
}

.stat-card strong {
    font-family: var(--font-heavy);
    font-size: 20px;
}

.stat-card p {
    color: #777;
    font-size: 11px;
    margin-top: 8px;
}


/* =========================================================
   WHY
========================================================= */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.feature {
    min-height: 300px;

    padding: 30px;

    border-top: 1px solid #292929;
    border-right: 1px solid #292929;

    transition: background 0.3s ease;
}

.feature:last-child {
    border-right: none;
}

.feature:hover {
    background: #0d0d0d;
}

.feature-number {
    color: var(--green);
    font-size: 11px;
    margin-bottom: 100px;
}

.feature h3 {
    font-family: var(--font-heavy);
    font-size: 23px;
    margin-bottom: 15px;
}

.feature p {
    color: #777;
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   SERVICES
========================================================= */

.services-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;

    align-items: center;
}


/* =========================================================
   SPRAY SCENE
========================================================= */

.spray-scene {
    height: 600px;

    position: relative;

    overflow: hidden;

    background: #070707;

    border: 1px solid rgba(157, 255, 0, 0.2);

    box-shadow:
        inset 0 0 100px rgba(0, 0, 0, 0.9),
        0 0 60px rgba(157, 255, 0, 0.04);
}

.scene-label {
    position: absolute;
    left: 25px;
    top: 25px;

    z-index: 20;

    display: flex;
    align-items: center;
    gap: 10px;

    color: #777;

    font-size: 9px;
    font-weight: 900;
    letter-spacing: 2px;
}

.scene-label span {
    width: 7px;
    height: 7px;

    background: var(--green);
    border-radius: 50%;

    box-shadow: 0 0 12px var(--green);
}


/* WALL */

.wall {
    position: absolute;

    left: 30px;
    right: 30px;
    top: 80px;
    bottom: 35px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #161616,
            #0e0e0e 45%,
            #171717
        );

    border: 1px solid #262626;
}

.wall::before,
.wall::after {
    content: "";

    position: absolute;

    width: 100%;
    height: 1px;

    background: rgba(255,255,255,0.03);

    left: 0;
}

.wall::before {
    top: 33%;
}

.wall::after {
    top: 67%;
}

.wall-noise {
    position: absolute;
    inset: 0;

    opacity: 0.25;

    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 4px,
            rgba(255,255,255,0.025) 5px
        );
}


/* PAINT GLOW */

.paint-glow {
    position: absolute;

    width: 500px;
    height: 250px;

    left: -100px;
    top: 50%;

    transform: translateY(-50%);

    background: radial-gradient(
        ellipse,
        rgba(157,255,0,0.2),
        transparent 70%
    );

    filter: blur(15px);

    animation: paintGlow 3s ease-in-out infinite;
}


/* WALL LETTERING */

.wall-writing {
    position: absolute;

    left: 12%;
    top: 50%;

    transform: translateY(-50%) rotate(-2deg);

    z-index: 5;

    white-space: nowrap;

    filter:
        drop-shadow(0 0 10px rgba(157,255,0,0.25))
        drop-shadow(4px 5px 0 #030303);

    animation: wallTextReveal 4s ease-in-out infinite;
}

.wall-writing span,
.wall-writing strong {
    display: block;

    font-family: var(--font-heavy);
    font-style: italic;

    letter-spacing: -2px;
}

.wall-writing span {
    color: #e9e9e9;
    font-size: clamp(25px, 4vw, 46px);
    line-height: 0.8;
}

.wall-writing strong {
    color: var(--green);
    font-size: clamp(34px, 5vw, 60px);
    line-height: 0.9;
}


/* SPLASHES */

.paint-splash {
    position: absolute;

    z-index: 4;

    background: var(--green);

    border-radius: 50%;

    opacity: 0;

    filter: blur(0.5px);

    animation: splashAppear 3s ease-in-out infinite;
}

.splash-one {
    width: 12px;
    height: 32px;
    left: 30%;
    top: 42%;
    transform: rotate(25deg);
}

.splash-two {
    width: 7px;
    height: 18px;
    left: 35%;
    top: 61%;
    animation-delay: 0.4s;
}

.splash-three {
    width: 6px;
    height: 12px;
    left: 27%;
    top: 65%;
    animation-delay: 0.8s;
}


/* PARTICLES */

.spray-particles {
    position: absolute;
    left: 8%;
    top: 45%;

    width: 50%;
    height: 130px;

    z-index: 8;
}

.spray-particles i {
    position: absolute;

    width: 4px;
    height: 4px;

    background: var(--green);
    border-radius: 50%;

    opacity: 0;

    box-shadow: 0 0 8px var(--green);

    animation: particleMove 1.4s linear infinite;
}

.spray-particles i:nth-child(1) {
    top: 30%;
    left: 0;
    animation-delay: 0s;
}

.spray-particles i:nth-child(2) {
    top: 45%;
    left: 10%;
    animation-delay: 0.15s;
}

.spray-particles i:nth-child(3) {
    top: 20%;
    left: 17%;
    animation-delay: 0.3s;
}

.spray-particles i:nth-child(4) {
    top: 60%;
    left: 24%;
    animation-delay: 0.45s;
}

.spray-particles i:nth-child(5) {
    top: 35%;
    left: 30%;
    animation-delay: 0.6s;
}

.spray-particles i:nth-child(6) {
    top: 70%;
    left: 36%;
    animation-delay: 0.75s;
}

.spray-particles i:nth-child(7) {
    top: 10%;
    left: 44%;
    animation-delay: 0.9s;
}

.spray-particles i:nth-child(8) {
    top: 48%;
    left: 50%;
    animation-delay: 1.05s;
}

.spray-particles i:nth-child(9) {
    top: 25%;
    left: 57%;
    animation-delay: 1.2s;
}

.spray-particles i:nth-child(10) {
    top: 65%;
    left: 65%;
    animation-delay: 1.35s;
}

.spray-particles i:nth-child(11) {
    top: 42%;
    left: 73%;
    animation-delay: 0.25s;
}

.spray-particles i:nth-child(12) {
    top: 75%;
    left: 80%;
    animation-delay: 0.55s;
}

.spray-particles i:nth-child(13) {
    top: 15%;
    left: 87%;
    animation-delay: 0.8s;
}

.spray-particles i:nth-child(14) {
    top: 55%;
    left: 93%;
    animation-delay: 1.1s;
}

.spray-particles i:nth-child(15) {
    top: 82%;
    left: 58%;
    animation-delay: 1.4s;
}


/* SPRAY GUN */

.spray-gun {
    position: absolute;

    left: -25px;
    top: 340px;

    width: 230px;
    height: 150px;

    z-index: 15;

    transform: rotate(-4deg);

    filter:
        drop-shadow(0 15px 15px rgba(0,0,0,0.7))
        drop-shadow(0 0 8px rgba(157,255,0,0.08));

    animation: gunMove 2.8s ease-in-out infinite;
}

.gun-body {
    position: absolute;

    left: 55px;
    top: 35px;

    width: 125px;
    height: 55px;

    background: linear-gradient(
        180deg,
        #3a3a3a,
        #161616
    );

    border: 2px solid #555;

    border-radius: 8px 18px 12px 8px;

    transform: skewX(-8deg);
}

.gun-body::before {
    content: "";

    position: absolute;

    right: -30px;
    top: 17px;

    width: 38px;
    height: 20px;

    background: #292929;
    border: 2px solid #555;

    border-left: none;
}

.gun-top {
    position: absolute;

    left: 35px;
    top: -10px;

    width: 55px;
    height: 13px;

    background: #4a4a4a;

    border-radius: 5px 5px 0 0;
}

.gun-detail {
    position: absolute;

    left: 22px;
    top: 24px;

    width: 45px;
    height: 5px;

    background: var(--green);

    box-shadow: 0 0 8px rgba(157,255,0,0.35);
}

.gun-handle {
    position: absolute;

    left: 85px;
    top: 75px;

    width: 48px;
    height: 75px;

    background: linear-gradient(
        90deg,
        #141414,
        #323232,
        #121212
    );

    border: 2px solid #4a4a4a;

    clip-path: polygon(
        0 0,
        100% 0,
        78% 100%,
        18% 100%
    );

    transform: rotate(7deg);
}

.handle-detail {
    position: absolute;

    left: 16px;
    top: 30px;

    width: 5px;
    height: 30px;

    background: var(--green);

    opacity: 0.7;
}

.gun-trigger {
    position: absolute;

    left: 73px;
    top: 75px;

    width: 12px;
    height: 30px;

    border: 3px solid #888;
    border-top: none;

    border-radius: 0 0 8px 8px;

    transform: rotate(-5deg);

    animation: triggerPull 1.4s ease-in-out infinite;
}

.gun-nozzle {
    position: absolute;

    left: 170px;
    top: 52px;

    width: 55px;
    height: 20px;

    background: #292929;

    border: 2px solid #555;

    border-radius: 0 8px 8px 0;
}

.nozzle-tip {
    position: absolute;

    right: -15px;
    top: 5px;

    width: 17px;
    height: 7px;

    background: var(--green);

    border-radius: 0 5px 5px 0;

    box-shadow:
        0 0 12px var(--green),
        0 0 25px rgba(157,255,0,0.45);
}

.gun-cup {
    position: absolute;

    left: 73px;
    top: -10px;

    width: 65px;
    height: 48px;

    background: linear-gradient(
        180deg,
        #444,
        #1b1b1b
    );

    border: 2px solid #555;

    border-radius: 7px 7px 18px 18px;

    transform: rotate(-2deg);
}

.cup-top {
    position: absolute;

    left: 8px;
    top: -8px;

    width: 45px;
    height: 9px;

    background: #555;

    border-radius: 5px;
}


/* PAINT STREAM */

.paint-stream {
    position: absolute;

    left: 183px;
    top: 396px;

    width: 220px;
    height: 45px;

    z-index: 12;

    transform: rotate(-3deg);

    pointer-events: none;
}

.paint-stream::before {
    content: "";

    position: absolute;

    inset: 8px 0;

    background:
        linear-gradient(
            90deg,
            rgba(157,255,0,0.8),
            rgba(157,255,0,0.35),
            transparent
        );

    filter: blur(7px);

    opacity: 0.9;

    animation: sprayBeam 1.1s ease-in-out infinite;
}

.paint-stream span {
    position: absolute;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--green);

    box-shadow: 0 0 10px var(--green);

    animation: sprayDot 1.1s linear infinite;
}

.paint-stream span:nth-child(1) {
    top: 15px;
    left: 0;
}

.paint-stream span:nth-child(2) {
    top: 7px;
    left: 35px;
    animation-delay: .12s;
}

.paint-stream span:nth-child(3) {
    top: 25px;
    left: 65px;
    animation-delay: .22s;
}

.paint-stream span:nth-child(4) {
    top: 12px;
    left: 95px;
    animation-delay: .32s;
}

.paint-stream span:nth-child(5) {
    top: 30px;
    left: 125px;
    animation-delay: .42s;
}

.paint-stream span:nth-child(6) {
    top: 8px;
    left: 155px;
    animation-delay: .52s;
}

.paint-stream span:nth-child(7) {
    top: 22px;
    left: 185px;
    animation-delay: .62s;
}


/* =========================================================
   SERVICES LIST
========================================================= */

.services-list {
    border-top: 1px solid #252525;
}

.service-row {
    min-height: 125px;

    display: grid;
    grid-template-columns: 45px 1fr 35px;
    gap: 20px;

    align-items: center;

    border-bottom: 1px solid #252525;

    transition:
        padding 0.3s ease,
        background 0.3s ease;
}

.service-row:hover {
    padding-left: 15px;
    background: #0b0b0b;
}

.service-row > span {
    color: var(--green);
    font-size: 10px;
}

.service-row h3 {
    font-family: var(--font-heavy);
    font-size: 18px;
    margin-bottom: 8px;
}

.service-row p {
    color: #777;
    font-size: 12px;
    line-height: 1.6;
    max-width: 430px;
}

.service-row b {
    color: var(--green);
    font-size: 22px;
}


/* =========================================================
   PORTFOLIO
========================================================= */

.portfolio-section {
    overflow: hidden;
}

.featured-gallery {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
    grid-template-rows: 280px 280px;

    gap: 10px;

    margin-bottom: 100px;
}

.featured-item {
    position: relative;

    overflow: hidden;

    background: #111;

    cursor: pointer;
}

.featured-item:first-child {
    grid-row: span 2;
}

.featured-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.7s ease,
        filter 0.7s ease;
}

.featured-item:hover img {
    transform: scale(1.07);
    filter: brightness(0.72);
}

.featured-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: flex-end;

    padding: 25px;

    background:
        linear-gradient(
            transparent 45%,
            rgba(0,0,0,0.85)
        );

    pointer-events: none;
}

.featured-overlay span {
    color: var(--green);

    font-size: 9px;
    font-weight: 900;
    letter-spacing: 2px;
}

.portfolio-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    margin-bottom: 35px;

    border-bottom: 1px solid #252525;
    padding-bottom: 25px;
}

.portfolio-header h3 {
    font-family: var(--font-heavy);
    font-size: 35px;
    line-height: 1;
}

.photo-count {
    color: var(--green);

    font-family: var(--font-heavy);
    font-size: 10px;
    letter-spacing: 2px;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.photo-item {
    position: relative;

    aspect-ratio: 1 / 1;

    overflow: hidden;

    background: #111;

    cursor: pointer;
}

.photo-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.6s ease,
        filter 0.6s ease;
}

.photo-item:hover img {
    transform: scale(1.08);
    filter: brightness(0.65);
}

.photo-number {
    position: absolute;

    left: 12px;
    bottom: 12px;

    color: var(--green);

    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1px;

    opacity: 0;

    transition: opacity 0.3s ease;
}

.photo-item:hover .photo-number {
    opacity: 1;
}

.portfolio-bottom {
    margin-top: 65px;
    text-align: center;
}

.portfolio-line {
    width: 100%;
    height: 1px;
    background: #292929;
    margin-bottom: 30px;
}

.portfolio-bottom p {
    color: #777;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 20px;
}


/* =========================================================
   REQUEST
========================================================= */

.request-section {
    padding-top: 100px;
    padding-bottom: 100px;
}

.request-box {
    display: grid;
    grid-template-columns: 80px 1fr;

    padding: 70px;

    border: 1px solid var(--border);

    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(157,255,0,0.08),
            transparent 35%
        ),
        #0a0a0a;
}

.request-number {
    color: var(--green);
    font-size: 11px;
    font-weight: 900;
}

.request-content {
    max-width: 750px;
}

.request-content h2 {
    font-family: var(--font-heavy);

    font-size: clamp(50px, 7vw, 100px);
    line-height: 0.85;
    letter-spacing: -4px;
}

.request-content h2 span {
    color: var(--green);
}

.request-content p {
    max-width: 550px;

    color: #888;

    font-size: 15px;
    line-height: 1.7;

    margin-top: 30px;
}

.request-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    margin-top: 30px;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {
    padding: 120px 8vw;

    background: var(--green);
    color: #000;
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.contact-heading .eyebrow {
    color: #000;
}

.contact-heading h2 {
    font-family: var(--font-heavy);

    font-size: clamp(60px, 8vw, 120px);
    line-height: 0.82;
    letter-spacing: -5px;
}

.contact-heading h2 span {
    color: #fff;
}

.contact-heading p {
    font-size: 16px;
    margin-top: 30px;
    max-width: 350px;
    line-height: 1.6;
}

.contact-actions {
    display: flex;
    flex-direction: column;
}

.contact-action {
    min-height: 100px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid rgba(0,0,0,0.25);

    transition:
        padding 0.3s ease,
        background 0.3s ease;
}

.contact-action:first-child {
    border-top: 1px solid rgba(0,0,0,0.25);
}

.contact-action:hover {
    padding-left: 15px;
}

.contact-action small {
    display: block;

    font-size: 9px;
    font-weight: 900;
    letter-spacing: 2px;

    margin-bottom: 8px;
}

.contact-action strong {
    display: block;

    font-family: var(--font-heavy);
    font-size: 22px;
}

.contact-action > span {
    font-size: 30px;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    min-height: 100px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 25px 8vw;

    background: #030303;

    border-top: 1px solid #181818;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo img {
    width: 45px;
    height: 45px;

    object-fit: contain;

    animation: logoSpin 10s linear infinite;
}

.footer-logo span {
    color: var(--green);

    font-size: 9px;
    font-family: var(--font-heavy);
    letter-spacing: 2px;
}

.footer-right {
    display: flex;
    gap: 25px;

    color: #555;

    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1px;
}


/* =========================================================
   LIGHTBOX
========================================================= */

.lightbox {
    position: fixed;
    inset: 0;

    z-index: 5000;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 60px;

    background: rgba(0,0,0,0.96);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;

    position: relative;
}

.lightbox-content img {
    max-width: 85vw;
    max-height: 82vh;

    object-fit: contain;

    border: 1px solid rgba(157,255,0,0.3);
}

.lightbox-counter {
    position: absolute;

    left: 0;
    bottom: -30px;

    color: var(--green);

    font-size: 9px;
    font-weight: 900;
    letter-spacing: 2px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;

    border: none;
    background: none;

    color: var(--green);

    cursor: pointer;

    z-index: 10;
}

.lightbox-close {
    top: 25px;
    right: 35px;

    font-size: 45px;
}

.lightbox-prev,
.lightbox-next {
    top: 50%;

    transform: translateY(-50%);

    font-size: 70px;
}

.lightbox-prev {
    left: 25px;
}

.lightbox-next {
    right: 25px;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    color: #fff;
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes logoSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes logoFloat {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-12px) rotate(4deg);
    }
}

@keyframes loading {
    to {
        transform: translateX(0);
    }
}

@keyframes gunMove {
    0%,
    100% {
        transform: translate(-2px, -2px) rotate(-4deg);
    }

    50% {
        transform: translate(45px, 8px) rotate(-3deg);
    }
}

@keyframes triggerPull {
    0%,
    100% {
        transform: rotate(-5deg) scaleY(1);
    }

    50% {
        transform: rotate(-5deg) scaleY(0.8);
    }
}

@keyframes sprayBeam {
    0%,
    100% {
        opacity: 0.55;
        transform: scaleX(0.85);
    }

    50% {
        opacity: 1;
        transform: scaleX(1);
    }
}

@keyframes sprayDot {
    from {
        opacity: 0;
        transform: translateX(0) scale(0.5);
    }

    20% {
        opacity: 1;
    }

    to {
        opacity: 0;
        transform: translateX(35px) scale(1);
    }
}

@keyframes particleMove {
    0% {
        opacity: 0;
        transform: translateX(0) translateY(0) scale(0.5);
    }

    20% {
        opacity: 0.9;
    }

    80% {
        opacity: 0.6;
    }

    100% {
        opacity: 0;
        transform: translateX(170px) translateY(-4px) scale(1);
    }
}

@keyframes wallTextReveal {
    0%,
    12% {
        opacity: 0.15;
        transform: translateY(-50%) rotate(-2deg) scale(0.97);
        filter: blur(5px);
    }

    28%,
    75% {
        opacity: 1;
        transform: translateY(-50%) rotate(-2deg) scale(1);
        filter:
            drop-shadow(0 0 10px rgba(157,255,0,0.25))
            drop-shadow(4px 5px 0 #030303);
    }

    90%,
    100% {
        opacity: 0.25;
        transform: translateY(-50%) rotate(-2deg) scale(0.98);
        filter: blur(2px);
    }
}

@keyframes splashAppear {
    0%,
    25%,
    100% {
        opacity: 0;
        transform: scale(0.2);
    }

    45%,
    70% {
        opacity: 0.85;
        transform: scale(1);
    }
}

@keyframes paintGlow {
    0%,
    100% {
        opacity: 0.45;
    }

    50% {
        opacity: 1;
    }
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1050px) {

    .nav {
        gap: 20px;
    }

    .about-layout,
    .services-layout,
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature:nth-child(2) {
        border-right: none;
    }

    .featured-gallery {
        grid-template-columns: 1fr 1fr;
    }

    .featured-item:first-child {
        grid-column: span 2;
        grid-row: span 1;
    }

    .photo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


@media (max-width: 800px) {

    .header {
        height: 72px;
        padding: 0 20px;
    }

    .brand,
    .brand img {
        width: 52px;
        height: 52px;
    }

    .nav-button {
        display: none;
    }

    .menu-toggle {
        display: flex;
        margin-left: auto;
    }

    .nav {
        position: absolute;

        left: 0;
        right: 0;
        top: 72px;

        margin: 0;

        display: none;
        flex-direction: column;

        padding: 25px;

        background: #080808;
        border-bottom: 1px solid var(--border);
    }

    .nav.active {
        display: flex;
    }

    .nav a {
        padding: 12px 0;
    }

    .hero {
        padding-left: 25px;
        padding-right: 25px;
    }

    .hero-logo {
        width: 120px;
        height: 120px;
    }

    .hero h1 {
        font-size: clamp(65px, 18vw, 120px);
        letter-spacing: -4px;
    }

    .hero-side-text {
        display: none;
    }

    .hero-bottom {
        left: 25px;
        right: 25px;

        flex-wrap: wrap;

        bottom: 20px;
    }

    .section,
    .dark-section {
        padding: 90px 25px;
    }

    .section-heading {
        gap: 15px;
        margin-bottom: 55px;
    }

    .section-heading h2 {
        font-size: 55px;
        letter-spacing: -2px;
    }

    .about-stat {
        grid-template-columns: 1fr;
    }

    .stat-card {
        min-height: 170px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .feature {
        min-height: auto;
        padding: 30px 0;
        border-right: none;
    }

    .feature-number {
        margin-bottom: 40px;
    }

    .spray-scene {
        height: 470px;
    }

    .wall {
        left: 15px;
        right: 15px;
        top: 65px;
    }

    .spray-gun {
        transform: scale(0.78) rotate(-4deg);
        transform-origin: left center;

        top: 310px;
    }

    .paint-stream {
        left: 145px;
        top: 365px;

        transform: scale(0.8) rotate(-3deg);
        transform-origin: left center;
    }

    .wall-writing {
        left: 15%;
    }

    .featured-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 220px 220px;
    }

    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .request-box {
        grid-template-columns: 1fr;

        padding: 40px 25px;
        gap: 25px;
    }

    .contact-section {
        padding: 90px 25px;
    }

    .contact-inner {
        gap: 60px;
    }

    .footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;

        padding: 30px 25px;
    }

    .footer-right {
        flex-direction: column;
        gap: 8px;
    }

    .lightbox {
        padding: 30px 15px;
    }

    .lightbox-prev {
        left: 5px;
    }

    .lightbox-next {
        right: 5px;
    }
}


@media (max-width: 500px) {

    .hero {
        min-height: 900px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .button {
        width: 100%;
    }

    .featured-gallery {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 220px);
    }

    .featured-item:first-child {
        grid-column: auto;
    }

    .photo-grid {
        grid-template-columns: 1fr 1fr;
        gap: 5px;
    }

    .portfolio-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }

    .request-content h2 {
        font-size: 55px;
    }

    .contact-heading h2 {
        font-size: 65px;
    }

    .contact-action strong {
        font-size: 17px;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 50px;
    }
}