:root {
    --ink: #16191f;
    --muted: #68707c;
    --line: #dfe4ea;
    --paper: #ffffff;
    --soft: #f4f6f8;
    --concrete: #e8ebef;
    --yellow: #f4b41a;
    --yellow-dark: #c98b00;
    --steel: #1f6f8b;
    --green: #2f8f72;
    --copper: #b86125;
    --sky: #eaf3f6;
    --glass: rgba(255, 255, 255, .12);
    --graphite: #262b31;
    --shadow: 0 18px 50px rgba(22, 25, 31, .14);
    --shadow-strong: 0 26px 70px rgba(15, 18, 24, .22);
}

#pages_placeholder {
    min-height: 100vh;
}

.loadBG {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(22, 25, 31, .94);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .24s ease, visibility .24s ease;
}

.loadBG.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

#load {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 18px 22px;
    color: var(--yellow);
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

#load p {
    margin: 0;
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
    animation: cefayLoadingText .9s ease-in-out infinite;
}

#load p:nth-child(2) {
    animation-delay: .06s;
}

#load p:nth-child(3) {
    animation-delay: .12s;
}

#load p:nth-child(4) {
    animation-delay: .18s;
}

#load p:nth-child(5) {
    animation-delay: .24s;
}

#load p:nth-child(6) {
    animation-delay: .30s;
}

#load p:nth-child(7) {
    animation-delay: .36s;
}

.modal-shell {
    display: none;
}

@keyframes cefayLoadingText {
    0%,
    100% {
        transform: translateY(0);
        opacity: .45;
    }

    50% {
        transform: translateY(-8px);
        opacity: 1;
    }
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    --hero-image: url("/images/cefay-hero.png");
    --blueprint-image: url("/images/blueprint.svg");
    margin: 0;
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    color: var(--ink);
    background:
        linear-gradient(180deg, #ffffff 0%, #f7f9fb 46%, #ffffff 100%);
    line-height: 1.6;
    text-rendering: geometricPrecision;
}

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

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

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px clamp(18px, 4vw, 56px);
    color: #fff;
    transition: background .25s ease, box-shadow .25s ease, color .25s ease, padding .25s ease;
}

.site-header.scrolled,
body:not(:has(.hero)) .site-header {
    color: var(--ink);
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 8px 26px rgba(22, 25, 31, .08);
    backdrop-filter: blur(16px);
    padding-top: 13px;
    padding-bottom: 13px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: 0;
}

.brand-image {
    flex: 0 0 auto;
}

.brand-logo-shell {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 168px;
    height: 48px;
    padding: 7px 12px;
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(255, 255, 255, .62);
    border-radius: 8px;
    box-shadow: 0 10px 26px rgba(17, 20, 25, .12);
}

.brand-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: var(--ink);
    background: var(--yellow);
    border: 2px solid rgba(255, 255, 255, .45);
    border-radius: 8px;
}

.brand-text {
    font-size: 20px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 14px;
    font-weight: 700;
}

.main-nav a {
    position: relative;
    opacity: .92;
    transition: color .2s ease, opacity .2s ease;
}

.main-nav a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -7px;
    height: 2px;
    background: var(--yellow);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .22s ease;
}

.main-nav a:hover {
    opacity: 1;
}

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

.nav-cta {
    padding: 10px 16px;
    color: var(--ink);
    background: var(--yellow);
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(244, 180, 26, .24);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 10px;
    border: 0;
    border-radius: 8px;
    background: var(--yellow);
}

.nav-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--ink);
}

.hero {
    position: relative;
    min-height: 94vh;
    display: grid;
    align-items: center;
    overflow: hidden;
    color: #fff;
    background: var(--graphite);
    isolation: isolate;
}

.hero-media {
    position: absolute;
    inset: 0;
    background-image: var(--hero-image), linear-gradient(135deg, #30353d 0%, #545d68 45%, #d9dfe5 100%);
    background-size: cover;
    background-position: center;
    filter: saturate(1.02) contrast(1.06);
    transform: scale(1.04);
    animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(17, 20, 25, .88) 0%, rgba(17, 20, 25, .54) 44%, rgba(17, 20, 25, .18) 100%),
        linear-gradient(0deg, rgba(17, 20, 25, .72), rgba(17, 20, 25, .12));
}

.hero-blueprint {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: .20;
    background-image:
        linear-gradient(rgba(255, 255, 255, .20) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .20) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(90deg, #000 0%, transparent 78%);
    animation: blueprintPan 18s linear infinite;
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: min(1240px, calc(100% - 36px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(360px, .96fr);
    gap: 58px;
    align-items: center;
    padding: 118px 0 74px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--yellow);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.eyebrow::before {
    content: "";
    width: 32px;
    height: 2px;
    background: currentColor;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 780px;
    margin-bottom: 18px;
    font-size: clamp(44px, 7vw, 86px);
    line-height: .96;
    letter-spacing: 0;
}

h2 {
    margin-bottom: 14px;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: 0;
}

h3 {
    line-height: 1.2;
    letter-spacing: 0;
}

.hero-copy p {
    max-width: 640px;
    color: rgba(255, 255, 255, .86);
    font-size: 18px;
}

.hero-actions,
.hero-mini-stats,
.project-tabs,
.filter-bar,
.highlight-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 800;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(22, 25, 31, .18);
}

.btn-primary {
    color: var(--ink);
    background: var(--yellow);
}

.btn-light {
    color: #fff;
    border-color: rgba(255, 255, 255, .45);
    background: rgba(255, 255, 255, .08);
}

.btn-dark {
    color: #fff;
    background: var(--ink);
}

.hero-mini-stats {
    margin-top: 28px;
    color: rgba(255, 255, 255, .78);
}

.hero-mini-stats strong {
    display: block;
    color: #fff;
    font-size: 28px;
    line-height: 1;
}

.construction-visual {
    position: relative;
    min-height: 460px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .05)),
        radial-gradient(circle at 82% 12%, rgba(244, 180, 26, .26), transparent 30%),
        rgba(8, 13, 18, .18);
    box-shadow: var(--shadow-strong);
    overflow: hidden;
    backdrop-filter: blur(12px);
}

.construction-visual::before,
.construction-visual::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.construction-visual::before {
    inset: auto 22px 28px;
    height: 88px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .10));
    transform: skewX(-12deg);
}

.construction-visual::after {
    left: -28%;
    top: 0;
    width: 30%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .18), transparent);
    animation: shineSweep 7s ease-in-out infinite;
}

.visual-grid {
    position: absolute;
    inset: 18px;
    opacity: .22;
    background-image:
        linear-gradient(rgba(255, 255, 255, .18) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .18) 1px, transparent 1px);
    background-size: 32px 32px;
    animation: visualGridMove 14s linear infinite;
}

.sun {
    position: absolute;
    right: 34px;
    top: 18px;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--yellow);
    box-shadow: 0 0 60px rgba(244, 180, 26, .72);
    animation: sunPulse 4s ease-in-out infinite;
}

.crane {
    position: absolute;
    inset: 40px 0 auto 32px;
    height: 210px;
}

.crane-mast,
.crane-arm,
.crane-cable,
.crane-load {
    position: absolute;
    display: block;
    background: var(--yellow);
}

.crane-mast {
    left: 110px;
    top: 34px;
    width: 12px;
    height: 198px;
    box-shadow: 0 0 18px rgba(244, 180, 26, .16);
}

.crane-arm {
    left: 60px;
    top: 28px;
    width: 330px;
    height: 10px;
    transform-origin: 110px center;
    animation: craneSwing 6s ease-in-out infinite alternate;
}

.crane-cable {
    left: 315px;
    top: 34px;
    width: 3px;
    height: 120px;
    animation: cableMove 6s ease-in-out infinite alternate;
}

.crane-load {
    left: 292px;
    top: 150px;
    width: 50px;
    height: 28px;
    border: 3px solid #f9d46f;
    background: rgba(244, 180, 26, .24);
    animation: cableMove 6s ease-in-out infinite alternate;
}

.floor-guide {
    position: absolute;
    right: 84px;
    width: 285px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .55), transparent);
    animation: floorScan 3.6s ease-in-out infinite;
}

.floor-guide-one {
    bottom: 142px;
}

.floor-guide-two {
    bottom: 238px;
    animation-delay: 1.2s;
}

.building {
    position: absolute;
    bottom: 36px;
    display: grid;
    gap: 8px;
    padding: 18px;
    background: rgba(232, 235, 239, .92);
    border: 1px solid rgba(255, 255, 255, .65);
    box-shadow: var(--shadow);
    transition: transform .35s ease;
}

.building span {
    background: linear-gradient(135deg, rgba(31, 111, 139, .78), rgba(255, 255, 255, .85));
    animation: windowGlow 3.5s ease-in-out infinite;
}

.building span:nth-child(3n) {
    animation-delay: .35s;
}

.building span:nth-child(4n) {
    animation-delay: .7s;
}

.building-back {
    right: 18px;
    width: 200px;
    height: 250px;
    grid-template-columns: repeat(4, 1fr);
    opacity: .82;
}

.building-front {
    right: 128px;
    width: 250px;
    height: 330px;
    grid-template-columns: repeat(4, 1fr);
    animation: buildRise 1.1s ease-out both, buildingFloat 7s ease-in-out infinite 1.1s;
}

.site-line {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 28px;
    height: 14px;
    background: repeating-linear-gradient(90deg, var(--yellow) 0 42px, var(--graphite) 42px 78px);
    border-radius: 8px;
    animation: siteBelt 9s linear infinite;
}

.hero-scroll {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
    font-weight: 700;
}

.section,
.stats-band,
.process-band,
.instagram-section,
.cta-band,
.page-hero,
.project-detail-hero {
    padding-left: max(18px, calc((100vw - 1180px) / 2));
    padding-right: max(18px, calc((100vw - 1180px) / 2));
}

.section {
    padding-top: 92px;
    padding-bottom: 92px;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 34px;
}

.section-heading p,
.split-section p,
.detail-copy p,
.page-hero p {
    color: var(--muted);
    font-size: 17px;
}

.stats-band {
    padding-top: 28px;
    padding-bottom: 28px;
    background: var(--soft);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
}

.stat-item {
    padding: 28px;
    background: #fff;
}

.stat-item strong {
    display: block;
    color: var(--steel);
    font-size: 38px;
    line-height: 1;
}

.stat-item span {
    color: var(--muted);
    font-weight: 700;
}

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

.project-card,
.instagram-card,
.reference-card,
.process-step {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(22, 25, 31, .06);
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.project-card:hover,
.instagram-card:hover,
.reference-card:hover,
.process-step:hover {
    transform: translateY(-6px);
    border-color: rgba(31, 111, 139, .28);
    box-shadow: 0 22px 46px rgba(22, 25, 31, .12);
}

.project-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: var(--concrete);
    transition: transform .42s ease, filter .42s ease;
}

.project-card:hover img,
.instagram-card:hover img {
    transform: scale(1.045);
    filter: saturate(1.08) contrast(1.04);
}

.project-card-body {
    padding: 22px;
}

.project-card-body span {
    color: var(--yellow-dark);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.project-card-body h3 {
    margin: 8px 0;
    font-size: 22px;
}

.project-card-body p {
    color: var(--muted);
}

.project-card-body a,
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    color: var(--steel);
    font-weight: 800;
}

.project-card-body a::after,
.text-link::after {
    content: "→";
    transition: transform .2s ease;
}

.project-card-body a:hover::after,
.text-link:hover::after {
    transform: translateX(4px);
}

.progress-line {
    height: 8px;
    overflow: hidden;
    background: var(--concrete);
    border-radius: 8px;
}

.progress-line i {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--yellow), var(--green));
    border-radius: inherit;
    box-shadow: 0 0 18px rgba(47, 143, 114, .28);
}

.reveal.visible .progress-line i {
    animation: progressGlow 2.4s ease-in-out infinite;
}

.project-tabs,
.filter-bar {
    margin-bottom: 24px;
}

.project-tabs button,
.filter-bar a {
    padding: 11px 16px;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    font-weight: 800;
    transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.project-tabs button:hover,
.filter-bar a:hover {
    transform: translateY(-2px);
    border-color: rgba(31, 111, 139, .34);
}

.project-tabs button.active,
.filter-bar a.active {
    color: #fff;
    border-color: var(--ink);
    background: var(--ink);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: panelIn .28s ease both;
}

.tab-panel.active .project-card {
    animation: cardIn .42s ease;
}

.process-band {
    padding-top: 88px;
    padding-bottom: 88px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(22, 25, 31, .94), rgba(31, 111, 139, .82)),
        var(--blueprint-image);
    background-size: cover;
    background-attachment: fixed;
}

.process-step {
    padding: 28px;
    color: #fff;
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .18);
}

.process-step:hover {
    border-color: rgba(244, 180, 26, .55);
    background: rgba(255, 255, 255, .12);
}

.process-step strong {
    color: var(--yellow);
    font-size: 30px;
}

.process-step p {
    color: rgba(255, 255, 255, .78);
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
    gap: 46px;
    align-items: center;
}

.blueprint-panel {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(31, 111, 139, .10), rgba(244, 180, 26, .08)),
        var(--soft);
    box-shadow: 0 16px 40px rgba(22, 25, 31, .08);
}

.blueprint-panel img {
    width: 100%;
    border-radius: 8px;
    animation: blueprintFloat 7s ease-in-out infinite;
}

.instagram-section {
    padding-top: 92px;
    padding-bottom: 92px;
    background: var(--soft);
}

.instagram-card a {
    display: grid;
    min-height: 100%;
    overflow: hidden;
}

.instagram-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform .42s ease, filter .42s ease;
}

.instagram-card span,
.instagram-card h3,
.instagram-card p {
    margin-left: 18px;
    margin-right: 18px;
}

.instagram-card span {
    margin-top: 18px;
    color: var(--yellow-dark);
    font-size: 12px;
    font-weight: 800;
}

.instagram-card h3 {
    margin-bottom: 6px;
}

.instagram-card p {
    color: var(--muted);
}

.instagram-embed {
    padding: 12px;
    background: #fff;
}

.cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 54px;
    padding-bottom: 54px;
    color: var(--ink);
    background:
        linear-gradient(135deg, var(--yellow), #f6c44b 58%, #e7a70f);
    position: relative;
    overflow: hidden;
}

.cta-band::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(120deg, transparent 0 40%, rgba(255, 255, 255, .20) 50%, transparent 60%),
        repeating-linear-gradient(90deg, rgba(22, 25, 31, .10) 0 1px, transparent 1px 44px);
    transform: translateX(-22%);
    animation: ctaSweep 8s ease-in-out infinite;
    pointer-events: none;
}

.cta-band > * {
    position: relative;
    z-index: 1;
}

.cta-band .eyebrow {
    color: var(--ink);
}

.cta-band h2 {
    margin-bottom: 0;
}

.page-hero {
    position: relative;
    display: grid;
    align-items: end;
    min-height: 430px;
    padding-top: 150px;
    padding-bottom: 70px;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(22, 25, 31, .92), rgba(22, 25, 31, .62)),
        var(--hero-image);
    background-size: cover, cover;
    background-position: center, center;
    overflow: hidden;
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .12) 1px, transparent 1px);
    background-size: 68px 68px;
    opacity: .18;
    animation: blueprintPan 18s linear infinite;
    pointer-events: none;
}

.page-hero.compact {
    min-height: 350px;
}

.page-hero div {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.page-hero h1 {
    margin-bottom: 14px;
    font-size: clamp(42px, 6vw, 70px);
}

.page-hero p {
    color: rgba(255, 255, 255, .82);
}

.project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 14px 0;
}

.project-meta b,
.highlight-list span {
    padding: 8px 10px;
    color: var(--ink);
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 8px;
    font-size: 13px;
}

.project-detail-hero {
    min-height: 640px;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
    gap: 42px;
    align-items: center;
    padding-top: 132px;
    padding-bottom: 74px;
    background:
        linear-gradient(135deg, rgba(31, 111, 139, .10), rgba(244, 180, 26, .08)),
        var(--soft);
}

.project-detail-hero img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
    animation: detailImageIn .55s ease both;
}

.detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    gap: 36px;
    align-items: start;
}

.detail-copy,
.detail-panel,
.contact-info,
.contact-form,
.map-panel,
.values-grid {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 38px rgba(22, 25, 31, .06);
}

.detail-panel {
    display: grid;
    gap: 14px;
}

.detail-panel div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
}

.detail-panel div:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.detail-panel span {
    color: var(--muted);
}

.progress-gallery,
.project-gallery-section {
    background: #fff;
}

.section-head {
    max-width: 720px;
    margin-bottom: 30px;
}

.section-head p {
    color: var(--muted);
    font-size: 17px;
}

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

.progress-gallery-card,
.project-gallery-card {
    overflow: hidden;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 14px 36px rgba(22, 25, 31, .08);
    transition: transform .24s ease, box-shadow .24s ease;
}

.progress-gallery-card:hover,
.project-gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(22, 25, 31, .13);
}

.progress-gallery-card img,
.project-gallery-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: var(--concrete);
}

.progress-gallery-card div,
.project-gallery-card div {
    display: grid;
    gap: 9px;
    padding: 18px;
}

.progress-gallery-card span {
    color: var(--yellow-dark);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.progress-gallery-card h3 {
    margin: 0;
    font-size: 20px;
}

.progress-gallery-card p,
.project-gallery-card p {
    margin: 0;
    color: var(--muted);
}

.project-gallery-card h3 {
    margin: 0;
    font-size: 20px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    background: var(--soft);
}

.values-grid div {
    padding: 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    transition: transform .22s ease, border-color .22s ease;
}

.values-grid div:hover {
    transform: translateY(-4px);
    border-color: rgba(31, 111, 139, .28);
}

.values-grid strong {
    display: block;
    color: var(--yellow-dark);
    font-size: 24px;
}

.reference-card {
    padding: 28px;
    position: relative;
}

.reference-card::before {
    content: "“";
    position: absolute;
    right: 22px;
    top: 10px;
    color: rgba(244, 180, 26, .20);
    font-size: 86px;
    line-height: 1;
}

.stars {
    color: var(--yellow-dark);
    letter-spacing: 0;
}

.reference-card p {
    color: var(--muted);
    font-size: 17px;
}

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

.reference-card span {
    color: var(--muted);
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
    gap: 28px;
}

.contact-info {
    display: grid;
    align-content: start;
    gap: 12px;
    background:
        linear-gradient(135deg, rgba(31, 111, 139, .45), rgba(22, 25, 31, .96)),
        var(--ink);
    color: #fff;
}

.contact-info a,
.contact-info span {
    color: rgba(255, 255, 255, .82);
}

.contact-form {
    display: grid;
    gap: 14px;
}

.map-panel {
    grid-column: 1 / -1;
}

.map-panel iframe {
    width: 100%;
    min-height: 360px;
    border: 0;
    border-radius: 8px;
}

.contact-form label {
    display: grid;
    gap: 7px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 13px 14px;
    color: var(--ink);
    font: inherit;
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 0;
    border-color: var(--steel);
    box-shadow: 0 0 0 4px rgba(31, 111, 139, .12);
}

.form-success {
    padding: 12px 14px;
    color: #0d513f;
    background: #dff7ec;
    border: 1px solid #bdebd7;
    border-radius: 8px;
}

.site-footer {
    padding: 58px max(18px, calc((100vw - 1180px) / 2)) 24px;
    color: rgba(255, 255, 255, .78);
    background:
        linear-gradient(180deg, #171b21, #0f1217);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 34px;
}

.footer-brand {
    color: #fff;
    margin-bottom: 16px;
}

.footer-brand .brand-logo-shell {
    width: 196px;
    height: 58px;
    box-shadow: none;
}

.site-footer h3 {
    color: #fff;
    font-size: 16px;
}

.site-footer a {
    display: block;
    margin: 8px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 38px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .14);
    font-size: 13px;
}

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

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes heroDrift {
    from {
        transform: scale(1.04) translateX(-12px);
    }
    to {
        transform: scale(1.08) translateX(12px);
    }
}

@keyframes blueprintPan {
    from {
        background-position: 0 0, 0 0;
    }
    to {
        background-position: 144px 72px, 144px 72px;
    }
}

@keyframes buildRise {
    from {
        clip-path: inset(100% 0 0 0);
    }
    to {
        clip-path: inset(0 0 0 0);
    }
}

@keyframes buildingFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

@keyframes craneSwing {
    from {
        transform: rotate(-1.5deg);
    }
    to {
        transform: rotate(2.5deg);
    }
}

@keyframes floorScan {
    0%,
    100% {
        opacity: .10;
        transform: translateX(-18px);
    }
    50% {
        opacity: .95;
        transform: translateX(18px);
    }
}

@keyframes cableMove {
    from {
        transform: translateX(-26px);
    }
    to {
        transform: translateX(30px);
    }
}

@keyframes sunPulse {
    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 60px rgba(244, 180, 26, .68);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 0 86px rgba(244, 180, 26, .86);
    }
}

@keyframes siteBelt {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 120px 0;
    }
}

@keyframes shineSweep {
    0%,
    45% {
        transform: translateX(0);
        opacity: 0;
    }
    55% {
        opacity: 1;
    }
    100% {
        transform: translateX(430%);
        opacity: 0;
    }
}

@keyframes visualGridMove {
    from {
        background-position: 0 0, 0 0;
    }
    to {
        background-position: 64px 64px, 64px 64px;
    }
}

@keyframes blueprintFloat {
    0%,
    100% {
        transform: translateY(0) rotate(0);
    }
    50% {
        transform: translateY(-8px) rotate(.35deg);
    }
}

@keyframes panelIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cardIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes progressGlow {
    0%,
    100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.16);
    }
}

@keyframes detailImageIn {
    from {
        opacity: 0;
        transform: translateX(-18px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes ctaSweep {
    0%,
    48% {
        transform: translateX(-42%);
        opacity: .35;
    }
    100% {
        transform: translateX(42%);
        opacity: .75;
    }
}

@keyframes windowGlow {
    0%,
    100% {
        opacity: .78;
    }
    50% {
        opacity: 1;
    }
}

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

@media (max-width: 960px) {
    .site-header {
        color: var(--ink);
        background: rgba(255, 255, 255, .96);
        box-shadow: 0 8px 26px rgba(22, 25, 31, .08);
    }

    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: calc(100% + 8px);
        left: 18px;
        right: 18px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px;
        color: var(--ink);
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 8px;
        box-shadow: var(--shadow);
    }

    .main-nav.open {
        display: flex;
    }

    .brand-logo-shell {
        width: 150px;
        height: 44px;
        padding: 6px 10px;
    }

    .main-nav a {
        padding: 12px;
    }

    .hero-inner,
    .project-detail-hero,
    .split-section,
    .detail-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-blueprint {
        mask-image: linear-gradient(180deg, #000 0%, transparent 88%);
    }

    .construction-visual {
        min-height: 390px;
    }

    .process-band {
        background-attachment: scroll;
    }

    .stats-grid,
    .project-grid,
    .project-gallery-grid,
    .progress-gallery-grid,
    .instagram-grid,
    .reference-grid,
    .process-grid,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    h1 {
        font-size: 42px;
    }

    h2 {
        font-size: 32px;
    }

    .hero-inner {
        padding-top: 118px;
        gap: 30px;
    }

    .construction-visual {
        min-height: 300px;
    }

    .crane {
        transform: scale(.72);
        transform-origin: left top;
    }

    .floor-guide {
        right: 44px;
        width: 210px;
    }

    .building-back {
        width: 150px;
        height: 190px;
    }

    .building-front {
        right: 94px;
        width: 178px;
        height: 250px;
    }

    .stats-grid,
    .project-grid,
    .project-gallery-grid,
    .progress-gallery-grid,
    .instagram-grid,
    .reference-grid,
    .process-grid,
    .footer-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .cta-band,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .section,
    .instagram-section,
    .process-band {
        padding-top: 62px;
        padding-bottom: 62px;
    }
}

.hero[data-hero-scene] {
    --hero-progress: 0;
    min-height: 100svh;
    align-items: stretch;
    color: #fff;
    background: #10151b;
}

.hero[data-hero-scene]::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        radial-gradient(circle at 78% 42%, rgba(244, 180, 26, .20), transparent 32%),
        linear-gradient(180deg, rgba(16, 21, 27, 0) 58%, rgba(16, 21, 27, .92) 100%);
    opacity: calc(.84 - (var(--hero-progress) * .18));
}

.hero[data-hero-scene] .hero-media {
    filter: saturate(1.08) contrast(1.08);
    transform:
        scale(calc(1.03 + (var(--hero-progress) * .105)))
        translate3d(0, calc(var(--hero-progress) * -42px), 0);
    transform-origin: 60% 50%;
    animation: cinematicHeroDrift 28s ease-in-out infinite alternate;
    will-change: transform;
}

.hero[data-hero-scene] .hero-overlay {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(10, 13, 18, .90) 0%, rgba(10, 13, 18, .62) 42%, rgba(10, 13, 18, .20) 100%),
        linear-gradient(0deg, rgba(10, 13, 18, .86) 0%, rgba(10, 13, 18, .06) 58%, rgba(10, 13, 18, .46) 100%);
}

.hero[data-hero-scene] .hero-blueprint {
    z-index: 2;
    opacity: calc(.23 + (var(--hero-progress) * .16));
    background-image:
        linear-gradient(rgba(255, 255, 255, .16) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .14) 1px, transparent 1px),
        linear-gradient(135deg, transparent 0 48%, rgba(244, 180, 26, .18) 49%, transparent 51%);
    background-size: 88px 88px, 88px 88px, 260px 260px;
    mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, .82) 48%, transparent 88%);
    transform: translate3d(calc(var(--hero-progress) * -26px), calc(var(--hero-progress) * -18px), 0);
}

.hero[data-hero-scene] .hero-inner {
    z-index: 4;
    min-height: 100svh;
    grid-template-columns: minmax(0, 760px);
    align-content: center;
    align-items: center;
    padding-top: 142px;
    padding-bottom: 112px;
}

.hero[data-hero-scene] .hero-copy {
    position: relative;
    z-index: 5;
    max-width: 760px;
    transform:
        translate3d(0, calc(var(--hero-progress) * -24px), 0)
        scale(calc(1 - (var(--hero-progress) * .025)));
    transform-origin: left center;
    will-change: transform;
}

.hero[data-hero-scene] h1 {
    max-width: 760px;
    margin-bottom: 20px;
    font-size: clamp(48px, 7.4vw, 104px);
    line-height: .90;
    text-wrap: balance;
    text-shadow: 0 24px 60px rgba(0, 0, 0, .34);
}

.hero[data-hero-scene] .hero-copy p {
    max-width: 620px;
    color: rgba(255, 255, 255, .84);
    font-size: clamp(17px, 1.5vw, 21px);
    line-height: 1.62;
}

.hero-line-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 24px 0 24px;
}

.hero-line-meta span {
    padding: 8px 12px;
    color: rgba(255, 255, 255, .82);
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
}

.hero[data-hero-scene] .hero-actions {
    margin-top: 8px;
}

.hero[data-hero-scene] .btn {
    min-height: 54px;
    padding: 0 24px;
}

.hero-progress-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 520px;
    margin-top: 30px;
    padding-top: 18px;
    color: rgba(255, 255, 255, .74);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.hero-progress-track::before,
.hero-progress-track i {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 2px;
    border-radius: 8px;
}

.hero-progress-track::before {
    background: rgba(255, 255, 255, .18);
}

.hero-progress-track i {
    right: auto;
    width: calc(34% + (var(--hero-progress) * 54%));
    background: linear-gradient(90deg, var(--yellow), #fff3a9);
    box-shadow: 0 0 24px rgba(244, 180, 26, .44);
}

.hero[data-hero-scene] .construction-visual {
    position: absolute;
    z-index: 3;
    right: clamp(-82px, -4vw, -28px);
    bottom: clamp(64px, 9vh, 116px);
    width: min(42vw, 580px);
    min-height: clamp(390px, 54vh, 640px);
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    pointer-events: none;
    transform:
        perspective(980px)
        rotateY(-9deg)
        rotateX(4deg)
        translate3d(calc(var(--hero-progress) * 24px), calc(var(--hero-progress) * -30px), 0)
        scale(calc(.98 + (var(--hero-progress) * .04)));
    transform-origin: 70% 70%;
    transition: opacity .4s ease;
    will-change: transform;
}

.hero[data-hero-scene] .construction-visual::before {
    left: 2%;
    right: 4%;
    bottom: 10px;
    height: 170px;
    background:
        radial-gradient(ellipse at center, rgba(0, 0, 0, .48), transparent 64%),
        linear-gradient(180deg, transparent, rgba(255, 255, 255, .08));
    filter: blur(2px);
    transform: skewX(-16deg);
}

.hero[data-hero-scene] .construction-visual::after {
    left: -34%;
    top: -6%;
    width: 34%;
    height: 112%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .28), transparent);
    animation: premiumSweep 8.5s ease-in-out infinite;
}

.hero[data-hero-scene] .visual-grid {
    inset: 8% 0 0 8%;
    opacity: .28;
    background-size: 42px 42px;
    mask-image: radial-gradient(circle at 58% 52%, #000 0 44%, transparent 75%);
}

.site-depth {
    position: absolute;
    left: 8%;
    right: 0;
    bottom: 8%;
    height: 34%;
    border-bottom: 1px solid rgba(255, 255, 255, .22);
    background:
        repeating-linear-gradient(108deg, rgba(255, 255, 255, .18) 0 1px, transparent 1px 34px);
    transform: perspective(460px) rotateX(64deg) skewX(-18deg);
    transform-origin: bottom center;
    opacity: .62;
}

.blueprint-beam {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .76), transparent);
    transform-origin: left center;
    animation: beamTrace 4.8s ease-in-out infinite;
}

.beam-one {
    left: 16%;
    top: 25%;
    width: 62%;
    transform: rotate(-18deg);
}

.beam-two {
    left: 4%;
    top: 61%;
    width: 80%;
    transform: rotate(10deg);
    animation-delay: 1.2s;
}

.site-scanline {
    position: absolute;
    left: 12%;
    right: 8%;
    top: 54%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(244, 180, 26, .95), transparent);
    box-shadow: 0 0 28px rgba(244, 180, 26, .34);
    animation: scanLevel 4.4s ease-in-out infinite;
}

.stage-badge {
    position: absolute;
    z-index: 8;
    left: 4%;
    right: auto;
    top: 17%;
    display: grid;
    gap: 3px;
    padding: 12px 14px;
    color: #fff;
    background: rgba(9, 13, 18, .48);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, .18);
    backdrop-filter: blur(16px);
}

.stage-badge span {
    color: var(--yellow);
    font-size: 11px;
    font-weight: 900;
}

.stage-badge strong {
    font-size: 14px;
}

.hero[data-hero-scene] .sun {
    right: 15%;
    top: 6%;
    width: 92px;
    height: 92px;
    background:
        radial-gradient(circle at 36% 30%, #fff0a2 0 10%, var(--yellow) 32%, #d18d02 100%);
    opacity: .88;
}

.hero[data-hero-scene] .crane {
    left: auto;
    right: 4%;
    top: 4%;
    width: 84%;
    height: 260px;
    transform: translate3d(0, calc(var(--hero-progress) * -12px), 0);
}

.hero[data-hero-scene] .crane-mast {
    left: 22%;
    top: 34px;
    width: 10px;
    height: 260px;
    background:
        repeating-linear-gradient(180deg, var(--yellow) 0 18px, #d79b0f 18px 22px);
}

.hero[data-hero-scene] .crane-arm {
    left: 5%;
    top: 30px;
    width: 78%;
    height: 9px;
    background:
        repeating-linear-gradient(90deg, var(--yellow) 0 28px, #f7ce60 28px 38px);
    transform-origin: 22% center;
    animation: craneSwing 6.8s ease-in-out infinite alternate;
}

.hero[data-hero-scene] .crane-cable {
    left: 68%;
    top: 38px;
    height: 152px;
    background: rgba(255, 255, 255, .72);
}

.hero[data-hero-scene] .crane-load {
    left: calc(68% - 27px);
    top: 184px;
    width: 58px;
    height: 34px;
    border-color: #fff1ac;
    background: rgba(184, 97, 37, .46);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .18);
}

.hero[data-hero-scene] .floor-guide {
    right: 14%;
    width: 54%;
    opacity: .5;
}

.hero[data-hero-scene] .floor-guide-one {
    bottom: 31%;
}

.hero[data-hero-scene] .floor-guide-two {
    bottom: 51%;
}

.hero[data-hero-scene] .building {
    bottom: 11%;
    gap: 9px;
    padding: 18px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .82), rgba(232, 235, 239, .64)),
        linear-gradient(135deg, rgba(31, 111, 139, .38), rgba(255, 255, 255, .20));
    border-color: rgba(255, 255, 255, .62);
    box-shadow:
        0 28px 90px rgba(0, 0, 0, .28),
        inset 0 1px 0 rgba(255, 255, 255, .62);
    clip-path: polygon(0 12%, 100% 0, 100% 100%, 0 100%);
}

.hero[data-hero-scene] .building::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .20), transparent 24% 72%, rgba(0, 0, 0, .10)),
        repeating-linear-gradient(0deg, transparent 0 33px, rgba(16, 21, 27, .18) 33px 35px);
    pointer-events: none;
}

.hero[data-hero-scene] .building span {
    min-height: 20px;
    background:
        linear-gradient(135deg, rgba(10, 64, 89, .82), rgba(159, 212, 228, .88) 48%, rgba(255, 255, 255, .62));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .26);
    animation: windowGlow 3.8s ease-in-out infinite;
}

.hero[data-hero-scene] .building-back {
    right: 2%;
    width: 220px;
    height: 330px;
    opacity: .68;
    transform: translate3d(calc(var(--hero-progress) * 18px), calc(var(--hero-progress) * -14px), 0) scale(.96);
}

.hero[data-hero-scene] .building-front {
    right: 24%;
    width: 290px;
    height: 430px;
    animation: buildRise 1.18s cubic-bezier(.22, .72, .16, 1) both, buildingFloat 7s ease-in-out infinite 1.2s;
    transform: translate3d(calc(var(--hero-progress) * -12px), calc(var(--hero-progress) * -18px), 0);
}

.foundation {
    position: absolute;
    left: 18%;
    right: 3%;
    bottom: 8%;
    display: grid;
    gap: 7px;
    transform: skewX(-15deg);
}

.foundation span {
    display: block;
    height: 12px;
    background: linear-gradient(90deg, rgba(255, 255, 255, .68), rgba(244, 180, 26, .88), rgba(255, 255, 255, .26));
    border-radius: 8px;
    opacity: .76;
}

.foundation span:nth-child(2) {
    width: 76%;
    margin-left: 10%;
    opacity: .58;
}

.foundation span:nth-child(3) {
    width: 62%;
    margin-left: 22%;
    opacity: .42;
}

.hero[data-hero-scene] .site-line {
    left: 10%;
    right: 0;
    bottom: 5%;
    height: 12px;
    background: repeating-linear-gradient(90deg, var(--yellow) 0 38px, rgba(16, 21, 27, .82) 38px 70px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .24);
}

.hero[data-hero-scene] .hero-scroll {
    z-index: 5;
    bottom: 28px;
    display: grid;
    justify-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, .78);
    text-transform: uppercase;
}

.hero[data-hero-scene] .hero-scroll i {
    width: 18px;
    height: 28px;
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: 99px;
    position: relative;
}

.hero[data-hero-scene] .hero-scroll i::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 6px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--yellow);
    transform: translateX(-50%);
    animation: scrollDot 1.7s ease-in-out infinite;
}

.featured-projects {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, #fff 0%, #f6f8fa 100%);
}

.featured-projects::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(31, 111, 139, .08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(31, 111, 139, .07) 1px, transparent 1px);
    background-size: 76px 76px;
    mask-image: linear-gradient(180deg, transparent 0, #000 18%, transparent 88%);
}

.featured-projects > * {
    position: relative;
}

.featured-projects .section-heading {
    max-width: 840px;
}

.featured-projects .project-card {
    border-color: rgba(31, 111, 139, .14);
    background:
        linear-gradient(180deg, #fff, #f8fafb);
    box-shadow: 0 18px 54px rgba(16, 21, 27, .09);
}

.featured-projects .project-card img {
    aspect-ratio: 16 / 11;
}

.featured-projects .project-card-body {
    position: relative;
}

.featured-projects .project-card-body::before {
    content: "";
    position: absolute;
    left: 22px;
    right: 22px;
    top: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--yellow), var(--steel));
    border-radius: 8px;
}

.building-journey {
    --journey-progress: 0;
    --journey-rotate: -26deg;
    --journey-rotate-y: -28deg;
    --journey-tilt: 64deg;
    --journey-zoom: .92;
    --journey-building-scale: 1;
    --journey-scene-scale: 1;
    --journey-backdrop-scale: 1.02;
    --journey-shift-x: 0px;
    --journey-shift-y: 0px;
    --journey-grid-x: 0px;
    --journey-grid-y: 0px;
    --journey-copy-y: 0px;
    --journey-exterior-opacity: 1;
    --journey-interior-opacity: 0;
    --journey-interior-y: 42px;
    --journey-interior-scale: .92;
    position: relative;
    height: 360vh;
    color: #fff;
    background: #10151b;
    overflow: clip;
    isolation: isolate;
}

.journey-sticky {
    position: sticky;
    top: 0;
    min-height: 100svh;
    display: grid;
    grid-template-columns: minmax(320px, .72fr) minmax(520px, 1.28fr);
    gap: clamp(28px, 5vw, 76px);
    align-items: center;
    padding: 126px max(18px, calc((100vw - 1240px) / 2)) 72px;
    overflow: hidden;
}

.journey-backdrop {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(16, 21, 27, .97) 0%, rgba(16, 21, 27, .82) 42%, rgba(16, 21, 27, .48) 100%),
        linear-gradient(180deg, rgba(16, 21, 27, .86) 0%, rgba(16, 21, 27, .18) 52%, rgba(16, 21, 27, .96) 100%),
        var(--hero-image);
    background-size: cover;
    background-position: center;
    transform: scale(var(--journey-backdrop-scale));
    filter: saturate(1.02) contrast(1.05);
}

.journey-backdrop::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px),
        linear-gradient(135deg, transparent 0 49%, rgba(244, 180, 26, .12) 50%, transparent 51%);
    background-size: 92px 92px, 92px 92px, 360px 360px;
    opacity: .55;
    transform: translate3d(var(--journey-grid-x), var(--journey-grid-y), 0);
}

.journey-copy {
    position: relative;
    z-index: 3;
    max-width: 520px;
    transform: translate3d(0, var(--journey-copy-y), 0);
}

.journey-copy h2 {
    margin: 12px 0 18px;
    font-size: clamp(34px, 4.2vw, 58px);
    line-height: .98;
    text-wrap: balance;
}

.journey-copy p {
    color: rgba(255, 255, 255, .78);
    font-size: 17px;
}

.journey-steps {
    display: grid;
    gap: 8px;
    margin-top: 24px;
}

.journey-steps span {
    display: flex;
    align-items: center;
    gap: 12px;
    width: min(100%, 420px);
    padding: 11px 14px;
    color: rgba(255, 255, 255, .72);
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 8px;
    font-weight: 800;
    backdrop-filter: blur(14px);
    transition: color .28s ease, background .28s ease, border-color .28s ease, transform .28s ease;
}

.journey-steps b {
    color: var(--yellow);
    font-size: 13px;
}

.building-journey[data-journey-stage="landscape"] [data-journey-step="landscape"],
.building-journey[data-journey-stage="structure"] [data-journey-step="structure"],
.building-journey[data-journey-stage="interior"] [data-journey-step="interior"] {
    color: #fff;
    background: rgba(244, 180, 26, .17);
    border-color: rgba(244, 180, 26, .54);
    transform: translateX(8px);
}

.journey-viewport {
    position: relative;
    z-index: 2;
    min-height: min(76vh, 720px);
    perspective: 1300px;
}

.journey-scene {
    position: absolute;
    inset: 0;
    transform:
        translate3d(var(--journey-shift-x), var(--journey-shift-y), 0)
        scale(var(--journey-scene-scale));
    transform-style: preserve-3d;
    will-change: transform;
}

.journey-exterior {
    position: absolute;
    inset: 0;
    opacity: var(--journey-exterior-opacity);
    transform: scale(var(--journey-zoom));
    transform-style: preserve-3d;
    transition: opacity .18s linear;
    will-change: transform, opacity;
}

.landscape-plane {
    position: absolute;
    left: 50%;
    top: 56%;
    width: min(70vw, 760px);
    height: min(52vw, 560px);
    max-height: 560px;
    min-height: 380px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(53, 118, 91, .92), rgba(28, 80, 75, .86) 45%, rgba(36, 92, 70, .92)),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, .08) 0 1px, transparent 1px 38px);
    box-shadow:
        0 42px 120px rgba(0, 0, 0, .36),
        inset 0 0 0 1px rgba(255, 255, 255, .12);
    transform:
        translate(-50%, -50%)
        rotateX(var(--journey-tilt))
        rotateZ(var(--journey-rotate));
    transform-style: preserve-3d;
    will-change: transform;
}

.landscape-grid,
.road,
.garden,
.water-feature,
.tree,
.site-pin {
    position: absolute;
    display: block;
}

.landscape-grid {
    inset: 28px;
    opacity: .28;
    border: 1px solid rgba(255, 255, 255, .16);
    background-image:
        linear-gradient(rgba(255, 255, 255, .12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .12) 1px, transparent 1px);
    background-size: 48px 48px;
}

.road {
    background: rgba(226, 231, 229, .86);
    box-shadow: inset 0 0 0 1px rgba(16, 21, 27, .08);
}

.road-main {
    left: 6%;
    right: 6%;
    bottom: 16%;
    height: 34px;
    transform: skewX(-18deg);
}

.road-secondary {
    right: 20%;
    top: 9%;
    width: 30px;
    height: 74%;
    transform: skewY(-18deg);
}

.garden {
    border: 1px solid rgba(255, 255, 255, .22);
    background:
        repeating-linear-gradient(45deg, rgba(255, 255, 255, .18) 0 2px, transparent 2px 18px),
        linear-gradient(135deg, rgba(102, 168, 101, .82), rgba(48, 126, 83, .92));
    animation: gardenBreathe 5.8s ease-in-out infinite;
}

.garden-one {
    left: 9%;
    top: 12%;
    width: 22%;
    height: 24%;
    border-radius: 18px 46px 18px 34px;
}

.garden-two {
    right: 12%;
    bottom: 26%;
    width: 20%;
    height: 22%;
    border-radius: 46px 18px 34px 18px;
    animation-delay: 1.2s;
}

.water-feature {
    left: 16%;
    bottom: 27%;
    width: 24%;
    height: 12%;
    border: 1px solid rgba(255, 255, 255, .34);
    border-radius: 999px;
    background:
        linear-gradient(135deg, rgba(180, 226, 235, .78), rgba(31, 111, 139, .68));
    box-shadow: inset 0 8px 20px rgba(255, 255, 255, .22);
}

.tree {
    width: 18px;
    height: 18px;
    border: 3px solid rgba(255, 255, 255, .28);
    border-radius: 50%;
    background: #245f46;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .22);
    transform: translateZ(16px);
}

.tree::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    width: 4px;
    height: 14px;
    background: #8f642c;
    transform: translateX(-50%);
}

.tree-one {
    left: 9%;
    bottom: 16%;
}

.tree-two {
    left: 31%;
    top: 17%;
}

.tree-three {
    right: 12%;
    top: 22%;
}

.tree-four {
    right: 8%;
    bottom: 18%;
}

.tree-five {
    left: 46%;
    bottom: 10%;
}

.tree-six {
    left: 14%;
    top: 45%;
}

.site-pin {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--yellow);
    box-shadow: 0 0 0 0 rgba(244, 180, 26, .44);
    animation: pinPulse 2.4s ease-in-out infinite;
    transform: translateZ(26px);
}

.pin-one {
    right: 26%;
    top: 24%;
}

.pin-two {
    left: 36%;
    bottom: 28%;
    animation-delay: 1.1s;
}

.journey-building-model {
    position: absolute;
    left: 54%;
    top: 49%;
    width: 300px;
    height: 430px;
    transform:
        translate(-50%, -50%)
        rotateY(var(--journey-rotate-y))
        rotateX(-2deg)
        scale(var(--journey-building-scale));
    transform-style: preserve-3d;
    will-change: transform;
}

.tower {
    position: absolute;
    transform-style: preserve-3d;
}

.tower-main {
    left: 50%;
    bottom: 70px;
    width: 226px;
    height: 330px;
    transform: translateX(-50%);
}

.tower-face {
    position: absolute;
    inset: 0;
    display: grid;
    gap: 8px;
    padding: 18px;
    background:
        linear-gradient(135deg, rgba(240, 246, 247, .96), rgba(179, 211, 219, .86)),
        linear-gradient(180deg, rgba(255, 255, 255, .18), transparent);
    border: 1px solid rgba(255, 255, 255, .62);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .80),
        0 28px 90px rgba(0, 0, 0, .30);
}

.tower-front {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    transform: translateZ(48px);
}

.tower-side {
    left: auto;
    right: -94px;
    width: 96px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    background:
        linear-gradient(135deg, rgba(117, 160, 172, .92), rgba(72, 114, 130, .86));
    transform: rotateY(90deg) translateZ(48px);
    transform-origin: left center;
}

.tower-face span {
    min-height: 22px;
    background:
        linear-gradient(135deg, rgba(214, 247, 255, .96), rgba(73, 153, 181, .62) 48%, rgba(255, 255, 255, .80));
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, .32),
        0 0 20px rgba(137, 214, 230, .08);
    animation: towerGlass 4.6s ease-in-out infinite;
}

.tower-face span:nth-child(4n) {
    animation-delay: .4s;
}

.tower-face span:nth-child(5n) {
    animation-delay: .9s;
}

.tower-roof {
    position: absolute;
    left: 0;
    top: -72px;
    width: 226px;
    height: 96px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .90), rgba(128, 167, 177, .74));
    border: 1px solid rgba(255, 255, 255, .62);
    transform: rotateX(90deg) translateZ(48px);
    transform-origin: bottom center;
}

.tower-podium {
    left: 50%;
    bottom: 26px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    width: 320px;
    height: 74px;
    padding: 14px 18px;
    background:
        linear-gradient(135deg, rgba(244, 180, 26, .92), rgba(184, 97, 37, .84));
    border: 1px solid rgba(255, 255, 255, .42);
    box-shadow: 0 26px 72px rgba(0, 0, 0, .26);
    transform: translateX(-50%) translateZ(44px);
}

.tower-podium span {
    background: rgba(255, 255, 255, .38);
}

.entry-canopy {
    position: absolute;
    left: 50%;
    bottom: 82px;
    width: 104px;
    height: 16px;
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 12px 34px rgba(0, 0, 0, .26);
    transform: translateX(-50%) translateZ(76px);
}

.journey-interior {
    position: absolute;
    inset: 7% 0 0;
    display: grid;
    place-items: center;
    opacity: var(--journey-interior-opacity);
    transform:
        translate3d(0, var(--journey-interior-y), 0)
        scale(var(--journey-interior-scale));
    transition: opacity .18s linear;
    pointer-events: none;
}

.interior-shell {
    position: relative;
    width: min(62vw, 760px);
    height: min(62vh, 540px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .20);
    border-radius: 8px;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, .22), transparent 32% 68%, rgba(244, 180, 26, .14)),
        linear-gradient(180deg, rgba(214, 224, 228, .24) 0%, rgba(42, 59, 68, .84) 58%, rgba(17, 20, 25, .94) 100%);
    box-shadow:
        0 42px 120px rgba(0, 0, 0, .34),
        inset 0 1px 0 rgba(255, 255, 255, .26);
}

.interior-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .15) 0 1px, transparent 1px 18%),
        repeating-linear-gradient(90deg, transparent 0 86px, rgba(255, 255, 255, .12) 86px 88px);
    transform: perspective(720px) rotateX(58deg) translateY(42%);
    transform-origin: bottom center;
}

.interior-shell::after {
    content: "";
    position: absolute;
    left: -34%;
    top: 0;
    width: 34%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .28), transparent);
    animation: interiorSweep 5.8s ease-in-out infinite;
}

.interior-line {
    position: absolute;
    left: 50%;
    width: 1px;
    height: 130%;
    background: rgba(255, 255, 255, .18);
    transform-origin: bottom center;
}

.interior-line-one {
    bottom: -10%;
    transform: rotate(42deg);
}

.interior-line-two {
    bottom: -10%;
    transform: rotate(-42deg);
}

.interior-glass {
    position: absolute;
    inset: 8% 9% auto;
    height: 34%;
    border: 1px solid rgba(255, 255, 255, .20);
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .24), transparent 22% 78%, rgba(255, 255, 255, .18)),
        repeating-linear-gradient(90deg, transparent 0 84px, rgba(255, 255, 255, .20) 84px 86px);
    box-shadow: inset 0 -40px 80px rgba(31, 111, 139, .18);
}

.interior-column {
    position: absolute;
    top: 12%;
    bottom: 12%;
    width: 18px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .78), rgba(165, 177, 184, .82));
    box-shadow: 0 0 28px rgba(255, 255, 255, .18);
}

.column-one {
    left: 26%;
}

.column-two {
    right: 26%;
}

.interior-desk {
    position: absolute;
    left: 50%;
    bottom: 18%;
    width: 180px;
    height: 54px;
    border-radius: 8px 8px 4px 4px;
    background: linear-gradient(135deg, var(--yellow), #c98909);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .30);
    transform: translateX(-50%) perspective(260px) rotateX(18deg);
}

.interior-light {
    position: absolute;
    top: 18%;
    width: 90px;
    height: 1px;
    background: rgba(255, 255, 255, .84);
    box-shadow: 0 0 36px rgba(255, 255, 255, .34);
    animation: interiorLight 3.8s ease-in-out infinite;
}

.light-one {
    left: 23%;
}

.light-two {
    right: 23%;
    animation-delay: 1s;
}

@keyframes towerGlass {
    0%,
    100% {
        filter: brightness(1);
        opacity: .86;
    }
    50% {
        filter: brightness(1.18);
        opacity: 1;
    }
}

@keyframes gardenBreathe {
    0%,
    100% {
        filter: saturate(1);
    }
    50% {
        filter: saturate(1.18);
    }
}

@keyframes pinPulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(244, 180, 26, .42);
    }
    60% {
        box-shadow: 0 0 0 18px rgba(244, 180, 26, 0);
    }
}

@keyframes interiorSweep {
    0%,
    42% {
        transform: translateX(0);
        opacity: 0;
    }
    54% {
        opacity: .92;
    }
    100% {
        transform: translateX(430%);
        opacity: 0;
    }
}

@keyframes interiorLight {
    0%,
    100% {
        opacity: .45;
        transform: scaleX(.86);
    }
    50% {
        opacity: 1;
        transform: scaleX(1.08);
    }
}

@keyframes cinematicHeroDrift {
    from {
        background-position: 48% 50%;
    }
    to {
        background-position: 58% 48%;
    }
}

@keyframes premiumSweep {
    0%,
    42% {
        transform: translateX(0);
        opacity: 0;
    }
    54% {
        opacity: 1;
    }
    100% {
        transform: translateX(450%);
        opacity: 0;
    }
}

@keyframes beamTrace {
    0%,
    100% {
        opacity: .20;
        clip-path: inset(0 100% 0 0);
    }
    46%,
    64% {
        opacity: .92;
        clip-path: inset(0 0 0 0);
    }
}

@keyframes scanLevel {
    0%,
    100% {
        transform: translateY(-96px);
        opacity: .14;
    }
    50% {
        transform: translateY(106px);
        opacity: .95;
    }
}

@keyframes scrollDot {
    0% {
        opacity: 0;
        transform: translate(-50%, 0);
    }
    38% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translate(-50%, 12px);
    }
}

@media (max-width: 1080px) {
    .hero[data-hero-scene] .hero-inner {
        grid-template-columns: 1fr;
        align-content: start;
        padding-top: 128px;
    }

    .hero[data-hero-scene] .construction-visual {
        right: 4vw;
        bottom: 54px;
        width: min(72vw, 620px);
        min-height: 390px;
        opacity: .74;
    }

    .hero[data-hero-scene] .hero-copy {
        max-width: 720px;
    }

    .journey-sticky {
        grid-template-columns: 1fr;
        align-content: center;
        gap: 22px;
        padding-top: 112px;
    }

    .journey-copy {
        max-width: 780px;
    }

    .journey-copy h2 {
        max-width: 760px;
    }

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

    .journey-steps span {
        width: 100%;
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .journey-viewport {
        min-height: 52vh;
    }

    .landscape-plane {
        width: min(92vw, 760px);
        height: 470px;
    }

    .interior-shell {
        width: min(90vw, 760px);
    }
}

@media (max-width: 720px) {
    .hero[data-hero-scene] {
        min-height: 100svh;
    }

    .hero[data-hero-scene] .hero-inner {
        min-height: 100svh;
        padding-top: 116px;
        padding-bottom: 270px;
    }

    .hero[data-hero-scene] h1 {
        font-size: clamp(42px, 14vw, 68px);
    }

    .hero-line-meta,
    .hero-progress-track {
        max-width: 100%;
    }

    .hero[data-hero-scene] .construction-visual {
        right: -6vw;
        bottom: 50px;
        width: 100vw;
        min-height: 300px;
        opacity: .72;
        transform:
            perspective(820px)
            rotateY(-7deg)
            rotateX(3deg)
            scale(.78);
        transform-origin: right bottom;
    }

    .hero[data-hero-scene] .stage-badge,
    .hero[data-hero-scene] .sun {
        display: none;
    }

    .hero[data-hero-scene] .building-front {
        right: 27%;
        width: 220px;
        height: 310px;
    }

    .hero[data-hero-scene] .building-back {
        width: 170px;
        height: 245px;
    }

    .hero[data-hero-scene] .crane {
        transform: scale(.72);
        transform-origin: right top;
    }

    .building-journey {
        height: 310vh;
    }

    .journey-sticky {
        align-content: start;
        padding: 104px 18px 34px;
    }

    .journey-copy h2 {
        font-size: clamp(32px, 11vw, 48px);
    }

    .journey-copy p {
        font-size: 16px;
    }

    .journey-steps {
        grid-template-columns: 1fr;
        gap: 7px;
        margin-top: 18px;
    }

    .journey-steps span {
        flex-direction: row;
        align-items: center;
        min-height: 48px;
        padding: 10px 12px;
        font-size: 13px;
    }

    .journey-viewport {
        min-height: 52vh;
        margin-top: 8px;
    }

    .landscape-plane {
        width: 112vw;
        height: 360px;
        min-height: 330px;
    }

    .journey-building-model {
        width: 210px;
        height: 320px;
    }

    .tower-main {
        width: 168px;
        height: 248px;
    }

    .tower-front {
        transform: translateZ(36px);
    }

    .tower-side {
        right: -72px;
        width: 74px;
        transform: rotateY(90deg) translateZ(36px);
    }

    .tower-roof {
        top: -54px;
        width: 168px;
        height: 74px;
        transform: rotateX(90deg) translateZ(36px);
    }

    .tower-podium {
        width: 236px;
    }

    .interior-shell {
        width: 92vw;
        height: 390px;
    }
}

/* Premium building journey override */
.building-journey {
    --journey-photo-scale: 1.05;
    --journey-photo-x: 0px;
    --journey-photo-y: 0px;
    --journey-plan-opacity: .9;
    --journey-plan-rotate: -5deg;
    --journey-plan-y: 0px;
    --journey-landscape-opacity: .9;
    --journey-landscape-rotate: -2deg;
    height: 360vh;
    background: #0d1217;
}

.journey-sticky {
    grid-template-columns: minmax(340px, .72fr) minmax(560px, 1.28fr);
    gap: clamp(34px, 6vw, 92px);
    padding-top: 118px;
}

.journey-backdrop {
    background:
        linear-gradient(90deg, rgba(13, 18, 23, .96) 0%, rgba(13, 18, 23, .82) 39%, rgba(13, 18, 23, .45) 100%),
        linear-gradient(180deg, rgba(13, 18, 23, .84) 0%, rgba(13, 18, 23, .18) 50%, rgba(13, 18, 23, .98) 100%),
        var(--hero-image);
    background-size: cover;
    background-position: 62% center;
    filter: saturate(.92) contrast(1.12);
}

.journey-backdrop::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 72% 18%, rgba(244, 180, 26, .16), transparent 31%),
        radial-gradient(circle at 76% 74%, rgba(56, 137, 134, .18), transparent 34%);
    opacity: .82;
}

.journey-backdrop::after {
    background-image:
        linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px),
        linear-gradient(135deg, transparent 0 49.5%, rgba(244, 180, 26, .10) 50%, transparent 50.5%);
    background-size: 92px 92px, 92px 92px, 420px 420px;
    opacity: .48;
}

.journey-copy {
    max-width: 500px;
}

.journey-copy h2 {
    max-width: 500px;
    font-size: clamp(34px, 3.65vw, 54px);
    line-height: 1.02;
}

.journey-copy p {
    max-width: 480px;
    color: rgba(255, 255, 255, .80);
}

.journey-steps {
    gap: 10px;
}

.journey-steps span {
    min-height: 52px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, .075);
    border-color: rgba(255, 255, 255, .16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .07);
}

.journey-viewport {
    min-height: min(74vh, 720px);
    perspective: 1600px;
}

.journey-scene {
    inset: 0;
    transform:
        translate3d(var(--journey-shift-x), var(--journey-shift-y), 0)
        scale(var(--journey-scene-scale));
}

.journey-exterior {
    inset: 0;
    opacity: var(--journey-exterior-opacity);
    transform:
        perspective(1500px)
        rotateY(var(--journey-rotate-y))
        rotateX(2deg)
        scale(var(--journey-zoom));
    transform-origin: 58% 50%;
}

.journey-frame {
    position: absolute;
    display: block;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    background: rgba(255, 255, 255, .06);
    box-shadow:
        0 34px 95px rgba(0, 0, 0, .36),
        inset 0 1px 0 rgba(255, 255, 255, .14);
    transform-style: preserve-3d;
}

.journey-frame-exterior {
    inset: 2% 1% 10% 0;
}

.journey-frame-exterior img {
    position: absolute;
    inset: -6%;
    width: 112%;
    height: 112%;
    object-fit: cover;
    object-position: 63% center;
    transform:
        translate3d(var(--journey-photo-x), var(--journey-photo-y), 0)
        scale(var(--journey-photo-scale));
    will-change: transform;
}

.journey-frame-exterior::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(8, 12, 16, .34), transparent 32% 72%, rgba(8, 12, 16, .18)),
        linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(6, 10, 13, .20) 70%, rgba(6, 10, 13, .54));
}

.journey-image-shade {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, .18), transparent 18% 68%, rgba(244, 180, 26, .16)),
        radial-gradient(circle at 68% 18%, rgba(255, 255, 255, .22), transparent 24%);
    mix-blend-mode: screen;
    opacity: .78;
}

.journey-glass-sweep {
    position: absolute;
    z-index: 3;
    top: -15%;
    left: -32%;
    width: 24%;
    height: 130%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .34), transparent);
    transform: skewX(-18deg);
    animation: journeyGlassPass 6.4s ease-in-out infinite;
}

.journey-measure {
    position: absolute;
    z-index: 4;
    display: block;
    background: rgba(244, 180, 26, .92);
    box-shadow: 0 0 24px rgba(244, 180, 26, .24);
}

.measure-one {
    left: 9%;
    top: 16%;
    width: 30%;
    height: 2px;
}

.measure-two {
    right: 14%;
    top: 19%;
    width: 2px;
    height: 34%;
}

.measure-three {
    left: 12%;
    bottom: 17%;
    width: 44%;
    height: 2px;
}

.journey-plan {
    position: absolute;
    right: 3%;
    top: 4%;
    z-index: 8;
    width: min(31vw, 320px);
    aspect-ratio: 1.28;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .20);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .05)),
        rgba(14, 22, 26, .62);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .26);
    opacity: var(--journey-plan-opacity);
    transform:
        translateZ(120px)
        translate3d(0, var(--journey-plan-y), 0)
        rotate(var(--journey-plan-rotate));
    backdrop-filter: blur(18px);
}

.journey-plan img {
    position: absolute;
    inset: 13%;
    width: 74%;
    height: 74%;
    object-fit: contain;
    filter: invert(1) brightness(1.5) drop-shadow(0 0 18px rgba(255, 255, 255, .22));
    opacity: .86;
}

.journey-plan::before,
.journey-plan::after {
    content: "";
    position: absolute;
    inset: 0;
}

.journey-plan::before {
    background-image:
        linear-gradient(rgba(255, 255, 255, .10) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .10) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: .28;
}

.journey-plan::after {
    border: 1px solid rgba(244, 180, 26, .46);
    inset: 13px;
    border-radius: 6px;
    animation: journeyPlanGlow 3.8s ease-in-out infinite;
}

.journey-plan span {
    position: absolute;
    z-index: 2;
    height: 2px;
    background: rgba(244, 180, 26, .86);
}

.journey-plan span:first-of-type {
    left: 16%;
    right: 18%;
    top: 63%;
}

.journey-plan span:last-of-type {
    top: 24%;
    right: 28%;
    width: 2px;
    height: 52%;
}

.journey-landscape {
    position: absolute;
    left: 9%;
    right: 13%;
    bottom: 0;
    z-index: 7;
    height: 138px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(54, 116, 90, .72), rgba(17, 76, 79, .48)),
        linear-gradient(180deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .02));
    box-shadow:
        0 28px 65px rgba(0, 0, 0, .24),
        inset 0 1px 0 rgba(255, 255, 255, .18);
    opacity: var(--journey-landscape-opacity);
    transform:
        translateZ(86px)
        perspective(880px)
        rotateX(64deg)
        rotateZ(var(--journey-landscape-rotate));
    transform-origin: center bottom;
    backdrop-filter: blur(7px);
}

.journey-landscape::before {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(255, 255, 255, .16);
    background-image:
        linear-gradient(rgba(255, 255, 255, .13) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .13) 1px, transparent 1px);
    background-size: 46px 46px;
    opacity: .38;
}

.landscape-axis,
.landscape-green,
.landscape-water {
    position: absolute;
    z-index: 2;
    display: block;
}

.landscape-axis {
    background: rgba(243, 247, 245, .88);
    box-shadow: inset 0 0 0 1px rgba(16, 21, 27, .08);
}

.axis-main {
    left: 6%;
    right: 6%;
    bottom: 28%;
    height: 12px;
    transform: skewX(-16deg);
}

.axis-side {
    right: 25%;
    top: 13%;
    width: 10px;
    height: 70%;
    transform: skewY(-16deg);
}

.landscape-green {
    border: 1px solid rgba(255, 255, 255, .22);
    background:
        repeating-linear-gradient(45deg, rgba(255, 255, 255, .12) 0 1px, transparent 1px 14px),
        linear-gradient(135deg, rgba(124, 169, 103, .78), rgba(55, 132, 92, .78));
}

.green-one {
    left: 12%;
    top: 18%;
    width: 23%;
    height: 30%;
    border-radius: 8px 32px 8px 22px;
}

.green-two {
    right: 10%;
    bottom: 26%;
    width: 21%;
    height: 28%;
    border-radius: 32px 8px 24px 8px;
}

.landscape-water {
    left: 23%;
    bottom: 44%;
    width: 20%;
    height: 14px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(190, 229, 233, .80), rgba(52, 140, 155, .58));
    animation: journeyLandscapeTrace 4.8s ease-in-out infinite;
}

.journey-interior {
    inset: 3% 1% 8% 0;
    display: block;
    z-index: 10;
    opacity: var(--journey-interior-opacity);
    transform:
        perspective(1400px)
        translate3d(0, var(--journey-interior-y), 130px)
        scale(var(--journey-interior-scale));
    transform-origin: center center;
}

.interior-shell {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 520px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .20);
    border-radius: 8px;
    background:
        radial-gradient(circle at 50% 22%, rgba(255, 255, 255, .20), transparent 23%),
        linear-gradient(120deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .03) 45%, rgba(244, 180, 26, .12)),
        linear-gradient(180deg, rgba(34, 47, 54, .86), rgba(11, 15, 18, .98));
    box-shadow:
        0 44px 120px rgba(0, 0, 0, .38),
        inset 0 1px 0 rgba(255, 255, 255, .20);
}

.interior-shell img {
    position: absolute;
    inset: -8%;
    width: 116%;
    height: 116%;
    object-fit: cover;
    object-position: 64% center;
    filter: blur(5px) saturate(.72) brightness(.50);
    opacity: .46;
    transform: scale(1.07);
}

.interior-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .10) 0 1px, transparent 1px 18%),
        repeating-linear-gradient(90deg, transparent 0 106px, rgba(255, 255, 255, .12) 106px 108px),
        linear-gradient(90deg, rgba(255, 255, 255, .10), transparent 18% 82%, rgba(255, 255, 255, .09));
    transform: perspective(740px) rotateX(61deg) translateY(41%);
    transform-origin: bottom center;
}

.interior-shell::after {
    content: "";
    position: absolute;
    z-index: 7;
    top: -18%;
    left: -34%;
    width: 26%;
    height: 136%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .30), transparent);
    transform: skewX(-18deg);
    animation: journeyGlassPass 5.7s ease-in-out infinite;
}

.interior-depth {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: -11%;
    width: 1px;
    height: 132%;
    background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .34), rgba(244, 180, 26, .12));
    transform-origin: bottom center;
}

.depth-one {
    transform: rotate(43deg);
}

.depth-two {
    transform: rotate(-43deg);
}

.interior-glass-wall {
    position: absolute;
    z-index: 4;
    inset: 9% 8% auto;
    height: 34%;
    border: 1px solid rgba(255, 255, 255, .18);
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .22), transparent 24% 76%, rgba(255, 255, 255, .16)),
        repeating-linear-gradient(90deg, transparent 0 92px, rgba(255, 255, 255, .22) 92px 94px);
    box-shadow: inset 0 -38px 80px rgba(47, 117, 130, .18);
}

.interior-lobby-core {
    position: absolute;
    z-index: 5;
    left: 50%;
    bottom: 16%;
    width: min(32%, 245px);
    height: 78px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(244, 180, 26, .96), rgba(159, 91, 44, .92)),
        linear-gradient(180deg, rgba(255, 255, 255, .18), transparent);
    box-shadow: 0 28px 70px rgba(0, 0, 0, .36);
    transform: translateX(-50%) perspective(360px) rotateX(17deg);
    animation: journeyLobbyGlow 4.2s ease-in-out infinite;
}

.interior-ceiling-line {
    position: absolute;
    z-index: 5;
    top: 17%;
    width: 112px;
    height: 1px;
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 0 34px rgba(255, 255, 255, .30);
}

.ceiling-one {
    left: 22%;
}

.ceiling-two {
    right: 22%;
}

.interior-floor-light {
    position: absolute;
    z-index: 6;
    left: 50%;
    bottom: 8%;
    width: min(58%, 480px);
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(244, 180, 26, .90), transparent);
    box-shadow: 0 0 38px rgba(244, 180, 26, .28);
    transform: translateX(-50%);
}

@keyframes journeyGlassPass {
    0%,
    42% {
        opacity: 0;
        transform: translateX(0) skewX(-18deg);
    }
    54% {
        opacity: .92;
    }
    100% {
        opacity: 0;
        transform: translateX(470%) skewX(-18deg);
    }
}

@keyframes journeyPlanGlow {
    0%,
    100% {
        opacity: .42;
    }
    50% {
        opacity: .86;
    }
}

@keyframes journeyLandscapeTrace {
    0%,
    100% {
        filter: brightness(1);
        transform: scaleX(.92);
    }
    50% {
        filter: brightness(1.18);
        transform: scaleX(1.04);
    }
}

@keyframes journeyLobbyGlow {
    0%,
    100% {
        box-shadow: 0 28px 70px rgba(0, 0, 0, .36);
    }
    50% {
        box-shadow:
            0 28px 70px rgba(0, 0, 0, .36),
            0 0 34px rgba(244, 180, 26, .20);
    }
}

@media (max-width: 1080px) {
    .journey-sticky {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-top: 104px;
    }

    .journey-copy,
    .journey-copy h2,
    .journey-copy p {
        max-width: 780px;
    }

    .journey-viewport {
        min-height: 56vh;
    }

    .journey-plan {
        width: min(42vw, 300px);
    }
}

@media (max-width: 720px) {
    .building-journey {
        height: 320vh;
    }

    .journey-sticky {
        padding: 98px 18px 34px;
    }

    .journey-copy h2 {
        font-size: clamp(31px, 10vw, 46px);
    }

    .journey-viewport {
        min-height: 50vh;
    }

    .journey-frame-exterior {
        inset: 0 0 14% 0;
    }

    .journey-plan {
        top: 2%;
        right: 2%;
        width: min(48vw, 220px);
    }

    .journey-landscape {
        left: 4%;
        right: 6%;
        height: 102px;
    }

    .journey-interior {
        inset: 0 0 12% 0;
    }

    .interior-shell {
        min-height: 360px;
    }

    .interior-glass-wall {
        inset: 10% 6% auto;
        height: 31%;
    }

    .interior-lobby-core {
        width: min(42%, 200px);
        height: 60px;
    }
}

/* Premium hero visual override */
.hero[data-hero-scene] .construction-visual {
    right: max(22px, calc((100vw - 1240px) / 2));
    bottom: 78px;
    width: min(42vw, 570px);
    min-height: 430px;
    opacity: .82;
    transform:
        perspective(1260px)
        rotateY(-8deg)
        rotateX(4deg)
        translate3d(0, calc(var(--hero-progress) * -20px), 0);
    transform-origin: right center;
}

.hero[data-hero-scene] .construction-visual::before {
    content: "";
    position: absolute;
    inset: 9% 4% 11% 3%;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .03) 44%, rgba(244, 180, 26, .12)),
        linear-gradient(rgba(255, 255, 255, .09) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .09) 1px, transparent 1px),
        rgba(9, 17, 22, .20);
    background-size: auto, 42px 42px, 42px 42px, auto;
    box-shadow:
        0 30px 100px rgba(0, 0, 0, .26),
        inset 0 1px 0 rgba(255, 255, 255, .18);
    backdrop-filter: blur(5px);
}

.hero[data-hero-scene] .construction-visual::after {
    content: "";
    position: absolute;
    inset: 15% 10% 18% 12%;
    border: 1px solid rgba(244, 180, 26, .46);
    border-radius: 8px;
    background:
        radial-gradient(circle at 72% 26%, rgba(244, 180, 26, .20), transparent 24%),
        var(--blueprint-image) center / 46% auto no-repeat;
    filter: drop-shadow(0 0 28px rgba(255, 255, 255, .10));
    opacity: .92;
}

.hero[data-hero-scene] .building,
.hero[data-hero-scene] .foundation,
.hero[data-hero-scene] .floor-guide,
.hero[data-hero-scene] .sun {
    display: none;
}

.hero[data-hero-scene] .visual-grid {
    inset: 9% 4% 11% 3%;
    opacity: .42;
    border-radius: 8px;
    mask-image: linear-gradient(90deg, transparent, #000 18% 82%, transparent);
}

.hero[data-hero-scene] .site-depth {
    inset: auto 9% 12% 9%;
    height: 118px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(61, 125, 95, .44), rgba(26, 76, 83, .26)),
        linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .02));
    transform: perspective(760px) rotateX(62deg);
    transform-origin: center bottom;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .22);
}

.hero[data-hero-scene] .crane {
    top: 1%;
    right: 0;
    opacity: .42;
    transform: scale(.74);
    transform-origin: right top;
}

.hero[data-hero-scene] .stage-badge {
    left: 9%;
    right: auto;
    top: auto;
    bottom: 17%;
    width: min(56%, 250px);
    background: rgba(9, 17, 22, .54);
    border-color: rgba(255, 255, 255, .18);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .22);
}

.hero[data-hero-scene] .site-line {
    left: 12%;
    right: 16%;
    bottom: 16%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(244, 180, 26, .94), rgba(255, 255, 255, .74), transparent);
    box-shadow: 0 0 24px rgba(244, 180, 26, .25);
}

.hero[data-hero-scene] .site-scanline {
    left: 11%;
    right: 16%;
    opacity: .64;
}

.hero[data-hero-scene] .blueprint-beam {
    opacity: .52;
}

@media (max-width: 1080px) {
    .hero[data-hero-scene] .construction-visual {
        right: 4vw;
        bottom: 54px;
        width: min(68vw, 620px);
        min-height: 350px;
        opacity: .72;
    }
}

@media (max-width: 720px) {
    .hero[data-hero-scene] .construction-visual {
        right: -7vw;
        bottom: 58px;
        width: 98vw;
        min-height: 260px;
        opacity: .46;
        transform:
            perspective(900px)
            rotateY(-7deg)
            rotateX(4deg)
            scale(.82);
    }

    .hero[data-hero-scene] .construction-visual::after,
    .hero[data-hero-scene] .stage-badge {
        display: none;
    }
}

.hero[data-hero-scene] .stage-badge {
    display: none;
}

/* Fast premium journey scene */
.building-journey {
    --journey-stage-time: 7.2s;
    position: relative;
    height: auto;
    min-height: 0;
    padding: 0;
    color: #fff;
    background: #0e1419;
    overflow: hidden;
    isolation: isolate;
    content-visibility: auto;
    contain-intrinsic-size: 920px;
}

.building-journey .journey-backdrop {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(10, 15, 20, .96) 0%, rgba(10, 15, 20, .80) 42%, rgba(10, 15, 20, .54) 100%),
        linear-gradient(180deg, rgba(10, 15, 20, .82) 0%, rgba(10, 15, 20, .16) 52%, rgba(10, 15, 20, .94) 100%),
        var(--hero-image);
    background-size: cover;
    background-position: 64% center;
    filter: saturate(.92) contrast(1.08);
    transform: none;
}

.building-journey .journey-backdrop::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 70% 20%, rgba(244, 180, 26, .14), transparent 32%),
        linear-gradient(115deg, rgba(244, 180, 26, .08), transparent 34% 68%, rgba(59, 128, 132, .14));
}

.building-journey .journey-backdrop::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 84px 84px;
    opacity: .50;
    transform: none;
}

.building-journey .journey-sticky {
    position: relative;
    top: auto;
    min-height: auto;
    display: grid;
    grid-template-columns: minmax(320px, .72fr) minmax(520px, 1.28fr);
    gap: clamp(34px, 5vw, 78px);
    align-items: center;
    padding: clamp(82px, 9vw, 126px) max(18px, calc((100vw - 1240px) / 2));
    overflow: visible;
}

.building-journey .journey-copy {
    max-width: 510px;
    transform: none;
}

.building-journey .journey-copy h2 {
    max-width: 510px;
    margin: 12px 0 18px;
    font-size: clamp(34px, 3.55vw, 54px);
    line-height: 1.04;
}

.building-journey .journey-copy p {
    max-width: 480px;
    color: rgba(255, 255, 255, .80);
}

.building-journey .journey-steps {
    display: grid;
    gap: 10px;
    margin-top: 26px;
}

.building-journey .journey-steps span {
    position: relative;
    display: grid;
    grid-template-columns: 38px 1fr;
    column-gap: 12px;
    row-gap: 2px;
    width: min(100%, 430px);
    min-height: 72px;
    align-items: center;
    padding: 13px 15px;
    color: rgba(255, 255, 255, .72);
    background: rgba(255, 255, 255, .075);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 8px;
    font-weight: 800;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
    backdrop-filter: none;
    transform: none;
    transition: border-color .28s ease, background .28s ease, color .28s ease;
    animation: journeyStepPulse var(--journey-stage-time) ease-in-out infinite paused;
}

.building-journey.is-active .journey-steps span {
    animation-play-state: running;
}

.building-journey .journey-steps span:nth-child(2) {
    animation-delay: 2.4s;
}

.building-journey .journey-steps span:nth-child(3) {
    animation-delay: 4.8s;
}

.building-journey .journey-steps b {
    align-self: start;
    color: var(--yellow);
    font-size: 13px;
    padding-top: 2px;
}

.building-journey .journey-steps strong {
    color: #fff;
    font-size: 16px;
}

.building-journey .journey-steps small {
    grid-column: 2;
    color: rgba(255, 255, 255, .58);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
}

.building-journey .journey-viewport {
    position: relative;
    z-index: 2;
    min-height: min(68vh, 640px);
    perspective: 1200px;
    contain: layout paint;
}

.building-journey .journey-scene {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: min(68vh, 640px);
    transform: none;
    transform-style: preserve-3d;
    will-change: auto;
}

.building-journey .journey-frame,
.building-journey .journey-plan,
.building-journey .journey-landscape,
.building-journey .journey-interior {
    border-radius: 8px;
    backface-visibility: hidden;
}

.building-journey .journey-frame-exterior {
    position: absolute;
    inset: 0 0 0 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .05);
    box-shadow:
        0 34px 95px rgba(0, 0, 0, .34),
        inset 0 1px 0 rgba(255, 255, 255, .16);
    opacity: 0;
    transform: translate3d(22px, 18px, 0) scale(.97);
    transition: opacity .55s ease, transform .70s cubic-bezier(.2, .8, .2, 1);
}

.building-journey.is-active .journey-frame-exterior {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.building-journey .journey-frame-exterior img {
    position: absolute;
    inset: -4%;
    width: 108%;
    height: 108%;
    object-fit: cover;
    object-position: 64% center;
    transform: scale(1.04);
    animation: journeyPhotoDrift 14s ease-in-out infinite paused;
}

.building-journey.is-active .journey-frame-exterior img {
    animation-play-state: running;
}

.building-journey .journey-frame-exterior::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(8, 12, 16, .38), transparent 34% 70%, rgba(8, 12, 16, .20)),
        linear-gradient(180deg, rgba(255, 255, 255, .05), transparent 45%, rgba(6, 10, 13, .48));
}

.building-journey .journey-image-shade {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, .16), transparent 18% 68%, rgba(244, 180, 26, .14)),
        radial-gradient(circle at 70% 20%, rgba(255, 255, 255, .20), transparent 23%);
    mix-blend-mode: screen;
    opacity: .72;
}

.building-journey .journey-facade-grid {
    position: absolute;
    z-index: 3;
    right: 7%;
    top: 13%;
    width: 43%;
    height: 56%;
    border: 1px solid rgba(255, 255, 255, .22);
    background:
        repeating-linear-gradient(90deg, transparent 0 54px, rgba(255, 255, 255, .24) 54px 56px),
        repeating-linear-gradient(180deg, transparent 0 42px, rgba(255, 255, 255, .20) 42px 44px),
        linear-gradient(135deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .03));
    box-shadow: inset 0 0 0 1px rgba(244, 180, 26, .14);
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .55s ease .30s, transform .55s ease .30s;
}

.building-journey.is-active .journey-facade-grid {
    opacity: .82;
    transform: translateY(0);
}

.building-journey .journey-glass-sweep {
    position: absolute;
    z-index: 4;
    top: -18%;
    left: -28%;
    width: 22%;
    height: 136%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .28), transparent);
    transform: skewX(-18deg);
    animation: journeyGlassPass 7.2s ease-in-out infinite paused;
}

.building-journey.is-active .journey-glass-sweep {
    animation-play-state: running;
}

.building-journey .journey-plan {
    position: absolute;
    right: 5%;
    top: 6%;
    z-index: 8;
    width: min(28vw, 285px);
    aspect-ratio: 1.28;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .20);
    background: rgba(16, 24, 29, .66);
    box-shadow: 0 20px 58px rgba(0, 0, 0, .25);
    opacity: 0;
    transform: translate3d(0, -16px, 80px) rotate(-4deg) scale(.96);
    transition: opacity .55s ease .18s, transform .70s cubic-bezier(.2, .8, .2, 1) .18s;
    backdrop-filter: none;
}

.building-journey.is-active .journey-plan {
    opacity: .94;
    transform: translate3d(0, 0, 80px) rotate(-2deg) scale(1);
}

.building-journey .journey-plan img {
    position: absolute;
    inset: 15%;
    width: 70%;
    height: 70%;
    object-fit: contain;
    filter: invert(1) brightness(1.4) drop-shadow(0 0 16px rgba(255, 255, 255, .20));
    opacity: .82;
}

.building-journey .journey-plan::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .10) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .10) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: .24;
}

.building-journey .journey-plan::after {
    content: "";
    position: absolute;
    inset: 13px;
    border: 1px solid rgba(244, 180, 26, .46);
    border-radius: 6px;
}

.building-journey .journey-plan span {
    position: absolute;
    z-index: 2;
    display: block;
    background: rgba(244, 180, 26, .86);
}

.building-journey .journey-plan span:first-of-type {
    left: 16%;
    right: 18%;
    top: 63%;
    height: 2px;
}

.building-journey .journey-plan span:last-of-type {
    top: 24%;
    right: 28%;
    width: 2px;
    height: 52%;
}

.building-journey .journey-landscape {
    position: absolute;
    top: auto;
    left: 6%;
    right: auto;
    bottom: 7%;
    z-index: 7;
    width: min(62%, 490px);
    height: 118px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .18);
    background:
        linear-gradient(135deg, rgba(62, 130, 94, .68), rgba(25, 85, 88, .50)),
        linear-gradient(180deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .02));
    box-shadow:
        0 22px 54px rgba(0, 0, 0, .24),
        inset 0 1px 0 rgba(255, 255, 255, .16);
    opacity: 0;
    transform: translate3d(0, 24px, 64px) perspective(760px) rotateX(60deg);
    transform-origin: center bottom;
    transition: opacity .55s ease .42s, transform .70s cubic-bezier(.2, .8, .2, 1) .42s;
    backdrop-filter: none;
}

.building-journey.is-active .journey-landscape {
    opacity: .94;
    transform: translate3d(0, 0, 64px) perspective(760px) rotateX(60deg);
}

.building-journey .journey-landscape::before {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(255, 255, 255, .16);
    background-image:
        linear-gradient(rgba(255, 255, 255, .13) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .13) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: .32;
}

.building-journey .landscape-axis,
.building-journey .landscape-green,
.building-journey .landscape-water {
    position: absolute;
    z-index: 2;
    display: block;
}

.building-journey .landscape-axis {
    background: rgba(243, 247, 245, .86);
}

.building-journey .axis-main {
    left: 6%;
    right: 6%;
    bottom: 28%;
    height: 10px;
    transform: skewX(-16deg);
}

.building-journey .axis-side {
    right: 25%;
    top: 14%;
    width: 9px;
    height: 69%;
    transform: skewY(-16deg);
}

.building-journey .landscape-green {
    border: 1px solid rgba(255, 255, 255, .20);
    background:
        repeating-linear-gradient(45deg, rgba(255, 255, 255, .10) 0 1px, transparent 1px 13px),
        linear-gradient(135deg, rgba(131, 174, 105, .74), rgba(55, 132, 92, .78));
}

.building-journey .green-one {
    left: 12%;
    top: 18%;
    width: 23%;
    height: 30%;
    border-radius: 8px 30px 8px 22px;
}

.building-journey .green-two {
    right: 10%;
    bottom: 26%;
    width: 21%;
    height: 28%;
    border-radius: 30px 8px 24px 8px;
}

.building-journey .landscape-water {
    left: 23%;
    bottom: 44%;
    width: 20%;
    height: 13px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(190, 229, 233, .78), rgba(52, 140, 155, .58));
}

.building-journey .journey-interior {
    position: absolute;
    top: auto;
    left: auto;
    right: 5%;
    bottom: 8%;
    z-index: 9;
    width: min(39%, 350px);
    height: min(42%, 255px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .20);
    background:
        radial-gradient(circle at 50% 22%, rgba(255, 255, 255, .18), transparent 24%),
        linear-gradient(120deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .03) 45%, rgba(244, 180, 26, .11)),
        linear-gradient(180deg, rgba(34, 47, 54, .86), rgba(11, 15, 18, .96));
    box-shadow:
        0 28px 78px rgba(0, 0, 0, .34),
        inset 0 1px 0 rgba(255, 255, 255, .20);
    opacity: 0;
    pointer-events: none;
    transform: translate3d(18px, 18px, 96px) scale(.95);
    transition: opacity .55s ease .68s, transform .70s cubic-bezier(.2, .8, .2, 1) .68s;
}

.building-journey.is-active .journey-interior {
    opacity: .96;
    transform: translate3d(0, 0, 96px) scale(1);
}

.building-journey .interior-photo {
    position: absolute;
    inset: -12%;
    background: var(--hero-image) 64% center / cover no-repeat;
    filter: blur(4px) saturate(.70) brightness(.46);
    opacity: .44;
    transform: scale(1.06);
}

.building-journey .interior-depth {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: -12%;
    width: 1px;
    height: 135%;
    background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .32), rgba(244, 180, 26, .12));
    transform-origin: bottom center;
}

.building-journey .depth-one {
    transform: rotate(42deg);
}

.building-journey .depth-two {
    transform: rotate(-42deg);
}

.building-journey .interior-glass-wall {
    position: absolute;
    z-index: 4;
    inset: 12% 8% auto;
    height: 34%;
    border: 1px solid rgba(255, 255, 255, .18);
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .21), transparent 24% 76%, rgba(255, 255, 255, .15)),
        repeating-linear-gradient(90deg, transparent 0 64px, rgba(255, 255, 255, .22) 64px 66px);
    box-shadow: inset 0 -32px 60px rgba(47, 117, 130, .16);
}

.building-journey .interior-lobby-core {
    position: absolute;
    z-index: 5;
    left: 50%;
    bottom: 17%;
    width: min(38%, 150px);
    height: 52px;
    border: 1px solid rgba(255, 255, 255, .22);
    background:
        linear-gradient(135deg, rgba(244, 180, 26, .94), rgba(159, 91, 44, .90)),
        linear-gradient(180deg, rgba(255, 255, 255, .16), transparent);
    box-shadow: 0 22px 54px rgba(0, 0, 0, .32);
    transform: translateX(-50%) perspective(300px) rotateX(16deg);
}

.building-journey .interior-floor-light {
    position: absolute;
    z-index: 6;
    left: 50%;
    bottom: 8%;
    width: min(64%, 260px);
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(244, 180, 26, .90), transparent);
    box-shadow: 0 0 32px rgba(244, 180, 26, .25);
    transform: translateX(-50%);
}

@keyframes journeyPhotoDrift {
    0%,
    100% {
        transform: scale(1.04) translate3d(0, 0, 0);
    }
    50% {
        transform: scale(1.075) translate3d(-12px, -8px, 0);
    }
}

@keyframes journeyStepPulse {
    0%,
    24%,
    100% {
        color: rgba(255, 255, 255, .72);
        background: rgba(255, 255, 255, .075);
        border-color: rgba(255, 255, 255, .14);
    }
    8%,
    18% {
        color: #fff;
        background: rgba(244, 180, 26, .16);
        border-color: rgba(244, 180, 26, .50);
    }
}

@media (max-width: 1080px) {
    .building-journey .journey-sticky {
        grid-template-columns: 1fr;
        padding-top: 94px;
        padding-bottom: 78px;
    }

    .building-journey .journey-copy,
    .building-journey .journey-copy h2,
    .building-journey .journey-copy p {
        max-width: 780px;
    }

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

    .building-journey .journey-steps span {
        width: 100%;
        min-height: 104px;
        align-content: start;
    }

    .building-journey .journey-viewport,
    .building-journey .journey-scene {
        min-height: 520px;
    }
}

@media (max-width: 720px) {
    .building-journey .journey-sticky {
        padding: 62px 18px 50px;
        gap: 16px;
    }

    .building-journey .journey-copy h2 {
        font-size: clamp(28px, 8.2vw, 38px);
        line-height: 1.07;
        margin-bottom: 12px;
    }

    .building-journey .journey-copy p {
        font-size: 14px;
        line-height: 1.55;
    }

    .building-journey .journey-steps {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-top: 16px;
    }

    .building-journey .journey-steps span {
        min-height: 58px;
        padding: 11px 12px;
    }

    .building-journey .journey-steps small {
        font-size: 12px;
    }

    .building-journey .journey-viewport,
    .building-journey .journey-scene {
        min-height: 360px;
    }

    .building-journey .journey-plan {
        right: 4%;
        top: 5%;
        width: min(43vw, 205px);
    }

    .building-journey .journey-landscape {
        left: 4%;
        bottom: 8%;
        width: 64%;
        height: 92px;
    }

    .building-journey .journey-interior {
        right: 4%;
        bottom: 10%;
        width: 44%;
        height: 34%;
    }

    .building-journey .journey-facade-grid {
        right: 6%;
        width: 50%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .building-journey .journey-frame-exterior,
    .building-journey .journey-plan,
    .building-journey .journey-landscape,
    .building-journey .journey-interior {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .building-journey .journey-frame-exterior img,
    .building-journey .journey-glass-sweep,
    .building-journey .journey-steps span {
        animation: none;
    }
}

.building-journey .journey-plan {
    background: rgba(18, 38, 49, .74);
}

.building-journey .journey-plan img {
    inset: 12%;
    width: 76%;
    height: 76%;
    filter: drop-shadow(0 0 18px rgba(217, 240, 247, .18));
    opacity: .78;
}

.building-journey .journey-landscape {
    height: 96px;
    background:
        linear-gradient(135deg, rgba(62, 130, 94, .34), rgba(25, 85, 88, .24)),
        linear-gradient(180deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .015));
}

.building-journey .landscape-axis {
    background: rgba(243, 247, 245, .60);
}

.building-journey .landscape-green {
    background:
        repeating-linear-gradient(45deg, rgba(255, 255, 255, .08) 0 1px, transparent 1px 13px),
        linear-gradient(135deg, rgba(131, 174, 105, .42), rgba(55, 132, 92, .46));
}

.building-journey .landscape-water {
    opacity: .68;
}

.building-journey .interior-lobby-core {
    bottom: 20%;
    width: min(58%, 210px);
    height: 2px;
    border: 0;
    border-radius: 0;
    background: linear-gradient(90deg, transparent, rgba(244, 180, 26, .92), rgba(255, 255, 255, .70), transparent);
    box-shadow: 0 0 28px rgba(244, 180, 26, .28);
    transform: translateX(-50%);
}
