:root {
    --ink: #151719;
    --white: #ffffff;
    --soft-white: rgba(255, 255, 255, 0.78);
    --line: rgba(255, 255, 255, 0.16);
    --accent: #c9682c;
    --accent-bright: #f28a3a;
    --green: #7c9b65;
    --night: #111214;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--white);
    background: var(--night);
}

a {
    color: inherit;
}

.home-stack {
    width: 100%;
    overflow: hidden;
}

.tour-scene {
    position: relative;
    min-height: 100vh;
    display: grid;
    align-items: end;
    overflow: hidden;
    isolation: isolate;
    background: var(--night);
}

.scene-media,
.preview-fallback,
.preview-viewer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.scene-media {
    z-index: 0;
    min-height: 100%;
    overflow: hidden;
    background: #151719;
}

.preview-fallback {
    display: block;
    object-fit: cover;
    object-position: center;
}

.preview-viewer {
    opacity: 0;
    transition: opacity 0.35s ease;
}

.preview-frame.is-loaded .preview-viewer {
    opacity: 1;
}

.preview-frame.is-loaded .preview-fallback {
    opacity: 0;
}

.scene-shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(14, 15, 16, 0.9) 0%, rgba(14, 15, 16, 0.58) 34%, rgba(14, 15, 16, 0.16) 68%, rgba(14, 15, 16, 0.34) 100%),
        linear-gradient(0deg, rgba(14, 15, 16, 0.94) 0%, rgba(14, 15, 16, 0.1) 38%, rgba(14, 15, 16, 0.45) 100%);
}

.indoor-scene .scene-shade {
    background:
        linear-gradient(90deg, rgba(248, 246, 240, 0.88) 0%, rgba(248, 246, 240, 0.56) 36%, rgba(248, 246, 240, 0.14) 72%, rgba(21, 23, 25, 0.16) 100%),
        linear-gradient(0deg, rgba(248, 246, 240, 0.9) 0%, rgba(248, 246, 240, 0.05) 45%, rgba(21, 23, 25, 0.2) 100%);
}

.site-signature {
    position: absolute;
    top: clamp(18px, 3.5vw, 40px);
    left: clamp(16px, 4vw, 58px);
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 14px 24px;
    color: white;
    background: rgba(0, 0, 0, 0.34);
    border: 1px solid rgba(255, 255, 255, 0.14);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}

.brand-signature {
    position: absolute;
    top: clamp(18px, 6vh, 64px);
    left: clamp(16px, 4vw, 58px);
    isolation: isolate;
    width: clamp(260px, 26vw, 400px);
    padding: 12px 18px;
    overflow: visible;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(216, 222, 229, 0.52)),
        rgba(242, 244, 247, 0.46);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    box-shadow:
        0 18px 46px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.72);
    -webkit-backdrop-filter: blur(18px) saturate(1.12);
    backdrop-filter: blur(18px) saturate(1.12);
    text-decoration: none;
}

.brand-signature::before,
.brand-signature::after {
    content: "";
    position: absolute;
    top: 16%;
    bottom: 16%;
    z-index: 0;
    width: 86px;
    pointer-events: none;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.86) 0%, rgba(232, 237, 243, 0.5) 40%, rgba(255, 255, 255, 0) 72%);
    filter: blur(17px);
    opacity: 0.9;
}

.brand-signature::before {
    left: -42px;
}

.brand-signature::after {
    right: -42px;
}

.ersa-logo {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.46)) drop-shadow(0 2px 5px rgba(0, 0, 0, 0.34));
}

.whatsapp-contact {
    position: absolute;
    top: clamp(16px, 3.4vw, 42px);
    right: clamp(16px, 4vw, 58px);
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 50px;
    padding: 8px 14px 8px 9px;
    color: white;
    background: rgba(0, 0, 0, 0.38);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    text-decoration: none;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.24);
}

.whatsapp-mark {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    color: white;
    background: #25d366;
    border-radius: 999px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.whatsapp-mark svg {
    width: 22px;
    height: 22px;
    display: block;
    fill: currentColor;
}

.whatsapp-contact span:last-child {
    display: grid;
    gap: 1px;
}

.whatsapp-contact strong,
.whatsapp-contact em {
    display: block;
    font-style: normal;
    line-height: 1.05;
    white-space: nowrap;
}

.whatsapp-contact strong {
    color: rgba(255, 255, 255, 0.72);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.65px;
    text-transform: uppercase;
}

.whatsapp-contact em {
    color: white;
    font-size: 13px;
    font-weight: 950;
}

.whatsapp-contact:hover,
.whatsapp-contact:focus-visible {
    background: rgba(0, 0, 0, 0.55);
    outline: none;
}

.site-signature span {
    display: grid;
    place-items: center;
    min-width: 112px;
    min-height: 72px;
    padding: 0 18px;
    background: rgba(201, 104, 44, 0.82);
    font-size: 24px;
    font-weight: 950;
    letter-spacing: 0;
}

.site-signature strong {
    font-size: 24px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.signature-copy {
    display: grid;
    gap: 6px;
    min-width: 264px;
}

.signature-copy em {
    color: rgba(255, 255, 255, 0.88);
    width: 100%;
    font-size: 22px;
    font-style: normal;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: 0;
    text-transform: uppercase;
}

.plan-side-stack {
    position: absolute;
    top: 50%;
    right: clamp(16px, 4vw, 58px);
    z-index: 3;
    width: clamp(180px, 19.2vw, 264px);
    display: grid;
    gap: 12px;
    transform: translateY(-50%);
}

.site-plan-card,
.location-card {
    margin: 0;
    padding: 10px;
    color: white;
    background: rgba(0, 0, 0, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.14);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}

.site-plan-card figcaption,
.location-card h2 {
    margin: 0 0 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0.5px;
    text-align: center;
    text-transform: uppercase;
}

.location-card h2 {
    max-width: none;
}

.site-plan-trigger {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    padding: 0;
    cursor: zoom-in;
    background: transparent;
    border: 0;
}

.site-plan-trigger img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: white;
}

.location-map-frame {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #e9edf0;
}

.location-map-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.location-map-link {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
    padding: 8px 9px;
    color: #17191c;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(206, 211, 218, 0.78)),
        rgba(236, 238, 241, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.58);
    text-align: center;
    text-decoration: none;
    font-size: 10px;
    font-weight: 950;
    letter-spacing: 0.35px;
    line-height: 1.1;
    text-transform: uppercase;
}

.location-map-link:hover,
.location-map-link:focus-visible {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(222, 226, 232, 0.9)),
        rgba(246, 248, 250, 0.86);
    outline: none;
}

.plan-modal {
    width: min(92vw, 760px);
    max-width: none;
    max-height: min(92svh, 980px);
    padding: 0;
    overflow: visible;
    color: white;
    background: transparent;
    border: 0;
}

.plan-modal::backdrop {
    background: rgba(10, 11, 12, 0.42);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.plan-modal-frame {
    position: relative;
    margin: 0;
    padding: 14px;
    background: rgba(245, 247, 250, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 14px;
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.plan-modal-frame figcaption {
    margin: 0 44px 12px 0;
    font-size: 13px;
    font-weight: 950;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.plan-modal-frame img {
    display: block;
    width: 100%;
    max-height: calc(92svh - 70px);
    object-fit: contain;
    background: white;
}

.plan-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    cursor: pointer;
    color: #17191c;
    background: rgba(255, 255, 255, 0.88);
    border: 0;
    border-radius: 999px;
    font-size: 24px;
    line-height: 1;
}

.indoor-signature {
    color: #1c1f22;
    background: rgba(255, 255, 255, 0.62);
    border-color: rgba(23, 25, 28, 0.14);
}

.indoor-signature span {
    color: white;
    background: rgba(109, 143, 93, 0.9);
}

.scene-content {
    position: relative;
    z-index: 2;
    width: min(980px, calc(100% - clamp(32px, 8vw, 116px)));
    margin: 0 0 clamp(94px, 12vh, 138px) clamp(16px, 4vw, 58px);
}

.outdoor-scene .scene-content {
    margin-bottom: clamp(150px, 18vh, 220px);
}

.scene-content-light {
    color: #16191c;
}

.eyebrow {
    margin: 0 0 13px;
    color: var(--accent-bright);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.scene-content-light .eyebrow {
    color: #8c431c;
}

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

h1,
h2 {
    margin-bottom: 20px;
    max-width: 980px;
    font-weight: 950;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1 {
    font-size: clamp(38px, 7vw, 96px);
    line-height: 0.94;
}

h2 {
    color: inherit;
    font-size: clamp(34px, 6vw, 82px);
    line-height: 0.96;
}

.scene-content p {
    max-width: 650px;
    margin-bottom: 24px;
    color: var(--soft-white);
    font-size: clamp(16px, 2vw, 21px);
    line-height: 1.55;
}

.scene-content-light p {
    color: rgba(22, 25, 28, 0.68);
}

.feature-lines {
    max-width: 720px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: -6px 0 24px;
}

.feature-lines span {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 11px;
    color: rgba(255, 255, 255, 0.86);
    background: rgba(0, 0, 0, 0.38);
    border: 1px solid rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    font-size: 11px;
    font-weight: 850;
    text-transform: uppercase;
}

.map-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    color: white;
    background: rgba(0, 0, 0, 0.48);
    border: 1px solid rgba(255, 255, 255, 0.18);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    text-decoration: none;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.map-link:hover,
.map-link:focus-visible {
    background: rgba(0, 0, 0, 0.64);
    outline: none;
}

.tour-start-strip {
    position: absolute;
    top: 70%;
    right: 30%;
    z-index: 4;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0;
    color: white;
    text-decoration: none;
    text-align: center;
    width: 178px;
    font-size: clamp(13px, 1.5vw, 17px);
    font-weight: 950;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transform: translate(50%, -50%);
}

.tour-start-icon {
    width: 104px;
    height: 104px;
    display: grid;
    place-items: center;
    padding: 19px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(205, 210, 216, 0.7)),
        rgba(236, 238, 241, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: 22px;
    box-shadow:
        0 18px 44px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(18px) saturate(1.08);
    backdrop-filter: blur(18px) saturate(1.08);
}

.tour-start-strip img {
    display: block;
    width: 66px;
    height: 66px;
    object-fit: contain;
    animation: oLogoSpin 8s linear infinite;
    filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.36));
}

@keyframes oLogoSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .tour-start-strip img {
        animation: none;
    }
}

.tour-start-label {
    display: block;
    line-height: 1.15;
    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.72);
}

.indoor-scene .tour-start-label {
    color: #17191c;
    text-shadow: 0 2px 14px rgba(255, 255, 255, 0.72);
}

.tour-start-strip:hover,
.tour-start-strip:focus-visible {
    outline: none;
    transform: translate(50%, -50%) scale(1.04);
}

.section-jump-nav {
    position: absolute;
    left: clamp(16px, 4vw, 58px);
    bottom: clamp(18px, 4vh, 42px);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
}

.section-jump-nav a {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 0 4px;
    color: rgba(255, 255, 255, 0.78);
    background: transparent;
    border: 0;
    text-decoration: none;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.section-jump-nav a::before {
    content: "";
    width: 22px;
    height: 1px;
    background: currentColor;
    opacity: 0.72;
    transition: width 0.2s ease, opacity 0.2s ease;
}

.section-jump-nav a:hover,
.section-jump-nav a:focus-visible {
    color: white;
    outline: none;
}

.section-jump-nav a:hover::before,
.section-jump-nav a:focus-visible::before {
    width: 38px;
    opacity: 1;
}

.tour-start-strip:hover .tour-start-icon,
.tour-start-strip:focus-visible .tour-start-icon {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(218, 222, 228, 0.82)),
        rgba(242, 244, 247, 0.82);
}

.tour-start-strip:focus-visible .tour-start-icon {
    box-shadow:
        0 18px 44px rgba(0, 0, 0, 0.3),
        0 0 0 3px rgba(255, 255, 255, 0.74),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.render-gallery {
    padding: clamp(64px, 8vw, 110px) clamp(16px, 4vw, 58px);
    color: #17191c;
    background: #f3f0ea;
    content-visibility: auto;
    contain-intrinsic-size: 1200px;
}

.render-gallery-head,
.render-grid {
    width: min(1380px, 100%);
    margin-right: auto;
    margin-left: auto;
}

.render-gallery-head {
    margin-bottom: clamp(24px, 4vw, 42px);
}

.render-gallery .eyebrow {
    color: #8c431c;
}

.render-gallery h2 {
    margin-bottom: 0;
    font-size: clamp(34px, 5vw, 72px);
}

.render-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(10px, 1.4vw, 18px);
}

.render-grid figure {
    margin: 0;
    overflow: hidden;
    background: #151719;
    border: 1px solid rgba(21, 23, 25, 0.12);
}

.render-grid img {
    display: block;
    width: 100%;
    aspect-ratio: 5760 / 3655;
    height: auto;
    object-fit: cover;
}

.video-showcase {
    width: 100%;
    padding: clamp(64px, 8vw, 110px) clamp(16px, 4vw, 58px);
    color: #17191c;
    background: #f3f0ea;
    content-visibility: auto;
    contain-intrinsic-size: 760px;
}

.video-showcase-head {
    width: min(1180px, 100%);
    margin-right: auto;
    margin-bottom: clamp(18px, 3vw, 32px);
    margin-left: auto;
}

.video-showcase h2 {
    margin-bottom: 0;
    font-size: clamp(34px, 5vw, 72px);
}

.video-showcase-player {
    width: min(1180px, 100%);
    margin-right: auto;
    margin-left: auto;
    padding: clamp(8px, 1.4vw, 14px);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(205, 210, 216, 0.72)),
        rgba(236, 238, 241, 0.74);
    border: 1px solid rgba(23, 25, 28, 0.12);
    box-shadow: 0 22px 54px rgba(21, 23, 25, 0.16);
}

.video-showcase-player video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #151719;
    object-fit: cover;
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 24px clamp(16px, 4vw, 58px);
    color: rgba(255, 255, 255, 0.72);
    background: #17191c;
    font-size: 12px;
    text-transform: uppercase;
}

.site-footer img {
    width: 110px;
    max-height: 30px;
    object-fit: contain;
    filter: brightness(1.2);
}

.psv-container {
    background: #151719 !important;
}

@media (max-width: 900px) {
    .tour-scene {
        min-height: 100svh;
    }

    .scene-content {
        width: calc(100% - 28px);
        margin: 0 14px 96px;
    }

    .outdoor-scene .scene-content {
        width: min(620px, calc(100% - 250px));
    }

    .site-signature {
        left: 14px;
        top: 14px;
        max-width: calc(100% - 194px);
        gap: 10px;
        padding: 10px 12px;
    }

    .brand-signature {
        top: 14px;
        width: 190px;
        padding: 9px 12px;
        border-radius: 10px;
    }

    .whatsapp-contact {
        top: 14px;
        right: 14px;
        gap: 8px;
        min-height: 42px;
        padding: 6px 10px 6px 7px;
    }

    .whatsapp-mark {
        width: 29px;
        height: 29px;
    }

    .whatsapp-mark svg {
        width: 19px;
        height: 19px;
    }

    .whatsapp-contact strong {
        font-size: 8px;
    }

    .whatsapp-contact em {
        font-size: 11px;
    }

    .site-signature strong {
        font-size: 15px;
    }

    .site-signature span {
        min-width: 68px;
        min-height: 44px;
        padding: 0 10px;
        font-size: 16px;
    }

    .signature-copy {
        min-width: 0;
        gap: 3px;
    }

    .signature-copy em {
        font-size: 13px;
    }

    .plan-side-stack {
        top: 50%;
        right: 14px;
        width: clamp(139px, 24vw, 190px);
        gap: 7px;
        transform: translateY(-50%);
    }

    .site-plan-card,
    .location-card {
        padding: 7px;
    }

    .site-plan-card figcaption,
    .location-card h2 {
        margin-bottom: 5px;
        font-size: 9px;
    }

    .location-map-link {
        min-height: 32px;
        margin-top: 6px;
        padding: 6px;
        font-size: 8px;
    }

    h1 {
        font-size: clamp(36px, 10vw, 64px);
        overflow-wrap: anywhere;
    }

    h2 {
        font-size: clamp(32px, 9vw, 58px);
    }
}

@media (max-width: 620px) {
    .outdoor-scene,
    .indoor-scene {
        min-height: auto;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding: 28px 14px 54px;
    }

    .outdoor-scene .scene-media,
    .outdoor-scene .scene-shade,
    .indoor-scene .scene-media,
    .indoor-scene .scene-shade {
        position: absolute;
    }

    .outdoor-scene .brand-signature,
    .outdoor-scene .whatsapp-contact,
    .indoor-scene .indoor-signature {
        position: relative;
        top: auto;
        left: auto;
        order: 0;
        align-self: flex-start;
    }

    .outdoor-scene .whatsapp-contact {
        order: 1;
        align-self: flex-end;
        margin-top: -58px;
    }

    .outdoor-scene .scene-content,
    .indoor-scene .scene-content {
        order: 2;
        margin-bottom: 0;
    }

    .outdoor-scene .tour-start-strip,
    .indoor-scene .tour-start-strip {
        order: 3;
        align-self: center;
        width: auto;
    }

    .outdoor-scene .section-jump-nav {
        order: 4;
        align-items: stretch;
        gap: 8px;
        margin-top: 4px;
    }

    .outdoor-scene .plan-side-stack {
        order: 5;
    }

    .outdoor-scene .plan-side-stack,
    .outdoor-scene .tour-start-strip,
    .outdoor-scene .section-jump-nav,
    .outdoor-scene .scene-content,
    .outdoor-scene .whatsapp-contact,
    .indoor-scene .tour-start-strip,
    .indoor-scene .scene-content {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        bottom: auto;
        width: 100%;
        transform: none;
    }

    .outdoor-scene .whatsapp-contact {
        width: auto;
    }

    .outdoor-scene .tour-start-strip:hover,
    .outdoor-scene .tour-start-strip:focus-visible,
    .indoor-scene .tour-start-strip:hover,
    .indoor-scene .tour-start-strip:focus-visible {
        transform: none;
    }

    .outdoor-scene .section-jump-nav a {
        flex: 0 0 auto;
        min-height: 38px;
        padding: 0 8px;
        font-size: 10px;
    }

    .scene-shade {
        background:
            linear-gradient(0deg, rgba(14, 15, 16, 0.92) 0%, rgba(14, 15, 16, 0.35) 50%, rgba(14, 15, 16, 0.32) 100%),
            linear-gradient(90deg, rgba(14, 15, 16, 0.5), rgba(14, 15, 16, 0.08));
    }

    .indoor-scene .scene-shade {
        background:
            linear-gradient(0deg, rgba(248, 246, 240, 0.92) 0%, rgba(248, 246, 240, 0.35) 55%, rgba(248, 246, 240, 0.12) 100%),
            linear-gradient(90deg, rgba(248, 246, 240, 0.38), rgba(248, 246, 240, 0.05));
    }

    .scene-content {
        margin-bottom: 0;
    }

    .scene-content p {
        font-size: 15px;
    }

    .tour-start-icon {
        width: 88px;
        height: 88px;
        padding: 16px;
    }

    .tour-start-strip img {
        width: 56px;
        height: 56px;
    }

    .site-footer {
        align-items: flex-start;
        flex-direction: column;
        padding: 22px 14px;
    }

    .site-signature {
        max-width: calc(100% - 136px);
        gap: 7px;
        padding: 8px;
    }

    .brand-signature {
        width: 150px;
        padding: 7px 9px;
    }

    .brand-signature::before,
    .brand-signature::after {
        width: 46px;
        filter: blur(13px);
    }

    .brand-signature::before {
        left: -22px;
    }

    .brand-signature::after {
        right: -22px;
    }

    .site-signature span {
        min-width: 52px;
        min-height: 34px;
        padding: 0 8px;
        font-size: 12px;
    }

    .site-signature strong {
        font-size: 12px;
    }

    .signature-copy em {
        font-size: 11px;
        line-height: 1.15;
    }

    .plan-side-stack {
        width: 100%;
        gap: 12px;
    }

    .site-plan-trigger {
        aspect-ratio: 16 / 11;
    }

    .site-plan-card,
    .location-card {
        padding: 10px;
    }

    .location-map-frame {
        aspect-ratio: 16 / 11;
    }

    .location-map-link {
        min-height: 30px;
        font-size: 7px;
    }

    .render-gallery {
        padding: 54px 14px;
    }

    .video-showcase {
        padding: 54px 14px;
    }

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