/**
 * Rato Ghar Eco Retreat — Core Theme Stylesheet
 */

:root {
  --font-title: 'Sail', cursive, sans-serif;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --primary-red: #8c1e17;
  --dark-red: #6b1612;
  --charcoal: #1a1a1a;
  --charcoal-light: #2a2a2a;
  --charcoal-dark: #121212;
  --warm-beige: #d4c5b9;
  --light-beige: #f5f0eb;
  --gold: #d4af37;
  --gold-light: #e8c968;
  --gold-dark: #b89726;
  --white: #ffffff;
  --overlay: rgba(26, 26, 26, 0.7);
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--charcoal);
  color: var(--light-beige);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 400;
  letter-spacing: 0.5px;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* ── Navigation ───────────────────────────────────────────────────────────── */
nav#navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.5rem 5%;
  z-index: 1000;
  transition: var(--transition-smooth);
  background: transparent;
}

nav#navbar.scrolled {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  padding: 1rem 5%;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}

.nav-left {
  display: flex;
  justify-content: flex-start;
}

.nav-right {
  display: flex;
  justify-content: flex-end;
}

.logo {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 2px;
  position: relative;
  transition: color 0.3s ease;
  text-align: center;
  white-space: nowrap;
  display: grid;
  place-items: center;
}

.logo:hover {
  color: var(--gold-light);
}

.logo img {
  grid-area: 1 / 1;
  height: 3.2em;
  max-height: 52px;
  width: auto;
  display: block;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

/* ── Logo Rules: ratologo.svg (.logo-dark) is ALWAYS chosen at the top on BOTH themes ── */
.logo .logo-dark {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  pointer-events: auto;
}

.logo .logo-light {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.95);
  pointer-events: none;
}

/* When at the top (not scrolled): ALWAYS show ratologo.svg on both themes */
nav#navbar:not(.scrolled) .logo .logo-dark {
  opacity: 1 !important;
  visibility: visible !important;
  transform: scale(1) !important;
  pointer-events: auto !important;
}

nav#navbar:not(.scrolled) .logo .logo-light {
  opacity: 0 !important;
  visibility: hidden !important;
  transform: scale(0.95) !important;
  pointer-events: none !important;
}

/* When scrolled / sticky: */
/* Dark Theme Scrolled: ratologo.svg */
nav#navbar.scrolled .logo .logo-dark {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  pointer-events: auto;
}

nav#navbar.scrolled .logo .logo-light {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.95);
  pointer-events: none;
}

/* Light Theme Scrolled: logo-light.svg smoothly fades in */
[data-theme="light"] nav#navbar.scrolled .logo .logo-dark {
  opacity: 0 !important;
  visibility: hidden !important;
  transform: scale(0.95) !important;
  pointer-events: none !important;
}

[data-theme="light"] nav#navbar.scrolled .logo .logo-light {
  opacity: 1 !important;
  visibility: visible !important;
  transform: scale(1) !important;
  pointer-events: auto !important;
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links a {
  color: var(--warm-beige);
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
  background: transparent;
  border: 0;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  width: 28px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s ease;
  display: block;
}

.mobile-menu-panel {
  display: none;
}

/* ── Hero Section ─────────────────────────────────────────────────────────── */
.hero {
  height: 100vh;
  min-height: 650px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  transform: scale(1.02);
  transition: transform 0.2s ease-out;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(140, 30, 23, 0.35), rgba(26, 26, 26, 0.45));
  opacity: 0.95;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(140, 30, 23, 0.35) 0%, rgba(26, 26, 26, 0.75) 75%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 960px;
  padding: 0 2rem;
  animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.hero-subtitle {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.2s backwards;
}

.hero h1 {
  font-size: 5rem;
  font-weight: 400;
  line-height: 1.1;
  color: var(--light-beige);
  margin-bottom: 1.5rem;
  animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.4s backwards;
}

.hero-description {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--warm-beige);
  margin-bottom: 3rem;
  line-height: 1.8;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.6s backwards;
}

.cta-button {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: var(--primary-red);
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.9rem;
  border: 2px solid var(--primary-red);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.8s backwards;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold);
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.cta-button:hover {
  border-color: var(--gold);
  color: var(--charcoal);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(140, 30, 23, 0.4);
}

.cta-button:hover::before {
  left: 0;
}

.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  color: #ffffff !important;
  animation: fadeIn 1.5s ease 1.5s backwards, bounce 2s ease-in-out infinite 2s;
  transition: opacity 0.3s ease, filter 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

.scroll-indicator:hover,
.scroll-indicator:focus-visible {
  opacity: 1;
  outline: none;
}

.scroll-indicator:hover svg,
.scroll-indicator:focus-visible svg {
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.9));
  opacity: 1;
}

.scroll-indicator svg {
  width: 30px;
  height: 50px;
  display: block;
  pointer-events: none;
  color: #ffffff !important;
  stroke: #ffffff !important;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.scroll-indicator svg rect {
  stroke: #ffffff !important;
  fill: transparent !important;
}

.scroll-indicator svg circle {
  fill: #ffffff !important;
  stroke: none !important;
}

/* ── Section Commons ──────────────────────────────────────────────────────── */
section {
  padding: 8rem 5%;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 5rem;
}

.section-subtitle {
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 400;
}

.section-title {
  font-size: 3.5rem;
  color: var(--light-beige);
  margin-bottom: 1.5rem;
}

.section-description {
  font-size: 1.1rem;
  color: var(--warm-beige);
  line-height: 1.8;
  font-weight: 300;
}

/* ── About Section ────────────────────────────────────────────────────────── */
.about {
  background: linear-gradient(180deg, var(--charcoal) 0%, var(--charcoal-light) 100%);
}

.about-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.about-card {
  text-align: center;
  padding: 3.5rem 2.2rem;
  background: rgba(42, 42, 42, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.15);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.about-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
}

.about-card:hover::before {
  transform: translateX(100%);
}

.about-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--gold);
}

.about-card h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--light-beige);
}

.about-card p {
  color: var(--warm-beige);
  line-height: 1.7;
  font-weight: 300;
}

/* ── Features / Experience Section ────────────────────────────────────────── */
.features {
  background: var(--charcoal);
}

.features-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.feature-card {
  position: relative;
  height: 420px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.feature-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(26, 26, 26, 0.92) 65%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
  transition: background 0.4s ease;
}

.feature-card:hover .feature-bg {
  transform: scale(1.08);
}

.feature-card:hover .feature-overlay {
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.25) 0%, rgba(26, 26, 26, 0.96) 65%);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--gold);
}

.feature-card h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--light-beige);
}

.feature-card p {
  color: var(--warm-beige);
  font-weight: 300;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease 0.1s;
}

.feature-card:hover p {
  opacity: 1;
  transform: translateY(0);
}

/* ── Room Photos Gallery Section (Visual Journey / Experience in Pictures) ── */
.gallery {
  background: linear-gradient(180deg, var(--charcoal) 0%, var(--charcoal-light) 100%);
  padding: 8rem 0;
}

.gallery-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}

.gallery-tabs {
  display: flex;
  gap: 0.85rem 1.1rem;
  padding: 0.8rem 1rem 1.8rem;
  margin-bottom: 3.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  overflow: visible;
}

.gallery-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0.35rem 0.4rem;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1.5px solid rgba(212, 175, 55, 0.3);
  background: rgba(42, 42, 42, 0.45);
  color: var(--warm-beige);
  cursor: pointer;
  box-sizing: border-box;
  white-space: nowrap;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-tab:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.gallery-tab.active {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
  font-weight: 600;
  box-shadow: 0 6px 22px rgba(212, 175, 55, 0.45);
  transform: translateY(-2px);
}

.gallery-admin-notice {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold-light);
  padding: 1rem 1.5rem;
  border-radius: 6px;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  text-align: center;
}

.gallery-admin-notice a {
  color: var(--white);
  text-decoration: underline;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 1.2rem;
}

.gallery-item {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.gallery-item.gallery-span-2x2 {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.gallery-span-2x1 {
  grid-column: span 2;
}

.gallery-item-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  cursor: pointer;
  background: var(--charcoal-light);
}

.gallery-grid-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.9);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
}

.gallery-item-inner:hover .gallery-grid-img {
  transform: scale(1.08);
  filter: brightness(1);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26, 26, 26, 0.92) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 1.4rem 1.6rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #ffffff !important;
}

.gallery-item-overlay,
.gallery-item-overlay * {
  color: #ffffff !important;
}

.gallery-item-inner:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-title {
  color: #ffffff !important;
  font-family: var(--font-body);
  font-size: 12px !important;
  font-weight: 400 !important;
  line-height: 1.4;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.85);
}

.gallery-item-zoom {
  color: #ffffff !important;
  font-size: 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.gallery-item-zoom i {
  color: #ffffff !important;
}

.gallery-item-inner:hover .gallery-item-zoom {
  transform: scale(1.15);
  color: #ffffff !important;
}

.gallery-item-inner:hover .gallery-item-zoom i {
  color: #ffffff !important;
}

.gallery-empty-hint {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--warm-beige);
  font-size: 1.1rem;
}

.gallery-empty-hint a {
  color: var(--gold);
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 190px;
    gap: 0.8rem;
  }
  .gallery-item.gallery-span-2x2 {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 230px;
  }
  .gallery-item.gallery-span-2x2,
  .gallery-item.gallery-span-2x1 {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* ── Lightbox ─────────────────────────────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  position: relative;
  text-align: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.lightbox-caption {
  margin-top: 1rem;
  color: var(--warm-beige);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.1rem;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: rgba(26, 26, 26, 0.85);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 1.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.lightbox-close:hover {
  background: var(--gold);
  color: var(--charcoal);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  background: rgba(26, 26, 26, 0.85);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  z-index: 2010;
  backdrop-filter: blur(10px);
}

.lightbox-prev {
  left: 2.5rem;
}

.lightbox-next {
  right: 2.5rem;
}

.lightbox-nav:hover {
  background: var(--gold);
  color: var(--charcoal);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
}

.lightbox-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.2rem;
  padding: 0 0.5rem;
  gap: 1.5rem;
}

.lightbox-counter {
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .lightbox-prev {
    left: 0.8rem;
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }
  .lightbox-next {
    right: 0.8rem;
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }
  .lightbox-close {
    top: 1rem;
    right: 1rem;
    width: 42px;
    height: 42px;
    font-size: 1.4rem;
  }
  .lightbox-footer {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

/* ── Video Tour Section ───────────────────────────────────────────────────── */
.video-tour {
  background: var(--charcoal);
  padding: 8rem 5%;
}

.video-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  background: var(--charcoal-dark);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe,
.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-highlights {
  max-width: 1100px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.video-highlight-item {
  padding: 1.5rem;
  background: rgba(42, 42, 42, 0.4);
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.video-highlight-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.video-highlight-item h4 {
  font-size: 1.2rem;
  color: var(--light-beige);
}

/* ── Stories / Blog Section ───────────────────────────────────────────────── */
.stories {
  background: linear-gradient(180deg, var(--charcoal-light) 0%, var(--charcoal) 100%);
  padding: 8rem 5%;
}

.stories-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.story-card {
  background: rgba(42, 42, 42, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.15);
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.story-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.story-image-wrap {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.story-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.story-card:hover .story-image {
  transform: scale(1.08);
}

.story-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.story-meta {
  font-size: 0.8rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.8rem;
}

.story-title {
  font-family: var(--font-body);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--light-beige);
  margin-bottom: 1rem;
  line-height: 1.35;
}

.story-title a:hover {
  color: var(--gold);
}

.story-excerpt {
  color: var(--warm-beige);
  font-size: 0.95rem;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.story-link {
  color: var(--gold);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.story-link:hover {
  gap: 0.8rem;
  color: var(--gold-light);
}

.stories-cta {
  text-align: center;
  margin-top: 4rem;
}

/* ── Reviews Section ──────────────────────────────────────────────────────── */
.reviews {
  background: var(--charcoal);
  padding: 8rem 5%;
}

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

.review-cta {
  text-align: center;
  padding: 3.5rem 2rem;
  background: rgba(140, 30, 23, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  margin-top: 3.5rem;
  border-radius: 4px;
}

.review-cta h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--light-beige);
}

.review-cta p {
  color: var(--warm-beige);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.review-button {
  display: inline-block;
  padding: 1rem 2.8rem;
  background: transparent;
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.88rem;
  border: 2px solid var(--gold);
  transition: all 0.3s ease;
}

.review-button:hover {
  background: var(--gold);
  color: var(--charcoal);
  transform: scale(1.05);
}

/* ── Contact Section ──────────────────────────────────────────────────────── */
.contact {
  background: linear-gradient(180deg, var(--charcoal) 0%, var(--charcoal-light) 100%);
  padding: 8rem 5%;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-info {
  position: sticky;
  top: 140px;
}

.contact-info h3 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--light-beige);
}

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

.contact-icon {
  font-size: 1.8rem;
  color: var(--gold);
  margin-top: 0.2rem;
  flex-shrink: 0;
  width: 40px;
  text-align: center;
}

.contact-detail-content h4 {
  font-size: 1.2rem;
  color: var(--light-beige);
  margin-bottom: 0.4rem;
}

.contact-detail-content p,
.contact-detail-content a {
  color: var(--warm-beige);
  text-decoration: none;
  font-weight: 300;
  font-size: 1.02rem;
  transition: color 0.3s ease;
}

.contact-detail-content a:hover {
  color: var(--gold);
}

.contact-form {
  background: rgba(42, 42, 42, 0.5);
  padding: 3rem;
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 4px;
}

.form-group {
  margin-bottom: 1.8rem;
  position: relative;
}

.form-group label {
  display: block;
  color: var(--warm-beige);
  margin-bottom: 0.7rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.4rem;
  background: rgba(26, 26, 26, 0.7);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: var(--light-beige);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.98rem;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-submit {
  width: 100%;
  padding: 1.2rem;
  background: var(--primary-red);
  color: var(--white);
  border: 2px solid var(--primary-red);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.form-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold);
  transition: left 0.4s ease;
  z-index: -1;
}

.form-submit:hover {
  border-color: var(--gold);
  color: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(140, 30, 23, 0.4);
}

.form-submit:hover::before {
  left: 0;
}

.form-alert {
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 2px;
  font-size: 0.95rem;
  display: none;
}

.form-alert.success {
  display: block;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #86efac;
}

.form-alert.error {
  display: block;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #fca5a5;
}

/* ── Footer ───────────────────────────────────────────────────────────────── */
footer {
  background: var(--charcoal);
  padding: 5rem 5% 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-about {
  max-width: 550px;
}

.footer-about h3 {
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-about p {
  color: var(--warm-beige);
  line-height: 1.8;
  font-weight: 300;
}

.social-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.social-link {
  width: 46px;
  height: 46px;
  background: rgba(42, 42, 42, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  text-decoration: none;
  font-size: 1.2rem;
  transition: var(--transition-smooth);
}

.social-link:hover {
  background: var(--gold);
  color: var(--charcoal);
  transform: translateY(-5px);
  border-color: var(--gold);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  text-align: center;
  color: var(--warm-beige);
  font-size: 0.9rem;
  font-weight: 300;
}

/* ── Interior Pages (Single Story, Archive, Page, 404) ─────────────────────── */
.interior-hero {
  padding-top: 10rem;
  padding-bottom: 4rem;
  background: linear-gradient(180deg, #121212 0%, #1a1a1a 100%) !important;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15) !important;
  text-align: center;
}

.breadcrumb,
.interior-hero .breadcrumb,
.experience-hero .breadcrumb {
  display: none !important;
}

.interior-hero h1 {
  font-size: 4rem;
  color: #ffffff !important;
  max-width: 900px;
  margin: 0 auto 1rem;
}

.interior-hero .post-meta {
  color: #d4c5b9 !important;
  font-size: 0.9rem;
  font-weight: 300;
}

.interior-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 5rem 5%;
}

.article-content {
  color: var(--light-beige);
  font-size: 1.1rem;
  line-height: 1.9;
  font-weight: 300;
}

.article-content p {
  margin-bottom: 2rem;
}

.article-content h2,
.article-content h3 {
  color: var(--gold);
  margin: 3rem 0 1.5rem;
}

.article-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 1rem 1.8rem;
  margin: 2.5rem 0;
  background: rgba(42, 42, 42, 0.4);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--warm-beige);
}

.article-featured-img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  margin-bottom: 3rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

/* ── Scroll Animations ────────────────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive Queries ───────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  nav#navbar {
    padding: 1rem 5%;
  }
  .nav-container {
    display: flex;
    justify-content: center;
    position: relative;
  }
  .nav-left,
  .nav-right,
  .nav-right-wrapper,
  #themeToggleBtn {
    display: none !important;
  }
  .logo {
    position: relative;
    z-index: 1002;
  }
  .logo img {
    height: 2.7em;
  }
  .mobile-menu-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.6rem;
    transition: right 0.4s ease;
    z-index: 1000;
    overflow-y: auto;
    padding: 3rem 1.5rem;
  }
  .mobile-menu-panel.active {
    right: 0;
    display: flex;
  }
  .mobile-menu-panel a {
    color: var(--warm-beige);
    text-decoration: none;
    font-size: 1.05rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
  }
  .mobile-menu-panel a:hover {
    color: var(--gold);
  }
  .mobile-menu-btn {
    display: flex;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translateY(11px);
  }
  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-11px);
  }

  .hero h1 {
    font-size: 4rem;
  }
  .section-title {
    font-size: 2.8rem;
  }
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .stories-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .contact-info {
    position: static;
  }
  .video-highlights {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.8rem;
  }
  .hero-description {
    font-size: 1rem;
  }
  section {
    padding: 5rem 5%;
  }
  .section-title {
    font-size: 2.2rem;
  }
  .gallery-slide {
    height: 400px;
  }
  .stories-grid {
    grid-template-columns: 1fr;
  }
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  .social-links {
    justify-content: center !important;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  .cta-button {
    padding: 1rem 2rem;
    font-size: 0.8rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .feature-card {
    height: 320px;
  }
  .gallery-slide {
    height: 300px;
  }
  .contact-form {
    padding: 2rem 1.5rem;
  }
  .video-highlights {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════════════════════════════════════
   EXPERIENCES THREE-COLUMN SECTION (HOMEPAGE)
══════════════════════════════════════════════════════════════════════════ */
.experiences-section {
  padding: 6.5rem 5%;
  background: linear-gradient(180deg, var(--charcoal) 0%, var(--charcoal-dark) 100%);
  position: relative;
}

.experiences-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1300px;
  margin: 0 auto;
}

.experience-card {
  position: relative;
  height: 520px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.22);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  background-color: var(--charcoal-light);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1),
              box-shadow 0.45s cubic-bezier(0.25, 1, 0.5, 1),
              border-color 0.45s ease;
}

.exp-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 1;
}

.exp-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.15) 0%, rgba(18, 18, 18, 0.75) 60%, rgba(18, 18, 18, 0.96) 100%);
  z-index: 2;
  transition: opacity 0.4s ease;
}

.exp-card-content {
  position: relative;
  z-index: 3;
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.exp-card-badge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  background: rgba(26, 26, 26, 0.88);
  border: 1px solid var(--gold);
  border-radius: 20px;
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  backdrop-filter: blur(6px);
}

.exp-card-title {
  font-family: var(--font-title) !important; /* Kept Sail display script for Curated Retreats */
  font-size: 2.1rem;
  font-weight: 400;
  color: var(--light-beige);
  line-height: 1.2;
  transition: color 0.3s ease;
}

.exp-card-desc {
  color: var(--warm-beige);
  font-size: 0.92rem;
  line-height: 1.6;
  font-weight: 300;
}

.exp-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.3rem;
}

.exp-card-tags span {
  font-size: 0.75rem;
  color: rgba(245, 240, 235, 0.85);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 0.2rem 0.65rem;
  border-radius: 12px;
}

.exp-card-action {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 0.6rem;
  transition: color 0.3s ease;
}

.action-arrow {
  display: inline-flex;
  transition: transform 0.35s ease;
}

.experience-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.65), 0 0 25px rgba(212, 175, 55, 0.15);
}

.experience-card:hover .exp-card-bg {
  transform: scale(1.08);
}

.experience-card:hover .exp-card-title {
  color: var(--gold);
}

.experience-card:hover .action-arrow {
  transform: translateX(6px);
}

/* ══════════════════════════════════════════════════════════════════════════
   RETREAT AMENITIES SECTION (HOMEPAGE)
══════════════════════════════════════════════════════════════════════════ */
.amenities-section {
  padding: 6.5rem 5%;
  background: var(--charcoal);
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1300px;
  margin: 0 auto;
}

.amenity-item {
  background: rgba(42, 42, 42, 0.45);
  border: 1px solid rgba(212, 175, 55, 0.18);
  padding: 2.2rem 1.8rem;
  border-radius: 6px;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.amenity-item:hover {
  background: rgba(42, 42, 42, 0.8);
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45), 0 0 20px rgba(212, 175, 55, 0.12);
}

.amenity-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 1.4rem;
  transition: var(--transition-smooth);
}

.amenity-item:hover .amenity-icon-box {
  background: var(--gold);
  color: var(--charcoal);
  transform: scale(1.08);
}

.amenity-item h3 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--light-beige);
  margin-bottom: 0.65rem;
  line-height: 1.3;
}

.amenity-item p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--warm-beige);
  font-weight: 300;
}

/* ══════════════════════════════════════════════════════════════════════════
   STORYTELLING ABOUT PAGE
══════════════════════════════════════════════════════════════════════════ */
.story-hero {
  padding-top: 12rem;
  padding-bottom: 6rem;
  text-align: center;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  position: relative;
}

.story-hero-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 5%;
}

.story-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.story-main-title {
  font-size: 4.5rem;
  color: var(--light-beige);
  line-height: 1.15;
  margin-bottom: 1.4rem;
}

.story-hero-subtitle {
  font-size: 1.25rem;
  color: var(--warm-beige);
  font-weight: 300;
  max-width: 700px;
  margin: 0 auto;
}

/* ── Blog / Single Story Hero (Matching About Hero Design) ─────────────────── */
.blog-hero {
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-hero-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 5%;
}

.blog-hero-title {
  font-size: 4.2rem;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.blog-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--warm-beige);
}

.blog-meta .meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.blog-meta .meta-item i {
  color: var(--gold);
}

.blog-meta .meta-sep {
  color: var(--gold);
  opacity: 0.6;
}

.story-navigation {
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.story-navigation a {
  color: var(--light-beige);
  font-weight: 500;
  transition: color 0.3s ease;
}

.story-navigation a:hover {
  color: var(--gold);
}

[data-theme="light"] .story-navigation a {
  color: #24201d;
}

[data-theme="light"] .story-navigation a:hover {
  color: var(--primary-red);
}

.story-prologue {
  padding: 5rem 5%;
  background: var(--charcoal-light);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.story-prologue-quote {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.quote-mark {
  font-size: 2.6rem;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 1rem;
}

.story-prologue-quote blockquote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.85rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--light-beige);
  min-height: 120px;
}

.typewriter-quote {
  display: inline-block;
  position: relative;
}

.typewriter-text {
  color: var(--light-beige);
}

.typewriter-cursor {
  display: inline-block;
  color: var(--gold);
  font-style: normal;
  font-weight: 300;
  margin-left: 3px;
  animation: typewriterBlink 0.9s infinite;
  vertical-align: baseline;
}

.typewriter-cursor.fade-out {
  animation: typewriterFadeOut 1.2s forwards;
}

@keyframes typewriterBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@keyframes typewriterFadeOut {
  0% { opacity: 1; }
  100% { opacity: 0; }
}

.quote-author {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.story-chapter {
  padding: 6.5rem 5%;
}

.story-chapter.alt-bg {
  background: var(--charcoal-dark);
}

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

.chapter-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4.5rem;
  align-items: center;
}

.chapter-grid.reverse {
  grid-template-columns: 0.85fr 1.15fr;
}

.chapter-grid.reverse .chapter-text {
  order: 2;
}

.chapter-grid.reverse .chapter-visual {
  order: 1;
}

.chapter-number {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.chapter-title {
  font-size: 2.8rem;
  color: var(--light-beige);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.lead-text {
  font-size: 1.15rem;
  line-height: 1.85;
  color: var(--warm-beige);
  margin-bottom: 1.4rem;
}

.chapter-text p {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(245, 240, 235, 0.85);
  margin-bottom: 1.2rem;
}

.visual-card {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.55);
}

.visual-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.visual-caption {
  padding: 1.2rem 1.6rem;
  background: var(--charcoal-light);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.visual-caption strong {
  color: var(--gold);
  font-size: 0.95rem;
}

.visual-caption span {
  color: var(--warm-beige);
  font-size: 0.82rem;
  font-weight: 300;
}

.story-stat-pills {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.stat-pill {
  padding: 0.85rem 1.3rem;
  background: rgba(42, 42, 42, 0.55);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
}

.stat-pill strong {
  color: var(--gold);
  font-size: 0.95rem;
}

.stat-pill span {
  color: var(--warm-beige);
  font-size: 0.78rem;
}

.story-heading-center {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 4rem;
}

.chapter-intro {
  font-size: 1.12rem;
  color: var(--warm-beige);
  font-weight: 300;
  line-height: 1.7;
}

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

.philosophy-card {
  padding: 2.2rem 1.8rem;
  background: rgba(42, 42, 42, 0.45);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 4px;
  transition: var(--transition-smooth);
}

.philosophy-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  background: rgba(42, 42, 42, 0.75);
}

.phil-icon {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.philosophy-card h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--light-beige);
  margin-bottom: 0.8rem;
  line-height: 1.25;
}

.philosophy-card p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--warm-beige);
  font-weight: 300;
}

.story-experiences-preview {
  padding: 6.5rem 5%;
}

.story-exp-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
}

.story-exp-card {
  padding: 2.5rem 2rem;
  background: var(--charcoal);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 6px;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.story-exp-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.55);
}

.exp-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 0.25rem 0.75rem;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.story-exp-card h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--light-beige);
  margin-bottom: 0.8rem;
}

.story-exp-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--warm-beige);
  font-weight: 300;
}

.exp-cta {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: auto;
  padding-top: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.story-cta-section {
  padding: 6.5rem 5%;
  background: radial-gradient(circle at center, rgba(140, 30, 23, 0.22) 0%, var(--charcoal-dark) 75%);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  text-align: center;
}

.story-cta-section .story-container {
  text-align: center;
  margin: 0 auto;
}

.story-cta-section .story-eyebrow {
  text-align: center;
  display: block;
  margin: 0 auto 0.85rem;
}

.story-cta-section h2 {
  font-size: 3.2rem;
  color: var(--light-beige);
  margin: 0 auto 1.2rem;
  text-align: center;
  max-width: 850px;
}

.story-cta-desc {
  font-size: 1.15rem;
  color: var(--warm-beige);
  max-width: 650px;
  margin: 0 auto;
  font-weight: 300;
  text-align: center;
}

.story-cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.text-center {
  text-align: center !important;
}

/* ══════════════════════════════════════════════════════════════════════════
   EXPERIENCE DETAIL TEMPLATES (FRIENDS, CORPORATE, COUPLE)
══════════════════════════════════════════════════════════════════════════ */
.experience-hero {
  padding-top: 12rem;
  padding-bottom: 6rem;
  text-align: center;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.experience-hero-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 5%;
}

.experience-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.2rem;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 30px;
  margin-bottom: 1.2rem;
}

.experience-title {
  font-size: 4rem;
  color: var(--light-beige);
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.experience-subtitle {
  font-size: 1.2rem;
  color: var(--warm-beige);
  font-weight: 300;
  max-width: 740px;
  margin: 0 auto 2.5rem;
}

.experience-hero-ctas {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

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

.experience-overview-section {
  padding: 6.5rem 5%;
}

.experience-grid-2col {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4.5rem;
  align-items: start;
}

.section-badge {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.overview-content h2 {
  font-size: 2.8rem;
  color: var(--light-beige);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.overview-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.overview-highlight-box {
  padding: 2rem 1.8rem;
  background: rgba(42, 42, 42, 0.45);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 6px;
  transition: var(--transition-smooth);
}

.overview-highlight-box:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  background: rgba(42, 42, 42, 0.7);
}

.overview-highlight-box .box-icon {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.overview-highlight-box h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--light-beige);
  margin-bottom: 0.5rem;
}

.overview-highlight-box p {
  font-size: 0.88rem;
  color: var(--warm-beige);
  line-height: 1.6;
  font-weight: 300;
}

.experience-inclusions-section {
  padding: 6.5rem 5%;
}

.experience-inclusions-section.alt-bg {
  background: var(--charcoal-dark);
}

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

.inclusion-card {
  padding: 2.2rem 1.8rem;
  background: var(--charcoal);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 6px;
  transition: var(--transition-smooth);
}

.inclusion-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.inc-icon {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.inclusion-card h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--light-beige);
  margin-bottom: 0.6rem;
}

.inclusion-card p {
  font-size: 0.88rem;
  color: var(--warm-beige);
  line-height: 1.65;
  font-weight: 300;
}

.experience-itinerary-section {
  padding: 6.5rem 5%;
}

.itinerary-timeline {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 2.5rem;
  background: rgba(42, 42, 42, 0.35);
  border: 1px solid rgba(212, 175, 55, 0.18);
  padding: 2.4rem 2rem;
  border-radius: 6px;
  align-items: center;
}

.timeline-marker {
  font-family: var(--font-title);
  font-size: 1.85rem;
  color: var(--gold);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.timeline-content h3 {
  font-size: 1.5rem;
  color: var(--light-beige);
  margin-bottom: 0.6rem;
}

.timeline-content p {
  font-size: 0.95rem;
  color: var(--warm-beige);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 1rem;
}

.timeline-tag {
  display: inline-block;
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 4px;
}

.experience-booking-section {
  padding: 6.5rem 5%;
}

.experience-booking-section.alt-bg {
  background: var(--charcoal-dark);
}

.booking-split-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  background: var(--charcoal);
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 4rem;
  border-radius: 8px;
  align-items: center;
}

.booking-details h2 {
  font-size: 2.8rem;
  color: var(--light-beige);
  margin-bottom: 1.2rem;
}

.booking-details p {
  font-size: 1.05rem;
  color: var(--warm-beige);
  line-height: 1.8;
  font-weight: 300;
}

.quick-contact-pills {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.quick-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.4rem;
  background: rgba(42, 42, 42, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: var(--light-beige);
  border-radius: 4px;
  font-size: 0.88rem;
  transition: var(--transition-smooth);
}

.quick-pill:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.action-card-inner {
  background: var(--charcoal-light);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 2.8rem 2.2rem;
  border-radius: 6px;
  text-align: center;
}

.action-card-inner h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--light-beige);
  margin-bottom: 0.8rem;
}

.action-card-inner p {
  font-size: 0.9rem;
  color: var(--warm-beige);
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 1.8rem;
}

/* ══════════════════════════════════════════════════════════════════════════
   AIRBNB BUTTONS, BADGES & FOOTER INTEGRATION
══════════════════════════════════════════════════════════════════════════ */
.airbnb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.2rem 3rem;
  background: var(--primary-red);
  color: #ffffff !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 0;
  text-decoration: none;
  transition: var(--transition-smooth);
  border: 2px solid var(--gold);
  line-height: 1.2;
  position: relative;
  overflow: hidden;
}

.airbnb-btn i {
  color: var(--gold);
  font-size: 1.15rem;
  transition: color 0.3s ease;
}

.airbnb-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal) !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.35);
}

.airbnb-btn:hover i {
  color: var(--charcoal);
}

.airbnb-btn.full-width {
  width: 100%;
  margin-bottom: 1rem;
}

.cta-button.full-width {
  width: 100%;
  text-align: center;
  display: block;
}

.cta-button.outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}

.cta-button.outline:hover {
  background: var(--gold);
  color: var(--charcoal);
}

.footer-airbnb-wrap {
  margin-top: 1.6rem;
}

.footer-airbnb-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1.4rem;
  background: rgba(42, 42, 42, 0.6);
  border: 1px solid rgba(255, 56, 92, 0.4);
  border-radius: 6px;
  color: var(--light-beige);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-airbnb-badge:hover {
  background: rgba(255, 56, 92, 0.15);
  border-color: #FF385C;
  transform: translateY(-3px);
  color: var(--light-beige);
}

.airbnb-badge-icon {
  font-size: 1.8rem;
  color: #FF385C;
}

.airbnb-badge-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.airbnb-badge-text .badge-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--warm-beige);
}

.airbnb-badge-text .badge-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--light-beige);
}

.airbnb-badge-arrow {
  font-size: 0.85rem;
  color: var(--warm-beige);
  margin-left: 0.4rem;
}

.social-link.airbnb {
  border-color: rgba(255, 56, 92, 0.35);
  color: #FF385C;
}

.social-link.airbnb:hover {
  background: #FF385C;
  color: #ffffff;
  border-color: #FF385C;
  transform: translateY(-5px);
}

/* ══════════════════════════════════════════════════════════════════════════
   RESPONSIVENESS FOR NEW SECTIONS & PAGES
══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .experiences-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }
  .experience-card {
    height: 480px;
  }
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .philosophy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .story-exp-cards {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
  .inclusions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .chapter-grid,
  .chapter-grid.reverse,
  .experience-grid-2col,
  .booking-split-card {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .chapter-grid.reverse .chapter-text {
    order: 1;
  }
  .chapter-grid.reverse .chapter-visual {
    order: 2;
  }
}

@media (max-width: 768px) {
  .story-main-title,
  .blog-hero-title,
  .experience-title {
    font-size: 2.8rem;
  }
  .story-hero,
  .blog-hero,
  .experience-hero {
    padding-top: 9rem;
    padding-bottom: 4rem;
  }
  .chapter-title,
  .overview-content h2,
  .booking-details h2,
  .story-cta-section h2 {
    font-size: 2.2rem;
  }
  .story-prologue-quote blockquote {
    font-size: 1.4rem;
  }
  .timeline-item {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .timeline-marker {
    font-size: 1.4rem;
  }
  .booking-split-card {
    padding: 2.5rem 1.5rem;
  }
  .amenities-grid {
    grid-template-columns: 1fr;
  }
  .gallery-tabs {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0.85rem 1.25rem 1.6rem;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    scrollbar-width: none;
  }
  .gallery-tabs::-webkit-scrollbar {
    display: none;
  }
  .gallery-tab {
    flex-shrink: 0;
    margin: 0.25rem 0.2rem;
    padding: 0.65rem 1.4rem;
    font-size: 0.8rem;
  }
  .inclusions-grid {
    grid-template-columns: 1fr;
  }
  .philosophy-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .experience-card {
    height: 440px;
  }
  .exp-card-content {
    padding: 1.5rem;
  }
  .exp-card-title {
    font-size: 1.85rem;
  }
  .story-main-title,
  .experience-title {
    font-size: 2.2rem;
  }
  .quick-contact-pills {
    flex-direction: column;
  }
  .quick-pill {
    width: 100%;
    justify-content: center;
  }
}

/* ══════════════════════════════════════════════════════════════════════════
   THEME TOGGLE BUTTON & SWITCHER COMPONENT
══════════════════════════════════════════════════════════════════════════ */
.nav-right-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.6rem;
}

.theme-toggle-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  outline: none;
  border-radius: 20px;
  transition: transform 0.25s ease;
}

.theme-toggle-btn:hover {
  transform: scale(1.06);
}

.theme-toggle-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.theme-toggle-track {
  width: 54px;
  height: 28px;
  background: rgba(36, 36, 36, 0.8);
  border: 1.5px solid rgba(212, 175, 55, 0.45);
  border-radius: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 7px;
  transition: var(--transition-smooth);
  box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.5);
}

.theme-toggle-track .icon-sun {
  font-size: 11px;
  color: #f39c12;
  opacity: 0.35;
  transition: opacity 0.3s ease;
}

.theme-toggle-track .icon-moon {
  font-size: 11px;
  color: var(--gold);
  opacity: 1;
  transition: opacity 0.3s ease;
}

.theme-toggle-thumb {
  position: absolute;
  top: 2px;
  right: 3px;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #9e7d18);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.35s ease;
}

/* Light Mode State for Toggle Switch */
[data-theme="light"] .theme-toggle-track {
  background: #ffffff;
  border-color: rgba(140, 30, 23, 0.35);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .theme-toggle-track .icon-sun {
  opacity: 1;
}

[data-theme="light"] .theme-toggle-track .icon-moon {
  opacity: 0.3;
}

[data-theme="light"] .theme-toggle-thumb {
  transform: translateX(-26px);
  background: linear-gradient(135deg, #e64a19, var(--primary-red));
  box-shadow: 0 2px 6px rgba(140, 30, 23, 0.4);
}

/* Mobile Drawer Switcher Row (Sidebar - placed at the end) */
.mobile-theme-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 80%;
  max-width: 280px;
  padding: 0.75rem 1.2rem;
  margin-top: 1.2rem;
  margin-bottom: 0.5rem;
  background: rgba(42, 42, 42, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 8px;
  flex-shrink: 0;
}

[data-theme="light"] .mobile-theme-row {
  background: #ffffff;
  border-color: rgba(140, 30, 23, 0.2);
}

.mobile-theme-label {
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--warm-beige);
  font-weight: 500;
}

[data-theme="light"] .mobile-theme-label {
  color: #59524c;
}

/* ══════════════════════════════════════════════════════════════════════════
   LIGHT THEME DESIGN SYSTEM (RED TITLES)
══════════════════════════════════════════════════════════════════════════ */
[data-theme="light"] {
  --charcoal: #fbf8f5;
  --charcoal-light: #ffffff;
  --charcoal-dark: #f0e9df;
  --warm-beige: #5c554e;
  --light-beige: #24201d;
  --gold: #b3861b;
  --gold-light: #c99a28;
  --gold-dark: #8c1e17;
  --overlay: rgba(251, 248, 245, 0.8);
}

[data-theme="light"] body {
  background-color: #fbf8f5;
  color: #24201d;
}

/* ── All Headings & Titles in Light Theme: Use Rich Red (Excluding Hero Overlays) ── */
[data-theme="light"] h1:not(.story-main-title):not(.blog-hero-title):not(.experience-title):not(.hero h1):not(.interior-hero h1),
[data-theme="light"] h2,
[data-theme="light"] h3,
[data-theme="light"] h4,
[data-theme="light"] h5,
[data-theme="light"] h6,
[data-theme="light"] .section-title,
[data-theme="light"] .chapter-title,
[data-theme="light"] .story-title,
[data-theme="light"] .story-title a,
[data-theme="light"] .footer-about h3,
[data-theme="light"] .amenity-item h3,
[data-theme="light"] .philosophy-card h3,
[data-theme="light"] .inclusion-card h4,
[data-theme="light"] .timeline-content h3,
[data-theme="light"] .overview-content h2,
[data-theme="light"] .booking-details h2,
[data-theme="light"] .action-card-inner h3,
[data-theme="light"] .contact-info h3,
[data-theme="light"] .contact-detail-content h4,
[data-theme="light"] .review-cta h3,
[data-theme="light"] .story-exp-card h3,
[data-theme="light"] .story-cta-section h2,
[data-theme="light"] .overview-highlight-box h3,
[data-theme="light"] .article-content h2,
[data-theme="light"] .article-content h3 {
  color: var(--primary-red) !important;
}

/* ── Home Carousel & Hero: Always White Text on Both Themes ───────────────── */
.hero h1,
.hero .hero-subtitle,
.hero .hero-description,
.hero-content,
.hero-content p,
.hero-content span,
[data-theme="light"] .hero h1,
[data-theme="light"] .hero .hero-subtitle,
[data-theme="light"] .hero .hero-description,
[data-theme="light"] .hero-content,
[data-theme="light"] .hero-content p,
[data-theme="light"] .hero-content span,
[data-theme="dark"] .hero h1,
[data-theme="dark"] .hero .hero-subtitle,
[data-theme="dark"] .hero .hero-description,
[data-theme="dark"] .hero-content,
[data-theme="dark"] .hero-content p,
[data-theme="dark"] .hero-content span,
.scroll-indicator,
.scroll-indicator svg,
[data-theme="light"] .scroll-indicator,
[data-theme="light"] .scroll-indicator svg,
[data-theme="dark"] .scroll-indicator,
[data-theme="dark"] .scroll-indicator svg {
  color: #ffffff !important;
  stroke: #ffffff !important;
}

.scroll-indicator svg rect,
[data-theme="light"] .scroll-indicator svg rect,
[data-theme="dark"] .scroll-indicator svg rect {
  stroke: #ffffff !important;
  fill: transparent !important;
}

.scroll-indicator svg circle,
[data-theme="light"] .scroll-indicator svg circle,
[data-theme="dark"] .scroll-indicator svg circle {
  fill: #ffffff !important;
  stroke: none !important;
}

/* Experiences / Carousel Cards: Always White Text on Both Themes */
.exp-card-title,
.exp-card-desc,
.exp-card-action,
[data-theme="light"] .exp-card-title,
[data-theme="light"] .exp-card-desc,
[data-theme="light"] .exp-card-action,
[data-theme="dark"] .exp-card-title,
[data-theme="dark"] .exp-card-desc,
[data-theme="dark"] .exp-card-action {
  color: #ffffff !important;
}

.exp-card-tagline,
[data-theme="light"] .exp-card-tagline,
[data-theme="dark"] .exp-card-tagline {
  color: var(--gold-light) !important;
}

/* ── Hero Banners (All Pages): Identical to Dark Theme on All Themes ──────── */
/* 1. Interior Hero Banner (Page, Index, Archive, 404) */
.interior-hero,
[data-theme="light"] .interior-hero,
[data-theme="dark"] .interior-hero {
  background: linear-gradient(180deg, #121212 0%, #1a1a1a 100%) !important;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15) !important;
}

.interior-hero h1,
[data-theme="light"] .interior-hero h1,
[data-theme="dark"] .interior-hero h1 {
  color: #ffffff !important;
}

.interior-hero .post-meta,
.interior-hero p,
[data-theme="light"] .interior-hero .post-meta,
[data-theme="light"] .interior-hero p,
[data-theme="dark"] .interior-hero .post-meta,
[data-theme="dark"] .interior-hero p {
  color: #d4c5b9 !important;
}

.interior-hero div[style*="font-family"],
[data-theme="light"] .interior-hero div[style*="font-family"],
[data-theme="dark"] .interior-hero div[style*="font-family"] {
  color: #d4af37 !important;
}

/* 2. Experience Hero Banner (Friends, Corporate, Couple) */
.experience-badge-pill,
[data-theme="light"] .experience-badge-pill,
[data-theme="dark"] .experience-badge-pill {
  background: rgba(212, 175, 55, 0.15) !important;
  border: 1px solid #d4af37 !important;
  color: #d4af37 !important;
}

.experience-badge-pill i,
[data-theme="light"] .experience-badge-pill i,
[data-theme="dark"] .experience-badge-pill i {
  color: #d4af37 !important;
}

.experience-title,
[data-theme="light"] .experience-title,
[data-theme="dark"] .experience-title {
  color: #ffffff !important;
}

.experience-subtitle,
[data-theme="light"] .experience-subtitle,
[data-theme="dark"] .experience-subtitle {
  color: #d4c5b9 !important;
}

/* 3. Storytelling & Single Story Hero (About, Single) */
.story-hero .story-eyebrow,
.blog-hero .story-eyebrow,
[data-theme="light"] .story-hero .story-eyebrow,
[data-theme="light"] .blog-hero .story-eyebrow,
[data-theme="dark"] .story-hero .story-eyebrow,
[data-theme="dark"] .blog-hero .story-eyebrow {
  color: #d4af37 !important;
}

.story-main-title,
.blog-hero-title,
[data-theme="light"] .story-main-title,
[data-theme="light"] .blog-hero-title,
[data-theme="dark"] .story-main-title,
[data-theme="dark"] .blog-hero-title {
  color: #ffffff !important;
}

.story-hero-subtitle,
.blog-meta,
.blog-meta .meta-item,
[data-theme="light"] .story-hero-subtitle,
[data-theme="light"] .blog-meta,
[data-theme="light"] .blog-meta .meta-item,
[data-theme="dark"] .story-hero-subtitle,
[data-theme="dark"] .blog-meta,
[data-theme="dark"] .blog-meta .meta-item {
  color: #f5f0eb !important;
}

.blog-meta .meta-sep,
[data-theme="light"] .blog-meta .meta-sep,
[data-theme="dark"] .blog-meta .meta-sep {
  color: rgba(212, 175, 55, 0.7) !important;
}

.blog-meta .meta-item i,
[data-theme="light"] .blog-meta .meta-item i,
[data-theme="dark"] .blog-meta .meta-item i {
  color: #d4af37 !important;
}

/* ── Section Subtitles & Eyebrows ────────────────────────────────────────── */
[data-theme="light"] .section-subtitle,
[data-theme="light"] .section-badge,
[data-theme="light"] .chapter-number,
[data-theme="light"] .story-meta {
  color: var(--dark-red);
  font-weight: 600;
}

[data-theme="light"] .section-description,
[data-theme="light"] .chapter-intro,
[data-theme="light"] .story-cta-desc,
[data-theme="light"] .lead-text {
  color: #544d47;
}

/* ── Navbar: White at Start on Both Themes, Changes Color When Sticky ────── */
nav#navbar:not(.scrolled) .nav-links a {
  color: #ffffff !important;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

nav#navbar:not(.scrolled) .nav-links a:hover {
  color: var(--gold-light) !important;
}

nav#navbar:not(.scrolled) .nav-links a::after {
  background: #ffffff !important;
}

nav#navbar:not(.scrolled) .mobile-menu-btn span {
  background-color: #ffffff !important;
}

/* Scrolled / Sticky Navbar in Dark Theme */
nav#navbar.scrolled .nav-links a {
  color: var(--warm-beige) !important;
  text-shadow: none;
}

nav#navbar.scrolled .nav-links a:hover {
  color: var(--gold) !important;
}

nav#navbar.scrolled .nav-links a::after {
  background: var(--gold) !important;
}

nav#navbar.scrolled .mobile-menu-btn span {
  background-color: var(--gold) !important;
}

/* Scrolled / Sticky Navbar in Light Theme */
[data-theme="light"] nav#navbar.scrolled {
  background: rgba(251, 248, 245, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(140, 30, 23, 0.12);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] nav#navbar.scrolled .nav-links a {
  color: #2b2622 !important;
  text-shadow: none;
}

[data-theme="light"] nav#navbar.scrolled .nav-links a:hover {
  color: var(--primary-red) !important;
}

[data-theme="light"] nav#navbar.scrolled .nav-links a::after {
  background: var(--primary-red) !important;
}

[data-theme="light"] nav#navbar.scrolled .mobile-menu-btn span {
  background-color: var(--primary-red) !important;
}

[data-theme="light"] nav#navbar.scrolled .logo:hover .logo-light {
  opacity: 0.88;
}

[data-theme="light"] .mobile-menu-panel {
  background: rgba(251, 248, 245, 0.98);
}

[data-theme="light"] .mobile-menu-panel a {
  color: #2b2622;
}

[data-theme="light"] .mobile-menu-panel a:hover {
  color: var(--primary-red);
}

/* ── Experiences Section (Front page) ─────────────────────────────────────── */
[data-theme="light"] .experiences-section {
  background: linear-gradient(180deg, #fbf8f5 0%, #ede5da 100%);
}

[data-theme="light"] .experience-card {
  border-color: rgba(140, 30, 23, 0.2);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .experience-card:hover {
  border-color: var(--primary-red);
  box-shadow: 0 16px 36px rgba(140, 30, 23, 0.18);
}

[data-theme="light"] .exp-card-overlay {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(20, 15, 12, 0.6) 45%, rgba(15, 10, 8, 0.94) 100%);
}

[data-theme="light"] .exp-card-badge {
  background: rgba(255, 255, 255, 0.95);
  border-color: var(--primary-red);
  color: var(--primary-red);
}

[data-theme="light"] .exp-card-desc {
  color: #f0e9df;
}

[data-theme="light"] .exp-card-action {
  color: #f5f0eb;
}

[data-theme="light"] .experience-card:hover .exp-card-action {
  color: var(--gold-light);
}

/* ── Amenities Section (Front page) ───────────────────────────────────────── */
[data-theme="light"] .amenities-section {
  background: #f4ede3;
  border-color: rgba(140, 30, 23, 0.12);
}

[data-theme="light"] .amenity-item {
  background: #ffffff;
  border-color: rgba(140, 30, 23, 0.14);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

[data-theme="light"] .amenity-item:hover {
  background: #ffffff;
  border-color: var(--primary-red);
  box-shadow: 0 12px 28px rgba(140, 30, 23, 0.12);
}

[data-theme="light"] .amenity-icon-box {
  background: rgba(140, 30, 23, 0.08);
  border-color: rgba(140, 30, 23, 0.25);
  color: var(--primary-red);
}

[data-theme="light"] .amenity-item:hover .amenity-icon-box {
  background: var(--primary-red);
  color: #ffffff;
}

[data-theme="light"] .amenity-item p {
  color: #5c554e;
}

/* ── Gallery Tabs ─────────────────────────────────────────────────────────── */
[data-theme="light"] .gallery-tab {
  background: #eee6db;
  color: #524b45;
  border-color: rgba(140, 30, 23, 0.2);
}

[data-theme="light"] .gallery-tab:hover {
  border-color: var(--primary-red);
  color: var(--primary-red);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .gallery-tab.active {
  background: var(--primary-red);
  color: #ffffff;
  border-color: var(--primary-red);
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(140, 30, 23, 0.35);
  transform: translateY(-2px);
}

/* ── Video Tour Section ───────────────────────────────────────────────────── */
[data-theme="light"] .video-tour {
  background: #fbf8f5;
}

[data-theme="light"] .video-highlight-item {
  background: #ffffff;
  border-color: rgba(140, 30, 23, 0.12);
}

[data-theme="light"] .video-highlight-item h4 {
  color: var(--primary-red) !important;
}

[data-theme="light"] .video-highlight-icon {
  color: var(--primary-red);
}

/* ── Stories / Blog Cards ─────────────────────────────────────────────────── */
[data-theme="light"] .stories {
  background: #f4ede3;
}

[data-theme="light"] .story-card {
  background: #ffffff;
  border-color: rgba(140, 30, 23, 0.14);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .story-card:hover {
  border-color: var(--primary-red);
  box-shadow: 0 12px 30px rgba(140, 30, 23, 0.12);
}

[data-theme="light"] .story-excerpt {
  color: #5c554e;
}

[data-theme="light"] .story-link {
  color: var(--primary-red);
}

/* ── Testimonials & Reviews ───────────────────────────────────────────────── */
[data-theme="light"] .reviews {
  background: #fbf8f5;
}

[data-theme="light"] .review-cta {
  background: #ffffff;
  border-color: rgba(140, 30, 23, 0.15);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .review-cta p {
  color: #5c554e;
}

/* ── Contact Section ──────────────────────────────────────────────────────── */
[data-theme="light"] .contact {
  background: #f4ede3;
}

[data-theme="light"] .contact-info {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

[data-theme="light"] .contact-icon {
  background: rgba(140, 30, 23, 0.08);
  border-color: rgba(140, 30, 23, 0.25);
  color: var(--primary-red);
}

[data-theme="light"] .contact-detail-content p,
[data-theme="light"] .contact-detail-content a {
  color: #5c554e;
}

[data-theme="light"] .contact-form {
  background: #ffffff;
  border-color: rgba(140, 30, 23, 0.14);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .form-group label {
  color: #38322e;
}

[data-theme="light"] .form-group input,
[data-theme="light"] .form-group textarea {
  background: #faf7f2;
  color: #24201d;
  border: 1px solid #dcd3c8;
}

[data-theme="light"] .form-group input:focus,
[data-theme="light"] .form-group textarea:focus {
  border-color: var(--primary-red);
  background: #ffffff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(140, 30, 23, 0.15);
}

[data-theme="light"] .form-submit,
[data-theme="light"] .review-button,
[data-theme="light"] .cta-button:not(.outline) {
  background: var(--primary-red);
  color: #ffffff !important;
  border-color: var(--primary-red);
}

[data-theme="light"] .form-submit:hover,
[data-theme="light"] .review-button:hover,
[data-theme="light"] .cta-button:not(.outline):hover {
  background: #6e1610;
  border-color: #6e1610;
}

/* ── Storytelling About Page in Light Theme ───────────────────────────────── */
[data-theme="light"] .story-prologue {
  background: #ede5da;
  border-color: rgba(140, 30, 23, 0.14);
}

[data-theme="light"] .quote-mark {
  color: var(--primary-red);
}

[data-theme="light"] .story-prologue-quote blockquote,
[data-theme="light"] .typewriter-text {
  color: #24201d;
}

[data-theme="light"] .typewriter-cursor {
  color: var(--primary-red);
}

[data-theme="light"] .quote-author {
  color: var(--primary-red);
}

[data-theme="light"] .story-chapter {
  background: #fbf8f5;
}

[data-theme="light"] .story-chapter.alt-bg {
  background: #f3ede4;
}

[data-theme="light"] .chapter-text p {
  color: #38322e;
}

[data-theme="light"] .visual-card {
  border-color: rgba(140, 30, 23, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .visual-caption {
  background: #ffffff;
  border-color: rgba(140, 30, 23, 0.14);
}

[data-theme="light"] .visual-caption strong {
  color: var(--primary-red);
}

[data-theme="light"] .visual-caption span {
  color: #5c554e;
}

[data-theme="light"] .stat-pill {
  background: #ffffff;
  border-color: rgba(140, 30, 23, 0.18);
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

[data-theme="light"] .stat-pill strong {
  color: var(--primary-red);
}

[data-theme="light"] .stat-pill span {
  color: #5c554e;
}

[data-theme="light"] .philosophy-card {
  background: #ffffff;
  border-color: rgba(140, 30, 23, 0.14);
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

[data-theme="light"] .phil-icon {
  color: var(--primary-red);
}

[data-theme="light"] .philosophy-card p {
  color: #5c554e;
}

[data-theme="light"] .story-experiences-preview.alt-bg {
  background: #f3ede4;
}

[data-theme="light"] .story-exp-card {
  background: #ffffff;
  border-color: rgba(140, 30, 23, 0.15);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .story-exp-card:hover {
  border-color: var(--primary-red);
  box-shadow: 0 14px 30px rgba(140, 30, 23, 0.12);
}

[data-theme="light"] .exp-badge {
  background: rgba(140, 30, 23, 0.08);
  border-color: rgba(140, 30, 23, 0.25);
  color: var(--primary-red);
}

[data-theme="light"] .story-exp-card p {
  color: #5c554e;
}

[data-theme="light"] .exp-cta {
  color: var(--primary-red);
}

[data-theme="light"] .story-cta-section {
  background: radial-gradient(circle at center, rgba(140, 30, 23, 0.12) 0%, #ece4da 80%);
  border-color: rgba(140, 30, 23, 0.15);
}

/* ── Experience Detail Pages in Light Theme ───────────────────────────────── */
[data-theme="light"] .experience-overview-section {
  background: #fbf8f5;
}

[data-theme="light"] .overview-highlight-box {
  background: #ffffff;
  border-color: rgba(140, 30, 23, 0.14);
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

[data-theme="light"] .overview-highlight-box:hover {
  border-color: var(--primary-red);
  background: #ffffff;
}

[data-theme="light"] .overview-highlight-box .box-icon {
  color: var(--primary-red);
}

[data-theme="light"] .overview-highlight-box p {
  color: #5c554e;
}

[data-theme="light"] .experience-inclusions-section.alt-bg {
  background: #f3ede4;
}

[data-theme="light"] .inclusion-card {
  background: #ffffff;
  border-color: rgba(140, 30, 23, 0.14);
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

[data-theme="light"] .inclusion-card:hover {
  border-color: var(--primary-red);
}

[data-theme="light"] .inc-icon {
  color: var(--primary-red);
}

[data-theme="light"] .inclusion-card p {
  color: #5c554e;
}

[data-theme="light"] .experience-itinerary-section {
  background: #fbf8f5;
}

[data-theme="light"] .timeline-item {
  background: #ffffff;
  border-color: rgba(140, 30, 23, 0.14);
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

[data-theme="light"] .timeline-marker {
  color: var(--primary-red);
}

[data-theme="light"] .timeline-content p {
  color: #5c554e;
}

[data-theme="light"] .timeline-tag {
  background: rgba(140, 30, 23, 0.08);
  color: var(--primary-red);
}

[data-theme="light"] .experience-booking-section.alt-bg {
  background: #f3ede4;
}

[data-theme="light"] .booking-split-card {
  background: #ffffff;
  border-color: rgba(140, 30, 23, 0.18);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .booking-details p {
  color: #544d47;
}

[data-theme="light"] .quick-pill {
  background: #f4ede3;
  color: #24201d;
  border-color: rgba(140, 30, 23, 0.2);
}

[data-theme="light"] .quick-pill:hover {
  border-color: var(--primary-red);
  color: var(--primary-red);
}

[data-theme="light"] .action-card-inner {
  background: #faf7f2;
  border-color: rgba(140, 30, 23, 0.2);
}

[data-theme="light"] .action-card-inner p {
  color: #5c554e;
}

[data-theme="light"] .cta-button.outline {
  border-color: var(--primary-red);
  color: var(--primary-red);
}

[data-theme="light"] .cta-button.outline:hover {
  background: var(--primary-red);
  color: #ffffff;
}

/* ── Footer in Light Theme ────────────────────────────────────────────────── */
[data-theme="light"] footer {
  background: #eee5d8;
  border-top: 1px solid rgba(140, 30, 23, 0.18);
}

[data-theme="light"] .footer-about p {
  color: #5c554e;
}

[data-theme="light"] .footer-airbnb-badge {
  background: #ffffff;
  border-color: rgba(255, 56, 92, 0.4);
  color: #24201d;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .footer-airbnb-badge:hover {
  background: rgba(255, 56, 92, 0.08);
}

[data-theme="light"] .airbnb-badge-text .badge-label {
  color: #6b635c;
}

[data-theme="light"] .airbnb-badge-text .badge-title {
  color: #24201d;
}

[data-theme="light"] .social-link {
  background: #ffffff;
  border-color: rgba(140, 30, 23, 0.2);
  color: var(--primary-red);
}

[data-theme="light"] .social-link:hover {
  background: var(--primary-red);
  color: #ffffff;
  border-color: var(--primary-red);
}

[data-theme="light"] .social-link.airbnb {
  color: #FF385C;
}

[data-theme="light"] .social-link.airbnb:hover {
  background: #FF385C;
  color: #ffffff;
}

[data-theme="light"] .footer-bottom {
  border-top: 1px solid rgba(140, 30, 23, 0.12);
  color: #6b635c;
}

/* ── General Article & Page Content in Light Theme ────────────────────────── */
[data-theme="light"] .article-content {
  color: #2b2622;
}

[data-theme="light"] .article-content blockquote {
  background: rgba(140, 30, 23, 0.05);
  border-color: var(--primary-red);
  color: #38322e;
}


