/* ============================================
   KEISHA LUXURY FURNISHED APARTMENTS
   Theme: White & Navy Blue
   ============================================ */

/* --- Design Tokens --- */
:root {
    /* Navy Blue Palette */
    --navy-900: #0a1628;
    --navy-800: #0f2044;
    --navy-700: #142d5e;
    --navy-600: #1a3a7a;
    --navy-500: #1e4d8f;
    --navy-400: #2a6cb8;
    --navy-300: #4a8fd4;
    --navy-200: #7cb3e8;
    --navy-100: #b8d5f2;
    --navy-50: #e8f1fb;

    /* Whites & Neutrals */
    --white: #ffffff;
    --off-white: #f8f9fc;
    --cream: #f0f2f7;
    --gray-100: #e8eaf0;
    --gray-200: #d1d5e0;
    --gray-300: #a0a8b8;
    --gray-400: #6b7280;
    --gray-500: #4b5563;
    --gray-600: #374151;

    /* Accent */
    --gold: #c5a55a;
    --gold-light: #dfc88a;

    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;

    /* Spacing */
    --section-padding: clamp(80px, 10vw, 140px);
    --container-width: 1280px;
    --container-padding: clamp(20px, 4vw, 48px);

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

    /* Borders */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--navy-800);
    background-color: var(--white);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s var(--ease-out);
}

ul {
    list-style: none;
}

/* --- Utilities --- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--navy-400);
    margin-bottom: 16px;
    position: relative;
    padding-left: 40px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 28px;
    height: 1px;
    background: var(--navy-400);
}

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

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

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--navy-900);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

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

.section-title.light {
    color: var(--white);
}

.section-title.light em {
    color: var(--gold-light);
}

.section-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-500);
    max-width: 540px;
}

.section-desc.centered {
    text-align: center;
    margin: 0 auto;
}

.section-desc.light {
    color: rgba(255, 255, 255, 0.8);
}

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

.section-header .section-label {
    padding-left: 0;
}

.section-header .section-label::before {
    display: none;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: transform 0.4s var(--ease-out);
}

.btn:hover::after {
    transform: translateX(0);
}

.btn-primary {
    background: var(--navy-700);
    color: var(--white);
    border-color: var(--navy-700);
}

.btn-primary:hover {
    background: var(--navy-600);
    border-color: var(--navy-600);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(20, 45, 94, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 0.9rem;
}

/* --- Preloader --- */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--navy-900);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-text {
    display: block;
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--white);
    letter-spacing: 0.15em;
    margin-top: 20px;
    animation: preloaderPulse 1.5s var(--ease-in-out) infinite;
}

.preloader-line {
    width: 60px;
    height: 2px;
    background: var(--navy-400);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.preloader-line::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    animation: preloaderLine 1.2s var(--ease-in-out) infinite;
}

@keyframes preloaderLine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes preloaderPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--ease-out);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 1px 20px rgba(10, 22, 40, 0.08);
}

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

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0.08em;
    transition: color 0.4s var(--ease-out);
}

.navbar.scrolled .nav-logo {
    color: var(--navy-900);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.3s var(--ease-out);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 16px;
    right: 16px;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s var(--ease-out);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link:hover {
    color: var(--white);
}

.navbar.scrolled .nav-link {
    color: var(--gray-500);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--navy-700);
}

.navbar.scrolled .nav-link::after {
    background: var(--navy-500);
}

.nav-link-cta {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-sm);
    margin-left: 8px;
}

.nav-link-cta::after {
    display: none;
}

.nav-link-cta:hover {
    background: rgba(255, 255, 255, 0.2);
}

.navbar.scrolled .nav-link-cta {
    background: var(--navy-700);
    color: var(--white);
    border-color: var(--navy-700);
}

.navbar.scrolled .nav-link-cta:hover {
    background: var(--navy-600);
    color: var(--white);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s var(--ease-out);
}

.navbar.scrolled .nav-toggle span {
    background: var(--navy-800);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

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

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: heroZoom 20s var(--ease-in-out) infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.12); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 22, 40, 0.55) 0%,
        rgba(10, 22, 40, 0.4) 40%,
        rgba(10, 22, 40, 0.65) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 var(--container-padding);
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-light);
    border: 1px solid rgba(197, 165, 90, 0.4);
    padding: 8px 24px;
    border-radius: 50px;
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 0.8s var(--ease-out) 0.5s forwards;
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 300;
    color: var(--white);
    margin-bottom: 24px;
    overflow: hidden;
}

.hero-title-line {
    display: block;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    opacity: 0;
    transform: translateY(60px);
    animation: heroFadeUp 1s var(--ease-out) forwards;
}

.hero-title-line:nth-child(1) { animation-delay: 0.7s; }
.hero-title-line:nth-child(2) { animation-delay: 0.9s; }
.hero-title-line:nth-child(3) { animation-delay: 1.1s; }

.hero-title-line.accent {
    font-style: italic;
    color: var(--gold-light);
    font-size: clamp(2.4rem, 6vw, 4.8rem);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 0.8s var(--ease-out) 1.3s forwards;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 0.8s var(--ease-out) 1.5s forwards;
}

.hero-details {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 48px;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 0.8s var(--ease-out) 1.7s forwards;
}

.hero-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.03em;
}

.hero-detail-icon {
    display: flex;
    color: var(--gold-light);
}

.hero-detail-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.25);
}

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

/* Hero scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: heroFadeUp 0.8s var(--ease-out) 2s forwards;
}

.hero-scroll span {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, rgba(255,255,255,0.5) 0%, transparent 100%);
    animation: scrollPulse 2s var(--ease-in-out) infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* --- Intro Section --- */
.intro {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.intro-text .section-desc {
    margin-bottom: 16px;
}

.intro-text .section-desc:last-child {
    margin-bottom: 0;
}

.image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.image-frame img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.image-frame:hover img {
    transform: scale(1.04);
}

.image-frame-accent {
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: 60%;
    height: 60%;
    border: 2px solid var(--navy-200);
    border-radius: var(--radius-lg);
    z-index: -1;
}

/* --- Rooms Section --- */
.rooms {
    padding: var(--section-padding) 0;
    background: var(--off-white);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.room-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}

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

.room-card-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.room-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-out);
}

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

.room-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10, 22, 40, 0.5));
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s var(--ease-out);
}

.room-card:hover .room-card-overlay {
    opacity: 1;
}

.room-card-tag {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 6px 16px;
    border-radius: 50px;
}

.room-card-content {
    padding: 28px;
}

.room-card-content h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--navy-900);
    margin-bottom: 10px;
}

.room-card-content p {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.7;
}

/* --- Experience Section --- */
.experience {
    position: relative;
    padding: var(--section-padding) 0;
    overflow: hidden;
}

.experience-bg {
    position: absolute;
    inset: 0;
}

.experience-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 22, 40, 0.92) 0%,
        rgba(15, 32, 68, 0.88) 50%,
        rgba(10, 22, 40, 0.9) 100%
    );
}

.experience-content {
    position: relative;
    z-index: 2;
}

.experience-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.experience-feature {
    padding: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    transition: all 0.4s var(--ease-out);
}

.experience-feature:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(197, 165, 90, 0.15);
    color: var(--gold-light);
    margin-bottom: 20px;
}

.experience-feature h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 10px;
}

.experience-feature p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
}

/* --- Gallery Section --- */
.gallery {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 260px;
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

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

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

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10, 22, 40, 0.6));
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s var(--ease-out);
}

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

.gallery-item-overlay span {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 400;
}

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

/* --- Location Section --- */
.location {
    padding: var(--section-padding) 0;
    background: var(--off-white);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.location-details {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.location-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.location-detail-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: var(--navy-50);
    color: var(--navy-500);
}

.location-detail strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy-900);
    margin-bottom: 2px;
}

.location-detail p {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.5;
}

.location-detail a {
    color: var(--navy-500);
}

.location-detail a:hover {
    color: var(--navy-700);
}

.map-container {
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 480px;
    border: 1px solid var(--gray-200);
}

.map-container iframe {
    display: block;
}

/* --- Policies Section --- */
.policies {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.policies-card {
    background: var(--navy-50);
    border-radius: var(--radius-lg);
    padding: clamp(40px, 5vw, 72px);
    border: 1px solid var(--navy-100);
}

.policies-header {
    text-align: center;
    margin-bottom: 48px;
}

.policies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

.policy-item {
    text-align: center;
    padding: 32px 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-100);
    transition: all 0.3s var(--ease-out);
}

.policy-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(10, 22, 40, 0.06);
}

.policy-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--navy-50);
    color: var(--navy-500);
    margin-bottom: 16px;
}

.policy-item h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--navy-900);
    margin-bottom: 10px;
}

.policy-item p {
    font-size: 0.88rem;
    color: var(--gray-400);
    line-height: 1.7;
}

/* --- CTA Section --- */
.cta {
    position: relative;
    padding: var(--section-padding) 0;
    background: var(--navy-900);
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26, 58, 122, 0.3) 0%, transparent 70%);
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197, 165, 90, 0.1) 0%, transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content .section-desc {
    margin: 0 auto 40px;
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Footer --- */
.footer {
    background: var(--navy-900);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 300;
    color: var(--white);
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}

.footer-tagline {
    font-size: 0.8rem;
    color: var(--gold-light);
    letter-spacing: 0.06em;
    margin-bottom: 16px;
    line-height: 1.5;
}

.footer-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

.footer-links-group h4 {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 20px;
}

.footer-links-group ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-group li {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
}

.footer-links-group a {
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.3s var(--ease-out);
}

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

.footer-bottom {
    padding-top: 32px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.04em;
}

/* --- Lightbox --- */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    transform: scale(0.9);
    transition: transform 0.5s var(--ease-out);
}

.lightbox.active .lightbox-content img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: background 0.3s;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    cursor: pointer;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* --- Scroll Reveal --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

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

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 220px;
    }

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

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

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

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--navy-900);
        flex-direction: column;
        justify-content: center;
        gap: 4px;
        transform: translateX(100%);
        transition: transform 0.5s var(--ease-out);
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links .nav-link {
        color: rgba(255, 255, 255, 0.7);
        font-size: 1rem;
        padding: 12px 24px;
    }

    .nav-links .nav-link:hover,
    .nav-links .nav-link.active {
        color: var(--white);
    }

    .nav-links .nav-link-cta {
        margin-left: 0;
        margin-top: 12px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span {
        background: var(--white) !important;
    }

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

    .experience-features {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

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

    .hero-details {
        flex-direction: column;
        gap: 12px;
    }

    .hero-detail-divider {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .map-container {
        height: 320px;
    }

    .image-frame img {
        height: 360px;
    }

    .image-frame-accent {
        display: none;
    }

    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }

    .hero-title-line {
        font-size: 2.4rem;
    }

    .hero-title-line.accent {
        font-size: 2rem;
    }
}
