/* =============================================

SHOJKI INFRASTRUCTURES — STYLES

Cinematic, scroll-driven, GTA VI inspired

============================================= */



:root {

    --bg: #0a0a0a;

    --bg-2: #111111;

    --bg-3: #161616;

    --fg: #f5f1ea;

    --muted: #8d8a84;

    --line: rgba(245, 241, 234, 0.12);

    --accent: #ff6a1a;

    --accent-2: #ffb547;

    --steel: #c9c4bb;

    --max: 1440px;

    --pad: clamp(20px, 4vw, 80px);

    --radius: 14px;

}



* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html,
body {
    background: var(--bg);
    color: var(--fg);
    font-family: 'Inter', system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

html {
    scroll-behavior: auto
}

body {
    line-height: 1.5;
    cursor: none
}

a {
    color: inherit;
    text-decoration: none
}

img,
video {
    max-width: 100%;
    display: block
}

button {
    font: inherit;
    cursor: none
}



.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--pad)
}



/* ============= GRAIN OVERLAY ============= */

.grain {

    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: .08;
    mix-blend-mode: overlay;

    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");

}



/* ============= CUSTOM CURSOR ============= */

.cursor,
.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: opacity .2s
}

.cursor {
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--accent);
    border-radius: 50%;
    transition: transform .25s ease, background .25s
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%
}

.cursor.hover {
    transform: translate(-50%, -50%) scale(1.6);
    background: rgba(255, 106, 26, 0.12)
}

@media (max-width:900px) {

    .cursor,
    .cursor-dot {
        display: none
    }

    body {
        cursor: auto
    }

    button,
    a {
        cursor: pointer
    }
}



/* ============= PRELOADER ============= */

.preloader {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center
}

.preloader-inner {
    width: min(540px, 80vw);
    text-align: left
}

.preloader-brand {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 32px
}

.brand-mark {
    font-family: 'Anton', sans-serif;
    font-size: 64px;
    color: var(--accent);
    line-height: .8
}

.brand-text {
    font-family: 'Anton', sans-serif;
    font-size: 36px;
    letter-spacing: .18em
}

.preloader-bar {
    height: 2px;
    background: var(--line);
    width: 100%;
    overflow: hidden
}

.preloader-bar-fill {
    height: 100%;
    width: 0%;
    background: var(--accent);
    transition: width .15s ease-out
}

.preloader-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    font-size: 11px;
    letter-spacing: .3em;
    color: var(--muted);
    font-weight: 500
}



/* ============= NAV ============= */

.nav {

    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 22px var(--pad);
    transition: background .3s, padding .3s, border-color .3s;

    border-bottom: 1px solid transparent;

}

.nav.scrolled {
    background: rgba(10, 10, 10, 0.78);
    backdrop-filter: blur(14px);
    padding: 14px var(--pad);
    border-bottom-color: var(--line)
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Anton', sans-serif;
    letter-spacing: .16em;
    font-size: 18px
}

.nav-brand-mark {
    color: var(--accent);
    font-size: 28px;
    line-height: .8
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    font-size: 13px;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 500
}

.nav-links a {
    position: relative;
    color: var(--steel);
    transition: color .25s
}

.nav-links a:hover {
    color: var(--fg)
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width .3s
}

.nav-links a:hover::after {
    width: 100%
}

.nav-cta {
    padding: 10px 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--fg) !important
}

.nav-cta:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #000 !important
}

.nav-cta::after {
    display: none !important
}

@media(max-width:880px) {
    .nav-links a:not(.nav-cta) {
        display: none
    }
}



/* ============= HERO ============= */

.hero {
    position: relative;
    height: 100vh;
    min-height: 850px;
    overflow: hidden;
    display: flex;
    align-items: flex-end
}

@media (max-width:900px) {
    .hero {
        min-height: 650px
    }
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transform: scale(1.08)
}

.hero-bg-img {
    background-size: cover;
    background-position: center;
    filter: grayscale(.2) contrast(1.1) brightness(.7)
}

.hero-bg-img-2 {
    mix-blend-mode: overlay;
    opacity: .6;
    filter: grayscale(1) contrast(1.4) brightness(.5)
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:

        radial-gradient(ellipse at 30% 30%, rgba(255, 106, 26, 0.18), transparent 55%),

        linear-gradient(180deg, rgba(10, 10, 10, 0.55) 0%, rgba(10, 10, 10, 0.25) 40%, rgba(10, 10, 10, 0.95) 100%);

}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 var(--pad) 140px;
    width: 100%;
    max-width: var(--max);
    margin: 0 auto
}

@media (max-height:800px) and (min-width:901px) {
    .hero-content {
        padding-bottom: 100px
    }
}

.hero-eyebrow {
    font-size: 12px;
    letter-spacing: .4em;
    color: var(--accent);
    margin-bottom: 24px;
    font-weight: 600
}

.hero-title {

    font-family: 'Anton', sans-serif;
    font-weight: 400;

    font-size: clamp(48px, 8.2vw, 148px);

    line-height: .92;
    letter-spacing: -.01em;
    text-transform: uppercase;

    max-width: 100%;

}

.hero-title .line {
    display: block;
    overflow: hidden;
    padding-top: 0.1em;
    margin-top: -0.2em;
    padding-bottom: 0.1em;
    margin-bottom: -0.1em
}

.hero-title .line>span {
    display: inline-block;
    transform: translateY(110%);
    transition: transform 1.1s cubic-bezier(.2, .8, .2, 1)
}

.hero.loaded .hero-title .line>span {
    transform: translateY(0)
}

.hero.loaded .hero-title .line:nth-child(2)>span {
    transition-delay: .12s
}

.hero.loaded .hero-title .line:nth-child(3)>span {
    transition-delay: .24s
}

.hero-title .accent>span {
    color: var(--accent);
    font-style: italic
}

.hero-sub {
    max-width: 580px;
    color: var(--steel);
    margin-top: 24px;
    font-size: clamp(15px, 1.2vw, 18px);
    opacity: 0;
    transform: translateY(20px);
    transition: .9s .5s
}

.hero.loaded .hero-sub {
    opacity: 1;
    transform: none
}

.hero-cta-row {
    margin-top: 36px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    transition: .9s .65s
}

.hero.loaded .hero-cta-row {
    opacity: 1;
    transform: none
}



.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 999px;
    font-size: 13px;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 600;
    transition: transform .3s, background .3s, color .3s, border-color .3s
}

.btn.primary {
    background: var(--accent);
    color: #0a0a0a
}

.btn.primary:hover {
    transform: translateY(-3px);
    background: var(--fg)
}

.btn.ghost {
    border: 1px solid var(--line);
    color: var(--fg)
}

.btn.ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-3px)
}



.hero-scroll-cue {
    position: absolute;
    bottom: 54px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--muted);
    font-size: 11px;
    letter-spacing: .4em;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px
}

.hero-scroll-cue span {
    display: block;
    width: 1px;
    height: 36px;
    background: var(--accent);
    animation: scrollPulse 1.8s ease-in-out infinite
}

@keyframes scrollPulse {

    0%,
    100% {
        transform: scaleY(.3);
        opacity: .4
    }

    50% {
        transform: scaleY(1);
        opacity: 1
    }
}



.hero-marquee {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 18px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(10, 10, 10, 0.55);
    backdrop-filter: blur(8px);
    overflow: hidden
}

.marquee-track {
    display: flex;
    gap: 42px;
    white-space: nowrap;
    animation: marquee 35s linear infinite;
    font-family: 'Anton', sans-serif;
    letter-spacing: .18em;
    font-size: 18px
}

.marquee-track i {
    color: var(--accent);
    font-style: normal
}

@keyframes marquee {
    to {
        transform: translateX(-50%)
    }
}



/* ============= SECTION BASICS ============= */

section {
    position: relative;
    padding: 140px 0;
    border-top: 1px solid var(--line)
}

.section-label {
    font-size: 11px;
    letter-spacing: .4em;
    color: var(--accent);
    margin-bottom: 32px;
    font-weight: 600;
    text-transform: uppercase
}

.section-title {
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    font-size: clamp(40px, 7vw, 110px);
    line-height: .95;
    text-transform: uppercase;
    letter-spacing: -.005em;
    margin-bottom: 28px
}

.section-title em {
    color: var(--accent);
    font-style: italic
}

.section-title.huge {
    font-size: clamp(56px, 10vw, 160px)
}

.lead {
    font-size: clamp(17px, 1.4vw, 22px);
    color: var(--steel);
    max-width: 560px
}

.lead.muted {
    color: var(--muted)
}



/* Reveal */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(.2, .8, .2, 1), transform 1s cubic-bezier(.2, .8, .2, 1)
}

.reveal.in {
    opacity: 1;
    transform: none
}



/* ============= ABOUT ============= */

.about .split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px
}

.split-left {
    position: sticky;
    top: 120px;
    align-self: start
}

.split-right p {
    margin-bottom: 24px;
    font-size: 18px;
    color: var(--steel)
}

.split-right strong {
    color: var(--fg)
}

@media(max-width:900px) {
    .about .split {
        grid-template-columns: 1fr
    }

    .split-left {
        position: static
    }
}



.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    margin-top: 120px;
    border-radius: 0
}

.stat {
    background: var(--bg);
    padding: 48px 32px
}

.stat-num {
    font-family: 'Anton', sans-serif;
    font-size: clamp(48px, 6vw, 90px);
    color: var(--fg);
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: 8px
}

.stat-num em {
    font-style: normal;
    font-size: .4em;
    color: var(--accent);
    letter-spacing: .05em
}

.stat-label {
    margin-top: 14px;
    font-size: 12px;
    letter-spacing: .25em;
    color: var(--muted);
    text-transform: uppercase
}

@media(max-width:900px) {
    .stats {
        grid-template-columns: repeat(2, 1fr)
    }
}



/* ============= CAPABILITIES ============= */

.cap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px
}

.cap-card {
    position: relative;
    padding: 36px;
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .5s, border-color .5s;
    transform-style: preserve-3d
}

.cap-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent)
}

.cap-num {
    font-family: 'Anton', sans-serif;
    font-size: 48px;
    color: var(--accent);
    margin-bottom: 16px
}

.cap-card h3 {
    font-family: 'Anton', sans-serif;
    font-size: 28px;
    line-height: 1.05;
    letter-spacing: .01em;
    margin-bottom: 14px;
    text-transform: uppercase
}

.cap-card h3 small {
    display: block;
    font-size: 14px;
    color: var(--muted);
    letter-spacing: .15em;
    margin-top: 4px
}

.cap-card p {
    color: var(--steel);
    font-size: 15px;
    margin-bottom: 24px
}

.cap-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    filter: grayscale(.3) contrast(1.05);
    transition: filter .5s, transform .8s
}

.cap-card:hover .cap-img {
    filter: none;
    transform: scale(1.04)
}

@media(max-width:900px) {
    .cap-grid {
        grid-template-columns: 1fr
    }
}



/* ============= VISION ============= */

.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 60px
}

.vision-block {
    padding: 60px 48px;
    background: linear-gradient(180deg, var(--bg-2), var(--bg));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden
}

.vision-block::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--accent);
    transition: height .8s
}

.vision-block.in::before {
    height: 100%
}

.vision-num {
    font-family: 'Anton', sans-serif;
    font-size: 14px;
    letter-spacing: .4em;
    color: var(--accent);
    margin-bottom: 24px
}

.vision-block h3 {
    font-family: 'Anton', sans-serif;
    font-size: 36px;
    line-height: 1;
    margin-bottom: 18px;
    text-transform: uppercase
}

.vision-block p {
    color: var(--steel);
    font-size: 16px
}

@media(max-width:900px) {
    .vision-grid {
        grid-template-columns: 1fr
    }

    .vision-block {
        padding: 40px 28px
    }
}



/* ============= LEADERSHIP ============= */

.leader-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 80px
}

.leader-card {
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .5s, border-color .5s
}

.leader-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent)
}

.leader-img {
    height: 520px;
    background-size: cover;
    background-position: center top;
    filter: grayscale(.6) contrast(1.1);
    transition: filter .8s, transform .8s;
    position: relative
}

.leader-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10, 10, 10, 0.85))
}

.leader-card:hover .leader-img {
    filter: grayscale(0) contrast(1.05)
}

.leader-body {
    padding: 36px
}

.leader-role {
    font-size: 11px;
    letter-spacing: .4em;
    color: var(--accent);
    margin-bottom: 14px
}

.leader-body h3 {
    font-family: 'Anton', sans-serif;
    font-size: 36px;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 18px
}

.leader-body ul {
    list-style: none;
    color: var(--steel)
}

.leader-body li {
    padding: 8px 0;
    border-top: 1px solid var(--line);
    font-size: 14px
}

.leader-body li:last-child {
    border-bottom: 1px solid var(--line)
}

@media(max-width:900px) {
    .leader-grid {
        grid-template-columns: 1fr
    }

    .leader-img {
        height: 420px
    }
}



/* ============= INFRA ============= */

.infra-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 80px
}

.infra-stat {
    padding: 60px 40px;
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.infra-stat span {
    font-family: 'Anton', sans-serif;
    font-size: clamp(60px, 8vw, 110px);
    line-height: .9;
    color: var(--fg)
}

.infra-stat em {
    font-style: normal;
    font-size: 18px;
    color: var(--accent);
    letter-spacing: .15em;
    margin-top: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600
}

.infra-stat label {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    width: 100%;
    font-size: 12px;
    letter-spacing: .3em;
    color: var(--muted);
    text-transform: uppercase
}

@media(max-width:900px) {
    .infra-grid {
        grid-template-columns: 1fr
    }
}



/* ============= PROCESS ============= */

.process-flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 24px;
    align-items: stretch;
    margin-top: 80px
}

.process-stage {
    padding: 40px 32px;
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    position: relative
}

.process-stage:hover {
    border-color: var(--accent)
}

.stage-num {
    font-family: 'Anton', sans-serif;
    font-size: 48px;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 18px
}

.process-stage h4 {
    font-family: 'Anton', sans-serif;
    font-size: 24px;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: 20px
}

.process-stage ul {
    list-style: none
}

.process-stage li {
    padding: 12px 0;
    border-top: 1px solid var(--line);
    color: var(--steel);
    font-size: 14px;
    padding-left: 22px;
    position: relative
}

.process-stage li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--accent)
}

.process-stage li:last-child {
    border-bottom: 1px solid var(--line)
}

.process-arrow {
    align-self: center;
    font-family: 'Anton', sans-serif;
    color: var(--accent);
    font-size: 48px
}

@media(max-width:900px) {
    .process-flow {
        grid-template-columns: 1fr
    }

    .process-arrow {
        transform: rotate(90deg);
        justify-self: center
    }
}



/* ============= MACHINERY (horizontal scroll) ============= */

.machinery {
    padding: 0;
    overflow: hidden
}

.machinery-pin {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 0;
    position: relative
}

.machinery-head {
    margin-bottom: 48px;
    padding: 0 var(--pad)
}

.machinery-track {
    display: flex;
    gap: 24px;
    padding: 0 var(--pad);
    will-change: transform
}

.mach-card {
    flex: 0 0 320px;
    height: 380px;
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: border-color .4s, transform .4s, background .4s;
    position: relative;
    overflow: hidden
}

.mach-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 106, 26, 0.15), transparent 60%);
    opacity: 0;
    transition: opacity .5s
}

.mach-card:hover {
    border-color: var(--accent);
    transform: translateY(-6px)
}

.mach-card:hover::before {
    opacity: 1
}

.mach-no {
    font-family: 'Anton', sans-serif;
    font-size: 64px;
    color: var(--accent);
    line-height: .8
}

.mach-card h4 {
    font-family: 'Anton', sans-serif;
    font-size: 26px;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: .01em;
    margin: 24px 0
}

.mach-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-top: 18px;
    border-top: 1px solid var(--line)
}

.mach-meta span {
    font-size: 12px;
    color: var(--muted);
    letter-spacing: .15em;
    text-transform: uppercase
}

.mach-meta span:first-child {
    color: var(--fg);
    font-weight: 500
}

@media(max-width:900px) {

    .machinery-pin {
        height: auto
    }

    .machinery-track {
        flex-wrap: wrap;
        gap: 16px
    }

    .mach-card {
        flex: 1 1 280px;
        height: auto;
        min-height: 280px
    }

}



/* ============= PROJECTS ============= */

.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 80px
}

.project-card {
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    display: block;
    transition: transform .5s, border-color .5s
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent)
}

.proj-img {
    height: 280px;
    background-size: cover;
    background-position: center;
    transition: transform .8s, filter .8s;
    filter: grayscale(.5) contrast(1.1)
}

.project-card:hover .proj-img {
    transform: scale(1.08);
    filter: grayscale(0) contrast(1.05)
}

.proj-body {
    padding: 28px
}

.proj-tag {
    font-size: 11px;
    letter-spacing: .3em;
    color: var(--accent);
    margin-bottom: 10px
}

.proj-body h3 {
    font-family: 'Anton', sans-serif;
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 8px
}

.proj-body p {
    color: var(--steel);
    font-size: 14px
}

@media(max-width:900px) {
    .project-grid {
        grid-template-columns: 1fr
    }
}



/* ============= CONTACT ============= */

.contact {
    padding-bottom: 80px
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    margin-top: 80px
}

.contact-card {
    display: block;
    padding: 48px 40px;
    background: var(--bg);
    transition: background .4s, color .4s
}

.contact-card:hover {
    background: var(--accent);
    color: #000
}

.contact-card:hover .contact-label {
    color: rgba(0, 0, 0, 0.6)
}

.contact-label {
    font-size: 11px;
    letter-spacing: .3em;
    color: var(--muted);
    text-transform: uppercase;
    margin-bottom: 18px
}

.contact-name {
    font-family: 'Anton', sans-serif;
    font-size: 28px;
    text-transform: uppercase;
    margin-bottom: 10px
}

.contact-value {
    font-size: 16px;
    word-break: break-word
}

@media(max-width:700px) {
    .contact-grid {
        grid-template-columns: 1fr
    }
}



/* ============= FOOTER ============= */

.footer {
    background: #050505;
    padding: 80px 0 32px;
    border-top: 1px solid var(--line)
}

.footer-inner {
    display: grid;
    gap: 48px
}

.foot-brand {
    display: flex;
    align-items: center;
    gap: 18px
}

.foot-brand strong {
    display: block;
    font-family: 'Anton', sans-serif;
    font-size: 18px;
    letter-spacing: .14em
}

.foot-brand small {
    display: block;
    color: var(--muted);
    font-size: 12px;
    letter-spacing: .05em;
    margin-top: 4px
}

.foot-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 48px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line)
}

.foot-cols h5 {
    font-size: 11px;
    letter-spacing: .3em;
    color: var(--accent);
    margin-bottom: 18px;
    text-transform: uppercase
}

.foot-cols a {
    display: block;
    padding: 6px 0;
    color: var(--steel);
    font-size: 14px;
    transition: color .3s
}

.foot-cols a:hover {
    color: var(--fg)
}

.foot-bottom {
    display: flex;
    justify-content: space-between;
    color: var(--muted);
    font-size: 12px;
    letter-spacing: .2em;
    text-transform: uppercase;
    flex-wrap: wrap;
    gap: 12px
}

@media(max-width:700px) {
    .foot-cols {
        grid-template-columns: 1fr 1fr
    }
}



/* ============= REDUCED MOTION ============= */

@media (prefers-reduced-motion: reduce) {

    * {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important
    }

}