@import url('https://fonts.googleapis.com/css2?family=Anton&family=Barlow+Condensed:wght@300;400;500;600&family=Inter:wght@400;500;600;700&family=Montserrat:wght@400;500;600;700;800&display=swap');
:root {
    --ink:#0b1014;
    --paper:#f4f1e9;
    --blue:#05aee8;
    --orange:#ff7a18;
    --lime:#a9dc33;
    --muted:#8d969c;
    --line:#273039;
}

* {
    box-sizing:border-box;
}

html {
    scroll-behavior:smooth;
}

body {
    margin:0;
    background:var(--paper);
    color:var(--ink);
    font-family:Montserrat, Arial, sans-serif;
}

.no-scroll {
    overflow:hidden;
}

a {
    color:inherit;
    text-decoration:none;
}

button,
input,
textarea {
    font:inherit;
}

.site-header {
    height:86px;
    padding:0 5vw;
    background:#090e12;
    display:flex;
    align-items:center;
    justify-content:space-between;
    color:white;
    position:sticky;
    top:0;
    z-index:40;
    border-bottom:1px solid #202a31;
}

.brand {
    display:flex;
    align-items:center;
    gap:12px;
    font-weight:900;
    font-style:italic;
}

.brand img {
    width:74px;
    height:60px;
    object-fit:contain;
}

.brand span {
    font-size:20px;
    line-height:.9;
}

.brand small {
    display:block;
    color:var(--orange);
    font-size:10px;
    letter-spacing:2px;
    margin-top:8px;
}

.site-header nav {
    display:flex;
    align-items:center;
    gap:24px;
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
}

.site-header nav a:hover {
    color:var(--blue);
}

.nav-cta,
.btn {
    border:0;
    background:var(--orange);
    color:white;
    text-transform:uppercase;
    font-weight:800;
    padding:15px 22px;
    cursor:pointer;
    box-shadow:5px 5px 0 rgba(5, 174, 232, .45);
    transition:.2s;
}

.btn:hover,
.nav-cta:hover {
    transform:translate(-2px, -2px);
    box-shadow:8px 8px 0 rgba(5, 174, 232, .6);
}

.btn-ghost {
    background:transparent;
    border:1px solid #68737b;
    box-shadow:none;
}

.btn-light {
    background:white;
    color:var(--ink);
    box-shadow:5px 5px 0 #0a6f98;
}

.menu-btn {
    display:none;
    background:none;
    border:0;
    color:white;
    font-size:28px;
}

.hero {
    min-height:720px;
    background:radial-gradient(circle at 78% 20%, #19394a 0, transparent 34%), linear-gradient(120deg, #080d11 60%, #121c22);
    color:white;
    display:grid;
    grid-template-columns:1.1fr .9fr;
    align-items:center;
    padding:75px 7vw;
    position:relative;
    overflow:hidden;
}

.hero:before,
.hero:after {
    content:'';
    position:absolute;
    border-radius:50%;
    filter:blur(1px);
    opacity:.7;
}

.hero:before {
    width:400px;
    height:120px;
    background:var(--blue);
    right:-170px;
    bottom:80px;
    transform:rotate(-16deg);
}

.hero:after {
    width:260px;
    height:70px;
    background:var(--orange);
    left:-120px;
    top:120px;
    transform:rotate(14deg);
}

.hero-copy {
    position:relative;
    z-index:2;
}

.eyebrow {
    font-weight:800;
    letter-spacing:3px;
    font-size:12px;
    color:var(--blue);
}

h1,
h2,
h3 {
    margin:0;
}

.hero h1,
.page-hero h1,
.article h1 {
    font-family:Anton, Impact, sans-serif;
    text-transform:uppercase;
    font-weight:400;
    letter-spacing:1px;
}

.hero h1 {
    font-size:clamp(64px, 7.5vw, 118px);
    line-height:.88;
    margin:22px 0;
}

.hero h1 em {
    font-style:normal;
    color:var(--blue);
    text-shadow:5px 5px 0 #07364b;
}

.hero p {
    font-size:18px;
    line-height:1.7;
    max-width:650px;
    color:#c5ced3;
}

.hero-actions {
    display:flex;
    gap:16px;
    margin:32px 0;
}

.hero-contact {
    display:flex;
    gap:28px;
    font-weight:700;
    font-size:14px;
}

.hero-art {
    position:relative;
    text-align:center;
}

.hero-art img {
    width:min(510px, 100%);
    filter:drop-shadow(0 30px 30px #000);
}

.spray-line {
    height:14px;
    background:linear-gradient(90deg, var(--lime), var(--blue), var(--orange));
    transform:rotate(-7deg);
    box-shadow:0 0 30px var(--blue);
}

.section {
    padding:100px 7vw;
}

.section-head {
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:40px;
    margin-bottom:48px;
}

.section-head h2,
.about h2,
.contact-band h2 {
    font-family:Anton, Impact, sans-serif;
    font-size:clamp(42px, 5vw, 72px);
    text-transform:uppercase;
    line-height:1;
    margin-top:12px;
}

.section-head>p {
    max-width:520px;
    line-height:1.7;
    color:#4e5960;
}

.service-grid {
    display:grid;
    grid-template-columns:1.2fr 1fr 1fr;
    gap:20px;
}

.service-grid article {
    border:1px solid #c8c6c0;
    padding:36px;
    min-height:360px;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    background:white;
}

.service-grid article>span {
    color:var(--orange);
    font-weight:900;
}

.service-grid h3 {
    font-size:clamp(36px, 3vw, 52px);
    line-height:1;
    margin:34px 0 18px;
}

.service-grid p {
    line-height:1.7;
    color:#566068;
}

.service-grid .service-main {
    background:var(--ink);
    color:white;
    transform:rotate(-1deg);
}

.service-main strong {
    font-family:Anton;
    font-size:46px;
    color:var(--blue);
    margin:auto 0 22px;
}

.service-main strong small {
    font:600 14px Montserrat;
    color:#aeb8bd;
}

.dark {
    background:#0b1014;
    color:white;
}

.portfolio-grid {
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:18px;
}

.work-card {
    border:0;
    background:#161d22;
    color:white;
    padding:0;
    text-align:left;
    cursor:pointer;
    overflow:hidden;
}

.work-card img {
    width:100%;
    height:300px;
    object-fit:cover;
    display:block;
    filter:saturate(.85);
    transition:.3s;
}

.work-card:hover img {
    transform:scale(1.04);
    filter:saturate(1.1);
}

.work-card span,
.work-card small {
    display:block;
    padding:14px 18px 0;
    font-weight:800;
}

.work-card small {
    padding:3px 18px 18px;
    color:var(--blue);
}

.quote-grid {
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:22px;
}

.quote-grid blockquote {
    margin:0;
    padding:34px;
    background:white;
    border-top:5px solid var(--blue);
    box-shadow:0 15px 30px #17212a12;
}

.quote-grid blockquote div {
    color:var(--orange);
    letter-spacing:4px;
}

.quote-grid blockquote p {
    font-size:18px;
    line-height:1.7;
    min-height:90px;
}

.quote-grid cite {
    font-style:normal;
    font-weight:800;
}

.blog-grid {
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:24px;
}

.blog-grid article {
    background:white;
    border:1px solid #d6d2c9;
}

.blog-grid img {
    width:100%;
    height:220px;
    object-fit:cover;
}

.blog-image-link {
    display:block;
    overflow:hidden;
}

.blog-image-link img {
    transition:.3s;
}

.blog-image-link:hover img {
    transform:scale(1.04);
}

.blog-grid article>div {
    padding:28px;
}

.blog-grid time {
    display:block;
    font-size:12px;
    color:#71808a;
}

.post-tags {
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin:0 0 12px;
}

.post-tags span,
.post-tags a {
    display:inline-flex;
    align-items:center;
    min-height:28px;
    padding:0 10px;
    border-radius:999px;
    background:#e9f7fc;
    color:#087ba7;
    font-size:12px;
    font-weight:800;
    text-decoration:none;
}

.post-tags a:hover {
    background:var(--orange);
    color:white;
}

.blog-grid h3 {
    font-size:23px;
    margin:12px 0;
}

.blog-grid h3 a {
    color:inherit;
    text-decoration:none;
}

.blog-grid h3 a:hover {
    color:var(--blue);
}

.blog-grid p {
    line-height:1.6;
    color:#566068;
}

.blog-grid a,
.text-link {
    font-weight:800;
    color:#087ba7;
}

.about {
    display:grid;
    grid-template-columns:.8fr 1.2fr;
    gap:80px;
    background:#dfe4e5;
}

.about-content {
    display:grid;
    grid-template-columns:minmax(0, 1fr) minmax(240px, 34%);
    align-items:stretch;
    gap:30px;
}

.about-content>div>p {
    font-size:19px;
    line-height:1.8;
    margin-top:0;
}

.about-image {
    width:100%;
    height:100%;
    min-height:330px;
    max-height:520px;
    object-fit:cover;
    display:block;
    border-radius:8px;
    box-shadow:0 20px 55px #10182020;
}

.about-points {
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:18px;
    margin-top:36px;
}

.about-points article {
    border-top:3px solid var(--orange);
    padding-top:22px;
}

.about-points b {
    color:var(--blue);
    font-size:22px;
    line-height:1;
}

.about-points h3 {
    margin:14px 0;
    font-size:32px;
    font-weight:600;
}

.about-points p {
    line-height:1.65;
    font-size:18px;
}

.contact-band {
    background:var(--blue);
    padding:70px 7vw;
    display:grid;
    grid-template-columns:1fr auto auto;
    align-items:center;
    gap:50px;
    color:white;
}

.contact-band .eyebrow {
    color:#05364a;
}

.contact-links {
    display:flex;
    flex-direction:column;
    gap:9px;
    font-weight:700;
}

.social-links {
    display:flex;
    align-items:center;
    gap:10px;
    margin-top:8px;
}

.social-links a {
    width:38px;
    height:38px;
    border-radius:50%;
    display:grid;
    place-items:center;
    background:#101316;
    color:white;
    font-size:18px;
    transition:.2s;
}

.contact-band .social-links a {
    background:white;
    color:#087ba7;
}

.social-links a:hover {
    transform:translateY(-2px);
    background:var(--orange);
    color:white;
}

footer {
    background:#070b0e;
    color:#a7b0b5;
    display:flex;
    align-items:center;
    gap:25px;
    padding:35px 7vw;
}

footer img {
    width:200px;
}

.created-by {
    display:inline-flex;
    align-items:center;
    opacity:.82;
    transition:.2s;
}

.created-by:hover {
    opacity:1;
    transform:translateY(-1px);
}

.created-by img {
    width:225px;
    display:block;
}

footer p:last-child {
    margin-left:auto;
}

.modal {
    position:fixed;
    inset:0;
    background:#05080bd9;
    display:none;
    place-items:center;
    padding:24px;
    z-index:100;
}

.modal.open {
    display:grid;
}

.modal-card {
    width:min(560px, 100%);
    max-height:92vh;
    overflow:auto;
    background:var(--paper);
    padding:42px;
    position:relative;
    box-shadow:12px 12px 0 var(--blue);
}

.modal-wide {
    width:min(1180px, 100%);
    padding:48px;
}

.modal-close {
    position:absolute;
    right:18px;
    top:16px;
    width:40px;
    height:40px;
    border:0;
    background:#111820;
    color:white;
    border-radius:50%;
    font-size:18px;
    cursor:pointer;
    display:grid;
    place-items:center;
}

.modal-card h2 {
    font-family:Anton;
    font-size:42px;
    text-transform:uppercase;
    margin:10px 52px 28px 0;
}

.modal-card label {
    display:block;
    font-weight:700;
    font-size:13px;
    margin:13px 0;
}

.modal-card input,
.modal-card textarea {
    width:100%;
    margin-top:7px;
    padding:13px;
    border:1px solid #aab2b6;
    background:white;
}

.upload-card > span {
    color:#1c2730;
}

.upload-card input {
    position:absolute;
    width:1px;
    height:1px;
    opacity:0;
    pointer-events:none;
}

.upload-preview {
    min-height:150px;
    margin-top:8px;
    padding:18px;
    border:1px dashed #aebbc2;
    border-radius:8px;
    background:linear-gradient(135deg, #f9fbfc, #eef4f7);
    display:grid;
    place-items:center;
    align-content:center;
    gap:6px;
    cursor:pointer;
    overflow:hidden;
    transition:.2s;
}

.upload-preview:hover {
    border-color:var(--blue);
    box-shadow:0 14px 34px #10182012;
}

.upload-preview img {
    width:100%;
    height:150px;
    object-fit:cover;
    border-radius:6px;
    margin-bottom:8px;
}

.upload-preview strong {
    color:#087ba7;
    font-size:15px;
    word-break:break-word;
    text-align:center;
}

.upload-preview small {
    color:#68737b;
    font-weight:600;
    text-align:center;
}

.form-status {
    display:none;
    margin:16px 0;
    padding:13px 15px;
    border-radius:8px;
    font-weight:800;
    line-height:1.45;
}

.form-status:not(:empty) {
    display:block;
}

.form-status.is-loading {
    background:#eef7fa;
    color:#087ba7;
}

.form-status.is-success {
    background:#e4f8e9;
    color:#17622a;
}

.form-status.is-error {
    background:#ffe7e2;
    color:#b8362e;
}

.js-contact-form button:disabled {
    cursor:not-allowed;
    opacity:.7;
}

.compare {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:26px;
}

.compare-item {
    min-width:0;
}

.image-frame {
    position:relative;
    overflow:hidden;
    border-radius:8px;
    background:#101316;
    box-shadow:0 20px 48px #10182024;
}

.compare img {
    width:100%;
    height:360px;
    object-fit:cover;
    display:block;
    cursor:zoom-in;
    transition:.3s;
}

.image-frame:hover img {
    transform:scale(1.03);
}

.work-lightbox-image:focus {
    outline:3px solid var(--blue);
    outline-offset:3px;
}

.compare-badge {
    position:absolute;
    left:16px;
    top:16px;
    z-index:2;
    display:inline-flex;
    align-items:center;
    gap:8px;
    min-height:38px;
    padding:0 14px;
    border-radius:999px;
    color:white;
    font-size:13px;
    font-weight:900;
    letter-spacing:.08em;
    box-shadow:0 12px 30px #0006;
    backdrop-filter:blur(12px);
}

.before .compare-badge {
    background:#d83b31e6;
}

.after .compare-badge {
    background:#20883de6;
}

.compare-badge i {
    font-size:15px;
}

.compare ul {
    padding:0;
    margin:18px 0 0;
    list-style:none;
    display:grid;
    gap:12px;
}

.compare li {
    display:flex;
    align-items:flex-start;
    gap:10px;
    font-size:17px;
    line-height:1.45;
}

.compare li i {
    flex:0 0 24px;
    width:24px;
    height:24px;
    border-radius:50%;
    display:grid;
    place-items:center;
    color:white;
    font-size:13px;
    margin-top:1px;
}

.bad {
    color:#b8362e;
}

.bad i {
    background:#d83b31;
}

.good {
    color:#25853c;
}

.good i {
    background:#25853c;
}

.page-hero {
    padding:110px 7vw 80px;
    background:#0b1014;
    color:white;
}

.page-hero h1,
.article h1 {
    font-size:clamp(55px, 8vw, 110px);
    margin:15px 0;
}

.page-hero p {
    font-size:18px;
    color:#b8c1c6;
}

.article {
    max-width:980px;
    margin:auto;
    padding:90px 24px;
}

.article>a {
    color:#087ba7;
    font-weight:700;
}

.article time {
    display:block;
    margin-top:45px;
    color:#75828a;
}

.article .post-tags {
    margin:16px 0 24px;
}

.article .post-tags span,
.article .post-tags a {
    background:#101316;
    color:white;
}

.article>img {
    width:100%;
    max-height:540px;
    object-fit:cover;
    margin:35px 0;
}

.article-main-image {
    cursor:zoom-in;
}

.prose {
    font-size:18px;
    line-height:1.85;
    white-space:normal;
}

.prose h1,
.prose h2,
.prose h3,
.prose h4,
.prose h5,
.prose h6 {
    font-family:'Barlow Condensed', Arial, sans-serif;
    line-height:1.05;
    margin:38px 0 16px;
}

.prose h1 {
    font-size:52px;
}

.prose h2 {
    font-size:42px;
}

.prose h3 {
    font-size:34px;
}

.prose h4 {
    font-size:28px;
}

.prose h5 {
    font-size:23px;
}

.prose h6 {
    font-size:19px;
    text-transform:uppercase;
}

.prose img {
    width:100%;
    max-height:560px;
    object-fit:cover;
    display:block;
    margin:28px 0;
    border-radius:8px;
}

.prose blockquote {
    margin:30px 0;
    padding:18px 22px;
    border-left:5px solid var(--blue);
    background:#eef7fa;
}

.prose pre {
    overflow:auto;
    padding:18px;
    border-radius:8px;
    background:#101316;
    color:white;
}

.prose .ql-align-center {
    text-align:center;
}

.prose .ql-align-right {
    text-align:right;
}

.prose .ql-align-justify {
    text-align:justify;
}

.prose .ql-indent-1 {
    padding-left:3em;
}

.prose .ql-indent-2 {
    padding-left:6em;
}

.prose .ql-indent-3 {
    padding-left:9em;
}

.image-lightbox {
    position:fixed;
    inset:0;
    z-index:200;
    display:none;
    place-items:center;
    padding:28px;
    background:#05080bee;
}

.image-lightbox.open {
    display:grid;
}

.image-lightbox img {
    max-width:min(1180px, 96vw);
    max-height:88vh;
    object-fit:contain;
    border-radius:8px;
    box-shadow:0 30px 80px #0009;
}

.image-lightbox figure {
    margin:0;
    display:grid;
    justify-items:center;
    gap:14px;
}

.image-lightbox figcaption {
    color:white;
    font-weight:800;
    letter-spacing:.06em;
    text-transform:uppercase;
}

.image-lightbox-close {
    position:absolute;
    right:22px;
    top:20px;
    width:44px;
    height:44px;
    border:0;
    border-radius:50%;
    background:white;
    color:#101316;
    cursor:pointer;
    display:grid;
    place-items:center;
    font-size:18px;
}

.image-lightbox-nav {
    position:absolute;
    top:50%;
    width:54px;
    height:54px;
    border:0;
    border-radius:50%;
    background:white;
    color:#101316;
    cursor:pointer;
    display:none;
    place-items:center;
    font-size:24px;
    transform:translateY(-50%);
    box-shadow:0 18px 45px #0008;
}

.image-lightbox.has-gallery .image-lightbox-nav {
    display:grid;
}

.image-lightbox-prev {
    left:28px;
}

.image-lightbox-next {
    right:28px;
}

@media(max-width:900px) {
    .site-header {
        height:72px;
        padding:0 20px;
    }

    .brand span {
        display:none;
    }

    .menu-btn {
        display:block;
    }

    .site-header nav {
        display:none;
        position:absolute;
        top:72px;
        left:0;
        right:0;
        background:#0b1014;
        padding:25px;
        flex-direction:column;
        align-items:stretch;
    }

    .site-header nav.open {
        display:flex;
    }

    .hero {
        grid-template-columns:1fr;
        padding:70px 24px;
        min-height:auto;
    }

    .hero-art {
        margin-top:45px;
    }

    .hero-contact {
        flex-direction:column;
        gap:10px;
    }

    .section {
        padding:70px 24px;
    }

    .section-head {
        align-items:start;
        flex-direction:column;
    }

    .service-grid,
    .portfolio-grid,
    .quote-grid,
    .blog-grid,
    .about-points {
        grid-template-columns:1fr;
    }

    .about {
        grid-template-columns:1fr;
        gap:35px;
    }

    .about-content {
        grid-template-columns:1fr;
    }

    .about-image {
        height:auto;
        min-height:0;
        max-height:360px;
    }

    .contact-band {
        grid-template-columns:1fr;
        gap:25px;
    }

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

    .compare img {
        height:260px;
    }

    .compare-badge {
        left:12px;
        top:12px;
        min-height:34px;
        padding:0 12px;
        font-size:12px;
    }

    .image-lightbox {
        padding:18px;
    }

    .image-lightbox-nav {
        width:44px;
        height:44px;
        font-size:20px;
        top:auto;
        bottom:22px;
        transform:none;
    }

    .image-lightbox-prev {
        left:calc(50% - 58px);
    }

    .image-lightbox-next {
        right:calc(50% - 58px);
    }

    .modal-card {
        padding:34px 22px;
    }

    .modal-wide {
        padding:34px 22px;
    }

    .hero-actions {
        flex-direction:column;
        align-items:flex-start;
    }

    footer {
        align-items:flex-start;
        flex-direction:column;
    }

    footer p:last-child {
        margin-left:0;
    }

}

/* V2 — moderni urbani zid / graffiti smjer */

:root {
    --ink:#101316;
    --paper:#eeeae1;
    --blue:#00aeea;
    --orange:#ff7315;
    --lime:#a8d82b;
    --muted:#81888d;
    --line:#343a3e;
}

body {
    font-family:Inter, Arial, sans-serif;
    background-color:var(--paper);
    background-image:radial-gradient(#20262a12 .8px, transparent .8px);
    background-size:8px 8px;
}

h1,
h2,
h3,
.hero h1,
.page-hero h1,
.article h1,
.section-head h2,
.about h2,
.contact-band h2 {
    font-family:'Barlow Condensed', Arial, sans-serif;
    font-weight:400;
    letter-spacing:-.025em;
}

.site-header {
    height:78px;
    background:#111416ee;
    backdrop-filter:blur(18px);
    border-bottom:1px solid #ffffff18;
    padding:0 6vw;
}

.brand {
    font-weight:600;
    font-style:normal;
}

.brand span {
    font-family:'Barlow Condensed';
    font-weight:500;
    letter-spacing:.04em;
}

.brand img {
    width:250px;
}

.site-header nav {
    font-weight:600;
    letter-spacing:.04em;
}

.nav-cta,
.btn {
    font-weight:700;
    border-radius:2px;
    box-shadow:none;
    position:relative;
    overflow:hidden;
}

.nav-cta:after,
.btn:after {
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(110deg, transparent 30%, #fff4, transparent 70%);
    transform:translateX(-130%);
    transition:.45s;
}

.nav-cta:hover:after,
.btn:hover:after {
    transform:translateX(130%);
}

.btn:hover,
.nav-cta:hover {
    transform:translateY(-2px);
    box-shadow:0 12px 30px #0003;
}

.hero {
    min-height:760px;
    padding:90px 7vw;
    background-color:#202326;
    background-image:linear-gradient(90deg, #111416f2 0%, #111416d9 46%, #1114164d 100%), repeating-linear-gradient(0deg, transparent 0 42px, #ffffff0b 42px 44px), repeating-linear-gradient(90deg, transparent 0 92px, #00000025 92px 95px), radial-gradient(circle at 20% 15%, #596066 0, #24282b 55%, #171a1c 100%);
    isolation:isolate;
}

.hero:before {
    inset:0;
    width:auto;
    height:auto;
    border-radius:0;
    background:linear-gradient(105deg, transparent 0 64%, #0008 64% 65%, transparent 65%);
    opacity:1;
    filter:none;
    transform:none;
    z-index:-1;
}

.hero:after {
    width:520px;
    height:520px;
    right:-180px;
    left:auto;
    top:-160px;
    background:radial-gradient(circle, #00aeea45 0 2px, transparent 3px);
    background-size:15px 15px;
    filter:none;
    transform:rotate(12deg);
    z-index:-1;
}

.hero-noise {
    position:absolute;
    inset:0;
    opacity:.24;
    pointer-events:none;
    background-image:url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.33'/%3E%3C/svg%3E");
    mix-blend-mode:soft-light;
}

.paint {
    position:absolute;
    pointer-events:none;
    z-index:-1;
    filter:saturate(1.1);
}

.paint-blue {
    width:600px;
    height:105px;
    right:7%;
    top:33%;
    background:linear-gradient(90deg, transparent, #00aeeacc 14% 82%, transparent);
    clip-path:polygon(0 35%, 9% 15%, 15% 31%, 28% 8%, 52% 28%, 65% 4%, 100% 26%, 94% 68%, 77% 83%, 52% 70%, 34% 94%, 12% 74%);
}

.paint-orange {
    width:360px;
    height:75px;
    left:2%;
    bottom:3%;
    background:#ff7315b8;
    transform:rotate(-8deg);
    clip-path:polygon(0 45%, 10% 20%, 27% 33%, 39% 12%, 75% 30%, 100% 7%, 93% 72%, 61% 64%, 41% 89%, 19% 66%);
}

.wall-tag {
    position:absolute;
    right:3%;
    bottom:2%;
    font:300 88px 'Barlow Condensed';
    letter-spacing:.06em;
    color:#ffffff08;
    transform:rotate(-6deg);
    white-space:nowrap;
}

.hero-copy {
    max-width:920px;
}

.eyebrow {
    font-weight:600;
    letter-spacing:.18em;
}

.hero .eyebrow {
    display:inline-block;
    font-size:15px;
    line-height:1.35;
}

.hero h1 {
    font-size:clamp(66px, 7.3vw, 112px);
    line-height:.88;
    font-weight:800;
    letter-spacing:-.045em;
    margin:24px 0;
}

.hero h1 em {
    font-weight:500;
    text-shadow:none;
    color:#35c7f4;
    position:relative;
}

.hero h1 em:after {
    content:'';
    position:absolute;
    left:0;
    right:5%;
    height:8px;
    bottom:2px;
    background:var(--orange);
    opacity:.8;
    transform:rotate(-1deg);
    z-index:-1;
}

.hero p {
    font-size:17px;
    font-weight:400;
    max-width:570px;
}

.hero-contact {
    font-weight:500;
}

.hero-art {
    z-index:2;
}

.logo-plate {
    position:relative;
    background:#e9e6dd;
    border:1px solid #ffffff52;
    padding:30px 28px 20px;
    transform:rotate(2.2deg);
    box-shadow:0 40px 80px #0009;
}

.hero-art img {
    width:min(470px, 100%);
    filter:drop-shadow(0 16px 15px #0004);
}

.tape {
    position:absolute;
    width:110px;
    height:30px;
    background:#d9cf9bcc;
    z-index:2;
    box-shadow:0 2px 5px #0004;
}

.tape-one {
    left:-35px;
    top:20px;
    transform:rotate(-38deg);
}

.tape-two {
    right:-30px;
    bottom:20px;
    transform:rotate(-36deg);
}

.spray-line {
    height:5px;
    margin-top:-8px;
    box-shadow:0 0 24px #00aeea88;
}

.hero-art small {
    position:relative;
    z-index:3;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-top:24px;
    padding:9px 16px;
    background:#111416;
    color:white;
    border:1px solid #ffffff24;
    box-shadow:0 14px 34px #0006;
    letter-spacing:.18em;
    font-size:14px;
    font-weight:800;
}

.section {
    padding:110px 7vw;
}

.section-head h2,
.about h2,
.contact-band h2 {
    font-size:clamp(46px, 5vw, 74px);
    font-weight:800;
    letter-spacing:-.04em;
}

.section-head {
    border-bottom:1px solid #b9b6ae;
    padding-bottom:34px;
}

.service-grid {
    grid-template-columns:1.15fr 1fr;
    gap:14px;
}

.service-grid article {
    border:0;
    border-radius:3px;
    padding:44px;
    min-height:380px;
    box-shadow:0 16px 50px #1118200c;
    background:#f8f6f1;
}

.service-grid .service-main {
    background:#161a1d;
    transform:none;
    position:relative;
    overflow:hidden;
}

.service-grid .service-main:after {
    content:'REMOVE';
    position:absolute;
    right:-18px;
    top:50%;
    font:300 72px 'Barlow Condensed';
    color:#fff08;
    transform:rotate(90deg);
}

.service-grid h3 {
    font-family:'Barlow Condensed';
    font-weight:500;
    font-size:clamp(42px, 3.2vw, 58px);
    line-height:.95;
}

.service-main strong {
    font-family:'Barlow Condensed';
    font-weight:400;
}

.dark {
    background-color:#16191b;
    background-image:linear-gradient(#111418d9, #111418d9), repeating-linear-gradient(0deg, transparent 0 45px, #ffffff14 45px 47px), repeating-linear-gradient(90deg, transparent 0 110px, #0004 110px 113px);
}

.dark .section-head {
    border-color:#ffffff24;
}

.work-card {
    background:#202529;
    border-radius:4px;
    box-shadow:0 20px 45px #0005;
}

.work-card span {
    font-family:'Barlow Condensed';
    font-size:25px;
    font-weight:500;
}

.work-card small {
    font-weight:500;
}

.quote-grid blockquote {
    border:0;
    border-left:3px solid var(--blue);
    background:#faf9f5;
}

.blog-grid article {
    border:0;
    border-radius:4px;
    overflow:hidden;
    box-shadow:0 18px 55px #10182014;
}

.blog-grid h3 {
    font-family:'Barlow Condensed';
    font-size:30px;
    font-weight:500;
}

.about {
    background-color:#dadbd7;
    background-image:linear-gradient(90deg, #ffffff25 1px, transparent 1px), linear-gradient(#ffffff25 1px, transparent 1px);
    background-size:46px 46px;
}

.contact-band {
    background:linear-gradient(115deg, #009ed6, #00bcec);
    position:relative;
    overflow:hidden;
}

.contact-band:after {
    content:'CONTACT';
    position:absolute;
    right:-20px;
    bottom:-45px;
    font:300 145px 'Barlow Condensed';
    color:#fff12;
}

.modal-card {
    box-shadow:0 35px 90px #0009;
    border-top:5px solid var(--blue);
}

.modal-card h2 {
    font-family:'Barlow Condensed';
    font-weight:400;
}

.page-hero {
    background-color:#181b1e;
    background-image:repeating-linear-gradient(0deg, transparent 0 43px, #ffffff0b 43px 45px), radial-gradient(circle at 85% 20%, #00aeea33, transparent 38%);
}

.page-hero h1,
.article h1 {
    font-weight:800;
    letter-spacing:-.04em;
}

@media(max-width:900px) {
    .site-header {
        height:72px;
    }

    .hero {
        padding:72px 24px;
    }

    .hero h1 {
        font-size:58px;
    }

    .hero-art {
        margin-top:55px;
    }

    .logo-plate {
        padding:20px;
    }

    .wall-tag {
        font-size:50px;
    }

    .section {
        padding:75px 24px;
    }

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

    .service-grid article {
        min-height:auto;
        padding:32px 24px;
    }

    .service-grid .service-main:after {
        display:none;
    }

    .service-grid h3 {
        font-size:40px;
        margin:26px 0 14px;
    }

    .service-main strong {
        margin:24px 0 22px;
        font-size:42px;
    }

    .paint-blue {
        right:-300px;
    }

    .contact-band:after {
        display:none;
    }

}

.not-found-hero {
    min-height:calc(100vh - 78px);
    padding:110px 7vw;
    display:grid;
    grid-template-columns:minmax(0, 1fr) minmax(260px, 420px);
    align-items:center;
    gap:60px;
    overflow:hidden;
    position:relative;
    isolation:isolate;
    background-color:#181b1e;
    background-image:linear-gradient(90deg, #111416f2 0%, #111416d9 52%, #11141666 100%), repeating-linear-gradient(0deg, transparent 0 43px, #ffffff0b 43px 45px), repeating-linear-gradient(90deg, transparent 0 110px, #0004 110px 113px), radial-gradient(circle at 85% 22%, #00aeea33, transparent 38%);
    color:white;
}

.not-found-hero:after {
    content:'ANTIGRAFIT';
    position:absolute;
    right:-34px;
    bottom:-58px;
    z-index:-1;
    font:300 150px 'Barlow Condensed';
    letter-spacing:.06em;
    color:#ffffff0b;
    transform:rotate(-4deg);
}

.not-found-copy {
    max-width:720px;
}

.not-found-copy strong {
    display:block;
    margin:16px 0 4px;
    color:var(--blue);
    font-family:'Barlow Condensed', Arial, sans-serif;
    font-size:clamp(98px, 14vw, 190px);
    font-weight:800;
    line-height:.78;
    letter-spacing:-.045em;
}

.not-found-copy h1 {
    max-width:760px;
    font-family:'Barlow Condensed', Arial, sans-serif;
    font-size:clamp(48px, 6vw, 86px);
    font-weight:800;
    line-height:.92;
    letter-spacing:-.04em;
    text-transform:uppercase;
}

.not-found-copy p {
    max-width:560px;
    margin:24px 0 0;
    color:#c6d0d5;
    font-size:18px;
    line-height:1.75;
}

.not-found-actions {
    display:flex;
    flex-wrap:wrap;
    gap:16px;
    margin-top:34px;
}

.not-found-actions .btn {
    display:inline-flex;
    align-items:center;
    justify-content:center;
}

.not-found-mark {
    position:relative;
    min-height:340px;
    display:grid;
    place-items:center;
}

.not-found-mark span {
    color:#ffffff0f;
    font-family:'Barlow Condensed', Arial, sans-serif;
    font-size:220px;
    font-weight:800;
    line-height:1;
    letter-spacing:-.06em;
    text-shadow:0 24px 80px #0008;
}

.not-found-mark i {
    position:absolute;
    width:min(430px, 90vw);
    height:92px;
    background:linear-gradient(90deg, transparent, #ff7315d9 14% 82%, transparent);
    clip-path:polygon(0 40%, 9% 18%, 19% 31%, 32% 10%, 55% 32%, 72% 7%, 100% 28%, 93% 70%, 78% 84%, 52% 70%, 36% 93%, 14% 74%);
    transform:rotate(-13deg);
    box-shadow:0 0 45px #ff731566;
}

@media(max-width:900px) {
    .not-found-hero {
        min-height:auto;
        grid-template-columns:1fr;
        gap:34px;
        padding:76px 24px;
    }

    .not-found-copy strong {
        font-size:112px;
    }

    .not-found-copy h1 {
        font-size:48px;
    }

    .not-found-mark {
        min-height:190px;
        place-items:start;
    }

    .not-found-mark span {
        font-size:132px;
    }

    .not-found-mark i {
        width:280px;
        height:64px;
    }
}
