/* === Kareem Residence — Premium Boutique Guesthouse, Maldives === */
@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Jost:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&display=swap');

:root {
    /* Palette — warm sand, deep ocean, brushed brass */
    --cream: #FAF7F1;
    --cream-dark: #F1EAE0;
    --white: #FFFFFF;
    --navy: #0B252C;
    --navy-light: #12363F;
    --teal: #16666F;
    --teal-light: #2A8791;
    --gold: #B9975B;
    --gold-light: #CFB182;
    --gold-dark: #9C7C45;
    --text: #23282B;
    --text-muted: #6E7376;
    --text-light: #A3A8AA;
    --border: #E4DDD0;
    --border-light: #EEE8DC;

    --section-pad: 120px;
    --radius: 3px;
    --radius-sm: 2px;
    --radius-lg: 4px;
    --shadow-sm: 0 1px 2px rgba(11,37,44,0.05);
    --shadow: 0 2px 6px rgba(11,37,44,0.04), 0 12px 32px rgba(11,37,44,0.06);
    --shadow-lg: 0 4px 10px rgba(11,37,44,0.05), 0 24px 56px rgba(11,37,44,0.10);
    --shadow-xl: 0 8px 16px rgba(11,37,44,0.06), 0 32px 72px rgba(11,37,44,0.14);

    --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

    --font-display: 'Marcellus', Georgia, serif;
    --font-body: 'Jost', 'Century Gothic', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--cream);
    line-height: 1.75;
    font-size: 16.5px;
    font-weight: 300;
    letter-spacing: 0.015em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; }

h1, h2, h3, h4, .brand {
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: 0.01em;
}

::selection { background: var(--gold); color: var(--white); }

/* ── Reveal on scroll ─────────────────────────── */
.reveal {
    opacity: 0; transform: translateY(28px);
    transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.20s; }
.reveal-delay-3 { transition-delay: 0.30s; }
.reveal-delay-4 { transition-delay: 0.40s; }
.reveal-delay-5 { transition-delay: 0.50s; }

/* ── Navigation ───────────────────────────────── */
.site-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: transparent;
    transition: background 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
    border-bottom: 1px solid transparent;
}
.site-nav.scrolled {
    background: rgba(250, 247, 241, 0.92);
    backdrop-filter: blur(18px) saturate(1.4);
    -webkit-backdrop-filter: blur(18px) saturate(1.4);
    border-bottom-color: var(--border);
    box-shadow: 0 4px 24px rgba(11,37,44,0.05);
}
.nav-inner {
    max-width: 1320px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 48px; height: 88px;
    transition: height 0.45s var(--ease);
}
.site-nav.scrolled .nav-inner { height: 72px; }
.brand {
    font-size: 1.45rem; color: var(--white);
    text-decoration: none; letter-spacing: 2.5px; text-transform: uppercase;
    transition: color 0.45s var(--ease);
}
.brand em { font-style: normal; color: var(--gold-light); transition: color 0.45s var(--ease); }
.site-nav.scrolled .brand { color: var(--navy); }
.site-nav.scrolled .brand em { color: var(--gold); }
.nav-toggle {
    display: none; background: none; border: none; font-size: 1.5rem;
    cursor: pointer; color: var(--white); transition: color 0.45s;
}
.site-nav.scrolled .nav-toggle { color: var(--navy); }
.nav-links { list-style: none; display: flex; align-items: center; gap: 44px; }
.nav-links a {
    position: relative;
    text-decoration: none; color: rgba(255,255,255,0.82);
    font-weight: 400; font-size: 0.78rem; letter-spacing: 2.5px; text-transform: uppercase;
    transition: color 0.35s var(--ease); padding: 6px 0;
}
.nav-links a::after {
    content: ''; position: absolute; left: 0; bottom: 0;
    width: 100%; height: 1px; background: var(--gold);
    transform: scaleX(0); transform-origin: right;
    transition: transform 0.45s var(--ease-out);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.site-nav.scrolled .nav-links a { color: var(--text-muted); }
.site-nav.scrolled .nav-links a:hover { color: var(--navy); }

.nav-cta {
    display: inline-block; margin-left: 8px; padding: 12px 30px !important;
    border: 1px solid rgba(255,255,255,0.45);
    color: var(--white) !important;
    transition: background 0.35s var(--ease), border-color 0.35s var(--ease), color 0.35s var(--ease) !important;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--gold); border-color: var(--gold); color: var(--white) !important; }
.site-nav.scrolled .nav-cta { color: var(--navy) !important; border-color: var(--navy); }
.site-nav.scrolled .nav-cta:hover { background: var(--navy); color: var(--white) !important; border-color: var(--navy); }

/* ── Hero ─────────────────────────────────────── */
#hero {
    position: relative; height: 100vh; min-height: 680px; max-height: 1080px;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center; text-align: center;
    background: linear-gradient(135deg, #0B252C 0%, #16666F 55%, #2A8791 100%);
}
.hero-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0; transition: opacity 2s var(--ease);
    animation: kenburns 14s var(--ease) forwards;
}
.hero-bg.active { opacity: 1; }
@keyframes kenburns {
    from { transform: scale(1.0); }
    to   { transform: scale(1.08); }
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg,
        rgba(11,37,44,0.62) 0%,
        rgba(11,37,44,0.28) 42%,
        rgba(11,37,44,0.55) 78%,
        rgba(11,37,44,0.78) 100%);
}
.hero-content {
    position: relative; z-index: 2;
    max-width: 860px; margin: 0 32px; color: var(--white);
}
.hero-content > * {
    opacity: 0; transform: translateY(34px);
    animation: heroIn 1.3s var(--ease-out) forwards;
}
.hero-content > *:nth-child(1) { animation-delay: 0.25s; }
.hero-content > *:nth-child(2) { animation-delay: 0.45s; }
.hero-content > *:nth-child(3) { animation-delay: 0.65s; }
.hero-content > *:nth-child(4) { animation-delay: 0.85s; }
.hero-content > *:nth-child(5) { animation-delay: 1.05s; }
@keyframes heroIn { to { opacity: 1; transform: translateY(0); } }

.hero-content .overline {
    font-size: 0.72rem; letter-spacing: 6px; text-transform: uppercase;
    color: rgba(255,255,255,0.75); margin-bottom: 30px; font-weight: 400;
}
.hero-content .overline::before,
.hero-content .overline::after {
    content: ''; display: inline-block; vertical-align: middle;
    width: 48px; height: 1px; background: var(--gold); margin: 0 18px 3px;
}
.hero-content h1 {
    font-size: clamp(3.4rem, 8vw, 6.8rem);
    line-height: 1.04; margin-bottom: 26px; letter-spacing: 0.5px;
    text-shadow: 0 2px 40px rgba(11,37,44,0.35);
}
.hero-tagline {
    font-family: var(--font-body);
    font-size: clamp(1.05rem, 1.8vw, 1.3rem);
    font-weight: 300; color: rgba(255,255,255,0.85);
    margin: 0 auto 52px; line-height: 1.8; max-width: 560px;
}
.hero-actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

.hero-scroll {
    position: absolute; bottom: 38px; left: 50%; transform: translateX(-50%);
    z-index: 2; color: rgba(255,255,255,0.65); text-decoration: none;
    font-size: 0.65rem; letter-spacing: 4px; text-transform: uppercase;
    display: flex; flex-direction: column; align-items: center; gap: 14px;
    opacity: 0; animation: heroIn 1.4s var(--ease-out) 1.4s forwards;
    transition: color 0.3s;
}
.hero-scroll:hover { color: var(--white); }
.hero-scroll::after {
    content: ''; width: 1px; height: 56px;
    background: linear-gradient(var(--gold), transparent);
    animation: scrollPulse 2.2s var(--ease) infinite;
}
@keyframes scrollPulse {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.55); opacity: 0.5; }
}

/* ── Buttons ──────────────────────────────────── */
.btn {
    position: relative; overflow: hidden;
    display: inline-block; padding: 17px 46px;
    font-family: var(--font-body);
    font-size: 0.75rem; font-weight: 500; text-decoration: none;
    border: 1px solid transparent; cursor: pointer;
    transition: all 0.4s var(--ease); letter-spacing: 2.5px;
    text-transform: uppercase; border-radius: var(--radius-sm);
}
.btn::before {
    content: ''; position: absolute; inset: 0;
    background: rgba(255,255,255,0.12);
    transform: translateX(-101%);
    transition: transform 0.5s var(--ease-out);
}
.btn:hover::before { transform: translateX(0); }
.btn-primary {
    background: var(--gold); color: var(--white); border-color: var(--gold);
    box-shadow: 0 6px 20px rgba(185,151,91,0.30);
}
.btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(185,151,91,0.42); }
.btn-outline { background: transparent; color: var(--navy); border-color: rgba(11,37,44,0.28); }
.btn-outline:hover { background: var(--navy); color: var(--white); border-color: var(--navy); transform: translateY(-2px); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.45); backdrop-filter: blur(4px); }
.btn-outline-light:hover { background: var(--white); color: var(--navy); border-color: var(--white); transform: translateY(-2px); }

/* ── Sections ─────────────────────────────────── */
.section { padding: var(--section-pad) 48px; }
.section-alt { background: var(--white); }
.container { max-width: 1240px; margin: 0 auto; }
.container-narrow { max-width: 840px; margin: 0 auto; }

.section-label {
    font-size: 0.7rem; letter-spacing: 5px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 18px; font-weight: 500;
}
.section-label::before {
    content: ''; display: inline-block; vertical-align: middle;
    width: 36px; height: 1px; background: var(--gold); margin: 0 14px 4px 0;
}
.section-center { text-align: center; }
.section-center .section-label::after {
    content: ''; display: inline-block; vertical-align: middle;
    width: 36px; height: 1px; background: var(--gold); margin: 0 0 4px 14px;
}
h2 {
    font-size: clamp(2.3rem, 4.6vw, 3.4rem);
    color: var(--navy); margin-bottom: 20px;
    line-height: 1.16; letter-spacing: 0.3px;
}
.section-subtitle {
    color: var(--text-muted); margin-bottom: 72px;
    font-size: 1.12rem; max-width: 560px; line-height: 1.8;
}
.section-center .section-subtitle { margin-left: auto; margin-right: auto; }
.empty-msg { color: var(--text-muted); font-style: italic; }

/* ── Page hero (inner pages) ──────────────────── */
.page-hero {
    position: relative; padding: 220px 48px 110px;
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 60%, var(--teal) 130%);
    text-align: center; color: var(--white); overflow: hidden;
}
.page-hero::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 20% 110%, rgba(185,151,91,0.16), transparent),
        radial-gradient(ellipse 50% 40% at 85% -10%, rgba(42,135,145,0.25), transparent);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .section-label { color: var(--gold-light); }
.page-hero .section-label::before,
.page-hero .section-label::after { background: var(--gold-light); }
.page-hero h1 {
    font-size: clamp(2.8rem, 6vw, 4.4rem); line-height: 1.1; margin-bottom: 20px;
}
.page-hero .section-subtitle { color: rgba(255,255,255,0.65); margin: 0 auto; }

/* ── Welcome / intro split ────────────────────── */
.welcome-grid {
    display: grid; grid-template-columns: 1.05fr 1fr; gap: 96px; align-items: center;
}
.welcome-media { position: relative; }
.welcome-media .welcome-img-main {
    width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block;
    border-radius: var(--radius); box-shadow: var(--shadow-lg);
}
.welcome-media::before {
    content: ''; position: absolute; top: -26px; left: -26px; right: 26px; bottom: 26px;
    border: 1px solid var(--gold); border-radius: var(--radius); z-index: -1;
}
.welcome-badge {
    position: absolute; right: -30px; bottom: 44px;
    background: var(--navy); color: var(--white);
    padding: 26px 34px; text-align: center; border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}
.welcome-badge .badge-num {
    display: block; font-family: var(--font-display);
    font-size: 2.2rem; color: var(--gold-light); line-height: 1.1;
}
.welcome-badge .badge-label {
    font-size: 0.62rem; letter-spacing: 3px; text-transform: uppercase;
    color: rgba(255,255,255,0.6);
}
.welcome-copy p { color: var(--text-muted); margin-bottom: 22px; line-height: 1.85; }
.welcome-copy .lead {
    font-family: var(--font-display); font-size: 1.45rem; color: var(--navy);
    line-height: 1.55; margin-bottom: 30px;
}
.welcome-sign {
    font-family: var(--font-display); font-style: italic;
    color: var(--gold-dark); font-size: 1.15rem; margin-top: 8px;
}

/* ── Highlights ───────────────────────────────── */
.highlights-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
    margin-top: 8px;
}
.highlight-item { text-align: center; padding: 12px 8px; }
.highlight-icon {
    width: 76px; height: 76px; margin: 0 auto 24px;
    border: 1px solid var(--border); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); background: var(--white);
    transition: all 0.45s var(--ease-out);
}
.highlight-item:hover .highlight-icon {
    background: var(--navy); border-color: var(--navy); color: var(--gold-light);
    transform: translateY(-6px); box-shadow: var(--shadow);
}
.highlight-icon svg { width: 30px; height: 30px; }
.highlight-item h3 {
    font-size: 1.12rem; color: var(--navy); margin-bottom: 10px; letter-spacing: 0.5px;
}
.highlight-item p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* ── Room Cards ───────────────────────────────── */
.room-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 40px;
}
.room-card {
    background: var(--white); overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform 0.55s var(--ease-out), box-shadow 0.55s var(--ease-out);
    border: 1px solid var(--border-light);
}
.room-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-xl); }
.room-card-link { text-decoration: none; color: inherit; display: block; }
.room-card-media { position: relative; overflow: hidden; height: 320px; background: var(--navy); }
.room-img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 1s var(--ease-out);
}
.room-card:hover .room-img { transform: scale(1.07); }
.room-card-media::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(11,37,44,0.45) 100%);
    opacity: 0.85; transition: opacity 0.55s var(--ease);
}
.room-card:hover .room-card-media::after { opacity: 1; }
.room-price-chip {
    position: absolute; top: 20px; right: 20px; z-index: 2;
    background: rgba(250,247,241,0.94); backdrop-filter: blur(6px);
    color: var(--navy); padding: 9px 18px; border-radius: var(--radius-sm);
    font-size: 0.82rem; font-weight: 500; letter-spacing: 0.5px;
    box-shadow: var(--shadow-sm);
}
.room-price-chip small { color: var(--text-muted); font-weight: 400; }
.room-card-body { padding: 34px 32px 30px; }
.room-card-body h3 {
    font-size: 1.5rem; margin-bottom: 10px; color: var(--navy); letter-spacing: 0.3px;
}
.room-meta {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.82rem; color: var(--text-muted); margin-bottom: 18px;
    letter-spacing: 1px; text-transform: uppercase;
}
.room-meta .meta-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); }
.room-desc { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 24px; line-height: 1.75; }
.room-link-more {
    font-size: 0.75rem; font-weight: 500; letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--navy); display: inline-flex; align-items: center; gap: 10px;
}
.room-link-more .arrow { transition: transform 0.4s var(--ease-out); color: var(--gold); font-size: 1rem; }
.room-card:hover .room-link-more .arrow { transform: translateX(8px); }
.rooms-more { text-align: center; margin-top: 64px; }

/* ── Room Detail Page ─────────────────────────── */
.back-link {
    display: inline-flex; align-items: center; gap: 10px;
    color: var(--text-muted); text-decoration: none;
    font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase;
    margin-bottom: 40px; transition: color 0.3s; font-weight: 500;
}
.back-link:hover { color: var(--gold-dark); }

.room-detail-layout {
    display: grid; grid-template-columns: 1.6fr 1fr; gap: 72px; align-items: start;
}
.room-detail-hero { overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.room-detail-hero-img { width: 100%; max-height: 560px; object-fit: cover; display: block; }
.room-detail-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 12px; }
.room-detail-thumbs img {
    width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-sm);
    cursor: pointer; opacity: 0.75; transition: opacity 0.3s, transform 0.3s;
}
.room-detail-thumbs img:hover { opacity: 1; transform: translateY(-3px); }

.room-detail-body .section-label { margin-bottom: 12px; }
.room-detail-body h1 {
    font-size: clamp(2.2rem, 4vw, 3rem); color: var(--navy); margin-bottom: 28px; line-height: 1.15;
}
.room-detail-text { font-size: 1.05rem; line-height: 1.9; color: var(--text-muted); }
.room-detail-text p + p { margin-top: 18px; }

.room-facilities { margin-top: 44px; }
.room-facilities h3 { font-size: 1.35rem; color: var(--navy); margin-bottom: 20px; }
.facilities-list {
    list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 32px;
}
.facilities-list li {
    position: relative; padding-left: 28px; font-size: 0.95rem; color: var(--text-muted);
}
.facilities-list li::before {
    content: '✓'; position: absolute; left: 0; top: 0;
    color: var(--gold); font-weight: 600;
}

.booking-card {
    position: sticky; top: 110px;
    background: var(--white); border: 1px solid var(--border-light);
    border-radius: var(--radius); box-shadow: var(--shadow-lg);
    padding: 40px 36px;
}
.booking-card .booking-price {
    font-family: var(--font-display); font-size: 2.4rem; color: var(--navy); line-height: 1;
}
.booking-card .booking-price small {
    font-family: var(--font-body); font-size: 0.85rem; color: var(--text-muted); letter-spacing: 1px;
}
.booking-card hr { border: none; border-top: 1px solid var(--border-light); margin: 26px 0; }
.booking-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 12px 0; font-size: 0.92rem;
}
.booking-row .b-label { color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; font-size: 0.72rem; }
.booking-row .b-value { color: var(--navy); font-weight: 500; }
.b-value.available { color: var(--teal); }
.b-value.unavailable { color: #B84030; }
.booking-card .btn { width: 100%; text-align: center; margin-top: 10px; }
.booking-note {
    margin-top: 18px; font-size: 0.78rem; color: var(--text-light);
    text-align: center; letter-spacing: 0.5px;
}

/* ── Gallery ──────────────────────────────────── */
.gallery-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px;
}
.gallery-grid .gallery-item { aspect-ratio: 4/3; }
.gallery-grid-full {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 10px;
}
.gallery-item-clickable {
    cursor: pointer; position: relative; overflow: hidden;
    background: var(--navy); border-radius: var(--radius-sm);
}
.gallery-item {
    aspect-ratio: 4/3; object-fit: cover; width: 100%; display: block;
    transition: transform 0.9s var(--ease-out), opacity 0.5s var(--ease);
}
.gallery-item-clickable:hover .gallery-item { transform: scale(1.06); opacity: 0.88; }
.gallery-caption {
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 1;
    padding: 32px 20px 16px; font-size: 0.82rem; color: white; font-weight: 300;
    background: linear-gradient(transparent, rgba(11,37,44,0.75));
    letter-spacing: 0.8px; opacity: 0; transform: translateY(8px);
    transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}
.gallery-item-clickable:hover .gallery-caption { opacity: 1; transform: translateY(0); }
.gallery-note {
    margin-top: 28px; color: var(--text-light); font-size: 0.85rem;
    text-align: center; font-style: italic;
}

/* ── Testimonial ──────────────────────────────── */
.testimonial {
    background: var(--navy); color: var(--white);
    position: relative; overflow: hidden;
}
.testimonial::before {
    content: '\201C'; position: absolute; top: -40px; left: 50%; transform: translateX(-50%);
    font-family: var(--font-display); font-size: 22rem; line-height: 1;
    color: rgba(185,151,91,0.10); pointer-events: none;
}
.testimonial-inner { max-width: 780px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.testimonial .stars { color: var(--gold-light); letter-spacing: 8px; font-size: 0.9rem; margin-bottom: 30px; }
.testimonial blockquote {
    font-family: var(--font-display); font-size: clamp(1.3rem, 2.6vw, 1.75rem);
    line-height: 1.65; margin-bottom: 34px;
}
.testimonial cite {
    font-style: normal; font-size: 0.75rem; letter-spacing: 3px;
    text-transform: uppercase; color: rgba(255,255,255,0.55);
}
.testimonial cite strong { color: var(--gold-light); font-weight: 500; display: block; margin-bottom: 6px; letter-spacing: 3.5px; }

/* Testimonial slider */
.testimonial-slider { display: grid; }
.testimonial-slide {
    grid-area: 1 / 1;
    opacity: 0; visibility: hidden;
    transition: opacity 0.9s var(--ease), visibility 0.9s var(--ease);
}
.testimonial-slide.active { opacity: 1; visibility: visible; }
.testimonial-dots {
    display: flex; justify-content: center; gap: 14px; margin-top: 44px;
}
.testimonial-dot {
    width: 8px; height: 8px; border-radius: 50%; border: none; padding: 0;
    background: rgba(255,255,255,0.25); cursor: pointer;
    transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.testimonial-dot:hover { background: rgba(255,255,255,0.55); }
.testimonial-dot.active { background: var(--gold-light); transform: scale(1.35); }

/* Review submission form */
.review-form { text-align: left; }
.review-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.review-form .btn { display: block; margin: 12px auto 0; }

/* ── Location ─────────────────────────────────── */
.location-grid {
    display: grid; grid-template-columns: 1fr 1.15fr; gap: 80px; align-items: center;
}
.location-details h3 {
    font-size: 1.7rem; color: var(--navy); margin-bottom: 26px;
}
.detail-row {
    display: flex; gap: 18px; align-items: flex-start;
    margin-bottom: 26px; font-size: 0.97rem; color: var(--text-muted); line-height: 1.7;
}
.detail-row .icon {
    flex-shrink: 0; width: 46px; height: 46px; margin-top: 2px;
    border: 1px solid var(--border); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold-dark); background: var(--white);
}
.detail-row .icon svg { width: 19px; height: 19px; }
.detail-row strong { color: var(--navy); font-weight: 500; }
.map-wrapper {
    overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}
.map-wrapper iframe { display: block; filter: saturate(0.85); }

/* ── Contact ──────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 90px; align-items: start; }
.contact-info h3 { font-size: 1.7rem; color: var(--navy); margin-bottom: 22px; }
.contact-info > p { color: var(--text-muted); margin-bottom: 34px; line-height: 1.8; }
.info-item {
    display: flex; gap: 18px; align-items: center; margin-bottom: 22px;
    font-size: 0.95rem; color: var(--text);
}
.info-item .icon {
    flex-shrink: 0; width: 46px; height: 46px;
    border: 1px solid var(--border); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold-dark); background: var(--white);
}
.info-item .icon svg { width: 18px; height: 18px; }

.contact-form .form-group { margin-bottom: 28px; position: relative; }
.contact-form label {
    display: block; font-weight: 500; margin-bottom: 10px;
    color: var(--navy); font-size: 0.7rem; text-transform: uppercase;
    letter-spacing: 2.5px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%; padding: 15px 2px;
    border: none; border-bottom: 1px solid var(--border);
    font-size: 1rem; font-family: var(--font-body); font-weight: 300;
    transition: border-color 0.35s var(--ease);
    background: transparent; color: var(--text); resize: vertical;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text-light); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { outline: none; border-bottom-color: var(--gold); }

.contact-success {
    padding: 20px 26px; margin-top: 26px;
    background: #EFF6F1; color: var(--teal);
    font-weight: 400; font-size: 0.92rem; border-radius: var(--radius-sm);
    border-left: 2px solid var(--teal);
}
.contact-error {
    padding: 20px 26px; margin-top: 26px;
    background: #FBF1EE; color: #B84030;
    font-weight: 400; font-size: 0.92rem; border-radius: var(--radius-sm);
    border-left: 2px solid #B84030;
}

/* ── Footer ───────────────────────────────────── */
footer {
    background: var(--navy); color: rgba(255,255,255,0.55);
    padding: 96px 48px 44px; position: relative; overflow: hidden;
}
footer::before {
    content: ''; position: absolute; top: 0; left: 10%; right: 10%;
    height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.5;
}
.footer-inner {
    max-width: 1240px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1.2fr;
    gap: 80px;
}
.footer-inner h4 {
    color: var(--white); font-size: 1.05rem; margin-bottom: 24px;
    letter-spacing: 2px; text-transform: uppercase;
}
.footer-brand {
    font-family: var(--font-display); font-size: 1.7rem; color: var(--white);
    letter-spacing: 2.5px; text-transform: uppercase; display: block; margin-bottom: 20px;
}
.footer-brand em { font-style: normal; color: var(--gold-light); }
.footer-inner p, .footer-inner a {
    font-size: 0.9rem; color: rgba(255,255,255,0.48); line-height: 2.05; text-decoration: none;
    font-weight: 300;
}
.footer-inner a { transition: color 0.3s; display: inline-block; }
.footer-inner a:hover { color: var(--gold-light); transform: translateX(4px); }
.footer-bottom {
    max-width: 1240px; margin: 64px auto 0; padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.07);
    font-size: 0.75rem; color: rgba(255,255,255,0.28);
    display: flex; justify-content: space-between; letter-spacing: 1.5px; text-transform: uppercase;
}

/* ── Lightbox ─────────────────────────────────── */
.lightbox {
    display: none; position: fixed; inset: 0; z-index: 9999;
    background: rgba(7,20,24,0.97);
    align-items: center; justify-content: center; flex-direction: column;
    animation: fadeIn 0.35s var(--ease-out);
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox.open { display: flex; }
.lightbox-img {
    max-width: 88vw; max-height: 78vh; object-fit: contain;
    border-radius: var(--radius-sm); box-shadow: var(--shadow-xl);
}
.lightbox-caption {
    color: rgba(255,255,255,0.7); margin-top: 24px; font-size: 1.05rem;
    font-family: var(--font-display); letter-spacing: 0.5px;
}
.lightbox-close {
    position: absolute; top: 26px; right: 36px;
    background: none; border: none; color: rgba(255,255,255,0.5);
    font-size: 1.5rem; cursor: pointer; z-index: 10000;
    transition: color 0.3s, transform 0.3s; font-weight: 300;
}
.lightbox-close:hover { color: white; transform: rotate(90deg); }
.lightbox-prev, .lightbox-next {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: none; border: none; color: rgba(255,255,255,0.4);
    font-size: 3rem; cursor: pointer; z-index: 10000; padding: 24px;
    transition: color 0.3s; font-weight: 200; font-family: var(--font-body);
}
.lightbox-prev:hover, .lightbox-next:hover { color: var(--gold-light); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

/* ── Responsive ───────────────────────────────── */
@media (max-width: 1023px) {
    .welcome-grid { grid-template-columns: 1fr; gap: 72px; }
    .welcome-media { max-width: 520px; }
    .highlights-grid { grid-template-columns: repeat(2, 1fr); gap: 48px 32px; }
    .room-detail-layout { grid-template-columns: 1fr; gap: 56px; }
    .booking-card { position: static; }
    .location-grid, .contact-layout { grid-template-columns: 1fr; gap: 56px; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 48px; }
}

@media (max-width: 767px) {
    :root { --section-pad: 84px; }

    .site-nav { background: rgba(250,247,241,0.97); border-bottom-color: var(--border); }
    .site-nav .brand { color: var(--navy); font-size: 1.15rem; }
    .site-nav .brand em { color: var(--gold); }
    .site-nav .nav-toggle { color: var(--navy); }
    .nav-inner { padding: 0 22px; height: 68px; }
    .nav-toggle { display: block; }
    .nav-links {
        display: none; flex-direction: column; gap: 0; align-items: stretch;
        position: absolute; top: 68px; left: 0; right: 0;
        background: rgba(250,247,241,0.98); backdrop-filter: blur(18px);
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-lg);
    }
    .nav-links.open { display: flex; }
    .nav-links li { width: 100%; }
    .nav-links a {
        display: block; padding: 17px 30px; color: var(--text-muted);
        border-bottom: 1px solid var(--border-light); font-size: 0.75rem;
    }
    .nav-links a::after { display: none; }
    .nav-cta {
        margin: 16px 30px 22px !important; padding: 15px !important;
        text-align: center; color: var(--white) !important;
        background: var(--gold); border-color: var(--gold);
    }

    #hero { height: 92vh; min-height: 560px; }
    .hero-content h1 { font-size: 2.9rem; }
    .hero-content .overline::before,
    .hero-content .overline::after { width: 26px; margin: 0 10px 3px; }
    .hero-actions .btn { padding: 15px 34px; }

    .section { padding: var(--section-pad) 22px; }
    .page-hero { padding: 160px 22px 80px; }

    .welcome-media::before { top: -14px; left: -14px; right: 14px; bottom: 14px; }
    .welcome-badge { right: 8px; bottom: -20px; padding: 18px 24px; }
    .highlights-grid { grid-template-columns: 1fr; gap: 40px; }

    .room-grid { grid-template-columns: 1fr; gap: 28px; }
    .review-form-row { grid-template-columns: 1fr; gap: 0; }
    .room-card-media { height: 260px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 4px; }
    .gallery-grid-full { grid-template-columns: repeat(2, 1fr); gap: 6px; }
    .room-detail-thumbs { grid-template-columns: repeat(3, 1fr); }
    .footer-inner { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
    .lightbox-prev, .lightbox-next { padding: 12px; font-size: 2.2rem; }
}

/* ── Reduced motion ───────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; }
}
