: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);
    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;
}

.snap-section {
    scroll-margin-top: calc(var(--nav-height) + 18px);
}

.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);
    -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);
}

.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: 2rem;
    flex: 1 1 auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.95rem;
    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 {
    color: var(--white);
    transform: scale(1.05) translateY(-1px);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::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 {
    width: 172px;
    min-width: 172px;
    height: auto;
    opacity: 0.9;
}

@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;
}

.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);
}

.site-header > .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,
.spaces-grid,
.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-card {
    grid-column: 1;
    grid-row: 1;
    width: min(100%, 565px);
    max-width: 565px;
    justify-self: start;
    margin-top: 40px;
    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-card {
    opacity: 1;
    transform: scale(1);
}

.hero-alert {
    grid-column: 1;
    grid-row: 2;
    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-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 2px 10px rgba(0, 0, 0, 0.22),
        0 1px 2px rgba(0, 0, 0, 0.26);
}

.hero-alert-card-phone {
    display: block;
    font-family: "Trebuchet MS", "Helvetica Neue", Arial, sans-serif;
    font-size: 1.95rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: 0.03em;
    text-shadow:
        0 2px 10px rgba(0, 0, 0, 0.22),
        0 1px 2px rgba(0, 0, 0, 0.26);
}

.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;
}

.hero-eyebrow {
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
}

.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(3rem, 1.5vw, 5.75rem);
    line-height: 0.96;
    letter-spacing: -0.04em;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.34);
}

.hero p {
    max-width: 58ch;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.06rem;
    line-height: 1.8;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.22);
}

.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;
}

.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;
}

.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;
    padding: 1.65rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.space-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), rgba(127, 36, 63, 0.08));
}

.space-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 18px;
    margin-bottom: 1rem;
}

.space-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: zoom-in;
}

.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(127, 36, 63, 0.16), rgba(255, 255, 255, 0.72));
    border: 1px dashed rgba(127, 36, 63, 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(127, 36, 63, 0.10), rgba(255, 255, 255, 0.88)),
        var(--surface-strong);
}

.space-tag {
    display: inline-flex;
    margin-bottom: 1rem;
    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;
}

.space-size {
    margin-bottom: 0.4rem;
    color: var(--heading);
    font-size: 2.35rem;
    font-weight: 800;
}

.space-floor {
    margin-bottom: 1.2rem;
    color: var(--text-soft);
    font-size: 0.96rem;
}

.space-details {
    margin-bottom: 1.2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(127, 36, 63, 0.08);
    border-radius: 18px;
}

.space-actions {
    display: flex;
    gap: 0.6rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.space-btn {
    flex: 1;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 44px;
    height: 44px;
    border-radius: 999px;
    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:hover,
.space-btn:focus-visible {
    transform: translateY(-2px);
}

.space-btn-primary {
    border: none;
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 16px 28px rgba(97, 23, 46, 0.2);
}

.space-btn-secondary {
    border: 1px solid var(--accent);
    color: var(--accent);
    background: transparent;
    text-decoration: none;
}

.space-detail-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.6rem 0;
}

.space-detail-row + .space-detail-row {
    border-top: 1px solid rgba(127, 36, 63, 0.08);
}

.detail-label {
    color: var(--text-soft);
    font-size: 0.92rem;
}

.detail-value {
    color: var(--heading);
    font-weight: 700;
    text-align: right;
}

.availability-badge {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(77, 139, 104, 0.14);
    color: var(--success);
    font-size: 0.86rem;
    font-weight: 700;
}

.shell-core-note {
    margin-top: 1rem;
    color: var(--text-soft);
    font-size: 0.88rem;
    line-height: 1.6;
}

.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: 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-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);
}

.location-features {
    display: grid;
    gap: 0.9rem;
    margin-top: 0;
    list-style: none;
}

.location-features li {
    position: relative;
    padding: 1rem 1rem 1rem 3.1rem;
    background: rgba(255, 255, 255, 0.48);
    border: 1px solid rgba(127, 36, 63, 0.08);
    border-radius: 18px;
    color: var(--text);
    font-size: 1.1rem;
    line-height: 1.6;
}

.location-features li::before {
    content: "";
    position: absolute;
    top: 1.1rem;
    left: 1rem;
    width: 1.15rem;
    height: 1.15rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent-soft));
    box-shadow: 0 0 0 6px rgba(127, 36, 63, 0.10);
}

.standard-content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.standard-list,
.amenities-list {
    padding: 2rem;
    border-radius: var(--radius-lg);
}

.standard-list h3,
.amenities-list h3 {
    margin-bottom: 1.35rem;
    color: var(--heading);
    font-size: 1.55rem;
    line-height: 1.15;
}

.standard-list ul,
.amenities-list ul {
    display: grid;
    gap: 0.95rem;
    list-style: none;
}

.standard-list li,
.amenities-list li {
    position: relative;
    padding-left: 1.6rem;
    color: var(--text);
    line-height: 1.6;
}

.standard-list li::before,
.amenities-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent-soft));
}

.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;
    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, background 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: translateY(-2px);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 34px rgba(31, 17, 24, 0.12);
}

.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;
}

.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%, 260px);
    max-width: 260px;
    padding: 1rem 1.05rem 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.2), transparent 42%),
        linear-gradient(145deg, rgba(127, 36, 63, 0.92), rgba(97, 23, 46, 0.84));
    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: 0.9rem;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.modal-cta-phone {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    font-size: clamp(1.35rem, 2.2vw, 1.85rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--white);
    text-decoration: none;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.24);
}

.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);
    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:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 42%),
        linear-gradient(145deg, rgba(61, 102, 72, 0.96), rgba(34, 70, 44, 0.94));
    color: var(--white);
    font: inherit;
    font-weight: 800;
    font-size: 1.5rem;
    line-height: 1.25;
    letter-spacing: -0.01em;
    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 14px rgba(0, 0, 0, 0.18);
    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 top left, rgba(255, 255, 255, 0.2), transparent 42%),
        linear-gradient(145deg, rgba(69, 112, 80, 0.98), rgba(38, 78, 49, 0.96));
}

@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: 64px;
    height: 64px;
    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;
}

.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-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 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:
        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,
        color 0.22s ease;
}

.btn-submit {
    flex: 1 1 auto;
    border: none;
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    color: var(--white);
    box-shadow: 0 16px 28px rgba(97, 23, 46, 0.22);
}

.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) {
    transform: translateY(-2px) scale(1.02);
    box-shadow:
        0 20px 34px rgba(97, 23, 46, 0.26),
        0 0 16px rgba(255, 255, 255, 0.16);
}

.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 {
    transform: translateY(-2px) scale(1.02);
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(127, 36, 63, 0.28);
    box-shadow: 0 16px 28px rgba(31, 17, 24, 0.1);
}

.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 {
        top: 5.8rem;
        left: 1.1rem;
        width: min(100%, 250px);
        max-width: 250px;
        padding: 0.9rem 0.95rem 1rem;
        transform: rotate(-2deg) translate(0, 0) scale(1);
        cursor: pointer;
    }

    .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.82rem;
    }

    .modal-cta-secondary {
        top: 12.95rem;
        left: 1.1rem;
        width: auto;
        max-width: min(100%, 228px);
        min-height: 88px;
        padding: 0.85rem 0.95rem;
        transform: rotate(-2deg) translate(-14px, 0) scale(1);
    }

    @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-content {
        width: min(100%, 100%);
        min-width: 0;
        max-width: calc(100vw - 1.6rem);
        padding: 1.55rem;
    }

    .form-actions {
        flex-direction: column;
    }

    .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: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
    gap: 1.25rem;
}

.section-kicker-light,
.section-title-light {
    color: var(--white);
}

.contact-card {
    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: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--stroke-light);
}

.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;
}

.contact-details strong {
    color: var(--white);
}

.contact-details a {
    color: #f6d9e1;
    text-decoration: none;
}

.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 {
    margin-top: 0.35rem;
    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);
    }

    .owner-logo-nav {
        display: none;
    }
}

@media (max-width: 920px) {
    .reveal {
        transform: none;
        transition: opacity 0.45s ease;
        will-change: opacity;
    }

    .reveal.is-visible {
        transform: none;
    }

    .hero,
    .location {
        overflow: visible;
    }

    .site-header {
        padding: 0.9rem 0.9rem 0;
    }

    .navbar {
        padding: 0.9rem 1rem;
        opacity: 1;
        transform: none;
        background: rgba(255, 255, 255, 0.9);
        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: calc(100% + 0.75rem);
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 1.25rem;
        padding: 1.2rem;
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid rgba(255, 255, 255, 0.7);
        border-radius: 24px;
        box-shadow: var(--shadow-soft);
    }

    .menu-open .nav-panel {
        display: flex;
    }

    .nav-links,
    .nav-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        gap: 1rem;
    }

    .owner-logo-nav {
        display: block;
    }

    .hero {
        padding: 0 0.9rem;
    }

    .hero-shell {
        min-height: 0;
        grid-template-rows: auto;
        align-content: center;
    }

    .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;
    }
}

@media (max-width: 680px) {
    :root {
        --nav-height: 76px;
    }

    .hero {
        padding: 0 0.9rem;
    }

    .hero h1 {
        max-width: 10ch;
    }

    .hero-facts {
        gap: 0.75rem;
    }

    .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,
    .space-card,
    .standard-list,
    .amenities-list {
        padding: 1.35rem;
    }

    .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-features li {
        padding-left: 2.7rem;
    }

}

@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, 255, 255, 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;
        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);
    }

    .menu-toggle {
        width: 42px;
        height: 42px;
        margin-left: 0;
        border-radius: 14px;
        justify-self: end;
    }

    .nav-panel {
        top: calc(100% + 0.35rem);
        gap: 1rem;
        padding: 1rem;
        border-radius: 0 0 22px 22px;
    }

    .nav-links {
        gap: 0.7rem;
    }

    .nav-links a {
        padding: 0.46rem 0.72rem;
        font-size: 0.88rem;
    }

    .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: absolute;
        top: 34px;
        left: 16px;
        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;
        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 {
        position: relative;
        left: auto;
        bottom: auto;
        z-index: 3;
        align-self: flex-end;
        width: min(76%, 12.75rem);
        margin-top: 0;
        /* margin-right: 16px; */
        margin-right: -20px;
        margin-bottom: -61px;
        padding: 0.62rem 0.78rem 0.68rem;
        gap: 0.2rem;
        border-radius: 17px;
        transform: rotate(4deg) translateY(14px) scale(0.75) !important;
        transform-origin: center center;
    }

    .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;
        font-size: clamp(1.56rem, 7vw, 2rem);
        line-height: 1.04;
    }

    .hero-title-subline {
        display: block;
        margin-top: 0.14rem;
        font-size: 1.12em;
        line-height: 0.98;
    }

    .hero p {
        display: none;
    }

    .hero-intro-mobile {
        display: block;
        padding: 1.15rem 1rem 0.25rem;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
    }

    .hero-intro-mobile-copy {
        max-width: 34ch;
        margin: 0 auto;
        color: var(--text-soft);
        font-size: 0.92rem;
        line-height: 1.58;
        text-align: left;
    }

    @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 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: 1.12em;
        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;
    }
}
