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

:root {
    --clr-terra-950: #2C1810;
    --clr-terra-900: #3D2317;
    --clr-terra-800: #5C3A2A;
    --clr-terra-700: #7A4F3C;
    --clr-terra-600: #8B5E4B;
    --clr-terra-500: #A06B54;
    --clr-terra-400: #B8896A;
    --clr-terra-300: #CFA88E;
    --clr-terra-200: #E0C4AE;
    --clr-terra-100: #EDD9C8;
    --clr-terra-50:  #F7EDE2;

    --clr-sand-950: #1A1612;
    --clr-sand-900: #2A231C;
    --clr-sand-800: #3D342A;
    --clr-sand-700: #544A3E;
    --clr-sand-600: #6E6355;
    --clr-sand-500: #8A7E6E;
    --clr-sand-400: #A89B88;
    --clr-sand-300: #C4B8A6;
    --clr-sand-200: #DDD3C4;
    --clr-sand-100: #EDE6DA;
    --clr-sand-50:  #F8F4EE;

    --clr-cream: #FDF9F4;
    --clr-warm-white: #FBF7F2;
    --clr-text-dark: #2C1810;
    --clr-text-muted: #6E5E52;
    --clr-text-light: #FDF9F4;
    --clr-accent: #A0522D;
    --clr-accent-dark: #7A3E1F;
    --clr-border: #E0D5C9;
    --clr-success: #4A7C59;

    --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-sans: 'Karla', 'Helvetica Neue', Arial, sans-serif;

    --shadow-sm: 0 1px 3px rgba(44, 24, 16, 0.08);
    --shadow-md: 0 4px 16px rgba(44, 24, 16, 0.10);
    --shadow-lg: 0 8px 32px rgba(44, 24, 16, 0.12);
    --shadow-xl: 0 16px 48px rgba(44, 24, 16, 0.14);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-sans);
    color: var(--clr-text-dark);
    background-color: var(--clr-cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a {
    color: var(--clr-accent);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--clr-accent-dark);
}

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

/* ─── Typography ─── */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.2;
    color: var(--clr-text-dark);
}

.section-label {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--clr-accent);
    margin-bottom: 12px;
}

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

.section-subtitle {
    font-size: 1.125rem;
    color: var(--clr-text-muted);
    max-width: 560px;
    line-height: 1.7;
}

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

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

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

.section-label-light {
    color: var(--clr-terra-200);
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: 0.02em;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--clr-accent);
    color: var(--clr-text-light);
    border-color: var(--clr-accent);
}

.btn-primary:hover {
    background: var(--clr-accent-dark);
    border-color: var(--clr-accent-dark);
    color: var(--clr-text-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-light {
    background: transparent;
    color: var(--clr-text-light);
    border-color: rgba(253, 249, 244, 0.6);
}

.btn-outline-light:hover {
    background: var(--clr-text-light);
    color: var(--clr-terra-900);
    border-color: var(--clr-text-light);
    transform: translateY(-2px);
}

.btn-outline-terra {
    background: transparent;
    color: var(--clr-accent);
    border-color: var(--clr-accent);
}

.btn-outline-terra:hover {
    background: var(--clr-accent);
    color: var(--clr-text-light);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.875rem;
}

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

.btn-full {
    width: 100%;
}

/* ─── Header ─── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 249, 244, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: all var(--transition);
}

.site-header.scrolled {
    background: rgba(253, 249, 244, 0.97);
    border-bottom-color: var(--clr-border);
    box-shadow: var(--shadow-sm);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--clr-text-dark);
}

.logo-mark {
    color: var(--clr-accent);
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.main-nav a:not(.btn) {
    color: var(--clr-text-dark);
    font-size: 0.9375rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    transition: all var(--transition);
}

.main-nav a:not(.btn):hover {
    color: var(--clr-accent);
    background: var(--clr-terra-50);
}

/* Hamburger */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    position: relative;
    z-index: 1001;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--clr-text-dark);
    border-radius: 2px;
    transition: all var(--transition);
}

.hamburger {
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}

.hamburger::before {
    top: -7px;
}

.hamburger::after {
    top: 7px;
}

.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

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

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(44, 24, 16, 0.55) 0%,
        rgba(44, 24, 16, 0.65) 50%,
        rgba(44, 24, 16, 0.80) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 120px 24px 80px;
    max-width: 800px;
}

.hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--clr-terra-200);
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.75rem, 6vw, 4.5rem);
    font-weight: 500;
    color: var(--clr-text-light);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-title em {
    font-style: italic;
    color: var(--clr-terra-200);
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: rgba(253, 249, 244, 0.85);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 40px;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    color: var(--clr-text-light);
    opacity: 0.6;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

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

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

.intro-image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.intro-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/5;
}

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

.intro-text p {
    color: var(--clr-text-muted);
    margin-bottom: 16px;
    font-size: 1.0625rem;
}

.intro-text p em {
    font-style: italic;
    color: var(--clr-text-dark);
}

.intro-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--clr-border);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--clr-accent);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--clr-text-muted);
    line-height: 1.4;
}

/* ─── Rooms ─── */
.rooms {
    padding: 120px 0;
    background: var(--clr-warm-white);
}

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

.room-card {
    background: var(--clr-cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

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

.room-image {
    overflow: hidden;
    aspect-ratio: 3/2;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.room-info {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.room-name {
    font-size: 1.5rem;
    font-weight: 600;
}

.room-desc {
    color: var(--clr-text-muted);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin-top: 4px;
}

.room-features li {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--clr-terra-700);
    background: var(--clr-terra-50);
    padding: 6px 14px;
    border-radius: var(--radius-full);
}

.room-info .btn {
    margin-top: 8px;
    align-self: flex-start;
}

/* ─── Amenities ─── */
.amenities {
    padding: 120px 0;
    background: var(--clr-cream);
}

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

.amenity-card {
    padding: 40px 32px;
    background: var(--clr-warm-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--clr-border);
    transition: all var(--transition);
}

.amenity-card:hover {
    border-color: var(--clr-terra-300);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.amenity-icon {
    color: var(--clr-accent);
    margin-bottom: 20px;
}

.amenity-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.amenity-card p {
    color: var(--clr-text-muted);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* ─── Location ─── */
.location {
    padding: 120px 0;
    background: var(--clr-warm-white);
}

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

.location-info .section-title {
    margin-bottom: 24px;
}

.location-address {
    font-style: normal;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--clr-text-dark);
    margin-bottom: 24px;
}

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

.location-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
}

.location-detail svg {
    color: var(--clr-accent);
    flex-shrink: 0;
}

.location-detail a {
    color: var(--clr-text-dark);
    font-weight: 500;
}

.location-detail a:hover {
    color: var(--clr-accent);
}

.location-note {
    color: var(--clr-text-muted);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.location-map iframe {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* ─── Gallery ─── */
.gallery {
    padding: 120px 0;
    background: var(--clr-cream);
}

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

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.gallery-item:hover {
    box-shadow: var(--shadow-lg);
    transform: scale(1.02);
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ─── CTA ─── */
.cta {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

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

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

.cta .hero-overlay {
    background: linear-gradient(
        to right,
        rgba(44, 24, 16, 0.82) 0%,
        rgba(44, 24, 16, 0.72) 100%
    );
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
}

.cta-content .section-title {
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.125rem;
    color: rgba(253, 249, 244, 0.85);
    line-height: 1.8;
    margin-bottom: 40px;
}

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

/* ─── Contact ─── */
.contact {
    padding: 120px 0;
    background: var(--clr-warm-white);
}

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

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

.contact-info > p {
    color: var(--clr-text-muted);
    font-size: 1.0625rem;
    margin-bottom: 32px;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 1rem;
    color: var(--clr-text-dark);
}

.contact-item svg {
    color: var(--clr-accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item a {
    color: var(--clr-text-dark);
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--clr-accent);
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--clr-text-dark);
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--clr-text-dark);
    background: var(--clr-warm-white);
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    transition: all var(--transition);
    outline: none;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--clr-accent);
    box-shadow: 0 0 0 3px rgba(160, 82, 45, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--clr-sand-400);
}

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

.form-note {
    font-size: 0.8125rem;
    color: var(--clr-text-muted);
    text-align: center;
    margin-top: 4px;
}

.form-success {
    text-align: center;
    padding: 48px 24px;
    color: var(--clr-success);
}

.form-success h3 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: var(--clr-success);
    margin: 16px 0 8px;
}

.form-success p {
    color: var(--clr-text-muted);
    font-size: 1rem;
}

/* ─── Footer ─── */
.site-footer {
    background: var(--clr-terra-950);
    color: var(--clr-terra-200);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(224, 213, 201, 0.15);
}

.footer-brand .logo-text {
    color: var(--clr-text-light);
}

.footer-brand p {
    margin-top: 16px;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--clr-terra-300);
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--clr-terra-200);
    margin-bottom: 20px;
}

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

.footer-links a {
    color: var(--clr-terra-300);
    font-size: 0.9375rem;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--clr-text-light);
}

.footer-contact p {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--clr-terra-300);
    margin-bottom: 8px;
}

.footer-contact a {
    color: var(--clr-terra-300);
}

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

.footer-bottom {
    padding: 24px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-size: 0.875rem;
    color: var(--clr-terra-600);
}

.footer-bottom a {
    color: var(--clr-terra-500);
}

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

/* ─── Reveal Animations ─── */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(32px);
        transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    }

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

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

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

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

    .gallery-item:nth-child(1) { grid-column: 1 / 3; }
    .gallery-item:nth-child(2) { grid-column: 3 / 5; }
    .gallery-item:nth-child(3) { grid-column: 5 / 7; }
    .gallery-item:nth-child(4) { grid-column: 1 / 3; }
    .gallery-item:nth-child(5) { grid-column: 3 / 5; }
    .gallery-item:nth-child(6) { grid-column: 5 / 7; }
}

@media (max-width: 900px) {
    .intro-grid,
    .location-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .intro-image-wrapper {
        max-width: 500px;
    }

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

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

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 85vw);
        height: 100vh;
        height: 100dvh;
        background: var(--clr-cream);
        box-shadow: var(--shadow-xl);
        padding: 100px 32px 40px;
        transform: translateX(100%);
        transition: transform var(--transition);
        z-index: 999;
    }

    .main-nav.open {
        transform: translateX(0);
    }

    .main-nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }

    .main-nav a:not(.btn) {
        font-size: 1.125rem;
        padding: 14px 16px;
    }

    .main-nav .btn {
        margin-top: 16px;
        text-align: center;
    }

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

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

    .hero-title {
        font-size: clamp(2.25rem, 8vw, 3.5rem);
    }

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

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

    .cta-actions {
        flex-direction: column;
    }

    .cta-actions .btn {
        width: 100%;
        max-width: 320px;
    }

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

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

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

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

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

    .gallery-item:nth-child(1),
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4),
    .gallery-item:nth-child(5),
    .gallery-item:nth-child(6) {
        grid-column: auto;
        grid-row: auto;
    }

    .intro-stats {
        flex-direction: column;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .intro,
    .rooms,
    .amenities,
    .location,
    .gallery,
    .cta,
    .contact {
        padding: 80px 0;
    }

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

    .section-header {
        margin-bottom: 48px;
    }
}

/* Mobile nav overlay */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(44, 24, 16, 0.5);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.nav-overlay.active {
    opacity: 1;
    pointer-events: all;
}
