/* ==========================================================================
   Eland Sanctuary B&B and Conference Venue — Chimanimani, Zimbabwe
   Modern, lightweight, mobile-first stylesheet (no frameworks)
   ========================================================================== */

:root {
  /* Palette — earthy Chimanimani mountain tones */
  --pine-deep: #0f2a20;
  --pine: #16382b;
  --moss: #2c5a45;
  --sage: #4f7a5e;
  --mist: #eef1ea;
  --cream: #faf8f2;
  --paper: #ffffff;
  --amber: #e2b06b;
  --clay: #c98d4b;
  --clay-text: #8a5a26; /* darker clay for small text on light backgrounds (WCAG AA) */
  --ink: #1c2420;
  --ink-soft: #4a544e;
  --whatsapp: #0e7a3c; /* 5.4:1 with white text */
  color-scheme: only light; /* opt out of Android forced dark-mode inversion */

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Outfit", system-ui, -apple-system, sans-serif;

  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 10px 30px rgba(15, 42, 32, 0.12);
  --shadow-soft: 0 4px 16px rgba(15, 42, 32, 0.08);
  --container: 1160px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, svg, iframe { max-width: 100%; display: block; }

.container {
  width: min(var(--container), 92vw);
  margin-inline: auto;
}
.container.narrow { width: min(860px, 92vw); }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  color: var(--pine-deep);
  text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); margin-bottom: 0.6em; }
h3 { font-size: 1.15rem; font-family: var(--font-body); font-weight: 600; }

p { color: var(--ink-soft); }

a { color: var(--moss); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--pine); }

.center { text-align: center; }
.muted { color: #5f6a63; font-size: 0.9rem; }

/* Screen-reader-only text */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* Keyboard skip link — hidden until focused */
.skip-link {
  position: fixed;
  top: 0.6rem; left: 0.6rem;
  z-index: 100;
  background: var(--pine-deep);
  color: #fff;
  font-weight: 600;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  transform: translateY(-200%);
}
.skip-link:focus { transform: none; color: #fff; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay-text);
  margin-bottom: 0.9rem;
}
.eyebrow.center { display: block; text-align: center; }

.section { padding: clamp(4rem, 9vw, 7rem) 0; }

/* Anchor targets land clear of the fixed header */
section[id], main[id] { scroll-margin-top: 84px; }
.section-intro { max-width: 620px; margin: 0 auto 2.5rem; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn:active { transform: translateY(0); }
.btn .icon { width: 1.2em; height: 1.2em; }

.btn-primary { background: var(--pine); color: #fff; }
.btn-primary:hover { background: var(--moss); color: #fff; }

.btn-amber { background: var(--amber); color: var(--pine-deep); }
.btn-amber:hover { background: var(--clay); color: var(--pine-deep); }

.btn-ghost { border-color: rgba(255, 255, 255, 0.65); color: #fff; background: rgba(255, 255, 255, 0.06); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.16); color: #fff; }

.btn-ghost-dark { border-color: var(--pine); color: var(--pine); background: transparent; }
.btn-ghost-dark:hover { background: var(--pine); color: #fff; }

.btn-whatsapp { background: var(--whatsapp); color: #fff; }
.btn-whatsapp:hover { background: #0b6331; color: #fff; }

.btn-link { background: none; color: var(--moss); text-decoration: underline; padding-inline: 0.4rem; }
.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.88rem; }
.btn-lg { padding: 1rem 2.2rem; font-size: 1.05rem; }
.btn-row { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-top: 1.6rem; }
.btn-row.center { justify-content: center; }

/* ==========================================================================
   Header / navigation
   ========================================================================== */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 60;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  background: rgba(250, 248, 242, 0.9);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(15, 42, 32, 0.1);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
}

.brand { display: inline-flex; align-items: center; gap: 0.7rem; text-decoration: none; }
/* The eland emblem from the real logo — the PNG's own white background forms the plaque */
.brand-logo {
  height: 54px;
  width: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(15, 42, 32, 0.28);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled .brand-logo { box-shadow: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text strong { font-family: var(--font-display); font-weight: 600; font-size: 1.12rem; color: #fff; transition: color 0.3s ease; }
.brand-text small { font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.75); transition: color 0.3s ease; }
.site-header.scrolled .brand-text strong { color: var(--pine-deep); }
.site-header.scrolled .brand-text small { color: var(--ink-soft); }
@media (max-width: 480px) {
  .brand-logo { height: 44px; }
  .brand-text strong { font-size: 1rem; }
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  list-style: none;
}
.nav-menu a:not(.btn) {
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.92);
  transition: color 0.2s ease;
}
.nav-menu a:not(.btn):hover { color: var(--amber); }
.site-header.scrolled .nav-menu a:not(.btn) { color: var(--ink); }
.site-header.scrolled .nav-menu a:not(.btn):hover { color: var(--clay); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  width: 26px; height: 2.5px;
  border-radius: 2px;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease, background 0.3s ease;
}
.site-header.scrolled .nav-toggle span { background: var(--pine-deep); }

@media (max-width: 1120px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--cream);
    box-shadow: var(--shadow);
    padding: 0.6rem 4vw 1.2rem;
    display: none;
    max-height: calc(100vh - 68px);
    max-height: calc(100dvh - 68px);
    overflow-y: auto;
  }
  .nav-menu.open { display: flex; }
  .nav-menu li { width: 100%; }
  .nav-menu a:not(.btn) { display: block; padding: 0.8rem 0; color: var(--ink) !important; border-bottom: 1px solid rgba(15,42,32,0.08); }
  .nav-menu .btn { margin-top: 0.9rem; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh; /* fallback for browsers without svh */
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(180deg, #0d1f18 0%, #16382b 45%, #2c5a45 100%);
}

/* Real photo of the view from the property */
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08); /* headroom for the parallax drift */
  will-change: transform;
}

.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 42%, rgba(13, 31, 24, 0.18), transparent 75%),
    linear-gradient(180deg, rgba(13, 31, 24, 0.66) 0%, rgba(15, 42, 32, 0.42) 45%, rgba(15, 42, 32, 0.82) 100%);
}

.hero-mist {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(238, 241, 234, 0.16) 55%, rgba(238, 241, 234, 0.28));
  animation: mist-drift 14s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes mist-drift {
  from { opacity: 0.55; transform: translateX(-2%); }
  to   { opacity: 1;    transform: translateX(2%); }
}

.hero-content { position: relative; z-index: 2; padding: 7.5rem 0 6rem; }

.hero-eyebrow {
  color: var(--amber);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.hero h1 { color: #fff; margin-bottom: 1.2rem; }
.hero h1 em { font-style: italic; color: var(--amber); }
.hero-sub {
  color: rgba(255, 255, 255, 0.85);
  max-width: 620px;
  margin: 0 auto 2rem;
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 300;
}
.hero-cta { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.4rem; }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  list-style: none;
}
.hero-badges li {
  font-size: 0.82rem;
  font-weight: 500;
  color: #fff;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 28px; height: 46px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  display: flex; justify-content: center;
}
.hero-scroll span {
  width: 4px; height: 10px;
  margin-top: 8px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.85);
  animation: scroll-nudge 1.8s ease-in-out infinite;
}
@keyframes scroll-nudge {
  0%, 100% { transform: translateY(0); opacity: 1; }
  55% { transform: translateY(14px); opacity: 0.2; }
}

/* ==========================================================================
   At a glance
   ========================================================================== */
.glance { padding: clamp(3rem, 7vw, 5rem) 0; background: var(--cream); }
.glance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.4rem;
}
.glance-card {
  background: var(--paper);
  border: 1px solid rgba(15, 42, 32, 0.07);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 1.8rem 1.6rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.glance-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.glance-icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  margin-bottom: 1rem;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--mist), #fff);
  border: 1px solid rgba(15, 42, 32, 0.08);
  color: var(--clay);
  font-size: 1.5rem;
}
.glance-icon .icon { width: 26px; height: 26px; color: var(--moss); }
.glance-card h3 { margin-bottom: 0.4rem; }
.glance-card p { font-size: 0.94rem; }

/* ==========================================================================
   Split sections (Stay / Conference / Contact)
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split-reverse .split-media { order: 2; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split-reverse .split-media { order: 0; }
}

.feature-list { list-style: none; margin: 1.4rem 0 0.4rem; }
.feature-list li {
  position: relative;
  padding: 0.45rem 0 0.45rem 2rem;
  color: var(--ink-soft);
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.78em;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--amber);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9.5 16.2 5.3 12l-1.4 1.4 5.6 5.6 12-12L20.1 5.6z'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9.5 16.2 5.3 12l-1.4 1.4 5.6 5.6 12-12L20.1 5.6z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.feature-list strong { color: var(--ink); }

/* Framed photos in split sections */
.photo-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3.4;
  margin: 0;
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.ph-label {
  position: absolute;
  bottom: 12px; left: 12px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pine-deep);
  background: rgba(250, 248, 242, 0.85);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
}
.ph-label.dark-label { color: var(--cream); background: rgba(15, 42, 32, 0.72); }

/* Conference — dark band */
.conference { background: linear-gradient(160deg, var(--pine-deep), var(--pine) 55%, #1d4936); }
.conference .split-copy h2 { color: #fff; }
.conference .split-copy p { color: rgba(255, 255, 255, 0.8); }
.conference .eyebrow { color: var(--amber); }
.conference .feature-list li { color: rgba(255, 255, 255, 0.82); }
.conference .feature-list strong { color: #fff; }

/* ==========================================================================
   Explore Chimanimani
   ========================================================================== */
.explore { background: var(--mist); }
.explore-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.explore-card {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(15, 42, 32, 0.07);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.explore-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.explore-art img { width: 100%; height: 150px; object-fit: cover; display: block; }
.explore-card h3 { padding: 1.1rem 1.3rem 0.2rem; }
.explore-card p { padding: 0 1.3rem 1.4rem; font-size: 0.93rem; }

/* Trusted tourism resources */
.explore-links {
  margin-top: 3rem;
  background: var(--paper);
  border: 1px solid rgba(15, 42, 32, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: clamp(1.4rem, 3.5vw, 2.2rem);
}
.explore-links h3 { margin-bottom: 0.2rem; }
.explore-links > p { font-size: 0.92rem; margin-bottom: 1.2rem; }
.explore-links ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.8rem;
}
.explore-links a {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(15, 42, 32, 0.12);
  border-radius: var(--radius-sm);
  text-decoration: none;
  background: var(--cream);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.explore-links a:hover {
  border-color: var(--clay);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}
.explore-links a strong { color: var(--pine-deep); font-size: 0.95rem; }
.explore-links .link-note {
  margin-top: 1.2rem;
  margin-bottom: 0;
  font-size: 0.92rem;
  font-style: italic;
  color: var(--ink-soft);
}

.photo-credits {
  margin-top: 1.6rem;
  font-size: 0.74rem;
  line-height: 1.7;
  color: #5f6a63;
  text-align: center;
}
.photo-credits a { color: #5f6a63; }
.photo-credits a:hover { color: var(--pine); }
.explore-links a strong::after { content: " ↗"; color: var(--clay-text); font-weight: 400; }
.explore-links a span { font-size: 0.83rem; color: var(--ink-soft); }

/* ==========================================================================
   Mountain weather (live via Open-Meteo)
   ========================================================================== */
.weather { background: linear-gradient(180deg, var(--mist), var(--cream)); }

.weather-status {
  text-align: center;
  color: var(--ink-soft);
  padding: 2rem 0;
}
.weather-status a { color: var(--moss); }

.weather-grid {
  display: grid;
  grid-template-columns: minmax(200px, 1.1fr) 2fr;
  gap: 1.2rem;
  align-items: stretch;
}
@media (max-width: 720px) { .weather-grid { grid-template-columns: 1fr; } }

.weather-now {
  background: var(--paper);
  border: 1px solid rgba(15, 42, 32, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 1.6rem 1.4rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.2rem;
}
.weather-now-icon { font-size: 2.6rem; line-height: 1; }
.weather-now-temp {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--pine-deep);
  line-height: 1.1;
}
.weather-now-label { font-weight: 600; color: var(--moss); }
.weather-meta {
  list-style: none;
  margin-top: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.3rem 1rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.weather-days {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.8rem;
}
@media (max-width: 560px) { .weather-days { grid-template-columns: repeat(auto-fit, minmax(96px, 1fr)); } }
.weather-days li {
  background: var(--paper);
  border: 1px solid rgba(15, 42, 32, 0.08);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  padding: 1rem 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  text-align: center;
}
.wd-name { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--clay-text); }
.wd-icon { font-size: 1.7rem; line-height: 1.2; }
.wd-temp { font-weight: 700; color: var(--pine-deep); }
.wd-min { font-size: 0.85rem; color: var(--ink-soft); }
.wd-rain { font-size: 0.75rem; color: var(--sage); min-height: 1.1em; }

.weather-credit { margin-top: 1.4rem; font-size: 0.82rem; color: #5f6a63; }
.weather-credit a { color: var(--moss); }

/* ==========================================================================
   Did you know? — Chimanimani history
   ========================================================================== */
.history { background: var(--paper); }
.history-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.4rem;
  margin-top: 2.5rem;
}
.history-card {
  background: var(--cream);
  border: 1px solid rgba(15, 42, 32, 0.08);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.history-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.history-num {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.1rem;
  line-height: 1;
  color: var(--amber);
  margin-bottom: 0.5rem;
}
.history-card h3 { margin-bottom: 0.5rem; }
.history-card p { font-size: 0.95rem; }
.history-card em { font-style: italic; }

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery { background: var(--mist); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-auto-rows: 215px;
  grid-auto-flow: dense;
  gap: 1rem;
}
.gallery-item {
  position: relative;
  margin: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  cursor: zoom-in;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
@media (max-width: 560px) { .gallery-item.wide { grid-column: span 1; } }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item figcaption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 1.6rem 0.9rem 0.7rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(15, 42, 32, 0.82));
  pointer-events: none;
}

/* Lightbox */
.lightbox {
  border: 0;
  padding: 0;
  background: transparent;
  max-width: min(92vw, 1100px);
  outline: none;
}
.lightbox::backdrop { background: rgba(10, 20, 16, 0.88); }
.lightbox img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}
.lightbox-caption {
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  padding-top: 0.7rem;
}
.lightbox-close {
  position: absolute;
  top: 0.6rem; right: 0.6rem;
  width: 42px; height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(10, 20, 16, 0.55);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
}
.lightbox-close:hover { background: rgba(10, 20, 16, 0.8); }

/* Browsers without <dialog> support treat it as an always-visible element — hide it */
.lightbox:not([open]) { display: none; }

/* Lock page scroll behind an open lightbox */
body:has(dialog[open]) { overflow: hidden; }

/* ==========================================================================
   Reviews
   ========================================================================== */
.rating-badge {
  display: inline-block;
  background: var(--amber);
  color: var(--pine-deep);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.55em;
  vertical-align: middle;
  padding: 0.25em 0.7em;
  border-radius: 999px;
  transform: translateY(-3px);
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0;
}
.review-card {
  background: var(--paper);
  border: 1px solid rgba(15, 42, 32, 0.07);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 1.8rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.review-card .stars { color: var(--clay); letter-spacing: 0.15em; font-size: 1.05rem; }
.review-card p { font-style: italic; flex: 1; }
.review-card footer { font-size: 0.88rem; font-weight: 600; color: var(--pine-deep); }
.review-card footer span { font-weight: 400; color: #5f6a63; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { background: var(--cream); }
.faq-list { margin-top: 2rem; display: grid; gap: 0.9rem; }
.faq-list details {
  background: var(--paper);
  border: 1px solid rgba(15, 42, 32, 0.09);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.4rem;
  transition: box-shadow 0.2s ease;
}
.faq-list details[open] { box-shadow: var(--shadow-soft); }
.faq-list summary {
  font-weight: 600;
  color: var(--pine-deep);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 2rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0.2rem; top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  color: var(--clay);
  transition: transform 0.2s ease;
}
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list details p { padding-top: 0.8rem; font-size: 0.95rem; }

/* ==========================================================================
   Booking (WhatsApp builder)
   ========================================================================== */
.book {
  background: linear-gradient(165deg, var(--pine-deep) 0%, var(--pine) 60%, var(--moss) 130%);
}
.book h2 { color: #fff; }
.book .section-intro { color: rgba(255, 255, 255, 0.78); }
.on-dark-eyebrow { color: var(--amber); }
.on-dark-link { color: rgba(255, 255, 255, 0.85); }
.on-dark-link:hover { color: var(--amber); }

.book-form {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 4vw, 2.4rem);
  display: grid;
  gap: 1.2rem;
}
.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.2rem;
}
.field { display: grid; gap: 0.45rem; }
.field span {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.85);
}
.field span em { font-style: normal; font-weight: 400; color: rgba(255,255,255,0.55); }
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid rgba(15, 42, 32, 0.15);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.9rem;
  width: 100%;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}
.field textarea { resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px var(--amber);
}

/* ==========================================================================
   Contact & map
   ========================================================================== */
.contact-list p { margin-bottom: 1.2rem; }
.contact-list strong { color: var(--pine-deep); }
.contact-list { font-style: normal; }
.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 320px; /* fallback for browsers without aspect-ratio */
  background: var(--mist);
}
@supports (aspect-ratio: 1) {
  .map-frame { height: auto; aspect-ratio: 4 / 3; }
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--pine-deep);
  color: rgba(255, 255, 255, 0.8);
  padding-top: 3.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-logo { height: 48px; box-shadow: none; }
.footer-tag { margin-top: 1rem; font-size: 0.92rem; color: rgba(255, 255, 255, 0.65); max-width: 380px; }
.site-footer h3 {
  color: var(--amber);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.site-footer ul { list-style: none; display: grid; gap: 0.5rem; }
.site-footer a { color: rgba(255, 255, 255, 0.8); text-decoration: none; }
.site-footer a:hover { color: var(--amber); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 1.3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ==========================================================================
   Floating WhatsApp button
   ========================================================================== */
.wa-float {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 70;
  width: 58px; height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 8px 24px rgba(31, 168, 85, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wa-float svg { width: 30px; height: 30px; }
.wa-float:hover { transform: scale(1.08); color: #fff; box-shadow: 0 10px 30px rgba(31, 168, 85, 0.6); }

/* ==========================================================================
   Scroll-reveal animation
   ========================================================================== */
/* Hidden state only applies when JS is available to reveal it again */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js .reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .hero-mist, .hero-scroll span { animation: none; }
  .btn, .glance-card, .explore-card, .wa-float { transition: none; }
}

/* ==========================================================================
   Print
   ========================================================================== */
@media print {
  .js .reveal { opacity: 1; transform: none; }
  .site-header, .wa-float, .hero-scroll, .skip-link { display: none; }
}
