@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Manrope:wght@400;500;700;800&display=swap");

:root {
  --sand-100: #fff8ea;
  --sand-200: #f4e8cf;
  --clay: #b67645;
  --earth: #785136;
  --forest: #1f4a37;
  --moss: #5d7a45;
  --olive: #3e5f3d;
  --ink: #1a241f;
  --mist: #f7f6ee;
  --card: rgba(255, 251, 243, 0.85);
  --line: rgba(43, 66, 53, 0.16);
  --shadow-soft: 0 12px 30px rgba(26, 36, 31, 0.12);
  --shadow-strong: 0 22px 44px rgba(26, 36, 31, 0.15);
  --radius: 22px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
  background: linear-gradient(160deg, #fffdf8 0%, #f7ecd9 52%, #f3e2c8 100%);
}

/* Layer 1 — contour-map texture (fixed viewport position, works on iOS) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background: url("../assets/contour-map.webp") center / cover no-repeat;
  opacity: 0.18;
  pointer-events: none;
}

/* Layer 2 — radial colour glows (clay top-left, forest bottom-right) */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 8%,  rgba(182, 118, 69, 0.22), transparent 30%),
    radial-gradient(circle at 86% 16%, rgba(60, 95, 61, 0.24),  transparent 35%),
    radial-gradient(ellipse at 8%  90%, rgba(182, 118, 69, 0.18), transparent 40%),
    radial-gradient(ellipse at 92% 88%, rgba(93, 122, 69, 0.20), transparent 40%);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(26, 36, 31, 0.08);
  background: rgba(255, 251, 243, 0.86);
  backdrop-filter: blur(14px);
  /* needed for mobile dropdown positioning */
  overflow: visible;
}

.topbar-inner,
main,
.site-footer {
  width: min(var(--max), 92vw);
  margin: 0 auto;
}

.topbar-inner {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--forest);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(0.9rem, 1.8vw, 1.2rem);
  letter-spacing: 0.02em;
}

.brand span {
  white-space: nowrap;
}

#primary-nav {
  margin-left: auto;
  min-width: 0;
}

.brand img {
  width: 84px;
  height: 84px;
  object-fit: contain;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(31, 74, 55, 0.22);
  box-shadow: 0 8px 16px rgba(31, 74, 55, 0.18);
}

.menu {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.45rem;
}

/* ── Burger button (hidden on desktop) ── */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 8px;
  background: rgba(31, 74, 55, 0.08);
  border: 1px solid rgba(31, 74, 55, 0.22);
  border-radius: 10px;
  cursor: pointer;
  flex-shrink: 0;
}

.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transition: transform 280ms ease, opacity 200ms ease;
  transform-origin: center;
}

/* Animate to × when open */
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.menu a {
  text-decoration: none;
  color: var(--forest);
  border: 1px solid rgba(120, 81, 54, 0.22);
  background: rgba(255, 250, 242, 0.72);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-size: 0.87rem;
  font-weight: 600;
  transition: transform 220ms ease, background-color 220ms ease, color 220ms ease, border-color 220ms ease;
}

.menu a:hover,
.menu a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(31, 74, 55, 0.5);
  background: rgba(31, 74, 55, 0.1);
}

.menu a.active {
  background: linear-gradient(120deg, var(--forest), #2d674d);
  color: var(--mist);
  border-color: transparent;
  box-shadow: 0 10px 18px rgba(31, 74, 55, 0.24);
}

main {
  padding: 1.25rem 0 3.4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.home-main {
  padding-top: 0;
}

body.gallery-page {
  scroll-snap-type: y proximity;
}

body.gallery-page .gallery-main > section {
  scroll-snap-align: start;
  scroll-snap-stop: always;
  scroll-margin-top: 104px;
}

section {
  margin-top: 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(1.15rem, 3vw, 2rem);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgba(255, 252, 245, 0.88), rgba(250, 241, 226, 0.78));
  box-shadow: var(--shadow-soft);
  animation: reveal 540ms ease both;
}

section::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, rgba(31, 74, 55, 0.32), rgba(93, 122, 69, 0.18), transparent 72%);
  pointer-events: none;
}

section > h2:first-child {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid rgba(31, 74, 55, 0.16);
}

section:nth-of-type(2) { animation-delay: 70ms; }
section:nth-of-type(3) { animation-delay: 120ms; }
section:nth-of-type(4) { animation-delay: 170ms; }

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20% auto auto -14%;
  width: min(480px, 58vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(93, 122, 69, 0.22), transparent 62%);
  z-index: -1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -34% auto;
  width: min(460px, 56vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(182, 118, 69, 0.26), transparent 66%);
  z-index: -1;
}

.hero.hero-full-bg {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-radius: 0;
  border: none;
  box-shadow: none;
  background: #0c1a10;
  padding: 0;
  overflow: hidden;
}

.hero.hero-full-bg::before,
.hero.hero-full-bg::after {
  display: none;
}

.hero.hero-full-bg .hero-bg-img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 40%;
  z-index: 0;
}

.hero.hero-full-bg .hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
    rgba(10, 22, 14, 0.68) 0%,
    rgba(10, 22, 14, 0.42) 45%,
    rgba(10, 22, 14, 0.12) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero.hero-full-bg .hero-grid {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  min-height: clamp(520px, 82vh, 860px);
  padding: clamp(1.5rem, 4vw, 3rem) clamp(1.25rem, 5vw, 3.5rem);
  max-width: 720px;
}

.hero.hero-full-bg .hero-text-top,
.hero.hero-full-bg .hero-text-bottom {
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  width: auto;
}

.hero.hero-full-bg h1 {
  color: #f4efe6;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

.hero.hero-full-bg .kicker {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.14);
  color: #d8f0c8;
}

.hero.hero-full-bg .tagline {
  color: #e8e0d4;
}

.hero.hero-full-bg p {
  color: rgba(238, 232, 220, 0.92);
}

.hero.hero-full-bg .hero-facts {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero.hero-full-bg .hero-facts li {
  background: rgba(10, 22, 14, 0.48);
  border-color: rgba(255, 255, 255, 0.18);
  color: #f0ece4;
}

.hero.hero-full-bg .hero-facts strong {
  color: #c8e8a0;
}

.hero.hero-full-bg .hero-featured-image {
  display: none;
}

/* ── Desktop split layout: text left, image right ── */
@media (min-width: 761px) {
  .hero.hero-full-bg {
    display: grid;
    grid-template-columns: 55fr 45fr;
    grid-template-rows: 1fr;
    background: linear-gradient(135deg, #0e2118 0%, #193326 100%);
  }

  .hero.hero-full-bg .hero-bg-img {
    position: relative;
    inset: auto;
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    z-index: 0;
  }

  .hero.hero-full-bg .hero-gradient-overlay {
    display: none;
  }

  .hero.hero-full-bg .hero-grid {
    grid-column: 1;
    grid-row: 1;
    max-width: none;
    padding: clamp(2rem, 4vw, 4rem) clamp(1.5rem, 4vw, 3.5rem);
    background: none;
  }
}

.hero-grid,
.two-col,
.card-grid,
.photo-grid {
  display: grid;
  gap: 1rem;
}

.hero-grid {
  grid-template-columns: 1.25fr 1fr;
  grid-template-rows: auto 1fr;
  align-items: start;
}

.hero-text-top {
  grid-column: 1;
  grid-row: 1;
}

.hero-featured-image {
  grid-column: 2;
  grid-row: 1 / 3;
}

.hero-text-bottom {
  grid-column: 1;
  grid-row: 2;
}

.hero-featured-image {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(31, 74, 55, 0.24);
  box-shadow: var(--shadow-strong);
}

.hero-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.photo-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 0.85rem;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.32rem 0.78rem;
  border-radius: 999px;
  border: 1px solid rgba(93, 122, 69, 0.36);
  background: rgba(93, 122, 69, 0.14);
  color: var(--olive);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--forest);
}

h1 {
  font-size: clamp(1.95rem, 4.8vw, 3.45rem);
  line-height: 1.08;
  text-wrap: balance;
}

h2 {
  font-size: clamp(1.4rem, 2.6vw, 2.05rem);
  line-height: 1.12;
  margin-bottom: 0.35rem;
}

h3 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

p + p,
ul + p,
div + p {
  margin-top: 0.72rem;
}

.tagline {
  font-size: clamp(1.04rem, 2.1vw, 1.24rem);
  color: var(--earth);
  margin: 0.65rem 0;
  max-width: 64ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.1rem;
}

.hero-facts {
  list-style: none;
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

.hero-facts li {
  border: 1px solid rgba(31, 74, 55, 0.2);
  background: rgba(255, 251, 243, 0.78);
  border-radius: 12px;
  padding: 0.45rem 0.65rem;
  font-size: 0.9rem;
}

.hero-facts strong {
  color: var(--forest);
}

.wildlife-cta {
  margin-top: 1rem;
  border: 1px solid rgba(31, 74, 55, 0.2);
  background: linear-gradient(140deg, rgba(241, 231, 212, 0.9), rgba(255, 250, 241, 0.95));
  border-radius: 14px;
  padding: 0.85rem 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
}

.wildlife-cta .small-note {
  margin: 0;
  font-size: 0.95rem;
}

.wildlife-cta-btn {
  color: var(--mist);
  background: linear-gradient(130deg, #2c6c4d, #1f4a37 65%);
  border-color: transparent;
  box-shadow: 0 12px 22px rgba(31, 74, 55, 0.26);
  white-space: nowrap;
}

.wildlife-cta-btn:hover,
.wildlife-cta-btn:focus-visible {
  filter: saturate(1.08);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.72rem 1.26rem;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 190ms ease, box-shadow 190ms ease, filter 190ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  filter: saturate(1.05);
}

.btn-primary {
  color: var(--mist);
  background: linear-gradient(130deg, #2c6c4d, #1f4a37 65%);
  box-shadow: 0 12px 20px rgba(31, 74, 55, 0.24);
}

.btn-secondary {
  color: var(--forest);
  background: rgba(255, 253, 248, 0.95);
  border-color: rgba(120, 81, 54, 0.28);
}

.panel,
.card,
.info-card {
  border-radius: 16px;
  border: 1px solid rgba(120, 81, 54, 0.2);
  background: var(--card);
  box-shadow: 0 10px 22px rgba(26, 36, 31, 0.08);
  padding: 1rem;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.card:hover,
.info-card:hover,
.panel:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-strong);
}

.clean-list,
.bullet-list {
  margin-top: 0.72rem;
  padding-left: 1rem;
}

.clean-list li,
.bullet-list li {
  margin: 0.32rem 0;
}

.text-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-weight: 800;
  color: var(--forest);
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}

.info-card a {
  color: var(--forest);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.info-card a:hover,
.info-card a:focus-visible {
  color: var(--clay);
}

.small-note {
  font-size: 0.92rem;
  color: #4a4f49;
}

.photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  min-height: 180px;
  border-radius: 14px;
  border: 1px solid rgba(31, 74, 55, 0.22);
  box-shadow: 0 10px 20px rgba(26, 36, 31, 0.1);
}

.photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 34%;
  background: linear-gradient(to top, rgba(16, 22, 19, 0.38), transparent);
  pointer-events: none;
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.photo:hover img,
.photo:focus-within img {
  transform: scale(1.04);
}

.photo-placeholder {
  min-height: 180px;
  border-radius: 14px;
  border: 2px dashed rgba(31, 74, 55, 0.3);
  background: linear-gradient(140deg, rgba(239, 226, 197, 0.7), rgba(217, 161, 79, 0.28));
  display: grid;
  place-content: center;
  text-align: center;
  padding: 0.8rem;
  color: #3a4039;
}

.gallery-modal[hidden] {
  display: none;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.gallery-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(19, 33, 25, 0.72);
  backdrop-filter: blur(6px);
}

.gallery-modal-panel {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  max-height: min(88vh, 900px);
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, rgba(255, 251, 243, 0.98), rgba(248, 240, 226, 0.96));
  box-shadow: 0 28px 80px rgba(8, 17, 12, 0.34);
}

.gallery-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.2rem 0.9rem;
  border-bottom: 1px solid rgba(31, 74, 55, 0.12);
}

.gallery-modal-close {
  position: relative;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border: 1px solid rgba(31, 74, 55, 0.18);
  border-radius: 14px;
  background: rgba(31, 74, 55, 0.08);
  cursor: pointer;
}

.gallery-modal-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background: var(--forest);
  border-radius: 999px;
}

.gallery-modal-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.gallery-modal-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.gallery-modal-content {
  max-height: calc(88vh - 110px);
  overflow: auto;
  padding: 1.1rem 1.2rem 1.25rem;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}

.gallery-modal-section {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.gallery-modal-section + .gallery-modal-section {
  margin-top: 1.25rem;
}

.gallery-modal-grid {
  margin-top: 0.75rem;
}

.gallery-modal-grid .photo {
  min-height: 220px;
  background: rgba(31, 74, 55, 0.1);
}

.gallery-modal-grid img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  cursor: zoom-in;
}

.gallery-modal-grid .photo:hover img,
.gallery-modal-grid .photo:focus-within img {
  transform: none;
}

.gallery-image-viewer[hidden] {
  display: none;
}

.gallery-image-viewer {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.gallery-image-viewer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 15, 11, 0.84);
}

.gallery-image-viewer-content {
  position: relative;
  z-index: 1;
  width: min(1200px, 100%);
  max-height: 90vh;
  display: grid;
  gap: 0.65rem;
  justify-items: center;
}

.gallery-image-viewer-content img {
  width: 100%;
  max-height: 82vh;
  border-radius: 14px;
  object-fit: contain;
  background: rgba(16, 29, 22, 0.78);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.42);
}

.gallery-image-viewer-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(16, 29, 22, 0.62);
  color: #f4f6ee;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.gallery-image-viewer-nav-prev {
  left: 0.8rem;
}

.gallery-image-viewer-nav-next {
  right: 0.8rem;
}

.gallery-image-viewer-caption {
  margin: 0;
  color: #f4f6ee;
  font-size: 0.96rem;
  text-align: center;
}

.gallery-image-viewer-close {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(16, 29, 22, 0.65);
  color: #f4f6ee;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
}

.map-embed {
  margin-top: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  line-height: 0;
}

.map-open-link {
  display: block;
  line-height: 1.4;
  padding: 0.6rem 1rem;
  background: var(--forest);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  letter-spacing: 0.02em;
}

.map-open-link:hover,
.map-open-link:focus-visible {
  background: var(--moss);
}

.site-footer {
  margin-top: 0.75rem;
  margin-bottom: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, #1f4a37, #2e6a4d 70%);
  color: var(--mist);
  padding: 1rem 1.1rem;
  box-shadow: 0 18px 30px rgba(31, 74, 55, 0.28);
}

.footer-cta {
  margin-top: 0.4rem;
  color: #f6eddc;
}

.footer-cta a {
  color: #f8dfb8;
  font-weight: 700;
  text-decoration: none;
}

.footer-cta a:hover,
.footer-cta a:focus-visible {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .footer-sep { display: none; }
  .footer-cta a { display: block; margin-top: 0.25rem; }
}

.footer-links {
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.footer-links a {
  color: #f8dfb8;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  text-decoration: underline;
}

/* ── Privacy Policy page ── */
.privacy-content {
  max-width: var(--max);
  margin: 0 auto 3rem;
  padding: 0 1.25rem;
}

.privacy-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-soft);
}

.privacy-card h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  color: var(--forest);
  margin: 1.75rem 0 0.5rem;
}

.privacy-card h2:first-child {
  margin-top: 0;
}

.privacy-card p,
.privacy-card ul {
  margin-bottom: 0.75rem;
  color: var(--ink);
}

.privacy-card ul {
  padding-left: 1.5rem;
}

.privacy-card a {
  color: var(--clay);
  text-decoration: none;
}

.privacy-card a:hover,
.privacy-card a:focus-visible {
  text-decoration: underline;
}

/* ── Click-to-load map consent ── */
.map-consent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 220px;
  padding: 2rem;
  background: var(--sand-200);
  border-radius: 12px;
  border: 1px dashed var(--clay);
  text-align: center;
  color: var(--ink);
}

.map-consent p {
  max-width: 36ch;
  font-size: 0.9rem;
  line-height: 1.5;
}

.map-consent a {
  color: var(--clay);
  text-decoration: underline;
}

.btn-load-map {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  background: var(--forest);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.2s;
}

.btn-load-map:hover,
.btn-load-map:focus-visible {
  background: var(--moss);
}

/* ── Interactive Leaflet map ── */
.map-section {
  /* override global section rules that break Leaflet */
  overflow: visible;
  isolation: auto;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  animation: none;
  padding: 0;
  max-width: var(--max);
  margin: 0 auto 3rem;
}

.map-section::before {
  display: none; /* remove decorative bar that global section::before adds */
}

.map-header {
  margin-bottom: 0.75rem;
}

.map-header h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: var(--forest);
  margin-bottom: 0.2rem;
}

.map-header p {
  font-size: 0.9rem;
  color: var(--ink);
  opacity: 0.75;
}

/* wrapper provides the rounded clip — the map div itself must NOT have overflow:hidden */
.map-frame {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  border: 1px solid var(--line);
  position: relative;
}

.interactive-map {
  width: 100%;
  height: clamp(320px, 50vw, 500px);
  display: block;
}

.map-note {
  margin-top: 0.5rem;
  font-size: 0.78rem;
  color: var(--ink);
  opacity: 0.55;
}

.map-note a {
  color: var(--clay);
  text-decoration: underline;
}

/* Custom map pin */
.map-pin {
  background: transparent;
  border: none;
}

.map-pin-inner svg {
  width: 36px;
  height: 48px;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,0.35));
}

/* Leaflet popup content */
.map-popup strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.1rem;
  color: var(--forest);
  display: block;
  margin-bottom: 0.35rem;
}

.map-popup p {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 0.6rem;
}

.map-popup-link {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  background: var(--forest);
  color: #fff !important;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none !important;
  transition: background 0.2s;
}

.map-popup-link:hover {
  background: var(--moss);
}

@media (max-width: 980px) {
  .hero-grid,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .hero-text-top,
  .hero-featured-image,
  .hero-text-bottom {
    grid-column: auto;
    grid-row: auto;
  }

  .topbar-inner {
    min-height: 82px;
    padding: 0.25rem 0;
  }

  .brand {
    font-size: clamp(0.82rem, 1.2vw, 0.96rem);
  }

  .menu a {
    padding: 0.4rem 0.75rem;
    font-size: 0.82rem;
  }
}

@media (max-width: 760px) {
  .burger {
    display: flex;
    margin-left: auto;
  }

  #primary-nav {
    margin-left: 0;
  }

  .topbar-inner {
    justify-content: flex-start;
  }

  #primary-nav .menu {
    display: none;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: calc(100% + 1px);
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    z-index: 100;
    padding: 0.5rem 0 1rem;
    background: rgba(255, 251, 243, 0.98);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(31, 74, 55, 0.14);
    box-shadow: 0 16px 40px rgba(31, 74, 55, 0.15);
    gap: 0;
    list-style: none;
  }

  #primary-nav.open .menu {
    display: flex;
  }

  #primary-nav .menu li {
    border-bottom: 1px solid rgba(31, 74, 55, 0.08);
  }

  #primary-nav .menu li:last-child {
    border-bottom: none;
  }

  #primary-nav .menu a {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.9rem 1.4rem;
    border-radius: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--forest);
    transform: none;
  }

  #primary-nav .menu a:hover,
  #primary-nav .menu a:focus-visible {
    background: rgba(31, 74, 55, 0.07);
    transform: none;
    border-color: transparent;
  }

  #primary-nav .menu a.active {
    background: rgba(31, 74, 55, 0.1);
    color: var(--forest);
    border-left: 3px solid var(--forest);
    padding-left: calc(1.4rem - 3px);
    box-shadow: none;
  }

  .two-col,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 1.08rem;
    border-radius: 26px;
    border: 1px solid rgba(31, 74, 55, 0.16);
    background: linear-gradient(162deg, rgba(255, 253, 246, 0.92), rgba(250, 242, 228, 0.86));
    box-shadow: 0 20px 36px rgba(26, 36, 31, 0.14);
  }

  .hero.hero-full-bg {
    background: #0c1a10;
    border-radius: 0;
  }

  .hero.hero-full-bg .hero-grid {
    min-height: clamp(400px, 75vw, 520px);
    padding: 1rem 1.1rem;
    gap: 0.65rem;
    justify-content: flex-end;
  }

  .hero.hero-full-bg h1 {
    font-size: clamp(1.6rem, 7.5vw, 2rem);
  }

  .hero.hero-full-bg .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 1.15rem;
  }

  .hero h1 {
    font-size: clamp(1.7rem, 8.2vw, 2.05rem);
    line-height: 1.08;
    letter-spacing: -0.01em;
  }

  .kicker {
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    padding: 0.34rem 0.74rem;
    margin-bottom: 0.7rem;
  }

  .hero-featured-image {
    min-height: 270px;
    max-height: 320px;
    border-radius: 18px;
    box-shadow: 0 14px 30px rgba(26, 36, 31, 0.2);
  }

  .hero-featured-image img {
    height: 100%;
    object-fit: cover;
  }

  .tagline {
    font-size: 1.12rem;
    line-height: 1.45;
  }

  .hero-seo-p {
    display: none;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.62rem;
    margin-top: 0.95rem;
  }

  .hero-actions .btn {
    width: 100%;
    padding: 0.86rem 1rem;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    gap: 0.55rem;
    margin-top: 0.9rem;
  }

  .hero-facts li {
    padding: 0.62rem 0.72rem;
    border-radius: 13px;
    background: rgba(255, 251, 243, 0.9);
  }

  .wildlife-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .wildlife-cta-btn {
    width: 100%;
  }

  .brand span {
    display: none;
  }

  .brand img {
    width: 74px;
    height: 74px;
  }

  section {
    padding: 1rem;
  }

  section > h2:first-child {
    margin-bottom: 0.55rem;
  }

  .gallery-modal {
    padding: 0.65rem;
  }

  .gallery-modal-panel {
    max-height: 92vh;
    border-radius: 20px;
  }

  .gallery-modal-header,
  .gallery-modal-content {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .gallery-modal-content {
    max-height: calc(92vh - 116px);
  }

  .gallery-modal-header {
    align-items: center;
  }

  .gallery-modal-grid {
    grid-template-columns: 1fr;
  }

  .gallery-image-viewer-nav {
    top: auto;
    bottom: 0.6rem;
    transform: none;
  }

  .gallery-image-viewer-nav-prev {
    left: calc(50% - 54px);
  }

  .gallery-image-viewer-nav-next {
    right: calc(50% - 54px);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* ═══════════════════════════════════════════════
   PAGE INTRO BANNER  (dark green for inner pages)
═══════════════════════════════════════════════ */

section.page-intro {
  background: linear-gradient(140deg, #0c1e14 0%, #163826 50%, #1f4a37 100%);
  border: none;
  box-shadow: 0 18px 40px rgba(10, 24, 16, 0.28);
  padding: clamp(2.2rem, 5vw, 3.8rem) clamp(1.5rem, 4vw, 3rem);
}

section.page-intro::before {
  display: none;
}

section.page-intro h1 {
  color: #f4efe6;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

section.page-intro h2 {
  color: #d8f0c8;
  border-color: rgba(255,255,255,0.16);
}

section.page-intro p,
section.page-intro li {
  color: rgba(238, 232, 218, 0.9);
}

section.page-intro .kicker {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
  color: #c8e8a0;
}

section.page-intro .map-embed {
  margin-top: 1.5rem;
  border: 2px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  overflow: hidden;
}

/* Restore normal dark text for cards/panels nested inside the dark banner */
section.page-intro .info-card,
section.page-intro .card,
section.page-intro .panel {
  background: var(--card);
}

section.page-intro .info-card h3,
section.page-intro .card h3 {
  color: var(--forest);
}

section.page-intro .info-card p,
section.page-intro .card p,
section.page-intro .info-card li,
section.page-intro .card li {
  color: var(--ink);
}

section.page-intro .info-card a {
  color: var(--forest);
}

/* stat-band inside dark page-intro */
section.page-intro .stat-band {
  border-color: rgba(255,255,255,0.14);
}

section.page-intro .stat-band .stat {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255,255,255,0.14);
}

section.page-intro .stat-value {
  color: #c8e8a0;
}

section.page-intro .stat-label {
  color: rgba(240, 228, 200, 0.82);
}

/* ═══════════════════════════════════════════════
   STAT BAND
═══════════════════════════════════════════════ */

.stat-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  margin-bottom: 1.25rem;
}

.stat-band .stat {
  padding: 1.2rem 0.9rem;
  text-align: center;
  background: rgba(255, 251, 243, 0.72);
  border-right: 1px solid var(--line);
}

.stat-band .stat:last-child {
  border-right: none;
}

.stat-value {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.65rem, 3.2vw, 2.4rem);
  color: var(--forest);
  line-height: 1;
  display: block;
  margin-bottom: 0.22rem;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--earth);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ═══════════════════════════════════════════════
   VISION GRID
═══════════════════════════════════════════════ */

.vision-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1rem;
}

.vision-card {
  background: rgba(255, 251, 243, 0.85);
  border: 1px solid rgba(31, 74, 55, 0.16);
  border-top: 3px solid var(--forest);
  border-radius: 16px;
  padding: 1rem 1.1rem;
  font-size: 0.96rem;
  line-height: 1.5;
  color: var(--ink);
}

/* ═══════════════════════════════════════════════
   TAG LIST  (activity / feature pills)
═══════════════════════════════════════════════ */

.tag-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.5rem;
}

.tag-list li {
  background: rgba(31, 74, 55, 0.1);
  border: 1px solid rgba(31, 74, 55, 0.22);
  border-radius: 999px;
  padding: 0.38rem 0.92rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--forest);
}

.tag-list li.tag-no {
  background: rgba(160, 45, 25, 0.09);
  border-color: rgba(160, 45, 25, 0.24);
  color: #7a2e1f;
}

.section-subheading {
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--moss);
  margin-top: 1.1rem;
  margin-bottom: 0.25rem;
}

.section-subheading.negative {
  color: #7a2e1f;
}

/* ═══════════════════════════════════════════════
   CTA BAND  (dark green call-to-action section)
═══════════════════════════════════════════════ */

section.cta-band {
  background: linear-gradient(130deg, #0e2118 0%, #1f4a37 65%);
  border: none;
  box-shadow: 0 18px 40px rgba(12, 28, 18, 0.28);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.4rem;
}

section.cta-band::before {
  display: none;
}

section.cta-band h2 {
  color: #f4efe6;
  border-color: rgba(255,255,255,0.14);
  margin-bottom: 0.4rem;
}

section.cta-band p {
  color: rgba(238, 230, 213, 0.9);
  max-width: 54ch;
  margin: 0;
}

section.cta-band .cta-band-text {
  flex: 1 1 260px;
}

section.cta-band .btn-secondary {
  background: rgba(255, 252, 244, 0.96);
  border-color: rgba(240, 228, 200, 0.6);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════
   PRICE CALLOUT
═══════════════════════════════════════════════ */

.price-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.9rem;
  background: linear-gradient(140deg, rgba(31, 74, 55, 0.08), rgba(93, 122, 69, 0.12));
  border: 1px solid rgba(31, 74, 55, 0.2);
  border-radius: 16px;
  padding: 1.25rem 1.4rem;
  margin-top: 1rem;
}

.price-range {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--forest);
  line-height: 1;
  display: block;
}

.price-note {
  font-size: 0.86rem;
  color: var(--earth);
  margin-top: 0.25rem;
}

/* ═══════════════════════════════════════════════
   RULE LIST
═══════════════════════════════════════════════ */

.rule-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0.65rem;
  margin-top: 0.85rem;
}

.rule-list li {
  background: rgba(255, 251, 243, 0.84);
  border: 1px solid rgba(31, 74, 55, 0.14);
  border-left: 3px solid var(--moss);
  border-radius: 10px;
  padding: 0.72rem 0.9rem 0.72rem 1rem;
  font-size: 0.93rem;
  line-height: 1.45;
  color: var(--ink);
}

/* ═══════════════════════════════════════════════
   CONTACT ROLE BADGE
═══════════════════════════════════════════════ */

.contact-role {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--forest);
  background: rgba(93, 122, 69, 0.14);
  border: 1px solid rgba(93, 122, 69, 0.3);
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
  margin-bottom: 0.55rem;
}

/* ═══════════════════════════════════════════════
   ENHANCED INFO CARDS  (top accent line)
═══════════════════════════════════════════════ */

.info-card {
  border-top: 3px solid var(--moss);
}

/* ═══════════════════════════════════════════════
   MOBILE OVERRIDES FOR NEW COMPONENTS
═══════════════════════════════════════════════ */

@media (max-width: 760px) {
  .vision-grid {
    grid-template-columns: 1fr;
  }

  .stat-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-band .stat {
    border-bottom: 1px solid var(--line);
  }

  section.cta-band {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  section.cta-band .btn {
    width: 100%;
    justify-content: center;
  }

  .price-callout {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .price-callout .btn {
    width: 100%;
    justify-content: center;
  }
}