:root {
    --gw-blue: #263862;
    --gw-blue-dark: #07162d;
    --gw-green: #59837b;
    --gw-green-dark: #436861;
    --gw-gray: #d7d7d5;
    --gw-gray-soft: #eeeeec;
    --gw-text: #6c6f76;
    --gw-white: #ffffff;
    --gw-shadow: 0 18px 34px rgba(18, 28, 45, .22);
    --gw-soft-shadow: 0 10px 24px rgba(18, 28, 45, .15);
    --gw-container: 1920px;
    --gw-gutter: clamp(24px, 5vw, 96px);
    --gw-radial-section: radial-gradient(circle at 50% 50%, #f2f2f0 0%, #e9e9e7 30%, #d5d5d3 72%, #c7c7c5 100%);
}

* { box-sizing: border-box; }

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

input,
textarea,
select,
button,
a {
    outline: none;
}

input:focus,
textarea:focus,
select:focus,
button:focus,
a:focus {
    outline: none;
}

body {
    margin: 0;
    color: var(--gw-text);
    background: #d9d9d7;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 17px;
    line-height: 1.55;
}

.site-header,
main,
.site-footer {
    max-width: 100%;
    overflow-x: clip;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.justifica {
	text-align: justify;
}
.slider-drag-surface {
    touch-action: pan-y;
    user-select: none;
    cursor: grab;
    transition: transform .22s cubic-bezier(.22, 1, .36, 1);
}

.slider-drag-surface.is-dragging {
    cursor: grabbing;
    transition: none;
}

.slider-drag-surface img {
    -webkit-user-drag: none;
    user-select: none;
}

.is-loading {
    overflow: hidden;
}

.site-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background: #fff;
    opacity: 1;
    visibility: visible;
    transition: opacity .55s ease, visibility .55s ease;
}

.site-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-inner {
    width: min(520px, calc(100vw - 64px));
    display: grid;
    justify-items: center;
    gap: 34px;
}

.loader-inner img {
    width: min(430px, 78vw);
    mix-blend-mode: multiply;
}

.loader-track {
    position: relative;
    width: min(360px, 62vw);
    height: 3px;
    overflow: hidden;
    background: #d7d7d5;
}

.loader-track span {
    position: absolute;
    inset: 0 auto 0 0;
    width: 42%;
    background: var(--gw-blue);
    transform-origin: left center;
    animation: loaderProgress 1.15s ease-in-out infinite;
}

@keyframes loaderProgress {
    0% { transform: translateX(-110%) scaleX(.75); }
    55% { transform: translateX(82%) scaleX(1.15); }
    100% { transform: translateX(245%) scaleX(.75); }
}

.container {
    width: 100%;
    max-width: var(--gw-container);
    padding-right: var(--gw-gutter);
    padding-left: var(--gw-gutter);
}

.site-header {
    position: relative;
    z-index: 20;
    background: linear-gradient(180deg, #d6d6d4 0%, #f2f2f1 42%, #ffffff 100%);
    box-shadow: 0 1px 0 rgba(0, 0, 0, .04);
}

.header-shell {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: start;
    min-height: 235px;
    padding-top: 3vh;
    padding-bottom: 3vh;
}

.brand {
    grid-column: 2;
    justify-self: center;
    width: min(520px, 48vw);
}

.brand img { width: 100%; mix-blend-mode: multiply; }

.main-nav {
    position: absolute;
    left: 50%;
    bottom: 28px;
    display: flex;
    gap: 70px;
    transform: translateX(-50%);
}

.main-nav a {
    color: var(--gw-blue);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    transition: color .25s ease;
}

.main-nav a:hover,
.main-nav a.active { color: var(--gw-green); }

.social-links {
    grid-column: 3;
    justify-self: end;
    display: flex;
    gap: 8px;
    padding-top: 8px;
}

.social-links a {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    color: var(--gw-green);
    line-height: 1;
}

.social-links img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.social-links-light a {
    color: rgba(127, 167, 160, .95);
}

.nav-toggle {
    display: none;
    border: 0;
    background: transparent;
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    margin: 6px 0;
    background: var(--gw-blue);
}

.section-pad { padding: 10vh 0; }
.section-pad-sm { padding: 62px 0; }

.eyebrow {
    margin: 0;
    color: var(--gw-blue);
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 8px;
    text-transform: uppercase;
}

.section-title {
    color: var(--gw-blue);
    font-size: clamp(34px, 4.4vw, 54px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-title .light { font-weight: 300; }

.btn-gw {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 145px;
    min-height: 35px;
    border: 0;
    border-radius: 12px;
    color: #fff;
    background: var(--gw-green);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    transition: transform .25s ease, background .25s ease;
}

.btn-gw:hover {
    color: #fff;
    background: var(--gw-green-dark);
    transform: translateY(-2px);
}

.hero {
    --hero-spill: 29px;
    --hero-panel-width: 50%;
    --hero-panel-color: rgba(89, 131, 123, .5);
    position: relative;
    min-height: clamp(600px, 48vw, 920px);
    overflow: visible;
    background: #111;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background-position: center;
    background-size: cover;
}

.hero-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: inherit;
    background-position: inherit;
    background-size: inherit;
    background-repeat: no-repeat;
    filter: grayscale(1);
    transform: scale(1.02);
    animation: heroZoom 16s ease-in-out infinite alternate;
    transform-origin: center center;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: var(--hero-panel-width);
    height: calc(100% + var(--hero-spill));
    background: var(--hero-panel-color);
    pointer-events: none;
    z-index: 1;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0 0 0 var(--hero-panel-width);
    z-index: 1;
}

.hero-about {
    --hero-panel-color: rgba(38, 56, 98, .76);
}

.hero-about .hero-bg {
    background-position: center;
}

.hero-about .hero-bg::before {
    filter: none;
}

.hero-services {
    --hero-panel-color: rgba(89, 131, 123, .58);
}

.hero-services .hero-bg {
    background-position: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: end;
    min-height: clamp(600px, 48vw, 920px);
	padding-bottom: 6vh;
}

.hero-title {
    max-width: calc(var(--hero-panel-width) - var(--gw-gutter));
    color: #fff;
    font-size: clamp(38px, 4.35vw, 68px);
    font-weight: 300;
    line-height: 1.22;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-title strong {
    display: block;
    font-weight: 800;
}

.hero-title span {
    display: block;
}

.hero-services .hero-content {
    padding-bottom: 6vh;
}

.intro-section {
    overflow: hidden;
    background: var(--gw-radial-section);
	padding-top: 7vh !important;
}

.intro-copy {
    max-width: 600px;
    margin-top: 65px;
    color: #83858a;
    font-size: 1.05rem;
}

.intro-copy strong { color: #626770; font-weight: 800; }

.intro-copy .btn-gw {
    padding-right: 32px;
    padding-left: 32px;
}

.intro-image {
    width: min(760px, calc(100% + var(--gw-gutter)));
    max-width: 100%;
    margin-left: auto;
    overflow: visible;
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.intro-image img {
    display: block;
    background: transparent;
    box-shadow: none;
    filter: grayscale(0);
    padding: 0;
}

.image-hover img {
    width: 100%;
    filter: grayscale(1);
    transition: filter .45s ease, transform .55s ease;
}

.image-hover:hover img {
    filter: grayscale(0);
    transform: scale(1.05);
}

.intro-image.image-hover img {
    filter: grayscale(1);
}

.intro-image.image-hover:hover img,
.intro-image.image-hover:focus-within img,
.intro-image.image-hover.is-active img {
    filter: grayscale(0);
    transform: none;
}

@media (min-width: 1200px) {
    .intro-section .row {
        margin-right: calc(var(--gw-gutter) * -1);
    }

    .intro-image {
        max-width: none;
        margin-right: 0;
    }
}

.about-page {
    overflow: hidden;
    background:
        linear-gradient(180deg, #fff 0%, #fff 28%, rgba(255, 255, 255, .72) 40%, rgba(255, 255, 255, 0) 58%),
        var(--gw-radial-section);
    padding: 72px 0 90px;
}

.about-intro {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    align-items: center;
    gap: clamp(34px, 5vw, 76px);
    max-width: 1180px;
    margin: 0 auto 85px;
}

.about-figure {
    display: flex;
    justify-content: center;
}

.about-figure img {
    width: min(420px, 86%);
}

.about-copy {
    color: #8a8b90;
    font-size: 19px;
    line-height: 1.45;
    text-align: justify;
}

.about-copy strong {
    color: #60656f;
    font-weight: 800;
}

.major-stat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin: 0 auto 50px;
    color: var(--gw-blue);
    text-transform: uppercase;
}

.major-stat img {
    width: clamp(82px, 6vw, 112px);
    height: clamp(82px, 6vw, 112px);
    object-fit: contain;
    opacity: .82;
}

.major-stat p {
    margin: 0;
    color: #87898e;
    font-size: clamp(30px, 3.2vw, 48px);
    font-weight: 300;
    letter-spacing: 8px;
}

.major-stat strong {
    color: var(--gw-blue);
    font-weight: 800;
}

.about-gallery {
    display: grid;
    grid-template-columns: 46px 1fr 46px;
    align-items: center;
    gap: 24px;
    max-width: 1360px;
    margin: 0 auto 65px;
}

.about-gallery-stage {
    position: relative;
    min-height: clamp(390px, 32vw, 590px);
}

.about-gallery-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 36%;
    margin: 0;
    background: #fff;
    padding: 14px;
    box-shadow: var(--gw-soft-shadow);
    opacity: .58;
    transform: translate(-50%, -50%) scale(.9);
    transition: transform .45s ease, opacity .45s ease, z-index .2s ease;
}

.about-gallery-card img {
    width: 100%;
    aspect-ratio: 1.05 / 1;
    object-fit: cover;
    filter: grayscale(1);
}

.about-gallery-card.is-prev {
    z-index: 1;
    transform: translate(-105%, -50%) scale(.82);
}

.about-gallery-card.is-next {
    z-index: 1;
    transform: translate(5%, -50%) scale(.82);
}

.about-gallery-card.is-active {
    z-index: 3;
    width: 34%;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.08);
}

.project-stat {
    margin-top: 10px;
    margin-bottom: 48px;
}

.about-stats-wrap {
    position: relative;
    max-width: 1180px;
    margin: 0 auto 90px;
    padding-bottom: 78px;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.about-stat-card {
    position: relative;
    min-height: 215px;
    display: grid;
    align-content: center;
    justify-items: center;
    padding: 28px 20px;
    background: transparent;
    color: var(--gw-blue);
    text-align: center;
    text-transform: uppercase;
}

.about-stat-card:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -30px;
    width: 60px;
    height: min(76%, 527px);
    background: url("../images/separador_iconos.png") center/contain no-repeat;
    opacity: .85;
    pointer-events: none;
    transform: translateY(-50%);
}

.about-stats-shadow {
    position: absolute;
    left: 50%;
    bottom: 10px;
    width: min(92%, 1500px);
    opacity: .72;
    pointer-events: none;
    transform: translateX(-50%);
}

.about-stat-card img {
    width: 82px;
    height: 82px;
    object-fit: contain;
    margin-bottom: 20px;
    opacity: .42;
}

.about-stat-card strong {
    font-size: 27px;
    font-weight: 800;
    line-height: 1;
}

.about-stat-card span {
    color: #9a9ba0;
    font-size: 24px;
    font-weight: 300;
    line-height: 1;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(45px, 6vw, 80px);
    max-width: 1300px;
    margin: 0 auto 68px;
}

.mission-card {
    min-height: 260px;
    padding: 54px 54px;
    color: #fff;
    background: var(--gw-blue);
    box-shadow: var(--gw-shadow);
}

.mission-card img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    margin-bottom: 14px;
    opacity: .65;
}

.mission-card h2 {
    margin: -48px 0 22px 74px;
    font-size: 26px;
    font-weight: 800;
    text-transform: uppercase;
}

.mission-card p {
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-size: 15px;
    line-height: 1.45;
}

.values-heading {
    max-width: 1300px;
    margin: 0 auto 20px;
    color: var(--gw-blue);
    text-transform: uppercase;
}

.values-heading p {
    margin: 0;
    font-size: 28px;
    font-weight: 300;
    line-height: .95;
}

.values-heading h2 {
    margin: 0;
    font-size: 44px;
    font-weight: 800;
    line-height: .95;
}

.values-slider {
    display: grid;
    grid-template-columns: 46px 1fr 46px;
    align-items: center;
    gap: 24px;
    max-width: 1320px;
    margin: 0 auto 88px;
}

.values-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    gap: 22px;
}

.value-card {
    min-height: 400px;
    padding: 18px 18px 24px;
    background: #efefed;
    box-shadow: var(--gw-soft-shadow);
    color: #8b8d93;
    text-align: center;
    transform: scale(.92);
    opacity: .7;
    transition: transform .35s ease, opacity .35s ease, background .35s ease, color .35s ease, box-shadow .35s ease;
}

.value-card img {
    width: 100%;
    aspect-ratio: 1.05 / 1;
    object-fit: cover;
    margin-bottom: 18px;
    filter: grayscale(1);
}

.value-card h3 {
    color: var(--gw-green);
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
}

.value-card p {
    margin: 0;
    font-size: 13px;
    line-height: 1.25;
}

.value-card.is-active,
.value-card:hover {
    z-index: 2;
    color: #fff;
    background: var(--gw-blue);
    opacity: 1;
    transform: scale(1.12);
    box-shadow: var(--gw-shadow);
}

.value-card.is-active img,
.value-card:hover img {
    filter: grayscale(0);
}

.value-card.is-active h3,
.value-card:hover h3 {
    color: #fff;
}

.history-line {
    margin: 0;
    color: var(--gw-blue);
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 500;
    letter-spacing: 9px;
    text-align: center;
    text-transform: uppercase;
}

.history-line span {
    color: #9d9ea3;
    font-weight: 300;
}

.services-page {
    overflow: hidden;
    background: var(--gw-radial-section);
}

.services-intro {
    padding: 48px 0 30px;
    text-align: center;
}

.services-intro .section-title {
    font-size: clamp(28px, 3vw, 45px);
}

.service-blocks {
    max-width: 1920px;
    margin: 0 auto;
}

.service-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: clamp(330px, 27vw, 520px);
}

.service-feature.is-reverse .service-feature-image {
    order: 2;
}

.service-feature.is-reverse .service-feature-copy {
    order: 1;
}

.service-feature-image {
    position: relative;
    overflow: hidden;
}

.service-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .45s ease;
}

.service-feature-image .service-feature-image-default {
    filter: grayscale(1);
}

.service-feature-image .service-feature-image-color {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0;
    filter: none;
}

.service-feature-image:hover .service-feature-image-color,
.service-feature-image:focus .service-feature-image-color,
.service-feature-image:focus-within .service-feature-image-color {
    opacity: 1;
}
.service-feature-image.image-hover:hover img,
.service-feature-image.image-hover:focus img,
.service-feature-image.image-hover:focus-within img {
    filter: none;
    transform: none;
}
.service-feature-image h3 {
    position: absolute;
    z-index: 2;
    right: 28px;
    bottom: 24px;
    margin: 0;
    color: #fff;
    font-size: clamp(24px, 2.2vw, 42px);
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .45);
}

.service-feature-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
    padding: clamp(46px, 6vw, 95px);
    color: #fff;
    background: var(--gw-blue);
}

.service-feature-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 24px;
    object-fit: contain;
    opacity: .75;
}

.service-quote {
    font-weight: 800;
}

.service-feature-copy p {
    max-width: 610px;
    margin: 0 0 20px;
    color: rgba(255, 255, 255, .86);
    font-size: clamp(15px, 1.2vw, 19px);
    line-height: 1.45;
}

.methodology-section {
    padding: 68px 0 65px;
}

.methodology-heading {
    max-width: 1180px;
    margin: 0 auto 28px;
    color: var(--gw-blue);
    text-align: right;
    text-transform: uppercase;
}

.methodology-heading p {
    margin: 0;
    font-size: 24px;
    font-weight: 300;
    line-height: 1;
}

.methodology-heading h2 {
    margin: 0;
    font-size: 40px;
    font-weight: 800;
    line-height: .95;
}

.methodology-cards,
.tool-cards {
    display: grid;
    align-items: center;
    gap: clamp(18px, 2.4vw, 34px);
    max-width: 1180px;
    margin: 0 auto;
    overflow: visible;
}

.methodology-cards {
    grid-template-columns: repeat(3, 1fr);
}

.tool-cards {
    grid-template-columns: repeat(4, 1fr);
}

.mini-card {
    --mini-card-scale: .94;
    position: relative;
    z-index: 1;
    justify-self: center;
    width: min(100%, 300px);
    min-height: 470px;
    padding: 28px 26px 38px;
    background-color: #efefed;
    color: #8b8d93;
    text-align: center;
    box-shadow: var(--gw-soft-shadow);
    transform: scale(var(--mini-card-scale));
    transition:
        transform .36s cubic-bezier(.2, .8, .2, 1),
        box-shadow .36s cubic-bezier(.2, .8, .2, 1),
        background-color .36s ease,
        color .36s ease;
}

.mini-card:hover,
.mini-card:focus-within {
    --mini-card-scale: 1.16;
    z-index: 8;
    color: #fff;
    background-color: var(--gw-blue);
    box-shadow: var(--gw-shadow);
}

.mini-card img {
    width: 100%;
    aspect-ratio: 1 / .9;
    object-fit: cover;
    margin-bottom: 22px;
    filter: grayscale(1);
    transition: filter .36s ease;
}

.mini-card:hover img,
.mini-card:focus-within img {
    filter: grayscale(0);
}

.mini-card h3 {
    color: var(--gw-green);
    font-size: 21px;
    font-weight: 800;
    line-height: 1.05;
    text-transform: uppercase;
    transition: color .36s ease;
}

.mini-card:hover h3,
.mini-card:focus-within h3 {
    color: #fff;
}

.mini-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.42;
}

.tech-section {
    position: relative;
    padding: 73px 0 65px;
}

.services-shadow-separator {
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 1;
    width: min(100%, 1708px);
    opacity: .95;
    pointer-events: none;
    transform: translateX(-50%) rotate(180deg);
    transform-origin: center;
}

.tech-heading {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: 0 auto 36px;
    color: #8a8c91;
    text-align: center;
}

.tech-heading h2 {
    margin: 0 0 16px;
    color: #9b9da1;
    font-size: clamp(28px, 3vw, 45px);
    font-weight: 300;
    letter-spacing: 9px;
    text-transform: uppercase;
}

.tech-heading h2 span {
    color: var(--gw-blue);
    font-weight: 500;
}

.tech-heading p {
    max-width: 980px;
    margin: 0 auto;
}

.step-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    max-width: 1920px;
    margin: 40px auto 0;
}

.step-image {
    height: clamp(310px, 28vw, 530px);
    overflow: hidden;
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
}

.step-copy {
    max-width: 620px;
    padding: clamp(34px, 6vw, 95px);
    color: #7f8288;
}

.step-copy p:first-child {
    margin: 0;
    color: #9a9ca1;
    font-size: 27px;
    font-weight: 300;
    line-height: 1;
    text-transform: uppercase;
}

.step-copy h2 {
    margin: 0 0 30px;
    color: var(--gw-blue);
    font-size: 34px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

.how-section {
    color: #fff;
    background: var(--gw-blue);
    padding: 40px 0;
}

.how-grid {
    display: grid;
    grid-template-columns: .55fr 1fr;
    align-items: center;
    gap: clamp(30px, 6vw, 90px);
}

.how-copy h2 {
    margin: 0 0 24px;
    font-size: 34px;
    font-weight: 800;
    line-height: .95;
    text-transform: uppercase;
}

.how-copy p {
    max-width: 390px;
    margin: 0;
    color: rgba(255, 255, 255, .84);
}

.how-diagram {
    min-height: 360px;
    display: grid;
    place-items: center;
    position: relative;
}

.how-diagram img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.how-diagram > span {
    position: absolute;
    z-index: 2;
    color: #fff;
    font-size: 23px;
    font-weight: 800;
    text-transform: uppercase;
}

.how-ring {
    position: relative;
    width: min(520px, 70vw);
    aspect-ratio: 1;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(14, 27, 57, 1) 0 22%, transparent 23%),
        conic-gradient(from -30deg, rgba(89, 131, 123, .9), rgba(22, 151, 168, .7), rgba(17, 31, 67, .95), rgba(89, 131, 123, .9));
    box-shadow: inset 0 0 45px rgba(255, 255, 255, .13), 0 18px 40px rgba(0, 0, 0, .25);
}

.how-ring b {
    position: absolute;
    color: rgba(255, 255, 255, .86);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.how-ring b:nth-child(1) { left: 8%; top: 45%; }
.how-ring b:nth-child(2) { right: 2%; bottom: 24%; }
.how-ring b:nth-child(3) { right: 11%; top: 23%; }
.how-ring b:nth-child(4) { left: 38%; bottom: 8%; }

.why-section {
    padding: 70px 0 82px;
}

.why-title {
    margin: 0 0 34px;
    color: #8c8e94;
    font-size: clamp(30px, 3.3vw, 50px);
    font-weight: 300;
    letter-spacing: 10px;
    text-align: center;
    text-transform: uppercase;
}

.why-intro {
    display: grid;
    grid-template-columns: .9fr 1fr;
    align-items: center;
    gap: clamp(40px, 7vw, 120px);
    max-width: 1250px;
    margin: 0 auto 44px;
}

.why-intro p {
    color: #83858b;
    font-size: 18px;
    line-height: 1.55;
}

.why-image {
    position: relative;
    overflow: hidden;
}

.why-image img {
    width: 100%;
    aspect-ratio: 1.75 / 1;
    object-fit: cover;
    filter: none;
    transform: none;
    transition: opacity .45s ease;
}

.why-image .why-image-hover {
    position: absolute;
    inset: 0;
    height: 100%;
    opacity: 0;
}

.why-image:hover .why-image-hover,
.why-image:focus .why-image-hover,
.why-image:focus-within .why-image-hover {
    opacity: 1;
    transform: none;
}

.why-image.image-hover:hover img,
.why-image.image-hover:focus img,
.why-image.image-hover:focus-within img {
    filter: none;
    transform: none;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 58px 90px;
    max-width: 1180px;
    margin: 0 auto;
}

.why-card {
    color: #7d8087;
    text-align: center;
}

.why-card img {
    width: 122px;
    height: 122px;
    object-fit: contain;
    margin: 0 auto 20px;
}

.why-card h3 {
    color: var(--gw-green);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}

.why-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.4;
}

.services-band {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: var(--gw-green);
}

.services-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../images/fondo_banner_servicios.jpg") center/cover;
}

.services-band .container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 170px;
}

.services-band h2 {
    margin: 0;
    font-size: 43px;
    font-weight: 800;
    line-height: .95;
    text-transform: uppercase;
}

.services-band small {
    display: block;
    font-size: 23px;
    font-weight: 500;
}

.card-carousel {
    position: relative;
    margin-top: -10px;
    background: var(--gw-radial-section);
    padding-bottom: 2.5vh;
}

.services-slider {
    position: relative;
    overflow: visible;
    clip-path: inset(-150px 0 -150px 0);
    padding: 35px 0 0;
}

.services-viewport {
    overflow: hidden;
    padding: 36px 0 50px;
    clip-path: inset(-80px 0 -100px 0);
}

.services-track {
    display: flex;
    align-items: stretch;
    transition: transform .72s cubic-bezier(.22, 1, .36, 1);
    will-change: transform;
}

.service-slide {
    position: relative;
    flex: 0 0 25%;
    padding: 0 clamp(8px, .8vw, 14px);
    transition: z-index .2s ease;
}

.service-slide:hover,
.service-slide:focus-within {
    z-index: 8;
}

.gw-card {
    height: 100%;
    min-height: clamp(430px, 31vw, 560px);
    padding: clamp(22px, 1.75vw, 32px) clamp(18px, 1.45vw, 28px) clamp(28px, 2vw, 42px);
    border: 0;
    border-radius: 0;
    background: rgba(239, 239, 237, .94);
    box-shadow: var(--gw-soft-shadow);
    text-align: center;
    transform-origin: center center;
    transition: transform .35s ease, box-shadow .35s ease, background .35s ease, color .35s ease;
}

.gw-card:hover,
.gw-card:focus-within {
    color: #fff;
    background: var(--gw-blue);
    box-shadow: 0 24px 42px rgba(18, 28, 45, .28);
    transform: translateY(-12px) scale(1.08);
}

.gw-card .thumb {
    aspect-ratio: 1 / 1;
    margin-bottom: clamp(20px, 1.45vw, 28px);
    overflow: hidden;
    background: #ccc;
    box-shadow: none;
}

.gw-card .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card-heading {
    position: relative;
    min-height: clamp(46px, 3.6vw, 62px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: clamp(16px, 1.4vw, 24px);
    padding: 0 clamp(28px, 2.15vw, 42px);
    text-align: center;
}

.service-card-number {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--gw-green);
    font-size: clamp(25px, 2vw, 36px);
    font-weight: 300;
    line-height: .95;
    transition: color .35s ease;
}

.gw-card h3 {
    color: var(--gw-green);
    font-size: clamp(17px, 1.35vw, 25px);
    font-weight: 300;
    line-height: 1.06;
    letter-spacing: .8px;
    margin: 0;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
}

.gw-card h3 span,
.gw-card h3 strong {
    display: block;
}

.gw-card h3 strong {
    font-weight: 800;
}

.gw-card:hover h3,
.gw-card:focus-within h3,
.gw-card:hover .service-card-number,
.gw-card:focus-within .service-card-number { color: #fff; }

.gw-card p {
    margin: 0;
    color: #777a80;
    font-size: clamp(14px, 1.05vw, 18px);
    line-height: 1.22;
    transition: color .35s ease;
}

.gw-card:hover p,
.gw-card:focus-within p {
    color: rgba(255, 255, 255, .95);
}

.dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.dots span,
.dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #fff;
    opacity: .8;
    transition: transform .2s ease, opacity .2s ease, background .2s ease;
}

.dots button:focus {
    outline: none;
}

.dots button:focus-visible {
    box-shadow: 0 0 0 3px rgba(89, 131, 123, .28);
}

.dots button.is-active {
    background: var(--gw-green);
    opacity: 1;
    transform: scale(1.25);
}

.service-dots {
    margin-top: 8px;
}

.section-shadow-separator {
    position: absolute;
    left: 50%;
    top: 0;
    z-index: 2;
    width: min(100%, 1708px);
    margin: 0;
    opacity: .95;
    pointer-events: none;
    transform: translateX(-50%);
}

.clients-section {
    position: relative;
    padding: clamp(38px, 3.3vw, 56px) 0 42px;
    background: var(--gw-radial-section);
}

.clients-row {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) 46px;
    align-items: center;
    gap: 18px;
    margin-top: 28px;
}

.arrow-btn {
    border: 0;
    color: #8b8d91;
    background: transparent;
    font-size: 48px;
    font-weight: 200;
    line-height: 1;
    transition: color .2s ease, transform .2s ease;
}

.arrow-btn:hover,
.arrow-btn:focus-visible {
    color: var(--gw-green);
    transform: scale(1.08);
}

.clients-viewport {
    overflow: hidden;
    min-width: 0;
    width: 100%;
    padding: 20px 0;
}

.client-logos {
    display: flex;
    align-items: center;
    transition: transform .68s cubic-bezier(.22, 1, .36, 1);
    will-change: transform;
}

.client-slide {
    flex: 0 0 25%;
    display: grid;
    min-height: clamp(112px, 9vw, 160px);
    place-items: center;
    padding: 0 clamp(6px, .7vw, 12px);
}

.client-slide img {
    width: clamp(140px, 76%, 240px);
    max-width: 86%;
    height: auto;
    object-fit: contain;
    filter: grayscale(1);
    opacity: .58;
    transition: filter .25s ease, opacity .25s ease, transform .25s ease;
}

.client-slide:hover img {
    filter: grayscale(0);
    opacity: .95;
    transform: translateY(-2px);
}

.trajectory {
    margin-top: 36px;
    color: var(--gw-green);
    font-size: 21px;
    letter-spacing: 10px;
    text-align: center;
    text-transform: uppercase;
}

.blog-preview {
    background: var(--gw-radial-section);
    padding-bottom: 34px;
}

.blog-slider {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) 46px;
    align-items: center;
    gap: 22px;
    margin-top: 36px;
}

.blog-viewport {
    overflow: hidden;
    min-width: 0;
    padding: 44px 0 92px;
    clip-path: inset(0 0 -120px 0);
}

.blog-track {
    display: flex;
    align-items: stretch;
    transition: transform .72s cubic-bezier(.22, 1, .36, 1);
    will-change: transform;
}

.blog-slider.is-static .blog-track {
    justify-content: center;
    transform: none !important;
}

.blog-slider.is-static .post-slide {
    opacity: 1;
}

.blog-slider.blog-count-1 .post-slide {
    flex-basis: 33.3333%;
}

.blog-slider.blog-count-2 .post-slide {
    flex-basis: 40%;
}

.blog-slider .arrow-btn:disabled {
    visibility: hidden;
}

.post-slide {
    flex: 0 0 33.3333%;
    padding: 0 clamp(10px, 1.2vw, 20px);
    opacity: .52;
    position: relative;
    transition: opacity .35s ease, transform .35s ease, z-index .2s ease;
}

.post-slide.is-active,
.post-slide:hover {
    opacity: 1;
    z-index: 5;
}

.post-card {
    display: block;
    height: 100%;
    padding: 22px 22px 20px;
    background: #f5f5f3;
    box-shadow: var(--gw-soft-shadow);
    color: var(--gw-text);
    transition: transform .35s ease, box-shadow .35s ease;
}

.post-slide.is-active .post-card,
.post-slide:hover .post-card {
    box-shadow: 0 18px 32px rgba(18, 28, 45, .24);
    transform: scale(1.13);
}

.post-image-frame {
    display: block;
    padding: 14px;
    margin-bottom: 20px;
}

.post-card img {
    width: 100%;
    aspect-ratio: 1.45 / 1;
    object-fit: cover;
    filter: grayscale(.15);
}

.post-card-body {
    display: block;
    padding: 0 4px 4px;
}

.post-author-block {
    display: grid;
    gap: 1px;
}

.post-author,
.post-position {
    display: block;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.post-author {
    color: var(--gw-green);
}

.post-position {
    color: #9b9d9f;
    margin-left: 0;
    font-weight: 500;
}

.post-card h3 {
    color: #70747b;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.25;
    margin: 0 0 18px;
    text-transform: uppercase;
}

.post-card p {
    margin: 0;
    font-size: 13px;
}

.post-date {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px;
    color: #9b9d9f;
    font-size: 12px;
    margin-top: 24px;
    text-align: right;
}

.post-date::before {
    content: "";
    height: 1px;
    background: #c8c8c5;
}

.contact-section {
    position: relative;
    overflow: hidden;
    background: #d8ddda;
}

.contact-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../images/fondo_contacto.jpg") center/cover;
}

.contact-section .container {
    position: relative;
    min-height: 560px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 90px;
}

.contact-title {
    color: var(--gw-blue);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 300;
    line-height: 1.05;
    text-transform: uppercase;
}

.contact-title strong {
    display: block;
    font-weight: 800;
}

.contact-form {
    max-width: 520px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin-bottom: 12px;
    border: 1px solid rgba(38, 56, 98, .1);
    border-radius: 0;
    background: rgba(255, 255, 255, .68);
    color: var(--gw-blue);
    font-size: 14px;
    padding: 13px 16px;
    box-shadow: 0 8px 18px rgba(18, 28, 45, .14);
}

.contact-form .is-invalid {
    border-color: #9b3a3a;
    box-shadow: 0 10px 22px rgba(155, 58, 58, .16);
}

.admin-form input,
.admin-form textarea,
.admin-form select {
    width: 100%;
    margin-bottom: 12px;
    border: 1px solid rgba(38, 56, 98, .12);
    border-radius: 0;
    background: rgba(255, 255, 255, .82);
    color: var(--gw-blue);
    font-size: 14px;
    padding: 13px 16px;
    box-shadow: inset 0 1px 5px rgba(0, 0, 0, .1);
}

.contact-form textarea { min-height: 170px; resize: vertical; }
.honeypot { position: absolute; left: -9999px; opacity: 0; }

.form-message {
    min-height: 24px;
    margin-top: 12px;
    font-size: 14px;
    font-weight: 700;
}

.site-footer {
    position: relative;
    overflow: hidden;
    color: rgba(255, 255, 255, .78);
    background: var(--gw-blue-dark);
}

.footer-bg {
    position: absolute;
    inset: 0;
    background: url("../images/footer_bg.jpg") bottom/cover;
    filter: saturate(.85);
}

.footer-content {
    position: relative;
    min-height: 245px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.footer-logo {
    width: 330px;
    mix-blend-mode: screen;
}

.copyright {
    margin: 24px 0 0 38px;
    font-size: 12px;
}

.footer-contact {
    justify-self: end;
    max-width: 480px;
    text-align: left;
    font-size: 14px;
}

.footer-phone-social {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-phone-social p {
    margin: 0;
}

.footer-phone-social .social-links {
    position: static;
    padding-top: 0;
    gap: 5px;
}

.footer-phone-social .social-links a {
    width: 22px;
    height: 22px;
}

.page-hero {
    min-height: 520px;
    position: relative;
    display: flex;
    align-items: end;
    overflow: hidden;
    background: #111;
}

.page-hero .hero-bg { animation: none; }
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 52%;
    background: rgba(38, 56, 98, .78);
    z-index: 1;
}

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

.placeholder-section {
    min-height: 520px;
    background: var(--gw-radial-section);
}

.projects-page {
    overflow: hidden;
    background: var(--gw-radial-section);
}

.projects-heading {
    padding: clamp(42px, 4vw, 70px) 0 clamp(24px, 2.5vw, 42px);
    background: var(--gw-radial-section);
}

.projects-heading .container {
    max-width: 1320px;
}

.projects-heading p {
    margin: 0;
    color: #8b8d93;
    font-size: clamp(25px, 2.4vw, 42px);
    font-weight: 300;
    letter-spacing: 4px;
    line-height: 1;
    text-transform: uppercase;
}

.projects-heading h1 {
    margin: 8px 0 0;
    color: var(--gw-blue);
    font-size: clamp(38px, 4.2vw, 72px);
    font-weight: 800;
    line-height: .95;
    text-transform: uppercase;
}

.projects-strip {
    position: relative;
    aspect-ratio: 1920 / 700;
    min-height: 0;
    overflow: hidden;
}

.projects-strip figure,
.project-strip-panel {
    position: absolute;
    top: 0;
    bottom: 0;
    min-width: 0;
    margin: 0;
    overflow: hidden;
}

.projects-strip figure {
    right: 0;
    left: 0;
}

.project-strip-panel {
    left: 0;
    z-index: 2;
    width: 33.3333%;
}

.projects-strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.projects-strip picture {
    display: block;
    width: 100%;
    height: 100%;
}

.project-strip-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(38, 56, 98, .78);
}

.project-strip-panel div {
    position: absolute;
    right: clamp(20px, 2.5vw, 48px);
    bottom: clamp(28px, 3.5vw, 68px);
    left: clamp(34px, 5vw, 96px);
    z-index: 2;
    color: #fff;
    font-size: clamp(25px, 2.35vw, 45px);
    font-weight: 300;
    line-height: .94;
    text-transform: uppercase;
}

.project-strip-panel strong {
    display: block;
    font-weight: 800;
}

.project-featured {
    padding: clamp(44px, 4vw, 76px) 0 clamp(56px, 5vw, 96px);
}

.project-featured-grid {
    display: grid;
    grid-template-columns: 1fr .92fr;
    align-items: start;
    gap: clamp(46px, 8vw, 145px);
    max-width: 1320px;
}

.project-featured-grid.has-no-art {
    grid-template-columns: minmax(0, 920px);
    justify-content: center;
}

.project-featured-grid.has-no-art .project-featured-copy {
    max-width: 920px;
}

.project-featured-copy {
    max-width: 650px;
}

.project-label {
    margin: 0 0 4px;
    color: #9a9da1;
    font-size: clamp(22px, 2.1vw, 38px);
    font-weight: 300;
    letter-spacing: 6px;
    line-height: 1;
    text-transform: uppercase;
}

.project-featured-copy h2 {
    margin: 0 0 16px;
    color: var(--gw-green);
    font-size: clamp(20px, 2vw, 34px);
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

.project-featured-copy h3 {
    margin: 0;
    color: var(--gw-blue);
    font-size: clamp(27px, 2.8vw, 46px);
    font-weight: 300;
    line-height: 1;
    text-transform: uppercase;
}

.project-line {
    display: block;
    width: 145px;
    height: 1px;
    margin: 16px 0 24px;
    background: rgba(89, 131, 123, .65);
}

.project-description {
    color: #777a80;
    font-size: clamp(17px, 1.25vw, 22px);
    line-height: 1.32;
    text-align: justify;
}

.project-description p {
    margin: 0 0 16px;
}

.project-description p:last-child {
    margin-bottom: 0;
}

.project-description ul,
.project-description ol {
    margin: 0 0 16px;
    padding-left: 28px;
}

.project-description ol {
    list-style-type: disc;
}

.project-description li {
    margin-bottom: 8px;
}

.project-description li[data-list="bullet"],
.article-content li[data-list="bullet"] {
    list-style-type: disc;
}

.project-description li[data-list="ordered"],
.article-content li[data-list="ordered"] {
    list-style-type: decimal;
}

.project-description .ql-ui,
.article-content .ql-ui {
    display: none;
}

.project-description strong {
    color: #62666d;
    font-weight: 700;
}

.project-featured-art {
    position: relative;
    align-self: start;
    padding-top: clamp(18px, 2vw, 34px);
    min-height: clamp(420px, 36vw, 670px);
    perspective: 850px;
    perspective-origin: 50% 48%;
    transform-style: preserve-3d;
    isolation: isolate;
}

.project-featured-art.is-hidden {
    display: none;
}

.project-main-image {
    position: absolute;
    left: 3%;
    top: clamp(18px, 2vw, 34px);
    width: 62%;
    height: auto;
    object-fit: cover;
    transform-origin: center center;
    backface-visibility: hidden;
    transition: transform 1.35s cubic-bezier(.22, 1, .36, 1),
                opacity .75s ease,
                box-shadow 1.35s cubic-bezier(.22, 1, .36, 1),
                filter 1.35s ease,
                z-index 0s linear .65s;
    will-change: transform, opacity;
}

.project-featured-art.has-single-image {
    min-height: clamp(360px, 28vw, 560px);
}

.project-featured-art.has-single-image .project-main-image-default {
    left: 0;
    width: min(86%, 620px);
    transform: translate3d(0, 0, 60px) rotateY(-7deg) scale(1);
}

.project-main-image-default {
    z-index: 3;
    opacity: 1;
    filter: brightness(1);
    box-shadow: 0 24px 34px rgba(10, 20, 38, .28);
    transform: translate3d(0, 0, 80px) rotateY(-10deg) scale(1);
}

.project-main-image-hover {
    z-index: 2;
    opacity: .82;
    filter: brightness(.82);
    box-shadow: 0 14px 24px rgba(10, 20, 38, .16);
    transform: translate3d(80%, 12%, -35px) rotateY(6deg) scale(.68);
}

.project-featured-art.is-swapped .project-main-image-default {
    z-index: 2;
    opacity: .82;
    filter: brightness(.82);
    box-shadow: 0 14px 24px rgba(10, 20, 38, .16);
    transform: translate3d(80%, 12%, -35px) rotateY(6deg) scale(.68);
}

.project-featured-art.is-swapped .project-main-image-hover {
    z-index: 3;
    opacity: 1;
    filter: brightness(1);
    box-shadow: 0 24px 34px rgba(10, 20, 38, .28);
    transform: translate3d(0, 0, 80px) rotateY(-10deg) scale(1);
}

.project-featured-art.has-single-image.is-swapped .project-main-image-default {
    z-index: 3;
    opacity: 1;
    filter: brightness(1);
    box-shadow: 0 24px 34px rgba(10, 20, 38, .28);
    transform: translate3d(0, 0, 60px) rotateY(-7deg) scale(1);
}

.project-accent-image {
    position: absolute;
    right: 0;
    top: 20%;
    z-index: 1;
    width: 40%;
    aspect-ratio: .58 / 1;
    object-fit: cover;
    box-shadow: 0 18px 30px rgba(10, 20, 38, .2);
}

.project-showcase-slider {
    position: relative;
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr) 70px;
    align-items: center;
    max-width: 1540px;
    margin: 0 auto clamp(54px, 5vw, 92px);
}

.project-showcase-viewport {
    overflow: hidden;
    padding: 24px clamp(18px, 2vw, 32px) 40px;
}

.project-showcase-track {
    display: flex;
    align-items: center;
    transition: transform .62s cubic-bezier(.22, 1, .36, 1);
    will-change: transform;
}

.project-showcase-slider.is-static .project-showcase-track {
    justify-content: center;
    transform: none !important;
    transition: none;
}

.project-showcase-slider .project-prev:disabled,
.project-showcase-slider .project-next:disabled {
    visibility: hidden;
}

.project-showcase-slide {
    position: relative;
    flex: 0 0 28%;
    min-width: 0;
    margin: 0 -10% 0 0;
    padding: 0;
    cursor: pointer;
    transition: filter .32s ease, opacity .32s ease, transform .32s ease;
}

.project-showcase-slide img {
    width: 100%;
    height: auto;
    object-fit: contain;
    pointer-events: none;
}

.project-showcase-slide:not(.is-selected) {
    opacity: .9;
}

.project-showcase-slide:hover,
.project-showcase-slide:focus-visible,
.project-showcase-slide.is-selected {
    opacity: 1;
    filter: saturate(1.08);
    transform: translateY(-6px);
}

.project-coverflow {
    position: relative;
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr) 70px;
    align-items: center;
    max-width: 1500px;
    margin: 0 auto clamp(54px, 5vw, 92px);
}

.project-coverflow-stage {
    position: relative;
    min-height: clamp(250px, 23vw, 430px);
    perspective: 1200px;
}

.project-cover-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: clamp(230px, 26vw, 470px);
    height: clamp(210px, 20vw, 380px);
    border: 0;
    padding: 0;
    overflow: hidden;
    color: #fff;
    background: #101827;
    box-shadow: var(--gw-soft-shadow);
    cursor: pointer;
    opacity: 0;
    transform: translate(-50%, -50%) scale(.7);
    transition: transform .45s ease, opacity .45s ease, box-shadow .45s ease;
}

.project-cover-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(.4);
}

.project-cover-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(38, 56, 98, .88), rgba(38, 56, 98, .55) 43%, rgba(38, 56, 98, .12));
}

.project-cover-card span {
    position: absolute;
    left: 38px;
    bottom: 36px;
    z-index: 1;
    max-width: 230px;
    color: #fff;
    font-size: clamp(22px, 2.1vw, 38px);
    font-weight: 300;
    line-height: .95;
    text-align: left;
    text-transform: uppercase;
}

.project-cover-card span::first-line {
    font-weight: 300;
}

.project-cover-card.is-active {
    z-index: 3;
    opacity: 1;
    transform: translate(-50%, -50%) rotateY(0deg) scale(1.04);
    box-shadow: var(--gw-shadow);
}

.project-cover-card.is-prev {
    z-index: 2;
    opacity: .96;
    transform: translate(-104%, -50%) rotateY(-14deg) scale(.94);
}

.project-cover-card.is-next {
    z-index: 2;
    opacity: .96;
    transform: translate(4%, -50%) rotateY(14deg) scale(.94);
}

.project-cover-card.is-far-prev {
    z-index: 1;
    opacity: .86;
    transform: translate(-150%, -50%) rotateY(-22deg) scale(.82);
}

.project-cover-card.is-far-next {
    z-index: 1;
    opacity: .86;
    transform: translate(50%, -50%) rotateY(22deg) scale(.82);
}

.slider-arrow {
    position: relative;
    z-index: 6;
    border: 0;
    color: rgba(66, 69, 76, .62);
    background: transparent;
    font-size: clamp(48px, 4vw, 76px);
    font-weight: 200;
    line-height: 1;
}

.projects-statement {
    margin-bottom: clamp(48px, 4.5vw, 86px);
    text-align: center;
    text-transform: uppercase;
}

.projects-statement p {
    margin: 0;
    color: #9c9da1;
    font-size: clamp(25px, 2.6vw, 48px);
    font-weight: 300;
    letter-spacing: 11px;
    line-height: 1;
}

.projects-statement h2 {
    margin: 16px 0 0;
    color: var(--gw-blue);
    font-size: clamp(33px, 3.7vw, 64px);
    font-weight: 500;
    letter-spacing: 14px;
    line-height: 1;
}

.projects-gallery {
    position: relative;
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr) 70px;
    align-items: center;
    max-width: 1500px;
    margin: 0 auto 32px;
}

.projects-gallery-stage {
    position: relative;
    min-height: clamp(315px, 27vw, 520px);
}

.project-gallery-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: clamp(300px, 37vw, 650px);
    margin: 0;
    padding: 16px;
    background: #fff;
    box-shadow: var(--gw-soft-shadow);
    opacity: .76;
    transform: translate(-50%, -50%) scale(.86);
    transition:
        transform .5s cubic-bezier(.22, 1, .36, 1),
        opacity .42s ease,
        box-shadow .42s ease;
}

.project-gallery-card img {
    width: 100%;
    aspect-ratio: 1.23 / 1;
    object-fit: cover;
    filter: grayscale(1);
    transition: filter .42s ease;
}

.project-gallery-card.is-prev {
    z-index: 1;
    transform: translate(-95%, -50%) scale(.78);
}

.project-gallery-card.is-next {
    z-index: 1;
    transform: translate(-5%, -50%) scale(.78);
}

.project-gallery-card.is-active {
    z-index: 3;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.06);
}

.project-gallery-card.is-active img {
    filter: grayscale(0);
}

.gallery-title {
    margin: 0 0 clamp(52px, 4.5vw, 86px);
    color: var(--gw-blue);
    font-size: clamp(34px, 3.5vw, 62px);
    font-weight: 300;
    letter-spacing: 12px;
    text-align: center;
    text-transform: uppercase;
}

.blog-page-hero,
.article-hero {
    position: relative;
    min-height: clamp(440px, 43vw, 720px);
    background-position: center;
    background-size: cover;
}

.article-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 22, 45, .48), rgba(7, 22, 45, .08) 65%);
}

.blog-page-hero {
    --blog-panel-width: 50%;
    --blog-panel-spill: 29px;
    overflow: visible;
}

.blog-page-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: var(--blog-panel-width);
    height: calc(100% + var(--blog-panel-spill));
    background: rgba(89, 131, 123, .58);
    pointer-events: none;
}

.blog-page-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: clamp(440px, 43vw, 720px);
    flex-direction: column;
    justify-content: end;
    padding-bottom: clamp(62px, 7vw, 118px);
    color: #fff;
}

.blog-page-hero-content > * {
    width: calc(var(--blog-panel-width) - var(--gw-gutter));
    max-width: 100%;
}

.blog-page-hero-content p {
    margin: 0 0 8px;
    font-size: clamp(17px, 1.4vw, 25px);
    font-weight: 300;
    letter-spacing: 7px;
    text-transform: uppercase;
}

.blog-page-hero-content h1 {
    margin: 0;
    font-size: clamp(48px, 6vw, 96px);
    font-weight: 800;
    letter-spacing: 2px;
    line-height: .95;
    text-transform: uppercase;
}

.blog-index-section,
.article-page {
    background: var(--gw-radial-section);
}

.blog-index-section {
    padding: clamp(48px, 4.5vw, 78px) 0 clamp(56px, 5.5vw, 96px);
}

.blog-index-container {
    max-width: 1420px;
}

.blog-index-heading {
    margin-bottom: clamp(26px, 2.5vw, 44px);
}

.blog-index-heading p {
    margin: 0;
    color: var(--gw-green);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 6px;
    text-transform: uppercase;
}

.blog-index-heading h2 {
    margin: 7px 0 0;
    color: var(--gw-blue);
    font-size: clamp(34px, 4vw, 62px);
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.blog-index-featured {
    display: grid;
    grid-template-columns: 1.18fr .82fr;
    min-height: 520px;
    margin-bottom: clamp(32px, 3.5vw, 56px);
    background: #f5f5f3;
    box-shadow: var(--gw-shadow);
}

.blog-index-featured-image {
    display: block;
    min-height: 100%;
    overflow: hidden;
}

.blog-index-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-index-featured-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(42px, 5vw, 78px);
}

.blog-index-date {
    margin: 0 0 9px;
    color: #999b9f;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.blog-index-featured-copy h2 {
    margin: 0 0 14px;
    color: var(--gw-blue);
    font-size: clamp(27px, 2.5vw, 41px);
    font-weight: 800;
    line-height: 1.15;
    text-transform: uppercase;
}

.blog-index-featured-copy > p:not(.blog-index-date) {
    margin: 0 0 16px;
    color: #767980;
    font-size: 16px;
    line-height: 1.55;
}

.blog-index-author {
    display: grid;
    gap: 1px;
    margin-bottom: 16px;
    font-size: 12px;
    line-height: 1.1;
    text-transform: uppercase;
}

.blog-index-author strong {
    color: var(--gw-green);
}

.blog-index-author span {
    color: #999b9f;
}

.blog-read-more {
    align-self: start;
    padding-bottom: 7px;
    border-bottom: 1px solid var(--gw-green);
    color: var(--gw-blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.blog-index-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(28px, 3vw, 48px);
}

.blog-index-card {
    background: #f5f5f3;
    box-shadow: var(--gw-soft-shadow);
}

.blog-index-card-image {
    display: block;
    overflow: hidden;
    padding: 18px 18px 0;
}

.blog-index-card-image img {
    width: 100%;
    aspect-ratio: 1.45 / 1;
    object-fit: cover;
}

.blog-index-card-body {
    padding: 28px 28px 32px;
}

.blog-index-card h3 {
    min-height: 3.6em;
    margin: 0 0 18px;
    color: #70747b;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
}

.blog-index-card-body > p:not(.blog-index-date) {
    margin: 0 0 22px;
    color: #85878c;
    font-size: 14px;
    line-height: 1.45;
}

.blog-empty {
    color: #7f8287;
    font-size: 20px;
}

.article-hero {
    margin-bottom: 0;
}

.article-hero-inner {
    position: relative;
    min-height: clamp(440px, 43vw, 720px);
}

.article-title-panel {
    position: absolute;
    right: var(--gw-gutter);
    bottom: -82px;
    left: var(--gw-gutter);
    z-index: 2;
    max-width: 1440px;
    margin: 0 auto;
    padding: clamp(32px, 4vw, 56px) clamp(28px, 5vw, 78px);
    color: #fff;
    background: rgba(38, 56, 98, .88);
    text-align: center;
    box-shadow: 0 15px 30px rgba(18, 28, 45, .15);
}

.article-title-panel p {
    margin: 0 0 10px;
    color: rgba(255, 255, 255, .75);
    font-size: 13px;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.article-title-panel h1 {
    margin: 0;
    font-size: clamp(28px, 3.6vw, 58px);
    font-weight: 500;
    line-height: 1.15;
    text-transform: uppercase;
}

.article-page {
    padding: 92px 0 clamp(54px, 5vw, 90px);
}

.article-container {
    max-width: 1420px;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 34px;
    color: #86898f;
    font-size: 13px;
    text-align: center;
}

.article-meta span {
    padding: 0 22px;
    border-right: 1px solid #9d9fa3;
}

.article-meta span:last-child {
    border-right: 0;
}

.article-meta strong {
    color: var(--gw-green);
}

.article-lead-grid {
    display: grid;
    grid-template-columns: 1.18fr .82fr;
    align-items: start;
    gap: clamp(50px, 7vw, 105px);
}

.article-lead-grid.is-empty {
    display: block;
    max-width: 780px;
}

.article-page-empty .article-meta {
    justify-content: flex-start;
}

.article-content {
    color: #696d74;
    font-size: clamp(16px, 1.2vw, 19px);
    line-height: 1.55;
}

.article-content .article-excerpt {
    margin-top: 0;
    color: #5f636b;
    font-size: 1.08em;
    font-weight: 600;
}

.article-content h2,
.article-content h3,
.article-content h4 {
    margin: 22px 0 10px;
    color: var(--gw-blue);
    font-weight: 700;
    line-height: 1.2;
}

.article-content h2 { font-size: 1.38em; }
.article-content h3 { font-size: 1.18em; }

.article-content p {
    margin: 0 0 13px;
}

.article-content ul,
.article-content ol {
    margin: 0 0 14px;
    padding-left: 24px;
}

.article-content blockquote {
    margin: 18px 0;
    padding: 22px 28px;
    border-left: 4px solid var(--gw-green);
    color: var(--gw-blue);
    background: rgba(255, 255, 255, .45);
}

.article-featured {
    margin: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.article-featured img {
    width: 100%;
    max-height: 760px;
    object-fit: cover;
}

.article-back-link {
    display: inline-block;
    margin-top: 36px;
    padding-bottom: 7px;
    border-bottom: 1px solid var(--gw-green);
    color: var(--gw-blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.admin-shell {
    max-width: 1120px;
    margin: 60px auto;
    padding: 34px;
    background: #f5f5f3;
    box-shadow: var(--gw-soft-shadow);
}

.admin-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.admin-brand {
    display: inline-block;
    width: min(300px, 56vw);
}

.admin-brand img {
    width: 100%;
    mix-blend-mode: multiply;
}

.admin-login-brand {
    margin-bottom: 34px;
}

.admin-title {
    margin-bottom: 28px;
}

.admin-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.admin-field {
    display: block;
    width: 100%;
    margin-bottom: 0;
    color: var(--gw-blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1.3;
    text-transform: uppercase;
}

.admin-field input,
.admin-field textarea,
.admin-field select {
    display: block;
    margin-top: 8px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 14px;
    border-bottom: 1px solid #ddd;
    vertical-align: top;
}

.admin-editor-group {
    margin-bottom: 42px;
}

.admin-editor {
    height: 430px;
    margin-top: 8px;
    background: rgba(255, 255, 255, .82);
    box-shadow: var(--gw-soft-shadow);
}

.admin-editor .ql-editor {
    min-height: 378px;
    color: var(--gw-blue);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.7;
}

.admin-editor.ql-container {
    display: block;
    clear: both;
}

.admin-editor .ql-toolbar,
.ql-toolbar.ql-snow {
    border-color: rgba(38, 56, 98, .12);
}

.admin-editor.ql-container,
.ql-container.ql-snow {
    border-color: rgba(38, 56, 98, .12);
}

.admin-editor-source {
    display: none;
}

.admin-current-image {
    margin-top: 12px;
    color: #8b8e95;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.admin-current-image img {
    width: 100%;
    max-width: 320px;
    max-height: 220px;
    object-fit: contain;
    margin-top: 10px;
    background: #fff;
    padding: 10px;
    box-shadow: var(--gw-soft-shadow);
}

.admin-project-image-field {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
    align-items: start;
    gap: clamp(18px, 2.5vw, 34px);
    padding: 18px;
    border: 1px solid rgba(38, 56, 98, .09);
    background: rgba(255, 255, 255, .4);
}

.admin-project-image-upload {
    min-width: 0;
}

.admin-project-current-image {
    display: flex;
    min-width: 0;
    min-height: 226px;
    margin-top: 0;
    flex-direction: column;
}

.admin-project-current-image > img {
    width: 100%;
    max-width: none;
    height: 190px;
    max-height: 190px;
    object-fit: contain;
}

.admin-image-placeholder {
    display: grid;
    min-height: 190px;
    margin-top: 10px;
    place-items: center;
    border: 1px dashed rgba(38, 56, 98, .18);
    background: rgba(255, 255, 255, .48);
    color: #9a9da4;
    padding: 20px;
    text-align: center;
}

@media (max-width: 767px) {
    .admin-project-image-field {
        grid-template-columns: 1fr;
    }

    .admin-project-current-image {
        min-height: 0;
    }
}

.admin-remove-file {
    display: flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin-top: 10px;
    color: #8b8e95;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.admin-remove-file input {
    width: auto;
    margin: 0;
    box-shadow: none;
}

.admin-form .filepond--root {
    margin-top: 8px;
    margin-bottom: 0;
    font-family: "Montserrat", Arial, sans-serif;
}

.admin-form .filepond--panel-root {
    border: 1px dashed rgba(38, 56, 98, .26);
    border-radius: 0;
    background: rgba(255, 255, 255, .7);
    box-shadow: 0 10px 24px rgba(18, 28, 45, .1);
}

.admin-form .filepond--drop-label {
    min-height: 190px;
    color: var(--gw-blue);
    font-size: 14px;
}

.admin-form .filepond--label-action {
    color: var(--gw-green);
    font-weight: 800;
    text-decoration-color: var(--gw-green);
}

.admin-form .filepond--item-panel {
    border-radius: 0;
    background: var(--gw-blue);
}

.admin-form .filepond--image-preview-wrapper,
.admin-form .filepond--image-preview {
    border-radius: 0;
}

.admin-author-note {
    min-height: 73px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(38, 56, 98, .12);
    background: rgba(255, 255, 255, .55);
    color: var(--gw-blue);
    padding: 13px 16px;
    box-shadow: 0 8px 18px rgba(18, 28, 45, .08);
}

.admin-author-note span {
    color: #8b8e95;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.admin-author-note strong {
    margin-top: 4px;
    font-size: 15px;
    font-weight: 600;
}

.admin-gallery-manager {
    margin-top: 12px;
    padding: clamp(20px, 3vw, 34px);
    border: 1px solid rgba(38, 56, 98, .1);
    background: rgba(255, 255, 255, .5);
    box-shadow: 0 10px 28px rgba(18, 28, 45, .08);
}

.admin-field-help,
.admin-empty-gallery {
    margin: 10px 0 0;
    color: #7d8189;
    font-size: 13px;
}

.admin-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.admin-gallery-item {
    padding: 12px;
    background: #fff;
    box-shadow: var(--gw-soft-shadow);
}

.admin-gallery-item > img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.admin-gallery-item > label:not(.admin-remove-file) {
    display: block;
    margin-top: 12px;
    color: var(--gw-blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.admin-gallery-item input[type="number"] {
    width: 100%;
    margin-top: 6px;
}

.swal2-popup {
    border-radius: 2px;
    font-family: "Montserrat", Arial, sans-serif;
}

.swal2-title {
    color: var(--gw-blue);
}

.projects-gallery .slider-arrow:disabled {
    visibility: hidden;
}

.reveal {
    --reveal-delay: 0ms;
    --reveal-duration: 820ms;
    --reveal-distance: 42px;
    opacity: 0;
    transform: translate3d(0, var(--reveal-distance), 0);
    transition:
        opacity var(--reveal-duration) cubic-bezier(.22, 1, .36, 1) var(--reveal-delay),
        transform var(--reveal-duration) cubic-bezier(.22, 1, .36, 1) var(--reveal-delay),
        filter var(--reveal-duration) cubic-bezier(.22, 1, .36, 1) var(--reveal-delay);
    will-change: opacity, transform, filter;
}

.reveal[data-animate="fade-left"] {
    transform: translate3d(var(--reveal-distance), 0, 0);
}

.reveal[data-animate="fade-right"] {
    transform: translate3d(calc(var(--reveal-distance) * -1), 0, 0);
}

.reveal[data-animate="zoom-in"] {
    filter: blur(2px);
    transform: scale(.94);
}

.reveal[data-animate="soft-rise"] {
    transform: translate3d(0, 24px, 0) scale(.98);
}

.reveal.is-visible {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) scale(1);
}

.reveal.is-visible.mini-card {
    transform: scale(var(--mini-card-scale));
    transition:
        transform .36s cubic-bezier(.2, .8, .2, 1),
        box-shadow .36s cubic-bezier(.2, .8, .2, 1),
        background-color .36s ease,
        color .36s ease;
}

.reveal.is-visible.mini-card:hover,
.reveal.is-visible.mini-card:focus-within {
    z-index: 8;
    transform: scale(var(--mini-card-scale));
}

.reveal.is-visible.gw-card.featured,
.reveal.is-visible .gw-card.featured {
    transform: translateY(-22px) scale(1.04);
}

@media (prefers-reduced-motion: reduce) {
    .hero-bg::before {
        animation: none;
    }

    .project-main-image {
        transition: none;
    }

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

@keyframes heroZoom {
    from { transform: scale(1.02); }
    to { transform: scale(1.1); }
}

@media (max-width: 991px) {
    .justifica {
        text-align: left;
    }

    .header-shell {
        grid-template-columns: auto 1fr auto;
        min-height: 255px;
        align-items: start;
        padding-top: 45px;
    }

    .brand {
        grid-column: 1 / -1;
        justify-self: center;
        width: min(600px, 72vw);
    }

    .nav-toggle {
        display: block;
        position: absolute;
        top: 22px;
        left: 12px;
    }

    .main-nav {
        top: 205px;
        bottom: auto;
        left: 50%;
        display: flex;
        width: min(340px, 70vw);
        min-width: 0;
        flex-direction: column;
        gap: 0;
        background: rgba(255, 255, 255, .72);
        transform: translateX(-50%);
        text-align: center;
    }

    .main-nav.is-collapsed { display: none; }

    .main-nav a {
        padding: 11px 8px;
        border-bottom: 1px solid rgba(38, 56, 98, .08);
        font-size: 20px;
        letter-spacing: 8px;
    }

    .social-links {
        position: absolute;
        top: 165px;
        right: 5%;
        bottom: auto;
        padding-top: 0;
    }

    .site-header .social-links {
        display: none;
    }

    .social-links a {
        width: 45px;
        height: 45px;
    }

    .hero,
    .hero-content {
        min-height: calc(100vh - 320px);
    }

    .hero { --hero-panel-width: 63%; }

    .hero-content { align-items: end; padding-bottom: 86px; }

    .hero-title {
        max-width: calc(var(--hero-panel-width) - var(--gw-gutter));
        font-size: clamp(32px, 5vw, 46px);
    }

    .main-nav {
        z-index: 10;
    }

    .intro-copy { margin-top: 30px; }
    .services-band .container { align-items: flex-start; flex-direction: column; justify-content: center; gap: 20px; }
    .service-slide { flex-basis: 50%; }
    .gw-card:hover,
    .gw-card:focus-within {
        transform: translateY(-18px) scale(1.06);
    }
    .clients-row { grid-template-columns: 36px 1fr 36px; gap: 14px; }
    .client-slide { flex-basis: 33.3333%; padding: 0 10px; }
    .client-slide img { width: clamp(130px, 82%, 220px); }
    .blog-slider { grid-template-columns: 36px 1fr 36px; gap: 12px; }
    .blog-viewport { padding-bottom: 44px; clip-path: inset(0 0 -64px 0); }
    .post-slide { flex-basis: 33.3333%; }
    .post-slide.is-active .post-card,
    .post-slide:hover .post-card {
        transform: scale(1.07);
    }
    .contact-section .container { grid-template-columns: 1fr; gap: 24px; padding-top: 38px; padding-bottom: 38px; }
    .footer-content { grid-template-columns: 1fr; gap: 24px; padding: 40px 16px; }
    .footer-contact { justify-self: start; }
    .about-page { padding: 48px 0 54px; }
    .about-intro {
        grid-template-columns: 1fr;
        gap: 38px;
        margin-bottom: 42px;
    }
    .about-copy { font-size: 17px; }
    .major-stat p {
        font-size: 30px;
        letter-spacing: 5px;
    }
    .about-gallery {
        grid-template-columns: 36px 1fr 36px;
        gap: 12px;
    }
    .about-gallery-card { width: 48%; }
    .about-gallery-card.is-active { width: 46%; }
    .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .about-stat-card:nth-child(2)::after {
        display: none;
    }
    .mission-grid { grid-template-columns: 1fr; }
    .values-track { grid-template-columns: repeat(2, 1fr); }
    .value-card { transform: scale(.96); }
    .value-card.is-active,
    .value-card:hover { transform: scale(1.04); }
    .service-feature,
    .service-feature.is-reverse {
        grid-template-columns: 1fr;
    }
    .service-feature.is-reverse .service-feature-image,
    .service-feature.is-reverse .service-feature-copy {
        order: initial;
    }
    .methodology-cards,
    .tool-cards,
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .step-section,
    .how-grid,
    .why-intro {
        grid-template-columns: 1fr;
    }
    .how-diagram { min-height: 300px; }
    .projects-strip { aspect-ratio: 1.9 / 1; }
    .projects-strip figure,
    .project-strip-panel {
        min-height: 0;
    }
    .project-strip-panel { width: 48%; }
    .project-featured-grid {
        grid-template-columns: 1fr;
    }
    .project-featured-art {
        min-height: 560px;
    }
    .project-main-image {
        left: 8%;
        width: 48%;
    }
    .project-showcase-slider,
    .projects-gallery {
        grid-template-columns: 42px minmax(0, 1fr) 42px;
    }
    .project-showcase-slide {
        flex-basis: 58%;
        margin-right: -8%;
    }
    .project-cover-card.is-far-prev,
    .project-cover-card.is-far-next {
        opacity: 0;
        pointer-events: none;
    }
    .blog-index-featured,
    .article-lead-grid {
        grid-template-columns: 1fr;
    }
    .blog-index-featured-image {
        min-height: 430px;
    }
    .blog-index-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .article-meta {
        flex-wrap: wrap;
        row-gap: 12px;
    }
    .article-featured {
        max-width: 680px;
    }
}

@media (max-width: 575px) {
    :root { --gw-gutter: 16px; }

    body { font-size: 15px; }
    .section-pad { padding: 32px 0; }
    .header-shell { min-height: 188px; padding-top: 58px; }
    .brand { width: min(340px, 86vw); }
    .nav-toggle { top: 5px; left: 16px; }
    .main-nav {
        top: 183px;
        bottom: auto;
        left: 16px;
        width: min(235px, 62vw);
        min-width: 0;
        transform: none;
    }
    .main-nav a { font-size: 15px; letter-spacing: 6px; }
    .social-links { top: 122px; right: 16px; bottom: auto; gap: 5px; }
    .site-header .social-links { display: none; }
    .social-links a { width: 31px; height: 31px; }
    .hero,
    .hero-content {
        min-height: clamp(460px, 128vw, 520px);
    }
    .hero-bg::before {
        animation: none;
        transform: none;
    }
    .hero { --hero-panel-width: 68%; }
    .hero-content {
        align-items: end;
        padding-bottom: 120px;
    }
    .hero-title {
        max-width: calc(var(--hero-panel-width) - var(--gw-gutter));
        font-size: 25px;
        line-height: 1.16;
    }
    .services-slider { padding-top: 22px; }
    .services-viewport { padding-top: 18px; }
    .service-slide { flex-basis: 100%; padding: 0 24px; }
    .gw-card { min-height: 455px; }
    .client-slide { flex-basis: 100%; min-height: 96px; }
    .client-slide img { width: min(72%, 230px); }
    .clients-section .text-end {
        text-align: center !important;
    }
    .blog-viewport { padding: 28px 0 44px; clip-path: inset(0 0 -54px 0); }
    .blog-slider.blog-count-1 .post-slide { flex-basis: 82%; }
    .blog-slider.blog-count-2 .post-slide { flex-basis: 50%; }
    .blog-preview > .container > .eyebrow {
        font-size: 15px;
        letter-spacing: 5px;
        text-align: center;
    }
    .post-slide { flex-basis: 33.3333%; padding: 0 8px; }
    .post-slide.is-active .post-card,
    .post-slide:hover .post-card {
        transform: none;
    }
    .trajectory { font-size: 15px; letter-spacing: 5px; }
    .footer-logo { width: 250px; }
    .copyright { margin-left: 0; }
    .footer-phone-social { align-items: center; flex-wrap: wrap; }
    .footer-phone-social .social-links {
        position: static;
        right: auto;
        bottom: auto;
    }
    .footer-phone-social .social-links a {
        width: 22px;
        height: 22px;
    }
    .about-page { padding: 40px 0 48px; }
    .about-figure img { width: min(250px, 72%); }
    .about-copy { font-size: 15px; text-align: left; }
    .major-stat {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 28px;
        text-align: center;
    }
    .major-stat img { width: 56px; height: 56px; }
    .major-stat p { font-size: 22px; letter-spacing: 3px; }
    .about-gallery { grid-template-columns: 30px 1fr 30px; }
    .about-gallery-stage { min-height: 300px; }
    .about-gallery-card,
    .about-gallery-card.is-active {
        width: 72%;
    }
    .about-gallery-card.is-prev { transform: translate(-102%, -50%) scale(.74); }
    .about-gallery-card.is-next { transform: translate(2%, -50%) scale(.74); }
    .about-stats-wrap {
        margin-bottom: 42px;
        padding-bottom: 28px;
    }
    .about-stats-grid {
        grid-template-columns: 1fr;
    }
    .about-stat-card::after { display: none; }
    .about-stat-card { min-height: 158px; }
    .mission-card { padding: 34px 28px; }
    .mission-card h2 {
        margin: 0 0 18px;
        font-size: 22px;
    }
    .values-heading p { font-size: 22px; }
    .values-heading h2 { font-size: 36px; }
    .values-slider {
        grid-template-columns: 30px 1fr 30px;
        gap: 10px;
        margin-bottom: 48px;
    }
    .values-track { grid-template-columns: 1fr; }
    .value-card {
        display: none;
        width: min(100%, 340px);
        margin: 0 auto;
        transform: none;
    }
    .value-card.is-current {
        display: block;
        background: #fff;
        opacity: 1;
        transform: none;
        animation: valueCardIn .42s cubic-bezier(.22, 1, .36, 1);
    }
    .value-card.is-current.is-active,
    .value-card.is-current:hover {
        color: #fff;
        background: var(--gw-blue);
        opacity: 1;
        box-shadow: var(--gw-shadow);
        transform: none;
    }
    .value-card.is-current.is-active img,
    .value-card.is-current:hover img {
        filter: grayscale(0);
    }
    .value-card.is-current.is-active h3,
    .value-card.is-current:hover h3 {
        color: #fff;
    }
    .value-card.is-current img {
        cursor: pointer;
    }
    .history-line {
        font-size: 21px;
        letter-spacing: 4px;
    }
    .services-intro { padding: 38px 0 26px; }
    .methodology-section { padding: 46px 0 44px; }
    .tech-section { padding: 52px 0 48px; }
    .service-feature-copy { padding: 36px 24px; }
    .service-feature-image { min-height: 300px; }
    .methodology-cards,
    .tool-cards,
    .why-grid {
        grid-template-columns: 1fr;
    }
    .mini-card,
    .mini-card:hover,
    .mini-card:focus-within {
        transform: none;
    }
    .tech-heading h2,
    .why-title {
        letter-spacing: 4px;
    }
    .how-ring { width: min(330px, 82vw); }
    .why-section { padding: 48px 0 54px; }
    .projects-heading { padding: 34px 0 24px; }
    .projects-heading p { letter-spacing: 3px; }
    .projects-strip { aspect-ratio: 1080 / 1186; }
    .projects-strip figure,
    .project-strip-panel { min-height: 0; }
    .project-strip-panel { display: none; }
    .project-strip-panel div {
        right: 20px;
        left: 24px;
        bottom: 28px;
        font-size: clamp(22px, 7vw, 29px);
    }
    .project-featured { padding: 36px 0 20px; }
    .project-main-image {
        left: 4%;
        width: 54%;
    }
    .project-accent-image {
        width: 42%;
        top: 24%;
    }
    .project-featured-art { min-height: 290px; }
    .project-showcase-slider,
    .projects-gallery {
        grid-template-columns: 30px minmax(0, 1fr) 30px;
    }
    .project-showcase-slide {
        flex-basis: 100%;
        margin-right: 0;
        padding: 0 8px;
    }
    .project-cover-card {
        width: min(72vw, 310px);
        height: 260px;
    }
    .project-cover-card.is-prev {
        transform: translate(-82%, -50%) rotateY(-10deg) scale(.74);
    }
    .project-cover-card.is-next {
        transform: translate(-18%, -50%) rotateY(10deg) scale(.74);
    }
    .projects-statement p,
    .projects-statement h2,
    .gallery-title {
        letter-spacing: 5px;
    }
    .project-gallery-card {
        width: min(76vw, 360px);
        padding: 10px;
    }
    .blog-page-hero,
    .article-hero,
    .blog-page-hero-content,
    .article-hero-inner {
        min-height: 420px;
    }
    .blog-page-hero {
        --blog-panel-width: 63%;
        --blog-panel-spill: 21px;
    }
    .blog-page-hero-content h1 {
        font-size: 44px;
    }
    .blog-index-section {
        padding: 42px 0 52px;
    }
    .blog-index-featured-image {
        min-height: 280px;
    }
    .blog-index-featured-copy {
        padding: 34px 26px 40px;
    }
    .blog-index-grid {
        grid-template-columns: 1fr;
    }
    .blog-index-card h3 {
        min-height: 0;
    }
    .article-title-panel {
        right: 16px;
        bottom: -62px;
        left: 16px;
        padding: 28px 20px;
    }
    .article-title-panel h1 {
        font-size: 24px;
    }
    .article-page {
        padding-top: 108px;
    }
    .article-meta {
        display: grid;
        justify-content: start;
        gap: 5px;
        margin-bottom: 28px;
        text-align: left;
    }
    .article-meta span {
        padding: 0;
        border-right: 0;
    }
    .article-lead-grid {
        gap: 42px;
    }
}

@keyframes valueCardIn {
    from {
        opacity: 0;
        transform: translate3d(22px, 0, 0) scale(.97);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@media (max-width: 575px) and (hover: none) {
    .value-card.is-current:not(.is-active):hover {
        z-index: auto;
        color: #8b8d93;
        background: #fff;
        opacity: 1;
        box-shadow: var(--gw-soft-shadow);
        transform: none;
    }

    .value-card.is-current:not(.is-active):hover img {
        filter: grayscale(1);
    }

    .value-card.is-current:not(.is-active):hover h3 {
        color: var(--gw-green);
    }
}

/* Client requested a tighter rhythm: reduce vertical space between sections and key blocks. */
.section-pad { padding: 1vh 0; }
.section-pad-sm { padding: 32px 0; }

.intro-copy { margin-top: 34px; }

.services-band .container { min-height: 170px; }
.card-carousel { padding-bottom: 2.5vh; }
.services-slider { padding-top: 35px; }
.services-viewport { padding: 36px 0 50px; }
.dots { margin-top: 24px; }

.clients-section { padding: clamp(38px, 3.3vw, 56px) 0 42px; }
.clients-row { margin-top: 28px; }
.trajectory { margin-top: 36px; }

.blog-slider { margin-top: 36px; }
.blog-preview { padding-bottom: 34px; padding-top: 4vh !important; }
.blog-viewport { padding: 44px 0 92px; }

.contact-section .container {
    min-height: 470px;
}

.about-page { padding: 62px 0 64px; }
.about-intro {
    gap: clamp(34px, 5vw, 76px);
    margin-bottom: 34px;
}
.about-figure img { width: min(420px, 86%); }
.major-stat {
    gap: 18px;
    margin-bottom: 25px;
}
.major-stat img {
    width: clamp(82px, 6vw, 112px);
    height: clamp(82px, 6vw, 112px);
}
.about-gallery { margin-bottom: 33px; }
.project-stat { margin-bottom: 24px; }
.about-stats-wrap {
    margin-bottom: 45px;
    padding-bottom: 58px;
}
.about-stats-shadow {
    bottom: 8px;
    width: min(92%, 1500px);
    opacity: .72;
}
.about-stat-card { min-height: 190px; }
.mission-grid { margin-bottom: 35px; }
.values-slider { margin-bottom: 44px; }

.services-intro { padding: 48px 0 30px; }
.methodology-section { padding: 54px 0 50px; }
.methodology-heading { margin-bottom: 28px; }
.tech-section { padding: 56px 0 50px; }
.tech-heading { margin-bottom: 24px; }
.step-section { margin-top: 40px; }
.how-section { padding: 44px 0; }
.why-section { padding: 56px 0 60px; }
.why-title { margin-bottom: 22px; }
.why-intro { margin-bottom: 28px; }

.projects-heading {
    padding: clamp(42px, 4vw, 70px) 0 clamp(24px, 2.5vw, 42px);
}
.project-featured {
    padding: clamp(44px, 4vw, 76px) 0 clamp(56px, 5vw, 96px);
}
.project-featured-copy h2 { margin-bottom: 16px; }
.project-line { margin: 16px 0 24px; }
.project-description p { margin-bottom: 16px; }
.project-showcase-slider,
.project-coverflow {
    margin-bottom: clamp(54px, 5vw, 92px);
}
.projects-statement { margin-bottom: clamp(48px, 4.5vw, 86px); }
.projects-gallery { margin-bottom: 6vh; }
.gallery-title { margin-bottom: clamp(52px, 4.5vw, 86px); }

.blog-index-section {
    padding: clamp(48px, 4.5vw, 78px) 0 clamp(56px, 5.5vw, 96px);
}
.blog-index-heading { margin-bottom: clamp(26px, 2.5vw, 44px); }
.blog-index-featured { margin-bottom: clamp(32px, 3.5vw, 56px); }
.blog-index-author { margin-bottom: 16px; }

.article-page {
    padding: 92px 0 clamp(54px, 5vw, 90px);
}
.article-meta { margin-bottom: 34px; }
.article-back-link { margin-top: 36px; }

@media (max-width: 991px) {
    .section-pad { padding: 48px 0; }
    .contact-section .container {
        gap: 24px;
        padding-top: 38px;
        padding-bottom: 38px;
    }

    .about-page { padding: 42px 0 40px; }
    .about-intro {
        gap: 26px;
        margin-bottom: 24px;
    }
    .about-figure img { width: min(360px, 78%); }
    .about-stats-wrap { margin-bottom: 26px; }

    .project-featured-art { min-height: 440px; }
}

@media (max-width: 575px) {
    .section-pad { padding: 32px 0; }
    .intro-copy { margin-top: 18px; }

    .services-band .container { min-height: 132px; }
    .services-band h2 { font-size: clamp(30px, 9.5vw, 37px); }
    .services-slider { padding-top: 22px; }
    .services-viewport { padding: 22px 0 40px; }
    .service-slide {
        display: flex;
        justify-content: center;
        min-width: 0;
    }
    .gw-card {
        flex: 0 0 100%;
        width: 100%;
        max-width: 330px;
        min-width: 0;
        margin-right: auto;
        margin-left: auto;
        min-height: 430px;
        padding: 26px 22px 34px;
    }
    .gw-card .thumb {
        flex: 0 0 auto;
        width: 100%;
        aspect-ratio: 1 / 1;
    }
    .service-card-heading {
        min-height: 50px;
        margin-bottom: 18px;
        padding: 0 34px;
    }
    .service-card-number {
        font-size: 28px;
    }
    .gw-card h3 {
        font-size: clamp(17px, 4.6vw, 19px);
        letter-spacing: .5px;
    }
    .gw-card p {
        font-size: 15px;
    }

    .clients-section { padding: 34px 0 34px; }
    .clients-row { margin-top: 18px; }
    .trajectory { margin-top: 24px; }

    .blog-slider { margin-top: 22px; }
    .blog-preview { padding-bottom: 22px; }
    .blog-viewport { padding: 28px 0 66px; }

    .contact-section .container {
        min-height: 0;
        padding-top: 34px;
        padding-bottom: 34px;
    }

    .about-page { padding: 34px 0 36px; }
    .about-intro {
        gap: 18px;
        margin-bottom: 22px;
    }
    .about-figure img { width: min(290px, 78%); }
    .major-stat {
        flex-direction: row;
        justify-content: flex-start;
        gap: 10px;
        max-width: 360px;
        margin-right: auto;
        margin-bottom: 16px;
        margin-left: auto;
        padding: 0 10px;
        text-align: left;
    }
    .major-stat img {
        width: 84px;
        height: 84px;
        flex: 0 0 84px;
    }
    .major-stat p {
        font-size: 24px;
        letter-spacing: 2px;
        line-height: 1.1;
    }
    .major-stat strong {
        display: inline;
    }
    .about-gallery { margin-bottom: 20px; }
    .about-stats-wrap {
        margin-bottom: 24px;
        padding-bottom: 38px;
    }
    .about-stats-shadow {
        bottom: 6px;
        width: min(100%, 760px);
        opacity: .65;
    }
    .about-stats-grid {
        gap: 8px;
    }
    .about-stat-card {
        grid-template-columns: 76px 1fr;
        grid-template-rows: auto auto;
        align-content: center;
        justify-items: start;
        min-height: 118px;
        padding: 14px 18px;
        text-align: left;
    }
    .about-stat-card img {
        grid-row: 1 / 3;
        width: 66px;
        height: 66px;
        margin: 0;
    }
    .about-stat-card strong {
        font-size: 28px;
        line-height: .95;
    }
    .about-stat-card span {
        font-size: 24px;
        line-height: 1;
    }
    .mission-grid { margin-bottom: 22px; }
    .values-slider { margin-bottom: 28px; }

    .services-intro { padding: 38px 0 26px; }
    .methodology-section { padding: 46px 0 44px; }
    .tech-section { padding: 52px 0 48px; }
    .tech-heading { margin-bottom: 18px; }
    .step-section { margin-top: 28px; }
    .how-section { padding: 34px 0; }
    .why-section { padding: 48px 0 54px; }
    .why-title { margin-bottom: 16px; }
    .why-intro { margin-bottom: 18px; }

    .projects-heading { padding: 34px 0 24px; }
    .project-featured { padding: 36px 0 20px; }
    .project-featured-art { min-height: 290px; }
    .project-showcase-slider,
    .projects-gallery {
        margin-bottom: 42px;
    }
    .projects-statement { margin-bottom: 42px; }
    .gallery-title { margin-bottom: 46px; }

    .blog-index-section { padding: 42px 0 52px; }
    .blog-index-heading { margin-bottom: 28px; }
    .blog-index-featured { margin-bottom: 34px; }

    .article-page { padding-top: 86px; }
    .article-meta { margin-bottom: 28px; }
}
