:root {
    --font-geist-sans: "Segoe UI", Arial, sans-serif;
    --font-geist-mono: "Cascadia Mono", "Courier New", monospace;
    --ink: #082f60;
    --ink-deep: #051f42;
    --paper: #f3f2ed;
    --paper-soft: #fbfaf7;
    --white: #ffffff;
    --orange: #e47a18;
    --orange-dark: #bd5b09;
    --blue: #0c4b87;
    --blue-soft: #e4edf6;
    --line: rgba(8, 47, 96, 0.17);
    --muted: #687383;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
}

body {
    margin: 0;
    background: var(--paper-soft);
    color: var(--ink);
    font-family: var(--font-geist-sans), Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

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

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

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

.site-header {
    position: sticky;
    z-index: 20;
    top: 0;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 28px;
    min-height: 86px;
    padding: 0 4vw;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

    .brand img {
        width: clamp(155px, 13vw, 205px);
        height: auto;
    }

    .brand > span,
    .footer-brand > span {
        padding-left: 14px;
        border-left: 1px solid var(--line);
        color: var(--muted);
        font-size: 12px;
        font-weight: 720;
        letter-spacing: 0.14em;
        line-height: 1.35;
        text-transform: uppercase;
    }

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    font-size: 16px;
}

    .desktop-nav a {
        position: relative;
        padding: 12px 0;
    }

        .desktop-nav a::after {
            position: absolute;
            right: 0;
            bottom: 6px;
            left: 0;
            height: 1px;
            content: "";
            background: var(--orange);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 180ms ease;
        }

        .desktop-nav a:hover::after {
            transform: scaleX(1);
        }

.header-cta {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 24px;
    padding: 13px 16px 13px 19px;
    border: 1px solid var(--ink);
    font-size: 12px;
    font-weight: 650;
    transition: background 180ms ease, color 180ms ease;
}

    .header-cta:hover {
        color: var(--white);
        background: var(--ink);
    }

.hero {
    position: relative;
    display: grid;
    min-height: calc(100svh - 86px);
    grid-template-columns: 1.04fr 0.96fr;
    overflow: hidden;
    background: var(--ink-deep);
    color: var(--white);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding: clamp(82px, 9vw, 140px) 7vw clamp(55px, 7vw, 92px);
    background: var(--ink);
}

    .hero-content::after {
        position: absolute;
        right: -18vw;
        bottom: -36vw;
        width: 54vw;
        height: 54vw;
        content: "";
        border: clamp(40px, 6vw, 90px) solid rgba(255, 255, 255, 0.035);
        border-right-color: rgba(228, 122, 24, 0.1);
        border-radius: 50%;
    }

    .hero-content > * {
        position: relative;
        z-index: 1;
    }

.hero-image {
    position: relative;
    min-height: 690px;
    overflow: hidden;
}

    .hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 58% center;
        animation: hero-in 1.2s ease both;
    }

    .hero-image::after {
        position: absolute;
        inset: 0;
        content: "";
        background: linear-gradient(180deg, rgba(5, 31, 66, 0.06), rgba(5, 31, 66, 0.44));
    }

.eyebrow {
    margin: 0 0 24px;
    color: var(--orange);
    font-size: 14px;
    font-weight: 750;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

    .eyebrow.light {
        color: #f4b26f;
    }

.hero h1 {
    max-width: 800px;
    margin: 0;
    font-size: clamp(60px, 6.4vw, 106px);
    font-weight: 570;
    letter-spacing: -0.06em;
    line-height: 0.93;
}

    .hero h1 span {
        display: block;
        color: #dbe8f4;
    }

.hero-intro {
    max-width: 610px;
    margin: 34px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: clamp(17px, 1.5vw, 22px);
    line-height: 1.55;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 38px;
}

.button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 42px;
    padding: 0 23px;
    border: 1px solid transparent;
    font-size: 13px;
    font-weight: 700;
    transition: transform 160ms ease, background 160ms ease;
}

    .button:hover {
        transform: translateY(-2px);
    }

    .button.primary {
        background: var(--orange);
    }

        .button.primary:hover {
            background: var(--orange-dark);
        }

    .button.ghost {
        border-color: rgba(255, 255, 255, 0.4);
        background: rgba(255, 255, 255, 0.04);
        backdrop-filter: blur(12px);
    }

.hero-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: clamp(50px, 7vh, 80px);
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

    .hero-proof div {
        min-height: 100px;
        padding: 22px 22px 0 0;
        border-right: 1px solid rgba(255, 255, 255, 0.14);
        margin-left: 10px;
    }

    .hero-proof span {
        color: var(--orange);
        font-family: var(--font-geist-mono), monospace;
        font-size: 14px;
    }

    .hero-proof p {
        margin: 17px 0 0;
        font-size: 14px;
        line-height: 1.4;
    }

.hero-brand-card {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    width: min(300px, 44%);
    padding: 26px 30px 28px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
}

    .hero-brand-card img {
        width: 118px;
        height: auto;
        margin-bottom: 20px;
        animation: none;
    }

    .hero-brand-card p {
        margin: 6px 0 0;
        color: var(--muted);
        font-size: 14px;
    }

    .hero-brand-card strong {
        color: var(--ink);
    }

.hero-image-label {
    position: absolute;
    z-index: 2;
    top: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    color: var(--white);
    background: rgba(5, 31, 66, 0.88);
    font-size: 13px;
    font-weight: 760;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

    .hero-image-label i {
        color: var(--orange);
        font-style: normal;
    }

.capability-ticker {
    display: flex;
    min-height: 62px;
    align-items: center;
    justify-content: space-around;
    gap: 22px;
    overflow: hidden;
    padding: 0 5vw;
    color: var(--white);
    background: var(--orange);
    font-size: 13px;
    font-weight: 760;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    white-space: nowrap;
}

    .capability-ticker i {
        color: rgba(255, 255, 255, 0.62);
        font-size: 18px;
        font-style: normal;
    }

.section-shell {
    padding: 120px 7vw;
}

.positioning {
    display: grid;
    grid-template-columns: 0.4fr 1.55fr 1fr;
    gap: 6vw;
    align-items: start;
    background: var(--paper);
}

.section-index {
    color: var(--orange);
    font-family: var(--font-geist-mono), monospace;
    font-size: 14px;
}

.positioning h2,
.section-title-row h2,
.showcase-copy h2,
.approach-intro h2,
.about h2,
.supply-strip h2,
.contact h2 {
    margin: 0;
    font-size: clamp(40px, 5vw, 76px);
    font-weight: 530;
    letter-spacing: -0.055em;
    line-height: 0.98;
}

.positioning-copy {
    padding-top: 40px;
}

    .positioning-copy p,
    .section-lead,
    .about-copy p,
    .supply-strip > p {
        margin: 0;
        color: var(--muted);
        font-size: 16px;
        line-height: 1.8;
    }

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 38px;
    margin-top: 36px;
    padding-bottom: 9px;
    border-bottom: 1px solid var(--ink);
    font-size: 14px;
    font-weight: 720;
}

.services {
    background: var(--paper-soft);
}

.section-title-row {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 12vw;
    align-items: end;
}

    .section-title-row.compact {
        gap: 8vw;
    }

.section-lead {
    max-width: 490px;
    padding-bottom: 4px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    margin-top: 82px;
    background: var(--line);
    border: 1px solid var(--line);
}

.service-card {
    min-height: 550px;
    padding: clamp(28px, 4vw, 58px);
    background: var(--paper-soft);
    transition: background 220ms ease, color 220ms ease;
}

    .service-card:hover {
        color: var(--white);
        background: var(--ink);
    }

.service-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-number {
    color: var(--orange);
    font-family: var(--font-geist-mono), monospace;
    font-size: 14px;
}

.service-arrow {
    font-size: 22px;
}

.mini-label {
    margin: 72px 0 13px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 720;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.service-card:hover .mini-label {
    color: #a9c8e8;
}

.service-card h3 {
    max-width: 480px;
    margin: 0;
    font-size: clamp(30px, 3vw, 47px);
    font-weight: 560;
    letter-spacing: -0.045em;
    line-height: 1.02;
}

.service-description {
    max-width: 535px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

.service-card:hover .service-description {
    color: rgba(255, 255, 255, 0.7);
}

.service-card ul {
    display: grid;
    gap: 13px;
    margin: 38px 0 0;
    padding: 25px 0 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

.service-card li {
    position: relative;
    padding-left: 18px;
    font-size: 14px;
}

    .service-card li::before {
        position: absolute;
        top: 0.55em;
        left: 0;
        width: 5px;
        height: 5px;
        content: "";
        background: var(--orange);
    }

.technical-showcase {
    display: grid;
    min-height: 760px;
    grid-template-columns: 1.08fr 0.92fr;
    background: var(--ink);
    color: var(--white);
}

.showcase-image {
    position: relative;
    min-height: 680px;
    overflow: hidden;
}

    .showcase-image::after {
        position: absolute;
        inset: 0;
        content: "";
        background: linear-gradient(90deg, transparent 70%, rgba(8, 47, 96, 0.45));
    }

    .showcase-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .showcase-image > span {
        position: absolute;
        z-index: 2;
        bottom: 22px;
        left: 24px;
        padding: 8px 10px;
        color: rgba(255, 255, 255, 0.7);
        background: rgba(5, 31, 66, 0.78);
        font-size: 9px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

.showcase-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 90px 7vw;
}

    .showcase-copy > p:not(.eyebrow) {
        max-width: 560px;
        margin: 34px 0 0;
        color: rgba(255, 255, 255, 0.68);
        font-size: 16px;
        line-height: 1.75;
    }

.showcase-points {
    display: grid;
    margin-top: 52px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

    .showcase-points div {
        display: grid;
        grid-template-columns: 0.7fr 1fr;
        gap: 20px;
        padding: 18px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    }

    .showcase-points strong {
        font-size: 14px;
    }

    .showcase-points span {
        color: rgba(255, 255, 255, 0.58);
        font-size: 14px;
        line-height: 1.5;
    }

.sectors {
    background: var(--paper);
}

.sector-list {
    margin-top: 78px;
    border-top: 1px solid var(--line);
}

.sector-row {
    display: grid;
    grid-template-columns: 0.2fr 0.75fr 1.4fr auto;
    gap: 24px;
    align-items: center;
    min-height: 112px;
    border-bottom: 1px solid var(--line);
    transition: padding 180ms ease, background 180ms ease;
}

    .sector-row:hover {
        padding: 0 22px;
        background: var(--blue-soft);
    }

    .sector-row > span {
        color: var(--orange);
        font-family: var(--font-geist-mono), monospace;
        font-size: 14px;
    }

    .sector-row p {
        color: var(--muted);
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 0.1em;
    }

    .sector-row h3 {
        margin: 0;
        font-size: clamp(23px, 2.5vw, 36px);
        font-weight: 540;
        letter-spacing: -0.035em;
    }

    .sector-row i {
        font-size: 22px;
        font-style: normal;
    }

.fitout-band {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    color: var(--white);
}

    .fitout-band > img,
    .fitout-band-overlay {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }

    .fitout-band > img {
        object-fit: cover;
    }

.fitout-band-overlay {
    background: linear-gradient(90deg, rgba(5, 31, 66, 0.9), rgba(5, 31, 66, 0.13));
}

.fitout-band-copy {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 620px;
    flex-direction: column;
    justify-content: center;
    padding: 90px 8vw;
}

.fitout-band blockquote {
    max-width: 900px;
    margin: 0;
    font-size: clamp(38px, 5vw, 74px);
    font-weight: 510;
    letter-spacing: -0.055em;
    line-height: 1.02;
}

.approach {
    display: grid;
    grid-template-columns: 0.83fr 1.17fr;
    gap: 10vw;
    background: var(--paper-soft);
}

.approach-intro {
    position: sticky;
    top: 120px;
    align-self: start;
}

    .approach-intro > p:not(.eyebrow) {
        max-width: 490px;
        margin-top: 30px;
        color: var(--muted);
        line-height: 1.7;
    }

.process-list {
    border-top: 1px solid var(--line);
}

    .process-list article {
        display: grid;
        grid-template-columns: 72px 1fr;
        gap: 22px;
        padding: 35px 0;
        border-bottom: 1px solid var(--line);
    }

        .process-list article > span {
            color: var(--orange);
            font-family: var(--font-geist-mono), monospace;
            font-size: 14px;
        }

    .process-list h3 {
        margin: -4px 0 12px;
        font-size: 26px;
        font-weight: 560;
        letter-spacing: -0.025em;
    }

    .process-list p {
        max-width: 510px;
        margin: 0;
        color: var(--muted);
        font-size: 14px;
        line-height: 1.65;
    }

.about {
    padding: 120px 7vw 0;
    color: var(--white);
    background: var(--ink);
}

.about-panel {
    display: grid;
    grid-template-columns: 1fr 0.78fr;
    gap: 10vw;
    padding-bottom: 92px;
}

.about-copy p {
    color: rgba(255, 255, 255, 0.68);
}

    .about-copy p + p {
        margin-top: 26px;
    }

.about-copy .legal-note {
    padding-left: 16px;
    border-left: 3px solid var(--orange);
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 0 -7vw;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

    .about-values > div {
        min-height: 260px;
        padding: 36px 3vw;
        border-left: 1px solid rgba(255, 255, 255, 0.16);
    }

    .about-values span {
        color: var(--orange);
        font-family: var(--font-geist-mono), monospace;
        font-size: 14px;
    }

    .about-values strong {
        display: block;
        margin-top: 70px;
        font-size: 19px;
    }

    .about-values p {
        margin: 13px 0 0;
        color: rgba(255, 255, 255, 0.55);
        font-size: 15px;
        line-height: 1.55;
    }

.supply-strip {
    display: grid;
    grid-template-columns: 1fr 1fr 0.55fr;
    gap: 7vw;
    align-items: center;
    background: var(--blue-soft);
}

    .supply-strip h2 {
        font-size: clamp(34px, 4vw, 56px);
    }

    .supply-strip .text-link {
        margin: 0;
        justify-self: end;
    }

.contact {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 9vw;
    padding: 120px 7vw;
    color: var(--white);
    background: var(--ink);
}

.contact-heading > p:not(.eyebrow) {
    max-width: 540px;
    margin: 30px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 16px;
    line-height: 1.7;
}

.contact .eyebrow.light {
    color: rgba(255, 255, 255, 0.72);
}

.contact-direct {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-top: 55px;
}

    .contact-direct a {
        padding-bottom: 4px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.55);
        font-size: 14px;
    }

    .contact-direct address {
        max-width: 350px;
        margin-top: 12px;
        color: rgba(255, 255, 255, 0.72);
        font-size: 13px;
        font-style: normal;
        line-height: 1.6;
    }

.quote-form {
    display: grid;
    gap: 23px;
    padding: clamp(28px, 4vw, 55px);
    color: var(--ink);
    background: var(--paper-soft);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.quote-form label {
    display: grid;
    gap: 9px;
    font-size: 11px;
    font-weight: 700;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    padding: 13px 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    outline: 0;
    color: var(--ink);
    background: transparent;
    font-size: 14px;
}

    .quote-form input:focus,
    .quote-form select:focus,
    .quote-form textarea:focus {
        border-color: var(--blue);
    }

.quote-form textarea {
    resize: vertical;
}

.quote-form button {
    display: flex;
    min-height: 56px;
    align-items: center;
    justify-content: space-between;
    margin-top: 4px;
    padding: 0 20px;
    border: 0;
    color: var(--white);
    background: var(--orange);
    font-size: 13px;
    font-weight: 750;
    cursor: pointer;
    transition: background 160ms ease;
}

    .quote-form button:hover {
        background: var(--orange-dark);
    }

.quote-form small {
    color: var(--muted);
    font-size: 9px;
}

footer {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 70px;
    padding: 65px 7vw 38px;
    color: var(--white);
    background: var(--ink-deep);
}

.footer-brand {
    align-items: center;
    padding: 14px 18px;
    background: var(--white);
}

    .footer-brand img {
        width: 190px;
        height: auto;
    }

    .footer-brand > span {
        color: var(--muted);
    }

.footer-links {
    display: flex;
    gap: 30px;
    align-self: center;
    font-size: 12px;
}

.footer-meta {
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-start;
    gap: 24px;
    flex-wrap: wrap;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.46);
    font-size: 13px;
}

.whatsapp-float {
    position: fixed;
    z-index: 30;
    right: 22px;
    bottom: 22px;
    display: flex;
    min-height: 52px;
    align-items: center;
    gap: 9px;
    padding: 0 17px;
    color: var(--white);
    background: #188654;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 12px 36px rgba(5, 31, 66, 0.24);
    font-size: 12px;
    font-weight: 750;
    transition: transform 160ms ease, background 160ms ease;
}

    .whatsapp-float:hover {
        background: #116d43;
        transform: translateY(-2px);
    }

    .whatsapp-float svg {
        width: 22px;
        height: 22px;
        fill: currentColor;
    }

@keyframes hero-in {
    from {
        opacity: 0;
        transform: scale(1.04);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 1050px) {
    .site-header {
        grid-template-columns: 1fr auto;
    }

    .desktop-nav {
        display: none;
    }

    .hero-content {
        padding-right: 5vw;
        padding-left: 5vw;
    }

    .hero h1 {
        font-size: clamp(52px, 7vw, 76px);
    }

    .positioning {
        grid-template-columns: 60px 1fr;
    }

    .positioning-copy {
        grid-column: 2;
    }

    .technical-showcase {
        grid-template-columns: 1fr;
    }

    .showcase-image {
        min-height: 560px;
    }

    .approach,
    .about-panel,
    .contact {
        grid-template-columns: 1fr;
    }

    .approach-intro {
        position: static;
    }

    .about-values {
        grid-template-columns: repeat(2, 1fr);
    }

    .supply-strip {
        grid-template-columns: 1fr 1fr;
    }

        .supply-strip .text-link {
            grid-column: 2;
            justify-self: start;
        }
}

@media (max-width: 760px) {
    html {
        scroll-padding-top: 72px;
    }

    .site-header {
        min-height: 72px;
        padding: 0 18px;
    }

    .brand img {
        width: 142px;
    }

    .brand > span {
        display: none;
    }

    .header-cta {
        gap: 8px;
        padding: 11px 12px;
        font-size: 10px;
    }

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

    .hero-content {
        width: auto;
        padding: 78px 24px 62px;
    }

    .hero h1 {
        font-size: clamp(48px, 14vw, 72px);
    }

    .hero-intro {
        font-size: 16px;
    }

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

    .button {
        justify-content: space-between;
    }

    .hero-proof {
        grid-template-columns: 1fr;
        margin-top: 48px;
    }

        .hero-proof div {
            display: grid;
            min-height: 0;
            grid-template-columns: 35px 1fr;
            align-items: center;
            padding: 14px 18px;
            border-top: 1px solid rgba(255, 255, 255, 0.14);
            border-right: 0;
            border-left: 0;
        }

        .hero-proof p {
            margin: 0;
        }

    .hero-image {
        min-height: 520px;
    }

    .hero-brand-card {
        width: 56%;
        padding: 20px;
    }

        .hero-brand-card img {
            width: 94px;
        }

    .hero-image-label {
        top: 18px;
        right: 18px;
    }

    .capability-ticker {
        justify-content: flex-start;
        overflow-x: auto;
        padding: 0 22px;
    }

    .section-shell {
        padding: 82px 22px;
    }

    .positioning {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .positioning-copy {
        grid-column: auto;
        padding-top: 5px;
    }

    .positioning h2,
    .section-title-row h2,
    .showcase-copy h2,
    .approach-intro h2,
    .about h2,
    .contact h2 {
        font-size: clamp(38px, 11vw, 54px);
    }

    .section-title-row,
    .service-grid,
    .supply-strip {
        grid-template-columns: 1fr;
    }

    .section-title-row {
        gap: 32px;
    }

    .service-grid {
        margin-top: 52px;
    }

    .service-card {
        min-height: auto;
        padding: 34px 26px 42px;
    }

    .mini-label {
        margin-top: 52px;
    }

    .showcase-image {
        min-height: 430px;
    }

    .showcase-copy {
        padding: 78px 24px;
    }

    .showcase-points div {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .sector-row {
        grid-template-columns: 34px 1fr auto;
        gap: 10px;
        min-height: 105px;
    }

        .sector-row p {
            display: none;
        }

    .fitout-band,
    .fitout-band-copy {
        min-height: 520px;
    }

    .fitout-band-copy {
        padding: 70px 24px;
    }

    .about {
        padding: 82px 22px 0;
    }

    .about-panel {
        gap: 45px;
    }

    .about-values {
        grid-template-columns: 1fr;
        margin: 0 -22px;
    }

        .about-values > div {
            min-height: 205px;
            padding: 30px 24px;
        }

        .about-values strong {
            margin-top: 44px;
        }

    .supply-strip .text-link {
        grid-column: auto;
    }

    .contact {
        padding: 82px 22px;
    }

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

    .quote-form {
        padding: 30px 22px;
    }

    footer {
        grid-template-columns: 1fr;
        gap: 42px;
        padding: 54px 22px 95px;
    }

    .footer-links {
        flex-wrap: wrap;
    }

    .footer-meta {
        flex-direction: column;
        gap: 10px;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.error-page {
    display: flex;
    min-height: 100svh;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 22px;
    padding: 8vw;
    background: var(--paper-soft);
}

    .error-page h1,
    .error-page p {
        margin: 0;
    }
