/* ============================================================
   La Cabaña — Private Cabin
   styles.css
   Design rationale: Deep forest-near-black from the La Cabaña
   logo grounds the cabin in the dense rainforest of Real,
   Quezon — rust-brown accent echoes the exposed timber A-frame
   and wooden decks, while honey amber warms the palette like
   lantern light on mountain evenings.
   Heading: Zilla Slab — robust slab serif with wilderness
   character, like hand-carved signage above a mountain cabin
   door. Body: Inter — clean, neutral humanist that keeps rustic
   warmth from becoming heavy.
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Zilla+Slab:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ---------- Custom Properties ---------- */
:root {
  --dark:        #181E0C;
  --bg-alt:      #22280E;
  --accent:      #C4723A;
  --highlight:   #D4A040;
  --cream:       #F4EFE4;
  --cream-dim:   rgba(244,239,228,0.65);
  --accent-dim:  rgba(196,114,58,0.14);
  --border:      rgba(196,114,58,0.22);
  --ff-display:  'Zilla Slab', serif;
  --ff-body:     'Inter', sans-serif;

  --nav-h:       72px;
  --section-gap: 6rem;
  --radius:      4px;
  --radius-lg:   8px;
  --transition:  0.25s ease;
}

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

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

body {
  font-family: var(--ff-body);
  background: var(--dark);
  color: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ---------- Typography Scale ---------- */
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  line-height: 1.15;
  color: var(--cream);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }

p  { font-size: 1rem; font-weight: 400; color: var(--cream-dim); }
.lead { font-size: 1.15rem; font-weight: 300; color: var(--cream); }

/* ---------- Layout Helpers ---------- */
.container {
  width: min(1160px, 92%);
  margin-inline: auto;
}

.section-pad { padding-block: var(--section-gap); }

.section-label {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-header {
  max-width: 640px;
  margin-bottom: 3rem;
}

.section-header p { margin-top: 0.75rem; }

.divider {
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin: 1rem 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: var(--accent);
  color: var(--cream);
}
.btn-primary:hover {
  background: #b8632e;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  padding-inline: 0;
  gap: 0.4rem;
  font-size: 0.875rem;
}
.btn-ghost:hover { color: var(--highlight); }

/* ---------- Navigation ---------- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}

#navbar.scrolled {
  background: rgba(24,30,12,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.nav-logo img {
  height: 44px;
  width: 44px;
  object-fit: cover;
  border-radius: 50%;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-name {
  font-family: var(--ff-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.02em;
}

.nav-logo-sub {
  font-size: 0.6rem;
  font-weight: 400;
  color: var(--cream-dim);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream-dim);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.nav-links a:hover,
.nav-links a.active { color: var(--cream); }

.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta { margin-left: 1rem; }

/* Hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* Mobile nav overlay */
#mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

#mobile-nav.open { display: flex; }

#mobile-nav a {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--cream);
  transition: color var(--transition);
}
#mobile-nav a:hover { color: var(--accent); }

.mobile-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--cream);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.hero.loaded .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(24,30,12,0.92) 0%,
    rgba(24,30,12,0.45) 45%,
    rgba(24,30,12,0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: clamp(3rem, 8vh, 6rem);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background: var(--accent);
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 1.25rem;
}

.hero-tagline {
  font-size: 1.1rem;
  color: var(--cream-dim);
  max-width: 480px;
  margin-bottom: 2rem;
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  z-index: 2;
}

.hero-scroll span {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.15); }
}

/* ---------- Stats Bar ---------- */
.stats-bar {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: 2.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}

.stat-item {
  background: var(--bg-alt);
  padding: 1.5rem 2rem;
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--highlight);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

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

.intro-visual {
  position: relative;
}

.intro-visual-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.intro-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--accent);
  color: var(--cream);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  min-width: 120px;
}

.intro-badge strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.intro-badge span {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
}

.intro-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--cream-dim);
  background: var(--accent-dim);
  border: 1px solid var(--border);
  padding: 0.6rem 0.9rem;
  border-radius: var(--radius);
}

.feature-pill svg { flex-shrink: 0; color: var(--accent); }

/* ---------- Highlights Section ---------- */
.highlights-section { background: var(--bg-alt); }

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
}

.highlight-card {
  background: var(--bg-alt);
  padding: 2.5rem 2rem;
  transition: background var(--transition);
}

.highlight-card:hover { background: rgba(196,114,58,0.07); }

.highlight-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--accent);
}

.highlight-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.highlight-card p { font-size: 0.9rem; }

/* ---------- Quote / Press ---------- */
.quote-section {
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--dark) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding-block: 5rem;
}

.blockquote {
  font-family: var(--ff-display);
  font-size: clamp(1.3rem, 2.8vw, 2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  max-width: 820px;
  margin-inline: auto;
  line-height: 1.5;
}

.blockquote::before { content: '\201C'; color: var(--accent); }
.blockquote::after  { content: '\201D'; color: var(--accent); }

.quote-source {
  margin-top: 1.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ---------- Policies Teaser ---------- */
.policies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.policy-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.25rem;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.policy-item svg { flex-shrink: 0; margin-top: 2px; color: var(--accent); }

.policy-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.2rem;
}

.policy-text span {
  font-size: 0.8rem;
  color: var(--cream-dim);
}

/* ---------- Instagram CTA ---------- */
.insta-cta-section {
  background: var(--bg-alt);
  text-align: center;
  padding-block: 5rem;
  border-top: 1px solid var(--border);
}

.insta-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.insta-cta-section h2 { margin-bottom: 0.75rem; }
.insta-cta-section p  { max-width: 480px; margin-inline: auto; margin-bottom: 2rem; }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: 4rem;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--accent), var(--highlight));
}

.page-hero-inner {
  max-width: 680px;
}

.page-hero h1 { margin-bottom: 1rem; }
.page-hero p  { font-size: 1.1rem; }

/* ---------- About Page ---------- */
.story-grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 5rem;
  align-items: start;
}

.story-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}

.story-text h2 { margin-bottom: 1rem; }
.story-text p  { margin-bottom: 1.25rem; }

/* Timeline */
.timeline {
  position: relative;
  margin-top: 1.5rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 0; bottom: 0;
  width: 1px;
  background: var(--border);
}

.timeline-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.timeline-dot {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 2px solid var(--accent);
  position: relative;
  z-index: 1;
}

.timeline-body {}

.timeline-date {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.timeline-body h4 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.timeline-body p { font-size: 0.88rem; }

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.value-card {
  background: var(--bg-alt);
  padding: 2rem 1.5rem;
}

.value-card h3 { font-size: 1rem; margin-bottom: 0.5rem; color: var(--highlight); }
.value-card p  { font-size: 0.85rem; }

/* Sunset feature */
.sunset-feature {
  margin-top: 4rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.sunset-feature img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 30%;
}

.sunset-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(24,30,12,0.85) 0%, transparent 60%);
  display: flex;
  align-items: center;
  padding: 3rem;
}

.sunset-text h2 { max-width: 400px; margin-bottom: 1rem; }
.sunset-text p  { max-width: 360px; }

/* ---------- Rooms / Cabin Page ---------- */
.cabin-intro {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding-block: 3.5rem;
}

.cabin-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 1.5px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 2rem;
}

.cabin-stat {
  background: var(--bg-alt);
  padding: 1.5rem;
  text-align: center;
}

.cabin-stat .num {
  display: block;
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--highlight);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.cabin-stat .lbl {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

/* Category tabs */
.category-nav {
  position: sticky;
  top: var(--nav-h);
  z-index: 100;
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  padding-block: 0;
}

.category-nav-inner {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.category-nav-inner::-webkit-scrollbar { display: none; }

.cat-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-dim);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition);
}

.cat-tab svg { color: var(--accent); }

.cat-tab:hover,
.cat-tab.active {
  color: var(--cream);
  border-bottom-color: var(--accent);
}

/* Space sections */
.space-section { padding-block: var(--section-gap); }
.space-section:not(:last-child) { border-bottom: 1px solid var(--border); }

.space-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.space-grid.reverse { direction: rtl; }
.space-grid.reverse > * { direction: ltr; }

.space-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.space-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.space-body h2 { margin-bottom: 1rem; }
.space-body p  { margin-bottom: 1.5rem; }

.amenity-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--cream-dim);
}

.amenity-item::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* Policies full section */
.policies-section {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.policies-full {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.policy-group {
  background: var(--bg-alt);
  padding: 1.75rem;
}

.policy-group-title {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.policy-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--cream-dim);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.policy-list li svg { flex-shrink: 0; margin-top: 1px; color: var(--highlight); }

/* ---------- Gallery Page ---------- */
.gallery-grid {
  columns: 3;
  column-gap: 1rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(24,30,12,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
  background: rgba(24,30,12,0.45);
}

.gallery-zoom-icon {
  color: var(--cream);
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-zoom-icon { opacity: 1; }

/* Lightbox */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(24,30,12,0.97);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

#lightbox.open { display: flex; }

.lightbox-inner {
  position: relative;
  max-width: min(90vw, 1000px);
  max-height: 90vh;
}

#lightbox-img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-close {
  position: absolute;
  top: -2.5rem; right: 0;
  background: none;
  border: none;
  color: var(--cream);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(24,30,12,0.7);
  border: 1px solid var(--border);
  color: var(--cream);
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}

.lightbox-prev { left: -3.5rem; }
.lightbox-next { right: -3.5rem; }

.lightbox-prev:hover,
.lightbox-next:hover { background: var(--accent); border-color: var(--accent); }

.lightbox-caption {
  text-align: center;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--cream-dim);
}

/* ---------- Contact Page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h2 { margin-bottom: 2rem; }

.contact-blocks { display: flex; flex-direction: column; gap: 1.75rem; }

.contact-block {}

.contact-block-title {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.contact-block-title svg { color: var(--accent); }

.contact-block p,
.contact-block a {
  font-size: 0.95rem;
  color: var(--cream-dim);
  line-height: 1.55;
  display: block;
}

.contact-block a:hover { color: var(--highlight); }

.contact-sidebar {}

.contact-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}

/* Check-in card */
.checkin-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}

.checkin-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.85rem;
  border-bottom: 1px solid var(--border);
}

.checkin-row:last-child { border-bottom: none; }

.checkin-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.checkin-value {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--highlight);
}

/* Map link */
.map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--accent);
  margin-top: 0.5rem;
  transition: color var(--transition);
}

.map-link:hover { color: var(--highlight); }

/* FAQ */
.faq-section {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.faq-list { max-width: 760px; }

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding-block: 1.25rem;
  cursor: pointer;
  gap: 1rem;
  color: var(--cream);
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 600;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--accent); }

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: transform var(--transition), background var(--transition);
}

.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--accent-dim); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer p {
  padding-bottom: 1.25rem;
  font-size: 0.92rem;
  padding-right: 2rem;
}

/* ---------- CTA Band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--accent) 0%, #8e4f25 100%);
  padding-block: 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-band h2 { color: #fff; margin-bottom: 0.75rem; }
.cta-band p  { color: rgba(255,255,255,0.8); max-width: 520px; margin-inline: auto; margin-bottom: 2rem; }

.cta-band .btn-outline {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}
.cta-band .btn-outline:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255,255,255,0.1);
}

.cta-band .btn-primary {
  background: var(--dark);
  color: var(--cream);
}
.cta-band .btn-primary:hover { background: var(--bg-alt); }

.cta-band-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */
footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding-block: 4rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.footer-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.footer-logo img {
  height: 48px;
  width: 48px;
  object-fit: cover;
  border-radius: 50%;
}

.footer-logo-text .name {
  display: block;
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
}

.footer-logo-text .sub {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-top: 1px;
}

.footer-brand p {
  font-size: 0.875rem;
  max-width: 260px;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--cream-dim);
  transition: all var(--transition);
}

.footer-social a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}

.footer-col h5 {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.footer-col ul li { margin-bottom: 0.6rem; }

.footer-col ul li a {
  font-size: 0.875rem;
  color: var(--cream-dim);
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--cream); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--accent); }

.footer-contact-item span,
.footer-contact-item a {
  font-size: 0.84rem;
  color: var(--cream-dim);
  line-height: 1.45;
}

.footer-contact-item a:hover { color: var(--cream); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.75rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--cream-dim);
}

.footer-bottom a {
  color: var(--accent);
  font-size: 0.78rem;
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-top: var(--nav-h);
  padding-bottom: 0;
  font-size: 0.75rem;
  color: var(--cream-dim);
}

.breadcrumb a { color: var(--accent); }
.breadcrumb a:hover { color: var(--highlight); }
.breadcrumb span { color: var(--cream-dim); }

/* ---------- Utility ---------- */
.text-accent    { color: var(--accent); }
.text-highlight { color: var(--highlight); }
.text-center    { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ---------- Animations ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger */
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ---------- Responsive: 1024px ---------- */
@media (max-width: 1024px) {
  :root { --section-gap: 4.5rem; }

  .nav-links { gap: 1.5rem; }

  .intro-grid       { gap: 3rem; }
  .story-grid       { gap: 3rem; }
  .contact-grid     { gap: 3rem; }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .gallery-grid { columns: 2; }

  .space-grid { gap: 2.5rem; }

  .highlights-grid { grid-template-columns: 1fr 1fr; }

  .values-grid { grid-template-columns: 1fr 1fr; }

  .sunset-feature img { height: 340px; }
}

/* ---------- Responsive: 768px ---------- */
@media (max-width: 768px) {
  :root { --section-gap: 3.5rem; }

  .nav-links,
  .nav-cta   { display: none; }
  .nav-burger { display: flex; }

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

  .intro-grid   { grid-template-columns: 1fr; }
  .intro-badge  { bottom: 1rem; right: 1rem; }

  .story-grid { grid-template-columns: 1fr; }
  .story-img  { aspect-ratio: 16/9; position: static; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-img  { aspect-ratio: 16/9; position: static; }

  .space-grid         { grid-template-columns: 1fr; }
  .space-grid.reverse { direction: ltr; }
  .space-img          { aspect-ratio: 16/9; }

  .highlights-grid { grid-template-columns: 1fr; }

  .values-grid { grid-template-columns: 1fr; }

  .cabin-intro-grid { grid-template-columns: 1fr 1fr; }

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

  .sunset-feature img { height: 260px; }
  .sunset-overlay { padding: 1.5rem; }

  .category-nav-inner { gap: 0; }
  .cat-tab { padding: 0.85rem 1rem; font-size: 0.72rem; }

  .gallery-grid { columns: 2; }

  .lightbox-prev { left: -2rem; }
  .lightbox-next { right: -2rem; }
}

/* ---------- Responsive: 480px ---------- */
@media (max-width: 480px) {
  :root { --section-gap: 2.5rem; }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }

  .stats-grid { grid-template-columns: 1fr 1fr; }

  .cabin-intro-grid { grid-template-columns: 1fr 1fr; }

  .gallery-grid { columns: 1; }

  .intro-features { grid-template-columns: 1fr; }

  .amenity-list { grid-template-columns: 1fr; }

  .policies-grid { grid-template-columns: 1fr; }

  .hero-ctas { flex-direction: column; align-items: flex-start; }

  .cta-band-btns { flex-direction: column; align-items: center; }

  .footer-bottom { flex-direction: column; text-align: center; }

  .lightbox-prev { left: -1.5rem; }
  .lightbox-next { right: -1.5rem; }

  .faq-answer p { padding-right: 0; }
}
