@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Space+Grotesk:wght@400;500;600&family=Sora:wght@300;400;500;600&display=swap");

:root {
  --bg: #08101a;
  --bg-deep: #05070d;
  --panel: rgba(12, 20, 31, 0.78);
  --panel2: rgba(18, 28, 41, 0.84);
  --text: rgba(242, 249, 255, 0.98);
  --muted: rgba(194, 211, 234, 0.84);
  --border: rgba(122, 172, 214, 0.26);
  --accent: #87ecff;
  --accent-warm: #ffc28d;
  --accent-green: #90ffd1;
  --accent-red: #ff8798;
  --glow-cool: rgba(105, 232, 255, 0.16);
  --glow-warm: rgba(255, 176, 112, 0.14);
  --shadow: 0 24px 60px rgba(3, 6, 14, 0.62);
  --font-sans: "Sora", ui-sans-serif, system-ui, -apple-system, Segoe UI, sans-serif;
  --font-display: "Space Grotesk", "Sora", ui-sans-serif, system-ui, -apple-system, Segoe UI, sans-serif;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  background:
    radial-gradient(circle at 18% 16%, rgba(76, 156, 214, 0.34), transparent 26%),
    radial-gradient(circle at 82% 12%, rgba(255, 183, 108, 0.18), transparent 24%),
    radial-gradient(circle at 50% 120%, rgba(73, 142, 108, 0.2), transparent 28%),
    linear-gradient(180deg, #132133 0%, #0b1320 46%, #08101a 100%);
  color: var(--text);
  position: relative;
}
body .pageBg {
  position: fixed;
  inset: -6%;
  background-image: var(--page-bg);
  background-size: cover;
  background-position: center;
  filter: blur(18px) brightness(0.84) saturate(1.16);
  transform: scale(1.06);
  z-index: 0;
  pointer-events: none;
}
body .pageBg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(4, 6, 10, 0.55);
}
body > * {
  position: relative;
  z-index: 1;
}
body::before,
body::after {
  content: none;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 32px;
  border-bottom: 1px solid rgba(120, 184, 224, 0.18);
  background:
    linear-gradient(180deg, rgba(10, 18, 28, 0.88), rgba(8, 14, 24, 0.8));
  backdrop-filter: blur(20px);
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
}
.brand {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 13px;
  color: rgba(236, 248, 255, 0.98);
  text-shadow: 0 0 18px rgba(107, 227, 255, 0.1);
}
.links a {
  color: var(--muted);
  text-decoration: none;
  margin-left: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.2px;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}
.links a:hover {
  color: var(--text);
  background: rgba(135, 236, 255, 0.08);
  transform: translateY(-1px);
}
.links a.active {
  color: var(--text);
  background: linear-gradient(135deg, rgba(135, 236, 255, 0.16), rgba(144, 255, 209, 0.08));
  border: 1px solid rgba(135, 236, 255, 0.46);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02), 0 0 24px rgba(105, 232, 255, 0.08);
}

.layout {
  display: grid;
  grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
  gap: 28px;
  padding: 36px 32px 40px;
  min-height: calc(100vh - 74px);
  max-width: 1200px;
  margin: 0 auto;
}
.globeColumn {
  display: grid;
  gap: 16px;
  align-content: start;
}
.page {
  padding: 36px 32px 40px;
  min-height: calc(100vh - 74px);
  max-width: 1100px;
  margin: 0 auto;
}

.copy {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 26px;
  box-shadow: var(--shadow);
  background-image:
    radial-gradient(circle at top right, var(--glow-cool), transparent 34%),
    linear-gradient(180deg, rgba(14, 22, 34, 0.86), rgba(10, 17, 28, 0.82));
}

h1 {
  margin: 0 0 12px;
  font-size: clamp(32px, 4vw, 46px);
  font-family: var(--font-display);
  letter-spacing: -0.4px;
  color: rgba(244, 250, 255, 0.99);
  text-shadow: 0 10px 30px rgba(12, 134, 174, 0.16);
}
h2 {
  margin: 0 0 10px;
  font-size: 20px;
  font-family: var(--font-display);
  letter-spacing: -0.2px;
  color: rgba(236, 246, 255, 0.96);
}
.subtitle {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 18px;
}
.homeTitle {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}
.lede { margin: 0 0 14px; color: var(--muted); line-height: 1.74; }
.muted { color: var(--muted); }
p,
li,
.cardBody,
.galleryDesc,
.lfParkSectionBody,
.lfParkList,
.speciesMetaRow,
.imageCaption {
  color: var(--muted);
}

.callouts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 18px;
}
.stack {
  display: grid;
  gap: 14px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.card {
  background:
    radial-gradient(circle at top right, rgba(107, 227, 255, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(20, 30, 43, 0.88), rgba(13, 22, 35, 0.88));
  border: 1px solid rgba(140, 190, 228, 0.18);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 18px 40px rgba(2, 6, 14, 0.55);
}
.cardLink {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.cardLink:hover {
  transform: translateY(-2px);
  border-color: rgba(135, 236, 255, 0.52);
  box-shadow: 0 24px 50px rgba(2, 6, 14, 0.6), 0 0 28px rgba(105, 232, 255, 0.08);
}
.cardLink .cardTitle {
  color: var(--text);
}
.cardHead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}
.cardCta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid rgba(135, 236, 255, 0.42);
  background: linear-gradient(135deg, rgba(135, 236, 255, 0.18), rgba(144, 255, 209, 0.12));
  color: var(--accent);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
  flex-shrink: 0;
}
.cardTitle {
  font-weight: 600;
  margin-bottom: 6px;
  color: rgba(240, 248, 255, 0.98);
}
.cardHead .cardTitle {
  margin-bottom: 0;
}
.cardBody { color: var(--muted); }
.blogCard .cardTitle,
.blogCard .muted,
.blogCard .cardBody {
  text-align: center;
}
.blogCard .signalMeta {
  justify-content: center;
}
.blogCard .blogHero {
  margin-left: auto;
  margin-right: auto;
}
.blogIndex {
  display: grid;
  gap: 8px;
}
.blogIndexLink {
  color: var(--text);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid rgba(120, 160, 200, 0.18);
  background: rgba(8, 14, 26, 0.6);
  transition: border-color 160ms ease, transform 160ms ease;
}
.blogIndexLink:hover {
  border-color: rgba(102, 227, 255, 0.45);
  transform: translateY(-1px);
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(135, 236, 255, 0.4);
  background: linear-gradient(135deg, rgba(135, 236, 255, 0.16), rgba(144, 255, 209, 0.08));
  font-size: 12px;
  color: var(--accent);
}
.chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(130, 170, 210, 0.2);
  background: rgba(8, 16, 28, 0.6);
  font-size: 12px;
  color: var(--muted);
}
.link {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(135, 236, 255, 0.38);
}
.panel {
  background:
    radial-gradient(circle at top right, var(--glow-cool), transparent 30%),
    linear-gradient(180deg, rgba(13, 21, 33, 0.84), rgba(10, 17, 28, 0.82));
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 26px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}

.globeWrap {
  background:
    radial-gradient(circle at 50% 0%, rgba(105, 232, 255, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(7, 14, 24, 0.84), rgba(4, 10, 18, 0.9));
  border: 1px solid rgba(133, 190, 228, 0.22);
  border-radius: 24px;
  overflow: hidden;
  min-height: 520px;
  position: relative;
  height: clamp(420px, 70vh, 720px);
  box-shadow: var(--shadow), 0 0 36px rgba(105, 232, 255, 0.08);
}
.globe {
  width: 100%;
  height: 100%;
  min-height: 0;
  background: radial-gradient(circle at 35% 35%, rgba(122, 205, 255, 0.42), rgba(7,11,18,0.98) 58%);
}
.globeTint {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: transparent;
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 220ms ease;
}
.timeSlider {
  background:
    linear-gradient(180deg, rgba(20, 31, 44, 0.9), rgba(13, 21, 34, 0.88));
  border: 1px solid rgba(130, 188, 226, 0.2);
  border-radius: 18px;
  padding: 14px 16px 16px;
  box-shadow: 0 16px 36px rgba(2, 6, 14, 0.45);
}
.timeSliderHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 10px;
}
.timeSlider input[type="range"] {
  width: 100%;
  margin: 0;
  accent-color: var(--accent);
}
.timeSliderLabels {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 12px;
  margin-top: 6px;
}

.signalList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 14px;
}
.signalBtn {
  border: 1px solid rgba(130, 188, 226, 0.22);
  background: linear-gradient(180deg, rgba(10, 18, 30, 0.82), rgba(8, 14, 26, 0.78));
  color: var(--text);
  padding: 10px 12px;
  border-radius: 14px;
  cursor: pointer;
  text-align: left;
}
.signalBtn.active {
  border-color: rgba(135, 236, 255, 0.62);
  background: linear-gradient(135deg, rgba(135, 236, 255, 0.16), rgba(144, 255, 209, 0.1));
  box-shadow: 0 0 22px rgba(105, 232, 255, 0.08);
}
.signalMeta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.btn {
  border: 1px solid rgba(130, 188, 226, 0.22);
  background: linear-gradient(180deg, rgba(11, 18, 30, 0.82), rgba(8, 14, 26, 0.76));
  color: var(--text);
  padding: 8px 12px;
  border-radius: 12px;
  cursor: pointer;
}
.btn.secondary {
  background: rgba(0,0,0,0.35);
  color: var(--muted);
}

.filterList {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}
.sectionLabel {
  margin-top: 12px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(130, 188, 226, 0.24);
  background: rgba(10, 18, 30, 0.76);
  color: var(--text);
}
.input::placeholder {
  color: rgba(255,255,255,0.45);
}
.filterItem {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}
.detailCard {
  display: grid;
  gap: 6px;
  background: linear-gradient(155deg, rgba(14, 24, 40, 0.92), rgba(9, 16, 28, 0.88));
  border: 1px solid rgba(107, 227, 255, 0.2);
  border-radius: 16px;
  padding: 14px;
}
.detailTitle {
  font-weight: 600;
  font-size: 18px;
}
.detailMeta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}
.detailLinks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.detailDivider {
  border-top: 1px solid rgba(130, 170, 210, 0.22);
  margin-top: 14px;
  padding-top: 2px;
}
.detailLinks .btn {
  padding: 6px 10px;
  font-size: 12px;
}
.videoGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 8px;
}
.videoCard {
  background: rgba(7, 13, 24, 0.7);
  border: 1px solid rgba(130, 170, 210, 0.2);
  border-radius: 14px;
  overflow: hidden;
}
.videoFrameWrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: rgba(2, 7, 14, 0.95);
}
.videoFrameWrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.videoCardBody {
  padding: 10px 12px 12px;
  display: grid;
  gap: 6px;
}
.videoTitle {
  font-size: 13px;
  font-weight: 600;
}
.imageGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
  margin-top: 12px;
}
.imageCard img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(120, 160, 200, 0.25);
}
.imageCaption {
  font-size: 11px;
  color: var(--muted);
  margin-top: 6px;
}
.blogHero {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: contain;
  background: rgba(6, 10, 18, 0.6);
  border-radius: 16px;
  border: 1px solid rgba(130, 170, 210, 0.25);
  margin: 8px 0 12px;
}
.blogLightbox {
  cursor: zoom-in;
}
.galleryGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.galleryCard {
  background: var(--panel2);
  border: 1px solid rgba(130, 170, 210, 0.16);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(2, 6, 14, 0.55);
}
.galleryImage {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.galleryBody {
  padding: 14px 16px 18px;
}
.galleryTitle {
  font-weight: 600;
  margin-bottom: 6px;
}
.galleryDesc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.galleryGrid {
  position: relative;
}
.galleryCard {
  cursor: pointer;
}
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(4, 6, 10, 0.85);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
}
.lightbox.active {
  display: flex;
}
.lightboxContent {
  position: relative;
  max-width: min(1000px, 90vw);
  max-height: 80vh;
  width: 100%;
}
.lightboxImage {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 16px;
  border: 1px solid rgba(130, 170, 210, 0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightboxCaption {
  margin-top: 12px;
  color: var(--muted);
  text-align: center;
}
.lightboxClose,
.lightboxPrev,
.lightboxNext {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10, 16, 26, 0.8);
  border: 1px solid rgba(130, 170, 210, 0.3);
  color: var(--text);
  padding: 8px 12px;
  border-radius: 12px;
  cursor: pointer;
}
.lightboxClose {
  top: 10px;
  right: 10px;
  transform: none;
}
.lightboxPrev { left: -48px; }
.lightboxNext { right: -48px; }
@media (max-width: 680px) {
  .lightboxPrev { left: 10px; }
  .lightboxNext { right: 10px; }
}

.footer {
  padding: 20px 32px;
  border-top: 1px solid rgba(120, 160, 200, 0.16);
  color: var(--muted);
  background: rgba(4, 6, 12, 0.6);
  backdrop-filter: blur(18px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.footerProjectsLink {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(102, 227, 255, 0.35);
  font-size: 13px;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
}
.breadcrumb a {
  color: var(--accent);
  text-decoration: none;
}
.ecologyGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.speciesCard {
  perspective: 1200px;
  min-height: 340px;
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}
.speciesCardInner {
  position: relative;
  width: 100%;
  min-height: 340px;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 360ms ease;
}
.speciesCard.isFlipped .speciesCardInner {
  transform: rotateY(180deg);
}
.speciesFace {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(130, 170, 210, 0.16);
  box-shadow: 0 18px 40px rgba(2, 6, 14, 0.55);
  background: var(--panel2);
}
.speciesFace.front {
  display: grid;
  grid-template-rows: 180px auto;
}
.speciesFace.back {
  padding: 16px;
  transform: rotateY(180deg);
}
.speciesImage {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 1px solid rgba(130, 170, 210, 0.2);
}
.speciesBody {
  padding: 14px 16px 16px;
}
.speciesTitle {
  margin: 0;
  font-size: 18px;
}
.speciesScientific {
  margin: 4px 0 10px;
  color: var(--muted);
  font-style: italic;
  font-size: 13px;
}
.speciesMeta {
  display: grid;
  gap: 8px;
  margin-bottom: 10px;
}
.speciesMetaRow {
  font-size: 13px;
  color: var(--muted);
}
.speciesMetaRow b {
  color: var(--text);
}
.speciesFlipHint {
  font-size: 12px;
  color: var(--accent);
  margin-top: 10px;
}
.lfParkPage {
  display: grid;
  gap: 18px;
}
.lfParkHero {
  background:
    linear-gradient(140deg, rgba(18, 35, 52, 0.92), rgba(9, 19, 31, 0.9)),
    radial-gradient(circle at 18% 10%, rgba(107, 227, 255, 0.22), transparent 55%);
  border: 1px solid rgba(130, 170, 210, 0.25);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 22px 56px rgba(2, 6, 14, 0.5);
}
.lfParkLead {
  color: var(--muted);
  line-height: 1.75;
  max-width: 72ch;
}
.lfParkHeroLogoWrap {
  margin: 14px 0 10px;
}
.lfParkHeroLogo {
  width: min(420px, 100%);
  display: block;
  border-radius: 14px;
  border: 1px solid rgba(130, 170, 210, 0.28);
  background: #f6f8fb;
  box-shadow: 0 16px 36px rgba(2, 6, 14, 0.45);
}
.lfParkCallout {
  margin-top: 16px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(102, 227, 255, 0.35);
  background: rgba(102, 227, 255, 0.12);
  color: var(--text);
  padding: 7px 12px;
  font-size: 12px;
}
.lfParkGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.lfParkSection {
  background: var(--panel2);
  border: 1px solid rgba(130, 170, 210, 0.2);
  border-radius: 18px;
  padding: 18px;
}
.lfParkSectionTitle {
  margin: 0 0 8px;
  font-size: 17px;
  font-family: var(--font-display);
}
.lfParkSectionBody {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}
.lfParkList {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}
.lfParkGallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
}
.lfParkSlot {
  background: rgba(8, 14, 24, 0.72);
  border: 1px dashed rgba(130, 170, 210, 0.36);
  border-radius: 16px;
  min-height: 260px;
  display: grid;
  grid-template-rows: 150px auto;
  text-align: center;
  padding: 12px;
}
.lfParkSlotImgWrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(8, 14, 24, 0.92);
  border: 1px solid rgba(130, 170, 210, 0.22);
}
.lfParkSlotImg {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}
.lfParkSlotPlaceholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 10px;
  font-size: 12px;
  color: var(--muted);
  background: linear-gradient(160deg, rgba(13, 22, 36, 0.95), rgba(10, 17, 30, 0.95));
}
.lfParkSlotBody {
  display: grid;
  align-content: start;
  gap: 6px;
  padding: 10px 4px 0;
}
.lfParkSlotTitle {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.lfParkSlotCaption {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}
.lfParkFooterNote {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 980px) {
  .layout { grid-template-columns: 1fr; }
  .lfParkGrid { grid-template-columns: 1fr; }
  .links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 6px; }
  .links a { margin-left: 0; }
  .signalList { grid-template-columns: 1fr; }
  .globe { min-height: 420px; }
}
@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 18px;
  }
  .links {
    width: 100%;
    justify-content: flex-start;
  }
  .layout,
  .page {
    padding: 22px 18px 32px;
  }
  .copy,
  .panel {
    padding: 20px;
    border-radius: 18px;
  }
  .globeWrap {
    height: 52vh;
    min-height: 320px;
  }
  .globe {
    min-height: 320px;
  }
  .timeSliderHeader {
    font-size: 11px;
  }
  .galleryImage {
    height: 190px;
  }
  .card {
    padding: 16px;
  }
}
/* Botanical refresh */
:root {
  --bg: #eff0db;
  --bg-deep: #d8d4b3;
  --panel: rgba(248, 245, 231, 0.84);
  --panel2: rgba(241, 236, 214, 0.88);
  --text: #223422;
  --muted: rgba(52, 72, 51, 0.84);
  --border: rgba(99, 128, 88, 0.26);
  --accent: #39694a;
  --accent-warm: #b57d38;
  --accent-green: #69914f;
  --accent-red: #a35641;
  --glow-cool: rgba(133, 176, 132, 0.18);
  --glow-warm: rgba(212, 170, 101, 0.2);
  --shadow: 0 22px 58px rgba(69, 59, 30, 0.14);
  --font-display: "Cormorant Garamond", "Sora", ui-sans-serif, system-ui, -apple-system, Segoe UI, sans-serif;
  --font-label: "Space Grotesk", "Sora", ui-sans-serif, system-ui, -apple-system, Segoe UI, sans-serif;
}

body {
  background:
    radial-gradient(circle at 18% 16%, rgba(126, 158, 96, 0.22), transparent 26%),
    radial-gradient(circle at 82% 12%, rgba(212, 170, 101, 0.24), transparent 24%),
    radial-gradient(circle at 50% 120%, rgba(148, 175, 108, 0.22), transparent 28%),
    linear-gradient(180deg, #ede6cf 0%, #e3ddc1 46%, #d6cfac 100%);
  color: var(--text);
}
body .pageBg {
  filter: blur(16px) brightness(1.02) saturate(1.08);
  opacity: 0.38;
}
body .pageBg::after {
  background:
    linear-gradient(180deg, rgba(245, 239, 216, 0.58), rgba(226, 218, 186, 0.68)),
    radial-gradient(circle at 10% 20%, rgba(89, 120, 73, 0.12), transparent 26%),
    radial-gradient(circle at 88% 18%, rgba(182, 131, 55, 0.16), transparent 24%);
}
body::before,
body::after {
  content: "";
  position: fixed;
  width: min(34vw, 360px);
  height: min(34vw, 360px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.34;
}
body::before {
  top: 0;
  left: 0;
  background:
    radial-gradient(circle at 22% 78%, rgba(91, 126, 67, 0.55) 0 10%, transparent 11%),
    radial-gradient(ellipse at 34% 66%, rgba(126, 160, 93, 0.44) 0 16%, transparent 17%),
    radial-gradient(ellipse at 18% 44%, rgba(101, 138, 76, 0.36) 0 14%, transparent 15%),
    radial-gradient(ellipse at 46% 34%, rgba(165, 191, 118, 0.42) 0 13%, transparent 14%),
    radial-gradient(ellipse at 60% 20%, rgba(91, 126, 67, 0.34) 0 12%, transparent 13%);
}
body::after {
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 72% 24%, rgba(186, 137, 62, 0.52) 0 9%, transparent 10%),
    radial-gradient(ellipse at 64% 38%, rgba(214, 178, 102, 0.42) 0 15%, transparent 16%),
    radial-gradient(ellipse at 82% 58%, rgba(106, 145, 81, 0.35) 0 13%, transparent 14%),
    radial-gradient(ellipse at 52% 74%, rgba(153, 183, 104, 0.34) 0 13%, transparent 14%),
    radial-gradient(ellipse at 26% 84%, rgba(90, 120, 69, 0.28) 0 11%, transparent 12%);
}

.nav {
  border-bottom: 1px solid rgba(110, 140, 91, 0.2);
  background: linear-gradient(180deg, rgba(244, 238, 216, 0.92), rgba(233, 225, 194, 0.86));
  box-shadow: 0 10px 30px rgba(111, 91, 42, 0.12);
}
.brand {
  font-family: var(--font-label);
  color: #29452f;
  text-shadow: 0 1px 0 rgba(255, 247, 226, 0.65);
}
.links a:hover {
  color: var(--text);
  background: rgba(109, 145, 83, 0.1);
}
.links a.active {
  color: var(--text);
  background: linear-gradient(135deg, rgba(111, 145, 84, 0.18), rgba(214, 174, 102, 0.18));
  border: 1px solid rgba(111, 145, 84, 0.34);
  box-shadow: inset 0 0 0 1px rgba(255, 248, 233, 0.36), 0 8px 22px rgba(125, 106, 54, 0.12);
}

.copy,
.panel,
.card,
.globeWrap,
.timeSlider,
.detailCard,
.galleryCard,
.speciesFace,
.lfParkHero,
.lfParkSection,
.videoCard,
.blogIndexLink,
.signalBtn,
.btn,
.input {
  position: relative;
}
.copy,
.panel {
  background-image:
    radial-gradient(circle at top right, var(--glow-cool), transparent 34%),
    linear-gradient(180deg, rgba(249, 245, 229, 0.96), rgba(239, 232, 205, 0.92));
}
.card,
.galleryCard,
.speciesFace,
.lfParkSection,
.detailCard,
.videoCard {
  background:
    radial-gradient(circle at top right, rgba(148, 182, 102, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(249, 244, 225, 0.94), rgba(236, 228, 198, 0.92));
  border: 1px solid rgba(116, 146, 94, 0.22);
  box-shadow: 0 18px 40px rgba(117, 97, 48, 0.14);
}
.copy::before,
.panel::before,
.card::before,
.globeWrap::before,
.detailCard::before,
.galleryCard::before,
.speciesFace::before,
.lfParkHero::before,
.lfParkSection::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 16%, rgba(145, 175, 98, 0.12) 0 2px, transparent 3px),
    radial-gradient(circle at 86% 20%, rgba(209, 171, 100, 0.12) 0 2px, transparent 3px),
    linear-gradient(135deg, rgba(255, 252, 240, 0.22), transparent 40%);
  opacity: 0.78;
}
.copy::after,
.panel::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: 14px;
  bottom: 12px;
  pointer-events: none;
  opacity: 0.18;
  background:
    radial-gradient(circle at 30% 70%, rgba(107, 140, 77, 0.6) 0 7%, transparent 8%),
    radial-gradient(ellipse at 42% 54%, rgba(129, 161, 95, 0.45) 0 16%, transparent 17%),
    radial-gradient(ellipse at 58% 36%, rgba(169, 191, 117, 0.42) 0 14%, transparent 15%),
    radial-gradient(ellipse at 74% 24%, rgba(204, 164, 93, 0.4) 0 10%, transparent 11%);
}

h1 {
  font-size: clamp(40px, 5vw, 62px);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 0.95;
  color: #20311f;
  text-shadow: 0 1px 0 rgba(255, 247, 230, 0.72);
}
h2 {
  font-size: 28px;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #284028;
}
.homeTitle {
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-align: center;
  font-size: clamp(26px, 3vw, 38px);
  color: #3b5c3e;
}
.subtitle,
.lede,
p,
li,
.cardBody,
.galleryDesc,
.lfParkSectionBody,
.lfParkList,
.speciesMetaRow,
.imageCaption,
.muted {
  color: var(--muted);
}
.cardTitle,
.detailTitle,
.galleryTitle,
.speciesTitle,
.lfParkSectionTitle,
.videoTitle {
  color: #233522;
}
.badge,
.cardCta,
.chip {
  border-color: rgba(120, 146, 83, 0.35);
  background: linear-gradient(135deg, rgba(111, 145, 84, 0.14), rgba(214, 174, 102, 0.16));
}
.link,
.footerProjectsLink,
.breadcrumb a,
.speciesFlipHint {
  color: var(--accent);
  border-color: rgba(111, 145, 84, 0.34);
}
.link:hover,
.footerProjectsLink:hover {
  color: var(--accent-warm);
  border-color: rgba(181, 125, 56, 0.35);
}

.blogIndexLink,
.chip,
.input,
.btn.secondary {
  background: rgba(248, 242, 220, 0.78);
  border-color: rgba(116, 144, 92, 0.2);
}
.btn,
.signalBtn,
.timeSlider,
.globeWrap,
.lfParkHero {
  background: linear-gradient(180deg, rgba(247, 241, 220, 0.94), rgba(234, 226, 195, 0.9));
  border-color: rgba(117, 143, 93, 0.22);
  box-shadow: 0 16px 36px rgba(117, 97, 48, 0.14);
}
.signalBtn.active,
.btn:hover,
.signalBtn:hover,
.blogIndexLink:hover,
.cardLink:hover {
  border-color: rgba(111, 145, 84, 0.42);
  box-shadow: 0 18px 38px rgba(117, 97, 48, 0.16), 0 0 24px rgba(188, 147, 70, 0.08);
}
.input {
  color: var(--text);
}
.input::placeholder {
  color: rgba(74, 92, 61, 0.6);
}
.globeWrap {
  background:
    radial-gradient(circle at 50% 0%, rgba(163, 190, 114, 0.22), transparent 30%),
    linear-gradient(180deg, rgba(244, 238, 216, 0.94), rgba(222, 214, 183, 0.92));
  border: 1px solid rgba(117, 143, 93, 0.24);
  box-shadow: var(--shadow), 0 0 36px rgba(189, 150, 69, 0.08);
}
.globe {
  background: radial-gradient(circle at 35% 35%, rgba(224, 204, 142, 0.55), rgba(84, 107, 72, 0.96) 58%);
}
.blogHero,
.imageCard img,
.galleryImage,
.lfParkSlotImg,
.speciesImage {
  border-color: rgba(117, 143, 93, 0.24);
}
.lightbox {
  background: rgba(44, 55, 34, 0.52);
}
.lightboxImage,
.lightboxClose,
.lightboxPrev,
.lightboxNext {
  border-color: rgba(227, 218, 185, 0.42);
  background: rgba(244, 237, 214, 0.88);
  color: var(--text);
}
.footer {
  border-top: 1px solid rgba(117, 143, 93, 0.18);
  background: rgba(241, 233, 206, 0.78);
}

@media (max-width: 720px) {
  body::before,
  body::after {
    width: min(48vw, 220px);
    height: min(48vw, 220px);
    opacity: 0.24;
  }
  h1 {
    font-size: clamp(34px, 9vw, 46px);
  }
  h2 {
    font-size: 24px;
  }
}

.homePage {
  display: grid;
  gap: 24px;
}

.homeBanner {
  display: grid;
  gap: 22px;
  padding: 28px;
}

.homeBannerIntro {
  display: grid;
  gap: 12px;
  justify-items: center;
  text-align: center;
}

.homeEyebrow {
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 13px;
  color: #4f744e;
}

.homeHeroTitle {
  margin: 0;
  max-width: none;
  text-align: center;
  font-size: clamp(58px, 11vw, 140px);
  line-height: 0.86;
  letter-spacing: 0.01em;
  color: #31503a;
}

.homeSubtitle {
  max-width: 54ch;
  margin: 0 auto;
}

.homeHeroGlobe {
  width: 100%;
  min-height: 380px;
  height: clamp(360px, 52vh, 560px);
}

.homeRegistrySpotlight {
  display: flex;
  justify-content: center;
}

.homeRegistryIntro {
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
  padding: 0 16px;
}

.homeRegistryTitleBox {
  padding: 14px 22px;
  border: 1px solid rgba(117, 143, 93, 0.24);
  border-radius: 20px;
  background:
    radial-gradient(circle at top right, rgba(156, 186, 108, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(249, 244, 225, 0.92), rgba(236, 229, 200, 0.88));
  box-shadow: 0 14px 30px rgba(117, 97, 48, 0.1);
}

.homeRegistryTitleBox h2 {
  margin: 0;
}

.homeRegistrySection {
  display: grid;
  gap: 20px;
  padding: 24px;
  border: 1px solid rgba(117, 143, 93, 0.24);
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(156, 186, 108, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(247, 241, 220, 0.9), rgba(234, 226, 195, 0.86));
  box-shadow: 0 18px 40px rgba(117, 97, 48, 0.12);
}

.homeRegistrySubtitle {
  max-width: 64ch;
  margin: 0;
}

.homeRegistryLayout {
  align-items: start;
  padding-top: 0;
}

.homeRegistryLayout .globeColumn {
  position: sticky;
  top: 94px;
}

.homeTagCard .cardBody {
  display: grid;
  gap: 10px;
}

.homeTagCard .filterList {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.homeTagCard .filterItem {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid rgba(117, 143, 93, 0.2);
  background: rgba(248, 242, 220, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 250, 236, 0.68);
}

.homeTagCard .filterItem input {
  margin: 0;
  accent-color: #557746;
}

.homeTagCard .sectionLabel {
  margin-top: 2px;
}

.homeTagCard .btn.secondary {
  justify-self: start;
}

.homeStoryCard {
  display: grid;
  gap: 12px;
}

.homeStoryList {
  display: block;
}

.homeStoryItem {
  display: grid;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(117, 143, 93, 0.18);
  background:
    radial-gradient(circle at top right, rgba(156, 186, 108, 0.1), transparent 36%),
    linear-gradient(180deg, rgba(250, 246, 230, 0.9), rgba(238, 231, 204, 0.86));
}

.homeStoryNarrative {
  margin: 0;
  font-size: 15px;
  line-height: 1.74;
  color: #314532;
}

.homeRegistryCard {
  width: min(720px, 100%);
  text-align: center;
}

.homeRegistryCard .cardHead {
  justify-content: center;
}

.homeSecondaryGrid {
  align-items: stretch;
}

@media (max-width: 720px) {
  .homeBanner {
    padding: 20px;
  }

  .homeRegistrySection {
    padding: 18px;
    border-radius: 20px;
  }

  .homeRegistryIntro {
    padding: 0;
  }

  .homeRegistryTitleBox {
    padding: 12px 18px;
  }

  .homeHeroTitle {
    font-size: clamp(44px, 15vw, 74px);
  }

  .homeHeroGlobe {
    min-height: 300px;
    height: 42vh;
  }

  .homeRegistryLayout .globeColumn {
    position: static;
  }

  .homeRegistryLayout {
    gap: 18px;
  }

  .homeTagCard .filterList {
    gap: 6px;
  }

  .homeTagCard .filterItem {
    padding: 6px 10px;
    font-size: 12px;
  }

  .homeStoryItem {
    padding: 12px;
  }

  .homeStoryNarrative {
    font-size: 14px;
  }
}


