/* ═══════════════════════════════════════════════════════════
   HENARE NEW ZEALAND — SHARED DESIGN SYSTEM
   ═══════════════════════════════════════════════════════════ */

:root {
  --cream:       #FAF8F4;
  --warm-white:  #F5F2ED;
  --stone:       #E8E2D9;
  --stone-mid:   #C4B49A;
  --sage:        #6B7C5E;
  --sage-light:  #EDF0EA;
  --sage-dark:   #4A5940;
  --ink:         #1C1C1A;
  --ink-soft:    #3D3D39;
  --ink-muted:   #6B6B65;
  --ink-faint:   #9A9A93;
  --rust:        #8C5A3C;
  --gold:        #C4A85A;
  --border:      rgba(28,28,26,0.10);
  --border-soft: rgba(28,28,26,0.06);
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.06);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg:   0 12px 40px rgba(0,0,0,0.12);
  --ff-serif:    'Cormorant Garamond', Georgia, serif;
  --ff-sans:     'DM Sans', system-ui, sans-serif;
  --ease:        cubic-bezier(0.4,0,0.2,1);
  --ease-out:    cubic-bezier(0,0,0.2,1);
  --radius-sm:   2px;
  --radius-md:   4px;
  --radius-lg:   8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--ff-sans);
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: var(--ff-sans); border: none; background: none; }

/* ─── ANIMATIONS ─────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.fade-up.visible { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.3; transform: scaleY(0.6); }
  50%     { opacity: 1;   transform: scaleY(1); }
}

/* ─── LAYOUT ─────────────────────────────────────────── */
.section       { padding: 7rem 2.5rem; }
.section-sm    { padding: 5rem 2.5rem; }
.section-xs    { padding: 3.5rem 2.5rem; }
.container     { max-width: 1200px; margin: 0 auto; }
.container-md  { max-width: 960px;  margin: 0 auto; }
.container-sm  { max-width: 720px;  margin: 0 auto; }

/* ─── TYPOGRAPHY ─────────────────────────────────────── */
.label {
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 0.875rem;
}
.label-light { color: rgba(255,255,255,0.4); }

h1.display {
  font-family: var(--ff-serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
h2.title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h3.subtitle {
  font-family: var(--ff-serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 300;
  line-height: 1.2;
}
.serif { font-family: var(--ff-serif); }
em, .italic { font-style: italic; }
.body-text {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--ink-soft);
}
.body-sm {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink-muted);
}

/* ─── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  transition: all 0.2s var(--ease);
  cursor: pointer;
}
.btn-dark  { background: var(--ink);  color: #fff; border: 1px solid var(--ink); }
.btn-dark:hover  { background: var(--ink-soft); }
.btn-light { background: #fff; color: var(--ink); border: 1px solid var(--border); }
.btn-light:hover { border-color: var(--ink); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--ink); background: rgba(28,28,26,0.04); }
.btn-ghost-light { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.4); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.8); }
.btn-sage  { background: var(--sage); color: #fff; border: 1px solid var(--sage); }
.btn-sage:hover  { background: var(--sage-dark); }

.text-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.9375rem; font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 1px;
  transition: gap 0.2s;
}
.text-link:hover { gap: 10px; }
.text-link-light { color: #fff; border-bottom-color: rgba(255,255,255,0.5); }
.text-link-light:hover { border-bottom-color: #fff; }
.text-link-sage { color: var(--sage); border-bottom-color: var(--sage); }

/* ─── NAV ─────────────────────────────────────────────── */
/* ─── NAV CORE ────────────────────────────────────────────
   Three states:
   1. Hero (transparent) — white text/logo over dark hero image
   2. dark-default       — solid light bg from page load (no hero)
   3. scrolled           — solid light bg once user scrolls > 50px
   ─────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 0 2.5rem; height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

/* Scrolled state — solid warm white with separator */
.nav.scrolled {
  background: rgba(250,248,244,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}

/* Dark-default — pages with no hero image (lodges, faq, contact, etc.) */
/* Always solid from the start, no transparency */
.nav.dark-default {
  background: rgba(250,248,244,0.98);
  box-shadow: 0 1px 0 var(--border);
}

/* ── Logo text (fallback for text logos) ── */
.nav-logo {
  font-family: var(--ff-serif);
  font-size: 1.25rem; font-weight: 400; letter-spacing: 0.02em;
  color: #fff;
  transition: color 0.35s;
}
.nav.scrolled .nav-logo,
.nav.dark-default .nav-logo,
.nav.menu-open .nav-logo { color: var(--ink); }

/* ── Desktop nav links ── */
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: 0.8rem; font-weight: 400; letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
  text-decoration: none;
}
.nav.scrolled .nav-links a,
.nav.dark-default .nav-links a { color: var(--ink-muted); }
.nav-links a:hover { color: #fff; }
.nav.scrolled .nav-links a:hover,
.nav.dark-default .nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: #fff; font-weight: 500; }
.nav.scrolled .nav-links a.active,
.nav.dark-default .nav-links a.active { color: var(--ink); font-weight: 500; }

/* ── Book direct CTA button ── */
.nav-cta {
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.04em;
  padding: 8px 20px; border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.6);
  color: #fff;
  transition: all 0.3s;
  text-decoration: none;
  white-space: nowrap;
}
.nav.scrolled .nav-cta,
.nav.dark-default .nav-cta {
  border-color: var(--ink); color: var(--ink);
}
.nav-cta:hover { background: rgba(255,255,255,0.18); }
.nav.scrolled .nav-cta:hover,
.nav.dark-default .nav-cta:hover { background: var(--ink); color: #fff; }

/* ── Mobile hamburger icon ── */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 4px;
  cursor: pointer; background: none; border: none;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: #fff; transition: background 0.3s;
}
/* Dark bars on solid-bg states */
.nav.scrolled .nav-hamburger span,
.nav.dark-default .nav-hamburger span,
.nav.menu-open .nav-hamburger span { background: var(--ink); }

/* ── Mobile full-screen drawer ── */
.nav-drawer {
  display: none; position: fixed; inset: 0; z-index: 190;
  background: #FDFBF7;  /* solid warm white — never transparent */
  padding: 5rem 2.5rem 2.5rem;
  flex-direction: column; gap: 2rem;
  animation: fadeIn 0.2s ease-out;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  font-family: var(--ff-serif);
  font-size: 2.25rem; font-weight: 300; color: var(--ink);
  line-height: 1.2;
  transition: color 0.2s;
  text-decoration: none;
}
.nav-drawer a:hover { color: var(--sage); }
.nav-drawer-close {
  position: absolute; top: 1.5rem; right: 2rem;
  font-size: 1.5rem; color: var(--ink); cursor: pointer;
  line-height: 1;
}

/* ─── HERO SHARED ─────────────────────────────────────── */
.hero {
  position: relative; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; background: var(--ink); }
.hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0;
  transition: opacity 1.2s var(--ease-out);
}
.hero-img.loaded { opacity: 1; }
.hero-overlay-default {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.65) 100%);
}
.hero-overlay-strong {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.75) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; color: #fff;
  padding: 0 1.5rem;
}
.hero-eyebrow {
  font-size: 0.75rem; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.65); margin-bottom: 1.25rem;
}
.hero-scroll-indicator {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  z-index: 2;
  opacity: 0; animation: fadeUp 0.8s 1.5s var(--ease-out) forwards;
}
.hero-scroll-line {
  width: 1px; height: 44px;
  background: rgba(255,255,255,0.35);
  transform-origin: top;
  animation: scrollPulse 2.5s 2s infinite;
}

/* ─── PAGE HEADER (non-hero pages) ───────────────────── */
.page-header {
  padding: 10rem 2.5rem 5rem;
  background: var(--warm-white);
  border-bottom: 1px solid var(--border-soft);
}

/* ─── LODGE CARD ─────────────────────────────────────── */
.lodge-card {
  cursor: pointer;
  transition: transform 0.3s var(--ease);
}
.lodge-card-img-wrap {
  position: relative; overflow: hidden; border-radius: var(--radius-sm);
  background: var(--stone); margin-bottom: 1rem;
}
.lodge-card-img-wrap img {
  width: 100%; display: block;
  transition: transform 0.65s var(--ease);
}
.lodge-card:hover .lodge-card-img-wrap img { transform: scale(1.04); }
.lodge-card-badge {
  position: absolute; top: 0.75rem; left: 0.75rem;
  background: #fff; border-radius: var(--radius-sm);
  font-size: 0.6875rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 10px; color: var(--ink);
}
.lodge-card-heart {
  position: absolute; top: 0.75rem; right: 0.75rem;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.88);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s, background 0.2s;
}
.lodge-card-heart:hover { transform: scale(1.1); background: #fff; }
.lodge-card-heart svg { width: 15px; height: 15px; }
.lodge-card-heart.saved svg { fill: #e03131; stroke: #e03131; }

.lodge-card-row { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 3px; }
.lodge-card-name { font-size: 0.9375rem; font-weight: 500; }
.lodge-card-rating { font-size: 0.875rem; display: flex; align-items: center; gap: 3px; }
.lodge-card-rating .count { color: var(--ink-faint); font-size: 0.8125rem; }
.lodge-card-loc { font-size: 0.875rem; color: var(--ink-muted); margin-bottom: 0.5rem; }
.lodge-card-tags { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 0.75rem; }
.tag { font-size: 0.6875rem; padding: 3px 8px; border-radius: 1px; background: var(--sage-light); color: var(--sage); letter-spacing: 0.02em; }
.lodge-card-price { font-size: 0.9375rem; }
.lodge-card-price strong { font-weight: 500; }
.lodge-card-price .per { color: var(--ink-muted); font-size: 0.8125rem; }

/* ─── TRUST STRIP ─────────────────────────────────────── */
.trust-strip {
  background: var(--ink); padding: 1.125rem 2.5rem;
  display: flex; align-items: center; justify-content: center;
  gap: 2.5rem; flex-wrap: wrap;
}
.trust-item {
  font-size: 0.8125rem; font-weight: 300;
  color: rgba(255,255,255,0.6);
  display: flex; align-items: center; gap: 0.5rem;
}
.trust-item strong { color: #fff; font-weight: 500; }
.trust-sep { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.2); }

/* ─── BOOKING PANEL ───────────────────────────────────── */
.booking-panel {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  position: sticky; top: 88px;
}
.booking-panel-price { font-size: 1.375rem; font-weight: 500; margin-bottom: 1.5rem; }
.booking-panel-price .per { font-size: 0.9375rem; font-weight: 300; color: var(--ink-muted); }
.booking-panel-price .reviews { font-size: 0.875rem; font-weight: 300; color: var(--ink-muted); margin-left: 0.5rem; }

.date-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  overflow: hidden; margin-bottom: 0.625rem;
}
.date-field {
  padding: 0.875rem 1rem;
  border-right: 1px solid var(--border);
  cursor: pointer; transition: background 0.15s;
}
.date-field:hover { background: var(--warm-white); }
.date-field:last-child { border-right: none; }
.date-label {
  font-size: 0.625rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-muted); margin-bottom: 3px;
}
.date-field input {
  border: none; outline: none;
  font-family: var(--ff-sans); font-size: 0.9375rem;
  color: var(--ink); background: transparent;
  width: 100%; cursor: pointer;
}

.guest-row {
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 0.875rem 1rem; margin-bottom: 1.25rem;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; transition: background 0.15s;
}
.guest-row:hover { background: var(--warm-white); }

.reserve-btn {
  width: 100%; padding: 1rem;
  background: var(--ink); color: #fff;
  font-size: 1rem; font-weight: 500; letter-spacing: 0.02em;
  border-radius: var(--radius-sm); margin-bottom: 0.875rem;
  border: none; cursor: pointer; transition: background 0.2s;
}
.reserve-btn:hover { background: var(--ink-soft); }
.no-charge { text-align: center; font-size: 0.8125rem; color: var(--ink-muted); margin-bottom: 1.25rem; }

.price-breakdown { border-top: 1px solid var(--border-soft); padding-top: 1.25rem; }
.price-row {
  display: flex; justify-content: space-between;
  font-size: 0.9375rem; font-weight: 300; margin-bottom: 0.625rem;
  color: var(--ink-soft);
}
.price-row.total {
  font-weight: 500; color: var(--ink); font-size: 1rem;
  padding-top: 0.875rem; margin-top: 0.25rem;
  border-top: 1px solid var(--border);
}
.direct-badge {
  background: var(--sage-light); color: var(--sage-dark);
  border-radius: var(--radius-sm); padding: 0.75rem 1rem;
  font-size: 0.8125rem; font-weight: 400; text-align: center;
  margin-bottom: 1.25rem; line-height: 1.5;
}

/* ─── SEARCH BAR ─────────────────────────────────────── */
.search-bar {
  background: #fff; border-radius: var(--radius-sm);
  display: flex; align-items: stretch;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.08);
  overflow: hidden;
}
.search-field { flex: 1; padding: 1.125rem 1.25rem; border-right: 1px solid var(--stone); min-width: 0; transition: background 0.15s; cursor: pointer; }
.search-field:hover { background: var(--warm-white); }
.search-field-label { font-size: 0.625rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 4px; }
.search-field input, .search-field select { border: none; outline: none; font-family: var(--ff-sans); font-size: 0.9375rem; color: var(--ink); background: transparent; width: 100%; cursor: pointer; appearance: none; }
.search-submit { background: var(--ink); color: #fff; padding: 0 2rem; font-size: 0.9375rem; font-weight: 500; letter-spacing: 0.02em; flex-shrink: 0; display: flex; align-items: center; gap: 8px; transition: background 0.2s; border: none; cursor: pointer; }
.search-submit:hover { background: var(--ink-soft); }
.search-submit svg { width: 15px; height: 15px; }

/* ─── AVAILABILITY CALENDAR ───────────────────────────── */
.avail-calendar { border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.cal-header { display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.25rem; border-bottom: 1px solid var(--border-soft); }
.cal-title { font-size: 0.9375rem; font-weight: 500; }
.cal-nav { width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); cursor: pointer; transition: all 0.15s; font-size: 0.75rem; color: var(--ink-muted); }
.cal-nav:hover { border-color: var(--ink); color: var(--ink); background: var(--warm-white); }
.cal-grid { display: grid; grid-template-columns: repeat(7,1fr); }
.cal-day-name { text-align: center; font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-faint); padding: 0.75rem 0.25rem 0.5rem; }
.cal-day { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-size: 0.875rem; cursor: pointer; transition: background 0.15s; border-radius: var(--radius-sm); margin: 1px; position: relative; }
.cal-day:hover:not(.blocked):not(.empty):not(.selected):not(.in-range):not(.hover-range) { background: var(--sage-light); }
.cal-day.today { font-weight: 500; }
.cal-day.selected { background: var(--sage); color: #fff; border-radius: var(--radius-sm); font-weight: 600; z-index: 1; }
.cal-day.in-range { background: rgba(107,124,94,0.18); color: var(--sage-dark); border-radius: 0; margin: 1px 0; }
.cal-day.hover-range { background: rgba(107,124,94,0.10); color: var(--sage-dark); border-radius: 0; margin: 1px 0; cursor: pointer; }
.cal-day.blocked { color: #9e5a5a; background: #f9f0f0; cursor: not-allowed; text-decoration: line-through; position: relative; }
.cal-day.blocked::after { content: 'Not available'; position: absolute; bottom: calc(100% + 6px); left: 50%; transform: translateX(-50%); background: rgba(40,30,30,0.88); color: #fff; font-size: 0.6875rem; white-space: nowrap; padding: 3px 7px; border-radius: 3px; pointer-events: none; opacity: 0; transition: opacity 0.15s; z-index: 10; }
.cal-day.blocked:hover::after { opacity: 1; }
.cal-day.blocked.tip-visible::after { opacity: 1; }
.cal-day.empty { pointer-events: none; }
.cal-legend { display: flex; gap: 1.25rem; padding: 0.875rem 1.25rem; border-top: 1px solid var(--border-soft); }
.cal-legend-item { display: flex; align-items: center; gap: 6px; font-size: 0.75rem; color: var(--ink-muted); }
.cal-legend-dot { width: 10px; height: 10px; border-radius: 2px; }

/* ─── IMAGE GALLERY ───────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 300px 300px;
  gap: 6px; border-radius: var(--radius-sm); overflow: hidden;
}
.gallery-main { grid-row: span 2; }
.gallery-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s var(--ease); cursor: pointer;
}
.gallery-img:hover { transform: scale(1.02); }
.gallery-img-wrap { overflow: hidden; height: 100%; }

/* ─── AMENITIES ───────────────────────────────────────── */
.amenities-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.amenity-row {
  display: flex; align-items: center; gap: 12px;
  padding: 0.875rem 0; border-bottom: 1px solid var(--border-soft);
  font-size: 0.9375rem;
}
.amenity-row:nth-child(odd) { padding-right: 1.5rem; }
.amenity-icon { font-size: 1.1rem; width: 24px; text-align: center; flex-shrink: 0; }
.amenity-unavailable { color: var(--ink-faint); text-decoration: line-through; }

/* ─── REVIEWS ─────────────────────────────────────────── */
.reviews-dark { background: var(--ink); color: #fff; }
.review-card-dark {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-sm); padding: 1.75rem;
}
.review-stars { display: flex; gap: 3px; margin-bottom: 1rem; }
.review-stars span { color: var(--gold); font-size: 0.875rem; }
.review-quote { font-family: var(--ff-serif); font-size: 1rem; font-style: italic; font-weight: 300; line-height: 1.75; color: rgba(255,255,255,0.82); margin-bottom: 1.5rem; }
.review-author { display: flex; align-items: center; gap: 0.75rem; }
.review-avatar { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 500; color: rgba(255,255,255,0.5); flex-shrink: 0; }
.review-name { font-size: 0.875rem; font-weight: 500; color: #fff; }
.review-detail { font-size: 0.75rem; color: rgba(255,255,255,0.35); margin-top: 2px; }

/* ─── RATING BARS ─────────────────────────────────────── */
.rating-bars { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 2rem; }
.rating-bar-row { display: flex; align-items: center; gap: 10px; font-size: 0.8125rem; }
.rating-bar-label { min-width: 100px; color: var(--ink-muted); }
.rating-bar-track { flex: 1; height: 2px; background: var(--stone); border-radius: 1px; }
.rating-bar-fill { height: 100%; border-radius: 1px; background: var(--ink); }
.rating-bar-val { min-width: 28px; text-align: right; font-weight: 500; }

/* ─── FOOTER ─────────────────────────────────────────── */
.footer { background: var(--ink); color: rgba(255,255,255,0.5); padding: 4.5rem 2.5rem 2.5rem; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 2.5rem; }
.footer-logo { font-family: var(--ff-serif); font-size: 1.375rem; font-weight: 300; color: #fff; margin-bottom: 0.875rem; }
.footer-desc { font-size: 0.875rem; font-weight: 300; line-height: 1.7; max-width: 260px; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: 1rem; }
.footer-socials a { font-size: 0.8125rem; color: rgba(255,255,255,0.35); transition: color 0.2s; letter-spacing: 0.04em; }
.footer-socials a:hover { color: #fff; }
.footer-col-title { font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 1.125rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.625rem; }
.footer-links li a { font-size: 0.875rem; font-weight: 300; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-links li a:hover { color: #fff; }
.footer-bottom { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-bottom p { font-size: 0.8125rem; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.8125rem; color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ─── FORM ELEMENTS ───────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.8125rem; font-weight: 500; letter-spacing: 0.04em; color: var(--ink-soft); margin-bottom: 0.5rem; }
.form-input {
  width: 100%; padding: 0.875rem 1rem;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--ff-sans); font-size: 0.9375rem; color: var(--ink);
  background: #fff; transition: border-color 0.2s;
  outline: none;
}
.form-input:focus { border-color: var(--ink); }
.form-input::placeholder { color: var(--ink-faint); }
textarea.form-input { resize: vertical; min-height: 120px; line-height: 1.6; }
.form-select { appearance: none; cursor: pointer; }

/* ─── DIVIDERS ────────────────────────────────────────── */
.divider { border: none; border-top: 1px solid var(--border-soft); margin: 2.5rem 0; }
.divider-dark { border-top-color: rgba(255,255,255,0.08); }

/* ─── MISC ────────────────────────────────────────────── */
.pill { display: inline-flex; align-items: center; gap: 5px; padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 500; }
.pill-green { background: var(--sage-light); color: var(--sage-dark); }
.pill-dark { background: var(--ink); color: #fff; }

.aspect-4-3 { aspect-ratio: 4/3; }
.aspect-16-9 { aspect-ratio: 16/9; }
.aspect-3-4 { aspect-ratio: 3/4; }
.aspect-1-1 { aspect-ratio: 1; }
.cover { width: 100%; height: 100%; object-fit: cover; }
.img-wrap { overflow: hidden; }
.img-hover img { transition: transform 0.6s var(--ease); }
.img-hover:hover img { transform: scale(1.04); }

/* ─── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav { padding: 0 1.25rem; }
  .section { padding: 4.5rem 1.25rem; }
  .section-sm { padding: 3.5rem 1.25rem; }
  .section-xs { padding: 2.5rem 1.25rem; }
  .search-bar { flex-direction: column; }
  .search-field { border-right: none; border-bottom: 1px solid var(--stone); }
  .search-submit { padding: 1rem 1.25rem; justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-main { grid-row: auto; }
  .gallery-img-wrap.secondary { display: none; }
  .amenities-grid { grid-template-columns: 1fr; }
  .rating-bars { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .trust-strip { gap: 1.25rem; padding: 1rem 1.25rem; }
  .trust-sep { display: none; }
  .page-header { padding: 8rem 1.25rem 3.5rem; }
}

/* ─── BRAND LOGO IMAGES ─────────────────────────────────
  Two-logo system:
  nav-logo-light = ivory/white PNG  → shown over dark hero images
  nav-logo-dark  = green/dark PNG   → shown on light-background pages

  Page states:
  • Hero pages (transparent nav):   show light, hide dark
  • dark-default pages (solid nav):  hide light, show dark
  • scrolled (all pages):            hide light, show dark
  • menu-open (all pages):           hide light, show dark
─────────────────────────────────────────────────── */
.nav-logo-img {
  height: 22px;
  width: auto;
  display: block;
  transition: opacity 0.3s;
}

/* Default: show light (ivory) logo, hide dark (green) logo */
.nav-logo-light { display: block; opacity: 0.92; }
.nav-logo-dark  { display: none;  }

/* Solid-background states: swap to dark (green) logo */
.nav.dark-default .nav-logo-light,
.nav.scrolled     .nav-logo-light,
.nav.menu-open    .nav-logo-light { display: none; }

.nav.dark-default .nav-logo-dark,
.nav.scrolled     .nav-logo-dark,
.nav.menu-open    .nav-logo-dark  { display: block; opacity: 1; }

/* Hamburger bars turn dark when drawer is open */
.nav.menu-open .nav-hamburger span { background: var(--ink); }

/* Footer logo */
.footer-logo-img { height: 28px; width: auto; margin-bottom: 1rem; }

/* Lodge icons */
.lodge-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: block;
  flex-shrink: 0;
}
.lodge-icon-sm {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: block;
}
.lodge-icon-lg {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: block;
}
