/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', system-ui, sans-serif;
    color: #1a1a2e;
    background: #FAFAF8;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== CSS VARIABLES ===== */
:root {
    --navy: #0A1D3F;
    --navy-light: #132D5E;
    --navy-dark: #061229;
    --gold: #C8A45C;
    --gold-light: #D4B76E;
    --gold-dark: #B8944A;
    --cream: #FAFAF8;
    --cream-warm: #F5F0E8;
    --sand: #E8E0D0;
    --text: #1a1a2e;
    --text-muted: #5a5a7a;
    --text-light: #8a8aa0;
    --white: #FFFFFF;
    --shadow-sm: 0 1px 3px rgba(10,29,63,0.08);
    --shadow-md: 0 4px 20px rgba(10,29,63,0.10);
    --shadow-lg: 0 8px 40px rgba(10,29,63,0.14);
    --shadow-xl: 0 16px 60px rgba(10,29,63,0.18);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; line-height: 1.2; }

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 29, 63, 0.0);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}
.site-header.scrolled {
    background: rgba(10, 29, 63, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: rgba(200, 164, 92, 0.15);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 0.9rem;
}
.logo-mark { color: var(--gold); flex-shrink: 0; }
.logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.2;
}
.logo-light { color: var(--white); }

/* NAV */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-menu a {
    color: rgba(255,255,255,0.80);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    transition: color var(--transition);
    position: relative;
}
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width var(--transition);
}
.nav-menu a:hover { color: var(--white); }
.nav-menu a:hover::after { width: 100%; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}
.hamburger {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}
.nav-toggle[aria-expanded="true"] .hamburger:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .hamburger:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.04em;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    white-space: nowrap;
}
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy-dark);
    box-shadow: 0 4px 15px rgba(200,164,92,0.35);
}
.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    box-shadow: 0 6px 25px rgba(200,164,92,0.5);
    transform: translateY(-1px);
}
.btn-outline-light {
    border: 1.5px solid rgba(255,255,255,0.4);
    color: var(--white);
    background: rgba(255,255,255,0.05);
}
.btn-outline-light:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(200,164,92,0.08);
}
.btn-navy {
    background: var(--navy);
    color: var(--white);
}
.btn-navy:hover {
    background: var(--navy-light);
    transform: translateY(-1px);
}
.btn-sm { padding: 10px 20px; font-size: 0.8125rem; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-full { width: 100%; }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy-dark);
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6,18,41,0.85) 0%, rgba(10,29,63,0.70) 50%, rgba(10,29,63,0.50) 100%);
}
.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 60px;
    width: 100%;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.hero-headline {
    font-size: clamp(2rem, 4vw, 3.25rem);
    color: var(--white);
    margin-bottom: 24px;
    max-width: 680px;
    line-height: 1.15;
}
.hero-headline em {
    font-style: italic;
    color: var(--gold);
}
.hero-sub {
    color: rgba(255,255,255,0.72);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.stat-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    transition: all var(--transition);
}
.stat-card.alt {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-color: transparent;
}
.stat-card.alt .stat-number { color: var(--navy-dark); }
.stat-card.alt .stat-label { color: rgba(10,29,63,0.7); }
.stat-card:hover { transform: translateX(-4px); border-color: rgba(200,164,92,0.3); }
.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.04em;
    line-height: 1.4;
}
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.4);
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: float 2.5s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== TRUST BAR ===== */
.trust-bar {
    background: var(--navy);
    padding: 20px 0;
    border-bottom: 1px solid rgba(200,164,92,0.12);
}
.trust-items {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.7);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.03em;
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }

/* ===== SECTION COMMON ===== */
.section-header { margin-bottom: 56px; }
.section-header--center { text-align: center; }
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-dark);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.section-eyebrow::before {
    content: '';
    width: 24px;
    height: 1.5px;
    background: var(--gold);
}
.section-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--navy);
    margin-bottom: 16px;
}
.section-desc {
    color: var(--text-muted);
    font-size: 1.0625rem;
    line-height: 1.7;
    max-width: 600px;
}
.section-header--center .section-desc { margin: 0 auto; }

/* ===== ROOMS ===== */
.rooms {
    padding: 100px 0;
    background: var(--cream);
}
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.room-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid rgba(10,29,63,0.06);
}
.room-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.room-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/2;
}
.room-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.room-card:hover .room-img img { transform: scale(1.05); }
.room-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gold);
    color: var(--navy-dark);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 100px;
}
.room-body {
    padding: 28px;
}
.room-name {
    font-size: 1.375rem;
    color: var(--navy);
    margin-bottom: 10px;
}
.room-desc {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.65;
    margin-bottom: 20px;
}
.room-features {
    margin-bottom: 24px;
}
.room-features li {
    position: relative;
    padding-left: 20px;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.room-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

/* ===== AMENITIES ===== */
.amenities {
    padding: 100px 0;
    background: var(--white);
    overflow: hidden;
}
.amenities-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.amenities-visual {
    position: relative;
    padding-bottom: 20px;
}
.amenities-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.amenities-img-main img { width: 100%; aspect-ratio: 7/5; object-fit: cover; }
.amenities-img-float {
    position: absolute;
    bottom: 0;
    right: -30px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--white);
}
.amenities-img-float img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.amenities-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--gold), transparent);
    opacity: 0.15;
    border-radius: var(--radius-lg);
    z-index: -1;
}
.amenities-content .section-header { margin-bottom: 32px; }
.amenities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.amenity-card {
    padding: 24px;
    background: var(--cream);
    border-radius: var(--radius-md);
    border: 1px solid rgba(10,29,63,0.05);
    transition: all var(--transition);
}
.amenity-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: rgba(200,164,92,0.2);
}
.amenity-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: var(--radius-sm);
    margin-bottom: 14px;
    color: var(--gold);
}
.amenity-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}
.amenity-card p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* ===== EXPERIENCE ===== */
.experience {
    padding: 100px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}
.experience::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200,164,92,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.experience .section-eyebrow { color: var(--gold); }
.experience .section-title { color: var(--white); }
.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}
.experience-item {
    padding: 40px 32px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}
.experience-item:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(200,164,92,0.25);
    transform: translateY(-4px);
}
.exp-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 16px;
}
.experience-item h3 {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 12px;
}
.experience-item p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* ===== GALLERY STRIP ===== */
.gallery-strip {
    padding: 0;
    overflow: hidden;
    background: var(--cream-warm);
}
.gallery-track {
    display: flex;
    gap: 4px;
    animation: gallery-scroll 40s linear infinite;
}
@keyframes gallery-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.gallery-item {
    flex-shrink: 0;
    width: 500px;
    aspect-ratio: 500/350;
    overflow: hidden;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

/* ===== LOCATION ===== */
.location {
    padding: 100px 0;
    background: var(--cream);
}
.location-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.location-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 32px 0;
}
.location-detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.location-detail svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.location-detail strong {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 2px;
}
.location-detail span, .location-detail a {
    font-size: 0.9375rem;
    color: var(--text-muted);
}
.location-detail a:hover { color: var(--gold-dark); }
.location-proximity {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--sand);
}
.location-proximity h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 16px;
}
.proximity-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.proximity-item {
    font-size: 0.875rem;
    color: var(--text-muted);
    padding: 8px 0;
    border-bottom: 1px solid rgba(10,29,63,0.06);
}
.location-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}
.map-placeholder {
    aspect-ratio: 4/3;
}
.map-placeholder iframe {
    width: 100%;
    height: 100%;
}

/* ===== CTA ===== */
.cta {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}
.cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6,18,41,0.92) 0%, rgba(10,29,63,0.88) 100%);
}
.cta-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.cta-title { margin-bottom: 16px; }
.cta-title .section-eyebrow { color: var(--gold); }
.cta-desc {
    color: rgba(255,255,255,0.65);
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 0;
}
.cta-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-xl);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    margin-bottom: 16px;
}
.form-group--full { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
    letter-spacing: 0.03em;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--sand);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: var(--text);
    background: var(--cream);
    transition: all var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(200,164,92,0.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--text-light);
    margin-top: 16px;
}
.form-note a { color: var(--gold-dark); font-weight: 600; }
.form-success {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    background: linear-gradient(135deg, #f0faf0, #e8f5e8);
    border: 1px solid #c8e6c8;
    border-radius: var(--radius-md);
    margin-top: 16px;
}
.form-success svg { color: #2e7d32; flex-shrink: 0; margin-top: 2px; }
.form-success strong { display: block; font-size: 0.9375rem; color: #1b5e20; margin-bottom: 4px; }
.form-success p { font-size: 0.8125rem; color: #2e7d32; line-height: 1.5; }

/* ===== FOOTER ===== */
.site-footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.6);
    padding: 64px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p {
    margin-top: 16px;
    font-size: 0.875rem;
    line-height: 1.7;
    max-width: 280px;
}
.footer-col h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}
.footer-col ul li {
    margin-bottom: 10px;
}
.footer-col ul li a {
    font-size: 0.875rem;
    transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.875rem;
}
.footer-contact li svg { flex-shrink: 0; margin-top: 3px; opacity: 0.6; }
.footer-contact a:hover { color: var(--gold); }
.footer-hours li {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-hours li span:last-child { color: rgba(255,255,255,0.8); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.8125rem;
    flex-wrap: wrap;
    gap: 12px;
}

/* ===== ANIMATIONS ===== */
[data-aos] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
[data-aos].aos-visible {
    opacity: 1;
    transform: translateY(0);
}
[data-aos-delay="100"] { transition-delay: 0.1s; }
[data-aos-delay="150"] { transition-delay: 0.15s; }
[data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos-delay="250"] { transition-delay: 0.25s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-stats { flex-direction: row; flex-wrap: wrap; }
    .stat-card { flex: 1; min-width: 140px; }
    .rooms-grid { grid-template-columns: repeat(2, 1fr); }
    .amenities-layout { grid-template-columns: 1fr; gap: 40px; }
    .amenities-visual { max-width: 500px; }
    .experience-grid { grid-template-columns: repeat(2, 1fr); }
    .location-layout { grid-template-columns: 1fr; }
    .location-map { max-width: 600px; }
    .cta-inner { grid-template-columns: 1fr; }
    .cta-text { order: 1; }
    .cta-form { order: 2; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(10, 29, 63, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 32px 24px;
        gap: 20px;
        transform: translateY(-110%);
        opacity: 0;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-bottom: 1px solid rgba(200,164,92,0.15);
    }
    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
    }
    .nav-toggle { display: flex; }
    .hero { min-height: auto; padding: 120px 0 80px; }
    .hero-grid { padding-top: 0; }
    .hero-headline { font-size: clamp(1.625rem, 6vw, 2.25rem); }
    .hero-stats { flex-direction: column; }
    .stat-card { padding: 20px 24px; }
    .rooms-grid { grid-template-columns: 1fr; }
    .amenities-grid { grid-template-columns: 1fr; }
    .amenities-img-float { right: 0; }
    .experience-grid { grid-template-columns: 1fr; }
    .gallery-item { width: 320px; }
    .form-row { grid-template-columns: 1fr; }
    .cta-form { padding: 28px 24px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .trust-items { gap: 24px; }
    .proximity-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
}
