/*
  Design rationale: Deep forest-near-black grounded in the logo's dark mountain silhouette, with a saturated forest-green accent matching the mountain illustration, and a misty-sky-blue highlight drawn from the cloud tones in the logo — evoking Mist Mountain's highland eco-tourism identity.
  Heading: Andada Pro — a warm editorial serif with humanist proportions; evokes nature journals, botanical typography, and eco-resort storytelling
  Body: Be Vietnam Pro — a clean, modern sans-serif that reads clearly at small sizes; grounds the expressive serif display
*/

/* 1. Reset & Custom Properties */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark:      #1A2E1C;
  --bg-alt:    #223828;
  --accent:    #2C6B3A;
  --highlight: #7FA8B8;
  --cream:     #F4F0E6;
  --cream-dim: rgba(244, 240, 230, 0.65);
  --accent-dim:rgba(44, 107, 58, 0.14);
  --border:    rgba(44, 107, 58, 0.22);
  --ff-display:'Andada Pro', Georgia, serif;
  --ff-body:   'Be Vietnam Pro', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--ff-body); background: var(--dark); color: var(--cream); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* 2. Typography */
h1, h2, h3, h4 { font-family: var(--ff-display); line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { color: var(--cream-dim); font-size: 1rem; }
.section-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--highlight); font-family: var(--ff-body); font-weight: 600; margin-bottom: 0.5rem; display: block; }
.section-title  { color: var(--cream); margin-bottom: 1.5rem; }
.section-sub    { color: var(--cream-dim); max-width: 600px; font-size: 1.05rem; }

/* 3. Buttons */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.75rem; border-radius: 4px; font-family: var(--ff-body); font-size: 0.9rem; font-weight: 600; cursor: pointer; transition: all 0.25s ease; border: 2px solid transparent; white-space: nowrap; }
.btn-primary  { background: var(--accent); color: var(--cream); border-color: var(--accent); }
.btn-primary:hover { background: #3a8a4a; border-color: #3a8a4a; }
.btn-ghost    { background: transparent; color: var(--cream); border-color: var(--cream); }
.btn-ghost:hover { background: var(--cream); color: var(--dark); }
.btn-outline  { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn-outline:hover { background: var(--accent); color: var(--cream); }
.btn-highlight{ background: var(--highlight); color: var(--dark); border-color: var(--highlight); }
.btn-highlight:hover { background: #9bbfcf; border-color: #9bbfcf; }

/* 4. Navbar */
.navbar { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; padding: 1.25rem 2rem; display: flex; align-items: center; justify-content: space-between; transition: background 0.3s ease, padding 0.3s ease; }
.navbar.scrolled { background: var(--dark); padding: 0.75rem 2rem; box-shadow: 0 2px 16px rgba(0,0,0,0.4); }
.nav-brand { display: flex; align-items: center; gap: 0.75rem; }
.nav-logo   { width: 44px; height: 44px; object-fit: contain; border-radius: 4px; background: #fff; }
.nav-brand-name { font-family: var(--ff-display); font-size: 1.1rem; font-weight: 700; color: var(--cream); line-height: 1.1; }
.nav-brand-sub  { font-size: 0.65rem; color: var(--cream-dim); text-transform: uppercase; letter-spacing: 0.1em; display: block; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { color: var(--cream); font-size: 0.9rem; font-weight: 500; position: relative; padding-bottom: 2px; transition: color 0.2s; }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--accent); transition: width 0.25s; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--cream); }
.nav-cta { margin-left: 1rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--cream); border-radius: 2px; transition: all 0.3s; }

/* Mobile nav overlay */
.mobile-nav { display: none; position: fixed; inset: 0; background: var(--dark); z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 2rem; }
.mobile-nav.open { display: flex; }
.mobile-nav a { font-family: var(--ff-display); font-size: 1.8rem; color: var(--cream); transition: color 0.2s; }
.mobile-nav a:hover { color: var(--accent); }
.mobile-nav .btn { margin-top: 1rem; font-size: 1rem; }
.mobile-close { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-close svg { width: 28px; height: 28px; fill: var(--cream); }

/* 5. Hero */
.hero { min-height: 100vh; position: relative; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(26,46,28,0.55) 0%, rgba(26,46,28,0.75) 60%, rgba(26,46,28,0.9) 100%); }
.hero-content { position: relative; z-index: 1; max-width: 820px; padding: 2rem; }
.hero-badge    { display: inline-block; background: var(--accent-dim); border: 1px solid var(--border); color: var(--highlight); padding: 0.4rem 1rem; border-radius: 20px; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1.5rem; }
.hero h1 { color: var(--cream); margin-bottom: 1rem; text-shadow: 0 2px 12px rgba(0,0,0,0.4); }
.hero-tagline  { color: var(--cream-dim); font-size: clamp(1rem, 2vw, 1.2rem); max-width: 600px; margin: 0 auto 2.5rem; line-height: 1.8; }
.hero-ctas     { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.scroll-indicator { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 0.4rem; color: var(--cream-dim); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; animation: bounce 2s infinite; }
.scroll-indicator svg { width: 20px; height: 20px; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* 6. Features Strip */
.features-strip { background: var(--accent); padding: 3rem 2rem; }
.features-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(5, 1fr); gap: 2rem; }
.feature-item { text-align: center; }
.feature-icon { width: 48px; height: 48px; margin: 0 auto 1rem; color: var(--cream); }
.feature-item h4 { color: var(--cream); font-size: 0.95rem; font-weight: 700; margin-bottom: 0.3rem; }
.feature-item p  { color: rgba(244,240,230,0.75); font-size: 0.8rem; line-height: 1.5; }

/* 7. Offerings Grid (homepage 3×3) */
.offerings-preview { padding: 6rem 2rem; background: var(--dark); }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.offerings-grid  { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px; }
.offering-tile   { position: relative; aspect-ratio: 1; overflow: hidden; cursor: pointer; }
.offering-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.offering-tile:hover img { transform: scale(1.08); }
.offering-tile-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,46,28,0.92) 0%, transparent 60%); display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem; }
.offering-tile-cat { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--highlight); margin-bottom: 0.35rem; }
.offering-tile-name{ font-family: var(--ff-display); font-size: 1rem; color: var(--cream); font-weight: 600; }

/* 8. Brand Teaser */
.brand-teaser { display: grid; grid-template-columns: 1fr 1fr; min-height: 540px; }
.brand-teaser-img { position: relative; overflow: hidden; }
.brand-teaser-img img { width: 100%; height: 100%; object-fit: cover; }
.brand-teaser-body { background: var(--bg-alt); padding: 5rem 4rem; display: flex; flex-direction: column; justify-content: center; }
.brand-teaser-body h2 { color: var(--cream); margin-bottom: 1.5rem; }
.brand-teaser-body p  { margin-bottom: 1rem; }
.brand-teaser-body .btn { margin-top: 1.5rem; align-self: flex-start; }

/* 9. Stats Row */
.stats-row { background: var(--accent); padding: 4rem 2rem; }
.stats-inner { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-num  { font-family: var(--ff-display); font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 700; color: var(--cream); line-height: 1; margin-bottom: 0.4rem; }
.stat-label{ font-size: 0.8rem; color: rgba(244,240,230,0.75); text-transform: uppercase; letter-spacing: 0.1em; }

/* 10. Review Cards */
.reviews { padding: 6rem 2rem; background: var(--bg-alt); }
.reviews-grid { max-width: 1100px; margin: 2rem auto 0; display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.review-card { background: rgba(244,240,230,0.05); border: 1px solid var(--border); border-radius: 8px; padding: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.review-stars { display: flex; gap: 3px; }
.review-stars svg { width: 18px; height: 18px; fill: #F5B80E; }
.review-text { color: var(--cream-dim); font-size: 0.95rem; line-height: 1.7; font-style: italic; flex: 1; }
.review-author { font-size: 0.85rem; color: var(--highlight); font-weight: 600; }
.review-source { font-size: 0.75rem; color: var(--cream-dim); }

/* 11. Social CTA + Platform Buttons */
.social-cta { padding: 5rem 2rem; background: var(--dark); text-align: center; }
.social-cta h2 { margin-bottom: 0.75rem; }
.social-cta p  { margin-bottom: 2.5rem; }
.social-platforms { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.platform-btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.65rem 1.25rem; border-radius: 4px; background: var(--accent-dim); border: 1px solid var(--border); color: var(--cream); font-size: 0.85rem; font-weight: 600; transition: all 0.25s; }
.platform-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.platform-btn:hover { background: var(--accent); border-color: var(--accent); }

/* 12. Social Feed Grid */
.social-feed { padding: 0 0 5rem; background: var(--dark); }
.feed-header  { text-align: center; padding: 3rem 2rem 2rem; }
.feed-grid    { display: grid; grid-template-columns: repeat(6,1fr); }
.feed-item    { aspect-ratio: 1; overflow: hidden; position: relative; }
.feed-item img{ width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.feed-item:hover img { transform: scale(1.08); }
.feed-item-overlay { position: absolute; inset: 0; background: rgba(26,46,28,0.65); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
.feed-item:hover .feed-item-overlay { opacity: 1; }
.feed-item-overlay svg { width: 32px; height: 32px; fill: var(--cream); }

/* 13. Footer */
.footer { background: var(--dark); border-top: 1px solid var(--border); padding: 5rem 2rem 2rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; }
.footer-col h5 { font-family: var(--ff-display); font-size: 0.9rem; font-weight: 700; color: var(--cream); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.25rem; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { color: var(--cream-dim); font-size: 0.9rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--accent); }
.footer-brand { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.footer-logo  { width: 40px; height: 40px; object-fit: contain; border-radius: 4px; background: #fff; }
.footer-brand-name { font-family: var(--ff-display); font-size: 1rem; font-weight: 700; color: var(--cream); }
.footer-tagline { color: var(--cream-dim); font-size: 0.85rem; line-height: 1.6; margin-bottom: 1.25rem; }
.footer-socials { display: flex; gap: 0.75rem; }
.footer-social-btn { width: 36px; height: 36px; border-radius: 50%; background: var(--accent-dim); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--cream); transition: all 0.2s; }
.footer-social-btn svg { width: 16px; height: 16px; }
.footer-social-btn:hover { background: var(--accent); border-color: var(--accent); }
.footer-contact-item { display: flex; gap: 0.6rem; align-items: flex-start; margin-bottom: 0.9rem; color: var(--cream-dim); font-size: 0.88rem; }
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; color: var(--highlight); }
.footer-bottom { max-width: 1200px; margin: 3rem auto 0; padding-top: 2rem; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.8rem; color: var(--cream-dim); }
.footer-badges { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.footer-badge { display: inline-flex; align-items: center; gap: 0.4rem; background: var(--accent-dim); border: 1px solid var(--border); padding: 0.3rem 0.75rem; border-radius: 20px; font-size: 0.72rem; color: var(--cream-dim); }
.footer-badge svg { width: 12px; height: 12px; color: var(--highlight); }

/* 14. Page Hero */
.page-hero { position: relative; min-height: 55vh; display: flex; align-items: center; background-size: cover; background-position: center; overflow: hidden; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(26,46,28,0.6) 0%, rgba(26,46,28,0.8) 100%); }
.page-hero-content { position: relative; z-index: 1; max-width: 800px; padding: 8rem 3rem 4rem; }
.page-hero-content h1 { color: var(--cream); }
.page-hero-content p  { color: var(--cream-dim); font-size: 1.1rem; margin-top: 0.75rem; }

/* 15. About Page Sections */
.about-section { padding: 6rem 2rem; }
.about-split   { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-split img { width: 100%; height: 480px; object-fit: cover; border-radius: 4px; }
.about-split-body h2 { margin-bottom: 1.5rem; }
.about-split-body p  { margin-bottom: 1rem; }
.about-split-body .btn { margin-top: 1.5rem; }

.philosophy-cards { padding: 6rem 2rem; background: var(--bg-alt); }
.philosophy-grid  { max-width: 1100px; margin: 2rem auto 0; display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.philosophy-card  { background: rgba(244,240,230,0.05); border: 1px solid var(--border); border-radius: 8px; padding: 2.5rem; }
.philosophy-card .icon-wrap { width: 52px; height: 52px; background: var(--accent-dim); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.philosophy-card .icon-wrap svg { width: 26px; height: 26px; color: var(--accent); }
.philosophy-card h3 { margin-bottom: 0.75rem; }

.values-list  { padding: 6rem 2rem; background: var(--dark); }
.values-inner { max-width: 800px; margin: 2rem auto 0; }
.value-item   { display: grid; grid-template-columns: 3rem 1fr; gap: 1.5rem; padding: 1.75rem 0; border-bottom: 1px solid var(--border); }
.value-num    { font-family: var(--ff-display); font-size: 1.5rem; color: var(--accent); font-weight: 700; }
.value-text h4 { color: var(--cream); margin-bottom: 0.3rem; }

.timeline { padding: 6rem 2rem; background: var(--bg-alt); }
.timeline-inner { max-width: 800px; margin: 2rem auto 0; position: relative; }
.timeline-inner::before { content: ''; position: absolute; left: 1.35rem; top: 0; bottom: 0; width: 2px; background: var(--border); }
.timeline-item  { display: grid; grid-template-columns: 3rem 1fr; gap: 1.5rem; padding-bottom: 3rem; position: relative; }
.timeline-dot   { width: 12px; height: 12px; border-radius: 50%; background: var(--accent); border: 3px solid var(--dark); margin-top: 0.5rem; flex-shrink: 0; }
.timeline-date  { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--highlight); margin-bottom: 0.35rem; }
.timeline-item h4 { color: var(--cream); margin-bottom: 0.5rem; }

.cta-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 400px; }
.cta-split-img  { overflow: hidden; }
.cta-split-img img { width: 100%; height: 100%; object-fit: cover; }
.cta-split-body { background: var(--dark); padding: 5rem 4rem; display: flex; flex-direction: column; justify-content: center; }
.cta-split-body h2 { margin-bottom: 1.25rem; }
.cta-split-body p  { margin-bottom: 1rem; }
.cta-btn-group { display: flex; gap: 1rem; margin-top: 1.75rem; flex-wrap: wrap; }

/* 16. Rooms Page */
.rooms-hero-bar { background: var(--bg-alt); padding: 1.25rem 2rem; text-align: center; border-bottom: 1px solid var(--border); }
.rooms-hero-bar p { color: var(--cream-dim); font-size: 0.92rem; max-width: 700px; margin: 0 auto; }
.rooms-hero-bar a { color: var(--highlight); }

.room-category-tiles { padding: 5rem 2rem; background: var(--dark); }
.category-tiles-grid { max-width: 1200px; margin: 2rem auto 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.category-tile { background: var(--accent-dim); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; cursor: pointer; transition: transform 0.25s, box-shadow 0.25s; }
.category-tile:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.3); }
.category-tile-img   { height: 220px; overflow: hidden; }
.category-tile-img img{ width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.category-tile:hover .category-tile-img img { transform: scale(1.06); }
.category-tile-body  { padding: 1.5rem; }
.category-tile-body h3 { color: var(--cream); margin-bottom: 0.35rem; font-size: 1.1rem; }
.category-tile-count { font-size: 0.78rem; color: var(--highlight); }

.room-sections { padding: 4rem 2rem 6rem; background: var(--bg-alt); }
.room-section  { max-width: 1100px; margin: 0 auto 6rem; }
.room-section h2 { color: var(--cream); margin-bottom: 0.75rem; }
.room-intro    { color: var(--cream-dim); margin-bottom: 2rem; max-width: 700px; }
.room-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 2.5rem; }
.room-gallery-grid img { width: 100%; height: 220px; object-fit: cover; border-radius: 4px; }
.room-gallery-grid.two-col { grid-template-columns: repeat(2, 1fr); }
.room-details  { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.room-detail-block { background: rgba(244,240,230,0.05); border: 1px solid var(--border); border-radius: 8px; padding: 1.5rem; }
.room-detail-block h4 { color: var(--highlight); margin-bottom: 0.75rem; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; }
.room-detail-block ul { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.room-detail-block ul li { background: var(--accent-dim); border: 1px solid var(--border); border-radius: 20px; padding: 0.25rem 0.75rem; font-size: 0.8rem; color: var(--cream-dim); }
.room-badge { display: inline-block; background: var(--accent); color: var(--cream); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; padding: 0.25rem 0.75rem; border-radius: 2px; margin-bottom: 1rem; }

.amenities-section { max-width: 1100px; margin: 0 auto 6rem; }
.amenities-section h2 { color: var(--cream); margin-bottom: 2rem; }
.amenities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.amenity-card  { background: rgba(244,240,230,0.05); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.amenity-card img { width: 100%; height: 180px; object-fit: cover; }
.amenity-card-body { padding: 1.25rem; }
.amenity-card-body h4 { color: var(--cream); margin-bottom: 0.35rem; }
.amenity-card-body p  { font-size: 0.85rem; }

.rooms-bottom-cta { background: var(--dark); padding: 5rem 2rem; text-align: center; }
.rooms-bottom-cta h2 { margin-bottom: 1rem; }
.rooms-bottom-cta p  { margin-bottom: 2rem; }
.rooms-bottom-cta .btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* 17. Gallery Page */
.gallery-filter { padding: 2rem 2rem 1rem; max-width: 1200px; margin: 0 auto; display: flex; gap: 0.75rem; flex-wrap: wrap; }
.filter-btn { padding: 0.5rem 1.25rem; border-radius: 20px; background: var(--accent-dim); border: 1px solid var(--border); color: var(--cream-dim); font-size: 0.85rem; font-weight: 500; cursor: pointer; transition: all 0.2s; font-family: var(--ff-body); }
.filter-btn.active, .filter-btn:hover { background: var(--accent); border-color: var(--accent); color: var(--cream); }

.gallery-section { padding: 2rem 2rem; max-width: 1200px; margin: 0 auto; }
.gallery-section-heading { margin-bottom: 0.35rem; color: var(--cream); }
.gallery-section-date    { font-size: 0.75rem; color: var(--cream-dim); margin-bottom: 1.5rem; }
.masonry-grid { columns: 3; column-gap: 1rem; }
.masonry-item { display: block; break-inside: avoid; margin-bottom: 1rem; cursor: pointer; overflow: hidden; border-radius: 4px; position: relative; }
.masonry-item img { width: 100%; height: auto; display: block; transition: transform 0.4s; }
.masonry-item:hover img { transform: scale(1.04); }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 2000; display: none; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox-inner { position: relative; max-width: 90vw; max-height: 90vh; }
.lightbox-inner img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 4px; }
.lightbox-close, .lightbox-prev, .lightbox-next { position: absolute; background: rgba(26,46,28,0.8); border: none; color: var(--cream); cursor: pointer; border-radius: 50%; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: var(--accent); }
.lightbox-close  { top: -1.5rem; right: -1.5rem; }
.lightbox-prev   { left: -3.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next   { right: -3.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-close svg, .lightbox-prev svg, .lightbox-next svg { width: 18px; height: 18px; fill: var(--cream); }
.lightbox-counter { position: absolute; bottom: -2.5rem; left: 50%; transform: translateX(-50%); color: var(--cream-dim); font-size: 0.8rem; white-space: nowrap; }

.gallery-cta { padding: 5rem 2rem; background: var(--bg-alt); text-align: center; }
.gallery-cta h2 { margin-bottom: 1rem; }
.gallery-cta p  { margin-bottom: 2rem; }
.gallery-cta .btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* 18. Contact Page */
.contact-grid { padding: 5rem 2rem; max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.3fr; gap: 4rem; }
.contact-block { margin-bottom: 2rem; }
.contact-block h4 { color: var(--cream); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem; }
.contact-block h4 svg { width: 18px; height: 18px; color: var(--highlight); flex-shrink: 0; }
.contact-block p, .contact-block a { color: var(--cream-dim); font-size: 0.92rem; }
.contact-block a:hover { color: var(--accent); }
.hours-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.hours-table td { padding: 0.4rem 0.6rem; color: var(--cream-dim); }
.hours-table td:first-child { color: var(--cream); font-weight: 600; }
.hours-table tr.highlight td { color: var(--highlight); }

.inquiry-form h3 { color: var(--cream); margin-bottom: 1.75rem; }
.form-group  { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.85rem; color: var(--cream-dim); margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; background: rgba(244,240,230,0.06); border: 1px solid var(--border); border-radius: 4px; padding: 0.75rem 1rem; color: var(--cream); font-family: var(--ff-body); font-size: 0.92rem; transition: border-color 0.2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); }
.form-group input.invalid, .form-group select.invalid, .form-group textarea.invalid { border-color: #e05050; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--dark); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

#formSuccess { display: none; text-align: center; padding: 3rem 2rem; background: var(--accent-dim); border: 1px solid var(--border); border-radius: 8px; }
#formSuccess .success-icon { width: 60px; height: 60px; margin: 0 auto 1rem; background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
#formSuccess .success-icon svg { width: 28px; height: 28px; fill: var(--cream); }
#formSuccess h3 { color: var(--cream); margin-bottom: 0.75rem; }
#formSuccess p  { color: var(--cream-dim); }

.map-placeholder { background: rgba(244,240,230,0.05); border: 1px solid var(--border); border-radius: 8px; padding: 2.5rem; text-align: center; margin-top: 2rem; }
.map-placeholder .map-icon { width: 56px; height: 56px; margin: 0 auto 1rem; color: var(--accent); }
.map-placeholder h4 { color: var(--cream); margin-bottom: 0.5rem; }
.map-placeholder p  { margin-bottom: 0.35rem; font-size: 0.88rem; }
.map-placeholder a  { color: var(--highlight); text-decoration: underline; font-size: 0.88rem; }

/* 19. FAQ Accordion */
.faq-section { padding: 6rem 2rem; background: var(--dark); }
.faq-inner   { max-width: 800px; margin: 2rem auto 0; }
.faq-item    { border-bottom: 1px solid var(--border); }
.faq-question{ width: 100%; background: none; border: none; padding: 1.25rem 0; display: flex; align-items: center; justify-content: space-between; cursor: pointer; text-align: left; color: var(--cream); font-family: var(--ff-body); font-size: 1rem; font-weight: 600; gap: 1rem; }
.faq-question svg { width: 20px; height: 20px; flex-shrink: 0; fill: var(--highlight); transition: transform 0.3s; }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer  { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer p{ padding: 0 0 1.25rem; color: var(--cream-dim); font-size: 0.93rem; line-height: 1.75; }

.contact-social-cta { padding: 5rem 2rem; background: var(--bg-alt); text-align: center; }
.contact-social-cta h2 { margin-bottom: 1rem; }

/* 20. Scroll-to-top */
.scroll-top { position: fixed; bottom: 2rem; right: 2rem; width: 44px; height: 44px; background: var(--accent); border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 900; opacity: 0; transform: translateY(10px); transition: all 0.3s; }
.scroll-top.visible { opacity: 1; transform: none; }
.scroll-top svg { width: 18px; height: 18px; fill: var(--cream); }

/* 21. Fade-in */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* 22. Responsive */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(3,1fr); }
  .offerings-grid { grid-template-columns: repeat(3,1fr); }
  .footer-inner   { grid-template-columns: 1fr 1fr; }
  .reviews-grid   { grid-template-columns: repeat(2,1fr); }
  .category-tiles-grid { grid-template-columns: repeat(2,1fr); }
  .amenities-grid { grid-template-columns: repeat(2,1fr); }
  .brand-teaser   { grid-template-columns: 1fr; }
  .brand-teaser-img { height: 300px; }
  .cta-split      { grid-template-columns: 1fr; }
  .cta-split-img  { height: 250px; }
  .about-split    { grid-template-columns: 1fr; }
  .about-split img{ height: 300px; }
  .stats-inner    { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .navbar { padding: 1rem 1.25rem; }
  .navbar.scrolled { padding: 0.65rem 1.25rem; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .offerings-grid { grid-template-columns: repeat(2,1fr); }
  .reviews-grid   { grid-template-columns: 1fr; }
  .footer-inner   { grid-template-columns: 1fr 1fr; }
  .feed-grid      { grid-template-columns: repeat(3,1fr); }
  .contact-grid   { grid-template-columns: 1fr; }
  .room-gallery-grid { grid-template-columns: repeat(2,1fr); }
  .room-details   { grid-template-columns: 1fr; }
  .masonry-grid   { columns: 2; }
  .philosophy-grid{ grid-template-columns: 1fr; }
  .brand-teaser-body { padding: 3rem 2rem; }
  .cta-split-body  { padding: 3rem 2rem; }
  .lightbox-prev  { left: -2rem; }
  .lightbox-next  { right: -2rem; }
  .timeline-inner::before { left: 1rem; }
  .amenities-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .offerings-grid { grid-template-columns: 1fr; }
  .footer-inner   { grid-template-columns: 1fr; }
  .feed-grid      { grid-template-columns: repeat(2,1fr); }
  .stats-inner    { grid-template-columns: repeat(2,1fr); }
  .category-tiles-grid { grid-template-columns: 1fr; }
  .masonry-grid   { columns: 1; }
  .form-row       { grid-template-columns: 1fr; }
  .room-gallery-grid { grid-template-columns: 1fr; }
}
