:root {
    --forest: #1a2e1c;
    --moss: #2d4a2e;
    --mist: #f5f0e8;
    --gold: #c9a84c;
    --gold-light: #e8d5a3;
    --cream: #faf7f2;
    --bark: #7a6250;
    --white: #ffffff;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--forest);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
}

/* ─── NAVBAR ─── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 28px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s ease;
}

nav.scrolled {
    background: rgba(26, 46, 28, 0.97);
    padding: 18px 60px;
    backdrop-filter: blur(10px);
}

.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: white;
    letter-spacing: 3px;
    text-decoration: none;
    font-weight: 300;
}

.nav-logo span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-book {
    background: var(--gold);
    color: var(--forest) !important;
    padding: 10px 26px;
    border-radius: 2px;
    font-weight: 500 !important;
}

.nav-book:hover {
    background: var(--gold-light) !important;
    color: var(--forest) !important;
}

.nav-hamburger {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ─── USER DROPDOWN ─── */
.nav-user-dropdown {
    position: relative;
}

.user-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    transition: color 0.2s;
}

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

.user-dropdown-menu {
    position: absolute;
    top: 120%;
    right: 0;
    background: #ffffff;
    min-width: 190px;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
    padding: 10px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 9999;
}

.user-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown-menu li a,
.user-dropdown-menu li button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    width: 100%;
    background: none;
    border: none;
    text-decoration: none;
    color: #1a2e1c;
    font-size: 14px;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s ease;
}

.user-dropdown-menu li a:hover,
.user-dropdown-menu li button:hover {
    background: #f3f3f3;
}

/* ─── HERO ─── */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 20, 10, 0.5) 0%, rgba(10, 20, 10, 0.2) 40%, rgba(10, 20, 10, 0.6) 100%), url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1800') center/cover no-repeat;
    transform: scale(1.05);
    animation: slowZoom 20s ease infinite alternate;
}

@keyframes slowZoom {
    from {
        transform: scale(1.05);
    }

    to {
        transform: scale(1.12);
    }
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 20, 10, 0.5) 0%, rgba(10, 20, 10, 0.2) 40%, rgba(10, 20, 10, 0.6) 100%);
    z-index: 1;
}

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

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease;
    animation: slowZoom 20s ease infinite alternate;
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
    animation: fadeUp 1s ease 1.5s forwards;
    opacity: 0;
}

.hero-scroll::after {
    content: '';
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
    animation: scrollLine 1.5s ease infinite;
}

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

.hero-eyebrow {
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.3s forwards;
}

.hero-title {
    font-size: clamp(3.5rem, 8vw, 7rem);
    line-height: 1.05;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.5s forwards;
}

.hero-title em {
    font-style: italic;
    color: var(--gold-light);
}

.hero-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 480px;
    margin: 0 auto 40px;
    font-weight: 300;
    line-height: 1.7;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.7s forwards;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.9s forwards;
}

/* ─── BUTTONS ─── */
.btn-gold {
    background: var(--gold);
    color: var(--forest);
    padding: 16px 40px;
    border: none;
    border-radius: 2px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(201, 168, 76, 0.35);
}

.btn-outline-white {
    background: transparent;
    color: white;
    padding: 16px 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
}

/* ─── BOOKING BAR ─── */
.booking-bar {
    background: linear-gradient(135deg, #0d1a0e 0%, #1a2e1c 60%, #0d1a0e 100%);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.booking-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(201, 168, 76, 0.07) 0%, transparent 60%), radial-gradient(ellipse at 80% 50%, rgba(201, 168, 76, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.booking-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: shimmerLine 3s ease infinite;
}

@keyframes shimmerLine {
    0% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.4;
    }
}

.booking-bar-inner {
    display: flex;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.booking-field {
    flex: 1;
    padding: 22px 28px;
    border-right: 1px solid rgba(201, 168, 76, 0.15);
    position: relative;
    transition: background 0.3s;
}

.booking-field:hover {
    background: rgba(201, 168, 76, 0.04);
}

.booking-field label {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gold);
    font-size: 9.5px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 7px;
    font-weight: 600;
}

.booking-field label i {
    font-size: 11px;
    opacity: 0.8;
}

.booking-field input,
.booking-field select {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    cursor: pointer;
}

.booking-field input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.booking-field input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1) opacity(0.4);
    cursor: pointer;
}

.booking-field select option {
    background: #1a2e1c;
    color: white;
}

.booking-field:focus-within {
    background: rgba(201, 168, 76, 0.06);
}

.booking-field:focus-within label {
    color: var(--gold-light);
}

.booking-submit {
    background: var(--gold);
    border: none;
    padding: 0 44px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--forest);
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 10px;
}

.booking-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.booking-submit:hover::before {
    left: 100%;
}

.booking-submit:hover {
    background: var(--gold-light);
    box-shadow: inset 0 0 0 2px rgba(26, 46, 28, 0.2);
}

.booking-submit i {
    font-size: 14px;
}

/* ─── BOOKING ERROR ─── */
.booking-error {
    display: none;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #fca5a5;
    font-size: 12px;
    padding: 10px 20px;
    text-align: center;
    animation: shakeIn 0.4s ease;
}

@keyframes shakeIn {

    0%,
    100% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-6px);
    }

    40% {
        transform: translateX(6px);
    }

    60% {
        transform: translateX(-4px);
    }

    80% {
        transform: translateX(4px);
    }
}

/* ─── MEMBER BANNER ─── */
.member-banner {
    background: linear-gradient(135deg, #0a150b, #122018);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    overflow: hidden;
    position: relative;
    animation: bannerSlideDown 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes bannerSlideDown {
    from {
        max-height: 0;
        opacity: 0;
    }

    to {
        max-height: 200px;
        opacity: 1;
    }
}

.member-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.member-welcome {
    display: flex;
    align-items: center;
    gap: 14px;
}

.member-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a2e1c, #2d5a38);
    border: 2px solid rgba(201, 168, 76, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    flex-shrink: 0;
}

.member-text-main {
    font-size: 13.5px;
    font-weight: 600;
    color: white;
}

.member-text-main em {
    font-style: normal;
    color: var(--gold);
}

.member-text-sub {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 1px;
}

.member-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.member-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 99px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.chip-bookings {
    background: rgba(201, 168, 76, 0.12);
    color: var(--gold-light);
    border: 1px solid rgba(201, 168, 76, 0.25);
}

.chip-bookings:hover {
    background: rgba(201, 168, 76, 0.22);
    color: var(--gold);
    border-color: rgba(201, 168, 76, 0.5);
    transform: translateY(-1px);
}

.chip-profile {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.chip-profile:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateY(-1px);
}

.chip-logout {
    background: rgba(239, 68, 68, 0.08);
    color: rgba(248, 113, 113, 0.8);
    border: 1px solid rgba(239, 68, 68, 0.15);
}

.chip-logout:hover {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
    transform: translateY(-1px);
}

.pulse-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    position: relative;
    flex-shrink: 0;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.4;
    animation: pulse 1.8s ease infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }

    70% {
        transform: scale(2.2);
        opacity: 0;
    }

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

/* ─── GUEST TEASER STRIP ─── */
.guest-teaser {
    background: linear-gradient(90deg, rgba(201, 168, 76, 0.08), rgba(201, 168, 76, 0.03), rgba(201, 168, 76, 0.08));
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
    padding: 10px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.5);
    animation: fadeInStrip 0.8s ease forwards;
}

@keyframes fadeInStrip {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

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

.guest-teaser strong {
    color: black;
    font-weight: 600;
}

.guest-teaser a {
    color: black;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 1px solid rgba(201, 168, 76, 0.4);
    padding-bottom: 1px;
    transition: border-color 0.2s;
}

.guest-teaser a:hover {
    border-color: var(--gold);
}

.teaser-divider {
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, 0.15);
    margin: 0 4px;
}

/* ─── SECTIONS COMMON ─── */
section {
    padding: 100px 60px;
}

.section-eyebrow {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 16px;
    font-family: 'DM Sans', sans-serif;
}

.section-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.15;
    color: var(--forest);
    max-width: 600px;
}

.section-title em {
    font-style: italic;
    color: var(--bark);
}

/* ─── ABOUT ─── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 60px auto 0;
}

.about-img-stack {
    position: relative;
    height: 560px;
}

.about-img-stack img:first-child {
    width: 75%;
    height: 420px;
    object-fit: cover;
    border-radius: 4px;
    position: absolute;
    top: 0;
    left: 0;
}

.about-img-stack img:last-child {
    width: 55%;
    height: 280px;
    object-fit: cover;
    border-radius: 4px;
    position: absolute;
    bottom: 0;
    right: 0;
    border: 8px solid var(--cream);
}

.about-text p {
    color: var(--bark);
    line-height: 1.9;
    font-size: 1.05rem;
    margin-bottom: 24px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(26, 46, 28, 0.1);
}

.stat-item h3 {
    font-size: 2.8rem;
    color: var(--forest);
}

.stat-item p {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--bark);
    margin: 0;
}

/* ─── ROOMS ─── */
.rooms-section {
    background: var(--forest);
    padding: 100px 0 80px;
    overflow: hidden;
}

.rooms-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 60px;
    margin-bottom: 52px;
}

.rooms-header .section-title {
    color: white;
}

.rooms-header .section-eyebrow {
    color: var(--gold-light);
}

.rooms-view-all {
    color: var(--gold);
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid rgba(201, 168, 76, 0.4);
    padding-bottom: 3px;
    transition: border-color 0.2s;
    white-space: nowrap;
}

.rooms-view-all:hover {
    border-color: var(--gold);
    color: var(--gold-light);
}

.rooms-track-wrap {
    position: relative;
}

.rooms-track {
    display: flex;
    gap: 20px;
    padding: 0 60px 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
}

.rooms-track:active {
    cursor: grabbing;
}

.rooms-track::-webkit-scrollbar {
    display: none;
}

.room-tile {
    flex: 0 0 380px;
    height: 520px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    scroll-snap-align: start;
    transition: transform 0.4s ease;
}

.room-tile:hover {
    transform: scale(1.02);
}

.room-tile-img {
    position: absolute;
    inset: 0;
}

.room-tile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.room-tile-strip {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%) translateX(100%);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: var(--gold);
    color: var(--forest);
    padding: 24px 10px;
    text-decoration: none;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 10;
    border-radius: 4px 0 0 4px;
}

.room-tile:hover .room-tile-strip {
    transform: translateY(-50%) translateX(0);
}

.strip-text {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: 'DM Sans', sans-serif;
}

.strip-arrow {
    font-size: 14px;
    writing-mode: horizontal-tb;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--forest);
    color: var(--gold);
    border-radius: 50%;
    transition: transform 0.3s;
}

.room-tile-strip:hover .strip-arrow {
    transform: rotate(45deg);
}

.room-tile-dim {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(5, 15, 5, 0.05) 0%, rgba(5, 15, 5, 0.15) 40%, rgba(5, 15, 5, 0.88) 100%);
}

.room-tile-num {
    position: absolute;
    top: 20px;
    left: 24px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    color: rgba(255, 255, 255, 0.12);
    line-height: 1;
    font-weight: 300;
    pointer-events: none;
    transition: color 0.3s;
}

.room-tile:hover .room-tile-num {
    color: rgba(201, 168, 76, 0.25);
}

.room-tile-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 28px 32px;
}

.room-tile-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 10px;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
}

.available-dot {
    background: #4ade80;
    box-shadow: 0 0 6px #4ade80;
}

.booked-dot {
    background: #f87171;
}

.room-tile-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    color: white;
    line-height: 1.15;
    margin-bottom: 10px;
    font-weight: 400;
}

.room-tile-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    margin-bottom: 20px;
}

.room-tile-sep {
    opacity: 0.4;
}

.room-tile-price {
    color: var(--gold-light);
    font-size: 15px;
}

.room-tile-price small {
    font-size: 11px;
    opacity: 0.7;
    margin-left: 2px;
}

.room-tile-unavail {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.rooms-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    backdrop-filter: blur(8px);
    z-index: 10;
    font-size: 1rem;
}

.rooms-arrow:hover {
    background: var(--gold);
    color: var(--forest);
    border-color: var(--gold);
}

.rooms-arrow.left {
    left: 16px;
}

.rooms-arrow.right {
    right: 16px;
}

.rooms-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding-top: 32px;
}

.room-dot {
    width: 24px;
    height: 3px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.room-dot.active {
    width: 40px;
    background: var(--gold);
}

/* ─── AMENITIES ─── */
.amenities-section {
    background: var(--mist);
}

.amenities-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 70px;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.amenity-item {
    text-align: center;
    padding: 40px 24px;
    background: white;
    border-radius: 4px;
    transition: all 0.3s;
    border: 1px solid rgba(26, 46, 28, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 220px;
}

.amenity-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(26, 46, 28, 0.1);
}

.amenity-icon {
    width: 64px;
    height: 64px;
    background: var(--forest);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.amenity-icon i {
    font-size: 1.5rem;
    color: var(--gold);
}

.amenity-item h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--forest);
    margin-bottom: 8px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

.amenity-item p {
    font-size: 13px;
    color: var(--bark);
    line-height: 1.6;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    margin: 0;
}

/* ─── GALLERY ─── */
.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 220px 220px;
    gap: 12px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

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

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 20, 10, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-overlay i {
    color: white;
    font-size: 2rem;
}

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

/* ─── EVENTS ─── */
.events-section {
    background: var(--forest);
    color: white;
    padding: 100px 60px;
}

.events-section .section-eyebrow {
    color: var(--gold-light);
}

.events-section .section-title {
    color: white;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: 60px auto 0;
}

.event-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s;
}

.event-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.event-img {
    height: 220px;
    overflow: hidden;
}

.event-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.event-card:hover .event-img img {
    transform: scale(1.05);
}

.event-body {
    padding: 28px;
}

.event-tag {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    display: block;
}

.event-body h3 {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 12px;
}

.event-body p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

.event-footer {
    padding: 16px 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.event-footer span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* ─── TESTIMONIALS ─── */
.testimonials-section {
    background: var(--mist);
    text-align: center;
    padding-bottom: 80px;
}

.testimonials-header {
    max-width: 500px;
    margin: 0 auto 60px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    padding: 36px;
    border-radius: 4px;
    text-align: left;
    border: 1px solid rgba(26, 46, 28, 0.06);
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(26, 46, 28, 0.08);
}

.stars {
    color: var(--gold);
    font-size: 14px;
    margin-bottom: 20px;
}

.testimonial-card blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--forest);
    margin-bottom: 24px;
    border: none;
    padding: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--forest);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
}

.author-name {
    font-weight: 500;
    font-size: 14px;
}

.author-location {
    font-size: 12px;
    color: var(--bark);
}

/* ─── CONTACT ─── */
.contact-section {
    background: var(--cream);
    padding: 100px 60px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1100px;
    margin: 60px auto 0;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.contact-info p {
    color: var(--bark);
    line-height: 1.8;
    margin-bottom: 36px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: var(--forest);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--gold);
    font-size: 1rem;
}

.contact-detail-text strong {
    display: block;
    font-size: 14px;
    color: var(--forest);
    margin-bottom: 2px;
}

.contact-detail-text span {
    font-size: 14px;
    color: var(--bark);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid rgba(26, 46, 28, 0.15);
    border-radius: 2px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    background: white;
    outline: none;
    transition: border-color 0.2s;
    color: var(--forest);
    margin-bottom: 16px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
}

.contact-form textarea {
    height: 130px;
    resize: none;
}

/* ─── MAP ─── */
.map-section {
    height: 400px;
    position: relative;
    overflow: hidden;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(30%);
}

/* ─── FOOTER ─── */
footer {
    background: #0d1a0e;
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 60px 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: white;
    letter-spacing: 3px;
    margin-bottom: 20px;
    display: block;
}

.footer-logo span {
    color: var(--gold);
}

.footer-about {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 28px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    transition: all 0.3s;
    text-decoration: none;
}

.footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.footer-col h5 {
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    font-weight: 500;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 32px;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
    max-width: 1200px;
    margin: 0 auto;
}

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

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

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

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

/* ─── MOBILE MENU (slide-in sidebar) ─── */
.mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    background: var(--forest);
    z-index: 1001;
    padding: 80px 40px 40px;
    gap: 24px;
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.2s;
    width: 100%;
}

.mobile-menu a:hover {
    color: var(--gold);
}

.mobile-menu .btn-gold {
    margin-top: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: var(--gold);
    color: var(--forest) !important;
    padding: 12px 24px;
    border-radius: 2px;
    text-align: center;
}

.mobile-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1;
}

/* Backdrop when menu is open */
.mobile-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.mobile-backdrop.open {
    display: block;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 992px) {
    nav {
        padding: 20px 24px;
    }

    nav.scrolled {
        padding: 14px 24px;
    }

    .nav-links {
        display: none;
    }

    .nav-hamburger {
        display: block;
    }

    section {
        padding: 70px 24px;
    }

    .contact-section {
        padding: 70px 24px;
    }

    .events-section {
        padding: 70px 24px;
    }

    footer {
        padding: 60px 24px 30px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-img-stack {
        height: 380px;
    }

    .rooms-header {
        padding: 0 24px;
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .rooms-track {
        padding: 0 24px 20px;
        gap: 14px;
    }

    .room-tile {
        flex: 0 0 300px;
        height: 420px;
    }

    .rooms-arrow {
        display: none;
    }

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

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

    .gallery-masonry .tall {
        grid-row: span 1;
    }

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

    .gallery-item {
        height: 200px;
    }

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

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

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .booking-bar-inner {
        flex-direction: column;
    }

    .booking-field {
        border-right: none;
        border-bottom: 1px solid rgba(201, 168, 76, 0.12);
    }

    .booking-submit {
        padding: 18px;
        justify-content: center;
    }

    .member-banner-inner {
        padding: 12px 24px;
    }

    .guest-teaser {
        padding: 10px 24px;
        font-size: 11.5px;
    }

    .member-actions {
        gap: 8px;
    }
}



/* ================================================================
   CONTACT SECTION  —  Add these rules to your index.css
   Replace / override the existing .contact-section block
   ================================================================ */

/* ── Section wrapper ── */
.contact-section {
    background: var(--cream);          /* #faf7f2 — matches About section */
    padding: 110px 60px;
}

.contact-inner {
    max-width: 1100px;
    margin: 0 auto;
}

/* ── Header ── */
.contact-head {
    text-align: center;
    margin-bottom: 64px;
}

/* ── Two-panel card ── */
.contact-card {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 12px 56px rgba(26, 46, 28, 0.10);
}

/* ── Left: dark green info panel ── */
.contact-info {
    background: var(--forest);         /* #1a2e1c */
    padding: 56px 44px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* Subtle gold glow in the bottom-right corner */
.contact-info::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.10) 0%, transparent 70%);
    pointer-events: none;
}

.contact-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.85rem;
    font-weight: 400;
    color: white;
    line-height: 1.3;
    margin: 0 0 14px;
}

.contact-info > p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.50);
    line-height: 1.85;
    margin: 0 0 40px;
}

/* Override base .contact-detail for the new layout */
.contact-card .contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    margin-bottom: 0;                  /* remove old margin */
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-card .contact-detail:last-of-type {
    border-bottom: none;
}

/* Icon badge — overrides the base circle style */
.contact-card .contact-icon {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid rgba(201, 168, 76, 0.30);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, border-color 0.2s;
}

.contact-card .contact-icon i {
    color: var(--gold);
    font-size: 15px;
}

.contact-card .contact-detail:hover .contact-icon {
    background: rgba(201, 168, 76, 0.10);
    border-color: rgba(201, 168, 76, 0.55);
}

.contact-card .contact-detail-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.contact-card .contact-detail-text strong {
    display: block;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 0;
}

.contact-card .contact-detail-text span {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.55;
}

/* ── Right: white form panel ── */
.contact-form-panel {
    background: white;
    padding: 52px 52px;
}

.contact-form-panel h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--forest);
    margin: 0 0 32px;
}

/* Two-column row for Name + Email */
.cf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Field wrapper */
.cf-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
}

.cf-field label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--bark);
    font-family: 'DM Sans', sans-serif;
}

/* Inputs — override the old .contact-form styles */
.contact-form-panel input,
.contact-form-panel textarea {
    width: 100%;
    padding: 13px 15px;
    background: #faf8f4;
    border: 1.5px solid #e8e0d2;
    border-radius: 2px;
    color: var(--forest);
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s, background 0.2s;
    margin-bottom: 0;                  /* remove old bottom margin */
}

.contact-form-panel input::placeholder,
.contact-form-panel textarea::placeholder {
    color: #b5a99a;
}

.contact-form-panel input:focus,
.contact-form-panel textarea:focus {
    border-color: var(--gold);
    background: #fffdf7;
}

.contact-form-panel .cf-field.has-error input,
.contact-form-panel .cf-field.has-error textarea {
    border-color: #dc2626;
    background: #fff8f8;
}

.contact-form-panel textarea {
    resize: none;
    line-height: 1.7;
    height: auto;                      /* let rows attr control height */
}

.cf-error {
    font-size: 11px;
    color: #dc2626;
    min-height: 14px;
    font-family: 'DM Sans', sans-serif;
}

.cf-msg-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cf-char-count {
    font-size: 10px;
    color: #b5a99a;
    font-family: 'DM Sans', sans-serif;
}

/* Submit button */
.cf-submit {
    width: 100%;
    margin-top: 6px;
    padding: 15px 24px;
    background: var(--forest);
    border: none;
    color: var(--mist);
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    transition: color 0.3s, transform 0.15s;
}

/* Gold slide-up fill on hover */
.cf-submit::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: translateY(101%);
    transition: transform 0.3s ease;
    z-index: 0;
}

.cf-submit:hover::after  { transform: translateY(0); }
.cf-submit:hover         { color: var(--forest); }
.cf-submit:active        { transform: scale(0.98); }
.cf-submit span,
.cf-submit i             { position: relative; z-index: 1; }

/* ── Responsive ── */
@media (max-width: 960px) {
    .contact-card {
        grid-template-columns: 1fr;
    }
    .contact-form-panel,
    .contact-info {
        padding: 44px 32px;
    }
    .cf-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .contact-section {
        padding: 70px 20px;
    }
    .contact-form-panel,
    .contact-info {
        padding: 36px 20px;
    }
}


.kr-map-section { background: #f5f2eb; padding: 60px 0; }
.kr-map-container { max-width: auto; margin: 0 auto; padding: 0 24px; }
.kr-map-label { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; justify-content: center; }
.kr-map-label span { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: #8a7d5a; }
.kr-map-label::before, .kr-map-label::after { content: ''; width: 40px; height: 0.5px; background: #c8b98a; }
.kr-map-heading { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 400; color: #1a2e1a; margin: 0 0 40px; text-align: center; }
.kr-map-card { border-radius: 4px; overflow: hidden; border: 1px solid #d8cebc; }
.kr-map-top-bar, .kr-map-bottom-bar { background: #1a2e1a; padding: 16px 24px; display: flex; align-items: center; justify-content: space-between; }
.kr-pin-icon { width: 32px; height: 32px; border-radius: 50%; background: rgba(200,185,138,0.2); border: 1px solid rgba(200,185,138,0.4); display: flex; align-items: center; justify-content: center; }
.kr-map-place { display: flex; align-items: center; gap: 12px; }
.kr-place-name { font-family: 'Cormorant Garamond', serif; font-size: 17px; color: #f0ebe0; margin: 0; }
.kr-place-sub { font-size: 11px; color: #c8b98a; margin: 2px 0 0; letter-spacing: 1.5px; text-transform: uppercase; }
.kr-open-link { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: #c8b98a; text-decoration: none; border: 1px solid rgba(200,185,138,0.4); padding: 7px 14px; border-radius: 2px; }
.kr-open-link:hover { background: rgba(200,185,138,0.15); color: #f0ebe0; }
.kr-map-iframe-wrap { height: 400px; }
.kr-map-iframe-wrap iframe { width: 100%; height: 100%; border: none; display: block; }
.kr-coords-left { font-size: 12px; color: #c8b98a; }
.kr-coords-right { font-size: 11px; color: rgba(200,185,138,0.6); font-family: monospace; }


@media (max-width: 992px) {
    .kr-map-section { padding: 40px 0; }
    .kr-map-iframe-wrap { height: 280px; }
    .kr-map-top-bar { flex-direction: column; gap: 12px; align-items: flex-start; }
}