/* ===================================================
   SEA SEÑORITA VILLA — DESIGN SYSTEM
   Luxury Tropical Boutique Resort
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300;1,9..40,400&display=swap');

/* === CUSTOM PROPERTIES === */
:root {
    /* Color Palette */
    --jungle: #1a2d1f;
    --jungle-mid: #2a4232;
    --jungle-light: #3d5c46;
    --jungle-mist: #4a7058;
    --gold: #c9a84c;
    --gold-light: #e0c070;
    --gold-pale: #f0d898;
    --sand: #e8d9b5;
    --sand-light: #f5edd8;
    --cream: #faf7f0;
    --cream-dark: #f2ede2;
    --white: #ffffff;
    --text-dark: #1a1a18;
    --text-mid: #3a3830;
    --text-muted: #7a7568;
    --text-light: #a09880;

    /* Typography */
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'DM Sans', system-ui, sans-serif;

    /* Spacing */
    --section-pad: clamp(5rem, 10vw, 9rem);
    --container-max: 1320px;
    --gutter: clamp(1.5rem, 5vw, 4rem);

    /* Transitions */
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-fast: 0.2s var(--ease-smooth);
    --transition-med: 0.4s var(--ease-smooth);
    --transition-slow: 0.7s var(--ease-smooth);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(26, 45, 31, 0.08);
    --shadow-md: 0 8px 32px rgba(26, 45, 31, 0.14);
    --shadow-lg: 0 20px 60px rgba(26, 45, 31, 0.2);
    --shadow-gold: 0 4px 24px rgba(201, 168, 76, 0.25);

    /* Border radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Nav height */
    --nav-height: 80px;
}

/* === RESET & BASE === */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: var(--font-sans);
    background-color: var(--cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center center;
}

/* Full-bleed image containment */
.photo-collage img,
.room-gallery img,
.photo-strip img,
.activity-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

ul,
ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* === UTILITY CLASSES === */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.section {
    padding: var(--section-pad) 0;
}

.section--dark {
    background-color: var(--jungle);
    color: var(--cream);
}

.section--sand {
    background-color: var(--sand-light);
}

.section--cream {
    background-color: var(--cream);
}

.section--jungle-mid {
    background-color: var(--jungle-mid);
    color: var(--cream);
}

/* === TYPOGRAPHY === */
.serif {
    font-family: var(--font-serif);
}

.kicker {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-family: var(--font-sans);
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    font-weight: 300;
    color: var(--text-muted);
    max-width: 60ch;
    line-height: 1.7;
}

.section-header {
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-header--center {
    text-align: center;
}

.section-header--center .section-subtitle {
    margin: 0 auto;
}

/* Divider */
.divider {
    width: 64px;
    height: 1px;
    background: var(--gold);
    margin: 1.25rem 0 1.5rem;
}

.divider--center {
    margin: 1.25rem auto 1.5rem;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2.25rem;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all var(--transition-med);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: var(--gold);
    color: var(--jungle);
}

.btn-primary::before {
    background: var(--gold-light);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-outline {
    background: transparent;
    color: var(--cream);
    border: 1px solid rgba(201, 168, 76, 0.5);
}

.btn-outline::before {
    background: rgba(201, 168, 76, 0.12);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.btn-outline--dark {
    color: var(--jungle);
    border-color: rgba(26, 45, 31, 0.35);
}

.btn-outline--dark:hover {
    border-color: var(--jungle);
    color: var(--jungle);
}

.btn-gold {
    background: var(--gold);
    color: var(--jungle);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-gold::before {
    background: var(--gold-light);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-text {
    padding: 0;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition-fast), color var(--transition-fast);
    border-radius: 0;
}

.btn-text:hover {
    border-color: var(--gold);
}

/* Arrow icon in buttons */
.btn-arrow {
    display: inline-block;
    transition: transform var(--transition-fast);
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* === NAVIGATION === */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    transition: background var(--transition-med), box-shadow var(--transition-med), backdrop-filter var(--transition-med);
}

.nav.transparent {
    background: transparent;
}

.nav.scrolled {
    background: rgba(26, 45, 31, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.nav__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--gutter);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.nav__logo-name {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.02em;
}

.nav__logo-tagline {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 2px;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav__link {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    transition: color var(--transition-fast);
    padding-bottom: 2px;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform var(--transition-med);
    transform-origin: left;
}

.nav__link:hover {
    color: var(--gold);
}

.nav__link:hover::after,
.nav__link.active::after {
    transform: scaleX(1);
}

.nav__link.active {
    color: var(--gold);
}

.nav__cta {
    margin-left: 1rem;
}

.nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
}

.nav__hamburger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--white);
    transition: all var(--transition-med);
    transform-origin: center;
}

.nav__hamburger.open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.nav__hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav__hamburger.open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile menu */
.nav__mobile {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgb(26, 45, 31);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 2rem var(--gutter) 3rem;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform var(--transition-med), opacity var(--transition-med);
    z-index: 999;
    pointer-events: none;
}

.nav__mobile.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.nav__mobile-links {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.nav__mobile-link {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--cream);
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.nav__mobile-link:hover {
    color: var(--gold);
    padding-left: 0.5rem;
}

.nav__mobile-link:last-child {
    border-bottom: none;
}

.nav__mobile-cta {
    margin-top: 2rem;
}

/* === HERO === */
.hero {
    position: relative;
    min-height: 100svh;
    overflow-x: hidden;
    display: flex;
    align-items: center;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05);
    animation: heroScale 12s var(--ease-smooth) forwards;
}

@keyframes heroScale {
    to {
        transform: scale(1);
    }
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(26, 45, 31, 0.72) 0%,
            rgba(26, 45, 31, 0.45) 50%,
            rgba(26, 45, 31, 0.3) 100%);
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--gutter);
    padding-top: var(--nav-height);
    padding-bottom: 8rem;
    width: 100%;
}

.hero__kicker {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeSlideUp 0.8s 0.3s var(--ease-smooth) forwards;
}

.hero__title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 7vw, 6.5rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.06;
    letter-spacing: -0.02em;
    max-width: 14ch;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeSlideUp 0.9s 0.5s var(--ease-smooth) forwards;
}

.hero__title em {
    font-style: italic;
    color: var(--gold-pale);
}

.hero__subtitle {
    font-family: var(--font-sans);
    font-size: clamp(0.95rem, 1.4vw, 1.15rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.82);
    max-width: 48ch;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeSlideUp 0.9s 0.7s var(--ease-smooth) forwards;
}

.hero__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    opacity: 0;
    animation: fadeSlideUp 0.9s 0.9s var(--ease-smooth) forwards;
}

.hero__scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    opacity: 0;
    animation: fadeIn 1s 1.4s var(--ease-smooth) forwards;
}

.hero__scroll-label {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.hero__scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.4;
        transform: scaleY(1);
    }

    50% {
        opacity: 1;
        transform: scaleY(1.1);
    }
}

/* Hero stats bar */
.hero__stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    background: rgba(10, 20, 12, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(201, 168, 76, 0.2);
}

.hero__stats-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 0;
}

.hero__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.25rem 2rem;
    gap: 0.2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    flex: 1;
}

.hero__stat:last-child {
    border-right: none;
}

.hero__stat-value {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
}

.hero__stat-label {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

/* === ANIMATIONS === */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Scroll-triggered animations */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

[data-reveal="left"] {
    transform: translateX(-40px);
}

[data-reveal="right"] {
    transform: translateX(40px);
}

[data-reveal="scale"] {
    transform: scale(0.94) translateY(20px);
}

[data-reveal].revealed {
    opacity: 1;
    transform: none;
}

/* Staggered children */
[data-stagger]>* {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s var(--ease-smooth), transform 0.6s var(--ease-smooth);
}

[data-stagger].revealed>*:nth-child(1) {
    transition-delay: 0.05s;
}

[data-stagger].revealed>*:nth-child(2) {
    transition-delay: 0.15s;
}

[data-stagger].revealed>*:nth-child(3) {
    transition-delay: 0.25s;
}

[data-stagger].revealed>*:nth-child(4) {
    transition-delay: 0.35s;
}

[data-stagger].revealed>*:nth-child(5) {
    transition-delay: 0.45s;
}

[data-stagger].revealed>*:nth-child(6) {
    transition-delay: 0.55s;
}

[data-stagger].revealed>* {
    opacity: 1;
    transform: none;
}

/* === HIGHLIGHTS / FEATURE CARDS === */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition-med), box-shadow var(--transition-med);
    border: 1px solid rgba(201, 168, 76, 0.12);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-card__image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.feature-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.feature-card:hover .feature-card__image img {
    transform: scale(1.08);
}

.feature-card__body {
    padding: 1.75rem;
}

.feature-card__icon {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card__title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 0.6rem;
    color: var(--jungle);
}

.feature-card__text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* === SPLIT LAYOUT === */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
}

.split--reversed .split__content {
    order: 2;
}

.split--reversed .split__media {
    order: 1;
}

.split__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(3rem, 7vw, 6rem);
}

.split__media {
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.split__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform var(--transition-slow);
}

.split__media:hover img {
    transform: scale(1.03);
}

/* === GALLERY GRID === */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 260px;
    gap: 6px;
}

.gallery-item {
    overflow: hidden;
    cursor: pointer;
    position: relative;
    background: var(--jungle-mid);
}

.gallery-item--wide {
    grid-column: span 2;
}

.gallery-item--tall {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-smooth), filter 0.4s;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26, 45, 31, 0);
    transition: background var(--transition-med);
    z-index: 1;
}

.gallery-item:hover::after {
    background: rgba(26, 45, 31, 0.25);
}

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

.gallery-item__zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    z-index: 2;
    color: white;
    font-size: 1.8rem;
    opacity: 0;
    transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.gallery-item:hover .gallery-item__zoom {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* === LIGHTBOX === */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(5, 10, 6, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-med);
}

.lightbox.open {
    display: flex;
    opacity: 1;
}

.lightbox__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 2;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: background var(--transition-fast);
    line-height: 1;
}

.lightbox__close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox__content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox__img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-md);
}

.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 2rem;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    cursor: pointer;
    transition: background var(--transition-fast);
    z-index: 2;
    line-height: 1;
}

.lightbox__nav:hover {
    background: rgba(255, 255, 255, 0.25);
}

.lightbox__prev {
    left: -70px;
}

.lightbox__next {
    right: -70px;
}

.lightbox__counter {
    position: absolute;
    bottom: -2.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
}

/* === ACTIVITY CARDS === */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.activity-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition-med), border-color var(--transition-med), box-shadow var(--transition-med);
}

.activity-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 168, 76, 0.35);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.activity-card__img {
    height: 220px;
    overflow: hidden;
}

.activity-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: transform var(--transition-slow);
}

.activity-card:hover .activity-card__img img {
    transform: scale(1.07);
}

.activity-card__body {
    padding: 1.5rem;
}

.activity-card__emoji {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.activity-card__title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--gold-pale);
    margin-bottom: 0.5rem;
}

.activity-card__text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

/* === AMENITIES === */
.amenities-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    transition: border-color var(--transition-fast), background var(--transition-fast);
}

.amenity-item:hover {
    border-color: rgba(201, 168, 76, 0.25);
    background: rgba(201, 168, 76, 0.04);
}

.amenity-item__icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.amenity-item__text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.75);
}

/* === TESTIMONIALS === */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid rgba(201, 168, 76, 0.12);
    transition: box-shadow var(--transition-med), transform var(--transition-med);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-card__stars {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.testimonial-card__text {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-card__author {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.testimonial-card__location {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 2px;
}

/* === BOOKING SECTION === */
.booking-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.booking-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.booking-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.booking-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(26, 45, 31, 0.9) 40%, rgba(26, 45, 31, 0.5) 100%);
    z-index: 1;
}

.booking-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Booking section */
.booking-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: clamp(2rem, 5vw, 4rem);
    box-shadow: var(--shadow-lg);
    max-width: 680px;
    margin: 0 auto;
}

.booking-card .divider {
    background: var(--gold);
}

/* === CONTACT FORM === */
.contact-form {
    display: grid;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.875rem 1.25rem;
    background: var(--white);
    border: 1px solid rgba(26, 45, 31, 0.15);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 1rem; /* 16px prevents iOS zoom on focus */
    color: var(--text-dark);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    outline: none;
    box-sizing: border-box;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}

.form-textarea {
    min-height: 140px;
    resize: vertical;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-input[type="date"] {
    -webkit-appearance: none;
    appearance: none;
    min-height: 48px;
}

.form-select {
    -webkit-appearance: none;
    appearance: none;
    min-height: 48px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%23333' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.contact-form .form-group {
    margin-bottom: 1.25rem;
}

.contact-form .form-group:last-child {
    margin-bottom: 0;
}

/* === ABOUT PAGE === */
.value-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(201, 168, 76, 0.1);
    transition: box-shadow var(--transition-med), transform var(--transition-med);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.value-card__icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 76, 0.1);
    border-radius: var(--radius-md);
}

.value-card__content {}

.value-card__title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--jungle);
    margin-bottom: 0.5rem;
}

.value-card__text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* === LOCATION SECTION === */
.location-map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.location-map iframe {
    width: 100%;
    height: 480px;
    border: none;
    display: block;
}

/* === CTA BANNER === */
.cta-banner {
    position: relative;
    overflow: hidden;
    padding: clamp(4rem, 8vw, 8rem) 0;
    text-align: center;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.cta-banner__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-banner__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.cta-banner__content {
    position: relative;
    z-index: 1;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.cta-banner__title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 400;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.cta-banner__subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    max-width: 50ch;
    margin-left: auto;
    margin-right: auto;
}

/* === PAGE HERO (Sub-pages) === */
.page-hero {
    position: relative;
    height: 55vh;
    min-height: 420px;
    max-height: 680px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

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

.page-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.06);
    animation: heroScale 14s var(--ease-smooth) forwards;
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(26, 45, 31, 0.85) 0%,
            rgba(26, 45, 31, 0.4) 50%,
            rgba(26, 45, 31, 0.25) 100%);
}

.page-hero__content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--gutter) 3.5rem;
}

.page-hero__kicker {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.page-hero__title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.01em;
}

/* === FOOTER === */
.footer {
    background: var(--jungle);
    color: rgba(255, 255, 255, 0.75);
    padding: 5rem 0 2rem;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer__brand {}

.footer__logo {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.footer__tagline {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.footer__desc {
    font-size: 0.875rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    max-width: 30ch;
    margin-bottom: 1.5rem;
}

.footer__social {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.footer__social-link:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    transform: translateY(-2px);
}

.footer__social-link[href*="instagram"]:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
}

.footer__social-link[href*="tiktok"]:hover {
    background: #000;
    color: #fff;
}

.footer__social-link[href*="facebook"]:hover {
    background: #1877f2;
    color: #fff;
}



.footer__social-link svg {
    width: 20px;
    height: 20px;
}

.footer__col-title {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer__link {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition-fast), padding-left var(--transition-fast);
    display: block;
}

.footer__link:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer__contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.625rem;
}

.footer__contact-icon {
    color: var(--gold);
    font-size: 0.875rem;
    flex-shrink: 0;
}

.footer__bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer__copyright {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
}

.footer__bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer__bottom-link {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    transition: color var(--transition-fast);
}

.footer__bottom-link:hover {
    color: var(--gold);
}

/* === BEDROOM CARDS === */
.bedroom-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 0;
    margin-top: 0;
}

.bedroom-card {
    background: rgba(255, 255, 255, 0.04);
    border: none;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: background var(--transition-med);
}

.bedroom-card:last-child {
    border-right: none;
}

.bedroom-card:hover {
    background: rgba(255, 255, 255, 0.06);
}

.bedroom-card__icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.bedroom-card__title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--gold-pale);
    margin-bottom: 0.4rem;
}

.bedroom-card__detail {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* === PARALLAX IMAGE === */
.parallax-section {
    position: relative;
    height: 480px;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.parallax-section__img {
    position: absolute;
    top: -50%;
    left: 0;
    right: 0;
    width: 100%;
    height: 200%;
}

.parallax-section__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.parallax-section__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 45, 31, 0.6);
}

.parallax-section__text {
    text-align: center;
    color: white;
    max-width: 60ch;
    padding: 0 var(--gutter);
}

.parallax-section__quote {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.35;
    color: var(--cream);
}

/* === RESPONSIVE === */

/* --- Tablet landscape (1024px) --- */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-masonry {
        grid-template-columns: repeat(3, 1fr);
    }

    .bedroom-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .bedroom-card {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        border-right: none;
    }

    .bedroom-card:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.08);
    }

    .bedroom-card:nth-last-child(-n+2) {
        border-bottom: none;
    }

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

    .footer__brand {
        grid-column: span 2;
    }
}

/* --- Nav & activities breakpoint (900px) --- */
@media (max-width: 900px) {
    .nav__links,
    .nav__cta {
        display: none;
    }

    .nav__hamburger {
        display: flex;
    }

    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── Services Hook ─────────────────────── */
.services-hook {
    background: var(--cream, #f5f0e8);
    padding: 5rem 2rem;
    text-align: center;
}

.services-hook-inner {
    max-width: 900px;
    margin: 0 auto;
}

.services-hook h2 {
    margin-bottom: 1.25rem;
}

.services-hook p {
    max-width: 680px;
    margin: 0 auto 1rem;
    line-height: 1.7;
    color: var(--text, #2c2c2c);
}

.services-hook-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.service-card h4 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.service-card p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

.services-note {
    font-size: 0.82rem;
    opacity: 0.6;
    font-style: italic;
    margin-bottom: 2rem !important;
}

@media (max-width: 700px) {
    .services-hook-cards {
        grid-template-columns: 1fr;
    }
}

/* --- Expectation note --- */
.expectation-note {
    font-style: italic;
    opacity: 0.85;
    margin-top: 1.25rem;
    line-height: 1.7;
}

/* --- Mid-page CTA --- */
.mid-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    padding: 3rem 2rem;
    background: var(--cream, #f5f0e8);
}

@media (max-width: 600px) {
    .mid-cta {
        flex-direction: column;
    }
}

/* --- Species list --- */
.species-list {
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    opacity: 0.8;
    margin-top: 0.75rem;
}

/* --- Tablet portrait (768px) --- */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    :root {
        --nav-height: 68px;
    }

    /* Typography scaling */
    h1 {
        font-size: clamp(2rem, 7vw, 3.5rem);
    }

    h2 {
        font-size: clamp(1.5rem, 5vw, 2.5rem);
    }

    h3 {
        font-size: clamp(1.2rem, 4vw, 1.8rem);
    }

    p, li {
        font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    }

    .container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    /* Hero */
    .hero__title {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }

    .hero__subtitle {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
    }

    .hero__actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero__actions .btn {
        width: 100%;
        text-align: center;
    }

    .hero__content {
        padding-bottom: 12rem;
    }

    .hero__stats-inner {
        flex-wrap: wrap;
    }

    .hero__stat {
        flex: 0 0 50%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    /* Split layout */
    .split,
    .split--reversed {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: unset !important;
        width: 100% !important;
        overflow: hidden !important;
    }

    .split__media {
        width: 100% !important;
        height: 260px !important;
        min-height: 260px !important;
        max-height: 260px !important;
        overflow: hidden !important;
        flex-shrink: 0 !important;
        order: -1;
        aspect-ratio: unset;
    }

    .split__media img {
        width: 100% !important;
        height: 100% !important;
        max-width: none !important;
        max-height: none !important;
        object-fit: cover !important;
        object-position: center !important;
        display: block !important;
    }

    .split--reversed .split__content {
        order: 1;
    }

    .split--reversed .split__media {
        order: -1;
    }

    /* Feature cards */
    .features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Gallery grid */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }

    .gallery-item--wide {
        grid-column: span 2;
    }

    /* Gallery masonry */
    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-masonry .gallery-item {
        height: 250px;
    }

    .gallery-masonry img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    /* Photo collage (villa page) */
    .photo-collage {
        grid-template-columns: 1fr !important;
        height: auto !important;
        gap: 0.5rem !important;
    }

    .photo-collage .gallery-item {
        height: auto !important;
    }

    .photo-collage .gallery-item img {
        width: 100% !important;
        height: 220px !important;
        object-fit: cover !important;
        display: block !important;
    }

    .photo-collage__stack {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 0.5rem !important;
    }

    .photo-collage__stack .gallery-item {
        height: auto !important;
    }

    .photo-collage__stack .gallery-item img {
        width: 100% !important;
        height: 220px !important;
        object-fit: cover !important;
        display: block !important;
    }

    /* Room gallery & bedroom cards */
    .room-gallery {
        grid-template-columns: 1fr 1fr !important;
        gap: 0.5rem !important;
    }

    .room-gallery img {
        width: 100% !important;
        height: 180px !important;
        object-fit: cover !important;
        display: block !important;
    }

    /* Villa stat cards (4 Bedrooms / 8 Guests / Pool / Views) */
    .section--cream [data-stagger] {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 0.75rem !important;
        padding: 1rem !important;
    }

    .bedroom-cards {
        grid-template-columns: 1fr;
    }

    .bedroom-card {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding: 1.5rem;
    }

    .bedroom-card:last-child {
        border-bottom: none;
    }

    /* Values cards */
    [class*="values"] {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }

    /* CTA / Parallax */
    .cta-banner {
        padding: 3rem 1.5rem;
    }

    .parallax-section {
        height: 400px;
    }

    .parallax-section__img {
        position: absolute;
        top: 0 !important;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100% !important;
        transform: none !important;
    }

    .parallax-section__img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        transform: none !important;
    }

    .cta-banner__bg,
    .cta-banner__bg img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: none !important;
    }

    .parallax-section__quote {
        font-size: clamp(1.2rem, 4vw, 1.8rem);
        padding: 0 1.5rem;
    }

    /* Booking & Form */
    .booking-card {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
        width: 100%;
    }

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

    .contact-form button[type="submit"],
    .contact-form .btn {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
        margin-top: 1rem;
    }

    /* Split content padding */
    .split__content {
        padding: 2rem 1.25rem !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Photo strip — horizontal scroll carousel */
    .photo-strip {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        gap: 0.625rem !important;
        padding: 1rem 1.25rem 1.25rem !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        width: 100% !important;
        box-sizing: border-box !important;
        grid-template-columns: unset !important;
        height: auto !important;
        grid-template-rows: unset !important;
    }

    .photo-strip::-webkit-scrollbar {
        display: none !important;
    }

    .photo-strip > * {
        flex: 0 0 72vw !important;
        width: 72vw !important;
        max-width: 260px !important;
        height: 300px !important;
        min-height: 300px !important;
        overflow: hidden !important;
        border-radius: 0.5rem !important;
        scroll-snap-align: start !important;
        flex-shrink: 0 !important;
        display: block !important;
    }

    .photo-strip > * img,
    .photo-strip > img {
        width: 100% !important;
        height: 100% !important;
        max-width: none !important;
        max-height: none !important;
        object-fit: cover !important;
        display: block !important;
    }

    /* Stats grid (About page) */
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Lightbox */
    .lightbox__prev {
        left: -48px;
    }

    .lightbox__next {
        right: -48px;
    }

    /* Form */
    .form-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer__grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer__brand {
        grid-column: span 1;
    }

    .footer__social {
        justify-content: center;
    }

    .footer__social-link {
        width: 42px;
        height: 42px;
    }

    .footer__desc {
        text-align: center;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .footer__links {
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 0.5rem 1.25rem;
    }

    .footer__contact-item {
        justify-content: center;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .footer__copyright {
        text-align: center;
        width: 100%;
    }

    .footer__bottom-links {
        justify-content: center;
    }

    /* Site-wide text centering on mobile */
    .kicker {
        text-align: center;
    }

    .cta-banner__title,
    .cta-banner__subtitle {
        text-align: center;
    }

    .parallax-section__quote {
        text-align: center;
    }
}

/* --- Mobile (600px) --- */
@media (max-width: 600px) {
    .split__content {
        padding: 1.5rem 1.25rem;
    }
}

/* --- Mobile (480px) --- */
@media (max-width: 480px) {
    /* Gallery grid */
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
    }

    .gallery-item--wide {
        grid-column: span 1;
    }

    /* Gallery masonry */
    .gallery-masonry {
        grid-template-columns: 1fr;
    }

    .gallery-masonry .gallery-item {
        height: 280px;
    }

    /* Hero */
    .hero__title {
        font-size: clamp(2.4rem, 9vw, 3rem);
    }

    .hero__stats-inner {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .hero__stat {
        flex: 1 1 40%;
    }

    /* Activities */
    .activities-grid {
        grid-template-columns: 1fr;
    }

    .activity-card__img {
        height: 250px;
    }

    /* Room gallery */
    .room-gallery {
        grid-template-columns: 1fr;
    }

    .room-gallery .gallery-item {
        height: 250px;
    }

    /* Parallax */
    .parallax-section {
        height: 350px;
    }

    /* Buttons */
    .btn {
        width: 100%;
        text-align: center;
        padding-left: 1rem;
        padding-right: 1rem;
        font-size: 0.9rem;
    }

    /* Lightbox */
    .lightbox__nav {
        width: 44px;
        height: 44px;
        font-size: 1.4rem;
    }

    .lightbox__prev {
        left: -50px;
    }

    .lightbox__next {
        right: -50px;
    }

}

/* === BREADCRUMB === */
.breadcrumb {
    padding: 1.2rem 0;
    background: transparent;
}

.breadcrumb__list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.breadcrumb__sep {
    opacity: 0.4;
}

.breadcrumb__link {
    transition: color var(--transition-fast);
}

.breadcrumb__link:hover {
    color: var(--gold);
}

.breadcrumb__current {
    color: var(--gold);
    font-weight: 500;
}

/* === LOADING SPINNER === */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--jungle);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s, visibility 0.6s;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.page-loader__logo {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--gold);
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.02);
    }
}

/* === PHOTO STRIP (homepage) === */
.photo-strip {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 4px;
    height: 380px;
    overflow: hidden;
}

.photo-strip__item {
    overflow: hidden;
    position: relative;
}

.photo-strip__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.photo-strip__item:hover img {
    transform: scale(1.06);
}

/* Badge */
.badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--jungle);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}

/* Selection color */
::selection {
    background: var(--gold);
    color: var(--jungle);
}