:root {
    --green: #27ae60;
    --green-dark: #176b3a;
    --green-soft: #e9f8ef;
    --blue: #2f80ed;
    --yellow: #f7c948;
    --ink: #0d1117;
    --ink-soft: #1f2937;
    --muted: #667085;
    --line: #e5e7eb;
    --off: #f7f9fb;
    --white: #ffffff;
    --radius: 8px;
    --nav: 76px;
    --shadow: 0 20px 60px rgba(15, 23, 42, .12);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: "DM Sans", Arial, sans-serif;
    overflow-x: hidden;
}

img {
    display: block;
    width: 100%;
    object-fit: cover;
}

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

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

.icon {
    width: 20px;
    height: 20px;
}

.container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.section {
    padding: 92px 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 15px;
    color: var(--green);
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.section-title {
    margin: 0;
    color: var(--ink);
    font-family: "Poppins", sans-serif;
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 900;
    line-height: 1.06;
}

.lead {
    margin: 18px 0 0;
    max-width: 620px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 44px;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn--solid {
    color: var(--white);
    background: var(--green);
    box-shadow: 0 10px 26px rgba(39, 174, 96, .25);
}

.btn--solid:hover {
    background: var(--green-dark);
}

.btn--ghost {
    color: var(--green);
    background: rgba(255, 255, 255, .08);
    border-color: rgba(39, 174, 96, .34);
}

.btn--ghost:hover {
    background: var(--green-soft);
}

.btn--white {
    color: var(--green-dark);
    background: var(--white);
}

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

.nav {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    height: var(--nav);
    border-bottom: 1px solid transparent;
    transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.nav.is-scrolled,
.nav.is-open {
    background: rgba(255, 255, 255, .96);
    border-bottom-color: var(--line);
    box-shadow: 0 8px 34px rgba(15, 23, 42, .08);
    backdrop-filter: blur(18px);
}

.nav__inner {
    width: min(1180px, calc(100% - 48px));
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Poppins", sans-serif;
    font-weight: 900;
}

.brand__mark {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    color: var(--white);
    background: var(--green);
}

.brand__logo {
    display: block;
    width: 80px;
    height: auto;
    object-fit: contain;
}

.brand__text {
    color: var(--white);
    font-size: 21px;
}

.brand__text strong {
    color: #69e895;
}

.nav.is-scrolled .brand__text,
.nav.is-open .brand__text {
    color: var(--ink);
}

.nav.is-scrolled .brand__text strong,
.nav.is-open .brand__text strong {
    color: var(--green);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav__links a {
    position: relative;
    color: rgba(255, 255, 255, .86);
    font-size: 14px;
    font-weight: 800;
    transition: color .2s ease;
}

.nav.is-scrolled .nav__links a,
.nav.is-open .nav__links a {
    color: var(--muted);
}

.nav__links a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .2s ease;
}

.nav__links a:hover,
.nav__links a.is-active,
.nav.is-scrolled .nav__links a:hover,
.nav.is-scrolled .nav__links a.is-active {
    color: var(--green);
}

.nav__links a:hover::after,
.nav__links a.is-active::after {
    transform: scaleX(1);
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav__toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .12);
    cursor: pointer;
}

.nav__toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    border-radius: 99px;
    background: var(--white);
}

.nav.is-scrolled .nav__toggle span,
.nav.is-open .nav__toggle span {
    background: var(--ink);
}

.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    background: var(--ink);
}

.hero--compact {
    min-height: 58svh;
    align-items: flex-end;
    padding-bottom: 72px;
}

.hero--page .hero__bg img {
    object-position: center top;
}

.hero--page .hero__overlay {
    background: linear-gradient(180deg, rgba(6, 20, 12, .28) 0%, rgba(6, 20, 12, .64) 48%, rgba(6, 20, 12, .9) 100%);
}

.hero__bg {
    position: absolute;
    inset: 0;
}

.hero__bg picture,
.hero__bg img {
    display: block;
    width: 100%;
    height: 100%;
}

.hero__bg img {
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(6, 20, 12, .88), rgba(6, 20, 12, .58) 58%, rgba(10, 17, 27, .36));
}

.hero__inner {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: calc(var(--nav) + 52px) 0 64px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 56px;
    align-items: center;
}

.hero--compact .hero__inner {
    display: block;
    padding-bottom: 0;
    text-align: center;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, .68);
    font-size: 13px;
}

.hero__pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    padding: 8px 15px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .92);
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.hero__pill span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #69e895;
}

.hero h1 {
    margin: 0 auto;
    max-width: 760px;
    font-family: "Poppins", sans-serif;
    font-size: clamp(42px, 7vw, 86px);
    font-weight: 900;
    line-height: 1.02;
}

.hero h1 em {
    color: #69e895;
    font-style: normal;
}

.hero p {
    margin: 22px 0 0;
    max-width: 600px;
    color: rgba(255, 255, 255, .78);
    font-size: 18px;
    line-height: 1.75;
}

.hero--compact p {
    margin-inline: auto;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.hero__stats {
    display: flex;
    gap: 34px;
    margin-top: 44px;
}

.hero__stats strong {
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: 34px;
    line-height: 1;
}

.hero__stats span {
    display: block;
    margin-top: 6px;
    color: rgba(255, 255, 255, .62);
    font-size: 13px;
}

.booking-card,
.content-card,
.room-card,
.facility-card,
.testimonial-card,
.contact-card,
.form-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}

.booking-card {
    padding: 28px;
    box-shadow: var(--shadow);
}

.hero .booking-card {
    border-color: rgba(255, 255, 255, .26);
    background: rgba(255, 255, 255, .22);
    box-shadow: 0 28px 70px rgba(0, 0, 0, .28);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero .booking-card h2 {
    color: var(--white);
}

.hero .booking-card p {
    color: rgba(255, 255, 255, .76);
}

.hero .booking-card .field label {
    color: rgba(255, 255, 255, .88);
}

.hero .booking-card .field input,
.hero .booking-card .field select {
    border-color: rgba(255, 255, 255, .38);
    color: var(--white);
    background: rgba(255, 255, 255, .18);
}

.hero .booking-card .field input:focus,
.hero .booking-card .field select:focus {
    border-color: rgba(255, 255, 255, .62);
    background: rgba(255, 255, 255, .2);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, .1);
}

.hero .booking-card .field select option {
    color: var(--ink);
}

.booking-card h2,
.form-card h2 {
    margin: 0 0 5px;
    font-family: "Poppins", sans-serif;
    font-size: 22px;
}

.booking-card p,
.form-card p {
    margin: 0 0 22px;
    color: var(--muted);
    font-size: 14px;
}

.field {
    margin-bottom: 14px;
}

.field label {
    display: block;
    margin-bottom: 7px;
    color: var(--ink);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 46px;
    padding: 12px 13px;
    border: 1.5px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    background: var(--off);
    outline: 0;
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.field textarea {
    min-height: 118px;
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--green);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(39, 174, 96, .1);
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.image-stack {
    position: relative;
    min-height: 480px;
}

.image-stack__main,
.image-stack__second {
    position: absolute;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.image-stack__main {
    top: 0;
    left: 0;
    width: 72%;
    height: 380px;
}

.image-stack__second {
    right: 0;
    bottom: 0;
    width: 56%;
    height: 270px;
    border: 5px solid var(--white);
}

.image-stack img {
    height: 100%;
}

.floating-note {
    position: absolute;
    left: 50%;
    bottom: 35px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 12px 38px rgba(15, 23, 42, .12);
    transform: translateX(-50%);
}

.floating-note strong {
    display: block;
    color: var(--green);
    font-family: "Poppins", sans-serif;
    font-size: 22px;
}

.floating-note span {
    color: var(--muted);
    font-size: 12px;
    white-space: nowrap;
}

.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 28px;
}

.mini-feature {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--off);
}

.mini-feature .icon {
    color: var(--green);
    margin-bottom: 10px;
}

.mini-feature h3 {
    margin: 0 0 4px;
    font-size: 15px;
}

.mini-feature p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 42px;
}

.muted-section {
    background: var(--off);
}

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

.room-card {
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}

.room-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
}

.room-card__image {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.room-card__image img {
    height: 100%;
    transition: transform .45s ease;
}

.room-card:hover img {
    transform: scale(1.06);
}

.badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 11px;
    border-radius: 999px;
    color: var(--white);
    background: var(--blue);
    font-family: "Poppins", sans-serif;
    font-size: 11px;
    font-weight: 900;
}

.room-card__image .badge {
    position: absolute;
    top: 14px;
    left: 14px;
}

.room-card__body {
    padding: 22px;
}

.room-card__type {
    color: var(--green);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.room-card h3 {
    margin: 7px 0 8px;
    font-family: "Poppins", sans-serif;
    font-size: 21px;
}

.room-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

.room-card__price {
    display: flex;
    align-items: baseline;
    gap: 7px;
    margin: 18px 0;
}

.room-card__price strong {
    color: var(--green);
    font-family: "Poppins", sans-serif;
    font-size: 30px;
}

.room-card__price span {
    color: var(--muted);
    font-size: 13px;
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 20px;
}

.chip {
    padding: 6px 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    background: var(--off);
    font-size: 12px;
    font-weight: 700;
}

.facilities-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.facility-card {
    flex: 0 1 calc((100% - 32px) / 3);
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.facility-card:hover {
    transform: translateY(-4px);
    border-color: rgba(47, 128, 237, .35);
    background: #f1f7ff;
}

.facility-card__icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    border-radius: var(--radius);
    color: var(--green);
    background: var(--green-soft);
}

.facility-card:hover .facility-card__icon {
    color: var(--blue);
    background: #e7f0ff;
}

.facility-card h3 {
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-size: 17px;
}

.facility-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

.promo {
    padding: 72px 0;
    color: var(--white);
    background: linear-gradient(135deg, #0d1117, #176b3a 60%, #27ae60);
}

.promo__inner {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 34px;
    align-items: center;
}

.promo h2 {
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.08;
}

.promo h2 span {
    color: var(--yellow);
}

.promo p {
    max-width: 630px;
    color: rgba(255, 255, 255, .78);
    line-height: 1.75;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 230px;
    gap: 14px;
}

.gallery-grid--masonry {
    display: block;
    columns: 3;
    column-gap: 14px;
}

.gallery-item {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    overflow: hidden;
    border-radius: var(--radius);
    color: inherit;
    text-align: inherit;
    cursor: pointer;
    background: var(--line);
}

.gallery-item.is-hidden {
    display: none !important;
}

.gallery-grid--masonry .gallery-item {
    break-inside: avoid;
    margin-bottom: 14px;
}

.gallery-item:nth-child(1) {
    grid-column: span 5;
}

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

.gallery-item:nth-child(4),
.gallery-item:nth-child(5),
.gallery-item:nth-child(6) {
    grid-column: span 4;
}

.gallery-item img {
    height: 100%;
    transition: transform .45s ease;
}

.gallery-grid--masonry .gallery-item img {
    height: auto;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item__overlay {
    position: absolute;
    inset: auto 0 0;
    padding: 34px 18px 18px;
    color: var(--white);
    background: linear-gradient(transparent, rgba(13, 17, 23, .86));
    opacity: 0;
    transition: opacity .2s ease;
}

.gallery-item:hover .gallery-item__overlay {
    opacity: 1;
}

.gallery-item__overlay strong {
    display: block;
    font-family: "Poppins", sans-serif;
}

.gallery-item__overlay span {
    color: #69e895;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.filters {
    position: sticky;
    top: var(--nav);
    z-index: 10;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

.filters__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.filter-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-btn {
    min-height: 38px;
    padding: 8px 15px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    background: var(--white);
    font-weight: 800;
    cursor: pointer;
}

.filter-btn.is-active,
.filter-btn:hover {
    color: var(--white);
    border-color: var(--green);
    background: var(--green);
}

.testimonial-section {
    color: var(--white);
    background: #0d1117;
}

.testimonial-section .section-title {
    color: var(--white);
}

.testimonial-section .lead {
    color: rgba(255, 255, 255, .68);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 44px;
}

.testimonial-card {
    padding: 24px;
    border-color: rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .06);
}

.stars {
    color: var(--yellow);
    letter-spacing: .08em;
}

.testimonial-card p {
    color: rgba(255, 255, 255, .82);
    line-height: 1.7;
}

.testimonial-card strong {
    display: block;
    color: var(--white);
}

.testimonial-card span {
    color: rgba(255, 255, 255, .55);
    font-size: 13px;
}

.contact-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    align-items: center;
}

.contact-list {
    display: grid;
    gap: 14px;
    margin-top: 30px;
}

.contact-card {
    display: flex;
    gap: 15px;
    padding: 18px;
}

.contact-card .icon {
    flex: 0 0 auto;
    color: var(--green);
}

.contact-card h3 {
    margin: 0 0 5px;
    font-size: 14px;
}

.contact-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.map-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.map-card iframe {
    display: block;
    width: 100%;
    height: 420px;
    border: 0;
}

.page-grid {
    display: grid;
    grid-template-columns: .9fr 1.2fr;
    gap: 58px;
    align-items: start;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.stat-band {
    padding: 42px 0;
    background: var(--green);
    color: var(--white);
    justify-content: center;
    align-items: center;
}

.stat-band__grid {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    text-align: center;
    justify-items: center;
}

.stat-band__grid > div {
    width: 100%;
}

.stat-band strong {
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: 38px;
}

.stat-band span {
    color: rgba(255, 255, 255, .78);
}

.form-card {
    padding: 34px;
    box-shadow: 0 10px 42px rgba(15, 23, 42, .06);
}

.alert-success {
    padding: 18px;
    margin-bottom: 22px;
    border: 1px solid rgba(39, 174, 96, .24);
    border-radius: var(--radius);
    color: var(--green-dark);
    background: var(--green-soft);
    font-weight: 800;
}

.footer {
    color: rgba(255, 255, 255, .62);
    background: #005223;
}

.footer__grid {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 62px 0 38px;
    display: grid;
    grid-template-columns: 1.45fr 1fr 1fr 1fr;
    gap: 38px;
}

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

.brand--footer .brand__text {
    color: var(--white);
}

.footer p {
    max-width: 300px;
    line-height: 1.7;
}

.footer h3 {
    margin: 0 0 16px;
    color: var(--white);
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    text-transform: uppercase;
}

.footer a:not(.brand) {
    display: block;
    margin-bottom: 11px;
    font-size: 14px;
    transition: color .2s ease;
}

.footer a:hover {
    color: #69e895;
}

.socials {
    display: flex;
    gap: 9px;
}

.socials a {
    display: grid !important;
    place-items: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .06);
    font-size: 12px !important;
    font-weight: 900;
}

.footer__bottom {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 13px;
}

.float-wa {
    position: fixed;
    right: 26px;
    bottom: 26px;
    z-index: 900;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 999px;
    color: var(--white);
    background: #25d366;
    box-shadow: 0 12px 34px rgba(37, 211, 102, .38);
}

.float-wa span {
    position: absolute;
    right: 68px;
    padding: 7px 12px;
    border-radius: var(--radius);
    color: var(--ink);
    background: var(--white);
    box-shadow: 0 8px 26px rgba(15, 23, 42, .12);
    font-size: 12px;
    font-weight: 900;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(8px);
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
}

.float-wa:hover span {
    opacity: 1;
    transform: translateX(0);
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    place-items: center;
    padding: 24px;
    background: rgba(0, 0, 0, .9);
}

.lightbox.is-open {
    display: grid;
}

.lightbox img {
    max-width: min(980px, 92vw);
    max-height: 78vh;
    border-radius: var(--radius);
    object-fit: contain;
}

.lightbox__close {
    position: fixed;
    top: 22px;
    right: 22px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 999px;
    color: var(--white);
    background: rgba(255, 255, 255, .12);
    cursor: pointer;
}

.lightbox__caption {
    position: fixed;
    bottom: 26px;
    left: 50%;
    padding: 10px 18px;
    border-radius: 999px;
    color: var(--white);
    background: rgba(0, 0, 0, .5);
    transform: translateX(-50%);
}

.fade-up {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .6s ease, transform .6s ease;
}

.fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .hero__inner,
    .split,
    .contact-strip,
    .page-grid {
        grid-template-columns: 1fr;
    }

    .hero__inner {
        gap: 34px;
    }

    .booking-card {
        max-width: 560px;
    }

    .rooms-grid,
    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }

    .facility-card {
        flex-basis: calc((100% - 16px) / 2);
    }

    .value-grid,
    .stat-band__grid {
        grid-template-columns: 1fr 1fr;
    }

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

@media (max-width: 780px) {
    :root {
        --nav: 68px;
    }

    .container,
    .nav__inner,
    .hero__inner,
    .promo__inner,
    .stat-band__grid,
    .footer__grid,
    .footer__bottom {
        width: min(100% - 32px, 1180px);
    }

    .nav__links {
        position: fixed;
        top: var(--nav);
        right: 0;
        left: 0;
        display: none;
        padding: 16px;
        border-bottom: 1px solid var(--line);
        background: var(--white);
        box-shadow: 0 18px 34px rgba(15, 23, 42, .08);
    }

    .nav__links.is-open {
        display: grid;
        gap: 8px;
    }

    .nav__links a {
        display: flex;
        align-items: center;
        min-height: 44px;
        padding: 11px 14px;
        border-radius: var(--radius);
        color: var(--muted);
        background: transparent;
    }

    .nav__links a::after {
        display: none;
    }

    .nav__links a:hover,
    .nav__links a.is-active {
        color: var(--green);
        background: var(--green-soft);
    }

    .nav__actions {
        display: none;
    }

    .hero .booking-card {
        order: -1;
    }

    .nav__toggle {
        display: block;
    }

    .hero h1 {
        font-size: clamp(38px, 12vw, 62px);
    }

    .hero--home {
        min-height: 100svh;
        display: flex;
        padding-top: 0;
    }

    .hero--home .hero__bg {
        position: absolute;
        inset: 0;
        height: auto;
    }

    .hero--home .hero__bg img {
        object-position: center top;
    }

    .hero--home .hero__overlay {
        display: block;
        background: linear-gradient(180deg, rgba(6, 20, 12, .34) 0%, rgba(6, 20, 12, .7) 48%, rgba(6, 20, 12, .92) 100%);
    }

    .hero--home .hero__inner {
        padding: calc(var(--nav) + 28px) 0 52px;
    }

    .hero__stats,
    .hero__actions,
    .promo__inner,
    .section-head,
    .filters__inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .field-row,
    .feature-list,
    .rooms-grid,
    .testimonials-grid,
    .value-grid,
    .stat-band__grid,
    .footer__grid {
        grid-template-columns: 1fr;
    }

    .facility-card {
        flex-basis: 100%;
    }

    .image-stack {
        min-height: auto;
    }

    .image-stack__main {
        position: relative;
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 3;
    }

    .image-stack__second,
    .floating-note {
        display: none;
    }

    .gallery-grid,
    .gallery-grid--masonry {
        display: grid;
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        columns: initial;
    }

    .gallery-item,
    .gallery-item:nth-child(n) {
        grid-column: auto;
        min-height: 230px;
    }

    .gallery-grid--masonry .gallery-item img {
        height: 260px;
    }

    .map-card iframe {
        height: 340px;
    }

    .float-wa span {
        display: none;
    }
}

@media (max-width: 460px) {
    .section {
        padding: 72px 0;
    }

    .hero__stats {
        gap: 22px;
    }

    .booking-card,
    .form-card {
        padding: 22px;
    }

    .float-wa {
        right: 18px;
        bottom: 18px;
    }
}

/* Responsive hardening across pages */
.hero__inner > *,
.split > *,
.page-grid > *,
.contact-strip > *,
.promo__inner > *,
.room-card,
.testimonial-card,
.form-card,
.contact-card,
.mini-feature {
    min-width: 0;
}

.booking-card,
.form-card,
.map-card,
.room-card,
.testimonial-card {
    width: 100%;
}

@media (max-width: 1180px) {
    .nav__links {
        gap: 22px;
    }

    .nav__actions .btn {
        padding-inline: 16px;
    }

    .hero__inner {
        grid-template-columns: minmax(0, 1fr) minmax(340px, 390px);
        gap: 36px;
    }
}

@media (max-width: 1024px) {
    .hero {
        min-height: auto;
    }

    .hero__inner {
        padding: calc(var(--nav) + 56px) 0 72px;
    }

    .hero--home .hero__inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .booking-card {
        justify-self: start;
    }

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

    .contact-strip,
    .page-grid {
        gap: 36px;
    }

    .map-card iframe {
        height: 380px;
    }
}

@media (max-width: 780px) {
    body {
        font-size: 15px;
    }

    .section {
        padding: 76px 0;
    }

    .section-title {
        font-size: clamp(28px, 9vw, 42px);
        line-height: 1.12;
    }

    .lead {
        font-size: 15px;
        line-height: 1.7;
    }

    .nav__inner {
        gap: 14px;
    }

    .brand__logo {
        width: 72px;
    }

    .nav__links {
        max-height: calc(100svh - var(--nav));
        overflow-y: auto;
    }

    .hero {
        align-items: stretch;
    }

    .hero--compact {
        min-height: 72svh;
        padding-bottom: 48px;
    }

    .hero__inner {
        grid-template-columns: minmax(0, 1fr);
        gap: 24px;
    }

    .hero h1 {
        max-width: 100%;
        line-height: 1.08;
    }

    .hero p {
        max-width: 100%;
        font-size: 16px;
        line-height: 1.65;
    }

    .hero__pill {
        max-width: 100%;
        flex-wrap: wrap;
        line-height: 1.35;
    }

    .hero__actions {
        width: 100%;
    }

    .hero__actions .btn,
    .promo__inner .btn {
        width: 100%;
    }

    .booking-card {
        max-width: none;
        justify-self: stretch;
    }

    .field input,
    .field select,
    .field textarea {
        font-size: 16px;
    }

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

    .rooms-grid {
        gap: 18px;
    }

    .room-card__image {
        height: clamp(220px, 62vw, 320px);
    }

    .room-card__price {
        flex-wrap: wrap;
    }

    .facilities-grid {
        gap: 14px;
    }

    .gallery-grid {
        gap: 12px;
    }

    .filters {
        position: static;
        padding: 18px 0;
    }

    .filter-buttons {
        width: 100%;
        display: flex;
        flex-wrap: nowrap;
        gap: 10px;
        overflow-x: auto;
        padding: 2px 0 10px;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .filter-buttons::-webkit-scrollbar {
        display: none;
    }

    .filter-btn {
        flex: 0 0 auto;
        min-height: 42px;
        padding-inline: 18px;
        white-space: nowrap;
        scroll-snap-align: start;
        box-shadow: 0 6px 18px rgba(15, 23, 42, .08);
    }

    .filter-count {
        width: 100%;
        font-size: 13px;
    }

    .contact-card {
        align-items: flex-start;
    }

    .map-card iframe {
        height: 320px;
    }

    .form-card {
        padding: 26px 20px;
    }

    .stat-band {
        padding: 34px 0;
    }

    .stat-band__grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }

    .stat-band__grid > div {
        padding: 16px 8px;
        border: 1px solid rgba(255, 255, 255, .22);
        border-radius: var(--radius);
        background: rgba(255, 255, 255, .12);
        box-shadow: 0 12px 32px rgba(0, 0, 0, .12);
    }

    .stat-band strong {
        font-size: clamp(24px, 8vw, 32px);
    }

    .stat-band span {
        display: block;
        font-size: clamp(10px, 3vw, 13px);
        line-height: 1.35;
    }

    .footer__grid {
        gap: 28px;
        padding-top: 46px;
    }

    .footer p {
        max-width: none;
    }

    .footer__bottom {
        justify-content: flex-start;
    }
}

@media (max-width: 560px) {
    .container,
    .nav__inner,
    .hero__inner,
    .promo__inner,
    .stat-band__grid,
    .footer__grid,
    .footer__bottom {
        width: min(100% - 28px, 1180px);
    }

    .hero--home .hero__inner {
        padding: calc(var(--nav) + 20px) 0 42px;
    }

    .hero--compact .hero__inner {
        padding-top: calc(var(--nav) + 44px);
    }

    .booking-card,
    .form-card {
        padding: 20px;
    }

    .gallery-item,
    .gallery-item:nth-child(n) {
        min-height: 220px;
    }

    .gallery-grid--masonry .gallery-item img {
        height: 240px;
    }

    .contact-card {
        padding: 16px;
    }

    .float-wa {
        width: 52px;
        height: 52px;
    }
}

@media (max-width: 360px) {
    .section-title {
        font-size: 27px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .btn {
        padding-inline: 14px;
    }

    .room-card__body {
        padding: 18px;
    }
}
