:root {
    --navy: #233b67;
    --deep-navy: #17264f;
    --midnight: #071225;
    --lime: #a8cc45;
    --green: #8fbe3f;
    --white: #ffffff;
    --paper: #f7f9f3;
    --mist: #eef3e8;
    --line: rgba(35, 59, 103, .14);
    --ink: #142033;
    --muted: #617089;
    --shadow: 0 28px 80px rgba(7, 18, 37, .18);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Inter, ui-sans-serif, system-ui, "Segoe UI", sans-serif;
    line-height: 1.6;
}

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

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

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

.skip-link {
    position: absolute;
    left: 1rem;
    top: -5rem;
    z-index: 100;
    padding: .75rem 1rem;
    border-radius: .5rem;
    color: var(--deep-navy);
    background: var(--lime);
    font-weight: 900;
}

.skip-link:focus {
    top: 1rem;
}

.site-shell {
    min-height: 100vh;
    overflow-x: clip;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 14px 36px rgba(7, 18, 37, .08);
    backdrop-filter: saturate(170%) blur(18px);
    -webkit-backdrop-filter: saturate(170%) blur(18px);
}

.wrap {
    width: min(1180px, calc(100% - 32px));
    margin-inline: auto;
}

.nav {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand img {
    width: 154px;
    padding: 0;
    border-radius: 0;
    background: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: .15rem;
    padding: .26rem;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 1.35rem;
    background: rgba(23, 38, 79, .94);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .18),
        0 18px 44px rgba(7, 18, 37, .12);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
}

.nav-links a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: .58rem 1.05rem;
    border-radius: .9rem;
    color: rgba(255, 255, 255, .82);
    font-size: .91rem;
    font-weight: 800;
    transition: .2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
    color: #2b262b;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 8px 22px rgba(7, 18, 37, .12);
}

.button,
.nav-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border: 1px solid transparent;
    border-radius: .5rem;
    padding: .85rem 1.1rem;
    font-weight: 950;
    line-height: 1;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button-primary,
.nav-action {
    color: var(--deep-navy);
    background: var(--lime);
    box-shadow: 0 16px 34px rgba(168, 204, 69, .25);
}

.button-secondary {
    color: var(--white);
    border-color: rgba(255, 255, 255, .34);
    background: rgba(255, 255, 255, .1);
}

.button-ghost {
    color: var(--deep-navy);
    border-color: rgba(35, 59, 103, .18);
    background: var(--white);
}

.button:hover,
.nav-action:hover,
.button:focus-visible,
.nav-action:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 22px 52px rgba(7, 18, 37, .18);
}

.menu-button {
    display: none;
    min-width: 44px;
    min-height: 44px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: .5rem;
    color: var(--deep-navy);
    background: rgba(255, 255, 255, .52);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    font-weight: 900;
}

.mobile-nav {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 1rem;
    padding: .75rem;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: .75rem;
    background: rgba(23, 38, 79, .96);
    box-shadow: 0 24px 60px rgba(7, 18, 37, .16);
    backdrop-filter: blur(22px) saturate(170%);
    -webkit-backdrop-filter: blur(22px) saturate(170%);
}

.mobile-nav a {
    display: block;
    padding: .9rem;
    border-radius: .45rem;
    color: var(--white);
    font-weight: 850;
}

.mobile-nav a:hover,
.mobile-nav a:focus-visible {
    background: rgba(255, 255, 255, .1);
}

.hero {
    min-height: clamp(660px, 82svh, 820px);
    display: grid;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: var(--ink);
    background:
        radial-gradient(circle at 74% 18%, rgba(168, 204, 69, .2), transparent 28%),
        linear-gradient(135deg, #fbfaf6 0%, #f3f5ef 42%, #e8edf4 100%);
    isolation: isolate;
    padding: 6.35rem 0 1rem;
}

.grid-lines {
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(90deg, black 0%, black 55%, transparent 92%);
}

.hero-ambient {
    position: absolute;
    inset: 5.25rem 0 0;
    z-index: -1;
    background-image:
        linear-gradient(rgba(35, 59, 103, .07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(35, 59, 103, .07) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(circle at 70% 44%, black 0%, transparent 62%);
}

.hero-showcase .wrap {
    width: min(1540px, calc(100% - 40px));
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(270px, .5fr) minmax(720px, 1.5fr);
    gap: clamp(1.5rem, 2.8vw, 3rem);
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: textFadeIn .75s ease-out both;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    width: fit-content;
    color: var(--lime);
    font-size: .76rem;
    font-weight: 950;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 34px;
    height: 2px;
    background: currentColor;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

.hero h1 {
    max-width: 520px;
    margin: .75rem 0 1.1rem;
    color: var(--midnight);
    font-size: clamp(3.1rem, 4.55vw, 5.45rem);
    line-height: .88;
    letter-spacing: 0;
}

.hero-copy {
    max-width: 440px;
    color: rgba(20, 32, 51, .74);
    font-size: clamp(1rem, 1.12vw, 1.16rem);
}

.hero-actions,
.action-row {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
    margin-top: 2rem;
}

.hero-showcase .button-secondary {
    color: var(--deep-navy);
    border-color: rgba(35, 59, 103, .22);
    background: rgba(255, 255, 255, .58);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    margin-top: 1.25rem;
}

.hero-proof span {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    padding: .42rem .72rem;
    border: 1px solid rgba(35, 59, 103, .12);
    border-radius: 999px;
    color: rgba(20, 32, 51, .7);
    background: rgba(255, 255, 255, .55);
    box-shadow: 0 12px 28px rgba(7, 18, 37, .06);
    font-size: .82rem;
    font-weight: 900;
}

.hero-studio {
    position: relative;
    aspect-ratio: 16 / 8.75;
    min-height: 0;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: .7rem;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .72), rgba(255, 255, 255, .38)),
        rgba(255, 255, 255, .48);
    box-shadow: 0 34px 110px rgba(7, 18, 37, .18);
    overflow: hidden;
    transform: translateZ(0);
    animation: visualFadeIn .8s .12s ease-out both;
}

.hero-studio::before {
    content: "";
    position: absolute;
    inset: 1rem;
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: .55rem;
    pointer-events: none;
    z-index: 2;
}

.hero-studio img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: heroDrift 14s ease-in-out infinite alternate;
}

.hero-float {
    position: absolute;
    z-index: 3;
    max-width: 260px;
    padding: .95rem 1rem;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: .65rem;
    color: var(--ink);
    background: rgba(255, 255, 255, .58);
    backdrop-filter: blur(24px) saturate(175%);
    -webkit-backdrop-filter: blur(24px) saturate(175%);
    box-shadow: 0 20px 48px rgba(7, 18, 37, .14);
    animation: floatCard 7s ease-in-out infinite;
}

.hero-float span,
.hero-float small {
    display: block;
    color: rgba(20, 32, 51, .62);
    font-size: .74rem;
    font-weight: 850;
    line-height: 1.35;
}

.hero-float strong {
    display: block;
    margin-top: .3rem;
    color: var(--deep-navy);
    font-size: clamp(1.25rem, 2vw, 1.8rem);
    line-height: 1;
}

.hero-float a {
    display: inline-flex;
    margin-top: .75rem;
    color: var(--deep-navy);
    font-size: .88rem;
    font-weight: 950;
}

.hero-float-left {
    left: 6%;
    top: 42%;
}

.hero-float-right {
    right: 5%;
    bottom: 12%;
    animation-delay: -2s;
}

.hero-float-bottom {
    left: 28%;
    bottom: 7%;
    display: grid;
    grid-template-columns: 18px 1fr;
    column-gap: .65rem;
    align-items: center;
    max-width: 330px;
    animation-delay: -4s;
}

.hero-float-bottom strong,
.hero-float-bottom small {
    grid-column: 2;
    margin-top: 0;
}

.pulse-dot {
    width: .75rem;
    height: .75rem;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 0 0 rgba(168, 204, 69, .55);
    animation: pulseDot 1.8s ease-out infinite;
}

.build-motion {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

.motion-line {
    position: absolute;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(168, 204, 69, .9), transparent);
    filter: drop-shadow(0 0 10px rgba(168, 204, 69, .42));
    animation: scanBuild 4.8s ease-in-out infinite;
}

.motion-line-one {
    left: 39%;
    top: 33%;
    width: 30%;
}

.motion-line-two {
    left: 54%;
    top: 61%;
    width: 24%;
    animation-delay: -2.4s;
}

.motion-node {
    position: absolute;
    width: 13px;
    height: 13px;
    border: 2px solid var(--lime);
    border-radius: 50%;
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 0 0 8px rgba(168, 204, 69, .16);
    animation: pulseDot 2.3s ease-out infinite;
}

.motion-node-one {
    left: 62%;
    top: 31%;
}

.motion-node-two {
    left: 74%;
    top: 58%;
    animation-delay: -1.1s;
}

.motion-hook {
    position: absolute;
    right: 18%;
    top: 8%;
    width: 2px;
    height: 86px;
    background: linear-gradient(var(--deep-navy), rgba(35, 59, 103, .16));
    transform-origin: top;
    animation: craneHook 3.6s ease-in-out infinite;
}

.motion-hook::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 18px;
    height: 14px;
    border: 2px solid var(--deep-navy);
    border-top: 0;
    border-radius: 0 0 12px 12px;
    transform: translateX(-50%);
}

@keyframes heroDrift {
    from { transform: scale(1.018) translate3d(-.35rem, 0, 0); }
    to { transform: scale(1.045) translate3d(.35rem, -.25rem, 0); }
}

@keyframes textFadeIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes visualFadeIn {
    from {
        opacity: 0;
        transform: translateY(18px) scale(.985);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulseDot {
    0% { box-shadow: 0 0 0 0 rgba(168, 204, 69, .5); }
    100% { box-shadow: 0 0 0 14px rgba(168, 204, 69, 0); }
}

@keyframes scanBuild {
    0%, 100% { opacity: .12; transform: translateX(-18px) scaleX(.72); }
    45%, 55% { opacity: 1; transform: translateX(18px) scaleX(1); }
}

@keyframes craneHook {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(18px); }
}

.ticker {
    overflow: hidden;
    color: var(--white);
    background: var(--deep-navy);
}

.ticker-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    padding: .85rem 0;
    animation: ticker 24s linear infinite;
}

.ticker span {
    color: rgba(255, 255, 255, .78);
    font-size: .86rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .12em;
}

@keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.section {
    padding: clamp(4.5rem, 8vw, 7.5rem) 0;
}

.section-soft {
    background: linear-gradient(180deg, var(--paper), var(--white));
}

.section-dark {
    color: var(--white);
    background: var(--midnight);
}

.section-head {
    display: grid;
    grid-template-columns: minmax(0, .72fr) minmax(260px, .28fr);
    gap: 2rem;
    align-items: end;
    margin-bottom: 2.5rem;
}

.section-head h2,
.page-hero h1 {
    margin: .65rem 0 0;
    color: var(--deep-navy);
    font-size: clamp(2.45rem, 5vw, 5rem);
    line-height: .9;
    letter-spacing: 0;
}

.section-dark .section-head h2,
.section-dark .eyebrow {
    color: var(--white);
}

.section-head p,
.lead {
    color: var(--muted);
    font-size: 1.05rem;
}

.section-dark .section-head p,
.section-dark .lead {
    color: rgba(255, 255, 255, .72);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.card,
.contact-panel,
.quote-panel {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: .5rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .78)),
        var(--white);
    box-shadow: 0 16px 42px rgba(7, 18, 37, .07);
    backdrop-filter: saturate(160%) blur(18px);
    -webkit-backdrop-filter: saturate(160%) blur(18px);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.card:hover,
.card:focus-within {
    transform: translateY(-5px);
    border-color: rgba(168, 204, 69, .72);
    box-shadow: 0 28px 72px rgba(7, 18, 37, .14);
}

.card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.card-body {
    padding: 1.15rem;
}

.kicker {
    color: var(--green);
    font-size: .74rem;
    font-weight: 950;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.card h3 {
    margin: .45rem 0 .55rem;
    color: var(--deep-navy);
    font-size: 1.25rem;
    line-height: 1.15;
}

.card p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: .96rem;
}

.card-link {
    display: inline-flex;
    margin-top: 1rem;
    color: var(--deep-navy);
    font-weight: 950;
}

.feature-split {
    display: grid;
    grid-template-columns: minmax(0, .84fr) minmax(320px, 1.16fr);
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
}

.image-stack {
    position: relative;
    display: grid;
    grid-template-columns: 1fr .76fr;
    gap: 1rem;
    align-items: end;
}

.image-stack img {
    border-radius: .5rem;
    box-shadow: var(--shadow);
    object-fit: cover;
}

.image-stack img:first-child {
    width: 100%;
    aspect-ratio: 4 / 5;
}

.image-stack img:last-child {
    width: 100%;
    aspect-ratio: 1 / 1.15;
    transform: translateY(2rem);
}

.image-stack::before {
    content: "";
    position: absolute;
    inset: -1.2rem auto auto 18%;
    width: 36%;
    height: 42%;
    border-radius: .5rem;
    background: var(--lime);
    z-index: -1;
}

.feature-list {
    display: grid;
    gap: .9rem;
    margin: 1.5rem 0 0;
    padding: 0;
    list-style: none;
}

.feature-list li {
    display: grid;
    grid-template-columns: 1.35rem 1fr;
    gap: .75rem;
    color: var(--ink);
    font-weight: 750;
}

.feature-list li::before {
    content: "";
    width: .72rem;
    height: .72rem;
    margin-top: .45rem;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 0 5px rgba(168, 204, 69, .18);
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.metric {
    min-height: 150px;
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: .5rem;
    background: rgba(255, 255, 255, .08);
}

.metric strong {
    display: block;
    color: var(--lime);
    font-size: 2.2rem;
    line-height: 1;
}

.metric span {
    display: block;
    margin-top: .65rem;
    color: rgba(255, 255, 255, .76);
    font-weight: 800;
}

.page-hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: var(--midnight);
    padding: 10rem 0 5rem;
    isolation: isolate;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background: var(--page-image) center / cover no-repeat;
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(105deg, rgba(7, 18, 37, .98), rgba(23, 38, 79, .78), rgba(7, 18, 37, .44));
}

.page-hero h1 {
    max-width: 850px;
    color: var(--white);
}

.page-hero p {
    max-width: 680px;
    color: rgba(255, 255, 255, .78);
    font-size: 1.12rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    counter-reset: step;
}

.process-step {
    counter-increment: step;
    min-height: 230px;
    padding: 1.2rem;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: .5rem;
    background: rgba(255, 255, 255, .08);
}

.process-step.light {
    color: var(--ink);
    border-color: var(--line);
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 16px 42px rgba(7, 18, 37, .07);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
}

.process-step::before {
    content: "0" counter(step);
    display: block;
    margin-bottom: 2rem;
    color: var(--lime);
    font-weight: 950;
}

.process-step h3 {
    margin-bottom: .55rem;
}

.process-step p {
    color: rgba(255, 255, 255, .72);
}

.process-step.light p {
    color: var(--muted);
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(280px, .75fr) minmax(0, 1fr);
    gap: 1.1rem;
    align-items: start;
}

.map-panel {
    margin-top: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: .5rem;
    background: rgba(255, 255, 255, .08);
}

.map-panel iframe {
    display: block;
    width: 100%;
    min-height: 280px;
    border: 0;
    filter: saturate(.92) contrast(1.02);
}

.contact-panel {
    padding: 1.25rem;
}

.contact-panel.dark {
    color: var(--white);
    border-color: var(--deep-navy);
    background:
        linear-gradient(135deg, rgba(23, 38, 79, .96), rgba(7, 18, 37, .96)),
        url("/assets/kisasa/kisasa-contact-residential-project.webp") center / cover no-repeat;
}

.contact-panel.dark p,
.contact-panel.dark a,
.contact-panel.dark span {
    color: rgba(255, 255, 255, .82);
}

.contact-list {
    display: grid;
    gap: 1rem;
    margin-top: 1.35rem;
}

.contact-list a,
.contact-list span {
    display: block;
    font-weight: 900;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.field {
    display: grid;
    gap: .45rem;
}

.field.full {
    grid-column: 1 / -1;
}

label {
    color: var(--deep-navy);
    font-size: .9rem;
    font-weight: 950;
}

input,
select,
textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid #cfd8df;
    border-radius: .5rem;
    padding: .78rem .9rem;
    color: var(--ink);
    background: var(--white);
}

textarea {
    min-height: 132px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
    outline: 3px solid rgba(168, 204, 69, .55);
    outline-offset: 3px;
}

.field-error {
    color: #b42318;
    font-size: .86rem;
    font-weight: 850;
}

.alert {
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: .5rem;
    font-weight: 850;
}

.alert-error {
    color: #7a271a;
    background: #ffebe7;
    border: 1px solid #ffc9bd;
}

.site-footer {
    color: rgba(255, 255, 255, .72);
    background: var(--midnight);
    padding: 2rem 0;
}

.footer-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-grid img {
    width: 142px;
    padding: .22rem .46rem;
    border-radius: .5rem;
    background: var(--white);
}

@media (max-width: 980px) {
    .nav-links,
    .nav-action {
        display: none;
    }

    .menu-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-nav.is-open {
        display: block;
    }

    .section-head,
    .feature-split,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        padding: 7.25rem 0 2rem;
    }

    .hero-grid {
        grid-template-columns: minmax(250px, .55fr) minmax(440px, 1.45fr);
        gap: 1.4rem;
    }

    .hero h1 {
        max-width: 430px;
        font-size: clamp(2.65rem, 5.8vw, 4rem);
    }

    .hero-studio {
        aspect-ratio: 16 / 9.4;
    }

    .hero-float-left {
        left: 4%;
        top: 36%;
    }

    .hero-float-right {
        right: 4%;
    }

    .card-grid,
    .metric-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .wrap,
    .mobile-nav {
        width: min(100% - 24px, 1180px);
    }

    .brand img {
        width: 132px;
    }

    .hero,
    .page-hero {
        min-height: auto;
        padding-top: 7.5rem;
    }

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

    .hero h1 {
        font-size: clamp(2.85rem, 15vw, 4rem);
    }

    .hero-studio {
        aspect-ratio: 4 / 4.55;
        border-radius: .55rem;
    }

    .hero-studio img {
        object-position: 58% center;
    }

    .hero-float {
        padding: .78rem .82rem;
        border-radius: .55rem;
    }

    .hero-float-left {
        left: .7rem;
        top: .9rem;
        max-width: 150px;
    }

    .hero-float-right {
        right: .7rem;
        bottom: .9rem;
        max-width: 178px;
    }

    .hero-float-bottom,
    .motion-line,
    .motion-node {
        display: none;
    }

    .motion-hook {
        right: 21%;
        height: 62px;
    }

    .hero-actions,
    .action-row,
    .footer-grid {
        align-items: stretch;
    }

    .button {
        width: 100%;
    }

    .card-grid,
    .metric-grid,
    .process-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .image-stack {
        grid-template-columns: 1fr;
    }

    .image-stack img:last-child {
        transform: none;
    }

    .section {
        padding-block: 4rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .ticker-track {
        animation: none;
    }
}
