/* ============================================================
   KALINAYA DOME GLAMPING — styles.css
   Palette: #0A0E18 dark | #121830 bg-alt | #4A80C8 accent (sky-cerulean)
            #E0C080 highlight (starlight gold) | #F0EDE5 cream
   Fonts: Philosopher (display) + Assistant (body)
   ============================================================ */

/* ── 1. ROOT TOKENS ─────────────────────────────────────────── */
:root {
  --dark:        #0A0E18;
  --bg-alt:      #121830;
  --accent:      #4A80C8;
  --highlight:   #E0C080;
  --cream:       #F0EDE5;
  --muted:       #8899BB;
  --card-bg:     #161E35;
  --border:      rgba(74,128,200,0.18);
  --radius:      14px;
  --radius-sm:   8px;
  --shadow:      0 8px 32px rgba(0,0,0,0.45);
  --shadow-sm:   0 3px 12px rgba(0,0,0,0.30);
  --transition:  0.32s cubic-bezier(.4,0,.2,1);
  --page-hero-bg: url('images/banner.jpg');
}

/* ── 2. RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Assistant', sans-serif;
  background: var(--dark);
  color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--highlight); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── 3. TYPOGRAPHY ───────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: 'Philosopher', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--cream);
}
h1 { font-size: clamp(2.2rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.2rem; }
p  { font-size: 1.05rem; color: rgba(240,237,229,0.82); }
.lead { font-size: 1.2rem; color: rgba(240,237,229,0.88); }

.section-label {
  font-family: 'Assistant', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--highlight);
  display: block;
  margin-bottom: 0.7rem;
}
.section-title { margin-bottom: 1.2rem; }
.section-intro  { max-width: 620px; color: rgba(240,237,229,0.80); }

/* ── 4. LAYOUT HELPERS ───────────────────────────────────────── */
.container { width: 92%; max-width: 1180px; margin: 0 auto; }
.section { padding: 90px 0; }
.section-alt { background: var(--bg-alt); }
.text-center { text-align: center; }
.text-center .section-intro { margin-left: auto; margin-right: auto; }

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

/* ── 5. FADE-IN ANIMATIONS ───────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.68s ease, transform 0.68s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ── 6. NAVIGATION ───────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 4%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(10,14,24,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.6);
  backdrop-filter: blur(12px);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
}
.nav-name {
  font-family: 'Philosopher', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
}
.nav-name small {
  display: block;
  font-family: 'Assistant', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--highlight);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(240,237,229,0.82);
  letter-spacing: 0.04em;
  transition: color var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--highlight); }

.btn-nav {
  background: var(--accent);
  color: var(--cream) !important;
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: background var(--transition), transform var(--transition);
}
.btn-nav:hover {
  background: var(--highlight);
  color: var(--dark) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── 7. HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: var(--page-hero-bg);
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.38);
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,14,24,0.2) 0%,
    rgba(10,14,24,0.55) 60%,
    rgba(10,14,24,0.95) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 20px 80px;
  max-width: 800px;
}
.hero-eyebrow {
  display: inline-block;
  font-family: 'Assistant', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--highlight);
  border: 1px solid rgba(224,192,128,0.4);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 1.4rem;
}
.hero h1 {
  color: var(--cream);
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero h1 span { color: var(--highlight); }
.hero-tagline {
  font-size: 1.15rem;
  color: rgba(240,237,229,0.85);
  max-width: 520px;
  margin: 0 auto 2rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(240,237,229,0.5);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  z-index: 2;
}
.hero-scroll-line {
  width: 1px;
  height: 38px;
  background: linear-gradient(to bottom, rgba(240,237,229,0.5), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}

/* ── 8. BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 50px;
  font-family: 'Assistant', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: all var(--transition);
  text-transform: uppercase;
}
.btn-primary {
  background: var(--accent);
  color: var(--cream);
}
.btn-primary:hover {
  background: #5A90D8;
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74,128,200,0.4);
}
.btn-outline {
  border: 2px solid rgba(240,237,229,0.5);
  color: var(--cream);
}
.btn-outline:hover {
  border-color: var(--highlight);
  color: var(--highlight);
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--highlight);
  color: var(--dark);
}
.btn-gold:hover {
  background: #F0D090;
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(224,192,128,0.35);
}
.btn-sm {
  padding: 9px 22px;
  font-size: 0.85rem;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── 9. CARDS ────────────────────────────────────────────────── */
.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.card-body {
  padding: 1.4rem 1.6rem;
}
.card-title {
  font-family: 'Philosopher', serif;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--cream);
}
.card-text { color: rgba(240,237,229,0.75); font-size: 0.95rem; }

/* ── 10. AMENITY ICONS ────────────────────────────────────────── */
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}
.amenity-item {
  background: rgba(74,128,200,0.08);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(240,237,229,0.85);
  font-weight: 500;
}
.amenity-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--highlight);
}

/* ── 11. FEATURES STRIP ──────────────────────────────────────── */
.features-strip {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.features-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 22px 32px;
  border-right: 1px solid var(--border);
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(240,237,229,0.80);
}
.feature-item:last-child { border-right: none; }
.feature-item svg {
  width: 22px;
  height: 22px;
  color: var(--highlight);
  flex-shrink: 0;
}

/* ── 12. REVIEWS ─────────────────────────────────────────────── */
.review-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
}
.review-stars {
  color: var(--highlight);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 0.8rem;
}
.review-text {
  color: rgba(240,237,229,0.82);
  font-size: 0.98rem;
  font-style: italic;
  margin-bottom: 1.2rem;
  line-height: 1.7;
}
.review-author {
  font-family: 'Philosopher', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--highlight);
}
.review-date {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 2px;
}
.review-quote {
  position: absolute;
  top: 1.2rem;
  right: 1.6rem;
  font-size: 4rem;
  color: rgba(74,128,200,0.12);
  font-family: 'Philosopher', serif;
  line-height: 1;
}

/* ── 13. PAGE HERO (inner pages) ─────────────────────────────── */
.page-hero {
  position: relative;
  height: 360px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image: var(--page-hero-bg);
  background-size: cover;
  background-position: center 35%;
  filter: brightness(0.32);
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,14,24,0.95) 0%, rgba(10,14,24,0.3) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 4% 2.5rem;
}
.page-hero-content h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 0.4rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--muted);
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--highlight); }
.breadcrumb-sep { color: var(--border); }

/* ── 14. ROOMS PAGE ──────────────────────────────────────────── */
.room-nav {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding: 0;
  position: sticky;
  top: 72px;
  z-index: 100;
}
.room-nav-inner {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.room-nav-inner::-webkit-scrollbar { display: none; }
.room-tab {
  flex-shrink: 0;
  padding: 16px 28px;
  font-family: 'Philosopher', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--muted);
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.room-tab:hover { color: var(--cream); }
.room-tab.active { color: var(--highlight); border-bottom-color: var(--highlight); }

.room-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.room-section:nth-child(even) { background: var(--bg-alt); }

.room-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.room-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.room-gallery-main {
  grid-column: 1 / -1;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
}
.room-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform var(--transition);
}
.room-gallery-main img:hover { transform: scale(1.03); }
.room-gallery-thumb {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.room-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform var(--transition);
}
.room-gallery-thumb img:hover { transform: scale(1.05); }

.room-info {}
.room-badge {
  display: inline-block;
  background: rgba(74,128,200,0.15);
  border: 1px solid rgba(74,128,200,0.35);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.room-name {
  font-family: 'Philosopher', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 0.5rem;
}
.room-capacity {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
}
.room-capacity svg { width: 17px; height: 17px; color: var(--highlight); }
.room-desc {
  color: rgba(240,237,229,0.80);
  margin-bottom: 1.8rem;
  line-height: 1.75;
}
.room-amenities-title {
  font-family: 'Philosopher', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--highlight);
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.room-amenity-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 12px;
  margin-bottom: 2rem;
}
.room-amenity-list li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.9rem;
  color: rgba(240,237,229,0.80);
}
.room-amenity-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.room-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── 15. GALLERY PAGE ────────────────────────────────────────── */
.gallery-filter {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.filter-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  font-family: 'Assistant', sans-serif;
}
.filter-btn:hover { border-color: var(--accent); color: var(--accent); }
.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--cream);
}

.masonry {
  columns: 3;
  column-gap: 14px;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 14px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}
.masonry-item:hover img { transform: scale(1.05); }
.masonry-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,14,24,0.0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.masonry-item:hover .masonry-overlay { background: rgba(10,14,24,0.45); }
.masonry-expand {
  opacity: 0;
  color: var(--cream);
  transition: opacity 0.3s ease;
}
.masonry-item:hover .masonry-expand { opacity: 1; }
.masonry-expand svg { width: 32px; height: 32px; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.94);
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}
.lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  color: var(--cream);
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  transition: background var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
.lightbox-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--cream);
  transition: background var(--transition);
}
.lightbox-arrow:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-arrow svg { width: 22px; height: 22px; }

/* ── 16. CONTACT PAGE ────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 4rem;
  align-items: start;
}
.form-group { margin-bottom: 1.4rem; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(240,237,229,0.75);
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--cream);
  font-family: 'Assistant', sans-serif;
  font-size: 0.98rem;
  padding: 13px 16px;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: rgba(74,128,200,0.06);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group select option { background: var(--bg-alt); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

.contact-info-box {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.2rem;
}
.contact-info-title {
  font-family: 'Philosopher', serif;
  font-size: 1.4rem;
  margin-bottom: 1.8rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 1.4rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--border);
}
.contact-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(74,128,200,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; color: var(--accent); }
.contact-label { font-size: 0.78rem; color: var(--muted); margin-bottom: 3px; text-transform: uppercase; letter-spacing: 0.08em; }
.contact-value { color: var(--cream); font-weight: 600; font-size: 0.98rem; }
.contact-value a { color: var(--cream); }
.contact-value a:hover { color: var(--highlight); }

/* ── 17. FAQ ─────────────────────────────────────────────────── */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  background: var(--card-bg);
  transition: background var(--transition);
}
.faq-question:hover { background: rgba(74,128,200,0.08); }
.faq-q-text {
  font-family: 'Philosopher', serif;
  font-size: 1.05rem;
  color: var(--cream);
  font-weight: 700;
}
.faq-icon {
  width: 22px;
  height: 22px;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  background: rgba(74,128,200,0.04);
}
.faq-item.open .faq-answer { max-height: 400px; padding: 1.2rem 1.5rem; }
.faq-answer p { color: rgba(240,237,229,0.78); font-size: 0.97rem; }

/* ── 18. ABOUT PAGE ──────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-img-stack {
  position: relative;
}
.about-img-main {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 4/5;
}
.about-img-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 55%;
  border-radius: var(--radius);
  border: 4px solid var(--dark);
  object-fit: cover;
  aspect-ratio: 4/3;
}
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 2rem;
}
.value-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.4rem;
}
.value-icon {
  width: 40px;
  height: 40px;
  background: rgba(224,192,128,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
}
.value-icon svg { width: 20px; height: 20px; color: var(--highlight); }
.value-title { font-family: 'Philosopher', serif; font-size: 1.05rem; margin-bottom: 0.3rem; }
.value-text { font-size: 0.88rem; color: rgba(240,237,229,0.7); }

.timeline {
  position: relative;
  padding-left: 2rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--highlight));
}
.timeline-item {
  position: relative;
  margin-bottom: 2rem;
  padding-left: 1.5rem;
}
.timeline-dot {
  position: absolute;
  left: -2.4rem;
  top: 4px;
  width: 14px;
  height: 14px;
  background: var(--highlight);
  border-radius: 50%;
  border: 3px solid var(--dark);
}
.timeline-year {
  font-family: 'Philosopher', serif;
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 0.3rem;
}
.timeline-event {
  font-family: 'Philosopher', serif;
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}
.timeline-desc { font-size: 0.9rem; color: rgba(240,237,229,0.70); }

/* ── 19. STATS ───────────────────────────────────────────────── */
.stats-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Philosopher', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--highlight);
  line-height: 1;
}
.stat-label {
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 4px;
  letter-spacing: 0.06em;
}

/* ── 20. FOOTER ──────────────────────────────────────────────── */
.footer {
  background: #060810;
  border-top: 1px solid var(--border);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}
.footer-logo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--accent);
}
.footer-logo-name {
  font-family: 'Philosopher', serif;
  font-size: 1.1rem;
  color: var(--cream);
}
.footer-tagline {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 1.4rem;
  line-height: 1.6;
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-social {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all var(--transition);
}
.footer-social:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--cream);
}
.footer-social svg { width: 17px; height: 17px; }

.footer-col-title {
  font-family: 'Philosopher', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  color: var(--muted);
  font-size: 0.92rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--highlight); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 0.9rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--accent); }
.footer-contact-item a { color: var(--muted); }
.footer-contact-item a:hover { color: var(--highlight); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ── 21. UTILITY / MISC ──────────────────────────────────────── */
.badge {
  display: inline-block;
  background: rgba(224,192,128,0.15);
  border: 1px solid rgba(224,192,128,0.35);
  color: var(--highlight);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
}
.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
  margin: 0;
}
.highlight-text { color: var(--highlight); }
.accent-text { color: var(--accent); }

/* Notice box */
.notice-box {
  background: rgba(74,128,200,0.08);
  border: 1px solid rgba(74,128,200,0.25);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.5rem;
  font-size: 0.93rem;
  color: rgba(240,237,229,0.80);
}

/* ── 22. RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .about-img-accent { display: none; }
  .masonry { columns: 2; }
  .room-grid { gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(10,14,24,0.98);
    padding: 1.5rem 2rem 2rem;
    gap: 1.2rem;
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(16px);
  }
  .nav-toggle { display: flex; }
  .btn-nav { display: none; }

  .hero-actions { flex-direction: column; align-items: center; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .room-grid { grid-template-columns: 1fr; }
  .room-gallery { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .features-row { flex-direction: column; }
  .feature-item { border-right: none; border-bottom: 1px solid var(--border); }
  .section { padding: 60px 0; }
  .about-values { grid-template-columns: 1fr; }
  .room-amenity-list { grid-template-columns: 1fr; }
  .stats-row { gap: 1.2rem; }
  .page-hero { height: 260px; }
}

@media (max-width: 480px) {
  .masonry { columns: 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .room-gallery { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
  .about-img-main { aspect-ratio: 3/2; }
  .gallery-filter { gap: 0.4rem; }
  .filter-btn { padding: 7px 14px; font-size: 0.82rem; }
}
