@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --brand-primary: #009a44;
    --brand-primary-dark: #143324;
    --brand-primary-soft: #edf8f0;
    --text-primary: #233d31;
    --text-muted: #60786d;
    --surface-card: rgba(255, 255, 255, 0.98);
    --surface-soft: #f3faf5;
    --border-soft: rgba(0, 154, 68, 0.12);
    --shadow-soft: 0 18px 38px rgba(16, 58, 33, 0.08);
    --font-ui: "Roboto", "Segoe UI", Arial, sans-serif;
    --font-display: "Roboto", "Segoe UI", Arial, sans-serif;
    --font-heading: "Roboto", "Segoe UI", Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-ui);
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
    background: #ffffff;
}

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

.container {
    width: min(1200px, calc(100% - 2rem));
    margin: 0 auto;
}

.lodging-page {
    padding-top: 8.6rem;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    color: #fff;
    background: linear-gradient(90deg, #069541 0%, var(--brand-primary) 48%, #05833a 100%);
    box-shadow: 0 14px 34px rgba(0, 68, 30, 0.16);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 86px;
    padding: 0.75rem 20px;
}

.logo img {
    height: 64px;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 0.35rem;
    margin-left: auto;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    display: inline-flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 0.75rem 0.95rem;
    border-radius: 999px;
    white-space: nowrap;
}

.nav-links a::after {
    content: "";
    position: absolute;
    right: 0.95rem;
    bottom: 0.5rem;
    left: 0.95rem;
    height: 2px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

.nav-links a:hover::after,
.has-submenu:hover > a::after,
.has-submenu:focus-within > a::after {
    transform: scaleX(1);
}

.nav-caret {
    margin-left: 0.45rem;
    font-size: 0.58rem;
    transition: transform 0.25s ease;
}

.submenu {
    position: absolute;
    top: calc(100% + 0.65rem);
    left: 0;
    min-width: 230px;
    padding: 0.5rem;
    list-style: none;
    background: linear-gradient(90deg, #069541 0%, var(--brand-primary) 48%, #05833a 100%);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.submenu a {
    display: block;
    padding: 0.8rem 0.95rem;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: 12px;
}

.submenu a:hover {
    background: rgba(255, 255, 255, 0.12);
}

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.has-submenu:hover .nav-caret,
.has-submenu:focus-within .nav-caret {
    transform: rotate(180deg);
}

.submenu-toggle {
    display: none;
}

.nav-social {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-left: 1rem;
}

.nav-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 42px;
    padding: 0 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    text-decoration: none;
}

.nav-social svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.burger {
    display: none;
    cursor: pointer;
    position: relative;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
}

.truck-icon {
    position: relative;
    display: block;
    width: 28px;
    height: 24px;
}

.truck-bed,
.truck-cab,
.truck-base,
.truck-wheel,
.truck-load {
    position: absolute;
    display: block;
}

.truck-bed {
    top: 3px;
    left: 1px;
    width: 14px;
    height: 8px;
    border: 2px solid #fff;
    border-radius: 3px 3px 2px 2px;
    transform-origin: 100% 100%;
    transition: transform 0.3s ease;
}

.truck-cab {
    top: 7px;
    right: 1px;
    width: 9px;
    height: 8px;
    border: 2px solid #fff;
    border-left: 0;
    border-radius: 0 3px 3px 1px;
}

.truck-cab::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -5px;
    width: 7px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    border-radius: 0 3px 0 0;
    transform: skewX(-18deg);
}

.truck-base {
    right: 2px;
    bottom: 6px;
    width: 24px;
    height: 2px;
    border-radius: 999px;
    background: #fff;
}

.truck-wheel {
    bottom: 1px;
    width: 6px;
    height: 6px;
    border: 2px solid #fff;
    border-radius: 50%;
}

.truck-wheel-left {
    left: 4px;
}

.truck-wheel-right {
    right: 3px;
}

.truck-load {
    top: 0;
    left: 2px;
    width: 10px;
    height: 10px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.truck-load::before,
.truck-load::after {
    content: "";
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #fff;
}

.truck-load::before {
    top: 3px;
    left: 0;
}

.truck-load::after {
    top: 7px;
    left: 4px;
}

.toggle .truck-bed {
    transform: rotate(-34deg) translate(-1px, -5px);
}

.toggle .truck-load {
    opacity: 1;
    animation: truckDump 0.7s ease forwards;
}

.toggle .truck-wheel-left,
.toggle .truck-wheel-right {
    animation: truckBounce 0.45s ease;
}

@keyframes truckDump {
    0% { transform: translate(0, 0); opacity: 0; }
    25% { opacity: 1; }
    100% { transform: translate(-6px, 9px); opacity: 0; }
}

@keyframes truckBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-1px); }
}

.lodging-hero {
    padding: 7.2rem 0 2.3rem;
}

.hero-grid,
.overview-grid,
.contact-band-grid,
.lodging-grid,
.complex-grid {
    display: grid;
    gap: 1.2rem;
}

.hero-grid {
    grid-template-columns: 1fr;
    align-items: center;
}

.eyebrow,
.section-kicker,
.contact-label {
    display: inline-flex;
    align-items: center;
    padding: 0.36rem 0.78rem;
    border-radius: 999px;
    background: rgba(0, 154, 68, 0.1);
    color: var(--brand-primary-dark);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.overview-card h2 {
    font-family: var(--font-heading);
    line-height: 1;
    color: var(--brand-primary-dark);
}

.hero-copy h1 {
    max-width: 11ch;
    margin-top: 1rem;
    font-size: clamp(2.5rem, 5vw, 4.3rem);
}

.hero-lead,
.section-heading p,
.overview-card p,
.complex-copy p,
.lodging-content p,
.contact-card p {
    color: var(--text-muted);
}

.hero-lead {
    max-width: 40rem;
    margin-top: 1rem;
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.hero-pills a,
.table-meta,
.feature-list li {
    border-radius: 999px;
}

.hero-pills a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0.76rem 1.05rem;
    border: 1px solid var(--border-soft);
    background: #fff;
    color: var(--brand-primary-dark);
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(18, 63, 37, 0.06);
}

.hero-pills a:hover {
    background: var(--brand-primary-soft);
}

.hero-visual {
    min-width: 0;
}

.hero-carousel,
.overview-card,
.lodging-card,
.complex-card,
.contact-card,
.listing-tools,
.table-empty {
    border: 1px solid var(--border-soft);
    border-radius: 26px;
    background: var(--surface-card);
    box-shadow: var(--shadow-soft);
}

.hero-carousel,
.lodging-card,
.complex-card {
    overflow: hidden;
}

.hero-carousel {
    position: relative;
    min-height: 520px;
}

.hero-slides {
    position: relative;
    min-height: 520px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transform: scale(1.03);
    transition: opacity 0.7s ease, transform 0.9s ease;
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.hero-slide img,
.lodging-media img,
.complex-card img {
    height: 100%;
    object-fit: cover;
}

.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(9, 28, 18, 0.08) 0%, rgba(9, 28, 18, 0.58) 100%);
}

.overview-card,
.lodging-content,
.complex-copy,
.contact-card {
    padding: 1.15rem;
}

.hero-slide-content {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    padding: 1.6rem;
    color: #fff;
}

.hero-slide-tag {
    display: inline-flex;
    margin-bottom: 0.8rem;
    padding: 0.38rem 0.88rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-slide-content h2 {
    max-width: 24rem;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.3vw, 2.2rem);
    line-height: 1.06;
    color: #fff;
    text-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.hero-control {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 1.35rem;
    cursor: pointer;
    transform: translateY(-50%);
    backdrop-filter: blur(6px);
}

.hero-control-prev {
    left: 1rem;
}

.hero-control-next {
    right: 1rem;
}

.hero-control:hover {
    background: rgba(255, 255, 255, 0.28);
}

.hero-dots {
    position: absolute;
    right: 0;
    bottom: 1.2rem;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 0.55rem;
}

.hero-dot {
    width: 11px;
    height: 11px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease;
}

.hero-dot.is-active {
    background: #fff;
    transform: scale(1.2);
}

.lodging-overview,
.lodging-section,
.complex-section,
.contact-band {
    padding: 0 0 3rem;
}

.lodging-section {
    padding-top: 1.4rem;
    scroll-margin-top: 10rem;
}

.lodging-section .section-heading {
    max-width: none;
    margin-inline: auto;
    margin-bottom: 2rem;
    text-align: center;
}

.lodging-section .section-heading h2 {
    margin-top: 0;
}

.overview-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
}

.overview-card h2,
.section-heading h2 {
    margin-top: 0.85rem;
    font-size: clamp(1.95rem, 3vw, 2.85rem);
}

.overview-card p,
.section-heading p,
.lodging-content p,
.complex-copy p,
.contact-card p {
    margin-top: 0.7rem;
}

.overview-card-soft {
    background: linear-gradient(180deg, rgba(247, 251, 248, 0.98) 0%, rgba(238, 247, 241, 0.96) 100%);
}

.section-heading {
    max-width: 46rem;
    margin-bottom: 1.5rem;
}

.listing-tools {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.05rem;
    margin-bottom: 1.1rem;
}

.search-box {
    display: grid;
    gap: 0.55rem;
    width: min(100%, 520px);
}

.search-box label {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-primary-dark);
}

.search-box input {
    width: 100%;
    min-height: 52px;
    padding: 0.88rem 1rem;
    border: 1px solid rgba(0, 154, 68, 0.14);
    border-radius: 18px;
    background: #fcfefd;
    color: var(--text-primary);
    font: inherit;
    outline: none;
}

.search-box input:focus {
    border-color: rgba(0, 154, 68, 0.32);
    box-shadow: 0 0 0 4px rgba(0, 154, 68, 0.08);
}

.table-meta {
    align-self: center;
    padding: 0.65rem 0.95rem;
    background: rgba(0, 154, 68, 0.08);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--brand-primary-dark);
    white-space: nowrap;
}

.lodging-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lodging-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lodging-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 40px rgba(16, 58, 33, 0.11);
}

.lodging-card.is-hidden {
    display: none;
}

.lodging-media {
    position: relative;
    min-height: 250px;
}

.lodging-media-gallery {
    display: grid;
    grid-template-rows: minmax(0, 1fr) 96px;
    gap: 0.4rem;
    padding: 0.4rem;
    background: #fff;
}

.lodging-media-main {
    min-height: 230px;
    border-radius: 18px;
}

.lodging-media-thumbs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.4rem;
}

.lodging-media-thumbs img {
    height: 96px;
    border-radius: 14px;
    object-fit: cover;
}

.lodging-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    background: rgba(20, 51, 36, 0.82);
    color: #fff;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lodging-content h3,
.complex-copy h3 {
    font-family: var(--font-display);
    color: var(--brand-primary-dark);
}

.lodging-content h3 {
    font-size: 1.2rem;
}

.lodging-location {
    margin-top: 0.9rem;
    padding: 0.85rem 0.95rem;
    border: 1px solid rgba(0, 154, 68, 0.1);
    background: var(--surface-soft);
}

.lodging-location-label {
    display: inline-block;
    margin-bottom: 0.35rem;
    color: var(--brand-primary-dark);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lodging-location p {
    margin-top: 0;
    color: var(--text-primary);
    font-size: 0.94rem;
    line-height: 1.45;
}

.feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    list-style: none;
    margin-top: 1rem;
}

.feature-list li {
    padding: 0.48rem 0.72rem;
    background: var(--surface-soft);
    border: 1px solid rgba(0, 154, 68, 0.08);
    color: var(--brand-primary-dark);
    font-size: 0.84rem;
    font-weight: 700;
}

.lodging-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.15rem;
}

.lodging-action-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0.78rem 1.1rem;
    border-radius: 6px;
    background: var(--brand-primary);
    color: #fff;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease;
}

.lodging-action-button:hover {
    transform: translateY(-1px);
    background: var(--brand-primary-dark);
    color: #fff;
}

.lodging-action-secondary {
    background: #ffffff;
    color: var(--brand-primary-dark);
    border: 1px solid rgba(0, 154, 68, 0.18);
}

.lodging-action-secondary:hover {
    background: #edf8f0;
    color: var(--brand-primary-dark);
}

.gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 220;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(8, 19, 13, 0.72);
}

.gallery-modal.is-open {
    display: flex;
}

.gallery-modal-panel {
    width: min(1040px, 100%);
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
    padding: 1.15rem;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 24px 44px rgba(0, 0, 0, 0.24);
}

.gallery-modal-header {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.gallery-modal-header h2 {
    margin-top: 0.7rem;
    font-family: var(--font-display);
    font-size: 1.55rem;
    color: var(--brand-primary-dark);
}

.gallery-modal-close {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 154, 68, 0.1);
    color: var(--brand-primary-dark);
    font-size: 1.5rem;
    cursor: pointer;
}

.gallery-modal-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
}

.gallery-modal-grid img {
    width: 100%;
    height: 260px;
    border-radius: 18px;
    object-fit: cover;
}

.table-empty {
    display: none;
    margin-top: 1rem;
    padding: 1.1rem 1.2rem 1.2rem;
    color: var(--text-muted);
}

.table-empty.is-visible {
    display: block;
}

.complex-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
}

.complex-card img {
    height: 280px;
}

.complex-card-wide img {
    height: 100%;
}

.complex-grid-curated {
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    align-items: stretch;
}

.complex-card-featured {
    display: grid;
    grid-template-rows: minmax(360px, 1fr) auto;
    min-height: 100%;
}

.complex-card-featured img {
    height: 100%;
    min-height: 420px;
}

.complex-side-grid {
    display: grid;
    gap: 1.2rem;
    grid-template-columns: 1fr;
}

.complex-side-grid .complex-card {
    display: grid;
    grid-template-rows: 220px auto;
}

.complex-side-grid .complex-card img {
    height: 220px;
}

.contact-band-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 1.1rem;
}

.booking-panel {
    padding: 1.6rem;
    border: 1px solid rgba(0, 154, 68, 0.1);
    border-radius: 32px;
    background:
        radial-gradient(circle at top right, rgba(0, 154, 68, 0.08), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #f7fbf8 100%);
    box-shadow: 0 22px 46px rgba(14, 52, 31, 0.08);
}

.contact-heading {
    max-width: 44rem;
    margin: 0 auto 1.75rem;
    text-align: center;
}

.contact-heading h2 {
    font-size: clamp(2rem, 3.2vw, 3.1rem);
}

.contact-heading p {
    max-width: 39rem;
    margin-inline: auto;
}

.contact-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 260px;
    padding: 1.45rem;
    overflow: hidden;
}

.contact-card-copy h3 {
    margin-top: 1rem;
    color: var(--brand-primary-dark);
    font-family: var(--font-display);
    font-size: 1.55rem;
    line-height: 1.08;
}

.contact-card-copy p {
    max-width: 30rem;
}

.contact-card-primary {
    border-color: rgba(0, 154, 68, 0.14);
    background: #fff;
    box-shadow: 0 22px 46px rgba(14, 52, 31, 0.08);
}

.contact-card-primary::before {
    background: transparent;
}

.contact-card-primary .contact-label {
    background: rgba(0, 154, 68, 0.1);
    color: var(--brand-primary-dark);
}

.contact-card-primary .contact-card-copy h3,
.contact-card-primary a,
.contact-card-primary p {
    color: inherit;
}

.contact-card a {
    display: block;
    margin-top: 0.65rem;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
}

.contact-card a:hover {
    color: var(--brand-primary);
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.contact-action-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: var(--brand-primary);
    color: #fff !important;
    font-size: 0.92rem;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.contact-action-button:hover {
    transform: translateY(-1px);
    opacity: 0.92;
}

.contact-action-button-whatsapp {
    background: #25d366;
}

.contact-action-button-secondary {
    background: #fff;
    color: var(--brand-primary-dark) !important;
    border: 1px solid rgba(0, 154, 68, 0.16);
}

.contact-action-button-secondary:hover {
    background: var(--surface-soft);
}

.page-footer {
    background: #1f2f25;
    color: rgba(255, 255, 255, 0.82);
    text-align: center;
    padding: 1rem 0 1.35rem;
}

.page-footer p + p {
    margin-top: 0.2rem;
}

@media (max-width: 1080px) {
    .hero-grid,
    .overview-grid,
    .lodging-grid,
    .complex-grid,
    .contact-band-grid,
    .calendar-grid,
    .gallery-modal-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 1080px) {
    .complex-grid-curated {
        grid-template-columns: 1fr;
    }

    .complex-card-featured img {
        min-height: 320px;
    }

    .complex-side-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 960px) {
    .listing-tools {
        flex-direction: column;
        align-items: stretch;
    }

    .gallery-modal-header {
        align-items: center;
    }

    .search-box {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        min-height: 88px;
        padding: 0.9rem 16px;
    }

    .burger {
        display: inline-flex;
    }

    .nav-social {
        margin-left: auto;
        margin-right: 0.55rem;
        gap: 0.4rem;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 0.45rem);
        right: 1rem;
        left: 1rem;
        width: auto;
        max-height: calc(100vh - 6.5rem);
        overflow-y: auto;
        overflow-x: hidden;
        background: #07853d;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-left: 0;
        padding: 0.9rem;
        border-radius: 24px;
        border: 1px solid rgba(255, 255, 255, 0.14);
        box-shadow: 0 22px 45px rgba(0, 0, 0, 0.26);
        transform: translateY(-12px) scale(0.98);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    }

    .nav-links li {
        opacity: 0;
        width: 100%;
    }

    .nav-links a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 0.9rem 1rem;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.06);
    }

    .nav-links a::after {
        right: 1rem;
        bottom: 0.42rem;
        left: 1rem;
    }

    .submenu-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .submenu {
        position: static;
        min-width: unset;
        max-height: 0;
        padding: 0;
        margin-top: 0.3rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        box-shadow: none;
        opacity: 0;
        visibility: hidden;
        transform: none;
        overflow: hidden;
        border: 0;
        transition: max-height 0.3s ease, opacity 0.2s ease, padding 0.2s ease;
    }

    .submenu a {
        padding: 0.72rem 1rem 0.72rem 1.2rem;
        font-size: 0.86rem;
        background: transparent;
    }

    .has-submenu:hover .submenu,
    .has-submenu:focus-within .submenu {
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        padding: 0;
    }

    .has-submenu.is-open .submenu {
        max-height: 220px;
        padding: 0.35rem;
        opacity: 1;
        visibility: visible;
    }

    .has-submenu.is-open .nav-caret {
        transform: rotate(180deg);
    }

    .nav-active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0) scale(1);
    }

    .nav-active li {
        opacity: 1;
    }

    .lodging-hero {
        padding-top: 6.35rem;
    }

    .hero-carousel,
    .hero-slides {
        min-height: 360px;
    }

    .hero-slide-content {
        padding: 1.2rem 1.2rem 3.6rem;
    }

    .hero-slide-content h2 {
        max-width: 18rem;
        font-size: 1.35rem;
    }

    .hero-control {
        width: 42px;
        height: 42px;
    }

    @keyframes navLinkFade {
        from {
            opacity: 0;
            transform: translateX(18px);
        }
        to {
            opacity: 1;
            transform: translateX(0px);
        }
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 1rem, 1200px);
    }

    .booking-panel {
        padding: 1.05rem;
        border-radius: 24px;
    }

    .contact-heading {
        text-align: left;
        margin-bottom: 1.2rem;
    }

    .contact-heading p {
        margin-inline: 0;
    }

    .contact-card {
        min-height: auto;
        padding: 1.15rem;
    }

    .contact-card-copy h3 {
        font-size: 1.28rem;
    }

    .lodging-page {
        padding-top: 7rem;
    }

    .lodging-section {
        padding-top: 1rem;
        scroll-margin-top: 8.25rem;
    }

    .hero-copy h1 {
        font-size: 2.2rem;
    }

    .hero-carousel,
    .overview-card,
    .lodging-card,
    .complex-card,
    .calendar-panel,
    .calendar-month,
    .gallery-modal-panel,
    .contact-card,
    .listing-tools,
    .table-empty {
        border-radius: 22px;
    }

    .search-box input {
        min-height: 50px;
        border-radius: 16px;
    }

    .table-meta {
        align-self: flex-start;
        font-size: 0.82rem;
    }

    .complex-side-grid {
        grid-template-columns: 1fr;
    }

    .complex-card-featured,
    .complex-side-grid .complex-card {
        grid-template-rows: auto auto;
    }

    .complex-card-featured img,
    .complex-side-grid .complex-card img {
        min-height: 0;
        height: auto;
    }
}
