:root {
    --red: #E2181B;
    --red-deep: #B30E11;
    --ink: #0A0B0D;
    --ink-soft: #15171b;
    --paper: #F7F5F2;
    --white: #ffffff;
    --grey: #6c6f76;
    --line: rgba(10, 11, 13, .12);
    --display: 'Bricolage Grotesque', sans-serif;
    --body: 'Hanken Grotesk', sans-serif;
    --mono: 'JetBrains Mono', monospace;
    --maxw: 1240px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%
}

body {
    font-family: var(--body);
    background: var(--paper);
    color: var(--ink);
    overflow-x: hidden;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--red);
    color: #fff
}

a {
    color: inherit;
    text-decoration: none
}

img {
    display: block;
    max-width: 100%
}

/* grain overlay */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: .04;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.container {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 28px
}

/* ===== eyebrow label ===== */
.eyebrow {
    font-family: var(--mono);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--red);
    display: inline-flex;
    align-items: center;
    gap: .6rem;
}

.eyebrow::before {
    content: "";
    width: 30px;
    height: 2px;
    background: var(--red);
    display: inline-block
}

/* ===== NAV ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: .4s ease;
    --nav-fg: #fff
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    transition: .4s
}

header.scrolled {
    background: rgba(247, 245, 242, .9);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    --nav-fg: var(--ink)
}

header.scrolled .nav {
    padding: 14px 0
}


/* Logo Styling */
.brand {
    display: flex;
    align-items: center;
    transition: .4s;
}

.brand img {
    height: 35px;
    width: auto;
    transition: opacity 0.3s ease;
}

/* Light Logo (White) by default visible */
.brand .logo-light {
    display: block;
}

/* Dark Logo (Black) by default hidden */
.brand .logo-dark {
    display: none;
}

header.scrolled .brand .logo-light {
    display: none;
}

header.scrolled .brand .logo-dark {
    display: block;
}

.nav-links {
    display: flex;
    gap: 34px;
    align-items: center
}

.nav-links>a {
    font-weight: 600;
    font-size: .95rem;
    position: relative;
    color: var(--nav-fg);
    transition: color .4s
}

.nav-links>a.btn-red {
    color: #fff
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: .3s
}

.nav-links>a:not(.btn-red):hover::after {
    width: 100%
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-weight: 700;
    font-size: .95rem;
    padding: 13px 26px;
    border-radius: 50px;
    transition: .3s ease;
    cursor: pointer;
    border: none;
    font-family: var(--body)
}

.btn-red {
    background: var(--red);
    color: #fff;
    box-shadow: 0 8px 24px rgba(226, 24, 27, .28)
}

.btn-red:hover {
    background: var(--red-deep);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(226, 24, 27, .4)
}

.btn-ink {
    background: var(--ink);
    color: #fff
}

.btn-ink:hover {
    transform: translateY(-2px)
}

.btn-ghost {
    background: transparent;
    border: 1.5px solid var(--ink);
    color: var(--ink)
}

.btn-ghost:hover {
    background: var(--ink);
    color: #fff
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px
}

.burger span {
    width: 26px;
    height: 2.5px;
    background: var(--nav-fg);
    transition: .3s;
    border-radius: 2px
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--ink)
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0
}

.hero-media img,
.hero-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .5
}

.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(10, 11, 13, .92) 0%, rgba(10, 11, 13, .72) 45%, rgba(226, 24, 27, .28) 100%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: .5;
    background-image: linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(circle at 70% 40%, #000, transparent 75%)
}

.hero .container {
    position: relative;
    z-index: 3
}

.hero-inner {
    max-width: 900px;
    padding-top: 90px
}

.hero .eyebrow {
    color: #ff5a5d
}

.hero .eyebrow::before {
    background: #ff5a5d
}

.hero h1 {
    font-family: var(--display);
    color: #fff;
    font-weight: 800;
    line-height: .98;
    letter-spacing: -.02em;
    font-size: clamp(2.8rem, 7.5vw, 6.2rem);
    margin: 24px 0 0
}

.hero h1 .hl {
    color: var(--red);
    position: relative;
    white-space: nowrap
}

.hero h1 .hl::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: .08em;
    width: 100%;
    height: .12em;
    background: var(--red);
    opacity: .35;
    z-index: -1
}

.hero p.lead {
    color: rgba(255, 255, 255, .78);
    font-size: clamp(1.05rem, 1.6vw, 1.3rem);
    max-width: 620px;
    margin: 28px 0 0;
    font-weight: 400
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-top: 38px;
    flex-wrap: wrap
}

.hero-tags {
    display: flex;
    gap: 26px;
    margin-top: 46px;
    flex-wrap: wrap;
    font-family: var(--mono);
    font-size: .78rem;
    letter-spacing: .18em;
    color: rgba(255, 255, 255, .55);
    text-transform: uppercase
}

.hero-tags span {
    display: flex;
    align-items: center;
    gap: 26px
}

.hero-tags span::after {
    content: "✦";
    color: var(--red)
}

.hero-tags span:last-child::after {
    display: none
}

.scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: rgba(255, 255, 255, .5);
    font-family: var(--mono);
    font-size: .7rem;
    letter-spacing: .2em;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px
}

.scroll-hint .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
    animation: bob 1.6s infinite
}

@keyframes bob {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1
    }

    50% {
        transform: translateY(10px);
        opacity: .3
    }
}

/* fade-up reveal */
.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: .9s cubic-bezier(.16, 1, .3, 1)
}

.reveal.in {
    opacity: 1;
    transform: none
}

.d1 {
    transition-delay: .08s
}

.d2 {
    transition-delay: .16s
}

.d3 {
    transition-delay: .24s
}

.d4 {
    transition-delay: .32s
}

.d5 {
    transition-delay: .4s
}

/* ===== MARQUEE / CAPABILITY BAND ===== */
.marquee {
    background: var(--ink);
    color: #fff;
    padding: 34px 0;
    overflow: hidden;
    position: relative
}

.marquee::before,
.marquee::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 160px;
    z-index: 3;
    pointer-events: none
}

.marquee::before {
    left: 0;
    background: linear-gradient(90deg, var(--ink), transparent)
}

.marquee::after {
    right: 0;
    background: linear-gradient(270deg, var(--ink), transparent)
}

.mq-row {
    display: flex;
    white-space: nowrap;
    overflow: hidden
}

.mq-track {
    display: inline-flex;
    align-items: center;
    gap: 42px;
    animation: mqL 32s linear infinite;
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(2.2rem, 5vw, 4rem);
    letter-spacing: -.01em;
    text-transform: uppercase;
    padding-right: 42px
}

.mq-row.rev .mq-track {
    animation-name: mqR
}

.marquee:hover .mq-track {
    animation-play-state: paused
}

.mq-track .w {
    transition: .3s
}

.mq-track .w.out {
    color: transparent;
    -webkit-text-stroke: 1.6px rgba(255, 255, 255, .45)
}

.mq-track .w:hover {
    color: var(--red);
    -webkit-text-stroke: 1.6px var(--red)
}

.mq-track .star {
    color: var(--red);
    font-size: .55em;
    transform: translateY(-.08em)
}

@keyframes mqL {
    to {
        transform: translateX(-50%)
    }
}

@keyframes mqR {
    from {
        transform: translateX(-50%)
    }

    to {
        transform: translateX(0)
    }
}

/* ===== SECTION SHELL ===== */
section {
    position: relative
}

.sec {
    padding: 120px 0
}

.sec-head {
    max-width: 760px;
    margin-bottom: 64px
}

.sec-head h2 {
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(2rem, 4.6vw, 3.5rem);
    line-height: 1.02;
    letter-spacing: -.02em;
    margin: 18px 0 0
}

.sec-head h2 em {
    font-style: normal;
    color: var(--red)
}

.sec-head p {
    color: var(--grey);
    font-size: 1.12rem;
    margin-top: 20px;
    max-width: 600px
}

/* ===== ABOUT / INTRO STRIP ===== */
.intro {
    background: var(--white);
    border-bottom: 1px solid var(--line)
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 70px;
    align-items: center
}

.intro-grid h2 {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(1.7rem, 3.4vw, 2.6rem);
    line-height: 1.12;
    letter-spacing: -.01em
}

.intro-grid h2 .r {
    color: var(--red)
}

.intro-grid .copy p {
    color: var(--grey);
    margin-top: 18px;
    font-size: 1.05rem
}

.pillars {
    display: flex;
    flex-direction: column;
    gap: 2px;
    border-left: 3px solid var(--red);
    padding-left: 0
}

.pillar {
    display: flex;
    align-items: baseline;
    gap: 18px;
    padding: 16px 22px;
    background: var(--paper);
    transition: .3s
}

.pillar:hover {
    background: var(--ink);
    color: #fff
}

.pillar .num {
    font-family: var(--mono);
    font-size: .78rem;
    color: var(--red);
    font-weight: 700
}

.pillar .t {
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.15rem
}

.pillar .d {
    margin-left: auto;
    font-size: .9rem;
    color: var(--grey)
}

.pillar:hover .d {
    color: rgba(255, 255, 255, .6)
}

/* ===== SERVICES ===== */
.services {
    background: var(--paper)
}

.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

.card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 34px 30px 30px;
    position: relative;
    overflow: hidden;
    transition: transform .5s cubic-bezier(.16, 1, .3, 1), box-shadow .5s, border-color .5s;
    cursor: default;
    isolation: isolate
}

/* spotlight follows cursor */
.card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0;
    transition: .4s;
    background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), rgba(226, 24, 27, .10), transparent 60%)
}

.card:hover::after {
    opacity: 1
}

/* big ghost number */
.card .bignum {
    position: absolute;
    top: -6px;
    right: 14px;
    font-family: var(--display);
    font-weight: 800;
    font-size: 6.4rem;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(10, 11, 13, .07);
    z-index: -1;
    transition: .5s
}

.card:hover .bignum {
    -webkit-text-stroke-color: rgba(226, 24, 27, .18);
    transform: translateY(4px)
}

.card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 4px;
    width: 0;
    background: var(--red);
    transition: .5s;
    border-radius: 4px
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 34px 70px rgba(10, 11, 13, .16);
    border-color: transparent
}

.card:hover::before {
    width: 100%
}

.card .ico {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 22px;
    transition: .5s cubic-bezier(.16, 1, .3, 1);
    position: relative;
    overflow: hidden
}

.card .ico::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--red);
    transform: translateY(101%);
    transition: .45s cubic-bezier(.16, 1, .3, 1)
}

.card:hover .ico::after {
    transform: translateY(0)
}

.card:hover .ico {
    transform: rotate(-8deg) scale(1.05)
}

.card .ico svg {
    width: 28px;
    height: 28px;
    position: relative;
    z-index: 2
}

.card h3 {
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.42rem;
    letter-spacing: -.01em
}

.card p {
    color: var(--grey);
    margin-top: 11px;
    font-size: .96rem
}

.card .feats {
    list-style: none;
    margin: 20px 0 0;
    display: flex;
    flex-direction: column;
    gap: 9px
}

.card .feats li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .9rem;
    color: var(--ink);
    font-weight: 500
}

.card .feats li svg {
    width: 15px;
    height: 15px;
    color: var(--red);
    flex: 0 0 auto
}

.card .more {
    margin-top: 22px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: .92rem;
    color: var(--ink);
    padding-top: 16px;
    border-top: 1px solid var(--line);
    width: 100%;
    transition: .3s
}

.card .more .arr {
    display: inline-flex;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--ink);
    color: #fff;
    align-items: center;
    justify-content: center;
    transition: .4s
}

.card:hover .more {
    color: var(--red)
}

.card:hover .more .arr {
    background: var(--red);
    transform: translateX(4px)
}

/* ===== WORK ===== */
.work {
    background: var(--ink);
    color: #fff
}

.work .sec-head h2 {
    color: #fff
}

.work .sec-head p {
    color: rgba(255, 255, 255, .6)
}

.work .eyebrow {
    color: #ff5a5d
}

.work .eyebrow::before {
    background: #ff5a5d
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
    gap: 18px
}

.tile {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer
}

.tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s cubic-bezier(.16, 1, .3, 1)
}

.tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 11, 13, .85), transparent 60%);
    opacity: .7;
    transition: .4s
}

.tile:hover img {
    transform: scale(1.09)
}

.tile:hover::after {
    opacity: .55;
    background: linear-gradient(to top, rgba(226, 24, 27, .7), transparent 65%)
}

.tile .cap {
    position: absolute;
    left: 20px;
    bottom: 18px;
    z-index: 2;
    transition: .4s
}

.tile .cap .k {
    font-family: var(--mono);
    font-size: .68rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #ff7d7f
}

.tile .cap .h {
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.15rem;
    margin-top: 4px
}

.tile:hover .cap {
    transform: translateY(-4px)
}

.tile.wide {
    grid-column: span 2
}

.tile.tall {
    grid-row: span 2
}

/* ===== STATS ===== */
.stats {
    background: var(--white);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line)
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center
}

.stat .n {
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(2.6rem, 5vw, 4rem);
    line-height: 1;
    color: var(--ink);
    letter-spacing: -.02em
}

.stat .n .s {
    color: var(--red)
}

.stat .l {
    margin-top: 12px;
    font-family: var(--mono);
    font-size: .74rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--grey)
}

/* ===== PROCESS (interactive accordion) ===== */
.process {
    background: var(--ink);
    color: #fff;
    overflow: hidden
}

.process .sec-head h2 {
    color: #fff
}

.process .sec-head p {
    color: rgba(255, 255, 255, .6)
}

.process .eyebrow {
    color: #ff5a5d
}

.process .eyebrow::before {
    background: #ff5a5d
}

.accordion {
    display: flex;
    gap: 14px;
    height: 440px
}

.panel {
    position: relative;
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    background: var(--ink-soft);
    transition: flex .6s cubic-bezier(.16, 1, .3, 1);
    border: 1px solid rgba(255, 255, 255, .08);
    min-width: 0
}

.panel.active {
    flex: 4.2
}

.panel .bg {
    position: absolute;
    inset: 0;
    z-index: 0
}

.panel .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .28;
    transition: .6s;
    filter: grayscale(1)
}

.panel.active .bg img {
    opacity: .42;
    filter: grayscale(0)
}

.panel .bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 11, 13, .5), rgba(10, 11, 13, .92))
}

.panel.active .bg::after {
    background: linear-gradient(160deg, rgba(226, 24, 27, .35), rgba(10, 11, 13, .92) 60%)
}

.panel .inner {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 30px 28px;
    display: flex;
    flex-direction: column
}

.panel .num {
    font-family: var(--mono);
    font-size: .78rem;
    letter-spacing: .2em;
    color: var(--red);
    font-weight: 700
}

.panel .pico {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 18px 0 auto;
    transition: .5s;
    backdrop-filter: blur(4px)
}

.panel.active .pico {
    background: var(--red)
}

.panel .pico svg {
    width: 24px;
    height: 24px;
    color: #fff
}

.panel h4 {
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.05;
    letter-spacing: -.01em;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    margin-top: 18px;
    transition: .4s;
    white-space: nowrap
}

.panel.active h4 {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 2rem;
    margin-top: 0
}

.panel .body {
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    transition: .5s .15s;
    margin-top: 14px
}

.panel.active .body {
    max-width: 520px;
    opacity: 1
}

.panel .body p {
    color: rgba(255, 255, 255, .78);
    font-size: 1.02rem;
    max-width: 430px
}

.panel .body .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px
}

.panel .body .tags span {
    font-family: var(--mono);
    font-size: .68rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, .25);
    padding: 6px 12px;
    border-radius: 30px;
    color: rgba(255, 255, 255, .8)
}

/* ===== WHY / TECH EDGE ===== */
.edge {
    background: var(--ink);
    color: #fff;
    overflow: hidden
}

.edge-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 70px;
    align-items: center
}

.edge .eyebrow {
    color: #ff5a5d
}

.edge .eyebrow::before {
    background: #ff5a5d
}

.edge h2 {
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(2rem, 4.4vw, 3.3rem);
    line-height: 1.04;
    letter-spacing: -.02em;
    margin-top: 18px
}

.edge h2 em {
    font-style: normal;
    color: var(--red)
}

.edge .lead {
    color: rgba(255, 255, 255, .7);
    margin-top: 22px;
    font-size: 1.08rem;
    max-width: 480px
}

.edge-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin-top: 8px
}

.efeat {
    background: var(--ink-soft);
    padding: 26px 24px;
    border-radius: 14px
}

.efeat .ico {
    color: var(--red);
    margin-bottom: 14px
}

.efeat .ico svg {
    width: 26px;
    height: 26px
}

.efeat h5 {
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.1rem
}

.efeat p {
    color: rgba(255, 255, 255, .6);
    font-size: .92rem;
    margin-top: 8px
}

/* ===== CTA / CONTACT ===== */
.contact {
    background: var(--red);
    color: #fff;
    position: relative;
    overflow: hidden
}

.contact::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, .18), transparent 70%);
    top: -200px;
    right: -120px
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 2
}

.contact .eyebrow {
    color: #fff
}

.contact .eyebrow::before {
    background: #fff
}

.contact h2 {
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1;
    letter-spacing: -.02em;
    margin-top: 18px
}

.contact .lead {
    color: rgba(255, 255, 255, .9);
    margin-top: 22px;
    font-size: 1.12rem;
    max-width: 440px
}

.contact-meta {
    margin-top: 34px;
    display: flex;
    flex-direction: column;
    gap: 14px
}

.contact-meta a {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: .25s
}

.contact-meta a:hover {
    padding-left: 6px
}

.contact-meta a svg {
    width: 20px;
    height: 20px;
    flex: 0 0 auto
}

.form {
    background: #fff;
    color: var(--ink);
    border-radius: 24px;
    padding: 38px 34px;
    box-shadow: 0 40px 80px rgba(10, 11, 13, .3)
}

.form .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.field {
    margin-bottom: 16px
}

.field label {
    font-family: var(--mono);
    font-size: .7rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--grey);
    display: block;
    margin-bottom: 7px
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 13px 15px;
    border: 1.5px solid var(--line);
    border-radius: 11px;
    font-family: var(--body);
    font-size: .98rem;
    background: var(--paper);
    color: var(--ink);
    transition: .25s
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--red);
    background: #fff
}

.field textarea {
    resize: vertical;
    min-height: 96px
}

.form .btn-red {
    width: 100%;
    justify-content: center;
    margin-top: 6px;
    font-size: 1rem
}

.form-note {
    text-align: center;
    font-size: .82rem;
    color: var(--grey);
    margin-top: 14px
}

/* ===== FOOTER ===== */
footer {
    background: var(--ink);
    color: #fff;
    padding: 80px 0 34px
}

.foot-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 54px;
    border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.foot-brand .brand {
    color: #fff;
    font-size: 1.5rem
}

.foot-brand p {
    color: rgba(255, 255, 255, .55);
    margin-top: 18px;
    max-width: 280px;
    font-size: .96rem
}

.socials {
    display: flex;
    gap: 12px;
    margin-top: 24px
}

.socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s
}

.socials a:hover {
    background: var(--red);
    border-color: var(--red);
    transform: translateY(-3px)
}

.socials a svg {
    width: 18px;
    height: 18px
}

.foot-col h6 {
    font-family: var(--mono);
    font-size: .72rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 18px
}

.foot-col a {
    display: block;
    color: rgba(255, 255, 255, .65);
    padding: 6px 0;
    font-size: .95rem;
    transition: .25s
}

.foot-col a:hover {
    color: #fff;
    padding-left: 5px
}

.foot-bot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 26px;
    color: rgba(255, 255, 255, .45);
    font-size: .85rem;
    flex-wrap: wrap;
    gap: 12px
}

/* scroll progress bar */
.progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: var(--red);
    z-index: 1100;
    transition: width .1s linear
}

/* ===== RESPONSIVE ===== */
@media(max-width:980px) {
    .svc-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .intro-grid,
    .edge-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 44px
    }

    .work-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .tile.wide {
        grid-column: span 2
    }

    .stat-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 44px 20px
    }

    .foot-top {
        grid-template-columns: 1fr 1fr;
        gap: 34px
    }
}

@media(max-width:760px) {
    .accordion {
        flex-direction: column;
        height: auto;
        gap: 12px
    }

    .panel {
        flex: none;
        height: 84px;
        transition: height .5s cubic-bezier(.16, 1, .3, 1)
    }

    .panel.active {
        flex: none;
        height: 300px
    }

    .panel h4 {
        writing-mode: horizontal-tb;
        transform: none;
        font-size: 1.6rem;
        margin-top: 14px
    }

    .panel.active h4 {
        font-size: 1.8rem
    }

    .panel .pico {
        margin: 14px 0
    }
}

@media(max-width:680px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 78%;
        max-width: 320px;
        background: var(--ink);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transform: translateX(100%);
        transition: .45s;
        padding: 40px;
        z-index: 1001
    }

    .nav-links.open {
        transform: none
    }

    .nav-links>a {
        color: #fff;
        font-size: 1.3rem;
        font-family: var(--display)
    }

    .burger {
        display: flex;
        z-index: 1002
    }

    .burger.open span:nth-child(1) {
        transform: translateY(7.5px) rotate(45deg);
        background: #fff
    }

    .burger.open span:nth-child(2) {
        opacity: 0
    }

    .burger.open span:nth-child(3) {
        transform: translateY(-7.5px) rotate(-45deg);
        background: #fff
    }

    .sec {
        padding: 84px 0
    }

    .svc-grid,
    .work-grid,
    .stat-grid {
        grid-template-columns: 1fr
    }

    .tile.wide {
        grid-column: span 1
    }

    .form .row {
        grid-template-columns: 1fr
    }

    .marquee {
        padding: 24px 0
    }

    .container {
        padding: 0 20px
    }
}