/* ============================================
   Home Inn & Suites - Shared Styles
   ============================================ */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #1E3A8A;
    --navy-light: #2D4A9A;
    --blue: #3B82F6;
    --gold: #A16207;
    --gold-hover: #854D0E;
    --gold-light: #EAB308;
    --bg: #F8FAFC;
    --white: #FFFFFF;
    --text: #1E293B;
    --text-muted: #64748B;
    --text-light: #64748B;
    --border: #E2E8F0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-lg: 20px;
}

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

.skip-link {
    position: absolute;
    top: -50px; left: 0;
    background: var(--navy);
    color: var(--white);
    padding: 10px 18px;
    z-index: 9999;
    font-weight: bold;
    text-decoration: none;
    border-radius: 0 0 8px 0;
    transition: top 0.2s;
}
.skip-link:focus { top: 0; }

a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, [tabindex]:focus-visible {
    outline: 3px solid var(--blue);
    outline-offset: 3px;
    border-radius: 4px;
}

body {
    font-family: 'Karla', system-ui, sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ---- NAVIGATION ---- */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.75rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s ease;
}
nav.scrolled { box-shadow: var(--shadow-md); }

.logo a { display: flex; align-items: center; text-decoration: none; }
.logo img { height: 48px; width: auto; display: block; }

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.25rem;
    align-items: center;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: background 0.2s ease, color 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
}
.nav-links a:hover { background: var(--bg); color: var(--navy); }
.nav-links a.active {
    background: var(--bg);
    color: var(--navy);
}

.nav-links a.reserve-btn {
    background: var(--navy);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.2s ease;
    cursor: pointer;
}
.nav-links a.reserve-btn:hover {
    background: var(--navy-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30,58,138,0.3);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}
.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ---- HERO ---- */
.hero {
    min-height: 100vh;
    margin-top: 72px;
    background-color: #0F172A;
    background: linear-gradient(165deg, rgba(10,20,50,0.45), rgba(10,20,50,0.65)),
                url('exterior-night.jpg') center 40%/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
}

.hero-content {
    max-width: 720px;
    animation: fadeUp 0.8s ease-out;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-logo {
    height: 100px;
    width: auto;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.hero-tagline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.hero-sub {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.88);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
    margin-top: 72px;
    padding: 5rem 2rem 4rem;
    background: linear-gradient(165deg, rgba(10,20,50,0.55), rgba(10,20,50,0.75)),
                url('exterior-day.jpg') center 40%/cover no-repeat;
    text-align: center;
    color: var(--white);
}
.page-hero h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.3px;
}
.page-hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: 'Karla', sans-serif;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.75px;
    transition: all 0.25s ease;
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(202,138,4,0.35);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}

.btn-navy {
    background: var(--navy);
    color: var(--white);
}
.btn-navy:hover {
    background: var(--navy-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(30,58,138,0.35);
}

/* ---- HIGHLIGHTS BAR ---- */
.highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--navy);
}

.highlight-item {
    padding: 1.25rem 1rem;
    text-align: center;
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.highlight-item:last-child { border-right: none; }
.highlight-item svg { width: 20px; height: 20px; stroke: var(--gold-light); flex-shrink: 0; }

/* ---- SECTIONS ---- */
section { padding: 6rem 2rem; }

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.section-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 0.75rem;
    display: block;
}
.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
    letter-spacing: -0.3px;
}
.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

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

/* ---- GALLERY ---- */
#gallery { background: var(--white); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 0.75rem;
    max-width: 1100px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 16/10;
}
.gallery-item.featured {
    grid-column: span 2;
    aspect-ratio: 16/9;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 50%, rgba(10,20,50,0.7));
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

/* ---- LIGHTBOX ---- */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10,20,50,0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}
.lightbox.active { display: flex; }

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}
.lightbox-img {
    width: 100%;
    height: auto;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
}
.lightbox-close {
    position: absolute;
    top: -50px; right: 0;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    background: rgba(255,255,255,0.1);
    border: none;
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }

.lightbox-nav {
    position: absolute;
    top: 50%; width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}
.lightbox-btn {
    background: rgba(255,255,255,0.1);
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    width: 48px; height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    pointer-events: all;
    margin: 0 -24px;
}
.lightbox-btn:hover { background: rgba(255,255,255,0.25); }

/* ---- AMENITIES ---- */
#amenities { background: var(--bg); }

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
}

.amenity-card {
    background: var(--white);
    padding: 1.75rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.25s ease;
    border: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.amenity-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--blue);
}

.amenity-icon {
    width: 44px; height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, var(--navy), var(--blue));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.amenity-icon svg {
    width: 22px; height: 22px;
    stroke: var(--white);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.amenity-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.35rem;
}
.amenity-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ---- ROOMS ---- */
#rooms { background: var(--white); }

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.room-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}
.room-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.room-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.room-content {
    padding: 1.5rem;
}
.room-content h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 1rem;
}

.room-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}
.room-features li {
    font-size: 0.88rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.room-features li::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ---- REVIEWS ---- */
#reviews { background: var(--bg); }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.review-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    position: relative;
}

.review-stars {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    letter-spacing: 2px;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 1.25rem;
    font-style: italic;
}

.review-author {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--navy);
}
.review-source {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 0.15rem;
}

/* ---- EXPLORE ---- */
#explore { background: var(--white); }

.explore-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}

.attraction-card {
    background: var(--bg);
    padding: 1.75rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all 0.25s ease;
    text-align: center;
}
.attraction-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--blue);
}

.attraction-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}
.attraction-distance {
    display: inline-block;
    background: var(--navy);
    color: var(--white);
    padding: 0.2rem 0.65rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.attraction-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ---- BOOKING / CONTACT ---- */
#book {
    background: var(--navy);
    color: var(--white);
}
#book .section-label { color: var(--gold-light); }
#book .section-title { color: var(--white); }
#book .section-subtitle { color: rgba(255,255,255,0.82); }

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2.5rem;
    align-items: start;
}

.booking-info h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.booking-info p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.booking-detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.booking-detail svg {
    width: 20px; height: 20px;
    stroke: var(--gold-light);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}
.booking-detail span {
    color: rgba(255,255,255,0.88);
    font-size: 0.95rem;
}
.booking-detail a {
    color: var(--gold-light);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}
.booking-detail a:hover { color: var(--white); }

.call-reserve-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    background: var(--gold);
    color: var(--white);
    padding: 0.75rem 1.75rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    cursor: pointer;
}
.call-reserve-btn:hover {
    background: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(202,138,4,0.3);
}
.call-reserve-btn svg {
    width: 18px; height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.contact-form {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.1);
}
.contact-form h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}
.form-group { display: flex; flex-direction: column; }

.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.7rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.08);
    color: var(--white);
    font-family: 'Karla', sans-serif;
    font-size: 1rem;
    transition: border-color 0.2s, background 0.2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.4);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: rgba(255,255,255,0.12);
    outline: none;
}
.form-group select option { background: var(--navy); color: var(--white); }
.form-group textarea { min-height: 100px; resize: vertical; }

.submit-btn {
    width: 100%;
    padding: 0.85rem;
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-family: 'Karla', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.25s ease;
    margin-top: 0.5rem;
}
.submit-btn:hover {
    background: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(202,138,4,0.3);
}

/* ---- CONTACT INFO CENTERED (no form) ---- */
.booking-info-centered {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}
.booking-info-centered h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.booking-info-centered > p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 2rem;
    line-height: 1.7;
}
.contact-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    text-align: left;
    margin-bottom: 2rem;
}
.booking-info-centered .call-reserve-btn {
    margin-top: 0.5rem;
}

@media (max-width: 600px) {
    .contact-details-grid {
        grid-template-columns: 1fr;
    }
}

/* ---- ABOUT / BODY COPY SECTION ---- */
.about-section {
    background: var(--white);
    padding: 5rem 2rem;
}
.about-content {
    max-width: 800px;
    margin: 0 auto;
}
.about-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 1.5rem;
}
.about-content p:last-child {
    margin-bottom: 0;
}
.about-content a {
    color: var(--navy);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: var(--gold);
    text-underline-offset: 3px;
    transition: color 0.2s, text-decoration-color 0.2s;
}
.about-content a:hover {
    color: var(--gold);
    text-decoration-color: var(--gold);
}

/* ---- THINGS TO DO PAGE ---- */
.things-intro-section {
    background: var(--white);
    padding: 4rem 2rem 2rem;
}
.things-section {
    background: var(--white);
    padding: 0 2rem 5rem;
}
.thing-block {
    max-width: 800px;
    margin: 0 auto 3rem;
}
.thing-block:last-child {
    margin-bottom: 0;
}
.thing-block h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
    letter-spacing: -0.2px;
}
.thing-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 1rem;
}
.thing-block p:last-child {
    margin-bottom: 0;
}
.thing-block a {
    color: var(--navy);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: var(--gold);
    text-underline-offset: 3px;
    transition: color 0.2s;
}
.thing-block a:hover {
    color: var(--gold);
}
.thing-cta {
    background: var(--bg);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    margin-top: 3rem;
}
.thing-cta p {
    text-align: center;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .thing-block h2 { font-size: 1.35rem; }
    .about-section { padding: 3.5rem 1.25rem; }
    .things-intro-section { padding: 3rem 1.25rem 1.5rem; }
    .things-section { padding: 0 1.25rem 4rem; }
}

/* ---- UTILITY CLASSES ---- */
.form-status {
    margin-bottom: 0.5rem;
    font-weight: 600;
}
.form-status.success { color: #4ade80; }
.honeypot { display: none; }
.form-group--special { margin-bottom: 1rem; }
.mt-075 { margin-top: 0.75rem; }

/* ---- CTA BANNER ---- */
.cta-banner {
    background: var(--navy);
    color: var(--white);
    padding: 4rem 2rem;
    text-align: center;
}
.cta-banner h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    margin-bottom: 0.75rem;
}
.cta-banner p {
    color: rgba(255,255,255,0.82);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---- FOOTER ---- */
footer {
    background: #0F172A;
    color: rgba(255,255,255,0.8);
    padding: 4rem 2rem 1.5rem;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

footer h4 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}
footer p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 0.35rem; }
footer a {
    color: var(--gold-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
    display: block;
    margin-bottom: 0.4rem;
}
footer a:hover { color: var(--white); }

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
}

/* ---- SCROLL ANIMATIONS ---- */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .rooms-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
    .booking-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    nav { padding: 0.75rem 1.25rem; }
    .nav-links {
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-md);
        gap: 0;
        opacity: 0;
        transform: translateY(-8px);
        pointer-events: none;
        transition: opacity 0.25s ease-out, transform 0.25s ease-out;
    }
    .nav-links.open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: all;
    }
    .nav-links a {
        padding: 0.75rem 1rem;
        width: 100%;
        border-radius: 8px;
    }
    .mobile-toggle { display: block; }

    .hero { min-height: 85vh; }
    .hero-tagline { font-size: 2.2rem; }
    .hero-sub { font-size: 1rem; }

    .page-hero { padding: 4rem 1.5rem 3rem; }
    .page-hero h1 { font-size: 2.2rem; }

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

    .section-title { font-size: 2rem; }
    section { padding: 4rem 1.25rem; }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    .gallery-item.featured { grid-column: span 2; }

    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
    .hero-tagline { font-size: 1.8rem; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .btn { width: 100%; justify-content: center; }
    .highlights { grid-template-columns: 1fr 1fr; font-size: 0.85rem; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item.featured { grid-column: span 1; }
    .attractions-grid { grid-template-columns: 1fr; }
    .rooms-grid { grid-template-columns: 1fr; }
    .page-hero h1 { font-size: 1.8rem; }
    .cta-banner h2 { font-size: 1.6rem; }
}
