:root {
    --green: #0F2F2C;
    --gold: #C8A97E;
    --beige: #F5F1E9;
    --dark: #0A1F1D;
    --text: #1A1A1A;
    --card-shadow: 0 20px 45px rgba(12, 33, 30, 0.11);
    --radius: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", "Poppins", Arial, sans-serif;
    background: var(--beige);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    width: 100%;
    display: block;
    border-radius: var(--radius);
    transition: transform 0.8s ease;
}

.container {
    width: min(1200px, 92%);
    margin: 0 auto;
}

.section {
    padding: 120px 0;
}

.cinematic-intro {
    position: fixed;
    inset: 0;
    z-index: 1000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 1s ease, visibility 1s ease;
}

.cinematic-intro.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.intro-bg,
.intro-overlay,
.intro-content {
    position: absolute;
    inset: 0;
}

.intro-bg {
    background-size: cover;
    background-position: center;
    animation: introZoom 5.8s ease forwards;
}

.intro-overlay {
    background: linear-gradient(180deg, rgba(6, 16, 15, 0.48) 0%, rgba(6, 16, 15, 0.76) 100%);
}

.intro-content {
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 20px;
    animation: introContentFade 1.4s ease;
}

.intro-content h1 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2.2rem, 7vw, 5rem);
    margin-bottom: 8px;
}

.intro-content p {
    letter-spacing: 1px;
    font-size: clamp(1rem, 2.2vw, 1.5rem);
}

.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 500;
    backdrop-filter: blur(10px);
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background 0.6s ease, border-color 0.6s ease, box-shadow 0.6s ease;
}

.site-header.scrolled {
    background: rgba(10, 31, 29, 0.72);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.nav-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 18px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.brand img {
    height: 100px;
    width: auto;
    max-width: min(220px, 42vw);
    display: block;
}

.main-nav {
    display: flex;
    gap: 35px;
}

.main-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    position: relative;
}

.main-nav a:hover {
    color: var(--gold);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.14);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    padding: 0;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background: #fff;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.menu-overlay {
    display: none;
}

.btn {
    display: inline-block;
    padding: 13px 24px;
    border-radius: var(--radius);
    text-decoration: none;
    border: 1px solid transparent;
    transition: all 0.6s ease;
    font-weight: 600;
}

.btn-gold {
    background: var(--gold);
    color: var(--dark);
    font-weight: 600;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(200, 169, 126, 0.35);
}

.btn-outline {
    border-color: #fff;
    color: #fff;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hero {
    min-height: 100svh;
    position: relative;
    overflow: hidden;
}

.hero-bg,
.hero-overlay,
.hero-content {
    position: absolute;
    inset: 0;
}

.hero-bg {
    z-index: 0;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.09);
    transition: opacity 1s ease, transform 8s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1.02);
    animation: heroSlideZoom 10s ease-in-out infinite alternate;
}

.hero-overlay {
    z-index: 1;
    background: linear-gradient(180deg, rgba(6, 16, 15, 0.25) 0%, rgba(6, 16, 15, 0.62) 60%, rgba(15, 47, 44, 0.88) 100%);
    pointer-events: none;
}

.hero-content {
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.hero-content .container {
    max-width: 760px;
    width: min(1200px, 92%);
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #e7d9c3;
    margin-bottom: 12px;
    font-size: 0.8rem;
}

.hero h1 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 16px;
    line-height: 1.15;
}

.hero p {
    margin-bottom: 24px;
    color: #f2e8d7;
}

.hero-actions {
    display: flex;
    gap: 12px;
}

h2 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    margin-bottom: 28px;
    color: var(--green);
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image-wrap {
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
}

.about-image-wrap img {
    width: 100%;
    min-height: 420px;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.6s ease;
}

.about-image-wrap:hover img {
    transform: scale(1.04);
}

.glass-card {
    background: rgba(200, 169, 126, 0.16);
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid rgba(200, 169, 126, 0.36);
    margin-top: 24px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: transform 0.7s ease, box-shadow 0.7s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 55px rgba(12, 33, 30, 0.18);
}

.image-card:hover img,
.gallery-item:hover img {
    transform: scale(1.1);
}

.card-body {
    padding: 22px;
}

.card-body h3 {
    font-family: "Playfair Display", Georgia, serif;
    margin-bottom: 8px;
}

.gallery-grid {
    column-count: 3;
    column-gap: 25px;
}

.gallery-filters {
    display: flex;
    gap: 12px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.filter-btn {
    border: 1px solid rgba(15, 47, 44, 0.24);
    border-radius: 999px;
    background: #fff;
    color: var(--green);
    padding: 10px 18px;
    cursor: pointer;
    transition: all 0.45s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 25px;
    display: inline-block;
    width: 100%;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.gallery-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item.hide {
    opacity: 0;
    transform: translateY(8px) scale(0.96);
}

.gallery-item.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.gallery-item.is-hidden {
    display: none !important;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.4s ease;
}

.gallery-item img.img-loaded {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.load-more-container {
    text-align: center;
    margin-top: 40px;
}

#loadMoreBtn {
    padding: 14px 30px;
    background: #C8A97E;
    color: #fff;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

#loadMoreBtn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(8, 15, 15, 0.9);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    padding: 40px 16px;
}

.lightbox.show {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: min(95vw, 1200px);
    max-height: 90vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    border: 0;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
}

.review-card .stars {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.review-card p {
    margin-bottom: 8px;
    line-height: 1.7;
}

.review-card h3 {
    margin-top: 12px;
}

.rating-badge {
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    padding: 22px;
    max-width: 320px;
    margin-bottom: 24px;
}

.rating-badge .stars {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 6px;
}

.rating-badge .score {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.45rem;
    margin-bottom: 4px;
}

.rating-badge .source {
    color: #4f4f4f;
}

.review-slider-wrap {
    overflow: hidden;
    position: relative;
    padding: 0 56px;
}

.review-slider-track {
    display: flex;
    transition: transform 0.7s ease;
    align-items: stretch;
}

.review-slide {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
    min-width: 33.3333%;
    padding: 0 9px;
    background: transparent;
    box-shadow: none;
}

.review-slide .card-inner {
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    padding: 26px;
    height: 100%;
}

.review-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(15, 47, 44, 0.86);
    color: #fff;
    cursor: pointer;
    z-index: 5;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.review-nav-btn:hover {
    transform: translateY(-50%) scale(1.04);
    opacity: 0.9;
}

.review-nav-btn.prev {
    left: 6px;
}

.review-nav-btn.next {
    right: 6px;
}

.safari {
    background: var(--green);
}

.safari h2,
.safari .card-body h3,
.safari .card-body p {
    color: #fff;
}

.safari .card {
    background: #153c39;
}

.rooms {
    background: #f0ece3;
}

.room-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
}

.room-images {
    flex: 1;
    min-height: 480px;
}

.room-showcase-viewport {
    position: relative;
    height: 400px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    background: #e9e4da;
}

.room-showcase-slider {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.75s ease;
}

.room-showcase-slide {
    min-width: 100%;
    width: 100%;
    height: 100%;
    margin: 0;
    overflow: hidden;
    flex-shrink: 0;
}

.room-showcase-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

.room-showcase-controls {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.room-nav-btn {
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: rgba(15, 47, 44, 0.85);
    color: #fff;
    cursor: pointer;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.room-nav-btn:hover {
    transform: translateY(-2px);
    opacity: 0.92;
}

.room-content {
    flex: 1;
}

.room-content h2 {
    font-size: clamp(2rem, 4vw, 42px);
}

.room-content p {
    margin: 20px 0;
}

.room-content ul {
    margin: 20px 0 28px;
    padding-left: 20px;
}

.room-content li {
    margin-bottom: 10px;
}

.contact-box {
    text-align: center;
    max-width: 760px;
}

.contact-box p {
    margin-bottom: 8px;
}

.site-footer {
    background: var(--dark);
    color: #fff;
    padding: 30px 0 100px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
    font-size: 13px;
    opacity: 0.78;
    line-height: 1.7;
}

.footer-content p {
    margin: 0;
}

.footer-content a {
    color: #C8A97E;
    text-decoration: none;
    font-weight: 600;
}

.footer-content a:hover {
    text-decoration: underline;
    opacity: 0.95;
}

.fade-up {
    opacity: 0;
    transform: translateY(46px);
    transition: all 0.8s ease;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

.delay {
    transition-delay: 0.15s;
}

.delay2 {
    transition-delay: 0.3s;
}

.show-on-load {
    animation: fadeUpLoad 1.2s ease forwards;
}

@keyframes fadeUpLoad {
    0% {
        opacity: 0;
        transform: translateY(38px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroSlideZoom {
    0% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1.08);
    }
}

@keyframes introZoom {
    0% {
        transform: scale(1.04);
    }
    100% {
        transform: scale(1.14);
    }
}

@keyframes introContentFade {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-action-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: none;
    z-index: 150;
    background: var(--green);
}

.mobile-action-bar a {
    flex: 1;
    color: #fff;
    text-decoration: none;
    text-align: center;
    padding: 14px;
    border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 22px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: grid;
    place-items: center;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
    z-index: 1300;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    animation: whatsappPulse 2.3s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.07);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.32);
}

.floating-whatsapp svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5), 0 14px 28px rgba(0, 0, 0, 0.28);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(37, 211, 102, 0), 0 14px 28px rgba(0, 0, 0, 0.28);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 14px 28px rgba(0, 0, 0, 0.28);
    }
}

@media (max-width: 980px) {
    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: min(82vw, 360px);
        height: 100vh;
        z-index: 1200;
        background: rgba(255, 255, 255, 0.78);
        backdrop-filter: blur(14px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 28px;
        transform: translateX(-100%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.45s ease, opacity 0.45s ease;
    }

    .main-nav a {
        color: var(--green);
        font-size: 1.5rem;
        font-weight: 600;
    }

    .site-header.menu-open .main-nav {
        transform: translateX(0);
        opacity: 1;
        pointer-events: auto;
    }

    .menu-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(4, 10, 9, 0.46);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.35s ease;
        z-index: 1100;
    }

    .site-header.menu-open .menu-overlay {
        opacity: 1;
        pointer-events: auto;
    }

    .menu-toggle {
        display: inline-flex;
        position: relative;
        z-index: 1250;
    }

    .site-header.menu-open .menu-toggle span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .site-header.menu-open .menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .site-header.menu-open .menu-toggle span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-wrap > .btn.btn-gold {
        display: none;
    }

    .card-grid,
    .two-col {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 90px 0;
    }

    .room-wrapper {
        flex-direction: column;
        gap: 32px;
    }

    .room-images {
        min-height: 380px;
    }

    .room-showcase-viewport {
        height: 380px;
    }

    .room-showcase-slide img {
        height: 380px;
    }

    .room-content h2 {
        font-size: clamp(1.8rem, 6vw, 2.2rem);
    }
}

@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }

    .mobile-action-bar {
        display: flex;
    }

    .floating-whatsapp {
        bottom: 74px;
    }

    .footer-content {
        align-items: center;
    }

    .hero-actions {
        flex-wrap: wrap;
    }

    .hero h1 {
        font-size: clamp(2rem, 11vw, 3rem);
    }

    .brand img {
        height: 42px;
    }

    .hero-slide.active {
        animation-duration: 14s;
    }

    .room-images {
        min-height: 280px;
    }

    .room-showcase-viewport {
        height: 280px;
    }

    .room-showcase-slide img {
        height: 280px;
    }

    .review-slider-wrap {
        padding: 0;
    }

    .review-slide {
        flex: 0 0 100%;
        max-width: 100%;
        min-width: 100%;
        padding: 0;
    }

    .review-nav-btn {
        display: none;
    }

}

@media (max-width: 992px) {
    .gallery-grid {
        column-count: 2;
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        column-count: 1;
    }
}

.subpage-main {
    min-height: 100vh;
}

.sub-hero {
    padding-top: 150px;
    padding-bottom: 50px;
}

.sub-hero h1 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2rem, 5vw, 3.4rem);
    margin-bottom: 12px;
    color: var(--green);
}

.sub-hero p {
    max-width: 720px;
}

.seo-copy p {
    margin-bottom: 16px;
    line-height: 1.8;
}

.seo-copy a {
    color: var(--green);
    font-weight: 600;
}

.gallery-page-filters {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.gallery-page-filter-btn {
    border: 1px solid rgba(15, 47, 44, 0.28);
    border-radius: 999px;
    background: #fff;
    color: var(--green);
    padding: 10px 18px;
    cursor: pointer;
    transition: all 0.35s ease;
}

.gallery-page-filter-btn.active,
.gallery-page-filter-btn:hover {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
}

.gallery-page-item {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.gallery-page-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.gallery-page-item.is-hidden {
    display: none;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
}

.contact-form-card,
.contact-info-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    padding: 30px;
}

.contact-form-card h2,
.contact-info-card h2 {
    margin-bottom: 18px;
}

.contact-form-card {
    display: grid;
    gap: 12px;
}

.form-group {
    position: relative;
}

.contact-form-card input {
    width: 100%;
    border-radius: 12px;
    border: 1px solid #ddd;
    padding: 18px 12px 10px;
    font: inherit;
    line-height: 1.5;
    background: #fff;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form-card input:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(15, 47, 44, 0.1);
    outline: none;
}

.form-group label {
    position: absolute;
    left: 12px;
    top: 14px;
    color: #6b6b6b;
    background: #fff;
    padding: 0 4px;
    pointer-events: none;
    transition: all 0.25s ease;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group input:valid + label {
    top: -10px;
    font-size: 12px;
    color: var(--green);
}

/* Date fields do not support placeholder-shown consistently. */
.form-group input[type="date"] + label {
    top: -10px;
    font-size: 12px;
    color: var(--green);
}

.contact-info-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.contact-info-card p {
    margin-bottom: 12px;
    line-height: 1.7;
}

.btn-outline-dark {
    border: 1px solid var(--green);
    color: var(--green);
    background: transparent;
}

.btn-outline-dark:hover {
    background: var(--green);
    color: #fff;
}

@media (max-width: 980px) {
    .contact-page-grid {
        grid-template-columns: 1fr;
    }
}
