/* ==========================================================================
   Treasures Hotel & Suites
   Premium Heritage Boutique Hotel
   Luxury aesthetic: dark palette, cinematic imagery, extreme whitespace
   ========================================================================== */

/* ---------- Design Tokens ---------- */
:root {
    --gold: #C5A55A;
    --gold-light: #D8C48A;
    --gold-dark: #A88B3D;
    --gold-muted: rgba(197, 165, 90, 0.15);
    --charcoal: #1A1A1A;
    --charcoal-mid: #2C2C2C;
    --charcoal-light: #888;
    --cream: #F5F0E8;
    --cream-dark: #EDE5D8;
    --teal: #2A3A30;
    --teal-deep: #1C2A22;
    --white: #FFFFFF;
    --off-white: #FAFAF8;

    --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --header-height: 90px;
    --container-width: 1200px;
    --container-narrow: 900px;
    --radius: 2px;
    --shadow: 0 4px 30px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 60px rgba(0,0,0,0.1);
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--charcoal);
    background: var(--white);
}

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

a {
    color: var(--gold-dark);
    text-decoration: none;
    transition: color var(--transition);
}
a:hover { color: var(--gold); }

ul { list-style: none; }

.skip-link {
    position: absolute; top: -100%; left: 50%; transform: translateX(-50%);
    background: var(--charcoal); color: var(--white);
    padding: 0.5rem 1.5rem; z-index: 9999; border-radius: var(--radius);
}
.skip-link:focus { top: 1rem; color: var(--white); }

/* ---------- Layout ---------- */
.container {
    width: 100%; max-width: var(--container-width);
    margin: 0 auto; padding: 0 2rem;
}
.container-narrow {
    width: 100%; max-width: var(--container-narrow);
    margin: 0 auto; padding: 0 2rem;
}

section { padding: 7rem 0; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.15;
    color: var(--charcoal);
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(3rem, 6vw, 5rem); font-weight: 300; }
h2 { font-size: clamp(2.2rem, 4.5vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.1rem; font-weight: 500; }

.section-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: block;
}

.section-heading { margin-bottom: 1.5rem; }

.section-intro {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--charcoal-light);
    max-width: 560px;
    margin-bottom: 4rem;
    line-height: 1.9;
}

.text-center { text-align: center; }
.text-center .section-intro { margin-left: auto; margin-right: auto; }

/* ---------- Scroll Reveal Animation ---------- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Divider ---------- */
.gold-line {
    width: 50px;
    height: 1px;
    background: var(--gold);
    margin: 1.5rem 0;
}
.text-center .gold-line { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
}

.btn-gold {
    background: var(--gold);
    color: var(--white);
}
.btn-gold:hover {
    background: var(--gold-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(197,165,90,0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--charcoal);
    border-color: var(--white);
}

.btn-dark {
    background: var(--charcoal);
    color: var(--white);
}
.btn-dark:hover {
    background: var(--teal);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}
.btn-ghost:hover {
    background: var(--gold);
    color: var(--white);
}

/* ---------- Header ---------- */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.5s ease;
}

.site-header.scrolled {
    background: rgba(26, 26, 26, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header-transparent { background: transparent; border: none; }

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

.logo {
    display: flex; align-items: center;
}

.logo-full {
    height: 55px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: opacity var(--transition);
}
.logo:hover .logo-full { opacity: 0.8; }

.nav-list {
    display: flex; align-items: center; gap: 2.5rem;
}

.nav-list a {
    font-size: 0.7rem; font-weight: 400;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    position: relative;
}

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

.nav-list a::after {
    content: ''; position: absolute;
    bottom: -6px; left: 0; width: 0; height: 1px;
    background: var(--gold);
    transition: width var(--transition);
}
.nav-list a:hover::after, .nav-list a.active::after { width: 100%; }

.btn-nav {
    background: transparent !important;
    color: var(--gold-light) !important;
    border: 1px solid var(--gold) !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 0 !important;
    font-size: 0.65rem !important;
    letter-spacing: 0.25em !important;
}
.btn-nav::after { display: none !important; }
.btn-nav:hover {
    background: var(--gold) !important;
    color: var(--white) !important;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none; flex-direction: column; gap: 6px;
    background: none; border: none; cursor: pointer;
    padding: 0.5rem; z-index: 1001;
}
.menu-bar {
    width: 24px; height: 1px; background: var(--white);
    transition: all var(--transition);
}
.menu-toggle.active .menu-bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active .menu-bar:nth-child(2) { opacity: 0; }
.menu-toggle.active .menu-bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--charcoal);
}

.hero-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    animation: kenBurns 20s ease-in-out infinite alternate;
}

@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.hero-bg::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.5) 0%,
        rgba(0,0,0,0.35) 30%,
        rgba(0,0,0,0.35) 60%,
        rgba(0,0,0,0.65) 100%
    );
}

.hero-content {
    position: relative; z-index: 2;
    text-align: center; color: var(--white);
    padding: 0 2rem; max-width: 850px;
}

.hero-logo {
    height: 120px;
    width: auto;
    margin: 0 auto 2.5rem;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.hero h1 {
    color: var(--white);
    font-weight: 300;
    letter-spacing: 0.06em;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 30px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 3.5rem;
    opacity: 0.9;
    text-shadow: 0 1px 15px rgba(0,0,0,0.5);
}

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

.hero-scroll {
    position: absolute; bottom: 3rem;
    left: 50%; transform: translateX(-50%);
    z-index: 2; color: var(--white);
    opacity: 0.4;
    animation: float 3s ease-in-out infinite;
}

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

/* ---------- About Section ---------- */
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    overflow: hidden;
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px; left: -20px;
    width: 100px; height: 100px;
    border-top: 1px solid var(--gold);
    border-left: 1px solid var(--gold);
    z-index: 1;
    pointer-events: none;
}

.about-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.about-content .gold-line { margin-bottom: 2rem; }

.about-content p {
    color: var(--charcoal-light);
    font-weight: 300;
    line-height: 1.9;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--cream-dark);
}

.highlight-item {
    text-align: center;
}

.highlight-item h4 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--gold-dark);
    margin-bottom: 0.25rem;
}

.highlight-item p {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--charcoal-light);
}

/* ---------- Full-width Image Break ---------- */
.image-break {
    width: 100%;
    height: 60vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* ---------- Rooms Section ---------- */
.rooms-section {
    background: var(--charcoal);
    color: var(--white);
    padding: 7rem 0;
}

.rooms-section h2,
.rooms-section .section-heading { color: var(--white); }
.rooms-section .section-label { color: var(--gold-light); }
.rooms-section .section-intro { color: rgba(255,255,255,0.5); }

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

.room-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.room-card-image {
    position: absolute; inset: 0;
}

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

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

.room-card-body {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.7) 0%,
        rgba(0,0,0,0.1) 50%,
        transparent 100%
    );
    transition: background var(--transition);
}

.room-card:hover .room-card-body {
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.85) 0%,
        rgba(0,0,0,0.3) 60%,
        rgba(0,0,0,0.1) 100%
    );
}

.room-card-body h3 {
    color: var(--white);
    font-size: 1.6rem;
    margin-bottom: 0.25rem;
}

.room-card-body p {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    font-weight: 300;
    margin-bottom: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, margin 0.5s ease;
}

.room-card:hover .room-card-body p {
    max-height: 80px;
    margin-bottom: 1rem;
}

/* Linked room cards (rooms.php overview, per-room cross-sell, home preview) */
.room-card-link {
    position: absolute; inset: 0;
    display: block;
    color: inherit;
    text-decoration: none;
}

/* Rooms overview grid: always show meta and CTA, not just on hover */
.page-rooms .room-card,
.page-room-detail .room-card {
    aspect-ratio: 4/3;
}
.page-rooms .room-card-body p,
.page-room-detail .room-card-body p {
    max-height: none;
    overflow: visible;
    margin-bottom: 0.75rem;
}
.page-rooms .room-card-body h2,
.page-room-detail .room-card-body h2 {
    color: var(--white);
    font-size: 1.6rem;
    font-family: var(--font-display);
    font-weight: 500;
    margin-bottom: 0.25rem;
}
.page-rooms .room-card-body .section-label {
    color: var(--gold-light);
    margin-bottom: 0.5rem;
}

.room-card-meta {
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}
.room-card-meta span + span { margin-left: 0.4rem; }

.room-card-cta {
    color: var(--gold-light);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
}

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

/* Per-room CTA row */
.room-cta-row {
    display: flex; gap: 1rem; flex-wrap: wrap;
    margin-top: 1.5rem;
}

/* Breadcrumb */
.breadcrumb {
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.breadcrumb ol {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-wrap: wrap; gap: 0.5rem;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    color: var(--charcoal-mid);
}
.breadcrumb li + li::before {
    content: "/";
    margin-right: 0.5rem;
    color: var(--charcoal-light);
}
.breadcrumb a { color: var(--gold-dark); }
.breadcrumb a:hover { color: var(--charcoal); }
.breadcrumb [aria-current="page"] { color: var(--charcoal); }

.room-price {
    display: flex; align-items: baseline; gap: 0.25rem;
}

.room-price .from {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}

.room-price .amount {
    font-family: var(--font-display);
    font-size: 1.4rem; font-weight: 400;
    color: var(--gold-light);
}

.room-price .per {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.4);
}

/* ---------- Amenities Section ---------- */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.amenity-card {
    text-align: center;
    padding: 3.5rem 2rem;
    border: 1px solid var(--cream-dark);
    margin: -0.5px;
    transition: all var(--transition);
}

.amenity-card:hover {
    background: var(--cream);
    border-color: var(--cream);
}

.amenity-icon {
    width: 32px; height: 32px;
    margin: 0 auto 1.5rem;
    color: var(--gold);
    opacity: 0.8;
}

.amenity-card h4 {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.amenity-card p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--charcoal-light);
    line-height: 1.7;
}

/* ---------- Testimonials ---------- */
.testimonials-section {
    background: var(--teal-deep);
    color: var(--white);
    padding: 7rem 0;
}

.testimonials-section h2 { color: var(--white); }
.testimonials-section .section-label { color: var(--gold-light); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.testimonial-card {
    border-left: 1px solid var(--gold-muted);
    padding: 0 0 0 2rem;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.testimonial-card blockquote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.85;
}

.testimonial-author {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.4;
}

/* ---------- Location Section ---------- */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.map-container {
    overflow: hidden;
}

.map-container iframe {
    width: 100%; height: 450px; border: 0;
    filter: grayscale(0.3);
}

.nearby-list { margin-top: 2rem; }

.nearby-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--cream-dark);
    font-size: 0.9rem;
    font-weight: 300;
}

.nearby-item span:last-child {
    color: var(--charcoal-light);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
    position: relative;
    background: var(--charcoal);
    color: var(--white);
    text-align: center;
    padding: 6rem 2rem;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 200px; height: 200px;
    border: 1px solid rgba(197,165,90,0.1);
    border-radius: 50%;
}

.cta-banner h2 {
    color: var(--white);
    font-weight: 300;
    margin-bottom: 1rem;
}

.cta-banner p {
    font-size: 0.95rem;
    font-weight: 300;
    opacity: 0.5;
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex; gap: 1.5rem;
    justify-content: center; flex-wrap: wrap;
}

/* ---------- Rooms Page ---------- */
.page-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--charcoal);
}

.page-hero .hero-bg { animation: kenBurns 25s ease-in-out infinite alternate; }
.page-hero .hero-bg::after { background: rgba(0,0,0,0.45); }

.page-hero .hero-content h1 {
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    font-weight: 300;
    color: var(--white);
    margin-bottom: 0.5rem;
    letter-spacing: 0.06em;
    text-shadow: 0 2px 40px rgba(0,0,0,0.6);
}

.page-hero .section-label {
    font-size: 0.75rem;
    letter-spacing: 0.4em;
    text-shadow: 0 1px 20px rgba(0,0,0,0.5);
}

.room-detail {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
    padding: 4rem 0;
    border-bottom: 1px solid var(--cream-dark);
}

.room-detail:nth-child(even) { direction: rtl; }
.room-detail:nth-child(even) > * { direction: ltr; }

/* Room Carousel */
.room-carousel {
    position: relative;
    overflow: hidden;
    background: var(--cream);
}

.room-carousel-track {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.room-carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.room-carousel-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.room-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Arrows */
.room-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.9);
    border: none;
    color: var(--charcoal);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition), background var(--transition);
}
.room-carousel:hover .room-carousel-arrow { opacity: 1; }
.room-carousel-arrow:hover { background: var(--gold); color: var(--white); }
.room-carousel-arrow.prev { left: 0; }
.room-carousel-arrow.next { right: 0; }

/* Hide arrows when only one image */
.room-carousel[data-count="1"] .room-carousel-arrow,
.room-carousel[data-count="1"] .room-carousel-dots,
.room-carousel[data-count="1"] .room-carousel-counter { display: none; }

/* Dots */
.room-carousel-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 0.5rem;
    padding: 0.5rem 0.875rem;
    background: rgba(0,0,0,0.4);
    border-radius: 100px;
}

.room-carousel-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all var(--transition);
}
.room-carousel-dot.active {
    background: var(--white);
    width: 18px;
    border-radius: 100px;
}

/* Counter (top right) */
.room-carousel-counter {
    position: absolute;
    top: 1rem; right: 1rem;
    z-index: 3;
    background: rgba(0,0,0,0.5);
    color: var(--white);
    padding: 0.35rem 0.75rem;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    font-weight: 400;
}

.room-info h2 { margin-bottom: 0.5rem; }

.room-info > p {
    color: var(--charcoal-light);
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.9;
}

.room-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.room-feature {
    display: flex; align-items: center; gap: 0.75rem;
    font-size: 0.85rem; font-weight: 300;
    color: var(--charcoal-light);
}
.room-feature svg { color: var(--gold); flex-shrink: 0; }

/* ---------- Gallery Page ---------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

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

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

.gallery-item::after {
    content: ''; position: absolute; inset: 0;
    background: rgba(0,0,0,0);
    transition: background var(--transition);
}
.gallery-item:hover::after { background: rgba(0,0,0,0.15); }

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

/* Lightbox */
.lightbox {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.97);
    z-index: 9999;
    align-items: center; justify-content: center;
    padding: 2rem;
}
.lightbox.active { display: flex; }

.lightbox img {
    max-width: 90vw; max-height: 85vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute; top: 2rem; right: 2rem;
    background: none; border: none;
    color: var(--white); font-size: 1.5rem;
    cursor: pointer; opacity: 0.5;
    transition: opacity var(--transition);
    letter-spacing: 0.2em; font-weight: 300;
}
.lightbox-close:hover { opacity: 1; }

.lightbox-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: none; border: 1px solid rgba(255,255,255,0.2);
    color: var(--white); font-size: 1.2rem;
    padding: 0.75rem 1rem; cursor: pointer;
    opacity: 0.5; transition: opacity var(--transition);
}
.lightbox-nav:hover { opacity: 1; border-color: rgba(255,255,255,0.5); }
.lightbox-prev { left: 2rem; }
.lightbox-next { right: 2rem; }

/* ---------- Contact Page ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info-card {
    background: var(--off-white);
    padding: 3rem;
    margin-bottom: 1.5rem;
}

.contact-info-card h3 {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 2rem;
}

.contact-detail {
    display: flex; align-items: flex-start; gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.contact-detail svg {
    flex-shrink: 0; color: var(--gold);
    margin-top: 0.2rem; opacity: 0.7;
}

.contact-detail a, .contact-detail p {
    font-size: 0.95rem; font-weight: 300;
    color: var(--charcoal);
}

.directions-section { margin-top: 3rem; }
.directions-section h3 { margin-bottom: 2rem; }

.direction-item { margin-bottom: 2rem; }
.direction-item h4 {
    font-family: var(--font-body);
    font-size: 0.7rem; font-weight: 500;
    letter-spacing: 0.15em; text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.direction-item p { color: var(--charcoal-light); font-size: 0.9rem; font-weight: 300; }

/* ---------- FAQ Section (AEO) ---------- */
.faq-section {
    background: var(--off-white);
    padding: 7rem 0;
}

.faq-list { max-width: 700px; margin: 0 auto; }

.faq-item { border-bottom: 1px solid rgba(0,0,0,0.06); }

.faq-question {
    width: 100%; background: none; border: none;
    padding: 1.5rem 0;
    font-family: var(--font-display);
    font-size: 1.15rem; font-weight: 400;
    color: var(--charcoal); text-align: left;
    cursor: pointer;
    display: flex; justify-content: space-between;
    align-items: center; gap: 1rem;
}

.faq-question svg {
    flex-shrink: 0;
    transition: transform var(--transition);
    color: var(--gold); opacity: 0.5;
}
.faq-item.open .faq-question svg { transform: rotate(180deg); }

.faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.5s ease;
}
.faq-answer-inner {
    padding: 0 0 2rem;
    color: var(--charcoal-light);
    font-weight: 300; line-height: 1.9;
}
.faq-item.open .faq-answer { max-height: 500px; }

/* ---------- Footer ---------- */
.site-footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 5rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
    gap: 3rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo {
    height: 80px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: left center;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
    opacity: 0.6;
}

.footer-col h3 {
    font-family: var(--font-body);
    font-size: 0.65rem; font-weight: 400;
    letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--gold-muted); color: rgba(197,165,90,0.6);
    margin-bottom: 1.5rem;
}

.footer-col ul li { margin-bottom: 0.75rem; }
.footer-col ul li a {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem; font-weight: 300;
    transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }

.contact-list li {
    display: flex; align-items: flex-start; gap: 0.75rem;
}
.contact-list li svg {
    flex-shrink: 0; margin-top: 0.3rem; opacity: 0.3;
}

.social-links {
    display: flex; gap: 0.75rem; margin-bottom: 2rem;
}
.social-links a {
    display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px;
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.4);
    transition: all var(--transition);
}
.social-links a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.footer-cta {
    display: block; text-align: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.65rem;
    border: 1px solid var(--gold);
    background: transparent;
    color: var(--gold-light);
}
.footer-cta:hover {
    background: var(--gold);
    color: var(--white);
}

.footer-bottom {
    padding: 2rem 0;
    text-align: center;
    font-size: 0.7rem;
    font-weight: 300;
    opacity: 0.25;
    letter-spacing: 0.1em;
}

/* ---------- Responsive ---------- */
@media (max-width: 968px) {
    section { padding: 5rem 0; }
    .menu-toggle { display: flex; }
    .main-nav {
        position: fixed; top: 0; right: -100%;
        width: 100%; height: 100vh;
        background: var(--charcoal);
        transition: right var(--transition);
        padding: calc(var(--header-height) + 3rem) 3rem 3rem;
        z-index: 1000;
    }
    .main-nav.active { right: 0; }
    .nav-list { flex-direction: column; align-items: flex-start; gap: 0; }
    .nav-list li { width: 100%; }
    .nav-list a {
        display: block; padding: 1rem 0;
        font-size: 0.85rem;
        color: rgba(255,255,255,0.6) !important;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .btn-nav { margin-top: 1.5rem; text-align: center !important; width: 100%; }

    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-image img { height: 400px; }
    .about-image::before { display: none; }

    .rooms-grid { grid-template-columns: 1fr; }
    .amenities-grid { grid-template-columns: 1fr 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .location-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .room-detail { grid-template-columns: 1fr; }
    .room-detail:nth-child(even) { direction: ltr; }
    .contact-grid { grid-template-columns: 1fr; }
    .gallery-item:nth-child(4n+1) { grid-column: span 1; }
    .image-break { background-attachment: scroll; }
}

@media (max-width: 640px) {
    section { padding: 4rem 0; }
    .hero { min-height: 100vh; }
    .amenities-grid { grid-template-columns: 1fr; }
    .about-highlights { grid-template-columns: 1fr 1fr; }
    .room-features { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; gap: 3px; }
    .gallery-item:nth-child(4n+1) { grid-column: span 2; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .room-carousel-arrow { opacity: 1; width: 36px; height: 36px; }
    .testimonials-grid { gap: 2rem; }
}

/* ---------- Print ---------- */
@media print {
    .site-header, .menu-toggle, .btn, .cta-banner, .lightbox { display: none !important; }
    body { color: #222; }
    * { print-color-adjust: exact; -webkit-print-color-adjust: exact; }
}
