:root {
    --blue: #075ee8;
    --ink: #080a0d;
    --charcoal: #111419;
    --paper: #f1f1ef;
    --warm: #e8e6e1;
    --line: #d1d2d0;
    --grey: #6d7177;
    --white: #fff;
    --sans: "DM Sans", sans-serif;
    --heading: "Manrope", sans-serif
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font: 400 15px/1.7 var(--sans);
    overflow-x: hidden
}

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

img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover
}

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

.container {
    width: min(1240px, calc(100% - 80px));
    margin: auto
}

.noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 99;
    opacity: .025;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='a'%3E%3CfeTurbulence baseFrequency='.8' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23a)'/%3E%3C/svg%3E")
}

.site-header {
    position: fixed;
    z-index: 50;
    inset: 0 0 auto;
    height: 94px;
    padding: 0 4vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    transition: .35s
}

.site-header.scrolled,
.site-header.solid {
    height: 74px;
    background: rgba(8, 10, 13, .96);
    backdrop-filter: blur(18px)
}

.brand {
    display: flex;
    align-items: center;
    gap: 13px;
    font: 600 13px/1 var(--heading);
    letter-spacing: .09em
}

.brand small {
    display: block;
    margin-top: 6px;
    font: 500 7px var(--sans);
    letter-spacing: .38em;
    color: #aeb4bb
}

.brand-mark {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    width: 26px;
    height: 34px;
    transform: skewY(-8deg)
}

.brand-mark i {
    display: block;
    width: 9px;
    background: var(--blue)
}

.brand-mark i:first-child {
    height: 24px
}

.brand-mark i:last-child {
    height: 34px
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 35px;
    font-size: 11px;
    letter-spacing: .08em
}

.main-nav>a {
    opacity: .75;
    transition: .25s
}

.main-nav>a:hover,
.main-nav>a.active {
    opacity: 1
}

.main-nav .nav-cta {
    opacity: 1;
    padding: 12px 18px;
    border: 1px solid rgba(255, 255, 255, .6)
}

.menu-toggle {
    display: none;
    background: none;
    border: 0;
    color: #fff
}

.hero {
    height: 100svh;
    min-height: 720px;
    position: relative;
    overflow: hidden;
    background: #0b0d10;
    color: #fff
}

.hero-image {
    position: absolute;
    inset: -12%;
    background: url(../assets/placeholder-hero-fabrica.png) center/cover;
    filter: brightness(1.18) saturate(1.08);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(4, 6, 8, 0.22) 0%,
            rgba(4, 6, 8, 0.04) 45%,
            rgba(4, 6, 8, 0.32) 100%
        ),
        radial-gradient(
            circle at center,
            transparent 0%,
            rgba(4, 6, 8, 0.12) 75%
        );
}

.hero-center {
    position: absolute;
    z-index: 2;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center
}

.hero-logo {
    margin-top: 35px
}

.hero-symbol {
    height: 130px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 14px;
    transform: skewY(-8deg)
}

.hero-symbol i {
    display: block;
    width: 38px;
    background: var(--blue);
    box-shadow: 0 0 45px rgba(7, 94, 232, .2)
}

.hero-symbol i:first-child {
    height: 88px
}

.hero-symbol i:last-child {
    height: 128px
}

.hero-logo p {
    margin: 26px 0 4px;
    font: 600 clamp(30px, 4vw, 58px)/1 var(--heading);
    letter-spacing: .16em
}

.hero-logo small {
    font-size: 10px;
    letter-spacing: .72em;
    color: #d7dbe0
}

.hero-actions {
    display: flex;
    gap: 10px;
    margin-top: 42px
}

.button {
    min-width: 190px;
    padding: 15px 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
    border: 1px solid transparent;
    font: 500 11px var(--sans);
    letter-spacing: .08em;
    transition: .3s;
    cursor: pointer
}

.button.light {
    background: #fff;
    color: #080a0d
}

.button.ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, .55);
    backdrop-filter: blur(8px)
}

.button:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
    transform: translateY(-2px)
}

.hero-meta {
    position: absolute;
    z-index: 2;
    left: 4vw;
    right: 4vw;
    bottom: 34px;
    display: flex;
    justify-content: space-between;
    font-size: 8px;
    letter-spacing: .22em
}

.hero-scroll {
    position: absolute;
    z-index: 2;
    right: 4vw;
    top: 50%;
    transform: rotate(90deg) translateY(-50%);
    transform-origin: right top;
    font-size: 8px;
    letter-spacing: .2em
}

.hero-scroll i {
    display: inline-block;
    width: 50px;
    height: 1px;
    margin-left: 12px;
    background: #fff;
    vertical-align: middle
}

.section {
    padding: 145px 0
}

.overline {
    font-size: 9px;
    letter-spacing: .24em;
    font-weight: 600
}

.manifesto {
    background: var(--paper)
}

.manifesto-top {
    padding-bottom: 25px;
    border-bottom: 1px solid var(--line);
    display: flex;
    justify-content: space-between
}

.manifesto-grid {
    display: grid;
    grid-template-columns: 1.35fr .65fr;
    gap: 10vw;
    align-items: end;
    padding-top: 80px
}

.editorial,
.split-heading h2,
.process-head h2,
.projects-head h2,
.premium-cta h2 {
    margin: 0;
    font: 500 clamp(62px, 7.5vw, 112px)/.9 var(--heading);
    letter-spacing: -.065em
}

.editorial em,
.split-heading em,
.process-head em,
.projects-head em,
.premium-cta em {
    font-style: normal;
    color: transparent;
    -webkit-text-stroke: 1px #8c9095
}

.manifesto-copy {
    max-width: 390px
}

.manifesto-copy p {
    font-size: 17px;
    line-height: 1.8;
    color: #555b62
}

.text-arrow {
    display: inline-flex;
    justify-content: space-between;
    gap: 35px;
    margin-top: 25px;
    padding-bottom: 8px;
    border-bottom: 1px solid;
    font-size: 11px;
    letter-spacing: .06em
}

.feature-work {
    display: grid;
    grid-template-columns: 1.6fr .72fr;
    min-height: 820px;
    background: #0c0f13;
    color: #fff
}

.feature-image {
    position: relative;
    min-height: 650px
}

.feature-image img {
    filter: saturate(.5) contrast(1.05)
}

.image-label {
    position: absolute;
    left: 25px;
    bottom: 20px;
    padding: 7px 10px;
    background: rgba(0, 0, 0, .55);
    font-size: 8px;
    letter-spacing: .15em
}

.feature-panel {
    padding: 11vw 5vw;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.feature-panel h2 {
    margin: 30px 0;
    font: 500 clamp(45px, 4.5vw, 72px)/.95 var(--heading);
    letter-spacing: -.05em
}

.feature-panel>p:not(.overline) {
    color: #9299a2
}

.circle-link {
    width: 110px;
    height: 110px;
    margin-top: 40px;
    border: 1px solid #3f454e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 10px;
    transition: .3s
}

.circle-link:hover {
    background: var(--blue);
    border-color: var(--blue);
    transform: rotate(8deg)
}

.split-heading {
    display: grid;
    grid-template-columns: .45fr 1fr;
    align-items: start
}

.split-heading h2 {
    font-size: clamp(58px, 6.5vw, 95px)
}

.principle-grid {
    margin-top: 100px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line)
}

.principle-grid article {
    padding: 35px 40px 20px 0;
    border-right: 1px solid var(--line)
}

.principle-grid article+article {
    padding-left: 40px
}

.principle-grid article:last-child {
    border-right: 0
}

.principle-grid span {
    font-size: 9px;
    color: var(--blue)
}

.principle-grid h3 {
    margin: 55px 0 16px;
    font: 500 25px var(--heading)
}

.principle-grid p {
    font-size: 13px;
    color: #666c73
}

.material-showcase {
    display: grid;
    grid-template-columns: .72fr 1.6fr;
    min-height: 750px;
    background: var(--blue);
    color: #fff
}

.material-copy {
    padding: 10vw 5vw;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.material-copy h2 {
    margin: 20px 0;
    font: 500 clamp(90px, 10vw, 150px)/1 var(--heading);
    letter-spacing: -.07em
}

.material-copy>p:not(.overline) {
    color: #d4e2f8
}

.light-link {
    margin-top: 40px
}

.material-image {
    min-height: 650px
}

.material-image img {
    filter: saturate(.3) contrast(1.05)
}

.process {
    background: #e6e4df
}

.process-head {
    display: flex;
    justify-content: space-between;
    align-items: start
}

.process-head h2 {
    font-size: clamp(56px, 6vw, 90px);
    text-align: right
}

.process-line {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 100px;
    border-top: 1px solid #bfc1c0
}

.process-line article {
    padding: 28px 30px 0 0
}

.process-line article+article {
    padding-left: 30px;
    border-left: 1px solid #bfc1c0
}

.process-line span {
    color: var(--blue);
    font-size: 9px
}

.process-line h3 {
    margin: 65px 0 12px;
    font: 500 26px var(--heading)
}

.process-line p {
    font-size: 12px;
    color: #646970
}

.statement {
    height: 90vh;
    min-height: 700px;
    position: relative;
    display: grid;
    place-items: center;
    color: #fff;
    overflow: hidden
}

.statement-image {
    position: absolute;
    inset: -15%;
    background: url(../assets/placeholder-parallax-taller.png) center/cover;
    background-attachment: fixed
}

.statement-overlay {
    position: absolute;
    inset: 0;
    background: rgba(4, 7, 10, .65)
}

.statement-copy {
    position: relative;
    text-align: center
}

.statement-copy>p {
    margin: 0;
    color: var(--blue);
    font: 400 90px/1 Georgia
}

.statement blockquote {
    margin: 10px 0 35px;
    font: 500 clamp(48px, 6.5vw, 92px)/.92 var(--heading);
    letter-spacing: -.055em
}

.statement blockquote em {
    font-style: normal;
    color: transparent;
    -webkit-text-stroke: 1px #fff
}

.statement-copy span {
    font-size: 8px;
    letter-spacing: .28em
}

.projects-head {
    display: grid;
    grid-template-columns: 1.5fr .5fr;
    gap: 10vw;
    align-items: end
}

.projects-head h2 {
    font-size: clamp(58px, 6.5vw, 95px)
}

.projects-head>p {
    color: #656b72
}

.projects-grid {
    display: grid;
    grid-template-columns: 1.4fr .6fr;
    gap: 20px;
    margin-top: 80px;
    align-items: start
}

.project-card {
    height: 580px;
    position: relative;
    overflow: hidden
}

.project-card.portrait {
    height: 720px
}

.project-card img {
    transition: .7s;
    filter: saturate(.5)
}

.project-card:hover img {
    transform: scale(1.035);
    filter: saturate(1)
}

.project-card div {
    position: absolute;
    inset: auto 0 0;
    padding: 50px 22px 18px;
    background: linear-gradient(transparent, rgba(0, 0, 0, .7));
    color: #fff;
    display: flex;
    justify-content: space-between;
    font-size: 9px;
    letter-spacing: .16em
}

.premium-cta {
    padding: 150px 0;
    background: var(--blue);
    color: #fff
}

.premium-cta h2 {
    margin: 35px 0 50px
}

.premium-cta h2 em {
    -webkit-text-stroke-color: rgba(255, 255, 255, .7)
}

.dark-button {
    background: #0a0c0f;
    color: #fff
}

.site-footer {
    padding: 80px 0 22px;
    background: #090b0e;
    color: #fff
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 1fr .5fr 1fr;
    gap: 60px
}

.footer-top>p,
.footer-top>div {
    color: #838a93;
    font-size: 11px
}

.footer-top nav a,
.footer-top>div a,
.footer-top>div span {
    display: block;
    margin-bottom: 8px
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 70px;
    padding-top: 20px;
    border-top: 1px solid #272b31;
    color: #5f666f;
    font-size: 8px;
    letter-spacing: .18em
}

.whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 40;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #fff;
    color: #111;
    font-weight: 600;
    box-shadow: 0 10px 30px #0003
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: .85s cubic-bezier(.2, .7, .2, 1)
}

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

/* shared inner pages */
.page-hero {
    height: 82vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: flex-end;
    color: #fff;
    overflow: hidden
}

.page-hero-image {
    position: absolute;
    inset: -10%;
    background: url(../assets/placeholder-hero-servicios.png) center/cover
}

.hero-shade {
    background: linear-gradient(180deg, #05070a55, #05070add)
}

.page-hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: 80px
}

.eyebrow,
.section-kicker {
    font-size: 9px;
    letter-spacing: .22em;
    font-weight: 600
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px
}

.eyebrow span {
    width: 38px;
    height: 1px;
    background: var(--blue)
}

.page-hero h1,
.contact-hero h1 {
    margin: 22px 0;
    font: 500 clamp(65px, 8vw, 115px)/.9 var(--heading);
    letter-spacing: -.06em
}

.page-hero h1 em,
.contact-hero h1 em {
    font-style: normal;
    color: transparent;
    -webkit-text-stroke: 1px #fff
}

.page-hero-content>p:last-child {
    max-width: 530px;
    color: #ccd1d7
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 140px
}

.section-kicker {
    display: flex;
    gap: 12px;
    margin-bottom: 55px;
    color: #60666d
}

.section-kicker span {
    color: var(--blue)
}

.service-detail {
    display: grid;
    grid-template-columns: 35px 1.2fr .8fr;
    gap: 60px;
    align-items: center
}

.service-detail.reverse .service-visual {
    grid-column: 3
}

.service-detail.reverse .service-copy {
    grid-column: 2;
    grid-row: 1
}

.service-number {
    align-self: start;
    color: var(--blue);
    font-size: 9px
}

.service-visual {
    height: 630px
}

.service-visual img {
    filter: saturate(.45)
}

.service-copy>span {
    font-size: 8px;
    letter-spacing: .22em;
    color: var(--blue)
}

.service-copy h2,
.contact-info h2 {
    font: 500 50px/.95 var(--heading);
    letter-spacing: -.05em
}

.service-copy p {
    color: #656b72
}

.service-copy ul {
    list-style: none;
    padding: 0;
    margin: 30px 0
}

.service-copy li {
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
    font-size: 12px
}

.arrow-link {
    display: inline-flex;
    gap: 25px;
    padding-bottom: 7px;
    border-bottom: 1px solid;
    font-size: 11px
}

.quality-band {
    padding: 130px 0;
    background: #0b0e12;
    color: #fff
}

.quality-band>.container {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 90px
}

.display {
    margin: 0;
    font: 500 clamp(55px, 6vw, 85px)/.92 var(--heading);
    letter-spacing: -.06em
}

.display span {
    color: transparent;
    -webkit-text-stroke: 1px #858b93
}

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

.quality-grid article {
    padding: 35px;
    border: 1px solid #292e35
}

.quality-grid b {
    color: var(--blue);
    font-size: 9px
}

.quality-grid h3 {
    font: 500 23px var(--heading)
}

.quality-grid p {
    font-size: 12px;
    color: #8c939c
}

.cta-section {
    padding: 120px 0;
    background: var(--blue);
    color: #fff
}

.cta-section h2 {
    font: 500 clamp(55px, 6vw, 90px)/.9 var(--heading);
    letter-spacing: -.05em
}

.cta-section h2 span {
    color: transparent;
    -webkit-text-stroke: 1px #fff
}

.contact-page {
    background: #f3f2ef
}

.contact-hero {
    padding: 220px 0 110px
}

.contact-hero h1 em {
    -webkit-text-stroke-color: #7f858b
}

.contact-main {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 10vw;
    padding-top: 120px;
    padding-bottom: 120px
}

.contact-info>p {
    color: #656b72
}

.contact-method {
    display: grid;
    grid-template-columns: 35px 1fr;
    padding: 22px 0;
    border-top: 1px solid var(--line)
}

.contact-method>span {
    color: var(--blue);
    font-size: 9px
}

.contact-method small {
    font-size: 8px;
    letter-spacing: .18em
}

.contact-method a,
.contact-method p {
    margin: 5px 0;
    font-size: 13px
}

.contact-form {
    padding: 50px;
    background: #0b0e12;
    color: #fff
}

.form-heading {
    padding-bottom: 20px;
    border-bottom: 1px solid #292e35
}

.form-heading span {
    font-size: 8px;
    color: var(--blue);
    letter-spacing: .2em
}

.form-heading h2 {
    font: 500 28px var(--heading)
}

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

.contact-form label {
    display: block;
    margin-top: 18px;
    font-size: 9px;
    letter-spacing: .12em;
    color: #a1a7af
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    display: block;
    margin-top: 8px;
    padding: 14px;
    background: #15191f;
    border: 1px solid #303640;
    color: #fff;
    outline: 0
}

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

.file-field {
    padding: 17px;
    border: 1px dashed #3b424c
}

.file-field input {
    display: none
}

.file-field small {
    float: right
}

.submit {
    width: 100%;
    margin-top: 20px;
    background: var(--blue);
    color: #fff
}

.form-status {
    font-size: 11px;
    color: #8eb9ff
}

.map-section {
    height: 520px;
    position: relative
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(1)
}

.map-card {
    position: absolute;
    left: 6vw;
    top: 50%;
    transform: translateY(-50%);
    padding: 30px;
    background: var(--blue);
    color: #fff
}

.map-card.visible {
    transform: translateY(-50%)
}

.map-card span,
.map-card a {
    font-size: 9px;
    letter-spacing: .15em
}

.map-card h3 {
    font: 500 25px var(--heading)
}

.faq-grid {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 10vw
}

.faq-item {
    border-top: 1px solid var(--line)
}

.faq-item:last-child {
    border-bottom: 1px solid var(--line)
}

.faq-item button {
    width: 100%;
    padding: 24px 0;
    border: 0;
    background: none;
    display: flex;
    justify-content: space-between;
    text-align: left;
    cursor: pointer
}

.faq-item button span {
    color: var(--blue)
}

.faq-item>div {
    display: grid;
    grid-template-rows: 0fr;
    transition: .3s
}

.faq-item>div>p {
    overflow: hidden;
    margin: 0;
    color: #666c73;
    font-size: 12px
}

.faq-item.open>div {
    grid-template-rows: 1fr
}

.faq-item.open>div>p {
    padding-bottom: 22px
}

@media(max-width:900px) {
    .container {
        width: calc(100% - 40px)
    }

    .site-header {
        height: 74px;
        padding: 0 20px
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 7px;
        padding: 10px
    }

    .menu-toggle span {
        width: 25px;
        height: 1px;
        background: #fff
    }

    .main-nav {
        position: fixed;
        top: 74px;
        left: 0;
        right: 0;
        padding: 35px;
        background: #090b0e;
        flex-direction: column;
        align-items: flex-start;
        transform: translateY(-140%);
        transition: .35s
    }

    .main-nav.open {
        transform: none
    }

    .hero-logo p {
        font-size: 34px
    }

    .hero-symbol {
        height: 100px
    }

    .hero-symbol i {
        width: 30px
    }

    .hero-symbol i:first-child {
        height: 70px
    }

    .hero-symbol i:last-child {
        height: 100px
    }

    .hero-scroll {
        display: none
    }

    .section {
        padding: 95px 0
    }

    .manifesto-grid,
    .split-heading,
    .projects-head,
    .contact-main,
    .faq-grid,
    .quality-band>.container {
        grid-template-columns: 1fr;
        gap: 50px
    }

    .feature-work,
    .material-showcase {
        grid-template-columns: 1fr
    }

    .feature-panel,
    .material-copy {
        padding: 80px 35px
    }

    .feature-image,
    .material-image {
        min-height: 520px
    }

    .principle-grid,
    .process-line {
        grid-template-columns: 1fr 1fr
    }

    .process-head {
        display: block
    }

    .process-head h2 {
        text-align: left;
        margin-top: 30px
    }

    .projects-grid {
        grid-template-columns: 1fr 1fr
    }

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

    .service-detail,
    .service-detail.reverse {
        grid-template-columns: 30px 1fr
    }

    .service-detail .service-visual,
    .service-detail.reverse .service-visual,
    .service-detail .service-copy,
    .service-detail.reverse .service-copy {
        grid-column: 2;
        grid-row: auto
    }

    .service-visual {
        height: 480px
    }
}

@media(max-width:560px) {
    .container {
        width: calc(100% - 30px)
    }

    .hero {
        min-height: 640px
    }

    .hero-logo p {
        font-size: 27px
    }

    .hero-logo small {
        letter-spacing: .5em
    }

    .hero-actions {
        flex-direction: column
    }

    .hero-meta span:first-child {
        display: none
    }

    .hero-meta {
        justify-content: center
    }

    .editorial,
    .split-heading h2,
    .process-head h2,
    .projects-head h2,
    .premium-cta h2 {
        font-size: 50px
    }

    .principle-grid,
    .process-line,
    .projects-grid,
    .quality-grid {
        grid-template-columns: 1fr
    }

    .principle-grid article,
    .principle-grid article+article,
    .process-line article,
    .process-line article+article {
        padding: 30px 0;
        border-right: 0;
        border-left: 0;
        border-bottom: 1px solid var(--line)
    }

    .feature-work {
        min-height: auto
    }

    .statement {
        min-height: 600px
    }

    .statement blockquote {
        font-size: 45px
    }

    .project-card,
    .project-card.portrait {
        height: 430px
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 8px
    }

    .page-hero h1,
    .contact-hero h1 {
        font-size: 56px
    }

    .service-detail,
    .service-detail.reverse {
        grid-template-columns: 1fr
    }

    .service-detail .service-number,
    .service-detail .service-visual,
    .service-detail.reverse .service-visual,
    .service-detail .service-copy,
    .service-detail.reverse .service-copy {
        grid-column: 1
    }

    .field-row {
        grid-template-columns: 1fr
    }

    .contact-form {
        padding: 28px
    }

    .map-card {
        left: 15px;
        right: 15px;
        top: auto;
        bottom: 15px;
        transform: none
    }

    .map-card.visible {
        transform: none
    }
}

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

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

    .parallax-layer {
        transform: none !important
    }
}