:root {
    --bg-hue-a: 210;
    --bg-hue-b: 192;
    --bg-hue-c: 328;
    --bg: #fffdf8;
    --surface: rgba(255, 250, 244, 0.92);
    --surface-strong: #fff6ec;
    --panel: rgba(18, 53, 62, 0.92);
    --card: rgba(255, 255, 255, 0.92);
    --text: #13333d;
    --muted: #5d6f78;
    --line: rgba(19, 51, 61, 0.1);
    --line-strong: rgba(19, 51, 61, 0.16);
    --accent: #ff8f5c;
    --accent-strong: #ff5f6d;
    --accent-dark: #c55345;
    --forest: #0f5661;
    --forest-soft: #187684;
    --sky: #4db6d6;
    --shadow: 0 22px 70px rgba(28, 53, 64, 0.12);
    --radius-lg: 30px;
    --radius-md: 22px;
    --radius-sm: 16px;
    --container: min(90vw, 1540px);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Outfit", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, hsla(var(--bg-hue-c), 84%, 66%, 0.22), transparent 24%),
        radial-gradient(circle at 82% 10%, hsla(var(--bg-hue-b), 72%, 58%, 0.2), transparent 24%),
        linear-gradient(
            180deg,
            hsl(var(--bg-hue-a), 37%, 8%) 0%,
            hsl(var(--bg-hue-b), 44%, 11%) 42%,
            hsl(calc(var(--bg-hue-c) - 8), 30%, 12%) 100%
        );
    transition: background 0.45s ease;
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

.page-shell {
    position: relative;
    overflow: hidden;
}

.page-shell::before,
.page-shell::after {
    content: "";
    position: fixed;
    z-index: 0;
    pointer-events: none;
}

.page-shell::before {
    top: -120px;
    right: -140px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, hsla(var(--bg-hue-c), 82%, 64%, 0.26), transparent 65%);
}

.page-shell::after {
    bottom: -140px;
    left: -120px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, hsla(var(--bg-hue-b), 70%, 58%, 0.22), transparent 65%);
}

.site-header,
.section,
.stats-strip,
.site-footer {
    position: relative;
    z-index: 1;
}

.site-header {
    width: var(--container);
    position: sticky;
    top: 0;
    margin: 18px auto 0;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 1px solid rgba(255, 255, 255, 0.68);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(22px);
    border-radius: 24px;
    box-shadow: var(--shadow);
    z-index: 30;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 104px;
    height: 104px;
    overflow: hidden;
    border-radius: 10%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(251, 240, 226, 0.94));
    box-shadow: 0 14px 40px rgba(21, 45, 42, 0.14);
}

.brand img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.brand strong {
    display: block;
    font-size: 1.34rem;
    line-height: 1;
    letter-spacing: -0.03em;
    color: #fff6ee;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--accent-dark);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero .eyebrow {
    color: rgba(255, 227, 214, 0.92);
}

.site-nav {
    display: inline-flex;
    gap: 12px;
    color: rgba(255, 245, 236, 0.84);
    font-size: 1.02rem;
    font-weight: 500;
}

.site-nav a {
    padding: 10px 14px;
    border-radius: 999px;
    transition: color 0.2s ease, background 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: #fff9f4;
    background: rgba(255, 255, 255, 0.12);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
    color: #fff8f1;
    font-weight: 800;
    box-shadow: 0 14px 34px rgba(255, 95, 109, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    cursor: pointer;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(255, 95, 109, 0.3);
    filter: saturate(1.02);
}

.button-outline,
.button-ghost {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.34);
}

.button-outline {
    color: #fff8f1;
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.12);
}

.button-whatsapp {
    gap: 10px;
}

.button-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
}

.button-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.hero {
    width: 100%;
    margin: -166px 0 0;
    padding: 226px 0 48px;
    min-height: calc(100svh + 70px);
    position: relative;
    border-radius: 0 0 42px 42px;
    overflow: hidden;
    background: #11343d;
    box-shadow: 0 24px 80px rgba(17, 52, 61, 0.26);
}
.hero-slider {
    position: absolute;
    inset: -8px 0 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-slide.is-active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-slider__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(10, 31, 40, 0.82) 0%, rgba(14, 52, 64, 0.54) 44%, rgba(14, 52, 64, 0.18) 100%),
        linear-gradient(180deg, rgba(13, 42, 52, 0.12), rgba(13, 42, 52, 0.38));
}

.hero-slider__controls {
    position: absolute;
    left: 36px;
    bottom: 28px;
    z-index: 2;
    display: inline-flex;
    gap: 10px;
}

.hero-slider__dot {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.34);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.hero-slider__dot.is-active {
    transform: scale(1.15);
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(420px, 560px);
    gap: 36px;
    align-items: start;
    min-height: 690px;
    width: var(--container);
    margin: 0 auto;
}

.hero-copy {
    max-width: 860px;
    padding: 8px 12px 34px 14px;
    color: #fff;
}

.hero-copy h1,
.section-heading h2,
.location-copy h2,
.specs-copy h2,
.cta-panel h2,
.lead-card h2 {
    margin: 0;
    font-family: "Outfit", sans-serif;
    line-height: 0.96;
    letter-spacing: -0.05em;
    font-weight: 500;
}

.hero-copy h1 {
    font-size: clamp(3rem, 7vw, 5.6rem);
    max-width: 14ch;
}

.hero-lead {
    margin: 22px 0 0;
    max-width: 720px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.08rem;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0;
    margin: 28px 0 0;
    list-style: none;
}

.hero-badges li {
    padding: 11px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.lead-card {
    padding: 34px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 48px rgba(17, 52, 61, 0.12);
    border: 1px solid rgba(19, 51, 61, 0.08);
}

.lead-kicker {
    margin: 0 0 10px;
    font-weight: 800;
    color: var(--accent-dark);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.78rem;
}

.lead-card h2 {
    font-size: clamp(2.1rem, 5vw, 3.3rem);
    color: #182022;
}

.lead-card p {
    margin: 14px 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.lead-form {
    display: grid;
    gap: 14px;
    margin-top: 22px;
}

.lead-form label {
    display: grid;
    gap: 8px;
    color: var(--text);
    font-size: 0.94rem;
    font-weight: 700;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid var(--line-strong);
    background: rgba(255, 255, 255, 0.88);
    color: var(--text);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
    border-color: rgba(184, 137, 71, 0.8);
    box-shadow: 0 0 0 4px rgba(184, 137, 71, 0.12);
    background: #fff;
}

.lead-form textarea {
    resize: vertical;
}

.form-disclaimer,
.form-status {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.5;
}

.form-disclaimer {
    color: var(--muted);
}

.form-status {
    min-height: 1.4em;
    font-weight: 700;
}

.form-status.is-success {
    color: #2b6f52;
}

.form-status.is-error {
    color: #9e3f2d;
}

.stats-strip {
    width: var(--container);
    margin: 30px auto 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    padding: 8px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(19, 51, 61, 0.08);
    box-shadow: 0 18px 48px rgba(17, 52, 61, 0.1);
}

.stat-card {
    display: grid;
    gap: 12px;
    min-height: auto;
    padding: 16px 18px;
    border-radius: 10px;
    background: transparent;
    border-right: 1px solid rgba(19, 51, 61, 0.08);
}

.stat-card:last-child {
    border-right: 0;
}

.stat-card:last-child {
    border-right: 0;
}

.stat-icon,
.feature-icon,
.intro-signal__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.stat-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(19, 51, 61, 0.05);
    color: var(--forest);
}

.stat-icon svg,
.feature-icon svg,
.intro-signal__icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.stat-card strong {
    display: block;
    margin-bottom: 8px;
    color: var(--forest);
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    line-height: 0.95;
}

.stat-content {
    max-width: 16ch;
}

.stat-card span {
    color: var(--muted);
    line-height: 1.5;
}

.section {
    width: var(--container);
    margin: 28px auto 0;
    padding: 44px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(19, 51, 61, 0.08);
    box-shadow: 0 18px 48px rgba(17, 52, 61, 0.08);
    backdrop-filter: blur(14px);
}

.section-heading {
    max-width: 780px;
}

.section-heading h2,
.location-copy h2,
.specs-copy h2,
.cta-panel h2 {
    font-size: clamp(2.5rem, 5vw, 4.4rem);
    color: var(--forest);
    font-weight: 500;
}

.section-heading p,
.location-copy p,
.specs-copy p,
.cta-panel p,
.intro-copy p,
.feature-card p,
.plan-card p {
    color: var(--muted);
    line-height: 1.8;
}

.intro-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
    gap: 28px;
    align-items: start;
}

.intro-copy {
    padding-right: 12px;
    font-size: 1.06rem;
}

.intro-overview {
    padding: 16px 10px 16px 0;
}

.intro-overview h2 {
    margin: 0;
    color: var(--forest);
    font-size: clamp(2.5rem, 4.8vw, 4.2rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
    font-weight: 500;
}

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

.feature-card {
    padding: 24px;
    display: grid;
    align-content: start;
    gap: 14px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid rgba(19, 51, 61, 0.08);
    min-height: auto;
}

.feature-icon {
    width: 58px;
    height: 58px;
    border-radius: 12px;
    background: rgba(19, 51, 61, 0.05);
    color: var(--forest);
}

.feature-card h3,
.plan-card h3 {
    margin: 0;
    color: var(--forest);
    font-size: 1.18rem;
}

.feature-card p {
    margin: 0;
}

.location-section,
.specs-section {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: 24px;
    align-items: center;
}

.location-visual,
.specs-visual {
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(19, 51, 61, 0.08);
    background: #ffffff;
}

.location-visual img,
.specs-visual img {
    width: 100%;
    height: auto;
}

.media-lightbox-trigger {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    text-align: left;
}

.media-lightbox-trigger img {
    width: 100%;
    height: auto;
    display: block;
}

.media-lightbox-chip {
    position: absolute;
    right: 18px;
    bottom: 18px;
    z-index: 1;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(19, 51, 61, 0.78);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    backdrop-filter: blur(10px);
}

.check-list {
    display: grid;
    gap: 14px;
    padding: 0;
    margin: 22px 0 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    color: var(--text);
    line-height: 1.65;
}

.check-list li::before {
    content: "";
    position: absolute;
    top: 0.58em;
    left: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
    box-shadow: 0 0 0 5px rgba(255, 143, 92, 0.14);
}

.contact-inline,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 26px;
}

.contact-inline .button-ghost,
.cta-actions .button-ghost {
    color: var(--forest);
    border-color: rgba(23, 32, 35, 0.14);
    background: rgba(255, 255, 255, 0.68);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 18px;
    margin-top: 26px;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    margin: 0;
    min-height: 260px;
    background: #eadfd1;
}

.gallery-card:nth-child(1),
.gallery-card:nth-child(4) {
    grid-column: span 7;
}

.gallery-card:nth-child(2),
.gallery-card:nth-child(3),
.gallery-card:nth-child(5),
.gallery-card:nth-child(6) {
    grid-column: span 5;
}

.gallery-trigger {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    text-align: left;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.gallery-card::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 48%;
    background: linear-gradient(180deg, transparent 0%, rgba(18, 23, 25, 0.82) 100%);
}

.gallery-card figcaption {
    position: absolute;
    left: 20px;
    bottom: 18px;
    z-index: 1;
    color: #fff;
    font-weight: 700;
}

.gallery-chip {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 1;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: #fff;
    font-size: 0.86rem;
    font-weight: 700;
    backdrop-filter: blur(12px);
}

.gallery-card:hover img,
.gallery-card:focus-within img,
.gallery-trigger:hover img,
.gallery-trigger:focus-visible img {
    transform: scale(1.04);
}

.gallery-trigger:focus-visible {
    outline: 3px solid rgba(184, 137, 71, 0.7);
    outline-offset: -3px;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 26px;
}

.plan-card {
    display: grid;
    gap: 18px;
    padding: 20px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid rgba(23, 54, 50, 0.08);
}

.plan-card img {
    border-radius: 12px;
    border: 1px solid rgba(23, 32, 35, 0.08);
    background: #fff;
}

.plan-card .media-lightbox-trigger {
    overflow: hidden;
    border-radius: 12px;
}

.plans-data-block {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 22px;
}

.plan-detail-card {
    padding: 24px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid rgba(19, 51, 61, 0.08);
    box-shadow: 0 14px 36px rgba(17, 52, 61, 0.06);
}

.plan-detail-head h3 {
    margin: 8px 0 10px;
    color: var(--forest);
    font-size: 1.8rem;
    font-weight: 600;
}

.plan-detail-head p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.plan-total {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(24, 118, 132, 0.08);
    color: var(--forest-soft);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.plan-room-list {
    display: grid;
    gap: 10px;
    margin-top: 22px;
}

.plan-room-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    border-radius: 10px;
    background: #f9fbfc;
    border: 1px solid rgba(23, 54, 50, 0.08);
}

.plan-room-item span {
    color: var(--text);
    font-weight: 500;
}

.plan-room-item strong {
    color: var(--forest);
    font-size: 0.98rem;
}

.cta-section {
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.cta-panel {
    position: relative;
    padding: 44px;
    overflow: hidden;
    border-radius: 36px;
    background: linear-gradient(135deg, rgba(15, 86, 97, 0.96) 0%, rgba(17, 52, 61, 0.98) 100%);
    box-shadow: 0 24px 64px rgba(15, 86, 97, 0.24);
}

.cta-panel::after {
    content: "";
    position: absolute;
    inset: auto -40px -70px auto;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 143, 92, 0.34), transparent 66%);
}

.cta-panel h2,
.cta-panel p,
.cta-panel .eyebrow {
    position: relative;
    z-index: 1;
}

.cta-panel h2,
.cta-panel p {
    color: #fff;
}

.site-footer {
    width: var(--container);
    margin: 28px auto 60px;
    padding: 26px 8px 0;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: var(--muted);
}

.site-footer strong {
    color: var(--forest);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
    justify-content: flex-end;
}

.floating-cta {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 20;
    display: none;
    padding: 14px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
    color: #fff8f1;
    font-weight: 800;
    box-shadow: 0 16px 40px rgba(255, 95, 109, 0.28);
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 40;
    display: grid;
    place-items: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.gallery-lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.gallery-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 14, 16, 0.82);
    backdrop-filter: blur(8px);
}

.gallery-lightbox__dialog {
    position: relative;
    z-index: 1;
    width: min(100vw - 20px, 1760px);
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) 72px;
    align-items: center;
    gap: 16px;
}

.gallery-lightbox__dialog.is-single {
    width: min(100vw - 8px, 1880px);
    grid-template-columns: minmax(0, 1fr);
}

.gallery-lightbox__figure {
    margin: 0;
    padding: 10px;
    border-radius: 18px;
    background: rgba(9, 14, 18, 0.72);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.gallery-lightbox__dialog.is-single .gallery-lightbox__figure {
    padding: 6px;
}

.gallery-lightbox__figure img {
    width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
}

.gallery-lightbox__dialog.is-single .gallery-lightbox__figure img {
    max-height: 94vh;
}

.gallery-lightbox__figure figcaption {
    padding: 14px 8px 6px;
    color: rgba(255, 248, 240, 0.92);
    font-size: 1rem;
    font-weight: 700;
}

.gallery-lightbox__close,
.gallery-lightbox__nav {
    width: 56px;
    height: 56px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    backdrop-filter: blur(12px);
}

.gallery-lightbox__close {
    position: absolute;
    top: -12px;
    right: 8px;
    z-index: 2;
}

.gallery-lightbox__dialog.is-single .gallery-lightbox__close {
    top: 10px;
    right: 10px;
}

@media (max-width: 1080px) {
    .site-header {
        padding: 18px;
        border-radius: 22px;
    }

    .site-nav {
        display: none;
    }

    .hero {
        min-height: 0;
        margin-top: -144px;
        padding: 202px 0 32px;
    }

    .hero-content,
    .intro-grid,
    .location-section,
    .specs-section,
    .plans-grid,
    .plans-data-block {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        padding: 12px 0 0;
    }

    .stats-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 8px;
    }

    .stat-card:nth-child(2) {
        border-right: 0;
    }
}

@media (max-width: 760px) {
    :root {
        --container: 90vw;
    }

    .site-header {
        margin-top: 12px;
        padding: 16px;
        border-radius: 20px;
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .brand-mark {
        width: 82px;
        height: 82px;
    }

    .brand img {
        width: 100%;
        height: 100%;
    }

    .button,
    .button-outline,
    .button-ghost {
        width: 100%;
    }

    .hero {
        margin-top: -132px;
        padding: 188px 0 24px;
        border-radius: 0 0 28px 28px;
    }

    .hero-slider__controls {
        left: 18px;
        bottom: 18px;
    }

    .hero-content {
        gap: 18px;
    }

    .hero-copy h1 {
        max-width: 12ch;
    }

    .lead-card,
    .section,
    .cta-panel {
        padding: 24px;
        border-radius: 20px;
    }

    .stats-strip {
        margin-top: 18px;
        grid-template-columns: 1fr;
        padding: 6px;
        border-radius: 18px;
    }

    .stat-card,
    .stat-card:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid rgba(19, 51, 61, 0.08);
    }

    .stat-card:last-child {
        border-bottom: 0;
    }

    .feature-grid,
    .gallery-grid,
    .plans-data-block {
        grid-template-columns: 1fr;
    }

    .gallery-card,
    .gallery-card:nth-child(1),
    .gallery-card:nth-child(2),
    .gallery-card:nth-child(3),
    .gallery-card:nth-child(4),
    .gallery-card:nth-child(5),
    .gallery-card:nth-child(6) {
        grid-column: auto;
        min-height: 220px;
    }

    .site-footer {
        margin-bottom: 92px;
        flex-direction: column;
        padding-top: 0;
    }

    .footer-links {
        justify-content: flex-start;
        gap: 12px;
    }

    .floating-cta {
        display: inline-flex;
    }

    .gallery-lightbox {
        padding: 14px;
    }

    .gallery-lightbox__dialog {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .gallery-lightbox__close {
        top: -8px;
        right: -2px;
    }

    .gallery-lightbox__nav {
        position: absolute;
        top: calc(50% - 28px);
        z-index: 2;
    }

    .gallery-lightbox__nav--prev {
        left: 6px;
    }

    .gallery-lightbox__nav--next {
        right: 6px;
    }
}
