
@import url("background.css");

:root {
    --bg: #05080d;
    --bg-2: #08111c;
    --panel: rgba(10,18,30,.72);
    --panel-solid: #0a121e;
    --line: rgba(255,255,255,.09);
    --line-blue: rgba(59,130,246,.32);
    --blue: #1d4ed8;
    --blue-2: #3b82f6;
    --blue-3: #66a3ff;
    --text: #f5f7fb;
    --muted: #9ca9bb;
    --muted-2: #6d7b8e;
    --radius: 22px;
    --shadow: 0 24px 80px rgba(0,0,0,.38);
}

* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background: #02050a;
    color: var(--text);
    font-family: "Exo 2", system-ui, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

img {
    max-width: 100%;
    display: block;
}

h1, h2, h3, h4, h5, h6,
.brand,
.footer-brand,
.display {
    font-family: "Orbitron", sans-serif;
    color: #fff;
}

p {
    color: #fff;
}

.container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

main {
    position: relative;
    z-index: 2;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(255,255,255,.06);
    background: rgba(5,8,13,.74);
    backdrop-filter: blur(18px);
}

.nav-wrap {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    width: 290px;
}

.brand img {
    width: 100%;
    height: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-nav a {
    padding: 10px 14px;
    color: #fff;
    font-size: .88rem;
    font-weight: 600;
    letter-spacing: .04em;
    transition: .25s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: #fff;
}

.main-nav .nav-cta {
    margin-left: 8px;
    padding: 11px 17px;
    border: 1px solid rgba(59,130,246,.5);
    background: linear-gradient(135deg, rgba(29,78,216,.26), rgba(59,130,246,.07));
    border-radius: 9px;
    color: #fff;
    box-shadow: inset 0 0 24px rgba(59,130,246,.08);
}

.nav-cta span {
    color: var(--blue-3);
    margin-left: 5px;
}

.nav-toggle {
    display: none;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 22px;
    color: var(--blue-3);
    text-transform: uppercase;
    font-size: .76rem;
    letter-spacing: .18em;
    font-weight: 700;
}

.eyebrow::before {
    content: "";
    width: 27px;
    height: 1px;
    background: var(--blue-2);
    box-shadow: 0 0 10px var(--blue-2);
}

.gradient-text {
    color: #fff;
    background: linear-gradient(110deg,#fff 10%,#fff 40%,#3b82f6 72%,#8bbaff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.actions {
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 9px;
    border: 1px solid var(--line);
    font-weight: 700;
    letter-spacing: .02em;
    transition: transform .25s ease,border-color .25s ease,background .25s ease;
}

.btn:hover {
    transform: translateY(-2px);
    border-color: rgba(59,130,246,.6);
}

.btn-primary {
    background: linear-gradient(135deg,#1d4ed8,#2563eb);
    border-color: #3b82f6;
    box-shadow: 0 12px 35px rgba(29,78,216,.24);
}

.btn-secondary {
    background: rgba(255,255,255,.035);
    color: #fff;
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .7s ease,transform .7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

.section { padding: 115px 0; position: relative; }
.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-title { margin: 0; font-size: clamp(2.2rem, 4vw, 4rem); line-height: 1.05; letter-spacing: -.045em; }
.section-copy { color: var(--muted); font-size: 1.03rem; margin: 19px 0 0; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.card {
    position: relative;
    padding: 30px;
    border: 1px solid rgba(255,255,255,.075);
    background:
        linear-gradient(
            145deg,
            rgba(14,25,42,.72),
            rgba(3,8,14,.70)
        );
    border-radius: var(--radius);
    box-shadow:
        0 18px 55px rgba(0,0,0,.28),
        inset 0 1px 0 rgba(255,255,255,.035);
    backdrop-filter: blur(18px);
    overflow: hidden;
    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}
.card::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -140px;
    top: -140px;
    background:
        radial-gradient(
            circle,
            rgba(59,130,246,.20),
            rgba(59,130,246,.06) 35%,
            transparent 70%
        );
    filter: blur(10px);
    pointer-events: none;
}
.card::after {
    content: "";
    position: absolute;
    left: -100%;
    bottom: 0;
    width: 60%;
    height: 1px;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(59,130,246,.8),
            transparent
        );
    box-shadow:
        0 0 15px rgba(59,130,246,.7),
        0 0 35px rgba(59,130,246,.4);
    transition: left .7s ease;
}
.card:hover {
    transform: translateY(-5px);
    border-color: rgba(59,130,246,.32);
    box-shadow:
        0 25px 70px rgba(0,0,0,.35),
        0 0 45px rgba(29,78,216,.08),
        inset 0 1px 0 rgba(255,255,255,.05);
}
.card:hover::after {
    left: 120%;
}
.card-icon {
    width: 46px; height: 46px; display: grid; place-items: center;
    border: 1px solid rgba(59,130,246,.32);
    border-radius: 12px;
    color: #6eacff;
    background: rgba(29,78,216,.08);
    font-family: Orbitron, sans-serif;
    font-size: .82rem;
}
.card h3 { margin: 25px 0 10px; font-size: 1.22rem; }
.card p { color: var(--muted); margin: 0; font-size: .94rem; }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; margin-top: 55px; }
.stat { padding: 26px; background: rgba(7,12,20,.8); }
.stat strong { display: block; font-family: Orbitron; font-size: 1.55rem; }
.stat span { color: var(--muted-2); font-size: .83rem; }
.page-hero { padding: 175px 0 90px; border-bottom: 1px solid var(--line); }
.page-hero h1 { margin: 0; max-width: 900px; font-size: clamp(2.8rem, 6vw, 5.7rem); line-height: 1; letter-spacing: -.055em; }
.page-hero p { max-width: 680px; margin: 24px 0 0; color: var(--muted); font-size: 1.1rem; }
.service-number { color: #3b82f6; font-family: Orbitron; font-size: .75rem; }
.service-list { margin-top: 18px; padding: 0; list-style: none; }
.service-list li { padding: 8px 0; color: #aeb9c9; border-bottom: 1px solid rgba(255,255,255,.055); font-size: .88rem; }
.service-list li::before { content: "↳"; color: #3b82f6; margin-right: 8px; }
.work-card { min-height: 390px; display: flex; flex-direction: column; justify-content: flex-end; }
.work-art { position: absolute; inset: 0; opacity: .75; background:
    radial-gradient(circle at 70% 25%, rgba(59,130,246,.32), transparent 23%),
    linear-gradient(135deg, #0b1421, #03060a 58%, #0d1d31);
}
.work-art::after { content:""; position:absolute; width:130%; height:2px; top:52%; left:-15%; transform:rotate(-17deg); background:linear-gradient(90deg,transparent,#1d4ed8,#6aaaff,transparent); box-shadow:0 0 24px #3b82f6; }
.work-content { position: relative; z-index: 2; }
.work-tag { display:inline-block; margin-bottom:10px; color:#6ba8ff; font-size:.7rem; letter-spacing:.14em; text-transform:uppercase; }
.work-card h3 { font-size: 1.7rem; margin: 0 0 8px; }
.work-card p { color: #9daabc; margin: 0; max-width: 500px; }
.split { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: start; }
.check-list { list-style: none; padding: 0; margin: 25px 0 0; }
.check-list li { position: relative; padding: 12px 0 12px 27px; color: #b6c1cf; border-bottom: 1px solid rgba(255,255,255,.06); }
.check-list li::before { content:""; position:absolute; left:0; top:20px; width:9px; height:9px; border:1px solid #3b82f6; box-shadow:0 0 10px rgba(59,130,246,.7); transform:rotate(45deg); }
.contact-layout { display:grid; grid-template-columns: .8fr 1.2fr; gap:55px; }
.contact-points { display:grid; gap:12px; margin-top:28px; }
.contact-point { padding:19px; border:1px solid var(--line); background:rgba(255,255,255,.025); border-radius:14px; }
.contact-point span { display:block; color:var(--muted-2); font-size:.72rem; text-transform:uppercase; letter-spacing:.12em; margin-bottom:5px; }
.contact-point a, .contact-point strong { font-size:1rem; }
.form-card { padding:34px; }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.field { display:grid; gap:8px; margin-bottom:16px; }
.field.full { grid-column:1 / -1; }
.field label { color:#b7c2d0; font-size:.78rem; font-weight:600; }
.field input, .field textarea, .field select {
    width:100%; border:1px solid rgba(255,255,255,.1); border-radius:9px; outline:none;
    background:#070d16; color:#fff; padding:13px 14px; transition:.2s ease;
}
.field textarea { min-height:155px; resize:vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color:rgba(59,130,246,.65); box-shadow:0 0 0 3px rgba(59,130,246,.08); }
.form-status { padding:13px 15px; border:1px solid rgba(59,130,246,.35); background:rgba(29,78,216,.08); border-radius:9px; margin-bottom:18px; color:#cbdcff; }
.form-status.error { border-color:rgba(248,113,113,.35); background:rgba(127,29,29,.12); color:#fecaca; }

html,
body {
    min-height: 100%;
}
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
body > main {
    flex: 1 0 auto;
}
.site-footer {
    position: relative;
    flex-shrink: 0;
    width: 100%;
    margin: 0;
    padding: 42px 0 0;
    overflow: hidden;
    background:
        linear-gradient(
            180deg,
            #02060d 0%,
            #02050a 100%
        );
    border-top: 1px solid rgba(255,255,255,.06);
}
.footer-saskatoon {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 300px;
    margin: 0;
    padding: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}
.footer-saskatoon img {
    position: absolute;
    left: 50%;
    bottom: -85px;
    width: 1550px;
    max-width: none;
    height: auto;
    margin: 0;
    padding: 0;
    transform: translateX(-50%);
    opacity: .22;
    filter:
        brightness(.7)
        contrast(1.25)
        saturate(1.2)
        drop-shadow(
            0 0 12px rgba(37,99,235,.45)
        );
}
.footer-saskatoon::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(2,6,13,1) 0%,
            rgba(2,6,13,.78) 22%,
            rgba(2,6,13,.25) 58%,
            rgba(2,6,13,.85) 100%
        );
    pointer-events: none;
}
.footer-saskatoon-glow {
    position: absolute;
    left: 50%;
    bottom: 30px;
    width: 900px;
    height: 220px;
    transform: translateX(-50%);
    background:
        radial-gradient(
            ellipse,
            rgba(37,99,235,.13),
            transparent 70%
        );
    filter: blur(35px);
    pointer-events: none;
}
.footer-inner {
    position: relative;
    z-index: 5;
    width: 100%;
    padding: 0;
}
.footer-grid {
    display: grid;
    grid-template-columns:
        1.25fr
        1fr
        1.15fr
        1fr;
    gap: 45px;
    align-items: start;
    margin: 0;
    padding: 0;
}
.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
    margin: 0;
    padding: 0;
}
.footer-brand {
    display: inline-flex;
    margin: 0 0 7px;
    padding: 0;
}
.footer-brand img {
    display: block;
    width: 205px;
    height: auto;
}
.footer-about p {
    max-width: 290px;
    margin: 0 0 10px;
    padding: 0;
    color: rgba(255,255,255,.65);
    font-size: .78rem;
    line-height: 1.55;
}
.footer-location {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    color: rgba(255,255,255,.55);
    font-size: .7rem;
}
.footer-location-dot {
    width: 6px;
    height: 6px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #3b82f6;
    box-shadow:
        0 0 9px rgba(59,130,246,.85);
}
.footer-label {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 8px;
    padding: 0;
    color: #fff;
    font-family: "Orbitron", sans-serif;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.footer-label::before {
    content: "";
    width: 17px;
    height: 1px;
    flex-shrink: 0;
    background: #3b82f6;
    box-shadow:
        0 0 8px rgba(59,130,246,.7);
}
.footer-column > a:not(.footer-brand) {
    display: block;
    margin: 0;
    padding: 0;
    color: rgba(255,255,255,.62);
    font-size: .72rem;
    line-height: 1.35;
    text-decoration: none;
    transition:
        color .2s ease,
        transform .2s ease;
}
.footer-column > a:not(.footer-brand):hover {
    color: #fff;
    transform: translateX(3px);
}
.footer-contact-intro {
    max-width: 275px;
    margin: 0 0 6px;
    padding: 0;
    color: rgba(255,255,255,.65);
    font-size: .74rem;
    line-height: 1.5;
}
.footer-email {
    margin: 0 !important;
    color: #fff !important;
    font-size: .76rem !important;
    font-weight: 700;
}
.footer-location-text {
    margin: 0;
    color: rgba(255,255,255,.45) !important;
    font-size: .68rem !important;
}
.footer-project-link {
    display: inline-flex !important;
    align-items: center;
    gap: 9px;
    margin: 8px 0 0 !important;
    padding: 8px 12px;
    border:
        1px solid rgba(59,130,246,.42);
    border-radius: 7px;
    background:
        rgba(37,99,235,.07);
    color: #fff !important;
    font-size: .68rem !important;
    font-weight: 700;
    transition:
        background .2s ease,
        border-color .2s ease,
        transform .2s ease;
}
.footer-project-link:hover {
    background:
        rgba(37,99,235,.16);
    border-color:
        rgba(59,130,246,.75);
    transform: translateY(-1px) !important;
}
.footer-project-link span {
    color: #5b9cff;
}
.footer-divider {
    width: 100%;
    height: 1px;
    margin: 30px 0 0;
    background:
        rgba(255,255,255,.08);
}
.footer-bottom {
    display: grid;
    grid-template-columns:
        1fr
        auto
        1fr;
    align-items: center;
    gap: 20px;
    min-height: 48px;
    margin: 0;
    padding: 0;
    color: rgba(255,255,255,.38);
    font-size: .62rem;
}
.footer-bottom-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin: 0;
    padding: 0;
}
.footer-bottom-links a {
    color: rgba(255,255,255,.4);
    text-decoration: none;
    transition: color .2s ease;
}
.footer-bottom-links a:hover {
    color: #fff;
}
.footer-credit {
    text-align: right;
}
.site-footer *,
.footer-inner,
.footer-grid,
.footer-bottom {
    box-sizing: border-box;
}
@media (max-width: 1000px) {
    .site-footer {
        padding-top: 38px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .footer-bottom {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 10px;
        padding: 14px 0;
    }
    .footer-credit {
        text-align: center;
    }
}
@media (max-width: 600px) {
    .site-footer {
        padding-top: 34px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .footer-saskatoon {
        height: 250px;
    }
    .footer-saskatoon img {
        width: 950px;
        bottom: -25px;
    }
    .footer-bottom-links {
        flex-wrap: wrap;
        gap: 8px 15px;
    }
}
@media (max-width: 1000px) {
    .footer-grid {
        grid-template-columns:
            1.3fr
            1fr
            1fr;
        gap:
            45px;
    }
    .footer-contact {
        grid-column:
            1 / -1;
        padding-top:
            15px;
    }
    .footer-saskatoon {
        height:
            390px;
    }
}
@media (max-width: 650px) {
    .site-footer {
        min-height:
            700px;
        padding:
            65px
            0
            25px;
    }
    .footer-grid {
        grid-template-columns:
            1fr;
        gap:
            38px;
        padding-bottom:
            40px;
    }
    .footer-about {
        padding-right:
            0;
    }
    .footer-contact {
        grid-column:
            auto;
        padding-top:
            0;
    }
    .footer-saskatoon {
        height:
            500px;
    }
    .footer-saskatoon img {
        width:
            auto;
        height:
            360px;
        min-width:
            900px;
        max-width:
            none;
        bottom:
            20px;
    }
    .footer-bottom {
        grid-template-columns:
            1fr;
        gap:
            16px;
        text-align:
            center;
    }
    .footer-bottom-links {
        flex-wrap:
            wrap;
        gap:
            10px 16px;
    }
    .footer-credit {
        text-align:
            center;
    }
}

body {
    color: #ffffff;
}
p,
.hero-copy,
.section-copy,
.card p,
.work-card p,
.page-hero p {
    color: #ffffff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #ffffff;
}
.main-nav a {
    color: #ffffff;
}
.main-nav a:hover,
.main-nav a.active {
    color: #ffffff;
}
.service-list li,
.check-list li {
    color: #ffffff;
}
.stat span {
    color: #ffffff;
}
.site-footer {
    color: #ffffff;
}
.footer-grid p,
.footer-grid a,
.footer-grid span {
    color: #ffffff;
}
.footer-grid a:hover {
    color: #ffffff;
}
.contact-point,
.contact-point a,
.contact-point strong {
    color: #ffffff;
}
.field label {
    color: #ffffff;
}
.field input,
.field textarea,
.field select {
    color: #ffffff;
}
.field input::placeholder,
.field textarea::placeholder {
    color: rgba(255,255,255,.72);
}
.service-number,
.work-tag,
.featured-project-label {
    color: #ffffff;
}
.mock-text,
.mock-kicker {
    color: #ffffff;
}
.footer-label {
    color: #ffffff;
}
.btn-secondary {
    color: #ffffff;
}
.project-link {
    color: #ffffff;
}


@media (max-width: 900px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 82px;
        left: 0;
        right: 0;
        padding: 14px 24px 22px;
        background: rgba(5,8,13,.96);
        border-bottom: 1px solid var(--line);
        flex-direction: column;
        align-items: stretch;
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        padding: 13px 8px;
    }

    .main-nav .nav-cta {
        margin: 5px 0 0;
        text-align: center;
    }

    .nav-toggle {
        display: flex;
        width: 42px;
        height: 42px;
        border: 1px solid var(--line);
        background: rgba(255,255,255,.03);
        border-radius: 9px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        cursor: pointer;
    }

    .nav-toggle span {
        width: 17px;
        height: 1px;
        background: #fff;
        transition: .2s;
    }

    .split,
    .contact-layout,
    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 600px) {
    .container {
        width: min(calc(100% - 32px), 1180px);
    }

    .nav-wrap {
        min-height: 72px;
    }

    .brand {
        width: 165px;
    }

    .main-nav {
        top: 72px;
    }

    .section {
        padding: 80px 0;
    }

    .page-hero {
        padding: 135px 0 70px;
    }

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

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

    .field.full {
        grid-column: auto;
    }

    .form-card {
        padding: 23px;
    }

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

    .footer-grid > div:first-child {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}
/* =========================================================
   SELECTED WORK — THREE PROJECT SHOWCASE
   ========================================================= */

.work-showcase-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: 80px;
    align-items: end;
    margin-bottom: 55px;
}

.work-showcase-header h2 {
    margin: 12px 0 0;
    max-width: 700px;
    font-size: clamp(48px, 5vw, 82px);
    line-height: .94;
    letter-spacing: -0.045em;
}

.work-showcase-intro {
    padding-bottom: 5px;
}

.work-showcase-intro p {
    margin: 0 0 22px;
    max-width: 400px;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,.68);
}


/* =========================================================
   PROJECT GRID
   ========================================================= */

.work-project-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
}


/* =========================================================
   PROJECT CARD
   ========================================================= */

.work-project-card {
    display: block;
    min-width: 0;
    color: inherit;
    text-decoration: none;
}


/* =========================================================
   IMAGE
   ========================================================= */

.work-project-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background:
        linear-gradient(
            145deg,
            rgba(13,25,43,.95),
            rgba(3,7,14,.98)
        );

    border-radius: 18px;

    border: 1px solid rgba(255,255,255,.08);

    isolation: isolate;
}


/* Image */

.work-project-image img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    transform: scale(1.001);

    transition:
        transform .8s cubic-bezier(.2,.7,.2,1),
        filter .8s ease;
}


/* =========================================================
   SASKPOKER IMAGE
   Keep the important dashboard visible.
   ========================================================= */

.work-project-saskpoker .work-project-image img {
    object-position: center center;
}


/* =========================================================
   DARK OVERLAY
   ========================================================= */

.work-project-overlay {
    position: absolute;
    inset: 0;

    z-index: 2;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.02) 25%,
            rgba(0,0,0,.08) 55%,
            rgba(0,0,0,.72) 100%
        );

    pointer-events: none;

    transition:
        opacity .6s ease;
}


/* =========================================================
   BLUE LIGHT SWEEP
   ========================================================= */

.work-project-image::after {
    content: "";

    position: absolute;

    top: -30%;
    left: -80%;

    width: 45%;
    height: 170%;

    z-index: 3;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(80,150,255,.16),
            rgba(255,255,255,.24),
            rgba(80,150,255,.16),
            transparent
        );

    transform: rotate(18deg);

    opacity: 0;

    pointer-events: none;

    transition:
        left 1s cubic-bezier(.2,.7,.2,1),
        opacity .3s ease;
}


/* =========================================================
   PROJECT NUMBER
   ========================================================= */

.work-project-number {
    position: absolute;

    top: 18px;
    left: 18px;

    z-index: 5;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    border-radius: 50%;

    background: rgba(4,9,17,.72);

    border: 1px solid rgba(255,255,255,.12);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;

    color: rgba(255,255,255,.9);

    transition:
        background .4s ease,
        border-color .4s ease,
        transform .5s cubic-bezier(.2,.7,.2,1);
}


/* =========================================================
   PROJECT ARROW
   ========================================================= */

.work-project-arrow {
    position: absolute;

    right: 18px;
    top: 18px;

    z-index: 5;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(4,9,17,.68);

    border: 1px solid rgba(255,255,255,.12);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    font-size: 18px;
    color: #fff;

    opacity: 0;
    transform: translate(-8px, 8px);

    transition:
        opacity .45s ease,
        transform .55s cubic-bezier(.2,.7,.2,1),
        background .4s ease,
        border-color .4s ease;
}


/* =========================================================
   PROJECT DETAILS
   ========================================================= */

.work-project-details {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 20px;

    padding: 19px 3px 0;
}


.work-project-category {
    display: block;

    margin-bottom: 7px;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .16em;

    color: #69a4ff;
}


.work-project-details h3 {
    margin: 0;

    font-size: clamp(20px, 2vw, 26px);
    line-height: 1.05;

    font-weight: 600;

    letter-spacing: -.025em;

    color: #fff;

    transition:
        color .35s ease,
        transform .35s ease;
}


.work-project-view {
    flex-shrink: 0;

    font-size: 11px;
    letter-spacing: .04em;

    color: rgba(255,255,255,.48);

    transition:
        color .35s ease,
        transform .35s ease;
}


/* =========================================================
   HOVER
   ========================================================= */

.work-project-card:hover .work-project-image img {
    transform: scale(1.055);

    filter:
        brightness(1.08)
        saturate(1.08);
}


.work-project-card:hover .work-project-overlay {
    opacity: .7;
}


.work-project-card:hover .work-project-image::after {
    left: 145%;
    opacity: 1;
}


.work-project-card:hover .work-project-number {
    background: rgba(30,85,170,.72);

    border-color: rgba(90,150,255,.55);

    transform: translateY(-2px);
}


.work-project-card:hover .work-project-arrow {
    opacity: 1;

    transform: translate(0,0);

    background: rgba(20,70,150,.72);

    border-color: rgba(90,150,255,.55);
}


.work-project-card:hover .work-project-details h3 {
    color: #8dbbff;

    transform: translateX(3px);
}


.work-project-card:hover .work-project-view {
    color: rgba(255,255,255,.9);

    transform: translateX(3px);
}


/* =========================================================
   BOTTOM LINE
   ========================================================= */

.work-showcase-bottom {
    display: grid;

    grid-template-columns: auto minmax(80px, 1fr) auto auto;

    align-items: center;

    gap: 20px;

    margin-top: 48px;

    padding-top: 20px;

    border-top: 1px solid rgba(255,255,255,.08);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .15em;

    color: rgba(255,255,255,.38);
}


.work-showcase-line {
    height: 1px;

    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,.08),
            rgba(80,140,255,.35),
            transparent
        );
}


.work-showcase-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: rgba(255,255,255,.75);

    text-decoration: none;

    transition:
        color .3s ease,
        transform .3s ease;
}


.work-showcase-all span {
    font-size: 16px;

    color: #69a4ff;

    transition:
        transform .3s ease;
}


.work-showcase-all:hover {
    color: #fff;

    transform: translateX(3px);
}


.work-showcase-all:hover span {
    transform: translate(3px,-3px);
}


/* =========================================================
   SECTION ATMOSPHERE
   ========================================================= */

.story-work {
    position: relative;

    overflow: hidden;
}


.story-work::before {
    content: "";

    position: absolute;

    width: 700px;
    height: 500px;

    left: 50%;
    top: 30%;

    transform: translate(-50%,-50%);

    background:
        radial-gradient(
            ellipse,
            rgba(30,80,170,.10),
            transparent 70%
        );

    pointer-events: none;
}


.story-work > .container {
    position: relative;
    z-index: 2;
}


/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .work-showcase-header {
        grid-template-columns: 1fr;

        gap: 20px;

        margin-bottom: 38px;
    }


    .work-showcase-header h2 {
        font-size: clamp(46px, 8vw, 70px);
    }


    .work-project-grid {
        gap: 18px;
    }


    .work-project-view {
        display: none;
    }


    .work-project-details h3 {
        font-size: 21px;
    }

}


/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .work-showcase-header {
        margin-bottom: 30px;
    }


    .work-showcase-header h2 {
        font-size: clamp(40px, 12vw, 58px);

        line-height: .95;
    }


    .work-showcase-intro p {
        font-size: 15px;

        max-width: 100%;
    }


    .work-project-grid {
        grid-template-columns: 1fr;

        gap: 38px;
    }


    .work-project-image {
        aspect-ratio: 16 / 10;

        border-radius: 15px;
    }


    .work-project-arrow {
        opacity: 1;

        transform: none;

        width: 38px;
        height: 38px;

        font-size: 16px;
    }


    .work-project-number {
        width: 34px;
        height: 34px;

        top: 14px;
        left: 14px;
    }


    .work-project-details {
        padding-top: 15px;
    }


    .work-project-category {
        font-size: 9px;
    }


    .work-project-details h3 {
        font-size: 22px;
    }


    .work-showcase-bottom {
        grid-template-columns: 1fr auto;

        gap: 12px;

        margin-top: 38px;
    }


    .work-showcase-bottom > span:nth-of-type(2),
    .work-showcase-line {
        display: none;
    }

}
/* =========================================================
   FOOTER LAYOUT
   ========================================================= */

.site-footer {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.site-footer .container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 60px;
    padding-right: 60px;
    box-sizing: border-box;
}

.footer-inner {
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr 1.1fr;
    gap: 70px;
    align-items: start;
}

.footer-column {
    min-width: 0;
}

/* =========================================================
   FOOTER BOTTOM
   ========================================================= */

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    width: 100%;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1200px) {

    .site-footer .container {
        padding-left: 40px;
        padding-right: 40px;
    }

    .footer-grid {
        gap: 45px;
    }

}

@media (max-width: 900px) {

    .site-footer .container {
        padding-left: 30px;
        padding-right: 30px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 45px 35px;
    }

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

    .footer-bottom-links {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

}

@media (max-width: 600px) {

    .site-footer .container {
        padding-left: 22px;
        padding-right: 22px;
    }

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

    .footer-bottom-links {
        gap: 16px;
    }

}