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

:root {
    --emerald-900: #042f2e;
    --emerald-800: #064e3b;
    --emerald-700: #065f46;
    --emerald-600: #047857;
    --emerald-500: #059669;
    --cream-50:  #FAF8F5;
    --cream-100: #F5F0E8;
    --cream-200: #EDE6D6;
    --cream-300: #E0D5C0;
    --gold-400:  #C9A84C;
    --gold-500:  #B8943F;
    --text-dark: #1a1a1a;
    --text-mid:  #3d3d3d;
    --text-light: #6b6b6b;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans:  'Lato', system-ui, sans-serif;
    --radius: 4px;
    --shadow-sm: 0 1px 3px rgba(4,47,46,0.06), 0 1px 2px rgba(4,47,46,0.04);
    --shadow-md: 0 4px 16px rgba(4,47,46,0.08), 0 2px 4px rgba(4,47,46,0.04);
    --shadow-lg: 0 12px 40px rgba(4,47,46,0.12), 0 4px 12px rgba(4,47,46,0.06);
}

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

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
address { font-style: normal; }

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

/* ── Typography ─────────────────────────────────────── */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--emerald-700);
    margin-bottom: 16px;
}
.section-eyebrow::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--emerald-600);
}
.section-eyebrow-light { color: rgba(255,255,255,0.8); }
.section-eyebrow-light::before { background: rgba(255,255,255,0.5); }

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    line-height: 1.2;
    color: var(--emerald-900);
    margin-bottom: 20px;
}
.section-title-light { color: #fff; }

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 560px;
    line-height: 1.7;
}
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-subtitle { margin: 0 auto; }

/* ── Buttons ────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 14px 32px;
    border-radius: var(--radius);
    transition: all 0.3s ease;
    white-space: nowrap;
}
.btn-primary {
    background: var(--emerald-700);
    color: #fff;
}
.btn-primary:hover { background: var(--emerald-800); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-secondary {
    background: transparent;
    color: var(--emerald-700);
    border: 1px solid var(--emerald-700);
}
.btn-secondary:hover { background: var(--emerald-700); color: #fff; }

.btn-outline-light {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.5);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

.btn-full { width: 100%; justify-content: center; }
.btn-lg { padding: 18px 40px; font-size: 0.938rem; }

/* ── Navigation ─────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250,248,245,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--cream-200);
    transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: var(--shadow-sm); }

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--emerald-800);
}
.nav-logo-icon { color: var(--emerald-700); }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: var(--text-mid);
    transition: color 0.2s;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--emerald-600);
    transition: width 0.3s ease;
}
.nav-link:hover { color: var(--emerald-700); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
    font-size: 0.813rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    background: var(--emerald-700);
    padding: 10px 24px;
    border-radius: var(--radius);
    transition: all 0.3s ease;
}
.nav-cta:hover { background: var(--emerald-800); transform: translateY(-1px); }

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.nav-toggle-line {
    width: 22px;
    height: 1.5px;
    background: var(--text-dark);
    transition: all 0.3s ease;
    transform-origin: center;
}
.nav-toggle.active .nav-toggle-line:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.nav-toggle.active .nav-toggle-line:nth-child(2) { opacity: 0; }
.nav-toggle.active .nav-toggle-line:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

/* Mobile overlay */
.nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--cream-50);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.nav-overlay.open { opacity: 1; pointer-events: all; }
.nav-overlay-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
.nav-overlay-link {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: var(--emerald-900);
    transition: color 0.2s;
}
.nav-overlay-link:hover { color: var(--emerald-600); }
.nav-overlay-cta {
    margin-top: 16px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    background: var(--emerald-700);
    padding: 14px 40px;
    border-radius: var(--radius);
}

/* ── Hero ───────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: 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(
        180deg,
        rgba(4,47,46,0.55) 0%,
        rgba(4,47,46,0.40) 40%,
        rgba(4,47,46,0.70) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 720px;
    padding: 0 24px;
    margin-bottom: 80px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.85);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.hero-badge svg { opacity: 0.7; }
.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 500;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}
.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Floating stat cards */
.hero-stats {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 20px;
    padding: 0 24px;
    flex-wrap: wrap;
    justify-content: center;
}
.stat-card {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    border-radius: 8px;
    padding: 24px 32px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    min-width: 160px;
}
.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--emerald-800);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label {
    font-size: 0.813rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--text-light);
    text-transform: uppercase;
}

/* ── Section Divider ────────────────────────────────── */
.section-divider { overflow: hidden; line-height: 0; }
.section-divider svg { display: block; width: 100%; height: 40px; }

/* ── Intro ──────────────────────────────────────────── */
.intro {
    padding: 100px 0;
    background: var(--cream-100);
}
.intro .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.intro-content { max-width: 480px; }
.intro-text {
    font-size: 1.063rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 20px;
}
.intro-text em { color: var(--emerald-700); font-style: italic; }
.intro-image { position: relative; }
.intro-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}
.intro-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    border: 2px solid var(--emerald-600);
    border-radius: 8px;
    z-index: -1;
    opacity: 0.3;
}

/* ── Accommodations ─────────────────────────────────── */
.accommodations {
    padding: 100px 0;
    background: var(--cream-50);
}
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.room-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
}
.room-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.room-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/2;
}
.room-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.room-card:hover .room-card-image img { transform: scale(1.05); }
.room-card-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--emerald-700);
    color: #fff;
    font-size: 0.688rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
}
.room-card-body { padding: 28px; }
.room-card-title {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--emerald-900);
    margin-bottom: 12px;
}
.room-card-desc {
    font-size: 0.938rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}
.room-card-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}
.room-card-amenities li {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--emerald-700);
    background: var(--cream-100);
    padding: 6px 12px;
    border-radius: 20px;
}

/* ── Experience ─────────────────────────────────────── */
.experience {
    padding: 100px 0;
    background: var(--cream-100);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.feature-card {
    text-align: center;
    padding: 40px 24px;
    background: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-icon {
    color: var(--emerald-700);
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}
.feature-title {
    font-family: var(--font-serif);
    font-size: 1.188rem;
    font-weight: 600;
    color: var(--emerald-900);
    margin-bottom: 12px;
}
.feature-desc {
    font-size: 0.938rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ── Grounds Gallery ────────────────────────────────── */
.grounds {
    padding: 100px 0;
    background: var(--cream-50);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 240px);
    gap: 16px;
}
.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}
.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-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(4,47,46,0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    color: #fff;
    font-weight: 500;
}
.gallery-item--large { grid-column: span 5; }
.gallery-item:nth-child(2) { grid-column: span 3.5; }
.gallery-item:nth-child(3) { grid-column: span 3.5; }
.gallery-item:nth-child(4) { grid-column: span 6; }
.gallery-item:nth-child(5) { grid-column: span 6; }

/* ── Testimonials ───────────────────────────────────── */
.testimonials {
    padding: 100px 0;
    background: var(--emerald-900);
}
.testimonials .section-eyebrow { color: var(--gold-400); }
.testimonials .section-eyebrow::before { background: var(--gold-400); }
.testimonials .section-title { color: #fff; }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.testimonial-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 40px 32px;
    transition: all 0.3s ease;
}
.testimonial-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.testimonial-quote {
    color: var(--gold-400);
    margin-bottom: 20px;
    opacity: 0.8;
}
.testimonial-text {
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
    margin-bottom: 28px;
    font-style: italic;
}
.testimonial-author { display: flex; flex-direction: column; gap: 4px; }
.testimonial-name {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}
.testimonial-location {
    font-size: 0.813rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.04em;
}

/* ── 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-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(4,47,46,0.85) 0%, rgba(6,79,59,0.75) 100%);
}
.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}
.cta-text {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
    margin-bottom: 40px;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Contact ────────────────────────────────────────── */
.contact {
    padding: 100px 0;
    background: var(--cream-100);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.contact-info { max-width: 440px; }
.contact-desc {
    font-size: 1.063rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 40px;
}
.contact-details { display: flex; flex-direction: column; gap: 28px; }
.contact-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.contact-detail-icon {
    width: 48px;
    height: 48px;
    background: var(--emerald-700);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}
.contact-detail-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 4px;
}
.contact-detail-value {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
}
.contact-detail-value a {
    color: var(--emerald-700);
    transition: color 0.2s;
}
.contact-detail-value a:hover { color: var(--emerald-500); }

/* Form */
.contact-form-wrapper {
    background: #fff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 0.813rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-mid);
    margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--cream-200);
    border-radius: var(--radius);
    font-family: var(--font-sans);
    font-size: 0.938rem;
    color: var(--text-dark);
    background: var(--cream-50);
    transition: all 0.2s ease;
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--emerald-600);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(4,120,87,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
    display: none;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding: 16px 20px;
    background: rgba(4,120,87,0.08);
    border: 1px solid rgba(4,120,87,0.2);
    border-radius: var(--radius);
    color: var(--emerald-800);
    font-size: 0.938rem;
}
.form-success.show { display: flex; }
.form-success svg { color: var(--emerald-600); flex-shrink: 0; }

/* ── Footer ─────────────────────────────────────────── */
.footer {
    background: var(--emerald-900);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.2fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
}
.footer-logo-icon { color: var(--emerald-500); }
.footer-tagline {
    font-size: 0.938rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
}
.footer-heading {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a {
    font-size: 0.938rem;
    color: rgba(255,255,255,0.6);
    transition: color 0.2s;
}
.footer-nav a:hover { color: var(--gold-400); }
.footer-contact address { font-size: 0.938rem; line-height: 1.8; }
.footer-contact a {
    color: rgba(255,255,255,0.6);
    transition: color 0.2s;
}
.footer-contact a:hover { color: var(--gold-400); }
.footer-hours ul { display: flex; flex-direction: column; gap: 10px; }
.footer-hours li {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    gap: 16px;
}
.footer-hours li span:first-child { color: rgba(255,255,255,0.5); }
.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.813rem;
    color: rgba(255,255,255,0.4);
}

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .rooms-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 200px);
    }
    .gallery-item--large { grid-column: span 2; }
    .gallery-item:nth-child(2) { grid-column: span 1; }
    .gallery-item:nth-child(3) { grid-column: span 1; }
    .gallery-item:nth-child(4) { grid-column: span 1; }
    .gallery-item:nth-child(5) { grid-column: span 1; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .nav-overlay.open + .nav .nav-toggle,
    .nav-toggle.active { display: flex; }

    .hero-content { margin-bottom: 60px; }
    .hero-stats { gap: 12px; }
    .stat-card { min-width: 140px; padding: 20px 24px; }
    .stat-number { font-size: 1.75rem; }

    .intro .container { grid-template-columns: 1fr; gap: 40px; }
    .intro-image { max-width: 480px; }

    .rooms-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .features-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }

    .contact-grid { grid-template-columns: 1fr; }
    .contact-info { max-width: 100%; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrapper { padding: 28px; }

    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .gallery-item { aspect-ratio: 16/10; }
    .gallery-item--large { grid-column: span 1; }
    .gallery-item:nth-child(n) { grid-column: span 1; }
    .gallery-item-overlay { opacity: 1; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .cta-actions { flex-direction: column; align-items: center; }
    .cta-actions .btn { width: 100%; justify-content: center; }
    .hero-stats { flex-direction: column; width: 100%; }
    .stat-card { width: 100%; }
}

/* ── Reduced Motion ─────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
    .room-card, .feature-card, .testimonial-card {
        transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.3s ease;
    }
}
