:root {
    --charcoal: #1A3960;
    --soft-black: #1A3960;
    --beige: #d8c3a5;
    --gold: #c8a45d;
    --off-white: #f7f2ea;
    --bronze: #8a6a3b;
    --greige: #b8a99a;
    --text: #26221d;
    --muted: #746b62;
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    background: var(--off-white);
    color: var(--text);
    font-family: Inter, Arial, sans-serif;
    line-height: 1.6;
}

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

iframe,
video,
canvas,
svg {
    max-width: 100%;
}

:where(.site-shell, .split-layout, .service-grid, .project-card-grid, .detail-panel, .entry-card, .project-card, .service-tile, .button-row, .primary-nav__list, .site-footer__grid) > * {
    min-width: 0;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    line-height: 1.05;
    font-weight: 700;
    overflow-wrap: anywhere;
}

h1 {
    max-width: 840px;
    font-size: clamp(3rem, 7vw, 7.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 4.8rem);
}

h3 {
    font-size: 1.35rem;
}

p {
    margin: 0;
    overflow-wrap: anywhere;
}

.site-shell {
    width: min(var(--max), calc(100% - clamp(32px, 5vw, 64px)));
    margin-inline: auto;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -4rem;
    z-index: 100;
    padding: .75rem 1rem;
    background: var(--gold);
    color: var(--charcoal);
}

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

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: transparent;
    color: var(--off-white);
    backdrop-filter: blur(0);
    border-bottom: 1px solid transparent;
    transition: background .28s ease, border-color .28s ease, backdrop-filter .28s ease, box-shadow .28s ease;
}

.site-header.is-scrolled {
    background: rgba(26, 57, 96, .72);
    backdrop-filter: blur(18px);
    border-bottom-color: rgba(216, 195, 165, .14);
    box-shadow: 0 14px 42px rgba(0, 0, 0, .16);
}

.menu-is-open .site-header {
    background: rgba(26, 57, 96, .96);
    backdrop-filter: blur(18px);
    border-bottom-color: rgba(216, 195, 165, .14);
    box-shadow: 0 14px 42px rgba(0, 0, 0, .16);
}

.site-header__inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 2rem;
}

.brand-mark__name,
.site-footer__brand {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.55rem;
    color: var(--gold);
}

.custom-logo {
    max-height: 58px;
    width: auto;
}

.primary-nav__list {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: .92rem;
    color: rgba(247, 242, 234, .86);
}

.header-cta {
    min-height: 42px;
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .65rem 1rem;
    color: var(--charcoal);
    background: linear-gradient(135deg, #e4c875, var(--gold));
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 999px;
    font-size: .84rem;
    font-weight: 800;
    box-shadow: 0 12px 34px rgba(200, 164, 93, .2);
    transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}

.header-cta:hover,
.header-cta:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(200, 164, 93, .34);
    filter: saturate(1.08);
}

.primary-nav__list a:hover,
.primary-nav__list .current-menu-item > a,
.primary-nav__list .current_page_item > a {
    color: var(--gold);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    place-items: center;
    gap: 4px;
    border: 1px solid rgba(216, 195, 165, .28);
    background: transparent;
    color: var(--off-white);
    cursor: pointer;
}

.menu-toggle span:not(.screen-reader-text) {
    width: 18px;
    height: 2px;
    display: block;
    background: currentColor;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
}

.home-hero,
.page-hero,
.project-hero {
    position: relative;
    min-height: 82vh;
    display: grid;
    align-items: end;
    overflow: hidden;
    background: var(--charcoal);
    color: var(--off-white);
    padding: 160px 0 88px;
}

.home-hero--reference {
    min-height: 100vh;
    align-items: center;
    padding: 128px 0 170px;
    overflow: visible;
}

.home-hero__media {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(26,57,96,.78), rgba(26,57,96,.3)),
        radial-gradient(circle at 72% 28%, rgba(200,164,93,.24), transparent 30%),
        linear-gradient(135deg, #1A3960 0%, #21466f 48%, #102a49 100%);
}

.home-hero__media::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(26, 57, 96, .14), rgba(26, 57, 96, .24)),
        radial-gradient(circle at center, rgba(200, 164, 93, .14), transparent 42%);
    pointer-events: none;
}

.home-hero__media.has-custom-image,
.page-hero.has-custom-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.home-hero__media::after {
    display: none;
}

.home-hero__content,
.project-hero__content {
    position: relative;
    display: grid;
    gap: 1.5rem;
}

.home-hero--reference .home-hero__content {
    z-index: 2;
    justify-items: center;
    max-width: 950px;
    text-align: center;
    animation: heroRise .8s ease both;
}

@keyframes heroRise {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.home-hero__content p,
.page-hero p,
.project-hero__content p {
    max-width: 680px;
    font-size: 1.08rem;
    color: rgba(247, 242, 234, .78);
}

.page-hero {
    min-height: 48vh;
}

.page-hero--compact {
    min-height: 34vh;
}

.page-hero--projects {
    min-height: 54vh;
}

.project-hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .42;
}

.eyebrow {
    color: var(--gold);
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
}

.button-row .button {
    max-width: 100%;
}

.button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .82rem 1.2rem;
    border: 1px solid var(--gold);
    font-weight: 700;
}

.button--hero {
    min-width: 156px;
    min-height: 50px;
    padding-inline: 1.6rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #e7cc7a, var(--gold));
    box-shadow: 0 16px 42px rgba(200, 164, 93, .28);
    transition: transform .24s ease, box-shadow .24s ease, filter .24s ease;
}

.button--hero:hover,
.button--hero:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 24px 56px rgba(200, 164, 93, .42);
    filter: saturate(1.08);
}

.button--primary {
    background: var(--gold);
    color: var(--charcoal);
}

.button--ghost {
    color: var(--off-white);
}

.project-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
}

.project-share {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
    align-items: center;
    color: rgba(247, 242, 234, .75);
    font-size: .9rem;
}

.project-share span {
    color: var(--greige);
    font-weight: 700;
}

.project-share a {
    color: var(--gold);
    font-weight: 700;
}

.content-section {
    padding: clamp(72px, 8vw, 96px) 0;
}

.breadcrumbs {
    padding: 18px 0;
    border-bottom: 1px solid rgba(138, 106, 59, .16);
    background: rgba(247, 242, 234, .78);
}

.breadcrumbs__inner {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    color: var(--muted);
    font-size: .85rem;
}

.breadcrumbs a {
    color: var(--bronze);
    font-weight: 700;
}

.content-section--dark {
    background: var(--soft-black);
    color: var(--off-white);
}

.home-hero--reference + .content-section--dark {
    padding-top: 230px;
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(280px, .65fr);
    gap: clamp(2rem, 6vw, 6rem);
    align-items: start;
}

.service-grid,
.project-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
    gap: 1rem;
}

.project-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.split-layout > .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.project-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .85rem;
    margin-bottom: 2rem;
}

.project-filter-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .55rem;
}

.project-filter-group span {
    color: var(--muted);
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.project-filter {
    min-height: 38px;
    border: 1px solid rgba(138, 106, 59, .28);
    background: rgba(247, 242, 234, .64);
    color: var(--soft-black);
    padding: .55rem .8rem;
    font: inherit;
    font-size: .9rem;
    cursor: pointer;
}

.project-filter:hover,
.project-filter.is-active {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--charcoal);
}

.project-filter-empty {
    margin-top: 1.5rem;
    color: var(--muted);
}

.service-tile,
.project-card,
.detail-panel,
.entry-card {
    border: 1px solid rgba(138, 106, 59, .24);
    background: rgba(247, 242, 234, .82);
}

.content-section--dark .service-tile {
    background: rgba(247, 242, 234, .05);
    border-color: rgba(216, 195, 165, .18);
}

.service-tile {
    min-height: 180px;
    padding: clamp(1rem, 2vw, 1.35rem);
    display: grid;
    align-content: start;
    gap: .8rem;
    overflow: hidden;
    border-radius: 8px;
}

.service-tile span {
    color: var(--gold);
    font-weight: 800;
    line-height: 1;
}

.service-tile h3 {
    font-size: clamp(1.08rem, 1.7vw, 1.35rem);
    overflow-wrap: anywhere;
}

.service-tile p {
    color: rgba(247, 242, 234, .68);
    font-size: clamp(.86rem, 1.1vw, .92rem);
    line-height: 1.55;
    overflow-wrap: anywhere;
}

.section-heading {
    display: grid;
    gap: .85rem;
    margin-bottom: 2rem;
}

.project-card__media {
    aspect-ratio: 4 / 5;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: var(--soft-black);
    color: var(--gold);
}

.project-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.project-card:hover .project-card__media img {
    transform: scale(1.04);
}

.project-card:focus-within {
    border-color: var(--gold);
}

body.page-template-page-about:not(.menu-is-open) .site-header:not(.is-scrolled) {
    color: var(--charcoal);
}

body.page-template-page-about:not(.menu-is-open) .site-header:not(.is-scrolled) .primary-nav__list {
    color: rgba(26, 57, 96, .82);
}

body.page-template-page-about:not(.menu-is-open) .site-header:not(.is-scrolled) .menu-toggle {
    color: var(--charcoal);
    border-color: rgba(26, 57, 96, .28);
}

.menu-is-open .primary-nav__list {
    color: rgba(247, 242, 234, .9);
}

.home-project-carousel {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -172px;
    z-index: 3;
    overflow: hidden;
    padding: 0 0 18px;
}

.home-project-carousel__track {
    width: max-content;
    display: flex;
    gap: 1.3rem;
    padding-inline: max(24px, calc((100vw - var(--max)) / 2));
    animation: homeProjectMarquee var(--home-carousel-speed, 22s) ease-in-out infinite alternate;
}

.home-project-carousel:hover .home-project-carousel__track {
    animation-play-state: paused;
}

@keyframes homeProjectMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% + 100vw));
    }
}

.home-project-card {
    position: relative;
    width: clamp(280px, 31vw, 430px);
    aspect-ratio: 16 / 10;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    flex: 0 0 auto;
    color: var(--off-white);
    border: 1px solid rgba(236, 205, 132, .22);
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(26, 57, 96, .92), rgba(16, 42, 73, .96)),
        linear-gradient(135deg, rgba(236, 205, 132, .16), transparent);
    box-shadow: 0 24px 62px rgba(0, 0, 0, .3);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.home-project-card:hover,
.home-project-card:focus-visible {
    transform: translateY(-7px) scale(1.015);
    border-color: rgba(236, 205, 132, .52);
    box-shadow: 0 32px 78px rgba(0, 0, 0, .38);
}

.home-project-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.home-project-card:hover img {
    transform: scale(1.05);
}

.home-project-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(26, 57, 96, .08), rgba(8, 20, 35, .86)),
        linear-gradient(90deg, rgba(26, 57, 96, .42), transparent);
}

.home-project-card__body {
    position: relative;
    z-index: 1;
    display: grid;
    padding: 1.2rem;
}

.home-project-card__body strong {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.35rem;
    line-height: 1.05;
}

.about-hero {
    position: relative;
    overflow: hidden;
    padding: 148px 0 70px;
    background:
        radial-gradient(circle at 14% 22%, rgba(216, 195, 165, .24), transparent 26%),
        radial-gradient(circle at 88% 18%, rgba(200, 164, 93, .2), transparent 24%),
        var(--off-white);
    color: var(--charcoal);
}

.about-hero__intro {
    display: grid;
    justify-items: center;
    gap: 1rem;
    text-align: center;
}

.about-hero__intro h1 {
    display: grid;
    gap: .08em;
    max-width: 980px;
    font-size: clamp(3.1rem, 7.7vw, 8.4rem);
    letter-spacing: 0;
}

.text-gradient {
    color: transparent;
    background: linear-gradient(100deg, var(--bronze), var(--gold) 42%, #ead7a2 78%);
    -webkit-background-clip: text;
    background-clip: text;
}

.about-hero__composition {
    position: relative;
    min-height: clamp(360px, 48vw, 620px);
    margin-top: clamp(2.5rem, 5vw, 4.5rem);
}

.about-figure {
    position: absolute;
    bottom: 0;
    margin: 0;
    display: grid;
    place-items: end center;
    isolation: isolate;
}

.about-figure.reveal {
    opacity: 0;
    transform: translateY(28px) scale(.98);
}

.about-figure.reveal.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.about-figure__shape {
    position: absolute;
    inset: auto 0 0;
    z-index: -1;
    border-radius: 42% 58% 46% 54% / 48% 42% 58% 52%;
    box-shadow: 0 30px 90px rgba(26, 57, 96, .12);
}

.about-figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom center;
    filter: drop-shadow(0 28px 42px rgba(26, 57, 96, .18));
}

.about-figure__placeholder,
.founder-card__media em {
    display: grid;
    place-items: center;
    width: 100%;
    min-height: 220px;
    color: rgba(26, 57, 96, .58);
    border: 1px dashed rgba(26, 57, 96, .28);
    background: rgba(255, 255, 255, .38);
    font-size: .78rem;
    font-style: normal;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.about-figure--left {
    left: 0;
    width: min(28vw, 330px);
    height: min(38vw, 460px);
}

.about-figure--left .about-figure__shape {
    height: 76%;
    background: linear-gradient(145deg, rgba(26, 57, 96, .94), rgba(48, 82, 122, .9));
}

.about-figure--center {
    left: 50%;
    width: min(38vw, 480px);
    height: min(49vw, 610px);
    transform: translateX(-50%);
    z-index: 2;
}

.about-figure--center.reveal {
    transform: translateX(-50%) translateY(28px) scale(.98);
}

.about-figure--center.reveal.is-visible {
    transform: translateX(-50%) translateY(0) scale(1);
}

.about-figure--center .about-figure__shape {
    height: 80%;
    background:
        radial-gradient(circle at 72% 24%, rgba(255, 255, 255, .22), transparent 24%),
        linear-gradient(145deg, rgba(200, 164, 93, .96), rgba(138, 106, 59, .9));
}

.about-figure--right {
    right: 0;
    width: min(28vw, 330px);
    height: min(38vw, 460px);
}

.about-figure--right .about-figure__shape {
    height: 76%;
    background: linear-gradient(145deg, rgba(216, 195, 165, .96), rgba(236, 205, 132, .88));
}

.section-heading--center {
    max-width: 820px;
    margin-inline: auto;
    text-align: center;
}

.about-vision {
    background: #fbf8f2;
}

.about-vision__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2.4vw, 1.7rem);
}

.about-vision-card {
    min-height: 260px;
    display: grid;
    align-content: start;
    gap: 1rem;
    padding: clamp(1.4rem, 2.4vw, 2rem);
    border: 1px solid rgba(138, 106, 59, .18);
    background: rgba(255, 255, 255, .58);
    box-shadow: 0 24px 70px rgba(26, 57, 96, .07);
}

.about-vision-card h3 {
    color: var(--charcoal);
}

.about-vision-card p {
    color: rgba(38, 34, 29, .68);
}

.about-line-icon {
    position: relative;
    width: 58px;
    height: 58px;
    display: inline-grid;
    place-items: center;
    color: var(--gold);
}

.about-line-icon::before,
.about-line-icon::after {
    content: "";
    position: absolute;
    border: 2px solid currentColor;
}

.about-line-icon--plan::before {
    width: 42px;
    height: 30px;
    border-radius: 2px;
}

.about-line-icon--plan::after {
    width: 24px;
    height: 14px;
    border-width: 2px 0 0 2px;
    transform: translate(6px, 4px);
}

.about-line-icon--precision::before {
    width: 42px;
    height: 42px;
    border-radius: 50%;
}

.about-line-icon--precision::after {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    box-shadow: 0 0 0 10px rgba(200, 164, 93, .12);
}

.about-line-icon--trust::before {
    width: 38px;
    height: 30px;
    border-radius: 0 0 20px 20px;
    transform: translateY(6px);
}

.about-line-icon--trust::after {
    width: 22px;
    height: 22px;
    border-width: 2px 2px 0 0;
    transform: translateY(-9px) rotate(-45deg);
}

.about-story {
    overflow: hidden;
    background:
        linear-gradient(180deg, var(--off-white), #fffaf0);
}

.about-story__grid {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(360px, 1fr);
    gap: clamp(2.2rem, 6vw, 6rem);
    align-items: center;
}

.about-story__copy {
    display: grid;
    gap: 1.2rem;
}

.about-story__text {
    display: grid;
    gap: 1rem;
    color: rgba(38, 34, 29, .72);
    font-size: clamp(1rem, 1.25vw, 1.08rem);
}

.about-story__text .is-highlighted {
    color: var(--bronze);
    font-weight: 700;
}

.about-leadership {
    display: grid;
    gap: 1rem;
}

.founder-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .85rem;
}

.founder-card {
    min-width: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, .68);
    border: 1px solid rgba(138, 106, 59, .16);
    box-shadow: 0 20px 54px rgba(26, 57, 96, .08);
}

.founder-card__media {
    position: relative;
    min-height: 190px;
    display: grid;
    place-items: end center;
    overflow: hidden;
    background: rgba(216, 195, 165, .2);
}

.founder-card__media span {
    position: absolute;
    inset: 18% 8% 0;
    border-radius: 45% 55% 42% 58% / 40% 45% 55% 60%;
    background: linear-gradient(145deg, rgba(26, 57, 96, .9), rgba(200, 164, 93, .8));
}

.founder-card__media img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 210px;
    object-fit: contain;
    object-position: bottom center;
}

.founder-card__body {
    display: grid;
    gap: .3rem;
    padding: .95rem;
}

.founder-card__body h3 {
    color: var(--charcoal);
    font-size: 1.05rem;
}

.founder-card__body p {
    color: var(--gold);
    font-size: .82rem;
    font-weight: 800;
    line-height: 1.35;
}

.founder-card__body small {
    color: rgba(38, 34, 29, .64);
    font-size: .78rem;
    line-height: 1.45;
}


.project-card__body,
.detail-panel,
.empty-panel,
.entry-card {
    padding: 1.35rem;
}

.project-card__body {
    display: grid;
    gap: .75rem;
}

.project-card__body p,
.detail-panel,
.empty-panel,
.content-flow {
    color: var(--muted);
}

.empty-panel {
    grid-column: 1 / -1;
    display: grid;
    gap: .5rem;
    border: 1px solid rgba(138, 106, 59, .24);
    background: rgba(247, 242, 234, .82);
}

.content-flow {
    display: grid;
    gap: 1.2rem;
    font-size: 1.05rem;
}

.project-meta-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .75rem;
    margin-bottom: 1rem;
}

.project-meta-strip div {
    display: grid;
    gap: .25rem;
    padding: 1rem;
    border: 1px solid rgba(138, 106, 59, .24);
    background: rgba(216, 195, 165, .14);
}

.project-meta-strip span {
    color: var(--bronze);
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.project-meta-strip strong {
    color: var(--soft-black);
}

.project-map-section {
    padding: 72px 0;
    background: var(--charcoal);
}

.project-map {
    position: relative;
    min-height: 540px;
    overflow: hidden;
    border: 1px solid rgba(216, 195, 165, .22);
    background: linear-gradient(135deg, #1A3960, #21466f 52%, #102a49);
}

.project-map__art {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.map-line {
    fill: none;
    stroke: var(--gold);
    stroke-width: 2;
    stroke-dasharray: 12 16;
    opacity: .72;
}

.map-line--secondary {
    stroke: var(--beige);
    opacity: .3;
}

.map-zone {
    fill: rgba(200, 164, 93, .08);
    stroke: rgba(200, 164, 93, .18);
}

.map-zone--soft {
    fill: rgba(216, 195, 165, .06);
}

.project-pin {
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.project-pin__dot {
    width: 18px;
    height: 18px;
    display: block;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 8px rgba(200, 164, 93, .14), 0 0 34px rgba(200, 164, 93, .8);
}

.project-pin__panel {
    position: absolute;
    left: 22px;
    top: 50%;
    min-width: 220px;
    display: grid;
    gap: .35rem;
    padding: .85rem;
    color: var(--off-white);
    background: rgba(26, 57, 96, .88);
    border: 1px solid rgba(216, 195, 165, .2);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-50%) translateX(-8px);
    transition: opacity .25s ease, transform .25s ease;
}

.project-pin:hover .project-pin__panel,
.project-pin:focus .project-pin__panel {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.project-pin__panel em {
    color: var(--greige);
    font-style: normal;
    font-size: .86rem;
}

.project-map__empty {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 1.5rem;
    text-align: center;
    color: var(--greige);
}

.project-map__empty[hidden] {
    display: none;
}

.project-map__empty--filtered {
    z-index: 7;
    pointer-events: none;
    color: rgba(248, 244, 235, .76);
}

.project-map-noscript {
    position: absolute;
    inset: auto 36px 36px auto;
    z-index: 13;
    width: min(360px, calc(100% - 72px));
    display: grid;
    gap: .75rem;
    padding: 1rem;
    color: var(--off-white);
    background: rgba(26, 57, 96, .82);
    border: 1px solid rgba(236, 205, 132, .24);
}

.project-map-noscript ul {
    display: grid;
    gap: .35rem;
    margin: 0;
    padding-left: 1.1rem;
}

.project-map-noscript a {
    color: var(--gold);
    font-weight: 700;
}

.project-map-section--cinematic {
    padding: 86px 0;
    background:
        radial-gradient(circle at 20% 15%, rgba(216, 195, 165, .12), transparent 28%),
        radial-gradient(circle at 78% 70%, rgba(138, 106, 62, .18), transparent 32%),
        #1A3960;
}

.mapWrap {
    position: relative;
    height: 84vh;
    min-height: 720px;
    overflow: hidden;
    border: 1px solid rgba(236, 205, 132, .18);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, 0)),
        radial-gradient(circle at 50% 25%, rgba(236, 205, 132, .16), transparent 32%),
        linear-gradient(135deg, #1A3960, #153150 62%, #102a49);
    box-shadow: 0 28px 80px rgba(0, 0, 0, .38);
    isolation: isolate;
}

.mapWrap::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(236, 205, 132, .1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(236, 205, 132, .1) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(circle at center, black 0 46%, transparent 78%);
    opacity: .58;
}

.mapWrap .corner {
    position: absolute;
    width: 70px;
    height: 70px;
    z-index: 6;
    border-color: rgba(236, 205, 132, .62);
    border-style: solid;
    pointer-events: none;
}

.mapWrap .tl {
    top: 22px;
    left: 22px;
    border-width: 1px 0 0 1px;
}

.mapWrap .tr {
    top: 22px;
    right: 22px;
    border-width: 1px 1px 0 0;
}

.mapWrap .bl {
    bottom: 22px;
    left: 22px;
    border-width: 0 0 1px 1px;
}

.mapWrap .br {
    right: 22px;
    bottom: 22px;
    border-width: 0 1px 1px 0;
}

.mapTitle3d {
    position: absolute;
    top: 28px;
    left: 50%;
    z-index: 9;
    transform: translateX(-50%) perspective(600px) rotateX(18deg);
    transform-style: preserve-3d;
    pointer-events: none;
}

.mapTitle3d span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: .45rem 1.15rem;
    color: var(--gold);
    border: 1px solid rgba(236, 205, 132, .34);
    background: rgba(26, 57, 96, .72);
    box-shadow:
        0 16px 34px rgba(0, 0, 0, .24),
        inset 0 1px 0 rgba(255, 255, 255, .12);
    text-transform: uppercase;
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .12em;
    white-space: nowrap;
    text-shadow: 0 2px 0 rgba(0, 0, 0, .22);
}

.ambient {
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(22px);
    opacity: .45;
}

.ambient.a1 {
    width: 380px;
    height: 380px;
    top: 10%;
    left: 12%;
    background: rgba(236, 205, 132, .16);
}

.ambient.a2 {
    width: 420px;
    height: 420px;
    right: 6%;
    bottom: 8%;
    background: rgba(138, 106, 62, .22);
}

.mapStage {
    position: absolute;
    inset: 7% 7% 7%;
    transform-style: preserve-3d;
    perspective: 1300px;
    transition: transform .35s ease;
    z-index: 1;
}

.mapPlane {
    position: absolute;
    inset: 10% 6%;
    transform: rotateX(46deg) rotateZ(-5deg);
    transform-style: preserve-3d;
    border: 1px solid rgba(236, 205, 132, .36);
    background: linear-gradient(135deg, rgba(216, 195, 165, .13), rgba(255, 255, 255, .035));
    box-shadow: 0 34px 80px rgba(0, 0, 0, .42), inset 0 0 72px rgba(236, 205, 132, .08);
    animation: planeFloat 6.8s ease-in-out infinite;
}

@keyframes planeFloat {
    0%,
    100% {
        translate: 0 0;
    }

    50% {
        translate: 0 -10px;
    }
}

.gridFloor,
.contour,
.mapSvg {
    position: absolute;
    inset: 0;
}

.gridFloor {
    background-image:
        linear-gradient(rgba(236, 205, 132, .2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(236, 205, 132, .2) 1px, transparent 1px);
    background-size: 46px 46px;
    opacity: .52;
}

.contour {
    background:
        radial-gradient(ellipse at 28% 38%, transparent 0 18%, rgba(236, 205, 132, .14) 18.4% 18.9%, transparent 19.3%),
        radial-gradient(ellipse at 70% 55%, transparent 0 22%, rgba(236, 205, 132, .13) 22.4% 22.9%, transparent 23.3%);
    opacity: .92;
}

.mapSvg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.blueprint line,
.blueprint circle {
    fill: none;
    stroke: rgba(236, 205, 132, .34);
    stroke-width: 1.25;
}

.zone {
    fill: none;
    stroke: rgba(236, 205, 132, .58);
    stroke-width: 2.4;
    stroke-dasharray: 10 12;
}

.zoneFill {
    opacity: .9;
}

.route {
    fill: none;
    stroke: url(#routeGrad);
    stroke-width: 5;
    stroke-linecap: round;
    stroke-dasharray: 14 18;
    filter: drop-shadow(0 0 14px rgba(236, 205, 132, .54));
    animation: routeMove 2.6s linear infinite;
}

@keyframes routeMove {
    to {
        stroke-dashoffset: -64;
    }
}

.legend {
    position: absolute;
    left: 36px;
    bottom: 36px;
    z-index: 8;
    display: grid;
    gap: .55rem;
    min-width: 190px;
    padding: 1rem;
    color: rgba(248, 244, 235, .78);
    background: rgba(26, 57, 96, .58);
    border: 1px solid rgba(236, 205, 132, .16);
    backdrop-filter: blur(12px);
}

.legend .row {
    display: flex;
    align-items: center;
    gap: .6rem;
    width: 100%;
    padding: .2rem 0;
    font-size: .78rem;
    letter-spacing: .04em;
    color: rgba(248, 244, 235, .78);
    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
    transition: color .2s ease, transform .2s ease;
}

.legend .row:hover,
.legend .row:focus-visible {
    color: var(--off-white);
    transform: translateX(3px);
}

.legend .sw {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(236, 205, 132, .35);
    box-shadow: 0 0 0 5px rgba(236, 205, 132, .08);
}

.legend .active .sw {
    background: var(--gold);
    box-shadow: 0 0 24px rgba(236, 205, 132, .7);
}

.legend .active {
    color: var(--gold);
}

.compass {
    position: absolute;
    top: 108px;
    right: 46px;
    z-index: 8;
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    color: rgba(248, 244, 235, .74);
    border: 1px solid rgba(236, 205, 132, .34);
    border-radius: 50%;
    background: rgba(26, 57, 96, .64);
}

.compass .needle {
    width: 2px;
    height: 46px;
    background: linear-gradient(var(--gold), rgba(236, 205, 132, .1));
    transform-origin: 50% 50%;
    transform: rotate(18deg);
    transition: transform .12s linear;
}

.compass .n,
.compass .s {
    position: absolute;
    font-size: .62rem;
    font-weight: 700;
}

.compass .n {
    top: 9px;
}

.compass .s {
    bottom: 9px;
}

.pinsLayer {
    position: absolute;
    inset: 20% 14% 18% 14%;
    z-index: 5;
    pointer-events: none;
}

.pin {
    position: absolute;
    z-index: 5;
    width: 1px;
    height: 1px;
    padding: 0;
    border: 0;
    color: inherit;
    background: transparent;
    text-align: left;
    cursor: pointer;
    transform: translate(-50%, -100%);
    pointer-events: auto;
}

.pin[hidden] {
    display: none;
}

.pinFloat {
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translateX(-50%);
    animation: pinFloat 3.8s ease-in-out infinite;
}

@keyframes pinFloat {
    0%,
    100% {
        translate: 0 0;
    }

    50% {
        translate: 0 -9px;
    }
}

.pinDot {
    position: relative;
    display: block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #f1d891;
    box-shadow: 0 0 0 8px rgba(236, 205, 132, .12), 0 0 34px rgba(236, 205, 132, .82);
}

.pinDot::after {
    content: "";
    position: absolute;
    inset: -15px;
    border: 1px solid rgba(236, 205, 132, .36);
    border-radius: 50%;
    animation: pulseRing 2.4s ease-out infinite;
}

@keyframes pulseRing {
    to {
        opacity: 0;
        transform: scale(1.7);
    }
}

.pinStem {
    display: block;
    width: 2px;
    height: 46px;
    margin: 0 auto;
    background: linear-gradient(rgba(236, 205, 132, .85), rgba(236, 205, 132, 0));
}

.pinShadow {
    display: block;
    width: 46px;
    height: 14px;
    margin-left: -14px;
    border-radius: 50%;
    background: rgba(26, 57, 96, .36);
    filter: blur(6px);
}

.pinLabel {
    position: absolute;
    left: 26px;
    bottom: 38px;
    width: 230px;
    display: grid;
    gap: .22rem;
    padding: .8rem .9rem;
    color: var(--off-white);
    background: rgba(26, 57, 96, .74);
    border: 1px solid rgba(236, 205, 132, .18);
    box-shadow: 0 18px 42px rgba(0, 0, 0, .25);
    backdrop-filter: blur(12px);
    opacity: .72;
    transform: translateX(-8px);
    transition: opacity .25s ease, transform .25s ease, border-color .25s ease;
}

.pin:hover .pinLabel,
.pin:focus-visible .pinLabel,
.pin.active .pinLabel {
    opacity: 1;
    transform: translateX(0);
    border-color: rgba(236, 205, 132, .52);
}

.pin .idx,
.activePreview .tag {
    color: var(--gold);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.pinMobileIndex {
    display: none;
}

.pin-title {
    color: var(--off-white);
    font-family: var(--font-heading);
    font-size: 1.02rem;
    line-height: 1.2;
}

.pin .cat,
.pin .view {
    color: rgba(248, 244, 235, .68);
    font-size: .76rem;
}

.pin .view {
    color: rgba(236, 205, 132, .9);
    font-weight: 700;
}

.activePreview {
    position: absolute;
    top: 50%;
    right: 42px;
    z-index: 12;
    width: min(380px, calc(100% - 84px));
    overflow: hidden;
    color: var(--off-white);
    background: rgba(26, 57, 96, .78);
    border: 1px solid rgba(236, 205, 132, .22);
    box-shadow: 0 28px 70px rgba(0, 0, 0, .45);
    backdrop-filter: blur(16px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-44%) translateX(18px);
    transition: opacity .28s ease, transform .28s ease;
}

.activePreview[hidden] {
    display: none;
}

.activePreview.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(-50%) translateX(0);
}

.activePreview .close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    padding: 0;
    color: var(--off-white);
    border: 1px solid rgba(236, 205, 132, .2);
    border-radius: 50%;
    background: rgba(26, 57, 96, .38);
    cursor: pointer;
}

.activePreview .img {
    min-height: 178px;
    background:
        linear-gradient(135deg, rgba(236, 205, 132, .18), rgba(236, 205, 132, .02)),
        linear-gradient(135deg, #254b74, #1A3960);
    background-size: cover;
    background-position: center;
}

.activePreview .body {
    display: grid;
    gap: .7rem;
    padding: 1.25rem;
}

.activePreview h3 {
    margin: 0;
    font-size: clamp(1.45rem, 3vw, 2.1rem);
    line-height: 1.05;
}

.activePreview p {
    margin: 0;
    color: rgba(248, 244, 235, .72);
}

.activePreview .cta {
    width: fit-content;
    color: var(--gold);
    font-weight: 700;
}

@media (prefers-reduced-motion: reduce) {
    .mapPlane,
    .route,
    .pinFloat,
    .pinDot::after {
        animation: none;
    }
}

.before-after,
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.before-after img,
.gallery-grid img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-lightbox-trigger {
    width: 100%;
    display: block;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}

.before-after figure,
.gallery-grid figure {
    margin: 0;
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(26, 57, 96, .92);
}

.gallery-lightbox[hidden] {
    display: none;
}

.gallery-lightbox img {
    max-width: min(1100px, 94vw);
    max-height: 84vh;
    object-fit: contain;
}

.gallery-lightbox__close {
    position: fixed;
    right: 24px;
    top: 20px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(216, 195, 165, .35);
    background: var(--charcoal);
    color: var(--off-white);
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
}

.lightbox-is-open {
    overflow: hidden;
}

.menu-is-open {
    overflow-x: hidden;
}

.before-after figcaption {
    margin-top: .55rem;
    color: var(--beige);
    font-weight: 700;
}

.project-cta {
    padding: 86px 0;
    background: var(--charcoal);
    color: var(--off-white);
}

.project-next-prev {
    padding: 34px 0;
    border-top: 1px solid rgba(138, 106, 59, .16);
    border-bottom: 1px solid rgba(138, 106, 59, .16);
    background: rgba(216, 195, 165, .1);
}

.project-next-prev__inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.project-next-prev__inner div:last-child {
    text-align: right;
}

.project-next-prev a {
    display: grid;
    gap: .25rem;
}

.project-next-prev span {
    color: var(--bronze);
    font-size: .76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.project-next-prev strong {
    color: var(--soft-black);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.35rem;
}

.project-cta__inner {
    display: grid;
    gap: 1.25rem;
    justify-items: start;
}

.project-cta__inner h2 {
    max-width: 760px;
}

.services-hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    padding: 132px 0 64px;
    color: var(--off-white);
    background:
        radial-gradient(1100px 620px at 76% 18%, rgba(200, 164, 93, .13), transparent 62%),
        radial-gradient(900px 620px at 10% 86%, rgba(11, 17, 24, .68), transparent 68%),
        linear-gradient(180deg, #1A3960 0%, #102544 55%, #0B1118 100%);
}

.services-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .44;
    background:
        linear-gradient(rgba(200, 164, 93, .045) 1px, transparent 1px) 0 0 / 120px 120px,
        linear-gradient(90deg, rgba(200, 164, 93, .045) 1px, transparent 1px) 0 0 / 120px 120px;
    mask-image: radial-gradient(ellipse 80% 72% at 62% 50%, #000 34%, transparent 82%);
}

.services-hero__grid {
    position: relative;
    z-index: 1;
    width: min(1680px, calc(100% - clamp(32px, 5vw, 80px)));
    margin-inline: auto;
    display: grid;
    grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
    gap: 44px;
    align-items: start;
}

.services-hero__copy {
    position: relative;
    z-index: 5;
    padding-top: 38px;
    display: grid;
    gap: 24px;
}

.services-hero__copy h1 {
    max-width: 360px;
    font-size: clamp(2.65rem, 4.05vw, 4.65rem);
    overflow-wrap: normal;
}

.services-hero__copy h1 span {
    color: var(--gold);
    font-style: italic;
}

.services-hero__copy > p {
    max-width: 340px;
    color: rgba(245, 240, 232, .66);
}

.services-hero__copy .button {
    width: fit-content;
}

.services-hero__promise {
    margin-top: 18px;
    padding-top: 28px;
    display: grid;
    gap: 10px;
    border-top: 1px solid rgba(245, 240, 232, .1);
}

.services-hero__promise h2 {
    max-width: 320px;
    font-size: 1.65rem;
}

.services-hero__promise p {
    max-width: 320px;
    color: rgba(245, 240, 232, .54);
    font-size: .92rem;
}

.service-map {
    position: relative;
    z-index: 2;
    height: min(900px, 78vh);
    min-height: 690px;
}

.service-map__glow {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 78%;
    height: 70%;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(200, 164, 93, .18), rgba(200, 164, 93, .04) 42%, transparent 72%);
    filter: blur(40px);
    transform: translate(-50%, -50%);
}

.service-map__frame {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 72%;
    max-width: 1120px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    transform: translate(-50%, -50%);
    box-shadow:
        0 60px 120px rgba(0, 0, 0, .58),
        0 0 0 1px rgba(200, 164, 93, .2),
        inset 0 0 0 1px rgba(245, 240, 232, .04);
}

.service-map__frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.86) contrast(1.05) brightness(.83) hue-rotate(-6deg);
    transition: transform .6s cubic-bezier(.2, .7, .2, 1);
}

.service-map__frame::before,
.service-map__frame::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.service-map__frame::before {
    z-index: 2;
    background:
        linear-gradient(180deg, rgba(26, 57, 96, .55), rgba(16, 37, 68, .18) 35%, rgba(11, 17, 24, .55)),
        radial-gradient(ellipse at 70% 35%, rgba(226, 194, 129, .16), transparent 60%);
}

.service-map__frame::after {
    z-index: 3;
    box-shadow: inset 0 0 160px 30px rgba(11, 17, 24, .68);
}

.service-map__tick {
    position: absolute;
    z-index: 4;
    width: 18px;
    height: 18px;
    border: 1px solid var(--gold);
}

.service-map__tick--tl { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.service-map__tick--tr { top: 0; right: 0; border-left: 0; border-bottom: 0; }
.service-map__tick--bl { bottom: 0; left: 0; border-right: 0; border-top: 0; }
.service-map__tick--br { right: 0; bottom: 0; border-left: 0; border-top: 0; }

.service-map__connectors {
    position: absolute;
    inset: 0;
    z-index: 6;
    overflow: visible;
    pointer-events: none;
}

.service-map__connector {
    fill: none;
    stroke: url(#decorvaaServiceConnector);
    stroke-width: 1.1;
    stroke-linecap: round;
    filter: drop-shadow(0 0 4px rgba(226, 194, 129, .45));
}

.service-map__dot {
    fill: #e2c281;
    filter: drop-shadow(0 0 8px rgba(226, 194, 129, .95));
}

.service-map__items {
    position: absolute;
    inset: 0;
    z-index: 7;
}

.service-map__item {
    position: absolute;
    width: 210px;
}

.service-map__label {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--off-white);
    transition: transform .3s ease;
}

.service-map__item--left .service-map__label {
    flex-direction: row-reverse;
    text-align: right;
}

.service-map__label:hover {
    transform: translateY(-3px);
}

.service-map__icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    background: radial-gradient(circle at 30% 30%, rgba(200, 164, 93, .18), rgba(16, 37, 68, .72));
    backdrop-filter: blur(8px);
}

.service-map__icon svg {
    width: 19px;
    height: 19px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.3;
}

.service-map__body {
    display: grid;
    gap: 6px;
}

.service-map__body strong {
    font-family: "Playfair Display", Georgia, serif;
    color: var(--off-white);
    font-size: 1rem;
    line-height: 1.12;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.service-map__body span {
    color: rgba(245, 240, 232, .62);
    font-size: .72rem;
    line-height: 1.55;
}

.services-mobile-list {
    display: none;
    background: var(--off-white);
}

.services-mobile-list__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.services-mobile-list article {
    padding: 1.25rem;
    border: 1px solid rgba(138, 106, 63, .22);
    background: rgba(255, 255, 255, .62);
}

.services-mobile-list h3 {
    color: var(--charcoal);
    font-size: 1.2rem;
}

.services-mobile-list p {
    margin-top: .6rem;
    color: var(--muted);
    font-size: .92rem;
}

.services-trust {
    padding: 54px 0;
    color: var(--off-white);
    background: #0B1118;
    border-top: 1px solid rgba(216, 195, 165, .12);
}

.services-trust__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr auto;
    gap: 2rem;
    align-items: center;
}

.services-trust h2 {
    font-size: clamp(2rem, 3vw, 3.8rem);
}

.services-trust p {
    color: rgba(245, 240, 232, .62);
}

.contact-luxury-hero {
    position: relative;
    overflow: hidden;
    padding: 168px 0 96px;
    color: var(--off-white);
    background:
        radial-gradient(900px 520px at 78% 12%, rgba(200, 164, 93, .16), transparent 62%),
        radial-gradient(760px 480px at 8% 88%, rgba(11, 17, 24, .58), transparent 66%),
        linear-gradient(180deg, #1A3960 0%, #102544 58%, #0B1118 100%);
}

.contact-luxury-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .42;
    background:
        linear-gradient(rgba(216, 195, 165, .045) 1px, transparent 1px) 0 0 / 110px 110px,
        linear-gradient(90deg, rgba(216, 195, 165, .045) 1px, transparent 1px) 0 0 / 110px 110px;
    mask-image: radial-gradient(ellipse 72% 70% at 50% 48%, #000 36%, transparent 86%);
}

.contact-luxury-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 1.25rem;
    justify-items: start;
}

.contact-luxury-hero h1 {
    max-width: 860px;
    font-size: clamp(2.7rem, 6vw, 6.4rem);
}

.contact-luxury-hero p:not(.eyebrow) {
    max-width: 680px;
    color: rgba(245, 240, 232, .72);
    font-size: 1.08rem;
}

.contact-luxury-section {
    padding: clamp(72px, 8vw, 108px) 0;
    color: var(--off-white);
    background:
        linear-gradient(180deg, #0B1118, #1A3960 58%, #0B1118);
}

.contact-luxury-grid {
    display: grid;
    grid-template-columns: minmax(0, .86fr) minmax(420px, 1fr);
    gap: clamp(2rem, 6vw, 5rem);
    align-items: start;
}

.contact-luxury-info {
    display: grid;
    gap: 1.4rem;
}

.contact-luxury-info h2 {
    max-width: 560px;
    font-size: clamp(2rem, 4vw, 4.3rem);
}

.contact-luxury-info > p {
    max-width: 560px;
    color: rgba(216, 195, 165, .78);
}

.contact-luxury-list {
    display: grid;
    gap: .8rem;
    margin-top: .6rem;
}

.contact-luxury-list a,
.contact-luxury-list div {
    display: grid;
    gap: .25rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(200, 164, 93, .22);
}

.contact-luxury-list span {
    color: var(--gold);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.contact-luxury-list strong {
    color: var(--off-white);
    font-size: 1.04rem;
    font-weight: 600;
}

.contact-whatsapp {
    width: fit-content;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .85rem 1.2rem;
    color: #0B1118;
    background: linear-gradient(135deg, #e7cc7a, var(--gold));
    border: 1px solid rgba(245, 240, 232, .24);
    font-weight: 800;
    transition: transform .24s ease, box-shadow .24s ease;
    box-shadow: 0 18px 42px rgba(200, 164, 93, .18);
}

.contact-whatsapp:hover,
.contact-whatsapp:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 26px 62px rgba(200, 164, 93, .34);
}

.contact-socials {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: .5rem;
}

.contact-socials a {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    color: var(--gold);
    border: 1px solid rgba(200, 164, 93, .35);
    border-radius: 50%;
    background: rgba(26, 57, 96, .42);
    transition: color .24s ease, border-color .24s ease, box-shadow .24s ease, transform .24s ease;
}

.contact-socials a:hover,
.contact-socials a:focus-visible {
    color: #e7cc7a;
    border-color: rgba(231, 204, 122, .78);
    box-shadow: 0 0 28px rgba(200, 164, 93, .35);
    transform: translateY(-2px);
}

.contact-socials svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.35;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-luxury-card {
    position: relative;
    overflow: hidden;
    padding: clamp(1.25rem, 3vw, 2.2rem);
    border: 1px solid rgba(200, 164, 93, .28);
    background:
        linear-gradient(180deg, rgba(26, 57, 96, .74), rgba(11, 17, 24, .78)),
        radial-gradient(circle at 84% 10%, rgba(200, 164, 93, .12), transparent 34%);
    box-shadow: 0 34px 90px rgba(0, 0, 0, .34);
    backdrop-filter: blur(14px);
}

.contact-luxury-card::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 164, 93, .9), transparent);
}

.contact-luxury-card h2 {
    margin-bottom: 1rem;
    color: var(--off-white);
    font-size: clamp(1.8rem, 3vw, 3rem);
}

.contact-luxury-card .contact-form {
    position: relative;
    z-index: 1;
}

.contact-form {
    display: grid;
    gap: 1rem;
}

.search-form {
    max-width: 680px;
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1rem;
}

.search-form label {
    flex: 1 1 260px;
}

.search-field {
    width: 100%;
    min-height: 46px;
    border: 1px solid rgba(216, 195, 165, .35);
    background: rgba(247, 242, 234, .95);
    color: var(--soft-black);
    padding: .8rem 1rem;
    font: inherit;
}

.contact-form__trap {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

.contact-form label {
    display: grid;
    gap: .4rem;
    font-weight: 700;
    color: var(--soft-black);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    border: 1px solid rgba(138, 106, 59, .3);
    background: #fff;
    padding: .85rem 1rem;
    font: inherit;
}

.contact-form--luxury {
    gap: .95rem;
}

.contact-form--luxury label {
    color: rgba(245, 240, 232, .82);
    font-size: .78rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.contact-form--luxury input,
.contact-form--luxury textarea,
.contact-form--luxury select {
    color: var(--off-white);
    border-color: rgba(200, 164, 93, .28);
    background: rgba(11, 17, 24, .36);
    outline: none;
    transition: border-color .22s ease, box-shadow .22s ease, background .22s ease;
}

.contact-form--luxury select {
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--gold) 50%),
        linear-gradient(135deg, var(--gold) 50%, transparent 50%);
    background-position:
        calc(100% - 18px) calc(50% - 3px),
        calc(100% - 12px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.contact-form--luxury option {
    color: #0B1118;
    background: var(--off-white);
}

.contact-form--luxury input:focus,
.contact-form--luxury textarea:focus,
.contact-form--luxury select:focus {
    border-color: rgba(231, 204, 122, .86);
    background: rgba(11, 17, 24, .58);
    box-shadow: 0 0 0 3px rgba(200, 164, 93, .14);
}

.contact-form--luxury .button {
    margin-top: .25rem;
    color: #0B1118;
    background: linear-gradient(135deg, #e7cc7a, var(--gold));
    border-color: rgba(245, 240, 232, .2);
    transition: transform .24s ease, box-shadow .24s ease, filter .24s ease;
}

.contact-form--luxury .button:hover,
.contact-form--luxury .button:focus-visible {
    transform: translateY(-2px);
    filter: saturate(1.08);
    box-shadow: 0 22px 54px rgba(200, 164, 93, .28);
}

.form-notice {
    padding: .9rem 1rem;
    border: 1px solid rgba(138, 106, 59, .3);
    background: rgba(216, 195, 165, .18);
    color: var(--soft-black);
}

.form-notice--success {
    border-color: rgba(73, 128, 91, .42);
    background: rgba(73, 128, 91, .12);
}

.form-notice--error {
    border-color: rgba(148, 57, 57, .42);
    background: rgba(148, 57, 57, .12);
}

.site-footer {
    position: relative;
    overflow: hidden;
    padding: clamp(72px, 8vw, 108px) 0 28px;
    color: rgba(245, 240, 232, .76);
    background:
        radial-gradient(900px 460px at 10% 0%, rgba(200, 164, 93, .13), transparent 60%),
        radial-gradient(760px 420px at 88% 84%, rgba(26, 57, 96, .52), transparent 66%),
        linear-gradient(180deg, #1A3960 0%, #102544 42%, #0B1118 100%);
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .38;
    background:
        linear-gradient(rgba(216, 195, 165, .045) 1px, transparent 1px) 0 0 / 120px 120px,
        linear-gradient(90deg, rgba(216, 195, 165, .045) 1px, transparent 1px) 0 0 / 120px 120px;
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 44%, #000 30%, transparent 82%);
    mask-image: radial-gradient(ellipse 80% 80% at 50% 44%, #000 30%, transparent 82%);
}

.site-footer__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(260px, 1.35fr) minmax(150px, .72fr) minmax(220px, 1fr) minmax(240px, 1fr);
    gap: clamp(2rem, 4.5vw, 4.5rem);
    align-items: start;
}

.site-footer__brand-col,
.site-footer__col,
.site-footer__contact {
    display: grid;
    gap: 1rem;
}

.site-footer__brand-link {
    width: fit-content;
}

.site-footer__brand-col .custom-logo {
    max-height: 66px;
}

.site-footer__brand-col p {
    max-width: 330px;
    color: rgba(245, 240, 232, .72);
}

.site-footer__brand-col > span {
    width: fit-content;
    padding-top: 1rem;
    color: var(--gold);
    border-top: 1px solid rgba(200, 164, 93, .34);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.2rem;
}

.site-footer__col h2 {
    color: var(--gold);
    font-family: Inter, Arial, sans-serif;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.site-footer__col ul {
    display: grid;
    gap: .55rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer__col a,
.site-footer__contact-list span {
    width: fit-content;
    color: rgba(245, 240, 232, .76);
}

.site-footer__col a,
.site-footer__bottom a,
.site-footer__menu a {
    position: relative;
    transition: color .24s ease;
}

.site-footer__col a::after,
.site-footer__bottom a::after,
.site-footer__menu a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -.18rem;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .24s ease;
}

.site-footer__col a:hover,
.site-footer__col a:focus-visible,
.site-footer__bottom a:hover,
.site-footer__bottom a:focus-visible,
.site-footer__menu a:hover,
.site-footer__menu a:focus-visible {
    color: var(--gold);
}

.site-footer__col a:hover::after,
.site-footer__col a:focus-visible::after,
.site-footer__bottom a:hover::after,
.site-footer__bottom a:focus-visible::after,
.site-footer__menu a:hover::after,
.site-footer__menu a:focus-visible::after {
    transform: scaleX(1);
}

.site-footer__contact-list {
    display: grid;
    gap: .65rem;
}

.site-footer__whatsapp {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: .75rem 1rem;
    color: #0B1118;
    background: linear-gradient(135deg, #e7cc7a, var(--gold));
    border: 1px solid rgba(245, 240, 232, .22);
    font-weight: 800;
    box-shadow: 0 16px 38px rgba(200, 164, 93, .16);
    transition: transform .24s ease, box-shadow .24s ease;
}

.site-footer__whatsapp:hover,
.site-footer__whatsapp:focus-visible {
    color: #0B1118;
    transform: translateY(-2px);
    box-shadow: 0 24px 58px rgba(200, 164, 93, .3);
}

.site-footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
    margin-top: .25rem;
}

.site-footer__social:empty {
    display: none;
}

.site-footer__social a {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: var(--gold);
    border: 1px solid rgba(200, 164, 93, .34);
    border-radius: 50%;
    background: rgba(26, 57, 96, .38);
    transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease, color .24s ease;
}

.site-footer__social a:hover,
.site-footer__social a:focus-visible {
    color: #e7cc7a;
    border-color: rgba(231, 204, 122, .82);
    box-shadow: 0 0 28px rgba(200, 164, 93, .34);
    transform: translateY(-2px);
}

.site-footer__social svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.35;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.site-footer__bottom {
    position: relative;
    z-index: 1;
    margin-top: clamp(48px, 6vw, 74px);
    padding-top: 22px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 1.5rem;
    border-top: 1px solid rgba(216, 195, 165, .15);
    color: rgba(245, 240, 232, .56);
    font-size: .85rem;
}

.site-footer__menu {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}

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

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

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

    .home-project-carousel__track {
        animation: none;
    }
}

@media (max-width: 1100px) {
    .site-header__inner {
        gap: 1.2rem;
    }

    .primary-nav__list {
        gap: .85rem;
        font-size: .86rem;
    }

    .project-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-story__grid {
        grid-template-columns: 1fr;
    }

    .about-leadership {
        max-width: 820px;
        margin-inline: auto;
    }

    .services-hero__grid {
        grid-template-columns: 1fr;
    }

    .services-hero__copy {
        max-width: 760px;
        padding-top: 0;
    }

    .services-hero__copy h1 {
        max-width: none;
    }

    .service-map {
        height: 700px;
        min-height: 700px;
    }

    .service-map__frame {
        width: 70%;
        max-width: 760px;
    }

    .service-map__item {
        width: 185px;
    }

    .services-trust__grid {
        grid-template-columns: 1fr;
    }

    .contact-luxury-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .site-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2.5rem 2rem;
    }

    .site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-header__inner {
        position: relative;
        min-height: 68px;
        gap: 1rem;
    }

    .menu-toggle {
        display: grid;
        margin-left: auto;
    }

    .header-cta {
        min-height: 38px;
        padding: .55rem .8rem;
        font-size: .76rem;
    }

    .primary-nav {
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        display: none;
        padding: 1rem 0 1.2rem;
        background: rgba(26, 57, 96, .96);
        border-top: 1px solid rgba(216, 195, 165, .14);
    }

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

    .primary-nav__list {
        width: min(var(--max), calc(100% - 40px));
        margin-inline: auto;
        display: grid;
        gap: .2rem;
    }

    .primary-nav__list a {
        display: block;
        padding: .85rem 0;
    }

    .split-layout,
    .service-grid,
    .project-card-grid,
    .project-next-prev__inner,
    .project-meta-strip,
    .before-after,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .site-shell {
        width: min(var(--max), calc(100% - 32px));
    }

    .home-hero,
    .page-hero,
    .project-hero {
        min-height: 68vh;
        padding-top: 128px;
    }

    .home-hero--reference {
        min-height: 100svh;
        padding: 116px 0 148px;
    }

    .home-hero--reference .home-hero__content {
        width: min(100%, 720px);
        gap: 1rem;
    }

    .home-hero--reference h1 {
        font-size: clamp(2.35rem, 11vw, 4.4rem);
    }

    .home-hero--reference .home-hero__content p:not(.eyebrow) {
        font-size: .98rem;
    }

    .home-project-carousel {
        bottom: -138px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .home-hero--reference + .content-section--dark {
        padding-top: 180px;
    }

    .home-project-carousel::-webkit-scrollbar {
        display: none;
    }

    .home-project-carousel__track {
        animation: none;
        padding-inline: 20px;
        width: max-content;
    }

    .home-project-card {
        width: min(82vw, 360px);
        border-radius: 22px;
    }

    .about-hero {
        padding: 124px 0 52px;
    }

    .about-hero__composition {
        min-height: auto;
        display: grid;
        grid-template-columns: .86fr 1fr .86fr;
        align-items: end;
        gap: .55rem;
        overflow: visible;
        padding: 0;
    }

    .about-figure {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        width: auto;
        height: min(58vw, 360px);
        transform: none;
        min-width: 0;
    }

    .about-figure.reveal,
    .about-figure--center.reveal,
    .about-figure.reveal.is-visible,
    .about-figure--center.reveal.is-visible {
        transform: none;
    }

    .about-figure--center {
        height: min(66vw, 430px);
        min-width: 0;
    }

    .about-vision__grid {
        grid-template-columns: 1fr;
    }

    .about-vision-card {
        min-height: auto;
    }

    .founder-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        overflow-x: visible;
        padding-bottom: 0;
    }

    .founder-card__media {
        min-height: 170px;
    }

    .founder-card__media img {
        height: 180px;
    }

    .content-section {
        padding: 66px 0;
    }

    .project-map {
        min-height: 460px;
    }

    .project-pin__panel {
        min-width: 180px;
    }

    .project-map-section--cinematic {
        padding: 56px 0;
    }

    .mapWrap {
        height: 76vh;
        min-height: 620px;
    }

    .mapStage {
        inset: 11% 6% 10%;
    }

    .mapPlane {
        inset: 12% -4%;
        transform: rotateX(38deg) rotateZ(-4deg);
    }

    .legend {
        display: none;
    }

    .mapTitle3d {
        top: 22px;
        max-width: calc(100% - 120px);
    }

    .mapTitle3d span {
        min-height: 34px;
        padding: .4rem .8rem;
        font-size: .62rem;
        white-space: normal;
        text-align: center;
    }

    .project-map-noscript {
        inset: auto 20px 20px;
        width: auto;
    }

    .compass {
        top: 82px;
        right: 22px;
        width: 58px;
        height: 58px;
    }

    .compass .needle {
        height: 34px;
    }

    .pinsLayer {
        inset: 24% 14% 22% 14%;
    }

    .pinLabel {
        display: none;
    }

    .pinMobileIndex {
        position: absolute;
        left: 50%;
        bottom: 58px;
        display: grid;
        place-items: center;
        min-width: 30px;
        height: 24px;
        padding: 0 .35rem;
        color: var(--charcoal);
        background: var(--gold);
        border: 1px solid rgba(255, 255, 255, .2);
        font-size: .66rem;
        font-weight: 800;
        transform: translateX(-50%);
        box-shadow: 0 8px 22px rgba(0, 0, 0, .24);
        pointer-events: none;
    }

    .activePreview {
        top: auto;
        right: 20px;
        bottom: 20px;
        left: 20px;
        width: auto;
        transform: translateY(18px);
    }

    .activePreview.show {
        transform: translateY(0);
    }

    .project-next-prev__inner div:last-child {
        text-align: left;
    }

    .services-hero {
        padding: 112px 0 42px;
    }

    .services-hero__grid {
        width: min(var(--max), calc(100% - 32px));
    }

    .service-map {
        height: 640px;
        min-height: 640px;
    }

    .service-map__frame {
        width: 68%;
        max-width: 680px;
    }

    .service-map__item {
        width: 170px;
    }

    .service-map__label {
        gap: 10px;
    }

    .service-map__icon {
        flex-basis: 34px;
        width: 34px;
        height: 34px;
    }

    .service-map__icon svg {
        width: 16px;
        height: 16px;
    }

    .service-map__body strong {
        font-size: .82rem;
    }

    .service-map__body span {
        display: none;
    }

    .contact-luxury-hero {
        padding: 132px 0 72px;
    }

    .contact-luxury-section {
        padding: 64px 0;
    }

    .contact-socials a {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 640px) {
    .site-footer {
        padding-top: 58px;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .site-footer__brand-col p {
        max-width: none;
    }

    .site-footer__whatsapp {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .services-hero {
        min-height: auto;
        padding: 104px 0 36px;
    }

    .services-hero__grid {
        width: min(var(--max), calc(100% - 24px));
        gap: 24px;
    }

    .services-hero__copy > p,
    .services-hero__promise p {
        max-width: none;
    }

    .services-hero__copy h1 {
        max-width: 100%;
        font-size: clamp(2.15rem, 10vw, 3.15rem);
    }

    .service-map {
        height: 540px;
        min-height: 540px;
    }

    .service-map__frame {
        width: 74%;
        max-width: 520px;
    }

    .service-map__item {
        width: 112px;
    }

    .service-map__label {
        gap: 6px;
    }

    .service-map__icon {
        flex-basis: 24px;
        width: 24px;
        height: 24px;
    }

    .service-map__icon svg {
        width: 12px;
        height: 12px;
    }

    .service-map__body strong {
        font-size: .55rem;
        line-height: 1.08;
        letter-spacing: .03em;
    }

    .services-mobile-list {
        display: none;
    }

    .services-mobile-list__grid {
        grid-template-columns: 1fr;
    }

    .contact-luxury-hero h1 {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .contact-luxury-card {
        padding: 1.15rem;
    }
}

@media (max-width: 520px) {
    .site-shell {
        width: min(var(--max), calc(100% - 24px));
    }

    .header-cta {
        display: none;
    }

    .home-project-carousel {
        bottom: -122px;
    }

    .home-hero--reference + .content-section--dark {
        padding-top: 164px;
    }

    .home-project-card {
        width: 84vw;
    }

    .home-project-card__body {
        padding: 1rem;
    }

    .home-project-card__body strong {
        font-size: 1.12rem;
    }

    .about-hero__intro h1 {
        font-size: clamp(2.55rem, 13vw, 4.2rem);
    }

    .about-hero__composition {
        grid-template-columns: .82fr 1fr .82fr;
        max-width: none;
        margin-inline: auto;
        gap: .45rem;
    }

    .about-figure,
    .about-figure--center {
        height: 240px;
    }

    .about-figure--left,
    .about-figure--right {
        height: 205px;
    }

    .about-story__grid {
        gap: 2rem;
    }

    .founder-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        overflow-x: visible;
        gap: .45rem;
    }

    .founder-card__media {
        min-height: 122px;
    }

    .founder-card__media img {
        height: 132px;
    }

    .founder-card__body {
        padding: .65rem;
    }

    .founder-card__body h3 {
        font-size: .86rem;
    }

    .founder-card__body p {
        font-size: .68rem;
    }

    .service-map {
        height: 430px;
        min-height: 430px;
        margin-inline: -8px;
    }

    .service-map__frame {
        width: 72%;
    }

    .service-map__item {
        width: 92px;
    }

    .service-map__item--construction,
    .service-map__item--wood,
    .service-map__item--interior,
    .service-map__item--furniture {
        transform: translateX(8px);
    }

    .service-map__item--exterior,
    .service-map__item--finishing,
    .service-map__item--smart,
    .service-map__item--landscape {
        transform: translateX(-8px);
    }

    .service-map__body strong {
        font-size: .48rem;
    }

}
