*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scrollbar-width: none;
}

*::-webkit-scrollbar {
    display: none;
}

:root {
    /* Match user pages color system */
    --navy-950: #060e1a;
    --navy-900: #0b1829;
    --navy-800: #112240;
    --navy-700: #1a3a5c;
    --navy-600: #1e4976;
    --navy-500: #2563a8;
    --navy-400: #3b82d4;
    --navy-300: #7db3e8;
    --navy-200: #bfdbf7;
    --navy-100: #e0eefa;
    --navy-50: #f0f7ff;
    --sand: #e8c882;
    --sand-dk: #c9a84c;
    --terra: #c0694a;
    --terra-lt: #faf0eb;
    --white: #ffffff;
    --off-white: #fafaf8;
    --ink: #0c1a2e;
    --ink-mid: #2d4057;
    --ink-soft: #5a7185;

    /* Existing landing tokens mapped to user palette */
    --blue-900: var(--navy-900);
    --blue-800: var(--navy-800);
    --blue-700: var(--navy-700);
    --blue-600: var(--navy-600);
    --blue-500: var(--navy-500);
    --blue-400: var(--navy-400);
    --blue-300: var(--navy-300);
    --blue-200: var(--navy-200);
    --blue-100: var(--navy-100);
    --blue-50: var(--navy-50);
    --gold: var(--sand);
    --gold-dk: var(--sand-dk);
    --text-dark: var(--ink);
    --text-mid: var(--ink-mid);
    --text-soft: var(--ink-soft);
    --radius: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 2px 8px rgba(11, 24, 41, .08);
    --shadow-md: 0 8px 32px rgba(11, 24, 41, .15);
    --shadow-lg: 0 20px 60px rgba(11, 24, 41, .22);
    --transition: 0.35s cubic-bezier(.4, 0, .2, 1);

    --bg-page: var(--blue-50);
    --bg-white: var(--white);
    --bg-dark: var(--blue-900);
    --accent: var(--gold);
    --accent-dk: var(--sand-dk);
    --text-body: var(--text-mid);
    --border: var(--blue-100);
    --shadow: rgba(11, 24, 41, .13);
    --shadow-heavy: rgba(11, 24, 41, .28);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Jost', sans-serif;
    background: var(--blue-50);
    color: var(--text-dark);
    overflow-x: hidden;
    /* add this */
    overflow-y: auto;
}

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

/* ═══════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════ */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5vw;
    background: rgba(239, 246, 255, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(37, 99, 196, 0.15);
    transition: box-shadow 0.35s;
}

header.scrolled {
    box-shadow: 0 4px 28px var(--shadow-md);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0.01em;
}

.logo-icon {
    width: 55px;
    height: 55px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-icon-2 {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-icon svg {
    width: 20px;
    height: 20px;

}

nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

nav a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-soft);
    text-decoration: none;
    letter-spacing: 0.04em;
    position: relative;
    transition: color 0.2s;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 100%;
    height: 1.5px;
    background: var(--gold);
    transition: right 0.3s;
}

nav a:hover {
    color: var(--text-dark);
}

nav a:hover::after {
    right: 0;
}

.btn-login-header {
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--white);
    background: var(--blue-500);
    border: none;
    padding: 10px 24px;
    border-radius: 40px;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(30, 80, 162, 0.35);
}

.btn-login-header:hover {
    background: var(--blue-600);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(30, 80, 162, 0.45);
}

/* ═══════════════════════════════════════════════
   LOGIN / SIGNUP MODAL
═══════════════════════════════════════════════ */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(10, 22, 40, 0.65);
    backdrop-filter: blur(6px);
    align-items: center;
    justify-content: center;
}

.modal-overlay.open {
    display: flex !important;
}

.modal-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    width: 100%;
    max-width: 420px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-lg);
    animation: fadeUp 0.35s ease both;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 18px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-soft);
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.modal-close:hover {
    color: var(--text-dark);
}

.modal-tabs {
    display: flex;
    gap: 0;
    background: var(--blue-50);
    border-radius: 40px;
    padding: 4px;
    margin-bottom: 28px;
}

.modal-tab {
    flex: 1;
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: none;
    padding: 9px;
    border-radius: 40px;
    cursor: pointer;
    background: none;
    color: var(--text-soft);
    transition: background 0.25s, color 0.25s;
}

.modal-tab.active {
    background: var(--blue-600);
    color: var(--white);
    box-shadow: 0 2px 10px rgba(26, 61, 124, 0.3);
}

.modal-form {
    display: none;
}

.modal-form.active {
    display: block;
}

.modal-header {
    text-align: center;
    margin-bottom: 24px;
}

.modal-logo-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--blue-700);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.modal-sub {
    font-size: 0.85rem;
    color: var(--text-soft);
}

.modal-field {
    margin-bottom: 16px;
}

.field-name-row {
    display: flex;
    gap: 16px;
    /* space between fields */
    flex-wrap: wrap;
    /* allows wrapping on small screens */
}

.modal-field {
    flex: 1;
    /* each field takes equal space */
    display: flex;
    flex-direction: column;
    /* label on top of input */
}

.field-phone-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    /* stacks on small screens */
}

.field-phone-row .modal-field {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.field-phone-row label {
    margin-bottom: 6px;
    font-weight: 500;
}

.field-phone-row input,
.field-phone-row select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
}

.modal-field label {
    margin-bottom: 6px;
    font-weight: 500;
}

.modal-field input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
}

.modal-field label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--text-mid);
    margin-bottom: 6px;
    text-transform: uppercase;
}

.modal-field input {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--blue-100);
    border-radius: var(--radius);
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    color: var(--text-dark);
    background: var(--blue-50);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.modal-field input:focus {
    border-color: var(--blue-400);
    box-shadow: 0 0 0 3px rgba(37, 99, 196, 0.12);
    background: var(--white);
}

.password-field-wrap {
    position: relative;
}

.password-field-wrap input {
    padding-right: 42px;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    color: var(--text-soft);
    cursor: pointer;
    padding: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.toggle-password:hover {
    color: var(--text-dark);
}

.toggle-password svg {
    width: 16px;
    height: 16px;
}

.modal-btn-primary {
    width: 100%;
    padding: 13px;
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--blue-900);
    background: var(--gold);
    border: none;
    border-radius: 40px;
    cursor: pointer;
    margin-top: 8px;
    box-shadow: 0 4px 16px rgba(232, 200, 122, 0.4);
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.modal-btn-primary:hover {
    background: var(--accent-dk);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(201, 160, 64, 0.45);
}

.modal-switch {
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-soft);
    margin-top: 16px;
}

.modal-switch a {
    color: var(--blue-500);
    font-weight: 600;
    text-decoration: none;
}

.modal-switch a:hover {
    text-decoration: underline;
}

/* ── Social login (Google / Facebook) ── */
.social-login-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    padding: 11px 14px;
    border-radius: var(--radius);
    border: 1.5px solid var(--blue-100);
    background: var(--white);
    color: var(--text-dark);
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn-social:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(11, 24, 41, .1);
}

.btn-social-google:hover {
    border-color: var(--blue-200);
}

.btn-social-facebook {
    background: #1877F2;
    border-color: #1877F2;
    color: #fff;
}

.btn-social-facebook:hover {
    background: #1465cf;
    border-color: #1465cf;
}

.social-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    margin-top: 20px;
    font-size: 0.74rem;
    color: var(--text-soft);
}

.social-divider::before,
.social-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--blue-100);
}

.btn-book-header {
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--blue-900);
    background: var(--gold);
    border: none;
    padding: 10px 24px;
    border-radius: 40px;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(232, 200, 122, 0.4);
}

.btn-book-header:hover {
    background: var(--accent-dk);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(201, 160, 64, 0.45);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.btn-account-header {
    display: none;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(12, 26, 46, 0.06);
    color: var(--ink);
    border: 1px solid rgba(12, 26, 46, 0.12);
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, border-color 0.2s;
}

.btn-account-header svg {
    width: 19px;
    height: 19px;
}

.btn-account-header:hover {
    background: rgba(12, 26, 46, 0.1);
    border-color: rgba(12, 26, 46, 0.2);
    transform: translateY(-1px);
}

.hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--text-dark);
    transition: transform 0.3s, opacity 0.3s;
}

/* Mobile Nav */
.mobile-nav {
    display: flex;
    /* keep flex, remove display:none toggle */
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--blue-50);
    padding: 1.5rem 5vw 2rem;
    border-bottom: 1px solid var(--blue-100);
    flex-direction: column;
    gap: 0.7rem;
    z-index: 199;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    /* ADD THIS */
    transition: transform 0.3s, opacity 0.3s;
}

.mobile-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    /* ADD THIS */
}

.mobile-nav a {
    font-size: 1rem;
    color: var(--text-soft);
    text-decoration: none;
    font-weight: 500;
}

.mobile-nav .btn-login-header {
    display: block;
    width: calc(100% - 32px);
    /* full width minus padding */
    margin: 10px 16px;
    padding: 12px;
    background-color: var(--blue-500);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
}

/* ═══════════════════════════════════════════════
   HERO + CAROUSEL
═══════════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 100px 5vw 60px;
    gap: 3.5rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 70% at 100% 50%, rgba(37, 99, 196, 0.15) 0%, transparent 70%),
        radial-gradient(ellipse 40% 50% at 0% 80%, rgba(59, 130, 246, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero-text {
    position: relative;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.4rem;
    animation: fadeUp 0.6s 0.1s both;
}

.eyebrow-line {
    width: 28px;
    height: 1.5px;
    background: var(--gold);
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.6rem, 4.5vw, 4rem);
    font-weight: 700;
    line-height: 1.12;
    color: var(--text-dark);
    margin-bottom: 1.4rem;
    animation: fadeUp 0.6s 0.2s both;
}

.hero h1 em {
    font-style: italic;
    color: var(--terra);
}

.hero-desc {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--text-body);
    max-width: 440px;
    margin-bottom: 2rem;
    animation: fadeUp 0.6s 0.3s both;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    animation: fadeUp 0.6s 0.4s both;
}

.hero-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--terra);
    line-height: 1;
}

.hero-stat-lbl {
    font-size: 0.72rem;
    color: var(--text-soft);
    letter-spacing: 0.05em;
    margin-top: 2px;
}

/* ── ROOM CAROUSEL ───────────────────────────── */
.hero-carousel {
    position: relative;
    animation: fadeUp 0.8s 0.3s both;
}

.carousel-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(10, 22, 40, .28);
    aspect-ratio: 4/3;
    background: var(--blue-100);
}

.carousel-slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.7s cubic-bezier(0.77, 0, 0.18, 1);
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    image-orientation: from-image;
}

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

.carousel-slide.active .room-img {
    transform: scale(1.04);
}

/* Room SVG backgrounds — updated to blue palette */
.room-1 {
    background: linear-gradient(145deg, var(--blue-200) 0%, var(--blue-400) 40%, var(--blue-700) 100%);
}

.room-2 {
    background: linear-gradient(145deg, var(--blue-100) 0%, var(--blue-300) 40%, var(--blue-600) 100%);
}

.room-3 {
    background: linear-gradient(145deg, var(--blue-200) 0%, var(--blue-500) 40%, var(--blue-800) 100%);
}

.room-4 {
    background: linear-gradient(145deg, var(--blue-100) 0%, var(--blue-400) 40%, var(--blue-700) 100%);
}

.room-5 {
    background: linear-gradient(145deg, #c8d8f0 0%, var(--blue-300) 40%, var(--blue-600) 100%);
}

.room-scene {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 0;
}

.room-scene svg {
    width: 100%;
    height: 100%;
}

.carousel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.65) 0%, transparent 50%);
}

.carousel-label {
    position: absolute;
    bottom: 20px;
    left: 24px;
    color: #fff;
}

.carousel-label-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 2px;
}

.carousel-label-type {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    opacity: 0.75;
    text-transform: uppercase;
}

/* Carousel Controls */
.carousel-controls {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    pointer-events: none;   /* let clicks pass through to image */
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(11, 24, 41, 0.45);
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    color: #fff;
    pointer-events: auto;   /* re-enable clicks on the buttons */
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: rgba(201, 170, 113, 0.55);
    transform: scale(1.08);
}

.carousel-btn svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5;
}

/* Dots */
.carousel-dots {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-top: 14px;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue-200);
    cursor: pointer;
    transition: background 0.3s, width 0.3s;
}

.dot.active {
    background: var(--gold);
    width: 22px;
    border-radius: 3px;
}

/* Thumbnail strip */
.carousel-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    justify-content: center;
}

.thumb {
    flex: 1 1 100px;
    min-width: 80px;
    max-width: 160px;
    height: 64px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    border: 2px solid transparent;
    transition: border-color 0.25s, opacity 0.25s;
    opacity: 0.5;
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    image-orientation: from-image;
    display: block;
}

.thumb.active {
    border-color: var(--gold);
    opacity: 1;
}

.thumb-bg {
    width: 100%;
    height: 100%;
}

.thumb-1 {
    background: linear-gradient(135deg, var(--blue-200), var(--blue-500));
}

.thumb-2 {
    background: linear-gradient(135deg, var(--blue-100), var(--blue-400));
}

.thumb-3 {
    background: linear-gradient(135deg, var(--blue-200), var(--blue-600));
}

.thumb-4 {
    background: linear-gradient(135deg, var(--blue-100), var(--blue-500));
}

.thumb-5 {
    background: linear-gradient(135deg, #c8d8f0, var(--blue-400));
}

/* ═══════════════════════════════════════════════
   ABOUT US
═══════════════════════════════════════════════ */
.about {
    padding: 110px 5vw;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 196, 0.25), transparent);
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.about-visual {
    position: relative;
}

.about-img-main {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(160deg, var(--blue-200) 0%, var(--blue-500) 50%, var(--blue-800) 100%);
    box-shadow: 0 32px 70px rgba(10, 22, 40, .22);
    position: relative;
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* fills container while keeping aspect ratio */
    display: block;
}

.about-img-main svg {
    width: 100%;
    height: 100%;
}

.about-img-accent {
    position: absolute;
    bottom: -28px;
    right: -28px;
    width: 54%;
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--blue-300) 0%, var(--blue-600) 100%);
    border: 5px solid var(--white);
    box-shadow: 0 16px 40px rgba(10, 22, 40, .15);
}

.about-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* fill the container while maintaining aspect ratio */
    display: block;
}

.about-badge {
    position: absolute;
    top: 24px;
    left: -20px;
    background: var(--white);
    border-radius: 14px;
    padding: 14px 18px;
    box-shadow: 0 8px 30px rgba(10, 22, 40, .13);
    text-align: center;
    min-width: 110px;
}

.badge-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-dk);
    line-height: 1;
}

.badge-lbl {
    font-size: 0.7rem;
    color: var(--text-soft);
    letter-spacing: 0.05em;
    margin-top: 3px;
}

.eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.eyebrow::before {
    content: '';
    width: 24px;
    height: 1.5px;
    background: var(--gold);
}

.section-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
}

.section-heading em {
    font-style: italic;
    color: var(--terra);
}

.body-text {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-body);
    line-height: 1.9;
    margin-bottom: 1.2rem;
}

.about-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.pillar {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: var(--blue-50);
    border-radius: 12px;
    border: 1px solid var(--blue-100);
    transition: box-shadow 0.2s;
}

.pillar:hover {
    box-shadow: 0 6px 20px rgba(10, 22, 40, .1);
}

.pillar-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--blue-700);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pillar-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.8;
}

.pillar-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.pillar-desc {
    font-size: 0.78rem;
    font-weight: 300;
    color: var(--text-soft);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════
   FEATURED ROOMS
═══════════════════════════════════════════════ */
.rooms {
    padding: 110px 8vw;
    background: var(--blue-50);
}

.rooms-header {
    text-align: center;
    margin-bottom: 60px;
}

.rooms-header .section-heading {
    max-width: 500px;
    margin: 0.8rem auto 0;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1500px;
    margin: 0 auto;
}

.room-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--blue-100);
    transition: transform 0.35s, box-shadow 0.35s;
    cursor: pointer;
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(10, 22, 40, .18);
}

.room-card-img {
    aspect-ratio: 4/3;
    position: relative;
    overflow: hidden;
}

.room-card-img-bg {
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
}

.room-card-img-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

.r-img-1 {
    background: linear-gradient(145deg, var(--blue-200) 0%, var(--blue-400) 50%, var(--blue-700) 100%);
}

.r-img-2 {
    background: linear-gradient(145deg, var(--blue-100) 0%, var(--blue-300) 50%, var(--blue-600) 100%);
}

.r-img-3 {
    background: linear-gradient(145deg, #b8d4f0 0%, var(--blue-400) 50%, var(--blue-800) 100%);
}

.r-img-4 {
    background: linear-gradient(145deg, var(--blue-100) 0%, var(--blue-300) 50%, var(--blue-600) 100%);
}

.r-img-5 {
    background: linear-gradient(145deg, #c8d8f0 0%, var(--blue-400) 50%, var(--blue-700) 100%);
}

.r-img-6 {
    background: linear-gradient(145deg, var(--blue-200) 0%, var(--blue-500) 50%, var(--blue-900) 100%);
}

.room-card-img-bg svg {
    width: 100%;
    height: 100%;
}

.room-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--gold);
    color: var(--blue-900);
    padding: 4px 10px;
    border-radius: 20px;
}

.room-badge.new {
    background: var(--blue-300);
    color: var(--white);
}

.room-badge.popular {
    background: var(--blue-600);
    color: var(--white);
}

.room-card-body {
    padding: 20px 22px 24px;
}

.room-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.room-meta {
    font-size: 0.78rem;
    color: var(--text-soft);
    display: flex;
    gap: 14px;
    margin-bottom: 14px;
}

.room-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.room-meta svg {
    width: 12px;
    height: 12px;
    stroke: var(--blue-400);
    fill: none;
    stroke-width: 2;
}

.room-divider {
    height: 1px;
    background: var(--blue-100);
    margin-bottom: 14px;
}

.room-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.room-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
}

.room-price sub {
    font-size: 0.65rem;
    font-family: 'Jost';
    font-weight: 400;
    color: var(--text-soft);
}

.btn-room {
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-dark);
    background: var(--blue-50);
    border: 1.5px solid var(--blue-100);
    padding: 8px 16px;
    border-radius: 40px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.btn-room:hover {
    background: var(--blue-700);
    border-color: var(--blue-700);
    color: var(--white);
}

/* Landing room preview modal */
.room-preview-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(10, 22, 40, 0.65);
    backdrop-filter: blur(6px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.room-preview-overlay.open {
    display: flex;
}

.room-preview-box {
    width: 100%;
    max-width: 760px;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.room-preview-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: rgba(10, 22, 40, 0.08);
    color: #334155;
    font-size: 1.3rem;
    cursor: pointer;
}

.room-preview-media {
    height: 300px;
    background: var(--blue-100);
}

.room-preview-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-preview-body {
    padding: 22px 24px 24px;
}

.room-preview-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.room-preview-type,
.room-preview-location {
    font-size: 0.82rem;
    color: var(--text-soft);
}

.room-preview-desc {
    margin-top: 12px;
    font-size: 0.92rem;
    color: var(--text-mid);
    line-height: 1.7;
}

.room-preview-amenities {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.room-preview-chip {
    font-size: 0.72rem;
    padding: 5px 10px;
    border-radius: 999px;
    background: var(--blue-50);
    border: 1px solid var(--blue-100);
    color: var(--text-soft);
}

.room-preview-footer {
    margin-top: 16px;
    border-top: 1px solid var(--blue-100);
    padding-top: 14px;
}

.room-preview-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 700;
}

/* ═══════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════ */
.testimonials {
    padding: 110px 5vw;
    background: var(--blue-900);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(232, 200, 122, 0.12) 0%, transparent 70%);
}

.testimonials::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.testimonials-header .eyebrow {
    justify-content: center;
}

.testimonials-header .eyebrow::before {
    display: none;
}

.testimonials-header .section-heading {
    color: var(--white);
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
}

/* ── Mobile review swiper ── */
.testi-swiper-wrap {
    display: none;
    position: relative;
    z-index: 1;
    max-width: 480px;
    margin: 0 auto;
}

.testi-swiper-track {
    overflow: hidden;
    border-radius: 20px;
}

.testi-swiper-inner {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.testi-swiper-inner .testi-card {
    flex: 0 0 100%;
    min-width: 0;
    box-sizing: border-box;
}

.testi-swiper-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 20px;
}

.testi-swiper-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    flex-shrink: 0;
}

.testi-swiper-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.testi-swiper-btn svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5;
}

.testi-swiper-dots {
    display: flex;
    gap: 6px;
    align-items: center;
}

.testi-swiper-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: background 0.3s, width 0.3s;
}

.testi-swiper-dot.active {
    background: var(--gold);
    width: 20px;
    border-radius: 3px;
}

.testi-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px 28px;
    transition: background 0.3s, transform 0.3s;
    position: relative;
}

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

.testi-quote-icon {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    line-height: 1;
    color: var(--gold);
    opacity: 0.5;
    margin-bottom: -10px;
    display: block;
}

.testi-text {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--blue-900);
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
}

.testi-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testi-avatar-initials {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.av-1 {
    background: linear-gradient(135deg, var(--gold), var(--accent-dk));
}

.av-2 {
    background: linear-gradient(135deg, var(--blue-200), var(--blue-400));
}

.av-3 {
    background: linear-gradient(135deg, var(--blue-300), var(--blue-600));
}

.av-4 {
    background: linear-gradient(135deg, var(--blue-200), var(--blue-500));
}

.av-5 {
    background: linear-gradient(135deg, var(--gold), var(--blue-300));
}

.av-6 {
    background: linear-gradient(135deg, var(--blue-100), var(--blue-400));
}

.testi-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--white);
}

.testi-location {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 1px;
}

.testi-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 1rem;
}

.testi-stars svg {
    width: 14px;
    height: 14px;
    fill: var(--gold);
}

.testi-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 36px 24px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════
   TAGLINE / CTA
═══════════════════════════════════════════════ */
.cta-section {
    padding: 120px 5vw;
    background: var(--blue-50);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 60% at 50% 100%, rgba(37, 99, 196, 0.1) 0%, transparent 70%);
}

.cta-eyebrow {
    justify-content: center;
}

.cta-eyebrow::before {
    display: none;
}

.cta-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-dark);
    margin: 1rem auto 1.5rem;
    max-width: 700px;
    position: relative;
}

.cta-heading em {
    font-style: italic;
    color: var(--terra);
}

.cta-sub {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-soft);
    max-width: 520px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    position: relative;
}

.btn-book-big {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--blue-900);
    background: var(--gold);
    border: none;
    padding: 18px 44px;
    border-radius: 60px;
    cursor: pointer;
    position: relative;
    box-shadow: 0 8px 32px rgba(232, 200, 122, 0.45);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-book-big:hover {
    background: var(--accent-dk);
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(201, 160, 64, 0.5);
}

.btn-book-big svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5;
    transition: transform 0.2s;
}

.btn-book-big:hover svg {
    transform: translateX(4px);
}

.cta-note {
    font-size: 0.78rem;
    color: var(--text-soft);
    margin-top: 1.2rem;
    opacity: 0.7;
    position: relative;
}

/* Decorative dot pattern behind CTA */
.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(37, 99, 196, 0.07) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
footer {
    background: var(--blue-900);
    color: rgba(219, 234, 254, 0.65);
    padding: 70px 5vw 36px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 3rem;
    margin-bottom: 56px;
}

.footer-brand .logo {
    color: var(--blue-100);
    margin-bottom: 1rem;
}

.footer-brand .logo-icon {
    background: var(--gold);
}

.footer-brand .logo-icon svg {
    fill: var(--blue-900);
}

.footer-brand p {
    font-size: 0.875rem;
    font-weight: 300;
    line-height: 1.8;
    max-width: 260px;
    margin-bottom: 1.5rem;
}

.social-row {
    display: flex;
    gap: 10px;
}

.soc {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(219, 234, 254, 0.07);
    border: 1px solid rgba(219, 234, 254, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: rgba(219, 234, 254, 0.5);
    transition: background 0.2s, color 0.2s;
}

.soc:hover {
    background: var(--gold);
    color: var(--blue-900);
    border-color: var(--gold);
}

.soc svg {
    width: 15px;
    height: 15px;
}

.footer-col h5 {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--blue-100);
    margin-bottom: 1.2rem;
    letter-spacing: 0.02em;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.65rem;
}

.footer-links a {
    font-size: 0.875rem;
    font-weight: 300;
    color: rgba(219, 234, 254, 0.45);
    text-decoration: none;
    transition: color 0.2s;
}

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

.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 0.9rem;
    font-size: 0.875rem;
    font-weight: 300;
    line-height: 1.6;
}

.contact-row svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    margin-top: 3px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 2;
}

.footer-bottom {
    border-top: 1px solid rgba(219, 234, 254, 0.1);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.78rem;
    color: rgba(219, 234, 254, 0.3);
}

.footer-policy-links {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-policy-link {
    color: rgba(219, 234, 254, 0.45);
    text-decoration: none;
    transition: color 0.2s;
}

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

.policy-link {
    color: inherit;
    text-decoration: underline;
    text-decoration-color: rgba(219, 234, 254, 0.35);
    text-underline-offset: 2px;
}

.signup-consent {
    margin: 12px 0 8px;
    padding: 10px 12px;
    border: 1px solid var(--blue-100);
    border-radius: 10px;
    background: var(--blue-50);
}

.signup-consent-row {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 0.77rem;
    color: var(--text-mid);
    line-height: 1.5;
}

.signup-consent-row input {
    margin-top: 2px;
}

.signup-consent .policy-link {
    color: var(--blue-700);
    text-decoration-color: rgba(26, 58, 92, 0.35);
}

.signup-consent .policy-link:hover {
    color: var(--gold-dk);
}

.signup-consent-alert {
    display: none;
    margin-top: 6px;
    color: #dc2626;
    font-size: 0.72rem;
}

.policy-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1100;
    background: rgba(6, 14, 26, 0.62);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.policy-modal-overlay.open {
    display: flex;
}

.policy-modal-box {
    width: 100%;
    max-width: 720px;
    max-height: 85vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(6, 14, 26, 0.35);
    position: relative;
    animation: policyModalPop .22s cubic-bezier(.4, 0, .2, 1) both;
}

@keyframes policyModalPop {
    from {
        opacity: 0;
        transform: translateY(12px) scale(.98);
    }

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

.policy-modal-head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 26px 56px 22px 28px;
    background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
    border-radius: 20px 20px 0 0;
    position: sticky;
    top: 0;
    z-index: 1;
}

.policy-modal-head-icon {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: rgba(232, 200, 130, .16);
    border: 1px solid rgba(232, 200, 130, .38);
    color: var(--sand);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.policy-modal-head-text {
    min-width: 0;
}

.policy-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 32px;
    height: 32px;
    border-radius: 9px;
    border: none;
    background: rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .8);
    font-size: 1.4rem;
    cursor: pointer;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s, color .15s;
}

.policy-modal-close:hover {
    background: rgba(255, 255, 255, .18);
    color: #fff;
}

.policy-modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #fff;
    margin: 2px 0 4px;
    line-height: 1.25;
}

.policy-modal-meta {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, .6);
    letter-spacing: .01em;
}

.policy-modal-content {
    color: var(--ink-mid);
    font-size: 0.9rem;
    line-height: 1.75;
    padding: 24px 28px 30px;
}

.policy-modal-item {
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--navy-50);
}

.policy-modal-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.policy-modal-content h4 {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.policy-modal-item-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--navy-700);
    color: var(--sand);
    font-size: 0.72rem;
    font-weight: 700;
    flex-shrink: 0;
}

.policy-modal-content p {
    margin: 0;
    padding-left: 32px;
}

.policy-modal-content ul {
    margin: 0 0 8px 18px;
}

/* Scrollbar */
.policy-modal-box::-webkit-scrollbar {
    width: 8px;
}

.policy-modal-box::-webkit-scrollbar-thumb {
    background: var(--navy-100);
    border-radius: 8px;
}

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

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

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.75s, transform 0.75s;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */

/* ── Large tablet / small laptop ── */
@media (max-width: 1024px) {
    header {
        padding: 0 3vw;
    }

    .logo {
        font-size: 1.15rem;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
    }

    nav a {
        font-size: 0.78rem;
        margin: 0 0.4rem;
    }

    .btn-login-header,
    .btn-book-header {
        font-size: 0.75rem;
        padding: 8px 16px;
        letter-spacing: 0.04em;
    }

    .hero {
        grid-template-columns: 1fr 1fr;
        min-height: auto;
        padding: 90px 4vw 60px;
        gap: 2rem;
        align-items: start;
    }

    .about-inner {
        gap: 3.5rem;
    }

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

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

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

/* ── Medium tablet ── */
@media (max-width: 820px) {
    .hero {
        grid-template-columns: 1fr !important;
        overflow: hidden;
        width: 100%;
    }

    .hero-text {
        width: 100%;
        min-width: 0;
        overflow: hidden;
    }

    .hero-desc {
        padding: 0;
        max-width: 100%;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .hero h1 {
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .hero-carousel {
        width: 100%;
        min-width: 0;
        overflow: hidden;
    }

    .carousel-thumbs {
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding-bottom: 4px;
        width: 100%;
    }

    .thumb {
        flex: 0 0 80px;
        width: 80px;
        height: 52px;
    }

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

    .about-visual {
        max-width: 420px;
        margin: 0 auto;
        padding-right: 28px;
        padding-bottom: 28px;
    }

    .about-badge {
        left: -10px;
    }

    .about-pillars {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .btn-account-header {
        display: flex;
    }

    .mobile-nav {
        display: flex;
    }

    .btn-book-header {
        display: none;
    }

    .btn-login-header {
        display: none;
    }

    .hero {
        padding-top: 100px;
        padding-bottom: 30px;
        gap: 2rem;
    }

    .hero h1 {
        font-size: clamp(2rem, 8vw, 2.6rem);
        margin-bottom: 1rem;
    }

    .hero-desc {
        font-size: 0.95rem;
        max-width: 100%;
        padding: 0 1rem;
    }

    .rooms {
        padding: 70px 0;
    }

    .rooms-header {
        padding: 0 1.2rem;
    }

    .rooms-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 1rem;
        max-width: 100%;
        margin: 0;
        padding: 0 1.2rem 1rem;
    }

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

    .rooms-grid .room-card {
        scroll-snap-align: center;
        flex: 0 0 82%;
        max-width: 340px;
    }

    .testi-grid {
        display: none;
    }

    .testi-swiper-wrap {
        display: block;
    }

    .about-pillars {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .pillar {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
        padding: 12px;
    }

    .pillar-icon {
        width: 32px;
        height: 32px;
        border-radius: 8px;
    }

    .pillar-icon svg {
        width: 15px;
        height: 15px;
    }

    .pillar-title {
        font-size: 0.78rem;
    }

    .pillar-desc {
        font-size: 0.72rem;
    }

    .testi-swiper-wrap {
        display: block;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem 2rem;
        margin-bottom: 32px;
    }

    /* Brand spans full width on mobile */
    .footer-grid > .footer-brand {
        grid-column: 1 / -1;
    }

    footer {
        padding: 40px 5vw 24px;
    }

    .footer-brand p {
        max-width: 100%;
        font-size: 0.82rem;
        margin-bottom: 1rem;
    }

    .footer-col h5 {
        font-size: 0.88rem;
        margin-bottom: 0.75rem;
    }

    .footer-links li { margin-bottom: 0.45rem; }
    .footer-links a  { font-size: 0.82rem; }
    .contact-row     { font-size: 0.82rem; margin-bottom: 0.65rem; }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding-top: 20px;
        gap: 0.5rem;
    }

    .footer-bottom p,
    .footer-policy-links { font-size: 0.72rem; }
}

/* ── Small mobile devices (phones) ── */
@media (max-width: 500px) {
    .hero {
        padding: 90px 5vw 30px;
        gap: 1.5rem;
    }

    .hero h1 {
        font-size: clamp(1.75rem, 7vw, 2.2rem);
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }

    .hero-eyebrow {
        font-size: 0.65rem;
        margin-bottom: 1rem;
    }

    .hero-desc {
        font-size: 0.88rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
        padding: 0;
    }

    .hero-stats {
        gap: 1.2rem;
        flex-wrap: wrap;
    }

    .hero-stat-num {
        font-size: 1.5rem;
    }

    .hero-stat-lbl {
        font-size: 0.68rem;
    }

    .hero-carousel {
        max-width: 100%;
    }

    .carousel-frame {
        border-radius: 16px;
    }

    .about-img-accent {
        display: none;
    }

    .about-visual {
        padding-right: 0;
        padding-bottom: 0;
    }

    .modal-box {
        padding: 28px 32px;
        max-height: 92vh;
    }

    .modal-overlay {
        padding: 0 14px;
    }
}

/* ── Extra small devices (iPhone SE, smaller phones) ── */
@media (max-width: 380px) {
    .hero {
        padding: 85px 4vw 25px;
    }

    .hero h1 {
        font-size: 1.6rem;
        line-height: 1.15;
    }

    .hero-desc {
        font-size: 0.85rem;
        line-height: 1.65;
    }

    .hero-stats {
        gap: 1rem;
    }

    .hero-stat-num {
        font-size: 1.3rem;
    }

    .hero-stat-lbl {
        font-size: 0.65rem;
    }

    .carousel-label-name {
        font-size: 1rem;
    }

    .carousel-label-type {
        font-size: 0.7rem;
    }

    .modal-box {
        padding: 24px 10px;
    }
}

.phone-input-wrap {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--border, #dde3ee);
    border-radius: var(--radius, 10px);
    background: var(--white, #fff);
    overflow: hidden;
    transition: border-color .2s;
}

.phone-input-wrap:focus-within {
    border-color: var(--primary, #3b6ef5);
    box-shadow: 0 0 0 3px rgba(59, 110, 245, 0.08);
}

.phone-flag-select {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 10px 0 12px;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    height: 42px;
    user-select: none;
}

.phone-flag-icon {
    font-size: 18px;
    line-height: 1;
}

.phone-dial-code {
    font-size: 13px;
    font-weight: 600;
    color: var(--text, #1a1a2e);
    white-space: nowrap;
}

.phone-chevron {
    color: var(--text-soft, #888);
    flex-shrink: 0;
}

.phone-select-hidden {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
    border: none;
    font-size: 13px;
}

.phone-divider {
    width: 1px;
    height: 22px;
    background: var(--border, #dde3ee);
    flex-shrink: 0;
}

.phone-number-input {
    flex: 1;
    border: none !important;
    outline: none !important;
    padding: 10px 12px;
    font-size: 13.5px;
    background: transparent;
    color: var(--text, #1a1a2e);
    min-width: 0;
    box-shadow: none !important;
}