*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: #F9F4EC;
    color: #4C3D19;
    overflow-x: hidden;
}

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input,
select,
textarea {
    font-family: inherit;
    font-size: 1rem;
}

/* ── CSS VARIABLES ── */
:root {
    --cafe: #4C3D19;
    --kombu: #354024;
    --moss: #889063;
    --tan: #CFBB99;
    --bone: #E5D7C4;
    --bone-lt: #F9F4EC;
    --white: #ffffff;
    --shadow: 0 8px 40px rgba(76, 61, 25, 0.12);
    --radius: 12px;
    --trans: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.6rem, 6vw, 5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.05rem;
}

em {
    font-style: italic;
    color: inherit;
}

p {
    line-height: 1.75;
    color: #7a6a50;
}

.eyebrow {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--moss);
    margin-bottom: 0.6rem;
}

.eyebrow--light {
    color: var(--tan);
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 2rem;
}

.btn-primary {
    display: inline-block;
    background: var(--tan);
    color: var(--cafe);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.9rem 2rem;
    border-radius: 4px;
    transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
}

.btn-primary:hover {
    background: var(--cafe);
    color: var(--bone);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(76, 61, 25, 0.25);
}

.btn-ghost {
    display: inline-block;
    border: 1.5px solid rgba(229, 215, 196, 0.6);
    color: var(--bone);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.9rem 2rem;
    border-radius: 4px;
    transition: background var(--trans), color var(--trans);
}

.btn-ghost:hover {
    background: rgba(229, 215, 196, 0.15);
}

.btn-outline {
    display: inline-block;
    border: 1.5px solid var(--cafe);
    color: var(--cafe);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.9rem 2rem;
    border-radius: 4px;
    transition: background var(--trans), color var(--trans);
}

.btn-outline:hover {
    background: var(--cafe);
    color: var(--bone);
}

.btn-sm {
    display: inline-block;
    background: var(--kombu);
    color: var(--bone);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    transition: background var(--trans);
}

.btn-sm:hover {
    background: var(--cafe);
}

.btn-full {
    width: 100%;
    text-align: center;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25D366;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.9rem 2rem;
    border-radius: 4px;
    transition: background var(--trans), transform var(--trans);
}

.btn-whatsapp:hover {
    background: #1EB859;
    transform: translateY(-2px);
}

.btn-whatsapp-sm {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #25D366;
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.7rem 1.2rem;
    border-radius: 4px;
    transition: background var(--trans), transform var(--trans);
}

.btn-whatsapp-sm:hover {
    background: #1EB859;
    transform: translateY(-2px);
}

.preloader {
    position: fixed;
    inset: 0;
    background: var(--kombu);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.preloader-logo {
    width: 180px;
    height: auto;
    border: none;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
}

.preloader-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.preloader-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--bone);
    letter-spacing: 0.12em;
    margin-bottom: 1.5rem;
}

.preloader-tagline {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--tan);
    margin-bottom: 1.6rem;
}

.preloader-bar {
    width: 180px;
    height: 3px;
    background: rgba(229, 215, 196, 0.15);
    border-radius: 999px;
    overflow: hidden;
}

.preloader-fill {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg,
            var(--tan),
            var(--bone));
    border-radius: inherit;
    transition: width 0.08s linear;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.08)
    }
}

.llob-bar {
    position: relative;
    display: flex;
    align-items: center;
    height: 46px;
    background: var(--kombu, #354024);
    border-top: 1px solid rgba(207, 187, 153, 0.15);
    border-bottom: 1px solid rgba(207, 187, 153, 0.15);
    overflow: hidden;
}

.llob-label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
    height: 100%;
    padding: 0 1.1rem;
    background: var(--cafe, #4C3D19);
    color: var(--tan, #CFBB99);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 2;
    white-space: nowrap;
}

.llob-label i {
    font-size: 0.7rem;
}

.llob-viewport {
    position: relative;
    flex: 1;
    height: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 24px, #000 calc(100% - 40px), transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 24px, #000 calc(100% - 40px), transparent 100%);
}

.llob-track {
    display: flex;
    align-items: center;
    height: 100%;
    width: max-content;
    animation: llob-scroll 28s linear infinite;
}

.llob-bar:hover .llob-track,
.llob-bar.llob-paused .llob-track {
    animation-play-state: paused;
}

@keyframes llob-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.llob-item {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0 1.4rem;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}

.llob-badge {
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--kombu, #354024);
    background: var(--tan, #CFBB99);
    border-radius: 3px;
    padding: 0.15rem 0.5rem;
    flex-shrink: 0;
}

.llob-text {
    font-size: 0.78rem;
    color: var(--bone, #E5D7C4);
}

.llob-text strong {
    font-weight: 600;
}

.llob-arrow {
    font-size: 0.6rem;
    color: var(--tan, #CFBB99);
    opacity: 0.8;
}

.llob-dot {
    color: rgba(207, 187, 153, 0.35);
    font-size: 0.7rem;
    margin-left: 0.3rem;
}

.llob-close {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 100%;
    background: none;
    border: none;
    border-left: 1px solid rgba(207, 187, 153, 0.15);
    color: rgba(229, 215, 196, 0.55);
    font-size: 0.75rem;
    cursor: pointer;
    z-index: 2;
    transition: color 0.2s ease, background 0.2s ease;
}

.llob-close:hover {
    color: var(--bone, #E5D7C4);
    background: rgba(229, 215, 196, 0.06);
}

.llob-bar.llob-hidden {
    display: none;
}

@media (max-width: 768px) {
    .llob-bar {
        height: 40px;
    }

    .llob-label {
        padding: 0 0.8rem;
        font-size: 0.62rem;
    }

    .llob-label span {
        display: none;
    }

    .llob-item {
        padding: 0 1rem;
    }

    .llob-text {
        font-size: 0.72rem;
    }

    .llob-badge {
        display: none;
    }
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: background var(--trans), padding var(--trans), box-shadow var(--trans);
}

.nav.scrolled {
    background: var(--kombu);
    padding: 0.75rem 0;
    box-shadow: 0 4px 24px rgba(53, 64, 36, 0.4);
}

.nav-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-logo img {
    display: block;
    width: auto;
    height: 64px;
    max-height: 64px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.nav-logo:hover img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-left: auto;
}

.nav-links a {
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(229, 215, 196, 0.85);
    transition: color var(--trans);
    position: relative;
    padding-bottom: 2px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--tan);
    transition: width var(--trans);
}

.nav-links a:hover {
    color: var(--bone);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active,
.mm-link.active {
    color: var(--bone);
    font-weight: 700;
}

.nav-links a.active::after,
.mm-link.active::after {
    width: 100%;
    background: var(--bone);
}

.nav-cta {
    background: var(--tan);
    color: var(--cafe);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    padding: 0.55rem 1.3rem;
    border-radius: 3px;
    transition: background var(--trans), color var(--trans);
    flex-shrink: 0;
}

.nav-cta:hover {
    background: var(--cafe);
    color: var(--bone);
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--bone);
    border-radius: 2px;
    transition: var(--trans);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    background: var(--kombu);
    z-index: 1200;
    padding: 5rem 2.5rem 2.5rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-bottom: 1rem;
}

.mobile-menu li {
    border-bottom: 1px solid rgba(207, 187, 153, 0.15);
}

.mm-link {
    display: block;
    padding: 1rem 0;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--tan);
    transition: color var(--trans);
}

.mm-link:hover {
    color: var(--bone);
}

.mm-cta {
    display: block;
    margin-top: 2rem;
    text-align: center;
    background: var(--tan);
    color: var(--cafe);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.85rem;
    border-radius: 4px;
}

.mobile-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: var(--bone);
    font-size: 1.2rem;
    opacity: 0.7;
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(53, 64, 36, 0.6);
    z-index: 1100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}

.mobile-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.hero {
    position: relative;
    height: 100vh;
    height: 100svh;
    min-height: 600px;
    max-height: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    /* filter: brightness(0.65); */
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom,
            rgba(0, 0, 0, 0.25),
            rgba(0, 0, 0, 0.45)),
        linear-gradient(to bottom,
            rgba(53, 64, 36, 0.45),
            rgba(76, 61, 25, 0.60),
            rgba(53, 64, 36, 0.85));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 1.5rem;
    max-width: 1100px;
    width: 100%;
    margin-top: 0;
}

.hero-location {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--bone);
    background: rgba(229, 215, 196, 0.12);
    border: 1px solid rgba(229, 215, 196, 0.3);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.hero-eyebrow {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--tan);
    margin-bottom: 1rem;
    display: block;
}

.hero-title {
    color: var(--bone);
    max-width: 1050px;
    margin: 0 auto 1.4rem;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.hero-title em {
    color: var(--tan);
    font-style: italic;
}

.hero-sub {
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
    font-size: .95rem;
    line-height: 1.7;
    opacity: 0.65;
    max-width: 950px;
    margin: 0 auto 2rem;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-slider-dots {
    position: absolute;
    bottom: 6rem;
    right: 2.5rem;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(229, 215, 196, 0.4);
    transition: background var(--trans), transform var(--trans);
}

.dot.active {
    background: var(--tan);
    transform: scale(1.4);
}

.hero-scroll-hint {
    position: absolute;
    bottom: 6.5rem;
    left: 2.5rem;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero-scroll-hint span {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(229, 215, 196, 0.5);
    writing-mode: vertical-rl;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(207, 187, 153, 0.5), transparent);
    animation: scrollDown 2s ease infinite;
}

@keyframes scrollDown {
    0% {
        height: 0;
        opacity: 1
    }

    100% {
        height: 50px;
        opacity: 0
    }
}

.hero-stat-section {
    position: relative;
    background: rgba(53, 64, 36, 0.9);
    border-top: 1px solid rgba(207, 187, 153, 0.15);
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem 0;
    padding: 1.3rem 2rem;
    max-width: 1180px;
    margin: 0 auto;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.4rem 2rem;
}

.hero-stat strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--bone);
    line-height: 1;
}

.hero-stat span {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--tan);
    margin-top: 0.3rem;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(207, 187, 153, 0.25);
    flex-shrink: 0;
}

.book-section {
    background: var(--bone-lt);
    padding: 2.5rem 2rem;
}

.book-bar {
    max-width: 1050px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(207, 187, 153, 0.35);
    overflow: hidden;
}

.book-field {
    flex: 1;
    padding: 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-width: 0;
}

.book-field label {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color:
        var(--moss);
}

.book-field label small {
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    color: var(--tan);
}

.book-field input,
.book-field select {
    border: none;
    outline: none;
    font-size: 0.92rem;
    color: var(--cafe);
    background:
        transparent;
    width: 100%;
    cursor: pointer;
    -webkit-appearance: none;
}

.book-sep {
    width: 1px;
    background: rgba(207, 187, 153, 0.4);
    margin: 0.8rem 0;
    flex-shrink: 0;
}

.book-btn {
    background: var(--kombu);
    color: var(--bone);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    padding: 0 2.5rem;
    border-radius: 0 var(--radius) var(--radius) 0;
    transition: background var(--trans);
    flex-shrink: 0;
    white-space: nowrap;
}

.book-btn:hover {
    background: var(--cafe);
}

.availability-section {
    background: var(--bone-lt);
    padding: 0 2rem;
}

.availability-box {
    max-width: 1050px;
    margin: auto;
    background: #fff;
    border: 1px solid rgba(207, 187, 153, .35);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.8rem 3.5rem 1.8rem 2rem;
    position: relative;
}

.availability-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.availability-info {
    flex: 1;
}

.availability-heading {
    display: block;
    font-size: .75rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--moss);
    margin-bottom: .35rem;
}

.availability-type {
    font-size: 1.25rem;
    color: var(--cafe);
    margin-bottom: .2rem;
}

.availability-count {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--kombu);
    line-height: 1;
    margin-bottom: .35rem;
}

.availability-label {
    font-size: .92rem;
    color: var(--moss);
    margin-bottom: .8rem;
}

.availability-progress {
    width: 100%;
    height: 8px;
    background: #e7e0d3;
    border-radius: 20px;
    overflow: hidden;
}

.availability-progress-fill {
    width: 0;
    height: 100%;
    background: var(--kombu);
    transition: .4s;
}

.availability-action {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 0 0 180px;
}

.book-now-btn {
    width: 180px;
    height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 180px;
    border: none;
    border-radius: var(--radius);
    background: var(--kombu);
    color: #fff;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: .3s;
    white-space: nowrap;
    overflow: visible;
}

.book-now-btn:hover {
    background: var(--cafe);
}

.availability-close {
    position: absolute;
    top: 15px;
    right: 18px;
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    background: #f3efe7;
    color: var(--cafe);
    font-size: 22px;
    cursor: pointer;
    transition: .3s;
    z-index: 10;
}

.availability-close:hover {
    background: var(--kombu);
    color: #fff;
}

@media(max-width:768px) {

    .availability-box {
        padding: 1.5rem;
    }

    .availability-content {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .availability-action {
        justify-content: center;
    }

    .book-now-btn {
        width: 100%;
    }

    .availability-count {
        font-size: 1.9rem;
    }
}

/* ── SECTION HEADER ── */
.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3.5rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header h2 em {
    color: var(--moss);
}

.section-header p {
    font-size: 0.95rem;
}

.section-header--light h2 em {
    color: var(--tan);
}

.section-header--light p {
    color: rgba(229, 215, 196, 0.75);
}

/* ── ABOUT ── */
.about-strip {
    padding: 3rem 0;
    background: var(--bone-lt);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.about-img-wrap {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/4;
    box-shadow:
        var(--shadow);
}

.about-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: var(--tan);
    color: var(--cafe);
    font-size:
        0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.5rem 1.1rem;
    border-radius: 3px;
}

.about-content h2 {
    margin-bottom: 1.2rem;
}

.about-content h2 em {
    color: var(--moss);
}

.about-content p {
    margin-bottom: 1rem;
}

.about-features {
    margin: 1.8rem 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* .about-features li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.9rem;
    color: var(--cafe);
} */

.about-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.50rem 1rem;
    background: var(--white);
    border: 1px solid rgba(207, 187, 153, 0.25);
    border-radius: var(--radius);
    transition: var(--trans);
}

.about-features li:hover {
    transform: translateX(6px);
    border-color: var(--tan);
    box-shadow: var(--shadow);
}

.feat-icon {
    width: 3rem;
    height: 3rem;
    min-width: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(136, 144, 99, 0.12);
    font-size: 1rem;
    transition: var(--trans);
}

.about-features li:hover .feat-icon {
    background: var(--moss);
    color: var(--white);
}

.feat-icon i {
    line-height: 1;
}

.about-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ── STAYS ── */
.stays-section {
    padding: 3rem 0;
    background: var(--bone);
}

.stays-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stay-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--trans), box-shadow var(--trans);
    display: flex;
    flex-direction: column;
}

.stay-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(76, 61, 25, 0.18);
}

.stay-card.featured {
    border: 2px solid var(--moss);
}

.stay-img {
    position: relative;
    height: 220px;
    overflow: hidden;
    flex-shrink: 0;
}

.stay-img img {
    transition: transform 0.7s ease;
}

.stay-card:hover .stay-img img {
    transform: scale(1.06);
}

.stay-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--tan);
    color: var(--cafe);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    border-radius: 3px;
}

.stay-body {
    padding: 1.6rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.stay-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.7rem;
    letter-spacing:
        0.07em;
    text-transform: uppercase;
    color: var(--moss);
    margin-bottom: 0.7rem;
}

.stay-body h3 {
    font-size: 1.4rem;
    color: var(--cafe);
    margin-bottom: 0.6rem;
}

.stay-body p {
    font-size: 0.86rem;
    margin-bottom: 1.1rem;
}

.stay-amenities {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.3rem;
}

.stay-amenities li {
    font-size: 0.8rem;
    color: var(--cafe);
    padding-left: 1rem;
    position: relative;
}

.stay-amenities li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--moss);
    font-size: 0.7rem;
}

/* Pricing block — weekday / weekend */
.pricing-block {
    background: var(--bone-lt);
    border-radius: 8px;
    padding: 0.9rem 1rem;
    margin-bottom: 1.3rem;
    display:
        flex;
    flex-direction: column;
    gap: 0.5rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--moss);
    text-transform: uppercase;
    letter-spacing:
        0.05em;
}

.price-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--cafe);
}

.price-val small {
    font-size: 0.68rem;
    color: var(--moss);
    font-family: 'DM Sans', sans-serif;
}

.price-row.weekend {
    padding-top: 0.4rem;
    border-top: 1px dashed rgba(207, 187, 153, 0.6);
}

.price-row.weekend .price-val {
    color: var(--kombu);
}

/* ── STAY FOOTER ── */
.stay-footer {
    display: flex;
    gap: 0.7rem;
    margin-top: auto;
    align-items: stretch;
}

.stay-footer .btn-sm,
.stay-footer .btn-sm-outline {
    flex: 1;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    line-height: 1;
    padding: 0.75rem 1rem;
    border-radius: 6px;
}

/* Book a Stay */
.stay-footer .btn-sm {
    text-align: center;
}

.stay-footer .btn-sm-outline {
    border: 1.5px solid var(--kombu);
    color: var(--kombu);
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: border-color var(--trans);
}

.stay-footer .btn-sm-outline:hover {
    border-color: var(--cafe);
    color: var(--kombu);
    background: rgba(136, 144, 99, 0.06);
}

/* Timings note */
.timings-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    padding: 1rem 1.5rem;
    background: var(--white);
    border-radius: 8px;
    font-size: 0.82rem;
    color: var(--cafe);
    border: 1px solid rgba(207, 187, 153, 0.4);
}

.tn-sep {
    color: var(--tan);
}

/* ── PACKAGES SECTION ── */
.packages-section {
    padding: 3rem 0;
    background: var(--kombu);
}

.packages-section .section-header h2 {
    color: var(--bone);
}

.pkg-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

.pkg-card {
    background: rgba(229, 215, 196, 0.07);
    border: 1px solid rgba(207, 187, 153, 0.18);
    border-radius: var(--radius);
    padding: 1.8rem 1.3rem;
    text-align: center;
    transition:
        transform var(--trans),
        background var(--trans),
        border-color var(--trans),
        box-shadow var(--trans);
}

.pkg-card:hover {
    background: rgba(229, 215, 196, 0.12);
    border-color: rgba(207, 187, 153, 0.35);
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.pkg-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(136, 144, 99, 0.12);
    border: 1px solid rgba(207, 187, 153, 0.15);
    color: var(--tan);
    font-size: 1.25rem;
    transition: var(--trans);
}

.pkg-card:hover .pkg-icon {
    background: var(--moss);
    border-color: var(--moss);
    color: var(--white);
    transform: scale(1.08);
}

.pkg-card h4 {
    color: var(--bone);
    font-size: 1.02rem;
    margin-bottom: 0.5rem;
}

.pkg-card p {
    color: rgba(207, 187, 153, 0.8);
    font-size: 0.8rem;
    line-height: 1.6;
}

.bbq-addon {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
    background: rgba(229, 215, 196, 0.1);
    border: 1px solid rgba(207, 187, 153, 0.25);
    border-radius: var(--radius);
    padding: 1.4rem 1.8rem;
}

.bbq-icon {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(136, 144, 99, 0.12);
    border: 1px solid rgba(207, 187, 153, 0.15);
    color: var(--tan);
    font-size: 1.35rem;
}

.bbq-text {
    flex: 1;
    min-width: 200px;
}

.bbq-text h5 {
    color: var(--bone);
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.bbq-text p {
    color: rgba(207, 187, 153, 0.85);
    font-size: 0.85rem;
}

.bbq-text strong {
    color: var(--tan);
}

/* ── EXPERIENCES ── */
.exp-section {
    padding: 3rem 0;
    background: var(--bone-lt);
}

.exp-section .section-header h2 em {
    color: var(--moss);
}

.exp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

.exp-card {
    background: var(--white);
    border: 1px solid rgba(207, 187, 153, 0.4);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition:
        transform var(--trans),
        border-color var(--trans),
        box-shadow var(--trans);
}

.exp-card:hover {
    transform: translateY(-6px);
    border-color: var(--tan);
}

.exp-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(136, 144, 99, 0.12);
    border: 1px solid rgba(136, 144, 99, 0.15);
    color: var(--moss);
    font-size: 1.3rem;
    transition: var(--trans);
}

.exp-card:hover .exp-icon {
    background: var(--moss);
    color: var(--white);
    transform: scale(1.08);
}

.exp-card h4 {
    color: var(--cafe);
    font-size: 1.05rem;
    margin-bottom: 0.6rem;
}

.exp-card p {
    font-size: 0.84rem;
    line-height: 1.6;
}

.coming-soon {
    display: inline-block;
    font-size: 0.55rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: var(--tan);
    color: var(--cafe);
    padding: 0.18rem 0.5rem;
    border-radius: 10px;
    margin-left: 0.3rem;
    vertical-align: middle;
}

.kids-zone {
    background: var(--white);
    border: 2px dashed var(--moss);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.kids-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.kids-icon {
    width: 4.5rem;
    height: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(136, 144, 99, 0.12);
    border: 1px solid rgba(136, 144, 99, 0.15);
    color: var(--moss);
    font-size: 1.5rem;
}

.kids-header h4 {
    color: var(--cafe);
    margin-bottom: 0.3rem;
}

.coming-soon-lg {
    color: var(--moss);
    font-style: italic;
    font-size: 0.95rem;
}

.kids-header p {
    font-size: 0.86rem;
}

.kids-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
}

.kid-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    background: var(--bone-lt);
    border: 1px solid rgba(207, 187, 153, 0.3);
    border-radius: 8px;
    padding: 1rem;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--cafe);
    transition: var(--trans);
}

.kid-item i {
    color: var(--moss);
    font-size: 1rem;
}

.kid-item:hover {
    background: var(--white);
    border-color: var(--tan);
    transform: translateY(-3px);
}

/* ── WHY US ── */
.why-section {
    padding: 3rem 0;
    background: var(--bone);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.why-text h2 {
    margin-bottom: 1.2rem;
}

.why-text h2 em {
    color: var(--moss);
}

.why-text p {
    margin-bottom: 2rem;
}

.why-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.why-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.6rem 1.4rem;
    border: 1px solid rgba(207, 187, 153, 0.4);
    box-shadow: var(--shadow);
}

.why-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--tan);
    font-weight: 300;
    display: block;
    margin-bottom: 0.5rem;
}

.why-card h5 {
    color: var(--cafe);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.why-card p {
    font-size: 0.82rem;
    line-height: 1.65;
}

/* ── AMENITIES ── */
.amenities-section {
    padding: 3rem 0;
    background: var(--bone-lt);
}

.amen-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}

.amen-card {
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1.25rem;
    border: 1px solid rgba(207, 187, 153, 0.3);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition:
        transform var(--trans),
        border-color var(--trans),
        box-shadow var(--trans);
}

.amen-card:hover {
    transform: translateY(-6px);
    border-color: var(--tan);
}

.amen-card span {
    width: 3rem;
    height: 3rem;
    min-width: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: 50%;
    background: rgba(136, 144, 99, 0.12);
    border: 1px solid rgba(136, 144, 99, 0.15);
    color: var(--moss);
    font-size: 1.25rem;
    transition: var(--trans);
}

.amen-card:hover span {
    background: var(--moss);
    color: var(--white);
    transform: scale(1.08);
}

.amen-card span i {
    line-height: 1;
}

.amen-card p {
    margin: 0;
    color: var(--cafe);
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.5;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox.open {
    display: flex;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(53, 64, 36, 0.95);
}

.lightbox img {
    position: relative;
    z-index: 1;
    max-width: 90vw;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 6px;
}

.lb-close,
.lb-prev,
.lb-next {
    position: fixed;
    z-index: 2;
    background: rgba(229, 215, 196, 0.15);
    border: 1px solid rgba(229, 215, 196, 0.25);
    color: var(--bone);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: background var(--trans);
}

.lb-close:hover,
.lb-prev:hover,
.lb-next:hover {
    background: rgba(229, 215, 196, 0.3);
}

.lb-close {
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1rem;
}

.lb-prev {
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
}

.lb-next {
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
}

.testi-section {
    padding: 6rem 0;
    background: var(--bone);
}

.testi-section .section-header h2 em {
    color: var(--moss);
}

.testi-section .section-header p {
    font-size: 0.95rem;
}

.testi-outer {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

/* VIEWPORT clips the slides */
.testi-viewport {
    overflow: hidden;
    width: 100%;
}

/* TRACK holds all slides side by side */
.testi-track {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* Each SLIDE = one full visible frame (4 cards) */
.testi-slide {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    min-width: 100%;
}

/* Card */
.testi-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid rgba(207, 187, 153, 0.3);
    box-shadow: var(--shadow);
    transition: transform var(--trans), box-shadow var(--trans);
}

.testi-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(76, 61, 25, 0.15);
}

.testi-card-inner {
    padding: 1.8rem 1.6rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testi-top {
    margin-bottom: 1rem;
}

.testi-stars {
    color: var(--tan);
    font-size: 0.95rem;
    letter-spacing: 3px;
}

.testi-card blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-style: italic;
    color: var(--cafe);
    line-height: 1.72;
    margin-bottom: 1.4rem;
    flex: 1;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: auto;
}

.testi-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--kombu);
    color: var(--bone);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testi-author strong {
    display: block;
    font-size: 0.85rem;
    color: var(--cafe);
    margin-bottom: 0.18rem;
}

.testi-author span {
    font-size: 0.72rem;
    color: var(--moss);
}

/* Arrow buttons */
.testi-arrow {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1.5px solid var(--moss);
    color: var(--moss);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--trans), color var(--trans), border-color var(--trans), transform var(--trans);
    box-shadow: var(--shadow);
    z-index: 2;
}

.testi-arrow:hover {
    background: var(--kombu);
    color: var(--bone);
    border-color: var(--kombu);
    transform: scale(1.08);
}

/* Dots */
.testi-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 2.2rem;
}

.testi-dot {
    width: 28px;
    height: 6px;
    border-radius: 999px;
    background: rgba(136, 144, 99, 0.25);
    border: none;
    transition: background var(--trans), width var(--trans);
    cursor: pointer;
}

.testi-dot.active {
    background: var(--moss);
    width: 44px;
}

/* ── LOCATION ── */
.location-section {
    padding: 3rem 0;
    background: var(--bone-lt);
}

.loc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.loc-info h2 {
    margin-bottom: 1rem;
}

.loc-info h2 em {
    color: var(--moss);
}

.loc-info>p {
    margin-bottom: 2rem;
}

.loc-address-card {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    background: var(--white);
    border-radius: 10px;
    padding: 1.1rem 1.3rem;
    margin-bottom: 1.8rem;
    box-shadow: var(--shadow);
}

.loc-addr-icon {
    width: 3rem;
    height: 3rem;
    min-width: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(136, 144, 99, 0.12);
    border: 1px solid rgba(136, 144, 99, 0.15);
    color: var(--moss);
    font-size: 1rem;
    transition: var(--trans);
    flex-shrink: 0;
}

.loc-address-card:hover .loc-addr-icon {
    background: var(--moss);
    color: var(--white);
    transform: scale(1.08);
}

.loc-address-card strong {
    display: block;
    font-size: 0.9rem;
    color: var(--cafe);
    margin-bottom: 0.3rem;
}

.loc-address-card p {
    font-size: 0.83rem;
    line-height: 1.6;
}

.loc-distances {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-bottom: 2.5rem;
}

.loc-distances li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid rgba(207, 187, 153, 0.35);
}

.loc-city {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--cafe);
}

.loc-city-icon {
    width: 2rem;
    height: 2rem;
    min-width: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(136, 144, 99, 0.12);
    color: var(--moss);
    font-size: 0.8rem;
    transition: var(--trans);
}

.loc-distances li:hover .loc-city-icon {
    background: var(--moss);
    color: var(--white);
}

.loc-distances li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid rgba(207, 187, 153, 0.35);
    transition: var(--trans);
}

.loc-distances li:hover {
    transform: translateX(6px);
}

.loc-distances li>span:last-child {
    font-size: 0.82rem;
    color: var(--moss);
    font-weight: 500;
}

.loc-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.loc-map {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-placeholder {
    background: var(--kombu);
    min-height: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem;
    text-align: center;
}

.map-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin-bottom: 1.5rem;
}

.map-pin {
    width: 4.5rem;
    height: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--tan);
    color: var(--cafe);
    font-size: 1.8rem;
    position: relative;
    z-index: 1;
}

.map-pin-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.map-pin-pulse {
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 2px solid rgba(207, 187, 153, 0.25);
    animation: mapPulse 2s ease infinite;
}

@keyframes mapPulse {
    0% {
        transform: scale(0.8);
        opacity: 1
    }

    100% {
        transform: scale(2);
        opacity: 0
    }
}

.map-label {
    margin-top: 1rem;
    color: var(--bone);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
    max-width: 280px;
}

.map-note {
    font-size: 0.82rem;
    color: var(--tan);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.map-nearby {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.map-nearby span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.72rem;
    background: rgba(229, 215, 196, 0.1);
    border: 1px solid rgba(207, 187, 153, 0.3);
    color: var(--bone);
    padding: 0.4rem 0.8rem;
    border-radius: 14px;
    transition: var(--trans);
}

.map-nearby span i {
    color: var(--tan);
    font-size: 0.75rem;
}

.map-nearby span:hover {
    background: rgba(229, 215, 196, 0.18);
    transform: translateY(-2px);
}

.map-open-btn {
    display: inline-block;
    background: var(--tan);
    color: var(--cafe);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.7rem 1.5rem;
    border-radius: 3px;
    transition: background var(--trans);
}

.map-open-btn:hover {
    background: var(--bone);
}

/* ── FAQ ── */
.faq-section {
    padding: 3rem 0;
    background: var(--bone);
}

.faq-section .section-header h2 em {
    color: var(--moss);
}

.faq-grid {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid rgba(207, 187, 153, 0.5);
}

.faq-q {
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4rem 0;
    gap: 1rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--cafe);
    transition: color var(--trans);
}

.faq-q:hover {
    color: var(--kombu);
}

.faq-icon {
    font-size: 1.3rem;
    color: var(--moss);
    flex-shrink: 0;
    transition: transform var(--trans);
    line-height: 1;
}

.faq-q[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
    color: var(--cafe);
}

.faq-a {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-a p {
    padding-bottom: 1.4rem;
    font-size: 0.9rem;
    line-height: 1.75;
}

.faq-a strong {
    color: var(--cafe);
}

/* ── CTA BANNER ── */
.cta-banner {
    position: relative;
    padding: 6rem 2rem;
    background: var(--cafe);
    text-align: center;
    overflow: hidden;
}

.cta-banner-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(53, 64, 36, 0.5) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(136, 144, 99, 0.2) 0%, transparent 60%);
}

.cta-banner-inner {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
}

.cta-banner h2 {
    color: var(--bone);
    margin-bottom: 1rem;
}

.cta-banner h2 em {
    color: var(--tan);
}

.cta-banner p {
    color: rgba(229, 215, 196, 0.8);
    margin-bottom: 2.5rem;
}

.cta-content {
    max-width: 900px;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── FOOTER ── */
.footer {
    background: var(--kombu);
}

.footer-top {
    padding: 4.5rem 0 3rem;
    border-bottom: 1px solid rgba(207, 187, 153, 0.15);
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-col ul {
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.footer-logo img {
    display: block;
    width: auto;
    height: 75px;
    max-height: 75px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-brand p {
    font-size: 0.85rem;
    color: rgba(207, 187, 153, 0.75);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-socials {
    display: flex;
    flex-direction: row;
    /* force horizontal layout */
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: nowrap;
    /* prevent wrapping */
}

.footer-socials a {
    width: 2.75rem;
    height: 2.75rem;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(229, 215, 196, 0.08);
    border: 1px solid rgba(207, 187, 153, 0.2);

    color: var(--tan);
    font-size: 1rem;

    transition:
        transform var(--trans),
        background var(--trans),
        border-color var(--trans),
        color var(--trans);
}

.footer-socials a:hover {
    background: var(--tan);
    border-color: var(--tan);

    color: var(--kombu);

    transform: translateY(-4px);
}

.footer-socials a i {
    line-height: 1;
}

.footer-col h6 {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--tan);
    margin-bottom: 1.2rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-col li a {
    font-size: 0.85rem;
    color: rgba(207, 187, 153, 0.7);
    transition: color var(--trans);
}

.footer-col li a:hover {
    color: var(--bone);
}

.footer-bottom {
    padding: 1.2rem 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(207, 187, 153, 0.5);
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    font-size: 0.78rem;
    color: rgba(207, 187, 153, 0.5);
    transition: color var(--trans);
}

.footer-bottom-links a:hover {
    color: var(--tan);
}

.staff-login {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    opacity: 0.6;
    transition: opacity var(--trans), color var(--trans);
}

.staff-login i {
    font-size: 0.7rem;
}

.staff-login span {
    font-size: 0.78rem;
    color: rgba(207, 187, 153, 0.5);
}

.staff-login:hover {
    opacity: 1;
}

.staff-login:hover span {
    color: var(--tan);
}

/* ── WHATSAPP FAB ── */
.whatsapp-fab {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 900;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    transition: transform var(--trans), box-shadow var(--trans);
}

.whatsapp-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

/* ── SCROLL REVEAL ANIMATIONS ── */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left {
    transform: translateX(-30px);
}

.reveal-right {
    transform: translateX(30px);
}

.revealed {
    opacity: 1 !important;
    transform: none !important;
}

.delay-1 {
    transition-delay: 0.12s !important;
}

.delay-2 {
    transition-delay: 0.24s !important;
}

.delay-3 {
    transition-delay: 0.36s !important;
}

.delay-4 {
    transition-delay: 0.48s !important;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .stays-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pkg-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .exp-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .amen-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .kids-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-img-wrap {
        aspect-ratio: 16/9;
        max-height: 380px;
    }

    .testi-slide {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 1.2rem;
    }

    .map-placeholder {
        min-height: 320px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    h1 {
        font-size: 2.4rem;
    }

    h2 {
        font-size: 1.9rem;
    }

    .container {
        padding: 0 1.25rem;
    }

    .hero {
        padding-bottom: 130px;
    }

    .hero-content {
        max-height: calc(100% - 175px);
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 0.4rem 0;
        padding: 1rem 1rem;
        min-height: 130px;
    }

    .hero-stat {
        padding: 0.3rem 1rem;
        flex: 0 1 auto;
    }

    .hero-stat-divider {
        display: none;
    }

    .book-bar {
        flex-direction: column;
        border-radius: var(--radius);
    }

    .book-sep {
        width: 100%;
        height: 1px;
        margin: 0;
    }

    .book-btn {
        border-radius: 0 0 var(--radius) var(--radius);
        padding: 1rem;
    }

    .stays-grid {
        grid-template-columns: 1fr;
    }

    .stays-section {
        padding: 4rem 0;
    }

    .exp-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .exp-section {
        padding: 4rem 0;
    }

    .why-cards {
        grid-template-columns: 1fr;
    }

    .why-section {
        padding: 4rem 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .gallery-item.tall {
        grid-row: span 1;
    }

    .gallery-item.wide {
        grid-column: span 2;
    }

    .testi-slide {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .testi-card {
        min-width: 0;
        width: 100%;
    }

    .testi-outer {
        padding: 0 0.5rem;
        gap: 0.5rem;
    }

    .testi-arrow {
        width: 38px;
        height: 38px;
        flex-shrink: 0;
    }

    .testi-card-inner {
        padding: 1.5rem 1.3rem;
    }

    .testi-section {
        padding: 3.5rem 0;
    }

    /* Package inclusions — 2 cols was ok, but bbq addon needs to stack cleanly */
    .pkg-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .bbq-addon {
        justify-content: center;
        text-align: center;
    }

    .bbq-text {
        text-align: center;
        min-width: 100%;
    }

    /* Amenities — keep 2 cols, tighten padding */
    .amen-card {
        padding: 1.5rem 1rem;
    }

    /* Kids zone — 2 cols is fine at 768, center header on wrap */
    .kids-header {
        justify-content: center;
        text-align: center;
    }

    .kids-header p {
        text-align: center;
    }

    /* Stay card footer buttons: keep side-by-side but allow wrap on narrow phones */
    .stay-footer {
        flex-wrap: wrap;
    }

    .stay-footer .btn-sm,
    .stay-footer .btn-sm-outline {
        flex: 1 1 45%;
        text-align: center;
    }

    /* Nav logo slightly smaller so it doesn't crowd the hamburger */
    .nav-logo img {
        height: 52px;
        max-height: 52px;
    }

    /* Location distances: icon+label wrapping safety */
    .loc-city {
        flex-wrap: wrap;
    }

    /* Map label shouldn't force nowrap overflow on narrow screens */
    .map-label {
        white-space: normal;
    }

    /* Footer socials: allow wrap instead of forcing single row if it overflows */
    .footer-socials {
        flex-wrap: wrap;
    }

    /* Timings note wraps but center it properly */
    .timings-note {
        text-align: center;
        justify-content: center;
    }

    .loc-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-top-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .about-strip,
    .why-section,
    .faq-section,
    .testi-section,
    .location-section,
    .contact-section {
        padding: 3rem 0;
    }

    .cta-banner {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-bottom: 100px;
    }

    .hero-content {
        max-height: calc(100% - 200px);
    }

    .hero-stats {
        min-height: 150px;
    }

    .hero-stat {
        padding: 0.25rem 0.8rem;
    }

    .hero-stat strong {
        font-size: 1.4rem;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .hero-scroll-hint {
        display: none;
    }

    .hero-slider-dots {
        flex-direction: row;
        bottom: 1.5rem;
        right: 50%;
        transform: translateX(50%);
    }

    .exp-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item.wide {
        grid-column: span 1;
    }

    .loc-btns {
        flex-direction: column;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .container {
        padding: 0 1rem;
    }

    /* Kids grid & amenities grid → single column on very small phones */
    .kids-grid {
        grid-template-columns: 1fr;
    }

    .amen-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
    }

    .amen-card {
        padding: 1.25rem 0.8rem;
    }

    .amen-card p {
        font-size: 0.82rem;
    }

    /* Package cards → single column */
    .pkg-grid {
        grid-template-columns: 1fr;
    }

    /* Stay footer buttons stack fully on very narrow phones */
    .stay-footer {
        flex-direction: column;
        gap: 0.55rem;
    }

    .stay-footer .btn-sm,
    .stay-footer .btn-sm-outline {
        flex: 1 1 100%;
        min-height: 42px;
        padding: 0.7rem 0.6rem;
        font-size: 0.78rem;
    }

    .stay-body {
        padding: 1.3rem;
    }

    .stay-img {
        height: 190px;
    }

    /* Pricing rows: stack label/value if they crowd */
    .price-row {
        flex-wrap: wrap;
        row-gap: 4px;
    }

    /* Testimonial card text a touch smaller so it doesn't overflow tiny screens */
    .testi-card blockquote {
        font-size: 0.92rem;
    }

    .testi-arrow {
        width: 34px;
        height: 34px;
    }

    /* Book bar fields: reduce padding so date/select inputs aren't cramped */
    .book-field {
        padding: 0.85rem 1.1rem;
    }

    /* Hero location/eyebrow chips wrap cleanly */
    .hero-location {
        font-size: 0.7rem;
        padding: 0.35rem 0.8rem;
    }

    /* Footer socials: shrink icons slightly */
    .footer-socials a {
        width: 2.4rem;
        height: 2.4rem;
        font-size: 0.9rem;
    }

    /* WhatsApp FAB smaller + safely inset from edge */
    .whatsapp-fab {
        width: 48px;
        height: 48px;
        bottom: 1.25rem;
        right: 1.25rem;
    }

    /* Loc address card: icon above text on very narrow screens */
    .loc-address-card {
        flex-wrap: wrap;
    }

    /* CTA banner tighter padding */
    .cta-banner {
        padding: 2.5rem 1.25rem;
    }
}

@media (max-width: 360px) {
    .hero-stat {
        padding: 0.2rem 0.6rem;
    }

    .hero-stat strong {
        font-size: 1.25rem;
    }

    .book-btn {
        padding: 0.9rem;
        font-size: 0.68rem;
    }

    .amen-grid {
        grid-template-columns: 1fr;
    }

    .testi-avatar {
        width: 36px;
        height: 36px;
        font-size: 0.68rem;
    }
}