:root {
    --bg: #f4efe9;
    --surface: rgba(255, 255, 255, 0.72);
    --surface-strong: rgba(255, 255, 255, 0.9);
    --stroke-light: rgba(255, 255, 255, 0.18);
    --text: #24161c;
    --text-soft: #63545b;
    --heading: #1f1118;
    --accent: #7f243f;
    --accent-strong: #61172e;
    --accent-soft: #b7748a;
    --success: #4d8b68;
    --white: #ffffff;
    --shadow-soft: 0 18px 60px rgba(39, 18, 28, 0.10);
    --shadow-strong: 0 24px 70px rgba(26, 10, 18, 0.22);
    --radius-lg: 28px;
    --nav-height: 72px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Poppins", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(183, 116, 138, 0.18), transparent 34%),
        linear-gradient(180deg, #fbf7f2 0%, #f2ece6 100%);
    color: var(--text);
    cursor: default;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

html.modal-open,
body.modal-open {
    overflow: hidden;
    overscroll-behavior: none;
}

body.modal-open {
    position: fixed;
    inset: 0;
    width: 100%;
    touch-action: none;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

button,
a,
[role="button"],
input[type="button"],
input[type="submit"],
input[type="reset"] {
    cursor: pointer;
}

input,
textarea,
select {
    cursor: text;
}

.snap-section {
    scroll-margin-top: calc(var(--nav-height) + 25px);
}

@media (max-height: 1200px) {
    .snap-section {
        scroll-margin-top: calc(var(--nav-height) + 16px);
    }
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.15rem 1.25rem 0;
    opacity: 0;
    transform: translate3d(0, -120%, 0);
    animation: site-header-enter 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.95s forwards;
    will-change: transform, opacity;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.navbar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    max-width: 1360px;
    margin: 0 auto;
    min-height: var(--nav-height);
    height: 70px;
    padding: 0.7rem 1rem;
    background: rgba(255, 255, 255, 0.66);
    border: 1px solid rgba(255, 255, 255, 0.64);
    border-radius: 26px;
    box-shadow:
        0 12px 40px rgba(31, 17, 24, 0.10),
        0 0 16px rgba(255, 127, 35, 0.16);
    -webkit-backdrop-filter: blur(22px);
    backdrop-filter: blur(22px);
    opacity: 0.82;
    transform: scale(0.75);
    transform-origin: center top;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    isolation: isolate;
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.35s ease,
        filter 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}

.navbar:hover,
.navbar:focus-within {
    opacity: 1;
    transform: scale(1);
    background: rgba(255, 255, 255, 0.84);
    box-shadow:
        0 18px 46px rgba(31, 17, 24, 0.14),
        0 0 22px rgba(255, 127, 35, 0.24);
}

.brand-mark {
    position: relative;
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    cursor: pointer;
    text-decoration: none;
}

.brand-mark::after {
    content: "\25B2";
    position: absolute;
    top: 50%;
    left: calc(100% - 2.45rem);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.55rem;
    height: 1.55rem;
    border-radius: 999px;
    background: rgba(127, 36, 63, 0.14);
    color: var(--accent-strong);
    font-size: 0.9rem;
    font-weight: 900;
    line-height: 1;
    opacity: 0;
    transform: translate(0, -50%) scale(0.82);
    box-shadow: 0 10px 24px rgba(31, 17, 24, 0.12);
    transition:
        opacity 0.22s ease,
        transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.22s ease,
        box-shadow 0.22s ease;
    pointer-events: none;
}

.brand-mark:hover::after,
.brand-mark:focus-visible::after {
    opacity: 1;
    transform: translate(0, -50%) scale(1);
    animation: brand-mark-arrow-float 1.25s ease-in-out infinite;
}

.brand-logo {
    width: clamp(128px, 12vw, 180px);
    height: auto;
    margin-left: 20px;
    margin-right: 50px;
}

@keyframes brand-mark-arrow-float {
    0%,
    100% {
        transform: translate(0, -50%) scale(1);
        box-shadow:
            0 10px 24px rgba(31, 17, 24, 0.12),
            0 0 0 rgba(127, 36, 63, 0);
    }

    50% {
        transform: translate(0, -66%) scale(1.06);
        box-shadow:
            0 14px 28px rgba(31, 17, 24, 0.16),
            0 0 18px rgba(127, 36, 63, 0.18);
    }
}

.is-webkit .navbar {
    transform: none;
    opacity: 0.92;
    filter: brightness(0.98);
}

.is-webkit .navbar:hover,
.is-webkit .navbar:focus-within {
    transform: none;
    opacity: 1;
    filter: brightness(1.04);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 46px rgba(31, 17, 24, 0.14);
}

.nav-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    flex: 1 1 auto;
}

.nav-links {
    display: flex;
    gap: 1.1rem;
    list-style: none;
}

.nav-links a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.48rem 0.82rem;
    border-radius: 999px;
    text-decoration: none;
    font-size: 1.08rem;
    font-weight: 600;
    color: var(--text);
    isolation: isolate;
    transform-origin: center center;
    transition:
        color 0.38s ease,
        transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-links a::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
    transform: scale(0.72) translateY(3px);
    opacity: 0;
    transition:
        transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.38s ease,
        box-shadow 0.38s ease;
    will-change: transform, opacity;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-active {
    color: var(--white);
    transform: scale(1.05) translateY(-1px);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.is-active::after {
    transform: scale(1) translateY(0);
    opacity: 1;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.owner-logo-nav {
    display: none;
    width: 172px;
    min-width: 172px;
    height: auto;
    opacity: 0.9;
}

@media (min-width: 921px) {
    .nav-panel {
        min-width: 0;
        justify-content: center;
    }

    .nav-links {
        flex: 1 1 auto;
        width: 100%;
        justify-content: space-evenly;
        align-items: center;
        gap: 0.4rem;
    }

    .nav-links li {
        display: flex;
        justify-content: center;
    }

    .nav-actions {
        display: none;
    }
}

@keyframes site-header-enter {
    from {
        opacity: 0;
        transform: translateY(-120%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes lang-switch-enter {
    from {
        opacity: 0;
        transform: translateX(120%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.lang-switch,
.menu-toggle,
.cta-button,
.secondary-button,
.submit-btn {
    font: inherit;
}

.lang-switch {
    border: 1px solid rgba(127, 36, 63, 0.16);
    background: rgba(255, 255, 255, 0.75);
    color: var(--accent-strong);
    min-width: 54px;
    padding: 0.7rem 0.95rem;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 700;
    transition:
        color 0.32s ease,
        background 0.32s ease,
        border-color 0.32s ease,
        box-shadow 0.32s ease,
        transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.lang-switch:hover,
.lang-switch:focus-visible {
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(42, 29, 5, 0.98), rgba(58, 40, 7, 0.96)),
        linear-gradient(135deg, rgba(255, 127, 35, 0.14), rgba(255, 127, 35, 0));
    border-color: rgba(255, 127, 35, 0.26);
    transform: translateY(-1px) scale(1.04);
    box-shadow:
        0 14px 28px rgba(42, 29, 5, 0.14),
        0 0 0 1px rgba(255, 127, 35, 0.18),
        0 0 18px rgba(255, 127, 35, 0.22);
}

.lang-switch:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 8px 18px rgba(42, 29, 5, 0.12);
}

.lang-switch-floating {
    position: absolute;
    top: 1.15rem;
    right: 1.25rem;
    z-index: 1001;
    min-height: 54px;
    opacity: 0;
    transform: translateX(120%);
    animation: lang-switch-enter 0.7s cubic-bezier(0.22, 1, 0.36, 1) 1.8s forwards;
    box-shadow: 0 12px 34px rgba(31, 17, 24, 0.08);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.navbar > .lang-switch-floating {
    display: none;
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(127, 36, 63, 0.16);
    background: rgba(255, 255, 255, 0.75);
    border-radius: 16px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 18px;
    height: 2px;
    background: var(--accent-strong);
    border-radius: 999px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    min-height: var(--app-height, 100dvh);
    height: auto;
    display: flex;
    align-items: stretch;
    padding: 0 1.25rem;
    overflow: hidden;
}

.hero-backdrop {
    position: absolute;
    inset: 0;
}

.hero-backdrop img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1);
    transition: opacity 1.6s ease-in-out, transform 6s ease;
}

.hero-backdrop:not(.is-ready) img {
    transition: none;
}

.hero-backdrop:not(.is-ready) img.active {
    opacity: 0;
    transform: scale(1);
}

.hero-backdrop img.active {
    opacity: 1;
    transform: scale(1.05);
}

.hero-backdrop::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 44%, rgba(255, 255, 255, 0) 0 18%, rgba(28, 16, 20, 0.08) 50%, rgba(28, 16, 20, 0.34) 100%),
        radial-gradient(circle at 14% 50%, rgba(28, 16, 20, 0.28), transparent 34%),
        radial-gradient(circle at 88% 18%, rgba(28, 16, 20, 0.22), transparent 24%);
}

.hero-shell,
.section-intro,
.stats-grid,
.overview-grid,
.spaces-grid,
.spaces-parking-note,
.spaces-pricing-note,
.location,
.standard-content,
.gallery-grid,
.gallery-actions,
.about-content,
.contact-content {
    position: relative;
    z-index: 1;
    max-width: 1360px;
    margin: 0 auto;
}

.hero-shell {
    max-width: none;
    width: 100%;
    height: 100%;
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(320px, min(34vw, 565px)) 1fr;
    grid-template-rows: auto 1fr;
    gap: 2rem;
    align-content: start;
    align-items: start;
    margin: 0;
    padding: calc(var(--nav-height) + clamp(1rem, 2vh, 1.6rem)) clamp(1rem, 2.4vw, 2rem) clamp(1.25rem, 2.5vh, 2rem);
}

.hero-scroll-hint {
    position: absolute;
    left: 50%;
    bottom: 1.7rem;
    z-index: 2;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.02rem;
    text-decoration: none;
    transform: translateX(-50%);
    opacity: 0;
    pointer-events: none;
    animation: hero-scroll-hint-enter 0.75s cubic-bezier(0.22, 1, 0.36, 1) 2.7s forwards;
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s ease;
}

.hero-scroll-hint-arrow {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 0.7;
    text-shadow:
        0 5px 16px rgba(0, 0, 0, 0.54),
        0 2px 5px rgba(0, 0, 0, 0.42);
    transform: rotate(90deg);
    animation: hero-scroll-hint-pulse 1.75s ease-in-out infinite;
}

.hero-scroll-hint-arrow:nth-child(2) {
    animation-delay: 0.18s;
}

.hero-scroll-hint-arrow:nth-child(3) {
    animation-delay: 0.36s;
}

.hero-scroll-hint:hover,
.hero-scroll-hint:focus-visible {
    opacity: 1;
    transform: translateX(-50%) scale(1.5);
}

.hero-scroll-hint:hover .hero-scroll-hint-arrow,
.hero-scroll-hint:focus-visible .hero-scroll-hint-arrow {
    color: var(--white);
}

@keyframes hero-scroll-hint-enter {
    from {
        opacity: 0;
        pointer-events: none;
    }

    to {
        opacity: 0.88;
        pointer-events: auto;
    }
}

@keyframes hero-scroll-hint-pulse {
    0%,
    100% {
        opacity: 0.2;
        transform: rotate(90deg) translateY(-2px);
    }

    40% {
        opacity: 0.92;
        transform: rotate(90deg) translateY(4px);
    }

    65% {
        opacity: 0.48;
        transform: rotate(90deg) translateY(1px);
    }
}

/* Mokotów BOX brand color test */
:root {
    --bg: #f8f3ec;
    --surface: rgba(255, 255, 255, 0.76);
    --surface-strong: rgba(255, 255, 255, 0.92);
    --text: #2a1d05;
    --text-soft: #6f5a3c;
    --heading: #241902;
    --accent: #ff7f23;
    --accent-strong: #2a1d05;
    --accent-soft: #ffb067;
    --success: #ff7f23;
    --shadow-soft: 0 18px 60px rgba(42, 29, 5, 0.10);
    --shadow-strong: 0 24px 70px rgba(42, 29, 5, 0.2);
}

body {
    background:
        radial-gradient(circle at top left, rgba(255, 127, 35, 0.16), transparent 34%),
        radial-gradient(circle at bottom right, rgba(42, 29, 5, 0.08), transparent 30%),
        linear-gradient(180deg, #fcf8f2 0%, #f5eee5 100%);
}

.navbar {
    background: rgba(255, 250, 244, 0.74);
    border-color: rgba(255, 255, 255, 0.74);
    box-shadow: 0 12px 40px rgba(42, 29, 5, 0.10);
}

.navbar:hover,
.navbar:focus-within,
.is-webkit .navbar:hover,
.is-webkit .navbar:focus-within {
    background: rgba(255, 251, 246, 0.88);
    box-shadow: 0 18px 46px rgba(42, 29, 5, 0.14);
}

.brand-mark::after {
    background: rgba(255, 127, 35, 0.16);
    color: var(--accent-strong);
}

.quick-stats::before,
.location::before,
.gallery::before {
    background:
        radial-gradient(circle at top right, rgba(255, 127, 35, 0.14), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0));
}

.contact::before {
    background:
        radial-gradient(circle at top left, rgba(255, 127, 35, 0.18), transparent 24%),
        linear-gradient(180deg, #2f2107 0%, #201603 100%);
}

.hero-alert-card-primary {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02) 30%, rgba(255, 255, 255, 0) 54%),
        radial-gradient(circle at center, rgba(255, 182, 116, 0.24), rgba(255, 182, 116, 0) 54%),
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.14), transparent 38%),
        linear-gradient(145deg, rgba(255, 127, 35, 0.94), rgba(223, 101, 9, 0.92));
}

.hero-alert-card-secondary {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.02) 30%, rgba(255, 255, 255, 0) 54%),
        radial-gradient(circle at center, rgba(255, 168, 88, 0.18), rgba(255, 168, 88, 0) 54%),
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.13), transparent 38%),
        linear-gradient(145deg, rgba(55, 39, 7, 0.96), rgba(33, 23, 4, 0.94));
}

.hero-alert-card-primary:hover,
.hero-alert-card-primary:focus-visible {
    background:
        radial-gradient(circle at center, rgba(255, 214, 170, 0.34), rgba(255, 214, 170, 0) 54%),
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.24), transparent 40%),
        linear-gradient(145deg, rgba(255, 140, 51, 0.98), rgba(236, 110, 18, 0.95));
}

.hero-alert-card-secondary:hover,
.hero-alert-card-secondary:focus-visible {
    background:
        radial-gradient(circle at center, rgba(255, 178, 96, 0.22), rgba(255, 178, 96, 0) 54%),
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.24), transparent 40%),
        linear-gradient(145deg, rgba(68, 48, 9, 0.98), rgba(41, 29, 5, 0.96));
}

.overview-card-tone-warm {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.28)),
        radial-gradient(circle at top right, rgba(255, 127, 35, 0.16), transparent 34%),
        rgba(255, 250, 244, 0.78);
}

.overview-card-tone-ivory {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.34)),
        radial-gradient(circle at top right, rgba(255, 223, 188, 0.28), transparent 38%),
        rgba(255, 252, 247, 0.82);
}

.overview-card-tone-rose {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.32)),
        radial-gradient(circle at top right, rgba(255, 158, 85, 0.15), transparent 35%),
        rgba(255, 249, 242, 0.80);
}

.overview-card-tone-glass {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.24)),
        radial-gradient(circle at top right, rgba(42, 29, 5, 0.06), transparent 34%),
        rgba(255, 255, 255, 0.72);
}

.overview-card-tone-soft {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.60), rgba(255, 255, 255, 0.30)),
        radial-gradient(circle at top right, rgba(255, 127, 35, 0.10), transparent 36%),
        rgba(255, 250, 245, 0.80);
}

.availability-badge {
    background: rgba(255, 127, 35, 0.14);
    color: var(--accent);
}

.space-btn-primary {
    box-shadow: 0 16px 28px rgba(42, 29, 5, 0.18);
}

.contact-person a,
.contact-company-block a {
    color: #ffd5b3;
}

.site-footer {
    background: #201603;
}

.hero-copy {
    min-width: 0;
}

.hero-copy-desktop {
    grid-column: 1;
    grid-row: 1;
    width: min(100%, 565px);
    max-width: 565px;
    justify-self: start;
    align-self: start;
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity 0.7s ease,
        transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.hero-copy-mobile {
    display: none;
}

.hero-card {
    grid-column: 1;
    grid-row: 2;
    width: min(100%, 565px);
    max-width: 565px;
    justify-self: start;
    margin-top: 0;
    padding: clamp(1.4rem, 2.8vw, 2.35rem);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.21), rgba(255, 255, 255, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 32px;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-strong);
    opacity: 0;
    transform: scale(0.1);
    transform-origin: center center;
    transition:
        opacity 0.7s ease,
        transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.hero-backdrop.is-ready + .hero-shell .hero-copy-desktop,
.hero-backdrop.is-ready + .hero-shell .hero-card {
    opacity: 1;
    transform: none;
}

.hero-alert {
    grid-column: 1;
    grid-row: 3;
    align-self: start;
    display: grid;
    gap: 1.1rem;
    max-width: 360px;
    margin-top: 1rem;
    margin-bottom: 0;
}

.hero-alert-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.42rem;
    min-height: 96px;
    padding: 1rem 1.05rem 1.08rem;
    border-radius: 24px;
    text-decoration: none;
    color: var(--white);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.34),
        inset 0 -10px 20px rgba(8, 6, 10, 0.12),
        0 24px 44px rgba(0, 0, 0, 0.24),
        0 10px 22px rgba(14, 6, 10, 0.16);
    letter-spacing: 0.02em;
    border: 1px solid rgba(255, 255, 255, 0.34);
    overflow: hidden;
    isolation: isolate;
    transform: rotate(-2deg) translateY(12px) scale(0.72);
    opacity: 0;
    transform-origin: center center;
    transition:
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.45s ease,
        box-shadow 0.28s ease,
        background 0.28s ease,
        border-color 0.28s ease,
        filter 0.28s ease;
}

.hero-alert-card::before,
.hero-alert-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
}

.hero-alert-card::before {
    inset: 1px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0) 42%),
        radial-gradient(circle at 20% 14%, rgba(255, 255, 255, 0.18), transparent 34%);
    opacity: 0.95;
    z-index: 0;
}

.hero-alert-card::after {
    inset: auto 14% -34% 14%;
    height: 58%;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 72%);
    filter: blur(14px);
    opacity: 0.6;
    z-index: 0;
}

.hero-alert-card > * {
    position: relative;
    z-index: 1;
}

.hero-alert-card.is-visible {
    opacity: 1;
    transform: rotate(-2deg) translateY(0) scale(1);
}

.hero-alert-card-primary {
    align-items: center;
    text-align: center;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.015) 30%, rgba(255, 255, 255, 0) 54%),
        radial-gradient(circle at center, rgba(171, 60, 98, 0.14), rgba(171, 60, 98, 0) 52%),
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 38%),
        linear-gradient(145deg, rgba(76, 18, 39, 0.9), rgba(42, 8, 20, 0.88));
}

.hero-alert-card-secondary {
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 0.35rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.015) 30%, rgba(255, 255, 255, 0) 54%),
        radial-gradient(circle at center, rgba(101, 154, 118, 0.14), rgba(101, 154, 118, 0) 52%),
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 38%),
        linear-gradient(145deg, rgba(27, 54, 35, 0.9), rgba(10, 27, 16, 0.88));
}

.hero-alert-card:hover,
.hero-alert-card:focus-visible {
    transform: rotate(1deg) translateY(-2px) scale(1.06);
    border-color: rgba(255, 255, 255, 0.5);
    filter: saturate(1.08);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.42),
        inset 0 -12px 22px rgba(8, 6, 10, 0.16),
        0 34px 62px rgba(0, 0, 0, 0.34),
        0 14px 30px rgba(14, 6, 10, 0.2),
        0 0 24px rgba(255, 255, 255, 0.18);
}

.hero-alert-card:active {
    transform: rotate(0deg) translateY(0) scale(0.97);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.28),
        inset 0 -8px 16px rgba(8, 6, 10, 0.18),
        0 14px 28px rgba(0, 0, 0, 0.22),
        0 6px 14px rgba(14, 6, 10, 0.14);
}

.hero-alert-card-primary:hover,
.hero-alert-card-primary:focus-visible {
    background:
        radial-gradient(circle at center, rgba(224, 101, 145, 0.4), rgba(224, 101, 145, 0) 54%),
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.22), transparent 40%),
        linear-gradient(145deg, rgba(122, 29, 61, 0.96), rgba(80, 18, 39, 0.92));
}

.hero-alert-card-secondary:hover,
.hero-alert-card-secondary:focus-visible {
    background:
        radial-gradient(circle at center, rgba(152, 208, 169, 0.38), rgba(152, 208, 169, 0) 54%),
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.22), transparent 40%),
        linear-gradient(145deg, rgba(50, 94, 62, 0.96), rgba(27, 62, 39, 0.92));
}

.hero-alert-card-kicker {
    display: inline-flex;
    align-self: center;
    padding: 0.68rem 1.5rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hero-alert-card-title {
    display: block;
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: 0.03em;
    text-shadow:
        0 4px 18px rgba(0, 0, 0, 0.46),
        0 2px 6px rgba(0, 0, 0, 0.38);
}

.hero-alert-card-phone {
    display: block;
    font-family: "Lato", sans-serif;
    font-size: 1.95rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: 0.03em;
    text-shadow:
        0 4px 18px rgba(0, 0, 0, 0.46),
        0 2px 6px rgba(0, 0, 0, 0.38);
}

.hero-eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1.1rem;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-top: 25px;
}

.hero-eyebrow {
    color: var(--white);
    font-size: clamp(1.2rem, 1.1vw, 1.38rem);
    line-height: 1;
    text-shadow:
        0 8px 28px rgba(0, 0, 0, 0.84),
        0 3px 8px rgba(0, 0, 0, 0.78);
}

.hero-eyebrow::before,
.section-kicker::before {
    content: "";
    width: 34px;
    height: 1px;
    background: currentColor;
    opacity: 0.8;
}

.hero h1 {
    /* max-width: 12ch; */
    margin-bottom: 1.25rem;
    color: var(--white);
    font-size: clamp(2.15rem, 3vw, 3.5rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: 0.5em;
    text-shadow:
        0 8px 28px rgba(0, 0, 0, 0.8),
        0 2px 6px rgba(0, 0, 0, 0.72);
}

.hero-title-subline {
    display: inline;
    margin-top: 0;
    font-size: 0.74em;
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.hero-card p {
    max-width: 58ch;
    /* margin-bottom: 2rem; */
    color: var(--white);
    font-size: 1.06rem;
    line-height: 1.8;
    text-shadow:
        0 4px 18px rgba(0, 0, 0, 0.5),
        0 2px 6px rgba(0, 0, 0, 0.42);
}

.hero-intro-mobile {
    display: none;
}

.hero-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-fact {
    padding: 1rem 1rem 1.1rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;
}

.hero-fact-value {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
}

.hero-fact-label {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
}

.cta-button,
.secondary-button,
.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0.95rem 1.5rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta-button,
.submit-btn {
    border: none;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
    color: var(--white);
    box-shadow: 0 18px 34px rgba(97, 23, 46, 0.26);
}

.secondary-button {
    border: 1px solid rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
}

.quick-stats,
.available-spaces,
.module-resources,
.location,
.standard,
.gallery,
.about,
.contact {
    position: relative;
    padding: 7rem 1.25rem;
}

.quick-stats::before,
.available-spaces::before,
.module-resources::before,
.location::before,
.standard::before,
.gallery::before,
.about::before,
.contact::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.quick-stats::before,
.location::before,
.gallery::before {
    background:
        radial-gradient(circle at top right, rgba(183, 116, 138, 0.14), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0));
}

.available-spaces::before,
.module-resources::before,
.standard::before,
.about::before {
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.7), transparent 20%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
}

.contact::before {
    background:
        radial-gradient(circle at top left, rgba(183, 116, 138, 0.14), transparent 26%),
        linear-gradient(180deg, #241219 0%, #170d12 100%);
}

.section-intro {
    margin: 0 auto 2.5rem;
    width: 100%;
    max-width: 1360px;
    text-align: left;
}

.section-intro-left {
    text-align: left;
}

.section-kicker {
    color: var(--accent-strong);
}

.section-title {
    max-width: none;
    margin: 0;
    color: var(--heading);
    font-size: clamp(2.15rem, 4vw, 4rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.section-title-subline {
    display: block;
    margin-top: 0.3rem;
    font-size: 0.74em;
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.no-break {
    white-space: nowrap;
}

.section-title-left {
    margin: 0;
}

.section-copy {
    max-width: 65ch;
    margin-top: 1rem;
    margin-left: 0;
    margin-right: 0;
    color: var(--text-soft);
    font-size: 1.02rem;
    line-height: 1.8;
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: opacity, transform;
}

.reveal:is(section) {
    transform: none;
    transition: opacity 0.6s ease;
    will-change: opacity;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.gallery-group {
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
}

.overview-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    cursor: default;
    min-height: 216px;
    padding: 1.75rem 1.7rem 1.9rem;
    overflow: hidden;
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.28)),
        radial-gradient(circle at top right, rgba(183, 116, 138, 0.12), transparent 34%),
        rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(255, 255, 255, 0.62);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.42),
        0 18px 52px rgba(34, 18, 27, 0.08);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    isolation: isolate;
    transition:
        transform 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease,
        background 0.28s ease;
}

.overview-card::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 44%),
        radial-gradient(circle at bottom left, rgba(127, 36, 63, 0.06), transparent 38%);
    pointer-events: none;
    z-index: 0;
}

.overview-card > * {
    position: relative;
    z-index: 1;
    cursor: default;
}

.overview-card:hover,
.overview-card:focus-within {
    transform: translateY(-4px);
    border-color: rgba(127, 36, 63, 0.18);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.48),
        0 22px 56px rgba(34, 18, 27, 0.12),
        0 0 0 1px rgba(127, 36, 63, 0.05);
}

.overview-card-meta {
    display: inline-flex;
    align-items: center;
    margin-bottom: 1rem;
}

.overview-card-index {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0;
    color: rgba(127, 36, 63, 0.42);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.overview-card h3 {
    max-width: none;
    margin-bottom: 0.7rem;
    color: var(--heading);
    font-size: clamp(1.55rem, 1.85vw, 1.95rem);
    line-height: 1;
    letter-spacing: -0.04em;
    white-space: nowrap;
}

.overview-card-tagline {
    margin-bottom: 0.8rem;
    color: var(--accent-strong);
    font-size: 0.96rem;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.overview-card p {
    max-width: 34ch;
    color: var(--text-soft);
    font-size: 0.98rem;
    line-height: 1.68;
}

.overview-card-tone-warm {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0.3)),
        radial-gradient(circle at top right, rgba(191, 132, 101, 0.13), transparent 36%),
        rgba(255, 249, 244, 0.72);
}

.overview-card-tone-ivory {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.3)),
        radial-gradient(circle at top left, rgba(214, 198, 170, 0.12), transparent 34%),
        rgba(255, 253, 248, 0.74);
}

.overview-card-tone-rose {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0.28)),
        radial-gradient(circle at top right, rgba(183, 116, 138, 0.14), transparent 36%),
        rgba(255, 247, 250, 0.72);
}

.overview-card-tone-glass {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.32)),
        radial-gradient(circle at top left, rgba(127, 36, 63, 0.08), transparent 34%),
        rgba(255, 255, 255, 0.7);
}

.overview-card-tone-soft {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.29)),
        radial-gradient(circle at bottom left, rgba(168, 150, 181, 0.1), transparent 34%),
        rgba(251, 249, 255, 0.72);
}

.stat-card,
.space-card,
.standard-list,
.amenities-list,
.contact-card,
.contact-form {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.48);
    box-shadow: var(--shadow-soft);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.stat-card {
    min-height: 240px;
    padding: 1.8rem;
    border-radius: var(--radius-lg);
}

.stat-index {
    margin-bottom: 1rem;
    color: var(--accent-soft);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.2em;
}

.stat-value {
    margin-bottom: 0.75rem;
    color: var(--accent-strong);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    line-height: 1.05;
}

.stat-label {
    color: var(--text-soft);
    line-height: 1.65;
}

.spaces-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.space-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 30px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.86)),
        radial-gradient(circle at top right, rgba(255, 127, 35, 0.07), transparent 34%),
        rgba(255, 255, 255, 0.92);
    box-shadow:
        0 22px 52px rgba(42, 29, 5, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.space-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), rgba(255, 127, 35, 0.08));
}

.space-image {
    width: 100%;
    height: 272px;
    overflow: hidden;
    border-radius: 22px;
}

.space-image-trigger {
    position: relative;
    padding: 0;
    border: none;
    background: none;
    appearance: none;
    cursor: zoom-in;
}

.space-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.space-image-trigger:hover img,
.space-image-trigger:focus-visible img {
    transform: scale(1.03);
}

.space-image-badge {
    position: absolute;
    left: 14px;
    bottom: 14px;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    min-height: 36px;
    padding: 0.5rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(42, 29, 5, 0.76);
    color: var(--white);
    box-shadow: 0 12px 24px rgba(20, 13, 3, 0.2);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.space-image-badge-icon {
    position: relative;
    width: 18px;
    height: 13px;
    border: 1.8px solid currentColor;
    border-radius: 3px;
    flex: 0 0 auto;
}

.space-image-badge-icon::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 5px;
    width: 4px;
    height: 4px;
    border: 1.6px solid currentColor;
    border-radius: 999px;
}

.space-image-badge-icon::after {
    content: "";
    position: absolute;
    top: -4px;
    left: 2px;
    width: 6px;
    height: 4px;
    border: 1.8px solid currentColor;
    border-bottom: none;
    border-radius: 3px 3px 0 0;
}

.space-image-badge-count {
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1;
}

.space-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.46), transparent 34%),
        linear-gradient(135deg, rgba(255, 127, 35, 0.08), rgba(255, 255, 255, 0.76));
    border: 1px dashed rgba(255, 127, 35, 0.22);
}

.space-image-placeholder span {
    color: var(--accent-strong);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.space-card-featured {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.88)),
        radial-gradient(circle at top right, rgba(255, 127, 35, 0.08), transparent 34%),
        rgba(255, 255, 255, 0.92);
}

.space-meta {
    color: var(--text-soft);
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.35;
}

.space-size {
    margin-bottom: 0;
    color: var(--heading);
    font-size: clamp(2.55rem, 3vw, 3.3rem);
    font-weight: 800;
    line-height: 1;
}

.space-size-row {
    display: flex;
    align-items: flex-end;
    gap: 0.45rem;
}

.space-size-unit {
    color: var(--text-soft);
    font-size: 0.88rem;
    font-weight: 500;
    line-height: 1.4;
    padding-bottom: 0.32rem;
}

.space-details {
    margin-top: 0.1rem;
    padding: 0.35rem 0;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(42, 29, 5, 0.06);
    border-radius: 20px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.66);
}

.space-actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0.2rem;
}

.space-btn {
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.7rem;
    width: auto;
    min-height: auto;
    height: auto;
    padding: 0;
    border-radius: 0;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.space-btn-secondary {
    border: none;
    color: var(--accent);
    background: transparent;
    text-decoration: none;
    box-shadow: none;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    margin: 0.15rem 0 0.2rem;
}

.space-btn-secondary:hover,
.space-btn-secondary:focus-visible {
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(42, 29, 5, 0.98), rgba(58, 40, 7, 0.96)),
        linear-gradient(135deg, rgba(255, 127, 35, 0.14), rgba(255, 127, 35, 0));
    box-shadow:
        0 14px 28px rgba(42, 29, 5, 0.14),
        0 0 0 1px rgba(255, 127, 35, 0.18);
}

.space-inquiry-trigger {
    margin-top: -0.05rem;
    color: rgba(42, 29, 5, 0.62);
    font-weight: 400;
}

.space-inquiry-trigger .space-btn-text {
    font-weight: 400;
}

.space-btn-icon-svg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
}

.space-btn-icon-svg svg {
    display: block;
    width: 100%;
    height: 100%;
}

.space-btn-icon {
    position: relative;
    width: 18px;
    height: 22px;
    border: 1.8px solid currentColor;
    border-radius: 4px;
    flex: 0 0 auto;
}

.space-btn-icon::before {
    content: "";
    position: absolute;
    top: -1.8px;
    right: -1.8px;
    width: 8px;
    height: 8px;
    border-top: 1.8px solid currentColor;
    border-right: 1.8px solid currentColor;
    background: rgba(255, 255, 255, 0.62);
    clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.space-btn-icon::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 10px;
    width: 8px;
    height: 2px;
    background: currentColor;
    box-shadow: 0 -4px 0 currentColor;
}


.space-detail-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 1rem;
}

.space-detail-row + .space-detail-row {
    border-top: 1px solid rgba(42, 29, 5, 0.08);
}

.detail-label {
    color: var(--text-soft);
    font-size: 0.95rem;
}

.detail-value {
    color: var(--heading);
    font-weight: 700;
    text-align: right;
}

.detail-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0.3rem 0.78rem;
    border-radius: 999px;
    background: var(--accent);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.shell-core-note {
    margin-top: 0.1rem;
    color: var(--text-soft);
    font-size: 0.88rem;
    line-height: 1.6;
}

.spaces-parking-note {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.95rem;
    width: 100%;
    margin-top: 1.4rem;
    color: var(--text-soft);
}

.spaces-parking-note-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
}

.spaces-parking-note-icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.spaces-parking-note-icon svg rect {
    fill: #2f7cff;
    stroke: #2f7cff;
}

.spaces-parking-note-icon svg path {
    stroke: #fff;
}

.spaces-parking-note-text {
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.45;
    color: var(--heading);
}

.spaces-pricing-note {
    margin-top: 1.5rem;
    font-size: 0.92rem;
    line-height: 1.5;
    color: rgba(42, 29, 5, 0.72);
    font-style: italic;
}

.module-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    max-width: 1360px;
    margin: 0 auto;
}

.module-card {
    overflow: hidden;
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.48);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.module-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.module-body {
    padding: 1.45rem;
}

.module-tag {
    display: inline-flex;
    margin-bottom: 0.85rem;
    padding: 0.42rem 0.8rem;
    border-radius: 999px;
    background: rgba(127, 36, 63, 0.10);
    color: var(--accent-strong);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.module-card h3 {
    margin-bottom: 0.75rem;
    color: var(--heading);
    font-size: 1.55rem;
    line-height: 1.1;
}

.module-card p {
    color: var(--text-soft);
    line-height: 1.7;
}

.module-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.25rem;
}

.module-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0.95rem 1.35rem;
    border: 1px solid rgba(127, 36, 63, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.75);
    color: var(--accent-strong);
    font-weight: 700;
    text-decoration: none;
}

.location {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    align-items: stretch;
    padding-top: 3.9rem;
    padding-bottom: 1.25rem;
    border-radius: 34px;
    overflow: hidden;
    margin-bottom: 75px;
}

.location > .section-intro {
    margin-bottom: 0.6rem;
    width: 100%;
    max-width: none;
    justify-self: stretch;
    padding: 0.05rem 0.2rem 1.45rem;
    text-align: left;
}

.location > .section-intro .section-title {
    max-width: none;
    margin: 0;
}

.location > .section-intro .section-kicker {
    justify-content: flex-start;
}

.location-visual,
.location-copy,
.location-embed {
    position: relative;
    z-index: 1;
}

.location-visual img {
    width: 100%;
    height: auto;
    min-height: 0;
    object-fit: contain;
    border-radius: 34px;
    box-shadow: var(--shadow-soft);
}

.location-visual {
    padding: 2rem;
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.48);
    border-radius: 34px;
    box-shadow: var(--shadow-soft);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.location-map-asset {
    padding: 0;
    background: rgba(255, 255, 255, 0.92);
}

.location-copy {
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

.location-advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem;
}

.location-card {
    min-height: 392px;
    padding: 2.05rem 2.1rem 2.15rem;
    border-radius: 34px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(251, 250, 250, 0.92)),
        radial-gradient(circle at top left, rgba(127, 36, 63, 0.05), transparent 38%);
    border: 1px solid rgba(127, 36, 63, 0.07);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.72),
        0 14px 34px rgba(36, 18, 25, 0.05);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.location-card:not(.location-card-transport) {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    grid-template-areas:
        "icon title"
        "desc desc";
    column-gap: 1.5rem;
    row-gap: 1rem;
}

.location-card:hover,
.location-card:focus-within {
    transform: translateY(-2px);
    border-color: rgba(127, 36, 63, 0.12);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.78),
        0 18px 40px rgba(36, 18, 25, 0.07);
}

.location-card-head {
    display: contents;
}

.location-card:not(.location-card-transport) .location-card-head img {
    grid-area: icon;
    width: 118px;
    height: 118px;
    object-fit: contain;
    align-self: center;
    justify-self: center;
}

.location-card:not(.location-card-transport) h3 {
    grid-area: title;
    align-self: center;
    margin: 0;
    color: var(--heading);
    font-size: 1.95rem;
    line-height: 1.06;
    letter-spacing: -0.04em;
}

.location-card:not(.location-card-transport) p {
    grid-area: desc;
    position: relative;
    margin: 0;
    padding-top: 1.6rem;
    color: var(--text);
    font-size: 1.08rem;
    line-height: 1.7;
}

.location-card:not(.location-card-transport) p::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 48px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), rgba(183, 116, 138, 0.72));
}

.location-card-transport {
    display: grid;
    gap: 0;
}

.location-transport-row {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 1.2rem;
    align-items: center;
    padding: 0.48rem 0;
    border-bottom: 1px solid rgba(127, 36, 63, 0.08);
}

.location-transport-row:first-child {
    padding-top: 0;
}

.location-transport-row:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.location-transport-row img {
    width: 74px;
    height: 74px;
    object-fit: contain;
}

.location-transport-copy span {
    display: block;
    margin-bottom: 0.08rem;
    color: var(--text);
    font-size: 0.98rem;
    line-height: 1.14;
}

.location-transport-copy strong {
    display: block;
    color: var(--accent-strong);
    font-size: 1.12rem;
    line-height: 1.18;
    font-weight: 700;
}

.location-embed {
    padding: 1rem;
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.48);
    border-radius: 34px;
    box-shadow: var(--shadow-soft);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.location-embed iframe {
    display: block;
    width: 100%;
    min-height: 420px;
    border: 0;
    border-radius: 24px;
    box-shadow: inset 0 0 0 1px rgba(127, 36, 63, 0.08);
}

.standard-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.35rem;
}

.standard-tech-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.standard-tech-card,
.amenities-list {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    background:
        linear-gradient(180deg, rgba(251, 250, 250, 0.96), rgba(251, 250, 250, 0.92)),
        radial-gradient(circle at top right, rgba(183, 116, 138, 0.08), transparent 36%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.58),
        0 20px 48px rgba(36, 18, 25, 0.08);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.amenities-list-building,
.amenities-list-area {
    background: #ffffff;
}

.standard-tech-card:hover,
.standard-tech-card:focus-within,
.amenities-list:hover,
.amenities-list:focus-within {
    transform: translateY(-3px);
    border-color: rgba(127, 36, 63, 0.18);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.62),
        0 24px 58px rgba(36, 18, 25, 0.11);
}

.standard-tech-card {
    display: grid;
    grid-template-columns: 94px minmax(0, 1fr);
    gap: 1.35rem;
    align-items: start;
    min-height: 208px;
    padding: 1.85rem 1.9rem 1.95rem;
}

.standard-tech-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 94px;
    height: 94px;
    border-radius: 999px;
    background: transparent;
    box-shadow: none;
}

.standard-tech-icon-wrap img {
    width: 87px;
    height: 87px;
    object-fit: contain;
}

.standard-tech-copy h3,
.amenities-list h3 {
    margin: 0;
    color: var(--heading);
    font-size: 1.55rem;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.standard-tech-title-subline {
    display: block;
    margin-top: 0.18rem;
    color: var(--accent-strong);
    font-size: 0.64em;
    letter-spacing: -0.01em;
}

.standard-tech-copy p {
    margin: 1rem 0 0;
    color: var(--muted);
    font-size: 1.03rem;
    line-height: 1.55;
}

@media (min-width: 681px) {
    .standard-tech-card {
        grid-template-columns: 94px minmax(0, 1fr);
        grid-template-areas:
            "icon title"
            "desc desc";
        column-gap: 1.35rem;
        row-gap: 0.55rem;
        align-items: center;
    }

    .standard-tech-icon-wrap {
        grid-area: icon;
        align-self: center;
        justify-self: center;
    }

    .standard-tech-copy {
        display: contents;
    }

    .standard-tech-copy h3 {
        grid-area: title;
        align-self: center;
    }

    .standard-tech-copy p {
        grid-area: desc;
        width: 100%;
        margin: 0;
        padding-top: 0.75rem;
    }
}

.standard-amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.amenities-list {
    padding: 2.1rem 2rem 2.15rem;
}

.amenities-list h3 {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1.75rem;
    color: var(--accent-strong);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.amenities-list h3 img {
    width: 84px;
    height: 84px;
    object-fit: contain;
}

.amenities-list h3 span {
    display: block;
}

.amenities-tile-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.95rem;
}

.amenities-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 148px;
    padding: 1rem 0.9rem 1.05rem;
    text-align: center;
    border-radius: 20px;
    border: 1px solid rgba(127, 36, 63, 0.06);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 247, 247, 0.96)),
        radial-gradient(circle at top, rgba(127, 36, 63, 0.03), transparent 62%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.72),
        0 10px 24px rgba(36, 18, 25, 0.04);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.amenities-tile:hover,
.amenities-tile:focus-within {
    transform: translateY(-2px);
    border-color: rgba(127, 36, 63, 0.12);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.76),
        0 14px 28px rgba(36, 18, 25, 0.06);
}

.amenities-tile img {
    width: 88px;
    height: 88px;
    object-fit: contain;
}

.amenities-tile-icon-svg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    color: var(--heading);
    margin-top: 0;
    margin: 0 auto;
    align-self: center;
    flex: 0 0 auto;
}

.amenities-tile-icon-svg svg {
    display: block;
    width: 44px;
    height: 44px;
}

.amenities-tile span {
    display: block;
    margin-top: 0.55rem;
    color: var(--text);
    font-size: 0.98rem;
    line-height: 1.25;
}


.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    grid-auto-flow: dense;
}

.gallery-group + .gallery-group {
    margin-top: 4.25rem;
}

.gallery-group > .section-kicker {
    display: flex;
    justify-content: flex-start;
    width: min(100%, 1360px);
    max-width: 1360px;
    box-sizing: border-box;
    margin: 0 auto 0.9rem;
}

.gallery-subtitle {
    width: 100%;
    max-width: 1360px;
    margin-top: 0.4rem;
    margin-bottom: 1.75rem;
    margin-left: auto;
    margin-right: auto;
    color: var(--heading);
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
    text-align: left;
}

.gallery-load-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 54px;
    margin: 0;
    padding: 0.95rem 1.5rem;
    border: 1px solid rgba(127, 36, 63, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
    color: var(--accent-strong);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(31, 17, 24, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.gallery-load-more::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    background:
        linear-gradient(135deg, rgba(42, 29, 5, 0.98), rgba(58, 40, 7, 0.96)),
        linear-gradient(135deg, rgba(255, 127, 35, 0.14), rgba(255, 127, 35, 0));
    opacity: 0;
    transition: opacity 0.25s ease;
}

.gallery-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 1.5rem;
}

.gallery-load-more:hover,
.gallery-load-more:focus-visible {
    transform: scale(1.03);
    color: var(--white);
    border-color: rgba(255, 127, 35, 0.18);
    box-shadow:
        0 16px 28px rgba(42, 29, 5, 0.14),
        0 0 0 1px rgba(255, 127, 35, 0.16),
        0 0 18px rgba(255, 127, 35, 0.2);
}

.gallery-load-more:hover::before,
.gallery-load-more:focus-visible::before {
    opacity: 1;
}

.gallery-load-more[hidden] {
    display: none;
}

.gallery-item {
    aspect-ratio: 400 / 268;
    opacity: 0;
    transform: scale(0.9);
    transform-origin: center center;
    overflow: hidden;
    border-radius: 26px;
    box-shadow: var(--shadow-soft);
    pointer-events: none;
}

.gallery-item[hidden] {
    display: none;
}

.gallery-item.is-visible {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.gallery-item-wide {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
    min-height: clamp(320px, 34vw, 480px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    cursor: zoom-in;
    transition: transform 0.45s ease;
}

.gallery-grid.is-animated .gallery-item {
    transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.section-intro .section-kicker {
    justify-content: flex-start;
}

.about-owner-logo {
    width: clamp(180px, 20vw, 400px);
    margin: 3.25rem 0 0;
    height: auto;
    opacity: 0.96;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
}

.about-card {
    min-height: 220px;
    padding: 1.7rem;
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.48);
    box-shadow: var(--shadow-soft);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-card:hover,
.about-card:focus-within {
    transform: translateY(-4px);
    box-shadow: 0 22px 42px rgba(31, 17, 24, 0.12);
}

.about-card-index {
    display: inline-flex;
    margin-bottom: 1rem;
    color: var(--accent-soft);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.2em;
}

.about-card h3 {
    margin-bottom: 0.75rem;
    color: var(--heading);
    font-size: 1.45rem;
    line-height: 1.1;
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
        will-change: auto;
    }

    .site-header {
        opacity: 1;
        transform: none;
        animation: none;
        will-change: auto;
    }

    .lang-switch-floating {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

.about-card p {
    color: var(--text-soft);
    line-height: 1.7;
}

.about-hotels {
    margin-top: 4rem;
}

.about-hotels .section-intro {
    margin-bottom: 1.75rem;
}

.about-hotels-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
}

.hotel-card {
    display: block;
    overflow: hidden;
    text-decoration: none;
    border-radius: 30px;
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.48);
    box-shadow: var(--shadow-soft);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hotel-card:hover,
.hotel-card:focus-visible {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 24px 48px rgba(31, 17, 24, 0.14);
}

.hotel-card-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 220px;
    padding: 1.4rem;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.3), transparent 32%),
        linear-gradient(135deg, rgba(127, 36, 63, 0.92), rgba(97, 23, 46, 0.82) 45%, rgba(183, 116, 138, 0.72));
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--white);
}

.hotel-card-visual-zakopane {
    background-image:
        linear-gradient(180deg, rgba(18, 10, 15, 0.08), rgba(18, 10, 15, 0.48)),
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.2), transparent 32%),
        url("fotosy/hzakopane.webp");
}

.hotel-card-visual-wisla {
    background-image:
        linear-gradient(180deg, rgba(18, 10, 15, 0.08), rgba(18, 10, 15, 0.48)),
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.2), transparent 32%),
        url("fotosy/hwisla.webp");
}

.hotel-card-visual-szczyrk {
    background-image:
        linear-gradient(180deg, rgba(18, 10, 15, 0.08), rgba(18, 10, 15, 0.48)),
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.2), transparent 32%),
        url("fotosy/hszczyrk.webp");
}

.hotel-card-visual-mazury {
    background-image:
        linear-gradient(180deg, rgba(18, 10, 15, 0.08), rgba(18, 10, 15, 0.48)),
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.2), transparent 32%),
        url("fotosy/hmazury.webp");
}

.hotel-card-visual strong {
    font-size: clamp(1.8rem, 2.4vw, 2.5rem);
    line-height: 1;
    letter-spacing: -0.04em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.hotel-card-badge {
    display: inline-flex;
    align-self: flex-start;
    margin-bottom: auto;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.42);
}

.hotel-card-body {
    padding: 1.3rem 1.35rem 1.45rem;
}

.hotel-card-body h4 {
    margin-bottom: 0.7rem;
    color: var(--heading);
    font-size: 1.12rem;
    line-height: 1.35;
}

.hotel-card-link {
    color: var(--accent-strong);
    font-size: 0.9rem;
    font-weight: 700;
}

.gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 1500;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem 2rem 7.5rem;
    background: rgba(0, 0, 0, 0.9);
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

.gallery-modal.is-active {
    display: flex;
}

.mobile-module-gallery {
    position: fixed;
    inset: 0;
    z-index: 1600;
    display: none;
    grid-template-rows: auto minmax(0, 1fr) auto;
    background: rgba(8, 6, 4, 0.96);
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

.mobile-module-gallery[hidden] {
    display: none !important;
}

.mobile-module-gallery.is-active {
    display: grid;
}

.mobile-module-gallery__topbar {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 0.9rem;
    padding: calc(env(safe-area-inset-top, 0px) + 0.9rem) 1rem 0.8rem;
    background: linear-gradient(180deg, rgba(8, 6, 4, 0.96) 0%, rgba(8, 6, 4, 0.9) 72%, rgba(8, 6, 4, 0) 100%);
}

.mobile-module-gallery__title-pill {
    min-width: 0;
    padding: 0.9rem 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 20px;
    background: rgba(255, 252, 248, 0.94);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.mobile-module-gallery__title {
    margin: 0;
    color: var(--heading);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-align: center;
}

.mobile-module-gallery__actions {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
}

.mobile-module-gallery__share,
.mobile-module-gallery__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    font-size: 2.4rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.mobile-module-gallery__share {
    width: 56px;
    height: 56px;
    padding: 0;
    font-size: 0;
}

.mobile-module-gallery__share svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
}

.mobile-module-gallery__content {
    min-height: 0;
    overflow-y: auto;
    padding: 0 1rem 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
    -webkit-overflow-scrolling: touch;
}

.mobile-module-gallery__item {
    display: block;
    flex: 0 0 auto;
    width: 100%;
    margin: 0;
    overflow: hidden;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
}

.mobile-module-gallery__item--plan {
    position: relative;
    text-decoration: none;
}

.mobile-module-gallery__image {
    position: static !important;
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: none !important;
    min-height: 0 !important;
    aspect-ratio: auto !important;
    object-fit: contain !important;
    transform: none !important;
}

.mobile-module-gallery__plan-badge {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0.68rem 1rem;
    border: 1px solid rgba(255, 219, 181, 0.28);
    border-radius: 999px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.03) 34%, rgba(255, 255, 255, 0) 58%),
        radial-gradient(circle at center, rgba(255, 194, 132, 0.18), rgba(255, 194, 132, 0) 56%),
        linear-gradient(145deg, rgba(196, 99, 24, 0.96), rgba(142, 73, 17, 0.95));
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.01em;
    box-shadow:
        0 16px 30px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.38);
}

.mobile-module-gallery__footer {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0.75rem;
    padding: 0.5rem 1rem calc(env(safe-area-inset-bottom, 0px) + 1rem);
    background: linear-gradient(180deg, rgba(8, 6, 4, 0) 0%, rgba(8, 6, 4, 0.82) 30%, rgba(8, 6, 4, 0.96) 100%);
}

.mobile-module-gallery__cta,
.mobile-module-gallery__phone-cta {
    width: 100%;
    min-height: 56px;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(255, 219, 181, 0.26);
    border-radius: 18px;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.mobile-module-gallery__cta {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02) 30%, rgba(255, 255, 255, 0) 54%),
        radial-gradient(circle at center, rgba(255, 194, 132, 0.18), rgba(255, 194, 132, 0) 54%),
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.14), transparent 38%),
        linear-gradient(145deg, rgba(196, 99, 24, 0.95), rgba(142, 73, 17, 0.94));
    color: var(--white);
    font: inherit;
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1.08;
    text-shadow:
        0 4px 18px rgba(0, 0, 0, 0.42),
        0 2px 6px rgba(0, 0, 0, 0.34);
    cursor: pointer;
}

.mobile-module-gallery__phone-cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.15rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02) 28%, rgba(255, 255, 255, 0) 52%),
        radial-gradient(circle at center, rgba(255, 216, 152, 0.14), rgba(255, 216, 152, 0) 52%),
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 38%),
        linear-gradient(145deg, rgba(76, 58, 14, 0.96), rgba(42, 31, 6, 0.96));
    color: var(--white);
    text-decoration: none;
}

.mobile-module-gallery__phone-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.05;
    text-shadow:
        0 3px 14px rgba(0, 0, 0, 0.42),
        0 1px 4px rgba(0, 0, 0, 0.34);
}

.mobile-module-gallery__phone-number {
    display: block;
    font-family: "Lato", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.02;
    white-space: nowrap;
    text-shadow:
        0 4px 18px rgba(0, 0, 0, 0.42),
        0 2px 6px rgba(0, 0, 0, 0.34);
}

.modal-share-btn {
    position: absolute;
    top: 1.25rem;
    right: 6.35rem;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    min-height: 58px;
    padding: 0.82rem 1.05rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    cursor: pointer;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.modal-share-btn[hidden] {
    display: none !important;
}

.modal-share-btn:hover,
.modal-share-btn:focus-visible {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.34);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.24);
}

.modal-share-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.modal-share-btn-icon svg {
    width: 19px;
    height: 19px;
    stroke: currentColor;
    filter: drop-shadow(0 3px 7px rgba(0, 0, 0, 0.9));
}

.modal-share-btn-label {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
    text-shadow:
        0 -1px 3px rgba(0, 0, 0, 0.95),
        0 1px 3px rgba(0, 0, 0, 0.95),
        -1px 0 3px rgba(0, 0, 0, 0.95),
        1px 0 3px rgba(0, 0, 0, 0.95);
}

.share-feedback-toast {
    position: fixed;
    left: 50%;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 1.25rem);
    z-index: 2200;
    max-width: min(calc(100vw - 2rem), 320px);
    padding: 0.85rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    background: rgba(23, 18, 12, 0.94);
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    transform: translate(-50%, 12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.share-feedback-toast.is-anchored {
    max-width: min(32vw, 320px);
    text-align: left;
    transform: translateY(12px);
}

.share-feedback-toast.is-visible {
    opacity: 1;
    transform: translate(-50%, 0);
}

.share-feedback-toast.is-anchored.is-visible {
    transform: translateY(0);
}

.share-feedback-toast.is-error {
    background: rgba(88, 28, 23, 0.96);
}

.modal-meta {
    position: absolute;
    top: 1.35rem;
    left: 50%;
    z-index: 3;
    width: min(100%, 720px);
    max-width: calc(100vw - 10rem);
    padding: 0.75rem 1.1rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.75);
    color: var(--heading);
    text-align: center;
    transform: translateX(-50%);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    pointer-events: none;
}

.modal-meta-title {
    margin: 0;
    font-size: clamp(1rem, 1.7vw, 1.35rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
    white-space: nowrap;
}

.modal-meta-details {
    margin: 0.35rem 0 0;
    color: var(--text-soft);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.modal-cta {
    position: absolute;
    top: 4rem;
    left: 4rem;
    z-index: 3;
    display: grid;
    gap: 0.55rem;
    width: min(100%, 292px);
    max-width: 292px;
    padding: 1rem 1.05rem 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.02) 30%, rgba(255, 255, 255, 0) 54%),
        radial-gradient(circle at center, rgba(255, 160, 76, 0.12), rgba(255, 160, 76, 0) 54%),
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.13), transparent 38%),
        linear-gradient(145deg, rgba(53, 38, 7, 0.97), rgba(31, 22, 4, 0.95));
    color: var(--white);
    box-shadow: 0 22px 48px rgba(14, 6, 10, 0.26);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    transform: rotate(-2deg) translate(0, 0) scale(1);
    transform-origin: center center;
    cursor: pointer;
    text-decoration: none;
    transition:
        transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.32s ease,
        background 0.32s ease;
}

.modal-cta:not([hidden]) {
    animation:
        modal-cta-enter 0.72s cubic-bezier(0.22, 1, 0.36, 1) 0.22s backwards,
        modal-cta-glow 2.6s ease-in-out 1.1s infinite;
}

.modal-cta-label {
    display: block;
    font-size: 1.02rem;
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: 0.03em;
    text-shadow:
        0 4px 18px rgba(0, 0, 0, 0.46),
        0 2px 6px rgba(0, 0, 0, 0.38);
}

.modal-cta-phone {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    font-family: "Lato", sans-serif;
    font-size: clamp(1.55rem, 2.2vw, 1.95rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: 0.03em;
    color: var(--white);
    text-decoration: none;
    white-space: nowrap;
    text-shadow:
        0 4px 18px rgba(0, 0, 0, 0.46),
        0 2px 6px rgba(0, 0, 0, 0.38);
}

.modal-cta-phone:hover,
.modal-cta-phone:focus-visible {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 0.18em;
}

.modal-cta:hover .modal-cta-phone,
.modal-cta:focus-within .modal-cta-phone {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 0.18em;
}

.modal-cta:hover,
.modal-cta:focus-within {
    transform: rotate(-2deg) translate(0, -2px) scale(1.02);
    background:
        radial-gradient(circle at center, rgba(255, 187, 113, 0.16), rgba(255, 187, 113, 0) 54%),
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.24), transparent 40%),
        linear-gradient(145deg, rgba(67, 48, 9, 0.98), rgba(39, 28, 5, 0.96));
    box-shadow:
        0 24px 46px rgba(14, 6, 10, 0.28),
        0 0 18px rgba(255, 255, 255, 0.18);
}

.modal-cta-secondary {
    position: absolute;
    z-index: 2;
    top: 13.95rem;
    left: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 244px);
    max-width: 260px;
    min-height: 60px;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02) 30%, rgba(255, 255, 255, 0) 54%),
        radial-gradient(circle at center, rgba(255, 194, 132, 0.18), rgba(255, 194, 132, 0) 54%),
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.14), transparent 38%),
        linear-gradient(145deg, rgba(196, 99, 24, 0.95), rgba(142, 73, 17, 0.94));
    color: var(--white);
    font: inherit;
    font-weight: 800;
    font-size: 1.04rem;
    line-height: 1.08;
    letter-spacing: 0.03em;
    cursor: pointer;
    text-align: center;
    box-shadow:
        0 18px 34px rgba(12, 30, 18, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.24);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    opacity: 0;
    transform: rotate(-2deg) translate(-18px, 0) scale(1);
    transform-origin: center center;
    text-shadow:
        0 4px 18px rgba(0, 0, 0, 0.46),
        0 2px 6px rgba(0, 0, 0, 0.38);
    transition:
        opacity 0.3s ease,
        transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.modal-cta-secondary[hidden] {
    display: none !important;
}

.modal-cta-secondary.is-visible {
    opacity: 1;
    transform: rotate(-2deg) translate(0, 0) scale(1);
}

.modal-cta-secondary:hover,
.modal-cta-secondary:focus-visible {
    transform: rotate(-2deg) translate(0, -2px) scale(1.03);
    box-shadow:
        0 20px 38px rgba(12, 30, 18, 0.28),
        0 0 18px rgba(255, 255, 255, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.26);
    background:
        radial-gradient(circle at center, rgba(255, 219, 181, 0.28), rgba(255, 219, 181, 0) 54%),
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.24), transparent 40%),
        linear-gradient(145deg, rgba(214, 111, 30, 0.98), rgba(160, 82, 18, 0.96));
}

@media (min-width: 921px) {
    .hero-alert-card-secondary,
    .modal-cta {
        cursor: default;
        pointer-events: none;
        animation: none !important;
        transition: none;
    }

    .hero-alert-card-secondary {
        display: none;
    }

    .modal-cta {
        display: none;
    }
}

@keyframes modal-cta-enter {
    0% {
        opacity: 0;
        transform: rotate(-2deg) translate(-42px, 0) scale(0.1);
    }

    62% {
        opacity: 1;
        transform: rotate(-2deg) translate(4px, 0) scale(1.06);
    }

    100% {
        opacity: 1;
        transform: rotate(-2deg) translate(0, 0) scale(1);
    }
}

@keyframes modal-cta-glow {
    0%,
    100% {
        box-shadow:
            0 22px 48px rgba(14, 6, 10, 0.26),
            0 0 0 rgba(255, 255, 255, 0);
    }

    50% {
        box-shadow:
            0 24px 56px rgba(14, 6, 10, 0.3),
            0 0 28px rgba(255, 255, 255, 0.22);
    }
}

.modal-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    isolation: isolate;
    contain: paint;
}

.modal-image {
    position: absolute;
    inset: 0;
    margin: auto;
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 22px;
    will-change: opacity;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.modal-image-current {
    z-index: 1;
    opacity: 1;
}

.modal-image-next {
    z-index: 2;
    opacity: 0;
    transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-image-next.is-visible {
    opacity: 1;
}

.modal-close,
.modal-prev,
.modal-next {
    position: absolute;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    cursor: pointer;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.modal-close:hover,
.modal-close:focus-visible,
.modal-prev:hover,
.modal-prev:focus-visible,
.modal-next:hover,
.modal-next:focus-visible {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.34);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.24);
}

.modal-close {
    top: 1.25rem;
    right: 1.25rem;
    font-size: 2.2rem;
    line-height: 1;
    text-shadow:
        0 -1px 3px rgba(0, 0, 0, 0.96),
        0 1px 3px rgba(0, 0, 0, 0.96),
        -1px 0 3px rgba(0, 0, 0, 0.96),
        1px 0 3px rgba(0, 0, 0, 0.96);
}

.modal-close:hover,
.modal-close:focus-visible {
    transform: translateY(-2px) scale(1.04);
}

.modal-prev,
.modal-next {
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.2rem;
    line-height: 1;
}

.modal-prev:hover,
.modal-prev:focus-visible,
.modal-next:hover,
.modal-next:focus-visible {
    transform: translateY(calc(-50% - 2px));
}

.modal-prev {
    left: 1.5rem;
}

.modal-next {
    right: 1.5rem;
}

.modal-thumbs {
    position: absolute;
    z-index: 3;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: 1.35rem;
    min-height: 170px;
    padding: 1.2rem 1.5rem 1.6rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.68) 38%, rgba(0, 0, 0, 0.86) 100%);
}

.modal-plan-thumb {
    flex: 0 0 auto;
    width: 180px;
    height: 120px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
    overflow: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.modal-plan-thumb:hover,
.modal-plan-thumb:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.72);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.modal-plan-thumb.is-active {
    border-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.modal-plan-thumb-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-thumbs-divider {
    flex: 0 0 auto;
    align-self: center;
    width: 1px;
    height: 96px;
    margin-inline: 0.35rem 0.7rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0));
}

.modal-thumbs-strip {
    display: flex;
    gap: 0.6rem;
    min-width: 0;
    flex: 1 1 auto;
    overflow-x: auto;
    overflow-y: hidden;
    padding-block: 0.15rem;
    padding-inline: 0.35rem 0.45rem;
    scroll-padding-inline: 0.35rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.modal-thumbs-strip::-webkit-scrollbar {
    display: none;
}

.modal-thumb {
    flex: 0 0 auto;
    width: 180px;
    height: 120px;
    border-radius: 14px;
    object-fit: cover;
    opacity: 0.6;
    cursor: pointer;
    border: 2px solid transparent;
    transition: opacity 0.2s ease, transform 0.2s ease, border-color 0.25s ease, box-shadow 0.2s ease;
}

.modal-thumb:hover,
.modal-thumb:focus-visible {
    opacity: 0.88;
    transform: translateY(-2px);
}

.modal-thumb.active,
.modal-thumb.is-active {
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.95);
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.inquiry-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    padding: 1.5rem;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

.inquiry-modal[hidden] {
    display: none !important;
}

.inquiry-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.inquiry-content {
    position: relative;
    z-index: 1;
    width: fit-content;
    min-width: min(100%, 540px);
    max-width: min(100%, 680px);
    padding: 2rem 2.15rem 2.1rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    box-shadow: 0 26px 70px rgba(17, 8, 13, 0.2);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.inquiry-content.is-success {
    justify-content: center;
    min-height: 420px;
}

.inquiry-content.is-success > :not(.form-success) {
    display: none !important;
}

.inquiry-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(127, 36, 63, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--accent-strong);
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    transition:
        transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.22s ease,
        background 0.22s ease,
        border-color 0.22s ease;
}

.inquiry-close:hover,
.inquiry-close:focus-visible {
    transform: translateY(-2px) scale(1.04);
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(127, 36, 63, 0.24);
    box-shadow:
        0 14px 24px rgba(31, 17, 24, 0.12),
        0 0 16px rgba(255, 255, 255, 0.2);
}

.inquiry-title {
    margin: 0;
    color: var(--heading);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.inquiry-subtitle {
    margin: -0.15rem 0 0.35rem;
    color: var(--text-soft);
    font-size: 0.98rem;
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: -0.01em;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.inquiry-fields {
    display: flex;
    flex-direction: column;
    gap: inherit;
}

.inquiry-form.is-hidden {
    display: none;
}

.inquiry-form input,
.inquiry-form textarea {
    width: 100%;
    padding: 1rem 1rem;
    border: 1px solid rgba(127, 36, 63, 0.14);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--text);
    font: inherit;
}

.inquiry-form input.is-invalid,
.inquiry-form textarea.is-invalid {
    border-color: rgba(182, 50, 71, 0.78);
    box-shadow: 0 0 0 1px rgba(182, 50, 71, 0.16);
}

.inquiry-field-error {
    margin: -0.35rem 0 0;
    color: rgb(163, 38, 58);
    font-size: 0.82rem;
    line-height: 1.35;
}

.inquiry-form textarea {
    min-height: 150px;
    resize: vertical;
}

.form-actions {
    display: flex;
    gap: 0.8rem;
}

.btn-submit,
.btn-cancel {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0.9rem 1.25rem;
    border-radius: 999px;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    transition:
        box-shadow 0.22s ease,
        background 0.22s ease,
        border-color 0.22s ease,
        color 0.22s ease;
}

.btn-submit {
    flex: 1 1 auto;
    border: none;
    background-color: var(--accent);
    color: var(--white);
    box-shadow: 0 16px 28px rgba(97, 23, 46, 0.22);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.42);
}

.btn-submit:disabled {
    cursor: progress;
    opacity: 0.78;
    box-shadow: 0 10px 18px rgba(97, 23, 46, 0.16);
}

.btn-submit:hover:not(:disabled),
.btn-submit:focus-visible:not(:disabled) {
    background-color: rgb(23, 82, 50);
    box-shadow:
        0 16px 28px rgba(20, 70, 43, 0.22),
        0 0 0 1px rgba(90, 180, 120, 0.18);
}

.btn-cancel {
    border: 1px solid rgba(127, 36, 63, 0.18);
    background: rgba(255, 255, 255, 0.82);
    color: var(--accent-strong);
}

.btn-cancel:hover,
.btn-cancel:focus-visible {
    background: linear-gradient(135deg, rgba(125, 32, 44, 0.98), rgba(91, 18, 28, 0.96));
    color: var(--white);
    border-color: rgba(201, 92, 110, 0.18);
    box-shadow:
        0 16px 28px rgba(91, 18, 28, 0.18),
        0 0 0 1px rgba(201, 92, 110, 0.16);
}

.form-success[hidden] {
    display: none !important;
}

.form-success {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    text-align: center;
}

.form-success-content {
    width: min(100%, 420px);
    padding: 2rem;
    border-radius: 20px;
    background:
        radial-gradient(circle at top, rgba(196, 240, 209, 0.72), rgba(196, 240, 209, 0) 52%),
        rgba(239, 251, 243, 0.94);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    box-shadow:
        0 24px 56px rgba(20, 61, 33, 0.18),
        0 0 28px rgba(112, 194, 136, 0.22);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border: 1px solid rgba(112, 194, 136, 0.26);
}

.form-success-title {
    margin: 0;
    color: #245838;
    font-size: clamp(2rem, 3.4vw, 2.6rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.form-success-message {
    margin: 0;
    color: #3a5e47;
    font-size: 1rem;
    line-height: 1.65;
}

.btn-close-success {
    margin-top: 0.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    padding: 0.75rem 1.25rem;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, #4b9360, #2f6f44);
    color: var(--white);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    box-shadow: 0 14px 26px rgba(47, 111, 68, 0.24);
}

.btn-close-success:hover,
.btn-close-success:focus-visible {
    transform: scale(1.05);
    box-shadow:
        0 18px 30px rgba(47, 111, 68, 0.28),
        0 0 18px rgba(174, 234, 192, 0.22);
}

.form-success.is-error .form-success-content {
    background: rgba(255, 246, 248, 0.93);
}

.form-success.is-error .form-success-title {
    color: var(--accent-strong);
}

.form-success.is-error .form-success-message {
    color: var(--text);
}

@media (max-width: 900px) {
    .modal-meta {
        top: 1rem;
        max-width: calc(100vw - 6.5rem);
        padding: 0.75rem 0.95rem 0.85rem;
    }

    .modal-meta-title {
        font-size: 0.92rem;
    }

    .modal-meta-details {
        font-size: 0.88rem;
    }

    .modal-cta {
        display: none !important;
    }

    .modal-cta:not([hidden]) {
        animation:
            modal-cta-enter-mobile 0.72s cubic-bezier(0.22, 1, 0.36, 1) 0.22s backwards,
            modal-cta-glow 2.6s ease-in-out 1.1s infinite;
    }

    .modal-cta-label {
        font-size: 0.76rem;
        line-height: 1.08;
    }

    .modal-cta-secondary {
        top: 12.95rem;
        left: 1.1rem;
        width: auto;
        max-width: min(100%, 228px);
        min-height: 74px;
        padding: 0.72rem 0.95rem 0.78rem;
        font-size: 0.82rem;
        line-height: 1.02;
        transform: rotate(-2deg) translate(-14px, 0) scale(1);
    }

    .modal-prev,
    .modal-next {
        top: auto;
        bottom: 9.35rem;
        transform: none;
    }

    .modal-prev:hover,
    .modal-prev:focus-visible,
    .modal-next:hover,
    .modal-next:focus-visible {
        transform: translateY(-2px);
    }

    @keyframes modal-cta-enter-mobile {
        0% {
            opacity: 0;
            transform: rotate(-2deg) translate(-32px, 0) scale(0.1);
        }

        62% {
            opacity: 1;
            transform: rotate(-2deg) translate(4px, 0) scale(1.06);
        }

        100% {
            opacity: 1;
            transform: rotate(-2deg) translate(0, 0) scale(1);
        }
    }

    .inquiry-modal {
        place-items: stretch;
        padding: 0;
    }

    .inquiry-content {
        display: grid;
        grid-template-rows: auto auto minmax(0, 1fr);
        align-content: start;
        width: 100%;
        min-width: 0;
        max-width: none;
        min-height: var(--app-height, 100vh);
        max-height: var(--app-height, 100vh);
        margin: 0;
        padding: calc(env(safe-area-inset-top, 0px) + 0.95rem) 0.95rem calc(env(safe-area-inset-bottom, 0px) + 0.9rem);
        border-radius: 0;
        gap: 0.62rem;
        overflow-y: auto;
        overscroll-behavior: contain;
        box-shadow: none;
    }

    .inquiry-form {
        display: grid;
        grid-template-rows: minmax(0, 1fr) auto;
        min-height: 0;
        overflow: hidden;
    }

    .inquiry-fields {
        min-height: 0;
        overflow-y: auto;
        overscroll-behavior: contain;
        padding-bottom: 0.55rem;
        scroll-padding-top: 0.9rem;
        scroll-padding-bottom: 1rem;
        -webkit-overflow-scrolling: touch;
    }

    .inquiry-fields input,
    .inquiry-fields textarea {
        scroll-margin-top: 0.9rem;
    }

    .form-actions {
        flex-direction: column;
        position: relative;
        z-index: 3;
        margin-top: 0;
        padding-top: 0.4rem;
        padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 0.2rem);
        background: linear-gradient(180deg, rgba(255, 252, 248, 0) 0%, rgba(255, 252, 248, 0.92) 22%, rgba(255, 252, 248, 0.98) 100%);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
    }

    .btn-cancel {
        display: none;
    }

    .inquiry-close {
        top: calc(env(safe-area-inset-top, 0px) + 0.9rem);
        right: 0.9rem;
        width: 38px;
        height: 38px;
        font-size: 1.45rem;
    }

    .inquiry-title {
        font-size: 1.42rem;
        line-height: 0.98;
    }

    .inquiry-subtitle {
        margin: -0.04rem 0 0.1rem;
        font-size: 0.8rem;
        line-height: 1.28;
        max-width: calc(100% - 3.25rem);
    }

    .inquiry-form {
        gap: 0.58rem;
    }

    .inquiry-form input,
    .inquiry-form textarea {
        padding: 0.72rem 0.84rem;
        border-radius: 14px;
        font-size: 0.94rem;
    }

    .inquiry-field-error {
        margin-top: -0.2rem;
        font-size: 0.78rem;
    }

    .inquiry-form textarea {
        min-height: 88px;
    }

    .btn-submit,
    .btn-cancel {
        min-height: 44px;
        padding: 0.72rem 0.95rem;
        font-size: 0.92rem;
    }

    .modal-thumbs {
        gap: 0.8rem;
        min-height: 140px;
        padding: 1rem 1rem 1.2rem;
    }

    .modal-plan-thumb,
    .modal-thumb {
        width: 144px;
        height: 96px;
    }

    .modal-thumbs-divider {
        height: 72px;
        margin-inline: 0.15rem 0.35rem;
    }
}

.contact {
    color: var(--white);
}

.contact-content {
    display: block;
}

.contact-info {
    min-width: 0;
}

.contact-intro {
    min-width: 0;
}

.contact-intro > .section-title {
    margin-top: 0.75rem;
    line-height: 1.22;
}

.contact-directory {
    margin-top: 2.5rem;
}

.contact-people {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.2rem;
}

.contact-person {
    min-width: 0;
}

.contact-person-kicker {
    display: inline-flex;
    align-items: center;
    margin-bottom: 1.1rem;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.contact-person-name {
    margin: 0 0 0.9rem;
    color: var(--white);
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1.1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}

.contact-person p,
.contact-company-block p {
    margin: 0 0 0.75rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.06rem;
    line-height: 1.65;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}

.contact-person strong,
.contact-company-block strong {
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.22);
}

.contact-person a,
.contact-company-block a {
    color: #f6d9e1;
    text-decoration: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
    transition: color 0.22s ease, text-shadow 0.22s ease, background 0.22s ease;
}

.contact-person a:not([data-mobile-href]):hover,
.contact-person a:not([data-mobile-href]):focus-visible,
.contact-company-block a:not([data-mobile-href]):hover,
.contact-company-block a:not([data-mobile-href]):focus-visible {
    color: #fff4e8;
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.18),
        0 0 14px rgba(255, 127, 35, 0.22);
}

.contact-person a[data-mobile-href][aria-disabled="true"],
.contact-company-block a[data-mobile-href][aria-disabled="true"] {
    color: rgba(255, 255, 255, 0.82);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
    cursor: default;
    pointer-events: none;
}

.contact-person a[data-mobile-href][aria-disabled="true"]:hover,
.contact-person a[data-mobile-href][aria-disabled="true"]:focus-visible,
.contact-company-block a[data-mobile-href][aria-disabled="true"]:hover,
.contact-company-block a[data-mobile-href][aria-disabled="true"]:focus-visible {
    color: rgba(255, 255, 255, 0.82);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
    background: transparent;
}

@media (min-width: 921px) {
    .contact-person a[data-mobile-href],
    .contact-company-block a[data-mobile-href] {
        cursor: default;
        pointer-events: none;
        color: rgba(255, 255, 255, 0.82);
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
    }

    .contact-person a[data-mobile-href]:hover,
    .contact-person a[data-mobile-href]:focus-visible,
    .contact-company-block a[data-mobile-href]:hover,
    .contact-company-block a[data-mobile-href]:focus-visible {
        color: rgba(255, 255, 255, 0.82);
        background: transparent;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
    }
}

.contact-company-block {
    margin-top: 2rem;
    padding-top: 1.6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    width: 100%;
    max-width: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
}

.contact-company-block p:last-child {
    margin-bottom: 0;
}

.contact-company-column {
    min-width: 0;
}

.section-kicker-light,
.section-title-light {
    color: var(--white);
}

.section-kicker-light {
    color: var(--accent);
}

.contact-card {
    position: relative;
    overflow: hidden;
    margin-top: 5rem;
    padding: 1.6rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 260px);
    gap: 1.35rem;
    align-items: stretch;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.16), transparent 32%),
        radial-gradient(circle at bottom right, rgba(127, 36, 63, 0.12), transparent 38%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04));
    background-size: 120% 120%, 120% 120%, 140% 140%;
    animation: contact-card-gradient-shift 16s ease-in-out infinite alternate;
    border: 1px solid var(--stroke-light);
    box-shadow:
        0 18px 38px rgba(0, 0, 0, 0.16),
        0 6px 16px rgba(0, 0, 0, 0.08);
}

.contact-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 1;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 22%, transparent 72%, rgba(255, 255, 255, 0.03));
}

.contact-card > * {
    position: relative;
    z-index: 1;
}

@keyframes contact-card-gradient-shift {
    0% {
        background-position: 0% 0%, 100% 100%, 0% 50%;
    }

    100% {
        background-position: 10% 6%, 92% 88%, 100% 50%;
    }
}

.contact-card-copy {
    min-width: 0;
}

.owner-logo-contact {
    width: 160px;
    margin-bottom: 1.25rem;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.contact-portrait {
    margin: 0;
    position: relative;
    justify-self: end;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    min-height: 100%;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.03)),
        linear-gradient(135deg, rgba(127, 36, 63, 0.28), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 18px 38px rgba(12, 4, 9, 0.22);
}

.contact-portrait::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(24, 10, 16, 0) 0%, rgba(24, 10, 16, 0.18) 100%);
    pointer-events: none;
}

.contact-portrait-image {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center top;
}

.contact-details p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}

.contact-details strong {
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.22);
}

.contact-details a {
    color: #f6d9e1;
    text-decoration: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}

@media (min-width: 1181px) {
    .contact-intro > .section-title {
        white-space: nowrap;
    }
}

.contact-form {
    padding: 1.8rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--stroke-light);
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.45rem;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.94rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    color: var(--white);
    outline: none;
    transition: border-color 0.25s ease, background 0.25s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.48);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    cursor: pointer;
}

.site-footer {
    padding: 1.4rem 1.25rem 2rem;
    background: #170d12;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

.site-footer-credit {
    display: block;
    width: fit-content;
    margin: 0.75rem auto 0;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 1180px) {
    .spaces-grid,
    .module-grid,
    .gallery-grid,
    .about-grid,
    .about-hotels-grid,
    .contact-content,
    .standard-content,
    .hero-shell {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-item-wide {
        grid-row: span 1;
        grid-column: span 2;
        min-height: clamp(260px, 32vw, 360px);
    }

    .overview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .overview-card {
        min-height: 208px;
    }

    .standard-content {
        grid-template-columns: 1fr;
    }

    .standard-tech-grid,
    .standard-amenities-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .amenities-tile-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .location-advantages-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .location-card {
        min-height: 360px;
    }

    .contact-people {
        grid-template-columns: 1fr;
        gap: 1.6rem;
    }

    .owner-logo-nav {
        display: none;
    }
}

@media (max-width: 920px) {
    html,
    body {
        overflow-x: hidden;
    }

    .hero-eyebrow,
    .section-kicker {
        margin-top: 0;
    }

    .reveal {
        transform: none;
        transition: opacity 0.45s ease;
        will-change: opacity;
    }

    .reveal.is-visible {
        transform: none;
    }

    .hero {
        overflow: hidden;
    }

    .location {
        overflow: visible;
    }

    .site-header {
        padding: 0.9rem 0.9rem 0;
    }

    .navbar {
        padding: 0.9rem 1rem;
        opacity: 1;
        transform: none;
        background: rgba(255, 252, 248, 0.92);
        box-shadow: 0 12px 40px rgba(31, 17, 24, 0.10);
    }

    .lang-switch-floating {
        top: 1.15rem;
        right: 0.9rem;
        min-width: 52px;
        min-height: 52px;
        padding: 0.7rem 0.8rem;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .nav-panel {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 1.25rem;
        padding: 1.2rem;
        background: rgba(255, 252, 248, 0.92);
        border: 1px solid rgba(255, 255, 255, 0.7);
        border-top: 1px solid rgba(130, 86, 48, 0.2);
        border-radius: 24px;
        box-shadow: var(--shadow-soft);
        -webkit-backdrop-filter: blur(22px);
        backdrop-filter: blur(22px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-14px) scale(0.98);
        transform-origin: top center;
        transition:
            opacity 0.24s ease,
            transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
            visibility 0s linear 0.28s;
    }

    .menu-open .nav-panel {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0) scale(1);
        transition-delay: 0s, 0s, 0s;
    }

    .nav-links,
    .nav-actions {
        flex-direction: column;
        align-items: center;
    }

    .nav-links {
        gap: 1.5rem;
        width: 100%;
        align-items: center;
    }

    .owner-logo-nav {
        display: block;
    }

    .nav-actions {
        align-items: center;
        margin-top: 1rem;
        margin-bottom: 0.5rem;
    }

    .owner-logo-nav {
        margin: 0 auto 0.75rem;
    }

    .hero {
        padding: 0 0.9rem;
    }

    .hero-shell {
        min-height: 0;
        grid-template-rows: auto;
        align-content: center;
    }

    .hero-copy-desktop {
        display: none;
    }

    .hero-copy-mobile {
        display: block;
    }

    .hero-alert {
        grid-column: auto;
        grid-row: auto;
        align-self: start;
        max-width: none;
        margin-top: 0;
        margin-bottom: 0;
    }

    .hero-card {
        grid-column: auto;
        grid-row: auto;
        width: 100%;
        max-width: none;
        justify-self: stretch;
    }

    .hero-facts,
    .stats-grid,
    .spaces-grid,
    .module-grid,
    .standard-content,
    .gallery-grid,
    .about-grid,
    .about-hotels-grid,
    .contact-content,
    .hero-shell {
        grid-template-columns: 1fr;
    }

    .gallery-item-wide {
        grid-column: auto;
        grid-row: auto;
        aspect-ratio: 400 / 268;
        min-height: 0;
    }

    .overview-grid {
        grid-template-columns: 1fr;
    }

    .overview-card {
        min-height: auto;
        padding: 1.45rem 1.35rem 1.55rem;
        border-radius: 24px;
    }

    .overview-card h3,
    .location-card:not(.location-card-transport) h3,
    .standard-tech-copy h3 {
        max-width: none;
        font-size: clamp(1.02rem, 4vw, 1.12rem);
        line-height: 1.12;
        letter-spacing: -0.025em;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .overview-card p {
        max-width: none;
    }

    .standard-tech-grid,
    .standard-amenities-grid {
        grid-template-columns: 1fr;
    }

    .standard-tech-card {
        min-height: 0;
    }

    .amenities-tile-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .location-advantages-grid {
        grid-template-columns: 1fr;
    }

    .location-card,
    .location-card-transport {
        min-height: 0;
    }

    .location-card {
        display: block;
    }

    .location-card p {
        margin-top: 1rem;
        padding-top: 1.15rem;
    }

    .contact-intro > .section-title {
        white-space: normal;
    }

    .contact-person-name {
        font-size: 1.45rem;
    }

    .contact-company-block {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 680px) {
    :root {
        --nav-height: 76px;
    }

    .hero {
        padding: 0 0.9rem;
    }

    .hero h1 {
        max-width: 10ch;
    }

    .overview-card h3 .no-break,
    .location-card h3 .no-break,
    .standard-tech-copy h3 .no-break {
        white-space: normal;
    }

    .hero-facts {
        gap: 0.75rem;
    }

    .amenities-tile-grid {
        grid-template-columns: 1fr;
    }

    .location-advantages-grid {
        grid-template-columns: 1fr;
    }

    .cta-button,
    .secondary-button {
        width: 100%;
    }

    .quick-stats,
    .available-spaces,
    .module-resources,
    .location,
    .standard,
    .gallery,
    .about,
    .contact {
        padding: 5.5rem 1rem;
    }

    .location-copy,
    .about-card,
    .contact-card,
    .contact-form,
    .stat-card,
    .overview-card,
    .space-card,
    .standard-tech-card,
    .amenities-list {
        padding: 1.35rem;
    }

    .location-card,
    .location-card-transport {
        padding: 1.35rem;
    }

    .contact-person p,
    .contact-company-block p {
        font-size: 1rem;
        line-height: 1.58;
    }

    .space-actions {
        flex-direction: column;
    }

    .hotel-card-visual {
        min-height: 180px;
        padding: 1.2rem;
    }

    .hotel-card-body {
        padding: 1.15rem 1.2rem 1.25rem;
    }

    .contact-card {
        grid-template-columns: 1fr;
    }

    .contact-portrait {
        justify-self: center;
        width: 100%;
        max-width: 320px;
    }

    .location-card-head,
    .location-transport-row {
        grid-template-columns: 60px minmax(0, 1fr);
        gap: 0.85rem;
    }

    .location-card-head img,
    .location-transport-row img {
        width: 60px;
        height: 60px;
    }

    .location-card h3 {
        font-size: 1.46rem;
    }

    .location-card p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .location-transport-copy span {
        font-size: 0.92rem;
    }

    .location-transport-copy strong {
        font-size: 1rem;
    }

}

@media (max-width: 480px) {
    :root {
        --nav-height: 58px;
        --hero-mobile-card-height: 12.6rem;
    }

    .site-header {
        padding: 0;
    }

    .navbar {
        width: 100%;
        max-width: none;
        min-height: 58px;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto auto;
        align-items: center;
        gap: 0.5rem;
        padding: 0.5rem 0.8rem;
        border-radius: 0;
        opacity: 1;
        transform: none;
        background: rgba(255, 252, 248, 0.92);
        box-shadow: 0 10px 28px rgba(31, 17, 24, 0.12);
    }

    .brand-mark {
        display: inline-flex;
        min-width: 0;
    }

    .brand-mark::after {
        display: none;
    }

    .brand-logo {
        width: clamp(110px, 34vw, 136px);
        margin: 0;
    }

    .lang-switch-floating {
        position: static;
        top: auto;
        right: auto;
        left: auto;
        z-index: auto;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 42px;
        min-height: 42px;
        padding: 0.45rem 0.58rem;
        font-size: 0.78rem;
        border-radius: 14px;
        opacity: 1;
        transform: none;
        animation: none;
        justify-self: end;
        box-shadow: 0 8px 20px rgba(31, 17, 24, 0.08);
    }

    .site-header > .lang-switch-floating {
        display: none;
    }

    .navbar > .lang-switch-floating {
        display: inline-flex;
    }

    .menu-toggle {
        width: 42px;
        height: 42px;
        margin-left: 0;
        border-radius: 14px;
        justify-self: end;
    }

    .nav-panel {
        top: 100%;
        gap: 1rem;
        padding: 1.35rem 1rem 1rem;
        background: rgba(255, 252, 248, 0.92);
        border-top: 1px solid rgba(255, 127, 35, 0.18);
        border-radius: 0 0 22px 22px;
        box-shadow:
            0 24px 40px rgba(42, 29, 5, 0.12),
            0 18px 26px -10px rgba(255, 127, 35, 0.24),
            0 30px 34px -16px rgba(255, 127, 35, 0.34);
    }

    .nav-links {
        gap: 1.15rem;
        margin-top: 0.55rem;
    }

    .nav-links a {
        padding: 0.46rem 0.72rem;
        font-size: 0.88rem;
        text-align: center;
    }

    .nav-actions {
        margin-top: 1.35rem;
        margin-bottom: 0.75rem;
    }

    .owner-logo-nav {
        margin: 0 auto 0.95rem;
    }

    .hero {
        position: relative;
        min-height: 100svh;
        min-height: var(--app-height, 100svh);
        display: flex;
        flex-direction: column;
        padding: var(--nav-height) 0 0;
    }

    .hero-shell {
        position: relative;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        width: 100%;
        min-height: 0;
        height: auto;
        padding: 0;
    }

    .hero-alert {
        position: relative;
        flex: 1 1 auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-start;
        width: 100%;
        max-width: none;
        padding: 0 0 0 16px;
        gap: 0.48rem;
        margin: 0;
        z-index: 2;
    }

    .hero-alert-card {
        min-height: auto;
        justify-self: auto;
        align-self: flex-start;
    }

    .hero-alert-card-primary {
        position: relative;
        top: auto;
        left: auto;
        z-index: 3;
        width: fit-content;
        max-width: min(74%, 15.75rem);
        padding: 0.44rem 0.68rem 0.48rem;
        gap: 0.1rem;
        border-radius: 16px;
        align-self: flex-end;
        margin-top: 0;
        margin-right: 18px;
        margin-bottom: -61px;
        transform: rotate(-4deg);
        transform-origin: center center;
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.3),
            inset 0 -8px 16px rgba(8, 6, 10, 0.1),
            0 12px 22px rgba(0, 0, 0, 0.18),
            0 6px 14px rgba(14, 6, 10, 0.12);
        animation: hero-mobile-badge-breathe 5.5s ease-in-out infinite;
    }

    .hero-alert-card-primary .hero-alert-card-kicker {
        padding: 0;
        background: transparent;
        font-size: 0.62rem;
        letter-spacing: 0.12em;
        opacity: 0.92;
    }

    .hero-alert-card-primary .hero-alert-card-title {
        display: inline-flex;
        flex-direction: column;
        font-size: 0.82rem;
        font-weight: 700;
        line-height: 1.02;
        letter-spacing: 0.01em;
        max-width: 16ch;
    }

    .hero-alert-card-title-subline {
        display: block;
        margin-top: 0.14rem;
        font-size: 0.62rem;
        line-height: 1.1;
        letter-spacing: 0.09em;
    }

    .hero-alert-card-secondary {
        display: none;
    }

    .hero-scroll-hint {
        display: inline-flex;
        left: auto;
        right: 2rem;
        bottom: calc(var(--hero-mobile-card-height) + 0.35rem);
        z-index: 2;
        opacity: 0;
        pointer-events: auto;
        transform: none;
        animation: hero-scroll-hint-enter 0.75s cubic-bezier(0.22, 1, 0.36, 1) 2.7s forwards;
    }

    .hero-scroll-hint-arrow {
        font-size: 3.9rem;
        color: rgba(255, 255, 255, 0.52);
    }

    .hero-alert-card-secondary .hero-alert-card-title {
        font-size: 0.76rem;
        line-height: 1.08;
    }

    .hero-alert-card-secondary .hero-alert-card-phone {
        font-size: 1.28rem;
        line-height: 1.02;
    }

    .hero-card {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        z-index: 1;
        width: 100%;
        max-width: none;
        /* min-height: var(--hero-mobile-card-height); */
        margin: 0;
        padding: 1.1rem 1rem 0.82rem;
        border-radius: 28px 28px 0 0;
        -webkit-backdrop-filter: blur(9px);
        backdrop-filter: blur(9px);
    }

    .hero-eyebrow {
        gap: 0.45rem;
        margin-bottom: 0.48rem;
        font-size: 0.84rem;
        letter-spacing: 0.12em;
    }

    .hero-eyebrow::before {
        width: 24px;
    }

    .hero h1 {
        max-width: 20ch;
        margin-bottom: 0.3rem;
        font-size: clamp(1.56rem, 7vw, 2rem);
        line-height: 1.04;
        letter-spacing: -0.02em;
    }

    .hero-title-subline {
        display: block;
        margin-top: 0.14rem;
        font-size: 1em;
        line-height: 0.98;
    }

    .hero p {
        display: none;
    }

    .hero-intro-mobile {
        display: block;
        margin-top: 4.85rem;
        padding: 1.1rem 1.35rem 0.35rem;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
    }

    .hero-intro-mobile-copy {
        max-width: none;
        margin: 0;
        color: var(--text-soft);
        font-size: 0.92rem;
        line-height: 1.58;
        text-align: left;
    }

    .location > .section-intro .section-title {
        font-size: clamp(2.05rem, 6.6vw, 2.85rem);
        line-height: 1.02;
    }

    @keyframes hero-mobile-badge-breathe {
        0%,
        100% {
            transform: rotate(-4deg) scale(1);
        }

        50% {
            transform: rotate(-4deg) scale(1.03);
        }
    }
}

html {
    scrollbar-gutter: stable;
    scrollbar-width: auto;
    scrollbar-color: var(--accent) rgba(127, 36, 63, 0.1);
}

/* Viewport scrollbar */
@supports selector(::-webkit-scrollbar) {
    html::-webkit-scrollbar {
        width: 18px;
        height: 18px;
        background: transparent;
    }

    html::-webkit-scrollbar-track {
        border-radius: 12px;
        background-color: rgba(127, 36, 63, 0.14);
        border: 1px solid rgba(97, 23, 46, 0.22);
        box-shadow: inset 0 0 10px rgba(24, 10, 16, 0.18);
    }

    html::-webkit-scrollbar-thumb {
        border-radius: 12px;
        background: linear-gradient(180deg, var(--accent-strong), var(--accent));
        border: 8px solid transparent;
        background-clip: padding-box;
        box-shadow:
            inset 0 0 0 1px rgba(255, 255, 255, 0.08),
            0 2px 8px rgba(0, 0, 0, 0.14);
    }

    html::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(180deg, #53152c, var(--accent-strong));
        background-clip: padding-box;
    }

    html::-webkit-scrollbar-thumb:active {
        background: #481226;
        background-clip: padding-box;
    }
}

/* Laptop / MacBook tuning */
@media (min-width: 1200px) and (max-height: 950px) {
    .hero-shell {
        gap: 1.4rem;
        padding: calc(var(--nav-height) + 0.8rem) 1.25rem 1.25rem;
    }

    .hero-card {
        max-width: 500px;
        padding: 1.5rem 1.5rem 1.6rem;
        margin-top: 20px;
    }

    .hero h1 {
        font-size: clamp(2.4rem, 3vw, 4.4rem);
        line-height: 0.94;
    }

    .hero p {
        font-size: 0.98rem;
        line-height: 1.65;
        max-width: 52ch;
    }

    .hero-alert {
        gap: 0.85rem;
    }

    .hero-alert-card {
        min-height: 84px;
        padding: 0.85rem 0.95rem 0.9rem;
    }

    .hero-alert-card-kicker {
        font-size: 0.84rem;
        padding: 0.56rem 1.1rem;
    }

    .hero-alert-card-primary .hero-alert-card-title {
        font-size: 1.5rem;
        line-height: 1.03;
    }

    .hero-alert-card-primary .hero-alert-card-title-subline {
        font-size: 0.8em;
    }

    .hero-alert-card-title {
        font-size: 0.98rem;
    }

    .hero-alert-card-phone {
        font-size: 1.55rem;
    }

    .quick-stats,
    .available-spaces,
    .location,
    .standard,
    .gallery,
    .about,
    .contact {
        padding: 5.5rem 1.25rem;
    }
}

@media (min-width: 481px) {
    .hero h1 {
        max-width: none;
    }

    .hero-copy-desktop .hero-eyebrow,
    .hero-copy-desktop h1 {
        max-width: 565px;
    }

    .hero h1 > span {
        display: block;
        width: max-content;
        max-width: none;
        font-family: "Lato", sans-serif;
        letter-spacing: 0.01em;
    }

    .hero-title-subline {
        display: block;
        margin-top: 0.12rem;
        font-size: 1em;
        line-height: 0.98;
    }

    .hero-alert-card-primary {
        justify-content: center;
    }

    .hero-alert-card-primary .hero-alert-card-title {
        display: inline-flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        text-align: center;
        font-size: 1.5rem;
        line-height: 1.03;
    }

    .hero-alert-card-primary .hero-alert-card-title-subline {
        display: block;
        margin-top: 0.16rem;
        font-size: 0.8em;
        line-height: 1.04;
    }
}

/* Mokotów BOX premium orange refinement */
:root {
    --bg: #f8f3ec;
    --surface: rgba(255, 255, 255, 0.78);
    --surface-strong: rgba(255, 255, 255, 0.94);
    --text: #2a1d05;
    --text-soft: #6d5a41;
    --heading: #241902;
    --accent: #ff7f23;
    --accent-strong: #2a1d05;
    --accent-soft: #ffc086;
    --success: #ff7f23;
    --shadow-soft: 0 18px 60px rgba(42, 29, 5, 0.08);
    --shadow-strong: 0 24px 70px rgba(42, 29, 5, 0.18);
}

body {
    background:
        radial-gradient(circle at top left, rgba(255, 127, 35, 0.11), transparent 30%),
        radial-gradient(circle at bottom right, rgba(42, 29, 5, 0.06), transparent 26%),
        linear-gradient(180deg, #fcf8f2 0%, #f4ece1 100%);
}

.navbar {
    box-shadow:
        0 12px 40px rgba(31, 17, 24, 0.10),
        0 0 22px rgba(255, 127, 35, 0.28),
        0 0 42px rgba(255, 127, 35, 0.12);
}

.navbar:hover,
.navbar:focus-within {
    box-shadow:
        0 18px 46px rgba(31, 17, 24, 0.14),
        0 0 28px rgba(255, 127, 35, 0.36),
        0 0 56px rgba(255, 127, 35, 0.16);
}

.navbar {
    background: rgba(255, 250, 244, 0.76);
    border-color: rgba(255, 255, 255, 0.76);
    box-shadow:
        0 12px 40px rgba(42, 29, 5, 0.08),
        0 0 22px rgba(255, 127, 35, 0.28),
        0 0 42px rgba(255, 127, 35, 0.12);
}

.navbar:hover,
.navbar:focus-within,
.is-webkit .navbar:hover,
.is-webkit .navbar:focus-within {
    background: rgba(255, 251, 246, 0.9);
    box-shadow:
        0 18px 46px rgba(42, 29, 5, 0.12),
        0 0 28px rgba(255, 127, 35, 0.36),
        0 0 56px rgba(255, 127, 35, 0.16);
}

.nav-links a::after {
    background:
        linear-gradient(135deg, rgba(42, 29, 5, 0.98), rgba(58, 40, 7, 0.96)),
        linear-gradient(135deg, rgba(255, 127, 35, 0.14), rgba(255, 127, 35, 0));
    box-shadow:
        0 14px 28px rgba(42, 29, 5, 0.14),
        0 0 0 1px rgba(255, 127, 35, 0.18);
}

.brand-mark::after {
    background: rgba(255, 127, 35, 0.14);
    color: var(--accent-strong);
}

.quick-stats::before,
.location::before,
.gallery::before {
    background:
        radial-gradient(circle at top right, rgba(255, 127, 35, 0.1), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0));
}

.contact::before {
    background:
        radial-gradient(circle at top left, rgba(255, 127, 35, 0.12), transparent 22%),
        linear-gradient(180deg, #2c1f07 0%, #1d1403 100%);
}

.section-kicker {
    color: var(--heading);
}

.section-kicker::before {
    background: var(--accent);
    opacity: 0.9;
}

.contact .section-kicker-light {
    color: var(--accent);
}

.gallery {
    color: var(--white);
}

.gallery::before {
    background:
        radial-gradient(circle at top left, rgba(255, 127, 35, 0.14), transparent 24%),
        linear-gradient(180deg, #2c1f07 0%, #1d1403 100%);
}

.gallery .section-kicker,
.gallery .gallery-group > .section-kicker {
    color: var(--accent);
}

.gallery .section-title,
.gallery .gallery-subtitle {
    color: var(--white);
}

.gallery .section-kicker,
.gallery .gallery-group > .section-kicker {
    color: var(--accent);
}

.gallery .section-kicker::before,
.gallery .gallery-group > .section-kicker::before {
    background: var(--accent);
    opacity: 0.95;
}

.gallery .section-title,
.gallery .gallery-subtitle {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.14);
}

.gallery .gallery-item {
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 16px 34px rgba(0, 0, 0, 0.26),
        0 0 0 1px rgba(255, 127, 35, 0.06);
}

.gallery .gallery-load-more {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.1);
    color: #ffd8b6;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.gallery .gallery-load-more::before {
    background:
        linear-gradient(135deg, rgba(255, 127, 35, 0.96), rgba(196, 99, 24, 0.94)),
        linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
}

.gallery .gallery-load-more:hover,
.gallery .gallery-load-more:focus-visible {
    color: var(--white);
    border-color: rgba(255, 127, 35, 0.28);
    box-shadow:
        0 16px 28px rgba(0, 0, 0, 0.24),
        0 0 0 1px rgba(255, 127, 35, 0.22),
        0 0 18px rgba(255, 127, 35, 0.22);
}

.standard {
    color: var(--white);
}

.standard::before {
    background:
        radial-gradient(circle at top left, rgba(255, 127, 35, 0.14), transparent 24%),
        linear-gradient(180deg, #2c1f07 0%, #1d1403 100%);
}

.standard .section-kicker {
    color: var(--accent);
}

.standard .section-kicker::before {
    background: var(--accent);
    opacity: 0.95;
}

.standard .section-title {
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.14);
}

.standard .standard-tech-card {
    background: #FDFBFC;
}

.standard .standard-tech-copy h3,
.standard .standard-tech-copy p,
.standard .standard-tech-title-subline {
    color: var(--heading);
    text-shadow: none;
}

.standard .standard-tech-copy p {
    margin-top: 1rem;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(255, 127, 35, 0.34);
}

@media (min-width: 681px) {
    .standard .standard-tech-card {
        row-gap: 0.35rem;
    }

    .standard .standard-tech-copy p {
        margin-top: 0;
        padding-top: 0.58rem;
    }
}

@media (max-width: 480px) {
    .location > .section-intro .section-title.section-title-left {
        font-size: 1.5rem !important;
        line-height: 1.02 !important;
    }

    .standard > .section-intro .section-title {
        font-size: 1.5rem !important;
        line-height: 1.04 !important;
    }

    .location-copy {
        padding: 0;
    }

    .location-advantages-grid {
        gap: 1rem;
    }

    .location-card,
    .location-card-transport {
        width: 100%;
    }

    .location-card {
        display: block !important;
        grid-template-columns: none !important;
        grid-template-areas: none !important;
        column-gap: 0 !important;
        row-gap: 0 !important;
        min-height: 0;
        padding: 1.35rem 1.25rem 1.45rem;
    }

    .location-card-head {
        display: grid;
        grid-template-columns: 64px minmax(0, 1fr);
        align-items: center;
        gap: 0.95rem;
    }

    .location-card:not(.location-card-transport) .location-card-head img,
    .location-card-head img {
        grid-area: auto;
        width: 64px;
        height: 64px;
        align-self: center;
        justify-self: center;
    }

    .location-card:not(.location-card-transport) h3,
    .location-card h3 {
        grid-area: auto;
        font-size: clamp(1.02rem, 4vw, 1.12rem);
        line-height: 1.12;
        letter-spacing: -0.025em;
        align-self: center;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .location-card:not(.location-card-transport) p,
    .location-card p {
        grid-area: auto;
        width: 100%;
        margin-top: 0.95rem;
        padding-top: 0.95rem;
        font-size: 0.98rem;
        line-height: 1.55;
    }

    .location-card p::before {
        width: 72px;
    }

    .standard-tech-grid {
        gap: 1rem;
    }

    .standard-tech-card {
        min-height: 0;
        padding: 1.15rem 1.15rem 1.25rem;
        display: grid;
        grid-template-columns: 54px minmax(0, 1fr);
        grid-template-areas:
            "icon title"
            "desc desc";
        column-gap: 0.85rem;
        row-gap: 0.2rem;
        align-items: center;
    }

    .standard-tech-icon-wrap {
        grid-area: icon;
        width: 54px;
        height: 54px;
        align-self: center;
        justify-self: center;
    }

    .standard-tech-icon-wrap img {
        width: 54px;
        height: 54px;
    }

    .standard-tech-copy {
        display: contents;
    }

    .standard-tech-copy h3 {
        grid-area: title;
        font-size: clamp(1.02rem, 4vw, 1.12rem);
        line-height: 1.12;
        letter-spacing: -0.025em;
        align-self: center;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .standard-tech-copy p {
        grid-area: desc;
        width: 100%;
        margin-top: 0.1rem;
        padding-top: 0.6rem;
        font-size: 0.98rem;
        line-height: 1.55;
    }

    .amenities-list-building,
    .amenities-list-area {
        padding: 0.9rem 0.95rem 0.95rem;
    }

    .amenities-list h3 {
        gap: 0.55rem;
        margin-bottom: 0.7rem;
        font-size: 1.12rem;
        letter-spacing: 0.01em;
        line-height: 1.04;
    }

    .amenities-list h3 img {
        width: 46px;
        height: 46px;
    }

    .amenities-tile-grid {
        grid-template-columns: 1fr;
        gap: 0.05rem;
    }

    .amenities-tile {
        min-height: 0;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 0.8rem;
        padding: 0.18rem 0.15rem 0.18rem 0.45rem;
        text-align: left;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .amenities-tile:hover,
    .amenities-tile:focus-within {
        transform: none;
        border-color: transparent;
        box-shadow: none;
    }

    .amenities-tile img,
    .amenities-tile-icon-svg {
        width: 46px;
        height: 46px;
        flex: 0 0 46px;
        margin: 0;
        align-self: center;
        justify-self: center;
    }

    .amenities-tile-icon-svg svg {
        width: 26px;
        height: 26px;
    }

    .amenities-tile span {
        margin-top: 0;
        font-size: 0.95rem;
        line-height: 1.22;
        text-align: left;
        align-self: center;
    }
}

.hero-alert-card-primary {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02) 30%, rgba(255, 255, 255, 0) 54%),
        radial-gradient(circle at center, rgba(255, 194, 132, 0.18), rgba(255, 194, 132, 0) 54%),
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.14), transparent 38%),
        linear-gradient(145deg, rgba(196, 99, 24, 0.95), rgba(142, 73, 17, 0.94));
}

.hero-alert-card-secondary {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.02) 30%, rgba(255, 255, 255, 0) 54%),
        radial-gradient(circle at center, rgba(255, 160, 76, 0.12), rgba(255, 160, 76, 0) 54%),
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.13), transparent 38%),
        linear-gradient(145deg, rgba(53, 38, 7, 0.97), rgba(31, 22, 4, 0.95));
}

.hero-alert-card-primary:hover,
.hero-alert-card-primary:focus-visible {
    background:
        radial-gradient(circle at center, rgba(255, 219, 181, 0.28), rgba(255, 219, 181, 0) 54%),
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.24), transparent 40%),
        linear-gradient(145deg, rgba(214, 111, 30, 0.98), rgba(160, 82, 18, 0.96));
}

.hero-alert-card-secondary:hover,
.hero-alert-card-secondary:focus-visible {
    background:
        radial-gradient(circle at center, rgba(255, 187, 113, 0.16), rgba(255, 187, 113, 0) 54%),
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.24), transparent 40%),
        linear-gradient(145deg, rgba(67, 48, 9, 0.98), rgba(39, 28, 5, 0.96));
}

.overview-card-tone-warm {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.3)),
        radial-gradient(circle at top right, rgba(255, 127, 35, 0.1), transparent 34%),
        rgba(255, 251, 246, 0.8);
}

.overview-card-tone-ivory {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.36)),
        radial-gradient(circle at top right, rgba(255, 229, 200, 0.22), transparent 38%),
        rgba(255, 252, 248, 0.84);
}

.overview-card-tone-rose {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.34)),
        radial-gradient(circle at top right, rgba(255, 170, 102, 0.1), transparent 35%),
        rgba(255, 250, 244, 0.82);
}

.overview-card-tone-glass {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0.26)),
        radial-gradient(circle at top right, rgba(42, 29, 5, 0.05), transparent 34%),
        rgba(255, 255, 255, 0.74);
}

.overview-card-tone-soft {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.32)),
        radial-gradient(circle at top right, rgba(255, 127, 35, 0.08), transparent 36%),
        rgba(255, 251, 246, 0.82);
}

.availability-badge {
    background: rgba(255, 127, 35, 0.12);
    color: var(--accent);
}

.contact-person a,
.contact-company-block a {
    color: #ffd8b6;
}

.site-footer {
    background: #1d1403;
}
