/* ============================================
   LA VISTA MOTEL — Stylesheet
   Palette: Deep Navy (#0F1F3C) + Warm Gold (#C9A84C)
   Fonts: Playfair Display + Lato
   ============================================ */

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

:root {
    --navy: #0F1F3C;
    --navy-light: #1A2D4A;
    --navy-dark: #091528;
    --gold: #C9A84C;
    --gold-light: #D4B96A;
    --gold-dark: #B8943F;
    --cream: #FAF7F2;
    --cream-dark: #F0EBE3;
    --white: #FFFFFF;
    --text: #2C2C2C;
    --text-light: #6B6B6B;
    --text-lighter: #999999;
    --border: rgba(15, 31, 60, 0.1);
    --shadow-sm: 0 2px 8px rgba(15, 31, 60, 0.06);
    --shadow-md: 0 8px 30px rgba(15, 31, 60, 0.1);
    --shadow-lg: 0 20px 60px rgba(15, 31, 60, 0.15);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--navy);
    line-height: 1.25;
    font-weight: 500;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: all var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-gold {
    background: var(--gold);
    color: var(--navy-dark);
    border-color: var(--gold);
}

.btn-gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.35);
}

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

.btn-outline-light:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}

.btn-outline-dark {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}

.btn-outline-dark:hover {
    background: var(--navy);
    color: var(--white);
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.8rem;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 0.95rem;
}

.btn-full {
    width: 100%;
}

/* ---------- SECTION TAGS & TITLES ---------- */
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 12px;
    position: relative;
    padding-left: 32px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 22px;
    height: 1px;
    background: var(--gold);
    transform: translateY(-50%);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 560px;
    line-height: 1.8;
}

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

.section-header .section-desc {
    margin: 0 auto;
}

/* ---------- HEADER ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition);
}

.site-header.scrolled {
    background: rgba(250, 247, 242, 0.97);
    backdrop-filter: blur(12px);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.logo-mark {
    width: 42px;
    height: 42px;
    background: var(--gold);
    color: var(--navy-dark);
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    letter-spacing: 0.05em;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 500;
    transition: color var(--transition);
}

.site-header.scrolled .logo-text {
    color: var(--navy);
}

.site-nav ul {
    display: flex;
    align-items: center;
    gap: 36px;
}

.site-nav a {
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.85);
    transition: color var(--transition);
    position: relative;
}

.site-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width var(--transition);
}

.site-nav a:hover::after {
    width: 100%;
}

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

.site-header.scrolled .site-nav a {
    color: var(--text-light);
}

.site-header.scrolled .site-nav a:hover {
    color: var(--navy);
}

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

.hamburger {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition);
    display: block;
}

.site-header.scrolled .hamburger {
    background: var(--navy);
}

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

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

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

/* ---------- 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(9, 21, 40, 0.88) 0%, rgba(15, 31, 60, 0.7) 50%, rgba(15, 31, 60, 0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 80px;
}

.hero-tagline {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}

.hero-headline {
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    color: var(--white);
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-headline em {
    color: var(--gold);
    font-style: italic;
}

.hero-sub {
    font-size: 1.12rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.85;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero right column */
.hero-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition);
}

.hero-card:hover {
    transform: translateY(-4px);
}

.hero-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.hero-card-body {
    padding: 24px;
}

.hero-card-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 8px;
}

.hero-card-desc {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    text-align: center;
    transition: all var(--transition);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-3px);
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

/* Hero scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

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

/* ---------- INTRO ---------- */
.intro {
    padding: 120px 0;
    background: var(--cream);
}

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

.intro-image-wrap {
    position: relative;
}

.intro-image-wrap img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.intro-accent {
    position: absolute;
    bottom: -24px;
    right: -24px;
    width: 160px;
    height: 160px;
    background: var(--gold);
    border-radius: var(--radius-md);
    z-index: -1;
    opacity: 0.3;
}

.intro-text .section-title {
    margin-bottom: 24px;
}

.intro-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.intro-highlights {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1rem;
    color: var(--text);
}

.highlight-item svg {
    color: var(--gold);
    flex-shrink: 0;
}

/* ---------- ROOMS ---------- */
.rooms {
    padding: 120px 0;
    background: var(--white);
}

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

.room-card {
    background: var(--cream);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition);
    border: 1px solid var(--border);
}

.room-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.room-card-img {
    position: relative;
    overflow: hidden;
}

.room-card-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.room-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--navy);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
}

.room-tag--gold {
    background: var(--gold);
    color: var(--navy-dark);
}

.room-card-body {
    padding: 32px;
}

.room-name {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.room-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 20px;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.room-features li {
    font-size: 0.8rem;
    color: var(--text-light);
    background: var(--white);
    padding: 6px 12px;
    border-radius: 100px;
    border: 1px solid var(--border);
}

.room-card-body .btn {
    margin-top: 4px;
}

/* ---------- AMENITIES ---------- */
.amenities {
    padding: 120px 0;
    background: var(--navy);
    color: var(--white);
}

.amenities .section-tag {
    color: var(--gold);
}

.amenities .section-title {
    color: var(--white);
    margin-bottom: 16px;
}

.amenities-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.05rem;
    margin-bottom: 48px;
    max-width: 480px;
}

.amenities-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.amenities-grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.amenity-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.amenity-icon {
    width: 52px;
    height: 52px;
    background: rgba(201, 168, 76, 0.12);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.amenity-item h4 {
    color: var(--white);
    font-family: 'Lato', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.amenity-item p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.92rem;
    line-height: 1.65;
}

.amenities-image-stack {
    position: relative;
    height: 560px;
}

.amenity-img {
    position: absolute;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.amenity-img--1 {
    width: 260px;
    height: 340px;
    top: 0;
    right: 0;
    z-index: 1;
}

.amenity-img--2 {
    width: 240px;
    height: 260px;
    bottom: 0;
    left: 0;
    z-index: 2;
}

/* ---------- LOCATION ---------- */
.location {
    padding: 120px 0;
    background: var(--cream);
}

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

.location-text {
    padding-right: 20px;
}

.location-desc {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 40px;
}

.location-landmarks {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.landmark {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
}

.landmark:first-child {
    border-top: 1px solid var(--border);
}

.landmark-name {
    font-weight: 500;
    color: var(--text);
}

.landmark-dist {
    font-size: 0.85rem;
    color: var(--gold-dark);
    font-weight: 600;
}

.location-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 420px;
}

/* ---------- GALLERY ---------- */
.gallery {
    padding: 120px 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 240px);
    gap: 20px;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.gallery-item--wide {
    grid-column: span 7;
}

.gallery-item:not(.gallery-item--wide) {
    grid-column: span 5;
}

.gallery-item:nth-child(2) {
    grid-column: 9 / span 4;
    grid-row: 1 / span 2;
}

/* ---------- CONTACT ---------- */
.contact {
    padding: 120px 0;
    background: var(--cream-dark);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info .section-title {
    margin-bottom: 20px;
}

.contact-desc {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-detail {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 52px;
    height: 52px;
    background: rgba(201, 168, 76, 0.12);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail strong {
    display: block;
    font-family: 'Lato', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 4px;
}

.contact-detail p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.65;
}

.contact-detail a {
    color: var(--gold-dark);
    transition: color var(--transition);
}

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

/* Form */
.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: 32px;
    color: var(--navy);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    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(201, 168, 76, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 90px;
}

.form-note {
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-lighter);
    margin-top: 16px;
}

/* Success state */
.form-success {
    text-align: center;
    padding: 40px 20px;
}

.form-success h3 {
    font-size: 1.6rem;
    margin: 20px 0 12px;
}

.form-success p {
    color: var(--text-light);
    margin-bottom: 28px;
    line-height: 1.7;
}

/* ---------- FOOTER ---------- */
.site-footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 80px 0 0;
}

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

.footer-brand .logo-text {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 16px;
    display: block;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 300px;
}

.footer-nav h4,
.footer-contact h4 {
    color: var(--white);
    font-family: 'Lato', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-nav a {
    font-size: 0.92rem;
    transition: color var(--transition);
}

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

.footer-contact address {
    font-style: normal;
    line-height: 1.8;
    margin-bottom: 12px;
}

.footer-contact a {
    color: var(--gold);
    transition: color var(--transition);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom a {
    color: var(--gold);
    transition: color var(--transition);
}

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

/* ---------- SCROLL ANIMATIONS ---------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

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

    .hero-right {
        max-width: 500px;
    }

    .intro-grid,
    .amenities-layout,
    .location-layout,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .intro-image-wrap {
        order: -1;
        max-width: 500px;
    }

    .amenities-image-stack {
        height: 400px;
        max-width: 400px;
    }

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

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

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .site-nav {
        position: fixed;
        inset: 0;
        background: rgba(9, 21, 40, 0.97);
        backdrop-filter: blur(12px);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
    }

    .site-nav.open {
        opacity: 1;
        visibility: visible;
    }

    .site-nav ul {
        flex-direction: column;
        gap: 28px;
        text-align: center;
    }

    .site-nav a {
        font-size: 1.2rem;
        color: rgba(255, 255, 255, 0.85);
    }

    .site-header.scrolled .site-nav a {
        color: rgba(255, 255, 255, 0.85);
    }

    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }

    .hero-content {
        padding-top: 80px;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .stat-card {
        padding: 16px 10px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .gallery-item--wide,
    .gallery-item:not(.gallery-item--wide) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-item:nth-child(2) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-grid .gallery-item {
        height: 240px;
    }

    .contact-form-wrap {
        padding: 32px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .amenities-image-stack {
        display: none;
    }

    .location-text {
        padding-right: 0;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-card img {
        height: 180px;
    }

    .intro-image-wrap img {
        height: 320px;
    }

    .intro-accent {
        width: 100px;
        height: 100px;
        bottom: -16px;
        right: -16px;
    }

    .section-title {
        font-size: 1.8rem;
    }
}
