/* ===== CSS Custom Properties ===== */
:root {
    --navy-deep: #0a1f3f;
    --navy-mid: #132d54;
    --navy-light: #1a3a6b;
    --gold: #d4a017;
    --gold-light: #f0c040;
    --gold-pale: #fdf3d7;
    --white: #ffffff;
    --off-white: #f8f7f4;
    --gray-50: #f5f5f3;
    --gray-100: #e8e8e4;
    --gray-200: #d1d1cc;
    --gray-400: #999990;
    --gray-600: #66665e;
    --gray-800: #2a2a26;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', system-ui, sans-serif;
    --shadow-sm: 0 1px 3px rgba(10,31,63,0.08);
    --shadow-md: 0 4px 16px rgba(10,31,63,0.10);
    --shadow-lg: 0 8px 32px rgba(10,31,63,0.14);
    --shadow-xl: 0 16px 48px rgba(10,31,63,0.18);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: var(--font-body);
    color: var(--gray-800);
    background: var(--white);
    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; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(10,31,63,0.06);
    transition: var(--transition);
}
.header.scrolled {
    box-shadow: var(--shadow-md);
}
.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy-deep);
}
.logo-icon { color: var(--gold); }
.logo-accent { color: var(--gold); }
.logo-light { color: var(--white); }
.logo-light .logo-accent { color: var(--gold-light); }

.nav { display: flex; align-items: center; gap: 8px; }
.nav-link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--navy-mid);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.nav-link:hover { color: var(--navy-deep); background: rgba(10,31,63,0.05); }
.nav-cta {
    background: var(--navy-deep);
    color: var(--white) !important;
    margin-left: 8px;
}
.nav-cta:hover { background: var(--navy-mid); transform: translateY(-1px); }

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--navy-deep);
    border-radius: 2px;
    transition: var(--transition);
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    display: none;
    flex-direction: column;
    gap: 8px;
    border-bottom: 2px solid var(--gold);
    box-shadow: var(--shadow-lg);
    z-index: 999;
}
.mobile-nav.open { display: flex; }
.mobile-nav-link {
    padding: 14px 16px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--navy-deep);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.mobile-nav-link:hover { background: var(--gray-50); }
.mobile-cta {
    background: var(--navy-deep);
    color: var(--white) !important;
    text-align: center;
    margin-top: 8px;
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: var(--off-white);
    overflow: hidden;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.geo-shape { position: absolute; }
.geo-circle-1 {
    width: 500px; height: 500px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212,160,23,0.08) 0%, rgba(212,160,23,0.02) 100%);
    top: -100px; right: -100px;
}
.geo-circle-2 {
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(10,31,63,0.04);
    bottom: 10%; left: 5%;
}
.geo-square-1 {
    width: 120px; height: 120px;
    background: var(--gold);
    opacity: 0.06;
    top: 20%; left: 40%;
    transform: rotate(45deg);
}
.geo-triangle {
    width: 0; height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 104px solid rgba(212,160,23,0.07);
    top: 60%; right: 15%;
    transform: rotate(-15deg);
}
.geo-dots {
    width: 80px; height: 80px;
    background-image: radial-gradient(circle, var(--navy-deep) 1.5px, transparent 1.5px);
    background-size: 12px 12px;
    opacity: 0.08;
    bottom: 20%; right: 30%;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--gold-pale);
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 24px;
    border: 1px solid rgba(212,160,23,0.2);
}
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--navy-deep);
    margin-bottom: 24px;
}
.hero-title .highlight {
    color: var(--gold);
    position: relative;
}
.hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 20px;
    max-width: 520px;
}
.hero-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--navy-mid);
    font-weight: 500;
    margin-bottom: 32px;
}
.hero-location svg { color: var(--gold); }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.btn-primary {
    background: var(--navy-deep);
    color: var(--white);
}
.btn-primary:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline {
    background: transparent;
    color: var(--navy-deep);
    border: 2px solid var(--navy-deep);
}
.btn-outline:hover { background: var(--navy-deep); color: var(--white); }
.btn-full { width: 100%; justify-content: center; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

.hero-stats { display: flex; gap: 32px; align-items: center; }
.hero-stat { display: flex; flex-direction: column; gap: 2px; }
.stat-number { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; color: var(--navy-deep); }
.stat-label { font-size: 0.78rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.05em; }
.hero-stat-divider { width: 1px; height: 40px; background: var(--gray-200); }

.hero-image { position: relative; }
.hero-img-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.hero-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-accent {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background: var(--gold);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.3;
}
.hero-floating-card {
    position: absolute;
    bottom: 40px;
    left: -40px;
    background: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 2;
}
.floating-card-icon {
    width: 44px; height: 44px;
    background: var(--navy-deep);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}
.fc-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray-400); }
.fc-value { font-size: 0.9rem; font-weight: 600; color: var(--navy-deep); }

/* ===== Section Divider ===== */
.section-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 24px;
    max-width: 1200px;
    margin: 0 auto;
}
.divider-line { flex: 1; height: 1px; background: var(--gray-100); }
.divider-dots { display: flex; gap: 8px; }
.divider-dots span {
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
}
.divider-dots span:nth-child(2) { opacity: 0.5; }
.divider-dots span:nth-child(3) { opacity: 0.3; }
.divider-dots span:nth-child(4) { opacity: 0.5; }

/* ===== Section Shared ===== */
.section-header { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--gold-pale);
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 50px;
    margin-bottom: 16px;
    border: 1px solid rgba(212,160,23,0.2);
}
.section-tag-light {
    background: rgba(212,160,23,0.15);
    color: var(--gold-light);
    border-color: rgba(212,160,23,0.3);
}
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy-deep);
    margin-bottom: 16px;
}
.section-title-light { color: var(--white); }
.section-subtitle { font-size: 1.05rem; color: var(--gray-600); line-height: 1.7; }
.section-subtitle-light { color: rgba(255,255,255,0.75); }

/* ===== Rooms ===== */
.rooms { padding: 100px 0; background: var(--white); }
.rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.room-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.room-card-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}
.room-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.room-card:hover .room-card-img img { transform: scale(1.05); }
.room-card-tag {
    position: absolute;
    top: 16px; left: 16px;
    padding: 5px 12px;
    background: var(--gold);
    color: var(--navy-deep);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
}
.room-tag-new { background: var(--navy-deep); color: var(--gold-light); }
.room-card-body { padding: 24px; }
.room-card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 10px;
}
.room-card-body p { font-size: 0.92rem; color: var(--gray-600); line-height: 1.6; margin-bottom: 16px; }
.room-features { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 20px; }
.room-features li {
    display: flex; align-items: center; gap: 6px;
    font-size: 0.82rem; font-weight: 500; color: var(--navy-mid);
}
.room-features li svg { color: var(--gold); flex-shrink: 0; }

/* ===== Amenities ===== */
.amenities {
    position: relative;
    padding: 100px 0;
    background: var(--navy-deep);
    overflow: hidden;
}
.amenities-bg-block {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(212,160,23,0.1) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(26,58,107,0.5) 0%, transparent 50%);
    pointer-events: none;
}
.amenities .container { position: relative; z-index: 1; }
.amenities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.amenity-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: var(--transition);
}
.amenity-card:hover {
    background: rgba(255,255,255,0.09);
    border-color: rgba(212,160,23,0.3);
    transform: translateY(-4px);
}
.amenity-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    color: var(--navy-deep);
    margin-bottom: 20px;
}
.amenity-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}
.amenity-card p { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.65; }

/* ===== Location ===== */
.location { padding: 100px 0; background: var(--off-white); }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.location-description { font-size: 1.05rem; color: var(--gray-600); line-height: 1.75; margin-bottom: 36px; }
.location-details { display: flex; flex-direction: column; gap: 24px; }
.location-detail { display: flex; gap: 16px; align-items: flex-start; }
.ld-icon {
    width: 48px; height: 48px;
    background: var(--navy-deep);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}
.location-detail strong { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray-400); margin-bottom: 4px; }
.location-detail span, .location-detail a { font-size: 1rem; color: var(--navy-deep); font-weight: 500; }
.location-detail a:hover { color: var(--gold); }

.map-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.map-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.map-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,31,63,0.3) 0%, transparent 40%);
}
.map-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.map-pin-label {
    display: block;
    margin-top: 8px;
    padding: 6px 14px;
    background: var(--white);
    color: var(--navy-deep);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
}

/* ===== About ===== */
.about { padding: 100px 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-images { position: relative; }
.about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--white);
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-experience-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--gold);
    color: var(--navy-deep);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
}
.exp-number { display: block; font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; line-height: 1; }
.exp-text { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.about-geo-accent {
    position: absolute;
    top: -20px;
    right: 40%;
    width: 80px; height: 80px;
    background: var(--navy-deep);
    opacity: 0.06;
    border-radius: var(--radius-md);
    transform: rotate(30deg);
    z-index: -1;
}
.about-content .section-tag { margin-bottom: 16px; }
.about-text { font-size: 1rem; color: var(--gray-600); line-height: 1.75; margin-bottom: 16px; }
.about-values { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }
.about-value { display: flex; gap: 16px; align-items: flex-start; }
.av-icon {
    width: 44px; height: 44px;
    background: var(--gold-pale);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}
.about-value strong { display: block; font-size: 0.95rem; color: var(--navy-deep); margin-bottom: 4px; }
.about-value span { font-size: 0.88rem; color: var(--gray-600); line-height: 1.6; }

/* ===== CTA ===== */
.cta {
    position: relative;
    padding: 100px 0;
    background: var(--navy-deep);
    overflow: hidden;
}
.cta-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.cta-shape { position: absolute; }
.cta-circle-1 {
    width: 400px; height: 400px;
    border-radius: 50%;
    border: 1px solid rgba(212,160,23,0.12);
    top: -100px; left: -100px;
}
.cta-circle-2 {
    width: 200px; height: 200px;
    border-radius: 50%;
    background: rgba(212,160,23,0.06);
    bottom: -50px; right: 10%;
}
.cta-rect {
    width: 100px; height: 100px;
    background: var(--gold);
    opacity: 0.05;
    top: 30%; right: 5%;
    transform: rotate(45deg);
}
.cta .container { position: relative; z-index: 1; }
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.cta-text { font-size: 1.05rem; color: rgba(255,255,255,0.7); line-height: 1.75; margin-bottom: 36px; }
.cta-contact-methods { display: flex; flex-direction: column; gap: 20px; }
.cta-contact-item {
    display: flex; gap: 16px; align-items: center;
    padding: 16px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    transition: var(--transition);
}
.cta-contact-item:hover { background: rgba(255,255,255,0.09); border-color: rgba(212,160,23,0.3); transform: translateX(4px); }
.cci-icon {
    width: 48px; height: 48px;
    background: rgba(212,160,23,0.15);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold-light);
    flex-shrink: 0;
}
.cci-label { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.5); }
.cci-value { font-size: 0.95rem; font-weight: 600; color: var(--white); }

.cta-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-xl);
}
.cta-form h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 24px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--navy-mid);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--gray-100);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--gray-800);
    transition: var(--transition);
    background: var(--gray-50);
}
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(212,160,23,0.1);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray-400); }
.form-group textarea { resize: vertical; }
.form-success {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #e8f5e9;
    border-radius: var(--radius-sm);
    color: #2e7d32;
    font-weight: 500;
    margin-top: 16px;
}
.form-success.show { display: flex; }
.form-success svg { color: #2e7d32; flex-shrink: 0; }

/* ===== Footer ===== */
.footer { background: #060f1f; padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 48px; padding-bottom: 48px; }
.footer-desc { font-size: 0.9rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-top: 16px; max-width: 300px; }
.footer-links h4, .footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
}
.footer-links a:hover { color: var(--gold-light); }
.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin-bottom: 12px;
}
.footer-contact a { color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-contact a:hover { color: var(--gold-light); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.35); }

/* ===== Scroll Animations ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-grid { gap: 40px; }
    .rooms-grid { grid-template-columns: repeat(2, 1fr); }
    .amenities-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav { display: none; }
    .mobile-toggle { display: flex; }
    .hero { padding: 100px 0 60px; min-height: auto; }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-image { order: -1; }
    .hero-img-wrapper { height: 350px; }
    .hero-floating-card { left: 16px; bottom: 16px; }
    .hero-stats { gap: 20px; }
    .rooms-grid { grid-template-columns: 1fr; }
    .amenities-grid { grid-template-columns: 1fr; }
    .location-grid { grid-template-columns: 1fr; }
    .map-wrapper { order: -1; }
    .about-grid { grid-template-columns: 1fr; }
    .about-img-secondary { right: 16px; bottom: -20px; }
    .about-experience-badge { left: -10px; bottom: -10px; }
    .cta-grid { grid-template-columns: 1fr; }
    .cta-form-wrapper { padding: 28px; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-title { font-size: 1.9rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-stats { flex-direction: column; gap: 16px; align-items: flex-start; }
    .hero-stat-divider { width: 40px; height: 1px; }
    .section-title { font-size: 1.6rem; }
}
