:root {
    --navy-950: #0b1425;
    --navy-900: #111c33;
    --gold-500: #cda349;
    --gold-400: #d9b869;
    --white: #ffffff;
    --text-soft: rgba(255, 255, 255, 0.78);
    --border-soft: rgba(255, 255, 255, 0.1);
    --surface-light: #f5f6f8;
    --surface-card: rgba(255, 255, 255, 0.04);
    --shadow-lg: 0 24px 70px rgba(4, 10, 24, 0.26);
    --container: min(1320px, calc(100vw - 64px));
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Manrope', sans-serif;
    color: #09111d;
    background: var(--surface-light);
}

body.is-home-page {
    overflow: hidden;
    background: var(--navy-950);
}

body.has-lightbox-open {
    overflow: hidden;
}

[data-animation] {
    --animation-duration: 0.5s;
    --animation-delay: 0s;
}

.vcms-animate {
    animation-duration: var(--animation-duration);
    animation-delay: var(--animation-delay);
    animation-fill-mode: both;
    animation-timing-function: ease-out;
}

[data-animation][data-animation-trigger="on-scroll"]:not(.vcms-animate) {
    opacity: 0;
}

@keyframes vcms-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

.vcms-animate[data-animation="fade-in"] { animation-name: vcms-fade-in; }

@keyframes vcms-fade-in-up {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.vcms-animate[data-animation="fade-in-up"] { animation-name: vcms-fade-in-up; }

@keyframes vcms-fade-in-down {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

.vcms-animate[data-animation="fade-in-down"] { animation-name: vcms-fade-in-down; }

@keyframes vcms-fade-in-left {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

.vcms-animate[data-animation="fade-in-left"] { animation-name: vcms-fade-in-left; }

@keyframes vcms-fade-in-right {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

.vcms-animate[data-animation="fade-in-right"] { animation-name: vcms-fade-in-right; }

@keyframes vcms-slide-up {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.vcms-animate[data-animation="slide-up"] { animation-name: vcms-slide-up; }

@keyframes vcms-slide-down {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.vcms-animate[data-animation="slide-down"] { animation-name: vcms-slide-down; }

@keyframes vcms-slide-left {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

.vcms-animate[data-animation="slide-left"] { animation-name: vcms-slide-left; }

@keyframes vcms-slide-right {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

.vcms-animate[data-animation="slide-right"] { animation-name: vcms-slide-right; }

@keyframes vcms-zoom-in {
    from { opacity: 0; transform: scale(0.5); }
    to { opacity: 1; transform: scale(1); }
}

.vcms-animate[data-animation="zoom-in"] { animation-name: vcms-zoom-in; }

@keyframes vcms-zoom-out {
    from { opacity: 0; transform: scale(1.5); }
    to { opacity: 1; transform: scale(1); }
}

.vcms-animate[data-animation="zoom-out"] { animation-name: vcms-zoom-out; }

@keyframes vcms-flip-x {
    from { opacity: 0; transform: perspective(400px) rotateX(90deg); }
    to { opacity: 1; transform: perspective(400px) rotateX(0); }
}

.vcms-animate[data-animation="flip-x"] { animation-name: vcms-flip-x; }

@keyframes vcms-flip-y {
    from { opacity: 0; transform: perspective(400px) rotateY(90deg); }
    to { opacity: 1; transform: perspective(400px) rotateY(0); }
}

.vcms-animate[data-animation="flip-y"] { animation-name: vcms-flip-y; }

@keyframes vcms-bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
}

.vcms-animate[data-animation="bounce"] { animation-name: vcms-bounce; }

@keyframes vcms-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.vcms-animate[data-animation="pulse"] { animation-name: vcms-pulse; }

@keyframes vcms-shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.vcms-animate[data-animation="shake"] { animation-name: vcms-shake; }

@keyframes vcms-rotate-in {
    from { opacity: 0; transform: rotate(-180deg); }
    to { opacity: 1; transform: rotate(0); }
}

.vcms-animate[data-animation="rotate-in"] { animation-name: vcms-rotate-in; }

[data-ve-lightbox-trigger],
[data-ve-click-action="lightbox"] {
    cursor: zoom-in;
}

[data-ve-click-action="url"] {
    cursor: pointer;
}

[data-ve-lightbox-trigger]:focus-visible,
[data-ve-click-action="lightbox"]:focus-visible,
[data-ve-click-action="url"]:focus-visible {
    outline: 2px solid #d4a94f;
    outline-offset: 4px;
}


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

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

.project-gallery-card {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}

.project-gallery-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 18px;
    background: linear-gradient(180deg, rgba(11, 20, 37, 0.02) 35%, rgba(11, 20, 37, 0.68) 100%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.project-gallery-card:hover .project-gallery-card__overlay,
.project-gallery-card:focus-visible .project-gallery-card__overlay {
    opacity: 1;
}

.project-gallery-card__overlay-chip {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #09111d;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 700;
}

.ve-lightbox {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: none;
}

.ve-lightbox.is-open {
    display: block;
}

.ve-lightbox__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(4, 10, 24, 0.86);
    backdrop-filter: blur(8px);
    cursor: zoom-out;
}

.ve-lightbox__dialog {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) 64px;
    align-items: center;
    width: min(1400px, calc(100vw - 48px));
    height: min(900px, calc(100vh - 48px));
    margin: 24px auto;
}

.ve-lightbox__figure {
    grid-column: 2;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 0;
}

.ve-lightbox__image {
    width: 100%;
    max-height: calc(100vh - 130px);
    border-radius: 24px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.04);
}

.ve-lightbox__video {
    display: none;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: calc(100vh - 150px);
    border: 0;
    border-radius: 24px;
    background: #000000;
}

.ve-lightbox--video .ve-lightbox__nav {
    display: none;
}

.ve-lightbox--video .ve-lightbox__dialog {
    grid-template-columns: minmax(0, 1fr);
    place-items: center;
}

.ve-lightbox--video .ve-lightbox__figure {
    grid-column: 1;
    width: min(1120px, calc(100vw - 96px));
}

.ve-lightbox__caption {
    text-align: center;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
}

.ve-lightbox__close,
.ve-lightbox__nav {
    border: 0;
    cursor: pointer;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: background 0.2s ease, transform 0.2s ease;
}

.ve-lightbox__close:hover,
.ve-lightbox__nav:hover {
    background: rgba(205, 163, 73, 0.86);
    transform: translateY(-1px);
}

.ve-lightbox__close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    font-size: 28px;
    line-height: 1;
}

.ve-lightbox__nav {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    font-size: 34px;
    line-height: 1;
    justify-self: center;
}

.ve-yandex-map {
    position: relative;
    min-height: 360px;
    overflow: hidden;
    border-radius: 28px;
    background: #1b2434;
}

.ve-yandex-map__canvas,
.ve-yandex-map [data-ve-yandex-map-canvas] {
    width: 100%;
    height: 100%;
    min-height: 360px;
}

.ve-yandex-map__directions {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    background: var(--gold-500);
    color: #0b1425;
    padding: 14px 20px;
    font-weight: 700;
    box-shadow: 0 18px 30px rgba(11, 20, 37, 0.22);
    z-index: 2;
}

.ve-yandex-map__directions:hover {
    background: var(--gold-400);
}

.ve-yandex-map__empty {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 360px;
    padding: 24px;
    text-align: center;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
}

@media (max-width: 767px) {
    .ve-lightbox__dialog {
        grid-template-columns: 1fr;
        width: calc(100vw - 24px);
        height: calc(100vh - 24px);
        margin: 12px auto;
    }

    .ve-lightbox__nav {
        position: absolute;
        bottom: 86px;
        z-index: 2;
    }

    .ve-lightbox__nav--prev {
        left: 10px;
    }

    .ve-lightbox__nav--next {
        right: 10px;
    }

    .ve-lightbox__image {
        max-height: calc(100vh - 170px);
    }
}

.site-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(18px);
    background: rgba(11, 20, 37, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header--home {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    border-bottom: 0;
}

.site-header__inner,
.site-footer__inner,
.section-shell,
.page-hero__content,
.hero-home__content,
.project-hero__content {
    width: var(--container);
    margin: 0 auto;
}

.site-header__inner {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-logo img {
    height: 44px;
}

.site-menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    color: #ffffff;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.site-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-nav-backdrop {
    display: none;
}

.site-mobile-socials {
    display: none;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.site-nav a {
    position: relative;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 16px;
}

.site-nav a.is-active,
.site-nav a:hover {
    color: var(--gold-400);
}

.site-nav a.is-active::after,
.site-nav a:hover::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -14px;
    height: 2px;
    background: var(--gold-500);
}

.site-cta {
    background: var(--gold-500);
    color: #101820;
    font-weight: 700;
    padding: 16px 24px;
    border-radius: 14px;
}

.site-cta--mobile {
    display: none;
}

.site-header--home .site-cta {
    box-shadow: 0 16px 40px rgba(205, 163, 73, 0.24);
}

.site-main {
    flex: 1;
}

.hero-home,
.project-hero,
.page-hero {
    position: relative;
    overflow: hidden;
    background: var(--navy-950);
    color: var(--white);
}

.hero-home {
    min-height: 100vh;
    height: 100vh;
}

.hero-home::before,
.project-hero::before,
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center;
    transform: scale(1.01);
}

.hero-home__slides,
.home-hero__slides,
.home-hero__slide {
    position: absolute;
    inset: 0;
}

.home-hero {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    overflow: hidden;
    color: var(--white);
    background: var(--navy-950);
}

.home-hero__slide {
    opacity: 0;
    transform: scale(1.035);
    transition: opacity 700ms ease, transform 900ms ease;
    poManrope-events: none;
}

.home-hero__slide.is-active {
    opacity: 1;
    transform: scale(1);
    poManrope-events: auto;
}

.home-hero__media {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-hero__overlay,
.hero-home__overlay,
.project-hero__overlay,
.page-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(10, 18, 34, 0.88) 0%, rgba(10, 18, 34, 0.72) 34%, rgba(10, 18, 34, 0.3) 72%, rgba(10, 18, 34, 0.12) 100%), linear-gradient(180deg, rgba(10, 18, 34, 0.08) 0%, rgb(10 18 34 / 90%) 52%, rgb(10 18 34) 100%)
}

.home-hero__overlay {
    background:
        linear-gradient(90deg, rgba(8, 15, 30, 0.9) 0%, rgba(8, 15, 30, 0.78) 23%, rgba(8, 15, 30, 0.48) 54%, rgba(8, 15, 30, 0.18) 100%),
        linear-gradient(180deg, rgba(10, 18, 34, 0.04) 0%, rgba(10, 18, 34, 0.16) 54%, rgba(10, 18, 34, 0.76) 100%);
}

.hero-home__content,
.project-hero__content,
.page-hero__content {
    position: relative;
    z-index: 2;
}

.hero-home__content {
    padding: 220px 0 86px;
}

.home-hero__content {
    position: absolute;
    left: max(32px, calc((100vw - var(--container)) / 2));
    top: 50%;
    z-index: 4;
    width: min(620px, calc(100vw - 96px));
    transform: translateY(-34%);
}

.home-hero__counter-row {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 26px;
}

.home-hero__counter {
    color: var(--gold-500);
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    line-height: 1;
    font-weight: 700;
}

.home-hero__counter-line {
    width: 64px;
    height: 1px;
    background: rgba(205, 163, 73, 0.62);
}

.home-hero__counter-total {
    color: rgba(255, 255, 255, 0.45);
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    line-height: 1;
    font-weight: 600;
}

.home-hero__category {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--gold-500);
    font-size: 14px;
    letter-spacing: 0.34em;
    text-transform: uppercase;
}

.home-hero__title {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: clamp(72px, 8vw, 100px);
    line-height: 0.93;
    letter-spacing: -0.045em;
    text-wrap: balance;
}

.home-hero__description {
    max-width: 520px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 18px;
    line-height: 1.74;
}

.home-hero__facts {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 26px;
}

.home-hero__fact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 15px;
}

.home-hero__fact i {
    color: var(--gold-500);
    font-size: 13px;
}

.home-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-top: 14px;
    color: var(--gold-500);
    font-size: 20px;
    font-weight: 500;
}

.home-hero__cta-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    border: 1px solid rgba(205, 163, 73, 0.8);
    transition: background-color 220ms ease, color 220ms ease, border-color 220ms ease;
}

.home-hero__cta:hover {
    color: var(--white);
}

.home-hero__cta:hover .home-hero__cta-circle {
    background: var(--gold-500);
    color: var(--navy-950);
    border-color: var(--gold-500);
}

.home-hero__pager {
    position: absolute;
    left: max(32px, calc((100vw - var(--container)) / 2));
    bottom: 84px;
    z-index: 4;
    display: flex;
    gap: 12px;
}

.home-hero__pager-item {
    width: 26px;
    height: 4px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.28);
    cursor: poManrope;
    transition: width 220ms ease, background-color 220ms ease;
}

.home-hero__pager-item.is-active {
    width: 58px;
    background: var(--gold-500);
}

.home-hero__nav {
    position: absolute;
    right: 44px;
    bottom: 82px;
    z-index: 4;
    display: flex;
    gap: 14px;
    padding: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(14px);
}

.home-hero__nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    cursor: poManrope;
    transition: transform 180ms ease, background-color 220ms ease, color 220ms ease, border-color 220ms ease;
}

.home-hero__nav-btn:hover {
    transform: translateY(-1px);
    background: var(--gold-500);
    color: var(--navy-950);
    border-color: var(--gold-500);
}

.home-hero__quick-actions {
    position: absolute;
    top: 50%;
    right: 0;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transform: translateY(-50%);
}

.home-hero__quick-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 18px 0 0 18px;
    background: rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-right: 0;
    transition: background-color 220ms ease, color 220ms ease;
}

.home-hero__quick-link--accent,
.home-hero__quick-link:hover {
    background: var(--gold-500);
    color: var(--navy-950);
}

.home-hero__footer {
    position: absolute;
    left: max(32px, calc((100vw - var(--container)) / 2));
    right: max(32px, calc((100vw - var(--container)) / 2));
    bottom: 18px;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.home-hero__footer p,
.home-hero__footer nav a {
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 12px;
    line-height: 1.4;
}

.home-hero__footer nav {
    display: flex;
    align-items: center;
    gap: 26px;
}

.home-hero__footer nav a:hover {
    color: var(--gold-500);
}

.hero-home__meta,
.project-hero__facts,
.hero-home__facts,
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-home__counter {
    color: var(--gold-500);
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
}

.hero-home__line {
    width: 52px;
    height: 1px;
    background: rgba(205, 163, 73, 0.7);
}

.hero-home__total {
    color: rgba(255, 255, 255, 0.55);
    font-family: 'Playfair Display', serif;
    font-size: 30px;
}

.hero-home__eyebrow,
.section-shell__eyebrow,
.content-section__eyebrow {
    display: inline-flex;
    color: var(--gold-400);
    text-transform: uppercase;
    letter-spacing: 0.28em;
    font-size: 14px;
    font-weight: 600;
    margin-top: 22px;
}

.hero-home h1,
.project-hero h1,
.page-hero h1,
.section-shell__header h2 {
    margin: 10px 0 0;
    font-family: 'Playfair Display', serif;
    font-size: clamp(56px, 7vw, 92px);
    line-height: 0.94;
    letter-spacing: -0.03em;
}

.page-hero h1,
.project-hero h1 {
    font-size: clamp(52px, 6vw, 82px);
}

.page-hero h1 span {
    display: block;
    color: var(--gold-500);
}

.hero-home p,
.project-hero__subtitle,
.page-hero p {
    max-width: 680px;
    margin: 18px 0 0;
    color: var(--text-soft);
    font-size: 18px;
    line-height: 1.75;
}

.hero-home__facts,
.project-hero__facts {
    margin-top: 24px;
    flex-wrap: wrap;
}

.hero-home__facts span,
.project-hero__facts span {
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
}

.hero-home__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    color: var(--gold-400);
    font-size: 28px;
    font-weight: 600;
}

.page-hero {
    min-height: 440px;
}

.page-hero--projects {
    min-height: 468px;
}

.page-hero__content,
.project-hero__content {
    padding: 168px 0 92px;
}

.breadcrumb {
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
}

.breadcrumb a:hover,
.breadcrumb span:last-child {
    color: var(--gold-400);
}

.project-hero__badge {
    display: inline-flex;
    padding: 11px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.project-hero__video-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 26px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    padding: 10px 18px 10px 10px;
    font-size: 15px;
    font-weight: 800;
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
    cursor: pointer;
    transition: transform 180ms ease, background 200ms ease, border-color 200ms ease;
}

.project-hero__video-button:hover {
    transform: translateY(-1px);
    background: rgba(205, 163, 73, 0.24);
    border-color: rgba(205, 163, 73, 0.65);
}

.project-hero__video-button-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: var(--gold-500);
    color: var(--navy-950);
}

.project-video-modal {
    position: fixed;
    inset: 0;
    z-index: 140;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 32px;
}

.project-video-modal.is-open {
    display: flex;
}

.project-video-modal__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(4, 10, 24, 0.9);
    backdrop-filter: blur(10px);
}

.project-video-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(1120px, calc(100vw - 64px));
    aspect-ratio: 16 / 9;
    border-radius: 24px;
    background: #000;
    box-shadow: 0 28px 100px rgba(0, 0, 0, 0.44);
}

.project-video-modal__frame {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: inherit;
    display: block;
}

.project-video-modal__close {
    position: absolute;
    top: -18px;
    right: -18px;
    z-index: 2;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.project-video-modal__close:hover {
    background: rgba(205, 163, 73, 0.9);
    color: var(--navy-950);
}

.section-shell {
    padding: 88px 0;
}

.section-shell--light {
    background: var(--surface-light);
}

.section-shell--projects {
    padding-top: 70px;
}

.section-shell--projects .empty-state,
.section-shell--projects .project-grid--listing {
    width: min(1320px, calc(100vw - 32px));
    margin: 0 auto;
}

.section-shell__header {
    margin-bottom: 32px;
}

.section-shell__header h2 {
    font-size: clamp(40px, 4vw, 58px);
    color: var(--navy-950);
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

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

.project-grid--listing {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.project-card {
    overflow: hidden;
    border-radius: 28px;
    background: rgba(16, 24, 40, 0.74);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-lg);
}

.project-card--light {
    background: var(--white);
    border-color: rgba(17, 28, 51, 0.08);
}

.project-card--listing {
    background: #ffffff;
    border: 1px solid rgba(17, 28, 51, 0.07);
    box-shadow: 0 18px 44px rgba(12, 18, 34, 0.08);
    transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
    border-radius: 24px;
}

.project-card--listing:hover {
    transform: translateY(-6px);
    border-color: rgba(17, 28, 51, 0.1);
    box-shadow: 0 28px 56px rgba(12, 18, 34, 0.14);
}

.project-card__image {
    position: relative;
    aspect-ratio: 1.3 / 1;
    overflow: hidden;
}

.project-card__image--listing {
    aspect-ratio: 1.78 / 1;
    border-radius: 24px 24px 0 0;
}

.project-card__image-overlay {
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: linear-gradient(180deg, rgba(9, 17, 29, 0) 0%, rgba(9, 17, 29, 0.16) 34%, rgba(9, 17, 29, 0.82) 100%);
    poManrope-events: none;
}

.project-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms ease;
}

.project-card--listing:hover .project-card__image img {
    transform: scale(1.08);
}

.project-card__badge {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(205, 163, 73, 0.95);
    color: #131923;
    font-size: 13px;
    font-weight: 700;
}

.project-card__badge--listing {
    top: 16px;
    right: 16px;
    padding: 8px 14px;
    font-size: 12px;
}

.project-card__location {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 2;
    color: var(--gold-500);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
}

.project-card__content {
    padding: 26px;
}

.project-card__content--listing {
    padding: 18px 22px 20px;
}

.project-card__topline,
.project-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
}

.project-card--light .project-card__topline,
.project-card--light .project-card__footer {
    color: #667085;
}

.project-card__topline--listing {
    color: #98a2b3;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.project-card h2,
.project-card h3 {
    margin: 16px 0 10px;
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    line-height: 0.98;
    color: var(--white);
}

.project-card--light h2,
.project-card--light h3 {
    color: var(--navy-950);
}

.project-card--listing h2 {
    margin: 0 0 12px;
    font-size: 22px;
    line-height: 1.04;
}

.project-card--listing h2 a {
    transition: color 220ms ease;
}

.project-card--listing:hover h2 a {
    color: var(--gold-500);
}

.project-card p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.7;
}

.project-card--light p {
    color: #475467;
}

.project-card--listing p {
    min-height: 52px;
    font-size: 14px;
    line-height: 1.55;
    color: #566273;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.project-card__footer {
    margin-top: 22px;
}

.project-card__footer--listing {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(17, 28, 51, 0.08);
    font-size: 14px;
}

.project-card__footer--listing span,
.project-card__footer--listing a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.project-card__footer--listing span {
    color: #667085;
}

.project-card__footer--listing a {
    color: var(--gold-500);
}

.project-card__footer a,
.project-card__content > a {
    color: var(--gold-500);
    font-weight: 700;
}

.project-card__footer--listing a i {
    transition: transform 220ms ease;
}

.project-card--listing:hover .project-card__footer--listing a i {
    transform: translateX(3px);
}

.projects-toolbar {
    background: #fff;
    border-top: 1px solid rgba(17, 28, 51, 0.08);
    border-bottom: 1px solid rgba(17, 28, 51, 0.08);
}

.projects-toolbar__inner {
    width: min(1320px, calc(100vw - 32px));
    margin: 0 auto;
    min-height: 106px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.projects-toolbar__group {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.projects-toolbar__group--state {
    justify-content: flex-end;
}

.filter-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid rgba(17, 28, 51, 0.11);
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.filter-chip:hover {
    transform: translateY(-1px);
}

.filter-chip--gold {
    background: #ffffff;
    color: #475467;
}

.filter-chip--gold.is-active {
    background: var(--gold-500);
    color: var(--navy-950);
    border-color: rgba(205, 163, 73, 0.72);
    box-shadow: 0 14px 30px rgba(205, 163, 73, 0.24);
}

.filter-chip--navy {
    background: #ffffff;
    color: #475467;
}

.filter-chip--navy.is-active {
    background: var(--navy-950);
    color: #ffffff;
    border-color: rgba(11, 20, 37, 0.9);
    box-shadow: 0 14px 30px rgba(11, 20, 37, 0.24);
}

.empty-state,
.content-page,
.wysiwyg-content,
.content-section {
    border-radius: 28px;
    background: var(--white);
    border: 1px solid rgba(17, 28, 51, 0.08);
    padding: 36px;
    box-shadow: 0 20px 50px rgba(11, 20, 37, 0.08);
}

.content-page__designer,
.wysiwyg-content {
    color: #1b2434;
    line-height: 1.75;
}

.project-detail-rich {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.8;
}

.project-detail-rich > *:first-child {
    margin-top: 0 !important;
}

.project-detail-rich > *:last-child {
    margin-bottom: 0 !important;
}

.project-detail-rich h1,
.project-detail-rich h2,
.project-detail-rich h3,
.project-detail-rich h4,
.project-detail-rich h5,
.project-detail-rich h6 {
    margin: 0 0 24px;
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    line-height: 1.02;
    letter-spacing: -0.02em;
}

.project-detail-rich h1,
.project-detail-rich h2 {
    font-size: clamp(38px, 4.4vw, 60px);
}

.project-detail-rich h3 {
    font-size: clamp(28px, 3vw, 40px);
}

.project-detail-rich p,
.project-detail-rich ul,
.project-detail-rich ol,
.project-detail-rich blockquote,
.project-detail-rich table {
    margin: 0 0 24px;
}

.project-detail-rich p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.78);
}

.project-detail-rich ul,
.project-detail-rich ol {
    padding-left: 22px;
}

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

.project-detail-rich a {
    color: #000000;
}

.project-detail-rich strong,
.project-detail-rich b {
    color: #ffffff;
}

.project-detail-rich img,
.project-detail-rich video,
.project-detail-rich iframe {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 24px;
    overflow: hidden;
}

.project-detail-rich iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
}

.project-detail-rich .grid,
.project-detail-rich .row {
    max-width: 100%;
}

.project-detail-rich hr {
    margin: 28px 0;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.content-page__designer img,
.wysiwyg-content img {
    height: auto;
    border-radius: 22px;
}

.content-section {
    margin-top: 28px;
}

.thank-you-page {
    width: min(100%, 860px);
    margin: 0 auto;
}

.thank-you-page__card {
    position: relative;
    overflow: hidden;
    border-radius: 36px;
    padding: 52px 48px;
    background:
        radial-gradient(circle at top right, rgba(205, 163, 73, 0.18), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(17, 28, 51, 0.08);
    box-shadow: 0 20px 50px rgba(11, 20, 37, 0.08);
    text-align: center;
}

.thank-you-page__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(99, 102, 241, 0.1);
    color: #4338ca;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.thank-you-page__icon {
    width: 84px;
    height: 84px;
    border-radius: 999px;
    margin: 22px auto 18px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 24px 50px rgba(109, 74, 255, 0.28);
}

.thank-you-page__card h2 {
    margin: 0;
    color: #0f172a;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
}

.thank-you-page__card p {
    width: min(100%, 620px);
    margin: 18px auto 0;
    color: #475569;
    font-size: 16px;
    line-height: 1.75;
}

.thank-you-page__meta {
    display: inline-flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 28px;
    padding: 14px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(148, 163, 184, 0.22);
}

.thank-you-page__meta span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #94a3b8;
}

.thank-you-page__meta strong {
    color: #0f172a;
    font-size: 17px;
}

.thank-you-page__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 34px;
}

.thank-you-page__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 14px 24px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    background: #fff;
    color: #0f172a;
    font-weight: 700;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.thank-you-page__btn:hover {
    transform: translateY(-1px);
    border-color: rgba(15, 23, 42, 0.16);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.1);
}

.thank-you-page__btn--primary {
    border-color: transparent;
    color: #fff;
    box-shadow: 0 20px 40px rgba(109, 74, 255, 0.22);
}

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

.gallery-grid__item,
.video-embed {
    overflow: hidden;
    border-radius: 24px;
}

.gallery-grid__item img,
.video-embed iframe {
    width: 100%;
    display: block;
}

.video-embed iframe {
    aspect-ratio: 16 / 9;
    border: 0;
}

.site-footer {
    background: var(--navy-950);
    color: rgba(255, 255, 255, 0.72);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 28px 0;
}

.site-footer__brand {
    display: flex;
    align-items: center;
    gap: 18px;
}

.site-footer__brand img {
    height: 38px;
}

.site-footer__nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.site-footer__nav a:hover {
    color: var(--gold-400);
}

.site-footer--home .site-footer__inner {
    justify-content: center;
}

.site-footer--home .site-footer__brand {
    justify-content: center;
    text-align: center;
}

.site-footer--home .site-footer__nav {
    display: none;
}

@media (max-width: 1100px) {
    .project-grid,
    .project-grid--light {
        grid-template-columns: 1fr;
    }

    .site-header__inner {
        flex-wrap: wrap;
        justify-content: center;
        padding: 16px 0;
    }

    .site-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .home-hero__content {
        transform: translateY(-30%);
    }

    .projects-toolbar__inner {
        min-height: unset;
        padding: 24px 0;
        align-items: flex-start;
        flex-direction: column;
    }

    .projects-toolbar__group--state {
        justify-content: flex-start;
    }
}

@media (max-width: 920px) {
    .project-grid--listing {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1199px) and (min-width: 921px) {
    .project-grid--listing {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    :root {
        --container: min(100vw - 32px, 1320px);
    }
    
    body {
       overflow-x: hidden;
    }
    
    body.has-mobile-nav-open {
        overflow: hidden;
    }
    .site-shell {
        overflow-x: hidden;
    }
    .site-header {
        position: sticky;
    }
    .home-hero {
        position: relative;
        min-height: calc(100vh - 76px);
        height: calc(100vh - 76px);
        overflow: hidden;
        color: var(--white);
        background: var(--navy-950);
    }
    .site-header__inner {
        min-height: 74px;
        padding: 14px 0;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 16px;
    }

    .site-logo img {
        height: 38px;
    }

    .site-menu-toggle {
        display: inline-flex;
    }

    .site-nav-backdrop {
        display: block;
        position: fixed;
        top: 74px;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 24;
        border: 0;
        background: rgba(6, 12, 24, 0.56);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease;
    }

    .site-nav {
        position: fixed;
        top: 74px;
        left: 0;
        right: 0;
        z-index: 26;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        width: 100vw;
        max-height: calc(100vh - 74px);
        overflow-y: auto;
        padding: 18px 16px 20px;
        border-radius: 0;
        background: rgba(11, 20, 37, 0.98);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 22px 44px rgba(4, 10, 24, 0.26);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateX(100%);
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    }

    .site-nav > a {
        display: block;
        width: 100%;
        padding: 12px 14px;
        border-radius: 14px;
        font-size: 15px;
    }

    .site-nav > a.is-active::after,
    .site-nav > a:hover::after {
        display: none;
    }

    .site-nav > a.is-active,
    .site-nav > a:hover {
        background: rgba(255, 255, 255, 0.06);
    }

    .site-cta[data-site-cta] {
        display: none;
    }

    .site-cta--mobile {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 52px;
        margin-top: 10px;
        border-radius: 16px;
    }

    .site-mobile-socials {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
        padding-top: 14px;
        margin-top: 4px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .site-mobile-socials__link {
        width: 42px;
        height: 42px;
        min-width: 42px;
        padding: 0;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.06);
        color: rgba(255, 255, 255, 0.92);
        font-size: 16px;
        line-height: 1;
        transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    }

    .site-mobile-socials__link:hover {
        background: var(--gold-500);
        color: #101820;
        transform: translateY(-1px);
    }

    .site-header.is-mobile-nav-open .site-nav {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(0);
    }

    .site-header.is-mobile-nav-open .site-nav-backdrop {
        opacity: 1;
        pointer-events: auto;
    }

    .site-header.is-mobile-nav-open .site-menu-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .site-header.is-mobile-nav-open .site-menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .site-header.is-mobile-nav-open .site-menu-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero-home__content,
    .project-hero__content,
    .page-hero__content {
        padding-left: 0;
        padding-right: 0;
    }

    .hero-home__counter {
        font-size: 52px;
    }

    .hero-home__content {
        padding-top: 180px;
        padding-bottom: 60px;
    }
    .home-hero__content {
        left: 18px;
        width: calc(100vw - 36px);
        transform: translateY(-50%);
    }

    .home-hero__title {
        font-size: clamp(52px, 16vw, 74px);
    }

    .home-hero__description {
        font-size: 16px;
    }

    .home-hero__counter {
        font-size: 54px;
    }

    .home-hero__counter-total {
        font-size: 28px;
    }

    .home-hero__nav {
        display: none;
    }

    .home-hero__pager {
        left: 18px;
        bottom: 72px;
    }

    .home-hero__quick-actions {
        display: none;
    }

    .home-hero__footer {
        left: 18px;
        right: 18px;
        flex-direction: column;
        align-items: flex-start;
    }

    .home-hero__footer nav {
        gap: 18px;
        flex-wrap: wrap;
        display: none;
    }

    .site-footer__inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .site-footer__nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .site-footer__brand {
        justify-content: center;
        text-align: center;
    }

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

    .thank-you-page__card {
        padding: 38px 24px;
        border-radius: 28px;
    }

    .thank-you-page__actions {
        flex-direction: column;
    }

    .thank-you-page__btn {
        width: 100%;
    }

    .page-hero--projects {
        min-height: 410px;
    }

    .project-card__content--listing {
        padding: 20px;
    }

    .project-card--listing h2 {
        font-size: 22px;
    }

    .project-card--listing p {
        min-height: 0;
        font-size: 15px;
    }

    .filter-chip {
        min-height: 44px;
        padding: 0 18px;
        font-size: 15px;
    }
    .project-detail-container > section{
        padding: 0 25px;
    }
    .page-hero {
        min-height: 350px;
    }
}
.text-gold-400 {
    --tw-text-opacity: 1;
    color: rgb(232 172 90 / var(--tw-text-opacity, 1))
}

.text-gold-500 {
    --tw-text-opacity: 1;
    color: rgb(197 160 89 / var(--tw-text-opacity, 1))
}

.text-gold-600 {
    --tw-text-opacity: 1;
    color: rgb(166 124 61 / var(--tw-text-opacity, 1))
}
.bg-gold-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(250 240 215 / var(--tw-bg-opacity, 1))
}

.bg-gold-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(245 224 175 / var(--tw-bg-opacity, 1))
}

.bg-gold-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(197 160 89 / var(--tw-bg-opacity, 1))
}

.bg-gold-500\/10 {
    background-color: #c5a0591a
}

.bg-gold-500\/20 {
    background-color: #c5a05933
}

.bg-gold-500\/50 {
    background-color: #c5a05980
}
