/* ============================================================
   UNDERWOOD COUNTRY MANOR — Stylesheet
   Palette: Deep Drakensberg Green · Mountain Gold · Warm Stone
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --green-deep:   #1E3A2F;
  --green-mid:    #2D5543;
  --green-light:  #4A7C6B;
  --gold:         #C9A84C;
  --gold-light:   #E8C97A;
  --stone:        #B89B7A;
  --cream:        #F5F0E8;
  --cream-dark:   #EDE6D6;
  --white:        #FFFFFF;
  --text-dark:    #1A1A1A;
  --text-mid:     #4A4A4A;
  --text-light:   #767676;
  --border:       #D9D0C1;

  --shadow:       0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg:    0 8px 48px rgba(0,0,0,0.18);
  --radius:       6px;
  --transition:   0.3s ease;

  --font-serif:   'Lora', Georgia, serif;
  --font-sans:    'Inter', system-ui, -apple-system, sans-serif;

  --max-w:        1200px;
  --section-pad:  5rem 1.5rem;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-sans); color: var(--text-dark); background: var(--white); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

/* ── Typography Utilities ──────────────────────────────────── */
.serif        { font-family: var(--font-serif); }
.text-gold    { color: var(--gold); }
.text-green   { color: var(--green-deep); }
.text-cream   { color: var(--cream); }
.text-center  { text-align: center; }
.text-light   { color: var(--text-light); }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 500; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 500; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 500; }
h4 { font-size: 1.1rem; font-weight: 600; font-family: var(--font-sans); }

p { line-height: 1.75; color: var(--text-mid); }

.section-intro {
  max-width: 640px;
  margin: 0 auto 3rem;
  text-align: center;
}
.section-intro p { font-size: 1.05rem; }

/* ── Layout Utilities ──────────────────────────────────────── */
.container   { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.grid-2      { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3      { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4      { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between{ display: flex; align-items: center; justify-content: space-between; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green-deep);
  color: var(--white);
  border: 2px solid var(--green-deep);
}
.btn-primary:hover { background: var(--green-mid); border-color: var(--green-mid); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-gold {
  background: var(--gold);
  color: var(--green-deep);
  border: 2px solid var(--gold);
  font-weight: 700;
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-outline-dark {
  background: transparent;
  color: var(--green-deep);
  border: 2px solid var(--green-deep);
}
.btn-outline-dark:hover { background: var(--green-deep); color: var(--white); }

/* ── Navigation ─────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
#navbar.scrolled {
  background: var(--white);
  padding: 0.85rem 2rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  transition: color var(--transition);
  line-height: 1.1;
}
.nav-logo span { display: block; font-size: 0.65rem; font-family: var(--font-sans); font-weight: 400; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.85; }
#navbar.scrolled .nav-logo { color: var(--green-deep); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold-light); }
#navbar.scrolled .nav-links a { color: var(--text-mid); }
#navbar.scrolled .nav-links a:hover { color: var(--green-deep); }

.nav-cta { margin-left: 1rem; }
.nav-cta .btn {
  padding: 0.6rem 1.4rem;
  font-size: 0.78rem;
  border-radius: 3px;
}
.nav-cta .btn-nav-book {
  background: var(--gold);
  color: var(--green-deep);
  border: 2px solid var(--gold);
  font-weight: 700;
}
.nav-cta .btn-nav-book:hover { background: var(--gold-light); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
#navbar.scrolled .hamburger span { background: var(--green-deep); }

/* Mobile nav drawer */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 999;
}
.mobile-nav-drawer {
  position: fixed;
  top: 0; right: -100%;
  width: min(300px, 85vw);
  height: 100%;
  background: var(--white);
  z-index: 1001;
  padding: 5rem 2rem 2rem;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-nav-drawer.open { right: 0; }
.mobile-nav-drawer a {
  display: block;
  padding: 1rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.mobile-nav-drawer a:hover { color: var(--green-mid); }
.mobile-nav-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-size: 1.5rem;
  color: var(--text-mid);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}

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

.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.10) 0%,
    rgba(0,0,0,0.30) 50%,
    rgba(0,0,0,0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 1.5rem;
  max-width: 900px;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
  display: block;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 500;
  line-height: 1.05;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 400;
  color: #ffffff;
  opacity: 1;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5), 0 1px 3px rgba(0,0,0,0.4);
}
.hero-tags {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.95);
  opacity: 1;
  letter-spacing: 0.05em;
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.hero-tags span { margin: 0 0.4rem; }
.hero-tags .dot { opacity: 0.5; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.6);
  cursor: pointer;
  transition: var(--transition);
}
.hero-dot.active { background: var(--white); }

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  right: 2rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.5);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold-light);
  animation: scrollDown 1.8s ease infinite;
}
@keyframes scrollDown {
  0%   { top: -100%; }
  100% { top: 100%; }
}

/* ── Availability Bar ───────────────────────────────────────── */
#availability-bar {
  background: var(--white);
  box-shadow: 0 4px 32px rgba(0,0,0,0.12);
  position: relative;
  z-index: 10;
}
.avail-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: stretch;
  gap: 0;
}
.avail-field {
  flex: 1;
  padding: 1.25rem 1.5rem;
  border-right: 1px solid var(--border);
  cursor: pointer;
  transition: background var(--transition);
}
.avail-field:hover { background: var(--cream); }
.avail-field:last-child { border-right: none; }
.avail-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.3rem;
}
.avail-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
}
.avail-value.placeholder { color: var(--text-light); font-weight: 400; }
.avail-btn-wrap { padding: 0.75rem 1rem; display: flex; align-items: center; }
.avail-btn-wrap .btn { padding: 0.85rem 2rem; white-space: nowrap; }

/* ── Intro Section ──────────────────────────────────────────── */
#intro {
  padding: var(--section-pad);
  background: var(--white);
  text-align: center;
}
.intro-text {
  max-width: 720px;
  margin: 0 auto;
}
.intro-text h2 {
  margin-bottom: 1.5rem;
  color: var(--green-deep);
}
.intro-text p {
  font-size: 1.1rem;
  line-height: 1.85;
  margin-bottom: 1rem;
}
.intro-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 2rem auto;
}

/* ── Property Stats ─────────────────────────────────────────── */
#property-stats {
  background: var(--green-deep);
  padding: 3rem 1.5rem;
}
.stats-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
}

/* ── Features ───────────────────────────────────────────────── */
#features {
  padding: var(--section-pad);
  background: var(--cream);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}
.feature-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-deep);
  line-height: 1.3;
}

/* ── Experience Sections ────────────────────────────────────── */
#experience { padding: var(--section-pad); background: var(--white); }
.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 3rem;
}
.exp-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.exp-item:nth-child(1) { aspect-ratio: 4/3; }
.exp-item:nth-child(2), .exp-item:nth-child(3) { aspect-ratio: 4/3; }
.exp-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.exp-item:hover img { transform: scale(1.05); }
.exp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}
.exp-text h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 0.35rem;
}
.exp-text p {
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  line-height: 1.5;
  margin: 0;
}

/* Large experience item spans full width */
.exp-item.exp-full { grid-column: 1 / -1; aspect-ratio: 16/7; }

/* ── Bedrooms ───────────────────────────────────────────────── */
#bedrooms {
  padding: var(--section-pad);
  background: var(--cream);
}
.bedrooms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.bedroom-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.bedroom-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.bedroom-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.bedroom-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.bedroom-card:hover .bedroom-img img { transform: scale(1.04); }
.bedroom-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--gold);
  color: var(--green-deep);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 3px;
}
.bedroom-info { padding: 1.75rem; }
.bedroom-info h3 { font-size: 1.3rem; color: var(--green-deep); margin-bottom: 0.75rem; }
.bedroom-details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin-top: 1rem;
}
.bedroom-detail {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--text-mid);
}
.bedroom-detail .icon { font-size: 0.95rem; }

/* ── Gallery ────────────────────────────────────────────────── */
#gallery {
  padding: var(--section-pad);
  background: var(--white);
}
.gallery-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2.5rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--border);
  padding-bottom: 0;
}
.gallery-tab {
  padding: 0.65rem 1.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
  cursor: pointer;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}
.gallery-tab.active, .gallery-tab:hover { color: var(--green-deep); border-bottom-color: var(--gold); }

.gallery-panel { display: none; }
.gallery-panel.active { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem; }
.gallery-thumb {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.gallery-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-thumb:hover img { transform: scale(1.06); }
.gallery-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.gallery-thumb:hover .gallery-thumb-overlay { background: rgba(0,0,0,0.2); }
.gallery-thumb-overlay svg { opacity: 0; transition: opacity 0.3s ease; fill: white; width: 40px; height: 40px; }
.gallery-thumb:hover .gallery-thumb-overlay svg { opacity: 1; }

/* ── Lightbox ───────────────────────────────────────────────── */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
#lightbox.open { display: flex; }
.lb-img-wrap { max-width: 90vw; max-height: 88vh; position: relative; }
.lb-img-wrap img { max-width: 100%; max-height: 88vh; object-fit: contain; border-radius: 4px; }
.lb-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  color: rgba(255,255,255,0.8);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition);
}
.lb-close:hover { color: var(--white); }
.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  padding: 1rem 0.85rem;
  cursor: pointer;
  border-radius: 3px;
  transition: background var(--transition);
}
.lb-nav:hover { background: rgba(255,255,255,0.22); }
.lb-prev { left: 1.5rem; }
.lb-next { right: 1.5rem; }
.lb-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* ── Featured Review ────────────────────────────────────────── */
#review-featured {
  padding: 5rem 1.5rem;
  background: var(--green-deep);
  text-align: center;
}
.review-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-style: italic;
  color: var(--white);
  max-width: 780px;
  margin: 0 auto 2rem;
  line-height: 1.65;
}
.review-quote::before { content: '\201C'; }
.review-quote::after  { content: '\201D'; }
.review-author { color: var(--gold-light); font-size: 0.9rem; font-weight: 500; letter-spacing: 0.05em; }
.review-source { color: rgba(255,255,255,0.5); font-size: 0.8rem; margin-top: 0.25rem; }
.review-stars {
  display: flex;
  justify-content: center;
  gap: 0.2rem;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  color: var(--gold);
}
.platform-scores {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.platform-score { text-align: center; }
.platform-score .score { font-family: var(--font-serif); font-size: 2rem; color: var(--gold); font-weight: 600; }
.platform-score .platform-name { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.6); margin-top: 0.2rem; }

/* ── Calendar & Pricing ─────────────────────────────────────── */
#availability {
  padding: var(--section-pad);
  background: var(--cream);
}
.avail-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
  max-width: var(--max-w);
  margin: 0 auto;
}
.calendar-wrap { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 2rem; }
.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.cal-nav-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-mid);
  padding: 0.4rem 0.8rem;
  border-radius: 3px;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
}
.cal-nav-btn:hover { background: var(--green-deep); color: var(--white); border-color: var(--green-deep); }
.cal-month-title { font-family: var(--font-serif); font-size: 1.1rem; color: var(--green-deep); }
.calendar-months { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.cal-month { }
.cal-month-name { font-size: 0.85rem; font-weight: 700; text-align: center; margin-bottom: 0.75rem; color: var(--green-deep); text-transform: uppercase; letter-spacing: 0.08em; }
.cal-weekdays { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; margin-bottom: 4px; }
.cal-weekday { text-align: center; font-size: 0.7rem; font-weight: 700; color: var(--text-light); text-transform: uppercase; padding: 0.3rem 0; }
.cal-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.cal-day {
  text-align: center;
  padding: 0.45rem 0;
  font-size: 0.82rem;
  border-radius: 3px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}
.cal-day.empty { cursor: default; }
.cal-day.available { background: rgba(34,197,94,0.10); }
.cal-day.available:hover { background: rgba(34,197,94,0.22); }
.cal-day.booked {
  background: rgba(249,115,22,0.18);
  color: rgba(160,70,0,0.7);
  cursor: not-allowed;
  text-decoration: line-through;
}
.cal-day.past { color: var(--text-light); cursor: default; opacity: 0.45; }
.cal-day.selected { background: var(--green-deep); color: var(--white); }
.cal-day.in-range { background: rgba(30,58,47,0.1); color: var(--green-deep); }
.cal-day.start-date, .cal-day.end-date { background: var(--green-deep); color: var(--white); font-weight: 600; }

.cal-legend {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--text-light);
}
.legend-dot {
  width: 12px; height: 12px;
  border-radius: 2px;
}
.legend-available { background: rgba(34,197,94,0.18); border: 1px solid rgba(34,197,94,0.4); }
.legend-booked    { background: rgba(249,115,22,0.25); }
.legend-selected  { background: var(--green-deep); }

.cal-loading, .cal-error {
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.pricing-box {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  position: sticky;
  top: 5rem;
}
.pricing-box h3 { font-size: 1.2rem; color: var(--green-deep); margin-bottom: 0.75rem; }

/* Calendar instruction text */
.cal-instruction {
  background: #f0f7f0;
  border: 1px solid var(--green-light, #c8dfc8);
  border-radius: 6px;
  padding: 0.6rem 0.9rem;
  font-size: 0.82rem;
  color: var(--green-deep);
  margin-bottom: 1rem;
  text-align: center;
  line-height: 1.5;
}

/* Inline guest selector in pricing box */
.pricing-guests-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.pricing-guests-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
}
.pricing-guests-select {
  flex: 1;
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.9rem;
  font-family: inherit;
  background: var(--white);
  color: var(--text-dark);
  cursor: pointer;
}
.price-row {
  display: flex;
  justify-content: space-between;
  padding: 0.65rem 0;
  font-size: 0.9rem;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
}
.price-row:last-of-type { border-bottom: none; }
.price-row.total {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
  padding-top: 1rem;
  margin-top: 0.5rem;
  border-top: 2px solid var(--green-deep);
  border-bottom: none;
}
.price-placeholder {
  text-align: center;
  padding: 1.5rem;
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
}
.pricing-box .btn { width: 100%; justify-content: center; margin-top: 1.25rem; }
.direct-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  justify-content: center;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--green-light);
  font-weight: 500;
}

/* ── Underberg Guide ────────────────────────────────────────── */
#underberg-guide {
  padding: var(--section-pad);
  background: var(--white);
}
.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.guide-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.guide-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.guide-card-img { position: relative; aspect-ratio: 16/9; }
.guide-card-img img { width: 100%; height: 100%; object-fit: cover; }
.guide-card-body { padding: 1.25rem; background: var(--white); }
.guide-card-body h4 { color: var(--green-deep); margin-bottom: 0.4rem; font-size: 1rem; }
.guide-card-body p { font-size: 0.85rem; line-height: 1.6; margin: 0; color: var(--text-mid); }

/* ── Location ───────────────────────────────────────────────── */
#location {
  padding: var(--section-pad);
  background: var(--cream);
}
.location-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}
.location-info h2 { color: var(--green-deep); margin-bottom: 1.5rem; }
.travel-times { margin: 2rem 0; }
.travel-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.travel-item:last-child { border-bottom: none; }
.travel-place { color: var(--text-mid); }
.travel-time { font-weight: 600; color: var(--green-deep); }
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; background: var(--cream-dark); }
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ── Reviews Grid ───────────────────────────────────────────── */
#reviews {
  padding: var(--section-pad);
  background: var(--white);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.review-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: box-shadow var(--transition);
}
.review-card:hover { box-shadow: var(--shadow); }
.review-card-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 1rem; }
.review-card-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-mid);
  font-style: italic;
  margin-bottom: 1.25rem;
}
.review-card-text::before { content: '\201C'; }
.review-card-text::after  { content: '\201D'; }
.review-card-footer { display: flex; align-items: center; justify-content: space-between; }
.reviewer-name { font-size: 0.82rem; font-weight: 600; color: var(--text-dark); }
.reviewer-platform { font-size: 0.72rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.08em; }

/* ── What's Included ────────────────────────────────────────── */
#whats-included {
  padding: var(--section-pad);
  background: var(--cream);
}
.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.5rem;
  margin-top: 2.5rem;
}
.included-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: var(--white);
  border-radius: var(--radius);
  font-size: 0.875rem;
  color: var(--text-mid);
}
.included-item .check {
  width: 20px; height: 20px;
  background: var(--green-mid);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ── FAQ ────────────────────────────────────────────────────── */
#faq {
  padding: var(--section-pad);
  background: var(--white);
}
.faq-list {
  max-width: 760px;
  margin: 2.5rem auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: color var(--transition);
  gap: 1rem;
}
.faq-question:hover { color: var(--green-mid); }
.faq-icon {
  width: 24px; height: 24px;
  background: var(--green-deep);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gold); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer-inner {
  padding-bottom: 1.25rem;
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-mid);
}

/* ── Final CTA ──────────────────────────────────────────────── */
#cta-final {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
#cta-final img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
#cta-final .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.52);
}
.cta-final-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 2rem 1.5rem;
}
.cta-final-content h2 {
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}
.cta-final-content p {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 2rem;
  color: var(--white);
}
.cta-final-content .btn { margin: 0 0.5rem; }

/* ── Booking Modal / Enquiry Form ───────────────────────────── */
#booking-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 3000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
#booking-modal.open { display: flex; }
.booking-modal-inner {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  max-width: 540px;
  width: 100%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-close {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  font-size: 1.5rem;
  color: var(--text-light);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}
.modal-close:hover { color: var(--text-dark); }
.booking-form h3 { font-size: 1.5rem; color: var(--green-deep); margin-bottom: 0.4rem; }
.booking-form .subtext { font-size: 0.88rem; color: var(--text-light); margin-bottom: 1.75rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-mid); margin-bottom: 0.4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green-mid); }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-submit { width: 100%; justify-content: center; margin-top: 0.5rem; }
.form-note { font-size: 0.75rem; color: var(--text-light); text-align: center; margin-top: 0.75rem; }
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.form-success h4 { color: var(--green-deep); font-size: 1.3rem; margin-bottom: 0.75rem; }
.form-success p { font-size: 0.9rem; color: var(--text-mid); }

/* ── Footer ─────────────────────────────────────────────────── */
footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
  padding: 4rem 1.5rem 2rem;
}
.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .brand-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.footer-brand .brand-tagline { font-size: 0.78rem; color: rgba(255,255,255,0.45); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1.25rem; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; margin-bottom: 1.25rem; color: rgba(255,255,255,0.55); }
.footer-contact a { color: var(--gold-light); transition: color var(--transition); }
.footer-contact a:hover { color: var(--gold); }
.footer-col h4 { color: var(--white); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.25rem; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.78rem; }
.footer-policies { display: flex; gap: 1.5rem; }
.footer-policies a { font-size: 0.78rem; color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-policies a:hover { color: rgba(255,255,255,0.8); }

/* ── Floating WhatsApp ──────────────────────────────────────── */
#whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  background: #25D366;
  color: var(--white);
  border-radius: 50px;
  padding: 0.85rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
#whatsapp-btn:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }
#whatsapp-btn svg { width: 22px; height: 22px; fill: white; flex-shrink: 0; }
.wa-text { white-space: nowrap; }

/* ── Mobile Booking Bar ─────────────────────────────────────── */
#mobile-booking-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 800;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 0.85rem 1.5rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
}
#mobile-booking-bar .btn { width: 100%; justify-content: center; font-size: 0.9rem; }

/* ── Trust Bar ──────────────────────────────────────────────── */
#trust-bar {
  background: var(--cream-dark);
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-items {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: var(--text-mid);
  font-weight: 500;
}
.trust-item .icon { font-size: 1.1rem; }

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

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .avail-layout { grid-template-columns: 1fr; }
  .pricing-box { position: static; }
  .calendar-months { grid-template-columns: 1fr; }
  .guide-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-pad: 3.5rem 1.25rem; }

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

  .hero-title { font-size: clamp(2rem, 10vw, 3rem); }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 280px; justify-content: center; }

  .avail-inner { flex-direction: column; }
  .avail-field { border-right: none; border-bottom: 1px solid var(--border); padding: 1rem 1.25rem; }
  .avail-btn-wrap { padding: 1rem 1.25rem; }
  .avail-btn-wrap .btn { width: 100%; justify-content: center; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.15); }

  .experience-grid { grid-template-columns: 1fr; }
  .exp-item.exp-full { grid-column: 1; aspect-ratio: 4/3; }

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

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

  .location-layout { grid-template-columns: 1fr; }

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

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

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  #whatsapp-btn .wa-text { display: none; }
  #whatsapp-btn { padding: 0.9rem; border-radius: 50%; bottom: 5.5rem; right: 1.25rem; }
  #whatsapp-btn svg { width: 26px; height: 26px; }

  #mobile-booking-bar { display: block; }

  .platform-scores { gap: 1.5rem; }
}

@media (max-width: 480px) {
  .gallery-panel.active { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Scroll-to-top ─────────────────────────────────────────── */
#scrollTop {
  position: fixed;
  bottom: 7.5rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 900;
  pointer-events: none;
}
#scrollTop.visible { opacity: 1; transform: none; pointer-events: auto; }
#scrollTop svg { width: 20px; height: 20px; fill: #fff; }

/* ── Availability bar guests select ──────────────────────────── */
.avail-guests-select {
  background: transparent;
  border: none;
  color: inherit;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  outline: none;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.avail-guests-select option { color: #333; background: #fff; }


/* ── Calendar flash (when Check Availability clicked without dates) ── */
@keyframes calFlash {
  0%,100% { box-shadow: none; }
  25%,75%  { box-shadow: 0 0 0 4px var(--gold); }
}
.cal-flash { animation: calFlash 1.2s ease; }


/* ── Activity Popup ─────────────────────────────────────────── */
.activity-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.activity-popup-overlay.open { opacity: 1; pointer-events: auto; }
.activity-popup {
  background: var(--white);
  border-radius: 16px;
  max-width: 520px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 2rem;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.activity-popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--text-light);
  line-height: 1;
  padding: 0.25rem 0.5rem;
}
.activity-popup h3 { font-family: var(--font-serif); color: var(--green-deep); margin-bottom: 0.5rem; }
.activity-popup .ap-intro { font-size: 0.9rem; color: var(--text-light); margin-bottom: 1.25rem; line-height: 1.6; }
.operator-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.75rem; }
.operator-item { border: 1px solid var(--border); border-radius: 10px; padding: 0.85rem 1rem; }
.operator-item strong { display: block; color: var(--green-deep); margin-bottom: 0.25rem; font-size: 0.95rem; }
.operator-item p { font-size: 0.82rem; color: var(--text-light); margin: 0; line-height: 1.5; }
.guide-card { cursor: pointer; transition: transform var(--transition), box-shadow var(--transition); }
.guide-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
