:root {
  --paper: #f1eddf;
  --paper-2: #e6e0ce;
  --paper-3: #fbf8ee;
  --ink: #162720;
  --forest: #17382f;
  --forest-2: #245346;
  --moss: #6f7d46;
  --lime: #d8ef68;
  --orange: #ef684b;
  --sun: #f3bf4f;
  --sky: #a9ced0;
  --line: rgba(22, 39, 32, 0.18);
  --muted: #67716a;
  --white: #fffdf5;
  --shadow: 0 20px 60px rgba(22, 39, 32, 0.13);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --display: "Fraunces", "Noto Serif SC", Georgia, serif;
  --body: "DM Sans", "Noto Sans SC", sans-serif;
}

* { box-sizing: border-box; }
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 4%, rgba(216, 239, 104, 0.2), transparent 22rem),
    radial-gradient(circle at 100% 25%, rgba(169, 206, 208, 0.2), transparent 32rem),
    var(--paper);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

button, input, select { font: inherit; }
button { color: inherit; }
button, [role="button"] { -webkit-tap-highlight-color: transparent; }
button:focus-visible, input:focus-visible, select:focus-visible, a:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

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

.site-grain {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 200;
  padding: 12px 18px;
  border-radius: 0 0 12px 12px;
  color: var(--white);
  background: var(--forest);
  transition: top 0.2s ease;
}
.skip-link:focus { top: 0; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 82px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 0 4vw;
  background: rgba(241, 237, 223, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}
.brand-logo { width: 210px; max-width: 48vw; height: auto; max-height: 41px; display: block; object-fit: contain; object-position: left center; transition: opacity .2s ease,transform .2s ease; }
.brand:hover .brand-logo { opacity: .82; transform: translateY(-1px); }

.desktop-nav { display: flex; align-items: center; gap: 5px; }
.nav-link {
  position: relative;
  padding: 12px 17px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}
.nav-link:hover { color: var(--ink); background: rgba(22, 39, 32, 0.06); }
.nav-link.is-active { color: var(--white); background: var(--forest); }
.nav-count {
  min-width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  margin-left: 3px;
  padding: 0 5px;
  border-radius: 99px;
  color: var(--forest);
  background: var(--lime);
  font-size: 10px;
}

.topbar-actions { justify-self: end; display: flex; align-items: center; gap: 9px; }
.round-button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: 0.2s ease;
}
.round-button:hover { color: var(--white); background: var(--forest); transform: rotate(12deg); }
.round-button svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.season-pill {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 14px 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  text-align: left;
}
.season-pill .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 5px rgba(239,104,75,.14); }
.season-pill span:last-child { display: grid; }
.season-pill small { color: var(--muted); font-size: 7px; font-weight: 700; letter-spacing: 0.12em; }
.season-pill strong { margin-top: 2px; font-size: 11px; }

main { min-height: calc(100vh - 82px); }
.page { width: min(1440px, 100%); margin: 0 auto; padding: 0 4vw 80px; animation: page-in .45s ease both; }
@keyframes page-in { from { opacity: 0; transform: translateY(8px); } }

body[data-view="destinations"] { background: #06140f; }
body[data-view="destinations"] main {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 78% 18%,rgba(55,103,88,.28),transparent 29rem),
    radial-gradient(circle at 13% 76%,rgba(35,79,67,.24),transparent 34rem),
    linear-gradient(155deg,#071712,#0b211b 54%,#06140f);
}
body[data-view="destinations"] main::before {
  content: "";
  position: absolute;
  inset: -4%;
  z-index: -1;
  pointer-events: none;
  opacity: .72;
  background-image:
    radial-gradient(circle at 19px 27px,rgba(255,253,245,.72) 0 1px,transparent 1.4px),
    radial-gradient(circle at 71px 89px,rgba(216,239,104,.46) 0 .8px,transparent 1.3px),
    radial-gradient(circle at 133px 41px,rgba(169,206,208,.56) 0 1.2px,transparent 1.7px);
  background-size: 113px 109px,177px 163px,263px 229px;
  animation: destination-stars-drift 24s ease-in-out infinite alternate;
}
body[data-view="destinations"] main::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(90deg,rgba(6,20,15,.2),transparent 28%,transparent 72%,rgba(6,20,15,.24));
}
@keyframes destination-stars-drift {
  to { opacity: .54; transform: translate3d(1.4%,1%,0); }
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 15px;
  color: var(--forest-2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--orange); }

.field-hero {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 1.07fr) minmax(430px, .93fr);
  align-items: stretch;
  gap: 24px;
  padding: 28px 0 50px;
}
.hero-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px clamp(8px, 3vw, 44px) 42px 0;
}
.hero-index {
  position: absolute;
  right: 3%;
  top: 10%;
  color: rgba(23, 56, 47, .09);
  font-family: var(--display);
  font-size: clamp(100px, 13vw, 210px);
  line-height: .8;
  pointer-events: none;
}
.hero-copy h1 {
  position: relative;
  max-width: 820px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(58px, 6.5vw, 106px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: .93;
}
.hero-copy h1 em { color: var(--orange); font-style: italic; font-weight: 500; }
.hero-lede { max-width: 610px; margin: 28px 0 26px; color: var(--muted); font-size: clamp(15px, 1.35vw, 18px); line-height: 1.75; }

.hero-search {
  position: relative;
  z-index: 70;
  max-width: 650px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 8px 8px 8px 17px;
  border: 1px solid var(--ink);
  border-radius: 16px;
  background: rgba(255, 253, 245, .6);
  box-shadow: 8px 8px 0 rgba(23, 56, 47, .09);
}
.hero-search > svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.hero-search input { min-width: 0; padding: 10px 2px; border: 0; outline: 0; color: var(--ink); background: transparent; }
.hero-search input::placeholder { color: #858c85; }
.hero-search > button {
  padding: 12px 18px;
  border: 0;
  border-radius: 11px;
  color: var(--white);
  background: var(--forest);
  font-weight: 700;
  cursor: pointer;
}
.hero-search > button:active { transform: scale(.98); }
.hero-search-results {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 10px);
  z-index: 2;
  max-height: min(430px,55vh);
  overflow-y: auto;
  padding: 8px 14px 10px;
  border: 1px solid rgba(23,56,47,.28);
  border-radius: 14px;
  color: var(--ink);
  background: rgba(247,245,233,.98);
  box-shadow: 10px 14px 30px rgba(23,56,47,.17), inset 0 1px 0 rgba(255,255,255,.72);
  backdrop-filter: blur(14px);
}
.hero-search-results[hidden] { display: none; }
.hero-search-results-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 5px 4px 9px; color: var(--muted); }
.hero-search-results-head strong { color: var(--forest); font-size: 10px; letter-spacing: .08em; }
.hero-search-results-head span { font-size: 8px; }
.hero-search-result { width: 100%; display: grid; grid-template-columns: 54px minmax(0,1fr) auto; align-items: center; gap: 12px; padding: 10px 4px; border: 0; border-top: 1px solid var(--line); border-radius: 0; color: var(--ink); background: transparent; cursor: pointer; text-align: left; transition: background .22s ease, transform .22s cubic-bezier(.16,1,.3,1); }
.hero-search-result:hover,.hero-search-result.is-active { background: rgba(216,239,104,.2); transform: translateX(3px); }
.hero-search-result:focus-visible { outline: 2px solid var(--forest); outline-offset: -2px; }
.hero-search-result img { width: 54px; height: 48px; display: block; object-fit: cover; background: var(--paper-2); }
.hero-search-result > span { min-width: 0; display: grid; gap: 2px; }
.hero-search-result small { overflow: hidden; color: var(--orange); font-size: 7px; font-weight: 700; letter-spacing: .08em; text-overflow: ellipsis; white-space: nowrap; }
.hero-search-result strong { overflow: hidden; font-family: var(--display); font-size: 17px; font-weight: 600; text-overflow: ellipsis; white-space: nowrap; }
.hero-search-result em { overflow: hidden; color: var(--muted); font-family: var(--display); font-size: 8px; font-weight: 500; text-overflow: ellipsis; white-space: nowrap; }
.hero-search-result > svg { width: 17px; fill: none; stroke: var(--forest); stroke-width: 1.8; }
.hero-search-empty { padding: 18px 8px; }
.hero-search-empty strong { display: block; font-family: var(--display); font-size: 18px; }
.hero-search-empty p { max-width: 44ch; margin: 7px 0 0; color: var(--muted); font-size: 10px; line-height: 1.6; }
.hero-search-all { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 2px; padding: 12px 4px 6px; border: 0; border-top: 1px solid var(--line); border-radius: 0; color: var(--forest); background: transparent; font-size: 11px; font-weight: 700; cursor: pointer; }
.hero-search-all svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 2; transition: transform .2s ease; }
.hero-search-all:hover svg { transform: translateX(4px); }
.quick-links { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: 18px; }
.quick-links > span { color: var(--muted); font-size: 12px; }
.text-chip { padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; background: transparent; font-size: 12px; cursor: pointer; }
.text-chip:hover { border-color: var(--orange); color: var(--orange); }

body[data-view="search"] {
  background:
    radial-gradient(circle at 82% 3%,rgba(216,239,104,.33),transparent 25rem),
    linear-gradient(180deg,#f5f0df 0,#f1eddf 48%,#e9e3d1 100%);
}
.search-page { width: min(1220px,100%); }
.search-controls {
  position: sticky;
  top: 82px;
  z-index: 35;
  display: grid;
  grid-template-columns: auto minmax(0,1fr);
  gap: 12px 16px;
  margin: 0 -4vw;
  padding: 15px 4vw;
  border-bottom: 1px solid var(--line);
  background: rgba(245,240,223,.9);
  backdrop-filter: blur(18px);
}
.search-back { display: inline-flex; align-items: center; gap: 7px; padding: 0 13px 0 9px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,253,245,.54); font-size: 11px; font-weight: 700; cursor: pointer; }
.search-back svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 2; transform: rotate(180deg); }
.search-results-form { min-width: 0; display: grid; grid-template-columns: auto minmax(0,1fr) auto; align-items: center; gap: 11px; padding: 6px 7px 6px 15px; border: 1px solid var(--ink); border-radius: 15px; background: var(--white); box-shadow: 6px 6px 0 rgba(23,56,47,.08); }
.search-results-form > svg { width: 19px; fill: none; stroke: var(--forest); stroke-width: 1.8; }
.search-results-form input { min-width: 0; padding: 10px 0; border: 0; outline: 0; color: var(--ink); background: transparent; font-size: 15px; }
.search-results-form button { padding: 11px 19px; border: 0; border-radius: 10px; color: var(--white); background: var(--forest); font-size: 12px; font-weight: 700; cursor: pointer; }
.search-tabs { grid-column: 2; display: flex; gap: 5px; }
.search-tabs button { min-width: 104px; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 9px 12px; border: 0; border-radius: 999px; color: var(--muted); background: transparent; cursor: pointer; }
.search-tabs button span { font-size: 12px; font-weight: 700; }
.search-tabs button small { min-width: 22px; height: 22px; display: grid; place-items: center; padding: 0 6px; border: 1px solid var(--line); border-radius: 999px; font-size: 8px; }
.search-tabs button.is-active { color: var(--white); background: var(--forest); }
.search-tabs button.is-active small { color: var(--forest); border-color: var(--lime); background: var(--lime); }
.search-heading { position: relative; overflow: hidden; padding: clamp(58px,8vw,112px) 0 clamp(50px,7vw,92px); border-bottom: 1px solid var(--ink); }
.search-heading::after { content: "⌕"; position: absolute; right: 1%; bottom: -20%; color: rgba(23,56,47,.07); font-family: var(--display); font-size: clamp(150px,24vw,330px); line-height: .8; pointer-events: none; }
.search-heading h1 { position: relative; z-index: 1; max-width: 900px; margin: 0; font-family: var(--display); font-size: clamp(58px,8.4vw,112px); font-weight: 600; letter-spacing: -.06em; line-height: .88; }
.search-heading h1 em { color: var(--orange); font-style: italic; font-weight: 500; }
.search-heading > p:last-child { position: relative; z-index: 1; margin: 24px 0 0; color: var(--muted); font-size: 12px; letter-spacing: .08em; }
.search-results-body { padding-bottom: 60px; }
.search-result-section { display: grid; grid-template-columns: minmax(210px,.34fr) minmax(0,1fr); gap: clamp(26px,5vw,76px); padding: 48px 0 64px; border-bottom: 1px solid var(--line); }
.search-result-section > header { align-self: start; position: sticky; top: 210px; }
.search-result-section > header p { margin: 0 0 12px; color: var(--orange); font-size: 8px; font-weight: 700; letter-spacing: .16em; }
.search-result-section > header h2 { margin: 0; font-family: var(--display); font-size: clamp(31px,3.2vw,48px); font-weight: 600; letter-spacing: -.04em; line-height: .95; }
.search-result-section > header h2 sup { margin-left: 6px; color: var(--orange); font-family: var(--body); font-size: 9px; letter-spacing: 0; vertical-align: top; }
.search-result-section > header > span { display: block; max-width: 220px; margin-top: 14px; color: var(--muted); font-size: 11px; line-height: 1.65; }
.search-result-section > header button { display: inline-flex; align-items: center; gap: 9px; margin-top: 22px; padding: 9px 0; border: 0; border-bottom: 1px solid var(--ink); background: transparent; font-size: 10px; font-weight: 700; cursor: pointer; }
.search-result-section > header button svg { width: 14px; fill: none; stroke: currentColor; stroke-width: 2; }
.search-result-list { min-width: 0; }
.search-result-row { position: relative; width: 100%; display: grid; grid-template-columns: 34px 128px minmax(0,1fr) 42px; align-items: center; gap: 18px; padding: 16px 10px 16px 0; border: 0; border-top: 1px solid var(--line); border-radius: 0; background: transparent; cursor: pointer; text-align: left; transition: background .22s ease, padding .22s ease; }
.search-result-row:last-child { border-bottom: 1px solid var(--line); }
.search-result-row:hover { padding-left: 10px; background: rgba(216,239,104,.22); }
.search-result-index { align-self: start; padding-top: 4px; color: var(--muted); font-family: var(--display); font-size: 11px; }
.search-result-row > img { width: 128px; height: 96px; object-fit: cover; background: var(--paper-2); filter: saturate(.85); }
.search-result-copy { min-width: 0; display: grid; gap: 6px; }
.search-result-copy > small { overflow: hidden; color: var(--orange); font-size: 8px; font-weight: 700; letter-spacing: .1em; text-overflow: ellipsis; white-space: nowrap; }
.search-result-copy > strong { min-width: 0; display: flex; align-items: baseline; gap: 10px; font-family: var(--display); font-size: clamp(25px,2.7vw,38px); font-weight: 600; letter-spacing: -.035em; line-height: .98; }
.search-result-copy > strong em { overflow: hidden; color: var(--muted); font-family: var(--body); font-size: 9px; font-style: normal; font-weight: 600; letter-spacing: .05em; text-overflow: ellipsis; white-space: nowrap; }
.search-result-summary { display: -webkit-box; overflow: hidden; color: var(--muted); font-size: 11px; line-height: 1.55; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.search-result-facts { display: flex; flex-wrap: wrap; gap: 7px; }
.search-result-facts span { padding: 5px 8px; border: 1px solid var(--line); border-radius: 999px; color: var(--forest); font-size: 8px; }
.search-result-arrow { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; transition: color .2s ease,background .2s ease,transform .2s ease; }
.search-result-arrow svg { width: 16px; fill: none; stroke: currentColor; stroke-width: 2; }
.search-result-row:hover .search-result-arrow { color: var(--forest); border-color: var(--lime); background: var(--lime); transform: translateX(3px); }
.search-no-results { min-height: 560px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 72px 0; }
.search-no-results > span { color: var(--orange); font-family: var(--display); font-size: 72px; line-height: 1; }
.search-no-results > p:first-of-type { margin: 8px 0 18px; color: var(--forest); font-size: 9px; font-weight: 700; letter-spacing: .16em; }
.search-no-results h2 { margin: 0; font-family: var(--display); font-size: clamp(44px,7vw,86px); font-weight: 600; letter-spacing: -.05em; line-height: .92; }
.search-no-results h2 + p { max-width: 480px; margin: 22px 0; color: var(--muted); line-height: 1.7; }
.search-no-results > div { display: flex; flex-wrap: wrap; gap: 8px; }
.search-no-results button { padding: 9px 12px; border: 1px solid var(--line); border-radius: 999px; background: transparent; font-size: 11px; cursor: pointer; }
.search-no-results button:hover { color: var(--white); border-color: var(--forest); background: var(--forest); }

.season-board {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border-radius: 8px 8px 72px 8px;
  color: var(--white);
  background-color: #263e35;
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
  cursor: pointer;
  isolation: isolate;
  transition: transform .28s cubic-bezier(.16,1,.3,1),box-shadow .28s ease;
}
.season-board:hover { transform: translateY(-4px); box-shadow: 0 26px 66px rgba(22,39,32,.2); }
.season-board:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }
.season-board::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(9,25,20,.3), rgba(9,25,20,.12) 35%, rgba(9,25,20,.86)); }
.season-board::after { content: ""; position: absolute; inset: 10px; z-index: 0; border: 1px solid rgba(255,255,255,.22); border-radius: 4px 4px 62px 4px; pointer-events: none; }
.board-top, .board-bottom { position: relative; z-index: 1; }
.board-top { display: flex; align-items: flex-start; justify-content: space-between; }
.board-label { display: grid; gap: 5px; }
.board-label small { font-size: 9px; letter-spacing: .16em; }
.board-label strong { max-width: 330px; font-family: var(--display); font-size: 25px; font-weight: 500; }
.weather-mark { width: 55px; height: 55px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; backdrop-filter: blur(5px); }
.weather-mark span { font-family: var(--display); font-size: 20px; }
.board-kicker { margin: 0 0 8px; color: var(--lime); font-size: 10px; font-weight: 700; letter-spacing: .14em; }
.board-bottom h2 { max-width: 470px; margin: 0; font-family: var(--display); font-size: clamp(38px, 4vw, 60px); font-weight: 500; line-height: 1; }
.board-meta { display: flex; gap: 22px; margin-top: 22px; }
.board-meta span { display: grid; gap: 3px; padding-left: 12px; border-left: 2px solid var(--lime); }
.board-meta small { color: rgba(255,255,255,.66); font-size: 9px; letter-spacing: .12em; }
.board-meta strong { font-size: 12px; }
.board-action { position: absolute; right: 24px; bottom: 24px; z-index: 2; width: 52px; height: 52px; display: grid; place-items: center; border: 0; border-radius: 50%; color: var(--forest); background: var(--lime); transition: .2s ease; }
.season-board:hover .board-action,.season-board:focus-visible .board-action { transform: translate(3px,-3px); background: var(--white); }
.board-action svg { width: 21px; fill: none; stroke: currentColor; stroke-width: 2; }

.section { padding: 70px 0; border-top: 1px solid var(--line); }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 30px; }
.section-title { margin: 0; font-family: var(--display); font-size: clamp(38px, 4vw, 62px); font-weight: 600; letter-spacing: -.035em; line-height: 1.05; }
.section-intro { max-width: 500px; margin: 12px 0 0; color: var(--muted); line-height: 1.7; }
.map-section-head .section-intro { max-width: 620px; margin-top: 0; }
.section-action { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 8px; padding: 11px 14px; border: 0; border-bottom: 1px solid var(--ink); background: transparent; font-weight: 700; cursor: pointer; }
.section-action svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 2; transition: transform .2s ease; }
.section-action:hover svg { transform: translateX(4px); }

.atlas-grid { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(300px, .5fr); gap: 16px; }
.map-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #d8ddd0;
  isolation: isolate;
}
.map-head { position: absolute; left: 18px; top: 18px; z-index: 500; display: grid; gap: 3px; max-width: calc(100% - 88px); padding: 11px 14px; border: 1px solid rgba(255,255,255,.62); border-radius: 14px; background: rgba(247,246,235,.86); box-shadow: 0 8px 24px rgba(23,56,47,.12); backdrop-filter: blur(10px); pointer-events: none; }
.map-head strong { font-family: var(--display); font-size: 22px; }
.map-head span { color: var(--muted); font-size: 10px; letter-spacing: .12em; }
.world-map { position: absolute; inset: 0; width: 100%; height: 100%; background: #d8ddd0; font-family: var(--body); }
.world-map .leaflet-tile-pane { filter: saturate(.6) sepia(.1) brightness(.96); }
.world-map .leaflet-control-zoom { overflow: hidden; border: 0; border-radius: 12px; box-shadow: 0 8px 25px rgba(23,56,47,.18); }
.world-map .leaflet-control-zoom a { width: 34px; height: 34px; border: 0; color: var(--forest); background: rgba(247,246,235,.94); font-family: var(--body); line-height: 34px; }
.world-map .leaflet-control-zoom a + a { border-top: 1px solid var(--line); }
.world-map .leaflet-control-attribution { padding: 3px 7px; color: var(--muted); background: rgba(247,246,235,.88); font-size: 8px; }
.world-map .leaflet-control-attribution a { color: var(--forest); }
.world-map .leaflet-control-scale-line { border-color: var(--forest); color: var(--forest); background: rgba(247,246,235,.78); font-size: 8px; }
.wild-marker-shell { background: transparent; border: 0; }
.wild-marker { position: relative; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: rgba(216,239,104,.2); }
.wild-marker::before { content: ""; position: absolute; inset: 3px; border: 1px solid var(--lime); border-radius: 50%; animation: map-pulse 2.4s ease-in-out infinite; }
.wild-marker i { position: relative; z-index: 1; width: 11px; height: 11px; display: block; border: 3px solid var(--forest); border-radius: 50%; background: var(--lime); box-shadow: 0 2px 9px rgba(10,25,20,.36); }
.wild-marker.is-compact { width: 20px; height: 20px; }
.wild-marker.is-compact::before { inset: 1px; animation: none; }
.wild-marker.is-compact i { width: 8px; height: 8px; border-width: 2px; }
.wild-marker.is-active { background: rgba(241,99,78,.22); }
.wild-marker.is-active::before { border-color: var(--orange); }
.wild-marker.is-active i { background: var(--orange); }
.wild-map-tooltip { padding: 7px 10px; border: 0; border-radius: 9px; color: var(--white); background: var(--forest); box-shadow: 0 8px 24px rgba(10,25,20,.22); font-family: var(--body); font-size: 10px; font-weight: 700; }
.wild-map-tooltip::before { border-top-color: var(--forest); }
.map-loading, .map-unavailable { position: absolute; left: 50%; top: 50%; z-index: 600; display: flex; align-items: center; gap: 9px; padding: 10px 13px; border-radius: 999px; color: var(--forest); background: rgba(247,246,235,.92); box-shadow: 0 8px 30px rgba(23,56,47,.13); font-size: 10px; transform: translate(-50%,-50%); transition: opacity .25s; }
.map-loading span { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); animation: map-loading 1s ease-in-out infinite alternate; }
.world-map.is-ready .map-loading { opacity: 0; pointer-events: none; }
.map-unavailable { display: grid; justify-items: center; border-radius: 14px; text-align: center; }
.map-unavailable strong { font-size: 12px; }
.map-unavailable span { color: var(--muted); }
@keyframes map-pulse { 50% { opacity: .35; transform: scale(1.25); } }
@keyframes map-loading { to { opacity: .35; transform: scale(.72); } }

.map-detail {
  min-height: 520px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--forest);
}
.map-detail-image { position: relative; min-height: 230px; background-position: center; background-size: cover; }
.map-detail-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent, var(--forest)); }
.map-number { position: absolute; left: 20px; top: 18px; z-index: 1; font-family: var(--display); font-size: 42px; }
.map-detail-copy { position: relative; z-index: 1; flex: 1; display: flex; flex-direction: column; padding: 3px 24px 24px; }
.map-detail-copy .eyebrow { color: var(--lime); }
.map-detail-copy h3 { margin: 0; font-family: var(--display); font-size: 34px; font-weight: 500; line-height: 1; }
.map-detail-copy > p { color: rgba(255,255,255,.64); font-size: 13px; line-height: 1.65; }
.map-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: auto 0 18px; }
.map-stat { padding-top: 11px; border-top: 1px solid rgba(255,255,255,.18); }
.map-stat small { display: block; margin-bottom: 4px; color: rgba(255,255,255,.5); font-size: 9px; letter-spacing: .1em; }
.map-stat strong { font-size: 12px; }
.map-detail-copy button { align-self: flex-start; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; gap: 14px; padding: 11px 16px; border: 0; border-radius: 999px; color: var(--forest); background: var(--lime); font-size: 11px; font-weight: 700; cursor: pointer; }
.map-detail-copy button svg { flex: 0 0 16px; width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; }

.collection-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.collection-card {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 22px;
  border: 0;
  border-radius: var(--radius);
  color: var(--white);
  background-position: center;
  background-size: cover;
  cursor: pointer;
  text-align: left;
  isolation: isolate;
}
.collection-card::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(170deg, rgba(10,22,18,.08), rgba(10,22,18,.9)); transition: background .3s; }
.collection-card:hover::before { background: linear-gradient(170deg, rgba(10,22,18,.02), rgba(10,22,18,.76)); }
.collection-card:hover .collection-arrow { transform: rotate(-45deg); color: var(--forest); background: var(--lime); }
.collection-index { font-family: var(--display); font-size: 14px; }
.collection-copy small { display: block; margin-bottom: 7px; color: var(--lime); font-size: 9px; font-weight: 700; letter-spacing: .12em; }
.collection-copy h3 { margin: 0; font-family: var(--display); font-size: clamp(26px, 2.3vw, 38px); font-weight: 500; line-height: 1; }
.collection-copy p { margin: 9px 0 0; color: rgba(255,255,255,.66); font-size: 12px; }
.collection-arrow { position: absolute; right: 17px; top: 17px; width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.14); backdrop-filter: blur(4px); transition: .25s ease; }
.collection-arrow svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 2; }

/* Curated trail aggregation */
.collection-page { padding-bottom: 110px; }
.trail-page-hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 42px;
  margin-top: 28px;
  padding: 42px;
  border-radius: 6px 6px 72px 6px;
  color: var(--white);
  background-color: var(--forest);
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
  isolation: isolate;
}
.trail-page-hero::before { content: ""; position: absolute; inset: 0; z-index: -2; background: linear-gradient(125deg,rgba(8,24,19,.92) 4%,rgba(8,24,19,.6) 48%,rgba(8,24,19,.18)); }
.trail-page-hero::after { content: ""; position: absolute; inset: 12px; z-index: -1; border: 1px solid rgba(255,255,255,.24); border-radius: 3px 3px 61px 3px; pointer-events: none; }
.trail-back { position: absolute; left: 42px; top: 36px; display: inline-flex; align-items: center; gap: 9px; padding: 9px 12px; border: 1px solid rgba(255,255,255,.34); border-radius: 999px; color: var(--white); background: rgba(10,25,20,.28); font-size: 9px; font-weight: 700; cursor: pointer; backdrop-filter: blur(8px); }
.trail-back svg { width: 15px; fill: none; stroke: currentColor; stroke-width: 2; transform: rotate(180deg); }
.trail-back:hover { color: var(--forest); background: var(--lime); border-color: var(--lime); }
.trail-hero-number { position: absolute; right: 40px; top: 30px; color: rgba(255,255,255,.72); font-family: var(--display); font-size: 86px; line-height: 1; }
.trail-hero-number small { font-size: 15px; }
.trail-hero-copy { max-width: 670px; }
.trail-hero-copy > p:first-child { margin: 0 0 14px; color: var(--lime); font-size: 9px; font-weight: 700; letter-spacing: .16em; }
.trail-hero-copy h1 { margin: 0; font-family: var(--display); font-size: clamp(62px,7vw,104px); font-weight: 500; letter-spacing: -.055em; line-height: .83; }
.trail-hero-copy h1 em { color: var(--lime); font-style: italic; font-weight: 500; }
.trail-hero-copy h1 + p { max-width: 540px; margin: 24px 0 0; color: rgba(255,255,255,.7); font-size: 12px; line-height: 1.75; }
.trail-criteria { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 20px; }
.trail-criteria span { padding: 7px 10px; border: 1px solid rgba(255,255,255,.24); border-radius: 999px; font-size: 8px; letter-spacing: .06em; backdrop-filter: blur(5px); }
.trail-ledger { flex: 0 0 180px; display: grid; gap: 15px; margin: 0; padding: 20px; border-top: 1px solid rgba(255,255,255,.5); border-bottom: 1px solid rgba(255,255,255,.28); background: rgba(10,25,20,.18); backdrop-filter: blur(6px); }
.trail-ledger div { display: flex; align-items: end; justify-content: space-between; gap: 15px; }
.trail-ledger dt { color: rgba(255,255,255,.6); font-size: 8px; letter-spacing: .1em; }
.trail-ledger dd { margin: 0; font-family: var(--display); font-size: 35px; line-height: .85; }
.trail-switcher { position: sticky; top: 72px; z-index: 20; display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; margin: 26px 0 0; padding: 1px; border: 1px solid var(--line); border-radius: 14px; background: var(--line); box-shadow: 0 12px 30px rgba(23,56,47,.08); }
.trail-switcher button { min-width: 0; display: flex; align-items: center; gap: 12px; padding: 14px 16px; border: 0; border-radius: 12px; color: var(--muted); background: rgba(247,246,235,.96); cursor: pointer; text-align: left; }
.trail-switcher button small { flex: 0 0 26px; color: var(--orange); font-family: var(--display); font-size: 13px; }
.trail-switcher button span { overflow: hidden; font-size: 10px; font-weight: 700; text-overflow: ellipsis; white-space: nowrap; }
.trail-switcher button.is-active { color: var(--forest); background: var(--lime); }
.trail-switcher button.is-active small { color: var(--forest); }
.collection-results .search-result-section { padding-top: 76px; }

.destination-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.destination-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,253,245,.46); transition: transform .25s ease, box-shadow .25s ease; }
.destination-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.destination-image { position: relative; min-height: 270px; overflow: hidden; background-color: var(--forest); background-position: center; background-size: cover; cursor: pointer; }
.destination-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 52%, rgba(10,25,20,.7)); }
.destination-image .country-tag { position: absolute; left: 15px; top: 15px; z-index: 1; padding: 7px 10px; border-radius: 999px; color: var(--white); background: rgba(10,25,20,.45); font-size: 9px; font-weight: 700; letter-spacing: .1em; backdrop-filter: blur(5px); }
.save-button { position: absolute; right: 14px; top: 14px; z-index: 2; width: 39px; height: 39px; display: grid; place-items: center; padding: 0; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; color: var(--white); background: rgba(10,25,20,.28); cursor: pointer; backdrop-filter: blur(5px); }
.save-button:hover, .save-button.is-saved { color: var(--forest); background: var(--lime); border-color: var(--lime); }
.save-button svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 2; }
.save-button.is-saved svg { fill: currentColor; }
.image-season { position: absolute; left: 15px; bottom: 14px; z-index: 1; color: var(--white); font-size: 10px; font-weight: 700; }
.destination-copy { padding: 19px; }
.card-heading { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; }
.card-heading h3 { margin: 0; font-family: var(--display); font-size: 27px; font-weight: 600; line-height: 1; }
.card-heading h3 small { display: block; margin-top: 6px; color: var(--muted); font-family: var(--body); font-size: 9px; font-weight: 700; letter-spacing: .11em; }
.difficulty { flex: 0 0 auto; padding: 5px 8px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: 9px; }
.destination-copy > p { min-height: 42px; margin: 14px 0 16px; color: var(--muted); font-size: 13px; line-height: 1.55; }
.card-facts { display: flex; flex-wrap: wrap; gap: 7px; }
.fact-pill { display: inline-flex; align-items: center; gap: 5px; padding: 7px 9px; border-radius: 8px; background: var(--paper-2); font-size: 10px; }
.fact-pill svg { width: 12px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 17px; padding-top: 15px; border-top: 1px solid var(--line); }
.species-stack { display: flex; }
.species-stack span { width: 27px; height: 27px; display: grid; place-items: center; margin-left: -6px; border: 2px solid var(--paper-3); border-radius: 50%; color: var(--white); background: var(--forest-2); font-family: var(--display); font-size: 10px; }
.species-stack span:first-child { margin-left: 0; }
.species-stack small { align-self: center; margin-left: 8px; color: var(--muted); font-size: 9px; }
.card-open { display: inline-flex; align-items: center; gap: 5px; padding: 0; border: 0; background: transparent; font-size: 11px; font-weight: 700; cursor: pointer; }
.card-open svg { width: 14px; fill: none; stroke: currentColor; stroke-width: 2; }

.species-strip { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; }
.species-card { position: relative; min-height: 360px; overflow: hidden; display: flex; align-items: flex-end; padding: 17px; border: 0; border-radius: 999px 999px 24px 24px; color: var(--white); background-position: center; background-size: cover; cursor: pointer; text-align: left; isolation: isolate; }
.species-card:nth-child(even) { border-radius: 24px 24px 999px 999px; align-items: flex-start; }
.species-card::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(transparent 35%, rgba(10,25,20,.87)); }
.species-card:nth-child(even)::before { background: linear-gradient(rgba(10,25,20,.82), transparent 75%); }
.species-card:hover .species-card-copy { transform: translateY(-5px); }
.species-card-copy { transition: .25s ease; }
.species-card small { color: var(--lime); font-size: 8px; font-weight: 700; letter-spacing: .13em; }
.species-card h3 { margin: 6px 0 3px; font-family: var(--display); font-size: 24px; font-weight: 500; line-height: 1; }
.species-card p { margin: 0; color: rgba(255,255,255,.65); font-size: 10px; font-style: italic; }

.dispatch { position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; padding: clamp(32px, 5vw, 68px); border-radius: var(--radius-lg); color: var(--white); background: var(--forest); }
.dispatch::before { content: ""; position: absolute; right: 15%; top: -130%; width: 420px; height: 420px; border: 1px solid rgba(216,239,104,.16); border-radius: 50%; box-shadow: 0 0 0 60px rgba(216,239,104,.06), 0 0 0 120px rgba(216,239,104,.035); }
.dispatch-copy { position: relative; z-index: 1; }
.dispatch .eyebrow { color: var(--lime); }
.dispatch h2 { max-width: 800px; margin: 0; font-family: var(--display); font-size: clamp(38px, 4.4vw, 66px); font-weight: 500; line-height: 1; }
.dispatch p { max-width: 620px; color: rgba(255,255,255,.61); line-height: 1.7; }
.dispatch button { position: relative; z-index: 1; width: 100px; height: 100px; border: 0; border-radius: 50%; color: var(--forest); background: var(--lime); font-weight: 700; cursor: pointer; transition: .25s ease; }
.dispatch button:hover { transform: rotate(-9deg) scale(1.05); background: var(--orange); }

.page-hero { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 40px; padding: 82px 0 44px; }
.page-hero h1 { margin: 0; font-family: var(--display); font-size: clamp(62px, 8vw, 118px); font-weight: 600; letter-spacing: -.055em; line-height: .86; }
.page-hero h1 em { color: var(--orange); font-style: italic; font-weight: 500; }
.page-hero-copy p { max-width: 650px; margin: 25px 0 0; color: var(--muted); font-size: 16px; line-height: 1.7; }
.page-counter { justify-self: end; display: flex; align-items: end; gap: 10px; }
.page-counter strong { font-family: var(--display); font-size: 82px; font-weight: 500; line-height: .75; }
.page-counter span { color: var(--muted); font-size: 10px; letter-spacing: .12em; }

.destinations-page { position: relative; z-index: 1; width: min(1560px, 100%); color: var(--white); }
.destination-globe-hero {
  position: relative;
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(350px, .78fr) minmax(560px, 1.22fr);
  align-items: stretch;
  gap: clamp(28px,4vw,64px);
  margin: 42px 0 0;
  color: var(--white);
}
.destination-globe-copy { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; padding: clamp(38px,5vw,76px) 0; }
.destination-globe-copy .eyebrow { color: var(--lime); }
.destination-globe-copy h1 { max-width: 660px; margin: 0; font-family: var(--display); font-size: clamp(50px,5.25vw,82px); font-weight: 500; letter-spacing: -.048em; line-height: .92; }
.destination-globe-copy h1 em { color: var(--lime); font-style: italic; font-weight: 500; }
.destination-globe-intro { max-width: 530px; margin: 26px 0 34px; color: rgba(255,253,245,.62); font-size: 13px; line-height: 1.8; }
.destination-globe-stage { position: relative; z-index: 1; min-width: 0; min-height: 680px; overflow: visible; border: 0; border-radius: 0; background: radial-gradient(circle at 50% 55%,rgba(147,201,186,.13),rgba(147,201,186,.035) 48%,transparent 72%); box-shadow: none; cursor: grab; isolation: isolate; }
.destination-globe-stage[data-dragging="true"] { cursor: grabbing; }
.destination-globe-stage::before { display: none; }
.destination-globe-stage canvas { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; touch-action: none; }
.globe-zoom-controls { position: absolute; right: 28px; top: 54px; z-index: 3; display: grid; overflow: hidden; border: 1px solid rgba(255,255,255,.2); background: rgba(9,27,21,.64); backdrop-filter: blur(8px); }
.globe-zoom-controls button { width: 34px; height: 34px; padding: 0; border: 0; color: rgba(255,253,245,.82); background: transparent; font-size: 17px; line-height: 1; cursor: pointer; transition: color .2s ease, background .2s ease, transform .2s ease; }
.globe-zoom-controls button + button { border-top: 1px solid rgba(255,255,255,.16); }
.globe-zoom-controls button:hover { color: var(--forest); background: var(--lime); }
.globe-zoom-controls button:active { transform: scale(.94); }
.globe-zoom-controls button:focus-visible { outline: 2px solid var(--lime); outline-offset: -3px; }
.globe-loading, .globe-fallback { position: absolute; inset: 0; z-index: 0; display: grid; place-items: center; align-content: center; gap: 14px; color: rgba(255,253,245,.64); text-align: center; pointer-events: none; }
.globe-loading span { width: min(48vw,430px); aspect-ratio: 1; border: 1px solid rgba(216,239,104,.18); border-radius: 50%; background: radial-gradient(circle at 35% 32%,rgba(255,255,255,.11),rgba(111,151,133,.08) 42%,rgba(23,56,47,.035) 70%); animation: globe-breathe 1.8s ease-in-out infinite alternate; }
.globe-loading p { position: absolute; margin: 0; font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }
.destination-globe-stage[data-ready="true"] .globe-loading { opacity: 0; transition: opacity .45s ease; }
.destination-globe-stage[data-fallback="true"] .globe-loading { display: none; }
.globe-fallback { z-index: 3; padding: 34px; color: var(--ink); background: rgba(241,237,223,.96); pointer-events: auto; }
.globe-fallback[hidden] { display: none; }
.globe-fallback strong { font-family: var(--display); font-size: 25px; font-weight: 500; }
.globe-fallback p { max-width: 320px; margin: 0; color: var(--muted); font-size: 11px; line-height: 1.6; }
.globe-fallback-index { width: min(640px,100%); display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); margin-top: 12px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.globe-fallback-index button { display: flex; align-items: center; gap: 8px; min-width: 0; padding: 9px 10px; border: 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--muted); background: rgba(255,253,245,.36); font-size: 9px; text-align: left; cursor: pointer; }
.globe-fallback-index button:hover, .globe-fallback-index button.is-active { color: var(--ink); background: rgba(216,239,104,.24); }
.globe-fallback-index button:active { transform: translateY(1px); }
.globe-fallback-index span { color: var(--orange); font-family: var(--display); }
.globe-hud { position: absolute; left: 28px; right: 28px; top: 24px; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 20px; pointer-events: none; }
.globe-hud span, .globe-hud b { color: rgba(255,253,245,.56); font-size: 8px; font-weight: 700; letter-spacing: .13em; }
.globe-hud span { display: inline-flex; align-items: center; gap: 8px; color: var(--lime); }
.globe-hud output { color: inherit; font: inherit; }
.globe-hud i { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 5px rgba(216,239,104,.11); }
.globe-credit { position: absolute; right: 28px; bottom: 22px; z-index: 2; color: rgba(255,253,245,.32); font-size: 7px; letter-spacing: .13em; text-decoration: none; }
.globe-credit:hover { color: var(--lime); }
@keyframes globe-breathe { to { opacity: .55; transform: scale(.975); } }

.globe-selection { display: grid; grid-template-columns: 106px minmax(0,1fr) auto; gap: 18px; align-items: stretch; max-width: 640px; padding-top: 22px; border-top: 1px solid rgba(255,253,245,.17); outline: 0; cursor: pointer; animation: globe-selection-in .3s cubic-bezier(.16,1,.3,1) both; transition: transform .22s cubic-bezier(.16,1,.3,1); }
.globe-selection:focus-visible { outline: 2px solid var(--lime); outline-offset: 7px; }
.globe-selection:active { transform: scale(.99); }
.globe-selection-image { position: relative; min-height: 154px; margin: 0; overflow: hidden; background: rgba(255,253,245,.08); }
.globe-selection-image img { width: 100%; height: 100%; object-fit: cover; }
.image-provenance { position: absolute; left: 14px; top: 14px; z-index: 2; padding: 6px 9px; border: 1px solid rgba(255,255,255,.24); border-radius: 999px; color: rgba(255,255,255,.84); background: rgba(10,25,20,.58); font-size: 8px; font-weight: 700; letter-spacing: .12em; backdrop-filter: blur(8px); }
.globe-selection-index { position: absolute; left: 0; bottom: 0; min-width: 40px; padding: 8px 9px 6px; color: var(--forest); background: var(--lime); font-family: var(--display); font-size: 19px; line-height: 1; }
.globe-selection-copy { align-self: center; min-width: 0; }
.globe-selection-copy > span { display: block; color: rgba(255,253,245,.52); font-size: 8px; font-weight: 700; letter-spacing: .13em; }
.globe-selection-copy h2 { margin: 7px 0 0; font-family: var(--display); font-size: 31px; font-weight: 500; line-height: 1; }
.globe-selection-copy h2 small { display: block; margin-top: 7px; color: rgba(255,253,245,.45); font-family: var(--body); font-size: 8px; letter-spacing: .15em; }
.globe-selection-copy > p { margin: 12px 0 16px; color: rgba(255,253,245,.64); font-size: 11px; line-height: 1.6; }
.globe-selection dl { display: grid; grid-template-columns: repeat(3,auto); gap: 19px; margin: 0; }
.globe-selection dl div { display: grid; gap: 3px; }
.globe-selection dt { color: rgba(255,253,245,.4); font-size: 7px; letter-spacing: .09em; }
.globe-selection dd { margin: 0; font-size: 9px; font-weight: 700; }
.globe-selection-action { align-self: center; width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(216,239,104,.42); border-radius: 50%; color: var(--forest); background: var(--lime); transition: transform .22s ease, color .22s ease, background .22s ease; }
.globe-selection:hover .globe-selection-action, .globe-selection:focus-visible .globe-selection-action { color: var(--lime); background: var(--forest-2); transform: rotate(-12deg); }
.globe-selection-action svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 2; }
@keyframes globe-selection-in { from { opacity: 0; transform: translateY(7px); } }

.globe-location-rail { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(158px,1fr); gap: 0; margin: 22px 0 30px; overflow-x: auto; border: 1px solid var(--line); background: rgba(255,253,245,.42); scrollbar-width: thin; scroll-snap-type: x proximity; }
.globe-location-button { position: relative; min-height: 78px; display: grid; grid-template-columns: 27px 1fr; grid-template-rows: auto auto; align-content: center; gap: 1px 9px; padding: 14px 17px; border: 0; border-right: 1px solid var(--line); color: var(--muted); background: transparent; text-align: left; cursor: pointer; scroll-snap-align: start; }
.globe-location-button::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: var(--lime); transform: scaleX(0); transform-origin: left; transition: transform .22s ease; }
.globe-location-button span { grid-row: 1 / 3; align-self: center; color: rgba(22,39,32,.35); font-family: var(--display); font-size: 16px; }
.globe-location-button strong { align-self: end; color: var(--ink); font-size: 10px; }
.globe-location-button small { align-self: start; font-size: 8px; }
.globe-location-button:hover, .globe-location-button.is-active { background: rgba(216,239,104,.17); }
.globe-location-button.is-active::after { transform: scaleX(1); }
.globe-location-button.is-active span { color: var(--orange); }

.filter-bar { position: sticky; top: 82px; z-index: 20; display: flex; align-items: center; justify-content: space-between; gap: 16px; margin: 0 -1vw 28px; padding: 14px 1vw; background: rgba(241,237,223,.94); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); backdrop-filter: blur(12px); }
.filter-group { display: flex; flex-wrap: wrap; gap: 7px; }
.filter-chip { padding: 9px 13px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); background: transparent; font-size: 11px; font-weight: 600; cursor: pointer; }
.filter-chip:hover, .filter-chip.is-active { color: var(--white); border-color: var(--forest); background: var(--forest); }
.filter-tools { display: flex; gap: 8px; }
.compact-search { display: flex; align-items: center; gap: 6px; min-width: 220px; padding: 8px 11px; border: 1px solid var(--line); border-radius: 12px; background: rgba(255,255,255,.35); }
.compact-search svg { width: 15px; fill: none; stroke: currentColor; stroke-width: 2; }
.compact-search input { width: 100%; border: 0; outline: 0; background: transparent; font-size: 12px; }
.result-note { margin: 18px 0; color: var(--muted); font-size: 12px; }
.empty-state { grid-column: 1 / -1; padding: 70px 30px; border: 1px dashed var(--line); border-radius: var(--radius); text-align: center; }
.empty-state span { width: 58px; height: 58px; display: grid; place-items: center; margin: 0 auto 16px; border-radius: 50%; background: var(--paper-2); }
.empty-state h3 { margin: 0; font-family: var(--display); font-size: 28px; }
.empty-state p { color: var(--muted); }

.guide-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 15px; }
.guide-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,253,245,.44); transition: transform .25s; }
.guide-card:hover { transform: translateY(-5px); }
.guide-image { position: relative; min-height: 260px; background-color: var(--forest); background-position: center; background-size: cover; cursor: pointer; }
.guide-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 60%, rgba(10,25,20,.55)); }
.status-badge { position: absolute; left: 13px; top: 13px; z-index: 1; padding: 6px 9px; border-radius: 999px; color: var(--forest); background: var(--lime); font-size: 8px; font-weight: 700; letter-spacing: .08em; }
.status-badge.is-risk { color: var(--white); background: var(--orange); }
.guide-copy { padding: 17px; }
.guide-copy .taxonomy { color: var(--orange); font-size: 9px; font-weight: 700; letter-spacing: .12em; }
.guide-copy h3 { margin: 7px 0 2px; font-family: var(--display); font-size: 26px; font-weight: 600; line-height: 1; }
.guide-copy .latin { color: var(--muted); font-family: var(--display); font-size: 11px; font-style: italic; }
.guide-copy p { min-height: 54px; margin: 13px 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.guide-meta { display: flex; justify-content: space-between; align-items: center; padding-top: 13px; border-top: 1px solid var(--line); }
.guide-meta span { font-size: 9px; }
.guide-meta button { padding: 0; border: 0; color: var(--muted); background: transparent; cursor: pointer; }
.guide-meta button.is-saved { color: var(--orange); }
.guide-meta svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 2; }
.guide-meta button.is-saved svg { fill: currentColor; }

.planner-hero { padding-bottom: 30px; }
.planner-layout { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr); gap: 18px; }
.planner-panel { padding: 26px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(255,253,245,.42); }
.panel-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 23px; }
.panel-head h2 { margin: 0; font-family: var(--display); font-size: 27px; }
.panel-head span { color: var(--muted); font-size: 10px; }
.trip-list { display: grid; gap: 10px; }
.trip-item { display: grid; grid-template-columns: 94px 1fr auto; align-items: center; gap: 14px; padding: 10px; border: 1px solid var(--line); border-radius: 15px; background: var(--paper-3); }
.trip-thumb { height: 78px; border-radius: 11px; background-position: center; background-size: cover; cursor: pointer; }
.trip-copy small { color: var(--orange); font-size: 8px; font-weight: 700; letter-spacing: .1em; }
.trip-copy h3 { margin: 5px 0 6px; font-family: var(--display); font-size: 19px; }
.trip-copy p { margin: 0; color: var(--muted); font-size: 10px; }
.remove-button { width: 34px; height: 34px; display: grid; place-items: center; padding: 0; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; }
.remove-button:hover { color: var(--white); background: var(--orange); border-color: var(--orange); }
.remove-button svg { width: 14px; fill: none; stroke: currentColor; stroke-width: 2; }
.route-line { position: relative; display: grid; gap: 25px; margin: 8px 0 0; padding: 8px 0 8px 24px; }
.route-line::before { content: ""; position: absolute; left: 6px; top: 15px; bottom: 15px; border-left: 1px dashed var(--moss); }
.route-step { position: relative; }
.route-step::before { content: ""; position: absolute; left: -22px; top: 5px; width: 8px; height: 8px; border: 2px solid var(--paper-3); border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 1px var(--orange); }
.route-step small { color: var(--muted); font-size: 9px; letter-spacing: .1em; }
.route-step h3 { margin: 4px 0 3px; font-size: 14px; }
.route-step p { margin: 0; color: var(--muted); font-size: 11px; }
.checklist { display: grid; gap: 8px; margin-top: 26px; }
.check-item { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--line); cursor: pointer; }
.check-item input { position: absolute; opacity: 0; pointer-events: none; }
.fake-check { width: 20px; height: 20px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 6px; }
.check-item input:checked + .fake-check { color: var(--forest); background: var(--lime); border-color: var(--lime); }
.fake-check svg { width: 13px; fill: none; stroke: currentColor; stroke-width: 2.5; }
.check-item span:last-child { font-size: 12px; }
.check-item input:checked ~ span:last-child { color: var(--muted); text-decoration: line-through; }
.saved-species { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 20px; }
.saved-species button { display: inline-flex; align-items: center; gap: 7px; padding: 7px 10px 7px 7px; border: 1px solid var(--line); border-radius: 999px; background: transparent; cursor: pointer; }
.saved-species i { width: 26px; height: 26px; display: block; border-radius: 50%; background-position: center; background-size: cover; }
.saved-species span { font-size: 10px; }

.modal-backdrop { position: fixed; inset: 0; z-index: 80; display: grid; place-items: center; padding: 20px; background: rgba(11,24,19,.68); backdrop-filter: blur(8px); animation: fade-in .2s ease both; }
@keyframes fade-in { from { opacity: 0; } }
.modal { position: relative; width: min(1060px, 100%); max-height: min(850px, 92vh); overflow: auto; border-radius: var(--radius-lg); background: var(--paper-3); box-shadow: 0 30px 100px rgba(0,0,0,.32); animation: modal-in .35s cubic-bezier(.2,.8,.2,1) both; }
@keyframes modal-in { from { opacity: 0; transform: translateY(20px) scale(.98); } }
.modal-close { position: sticky; float: right; right: 18px; top: 18px; z-index: 5; width: 42px; height: 42px; display: grid; place-items: center; margin: 18px 18px -60px 0; padding: 0; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; color: var(--white); background: rgba(10,25,20,.35); backdrop-filter: blur(6px); cursor: pointer; }
.modal-close svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 2; }
.modal-hero { position: relative; min-height: 410px; display: flex; align-items: flex-end; overflow: hidden; padding: 40px; color: var(--white); background-position: center; background-size: cover; isolation: isolate; }
.modal-hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(transparent 20%, rgba(10,25,20,.87)); }
.modal-hero-copy { position: relative; z-index: 1; width: 100%; }
.modal-hero > .image-provenance { left: 40px; top: 32px; }
.modal-hero .eyebrow { color: var(--lime); }
.modal-hero h2 { margin: 0; font-family: var(--display); font-size: clamp(48px, 7vw, 88px); font-weight: 500; line-height: .9; }
.modal-hero h2 small { display: block; margin-top: 12px; color: rgba(255,255,255,.65); font-family: var(--body); font-size: 11px; font-weight: 700; letter-spacing: .12em; }
.modal-hero-footer { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-top: 24px; }
.modal-hero-footer p { max-width: 600px; margin: 0; color: rgba(255,255,255,.7); line-height: 1.65; }
.modal-save { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 8px; padding: 12px 15px; border: 0; border-radius: 12px; color: var(--forest); background: var(--lime); font-weight: 700; cursor: pointer; }
.modal-save svg { width: 16px; fill: none; stroke: currentColor; stroke-width: 2; }
.modal-body { padding: 34px 40px 45px; }
.modal-fact-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; overflow: hidden; margin-bottom: 35px; border: 1px solid var(--line); border-radius: 16px; background: var(--line); }
.modal-fact { padding: 17px; background: var(--paper-3); }
.modal-fact small { display: block; margin-bottom: 5px; color: var(--muted); font-size: 8px; letter-spacing: .12em; }
.modal-fact strong { font-size: 13px; }
.modal-columns { display: grid; grid-template-columns: 1.15fr .85fr; gap: 45px; }
.modal-section + .modal-section { margin-top: 28px; }
.modal-section h3 { margin: 0 0 12px; font-family: var(--display); font-size: 24px; }
.modal-section p { color: var(--muted); font-size: 13px; line-height: 1.75; }
.destination-overview { display: grid; grid-template-columns: .7fr 1.3fr; gap: 45px; margin: 6px 0 42px; padding-bottom: 38px; border-bottom: 1px solid var(--line); }
.destination-overview h3, .destination-section-head h3 { margin: 7px 0 0; font-family: var(--display); font-size: 34px; font-weight: 500; line-height: 1.08; }
.destination-overview > div:last-child { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.destination-overview p, .destination-section-head > p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.8; }
.destination-profile-section { margin-bottom: 42px; }
.destination-section-head { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 18px; }
.destination-section-head > p { max-width: 330px; text-align: right; }
.season-story-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: var(--line); }
.season-story-grid article { padding: 20px; background: var(--paper-3); }
.season-story-grid small { display: block; margin-bottom: 15px; color: var(--orange); font-size: 9px; font-weight: 700; letter-spacing: .1em; }
.season-story-grid strong { display: block; font-family: var(--display); font-size: 19px; }
.season-story-grid p { margin: 8px 0 0; color: var(--muted); font-size: 11px; line-height: 1.65; }
.observation-rhythm, .route-steps { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.observation-rhythm li { display: grid; grid-template-columns: 58px 1fr; gap: 14px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.observation-rhythm li:first-child { padding-top: 0; }
.observation-rhythm span { color: var(--orange); font-size: 9px; font-weight: 700; letter-spacing: .08em; }
.observation-rhythm strong { display: block; margin-bottom: 5px; font-family: var(--display); font-size: 17px; }
.observation-rhythm p { margin: 0; font-size: 11px; line-height: 1.6; }
.route-steps { counter-reset: route; }
.route-steps li { display: grid; grid-template-columns: 31px 1fr; gap: 11px; padding: 11px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 11px; line-height: 1.55; }
.route-steps b { color: var(--orange); font-family: var(--display); font-size: 14px; font-weight: 500; }
.destination-practical-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; overflow: hidden; margin-top: 42px; border: 1px solid var(--line); border-radius: 16px; background: var(--line); }
.destination-practical-grid .modal-section { margin: 0; padding: 25px; background: var(--paper-3); }
.destination-practical-grid h3 { margin-top: 7px; }
.preparation-list { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.preparation-list li { position: relative; padding-left: 18px; color: var(--muted); font-size: 11px; line-height: 1.6; }
.preparation-list li::before { content: "✓"; position: absolute; left: 0; color: var(--orange); font-weight: 700; }
.conservation-panel { background: var(--forest) !important; color: var(--white); }
.conservation-panel .section-kicker { color: var(--lime); }
.conservation-panel p { color: rgba(255,255,255,.66); }
.destination-sources { display: flex; justify-content: space-between; gap: 20px; margin-top: 22px; color: var(--muted); font-size: 9px; line-height: 1.5; }
.destination-sources div { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px 15px; }
.destination-sources a { color: var(--forest); text-decoration: underline; text-underline-offset: 3px; }
.highlight-list { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.highlight-list li { display: flex; gap: 9px; color: var(--muted); font-size: 12px; line-height: 1.5; }
.highlight-list li::before { content: "✦"; color: var(--orange); }
.field-note { padding: 18px; border-left: 3px solid var(--orange); border-radius: 0 12px 12px 0; background: var(--paper-2); }
.field-note small { color: var(--orange); font-size: 8px; font-weight: 700; letter-spacing: .12em; }
.field-note p { margin-bottom: 0; font-family: var(--display); font-size: 15px; font-style: italic; }
.modal-species-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.modal-species-tags button { padding: 8px 10px; border: 1px solid var(--line); border-radius: 999px; background: transparent; font-size: 10px; cursor: pointer; }
.modal-species-tags button:hover { color: var(--white); background: var(--forest); }

.species-modal .modal-hero { min-height: 450px; }
.species-profile { display: grid; grid-template-columns: .65fr 1.35fr; gap: 35px; }
.classification { display: grid; gap: 0; margin: 0; }
.classification div { display: flex; justify-content: space-between; gap: 15px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.classification dt { color: var(--muted); font-size: 10px; }
.classification dd { margin: 0; font-size: 11px; font-weight: 700; text-align: right; }
.detail-meter { margin-top: 18px; }
.detail-meter-head { display: flex; justify-content: space-between; margin-bottom: 6px; font-size: 9px; }
.meter-track { height: 7px; overflow: hidden; border-radius: 99px; background: var(--paper-2); }
.meter-track span { display: block; height: 100%; border-radius: inherit; background: var(--orange); }

/* Living atlas */
.atlas-hero { grid-template-columns: minmax(0,1fr) 310px; align-items: center; }
.atlas-volume-mark { justify-self: end; display: flex; align-items: end; gap: 12px; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.atlas-volume-mark strong { font-family: var(--display); font-size: 72px; font-weight: 500; line-height: .72; }
.atlas-volume-mark span { color: var(--muted); font-size: 9px; line-height: 1.5; letter-spacing: .1em; }
.daily-discovery { position: relative; min-height: 170px; overflow: hidden; display: grid; grid-template-columns: 112px 1fr auto; grid-template-rows: 1fr 1fr; align-items: center; gap: 0 16px; padding: 15px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,253,245,.54); cursor: pointer; text-align: left; }
.daily-discovery > span { grid-row: 1 / 3; width: 112px; height: 140px; border-radius: 13px; background-position: center; background-size: cover; }
.daily-discovery small { align-self: end; color: var(--orange); font-size: 9px; font-weight: 700; letter-spacing: .13em; }
.daily-discovery strong { align-self: start; font-family: var(--display); font-size: 25px; }
.daily-discovery i { grid-column: 3; grid-row: 1 / 3; width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: var(--forest); }
.daily-discovery i svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 2; }
.atlas-overview { display: grid; grid-template-columns: 1fr 150px 150px auto; align-items: stretch; overflow: hidden; margin-bottom: 54px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--forest); color: var(--white); }
.observer-rank { min-width: 0; padding: 24px 28px; }
.observer-rank > small { color: var(--lime); font-size: 8px; font-weight: 700; letter-spacing: .15em; }
.observer-rank h2 { margin: 6px 0 3px; font-family: var(--display); font-size: 28px; font-weight: 500; }
.observer-rank p { margin: 0 0 14px; color: rgba(255,255,255,.58); font-size: 11px; }
.rank-track { height: 5px; overflow: hidden; border-radius: 99px; background: rgba(255,255,255,.12); }
.rank-track span { display: block; height: 100%; background: var(--lime); }
.atlas-stat { display: grid; place-content: center; padding: 20px; border-left: 1px solid rgba(255,255,255,.12); text-align: center; }
.atlas-stat strong { font-family: var(--display); font-size: 42px; font-weight: 500; line-height: 1; }
.atlas-stat strong small { color: rgba(255,255,255,.42); font-family: var(--body); font-size: 11px; }
.atlas-stat span { margin-top: 7px; color: rgba(255,255,255,.58); font-size: 9px; }
.atlas-mode { align-self: center; display: flex; margin: 20px; padding: 4px; border-radius: 12px; background: rgba(255,255,255,.08); }
.atlas-mode button { padding: 9px 11px; border: 0; border-radius: 9px; color: rgba(255,255,255,.54); background: transparent; font-size: 10px; cursor: pointer; }
.atlas-mode button.is-active { color: var(--forest); background: var(--lime); font-weight: 700; }
.discovery-state { position: absolute; right: 12px; bottom: 12px; z-index: 2; padding: 6px 9px; border-radius: 999px; color: var(--forest); background: rgba(216,239,104,.92); font-size: 8px; font-weight: 700; backdrop-filter: blur(5px); }
.guide-card.is-undiscovered .guide-image { filter: saturate(.58); }
.guide-card.is-undiscovered .discovery-state { color: var(--white); background: rgba(23,56,47,.82); }

/* Three-dimensional wilderness field book */
.wild-journal-experience { margin: 0 0 54px; padding-top: 52px; }
.journal-scene-head { display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: end; gap: 32px; margin-bottom: 20px; }
.journal-scene-head h1 { max-width: 880px; margin: 5px 0 12px; font-family: var(--display); font-size: clamp(42px,5vw,72px); font-weight: 500; letter-spacing: -.04em; line-height: .95; }
.journal-scene-head h1 em { color: var(--orange); font-style: italic; font-weight: 500; }
.journal-scene-head > div > p:last-child { max-width: 580px; margin: 0; color: var(--muted); font-size: 11px; line-height: 1.7; }
.journal-vitals { display: flex; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.journal-vitals span { min-width: 92px; display: grid; justify-items: center; padding: 13px 18px; border-left: 1px solid var(--line); }
.journal-vitals span:first-child { border-left: 0; }
.journal-vitals strong { font-family: var(--display); font-size: 30px; font-weight: 500; line-height: 1; }
.journal-vitals small { margin-top: 5px; color: var(--muted); font-size: 8px; }
.wild-journal-stage { position: relative; height: clamp(500px,60vw,680px); min-height: 500px; overflow: visible; border: 0; border-radius: 0; background: transparent; box-shadow: none; isolation: isolate; touch-action: pan-y; }
.wild-journal-stage::after { display: none; }
#wild-journal-canvas { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; display: block; opacity: 0; touch-action: pan-y; transition: opacity .45s ease; }
.wild-journal-stage.is-ready #wild-journal-canvas { opacity: 1; }
.wild-journal-stage.is-hovering-card #wild-journal-canvas { cursor: pointer; }
.journal-hotspots { position: absolute; inset: 0; z-index: 3; pointer-events: none; }
.journal-hotspot { position: absolute; margin: 0; padding: 0; border: 0; background: transparent; cursor: pointer; pointer-events: auto; }
.journal-hotspot span { position: absolute; left: 50%; bottom: -25px; padding: 5px 8px; border-radius: 99px; color: var(--white); background: rgba(23,56,47,.82); font-size: 8px; white-space: nowrap; opacity: 0; transform: translate(-50%,-4px); transition: opacity .18s ease, transform .18s ease; }
.journal-hotspot:hover span,.journal-hotspot:focus-visible span { opacity: 1; transform: translate(-50%,0); }
.journal-hotspot:focus-visible { outline: 2px solid var(--lime); outline-offset: 3px; }
.journal-hotspot-1 { left: 18%; top: 42%; width: 18%; height: 40%; transform: rotate(-6deg); }
.journal-hotspot-2 { left: 36%; top: 29%; width: 17%; height: 39%; transform: rotate(4deg); }
.journal-hotspot-3 { left: 50%; top: 45%; width: 17%; height: 39%; transform: rotate(3deg); }
.journal-hotspot-4 { left: 66%; top: 28%; width: 20%; height: 58%; transform: rotate(-5deg); }
.journal-scene-loading { position: absolute; inset: 0; z-index: 4; display: grid; place-content: center; justify-items: center; color: var(--muted); background: transparent; transition: opacity .35s ease, visibility .35s ease; }
.journal-scene-loading span { width: 76px; height: 50px; border: 1px solid rgba(48,77,51,.3); border-radius: 2px 10px 10px 2px; box-shadow: -4px 4px 0 rgba(48,77,51,.08); animation: journal-open 1.2s ease-in-out infinite alternate; }
.journal-scene-loading p { margin: 18px 0 0; font-size: 9px; letter-spacing: .16em; }
.wild-journal-stage.is-ready .journal-scene-loading { opacity: 0; visibility: hidden; }
.journal-scene-fallback { position: absolute; inset: 0; z-index: 5; place-content: center; padding: 30px; color: var(--ink); background: rgba(241,237,223,.94); text-align: center; }
.journal-scene-fallback:not([hidden]) { display: grid; }
.journal-scene-fallback strong { font-family: var(--display); font-size: 28px; }
.journal-scene-fallback p { color: var(--muted); font-size: 11px; }
.journal-scene-hud { position: absolute; left: 20px; right: 20px; bottom: 18px; z-index: 3; display: flex; justify-content: space-between; color: var(--muted); font-size: 8px; letter-spacing: .11em; pointer-events: none; }
.journal-scene-hud b { color: var(--forest-2); font-weight: 600; }
.journal-ledger { display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: center; gap: 26px; padding: 20px 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); border-left: 1px solid var(--line); background: rgba(255,253,245,.42); }
.journal-ledger > div:first-child { display: grid; grid-template-columns: auto auto 1fr; align-items: center; gap: 5px 20px; }
.journal-ledger small { color: var(--orange); font-size: 8px; font-weight: 700; letter-spacing: .12em; }
.journal-ledger strong { font-family: var(--display); font-size: 18px; font-weight: 500; }
.journal-ledger span { color: var(--muted); font-size: 9px; }
.journal-ledger i { grid-column: 1 / -1; height: 4px; overflow: hidden; border-radius: 99px; background: var(--paper-2); }
.journal-ledger i b { display: block; height: 100%; border-radius: inherit; background: var(--orange); }
.journal-ledger .atlas-mode { margin: 0; background: var(--forest); }
.journal-page-readout { min-width: 136px; display: grid; justify-items: end; gap: 5px; padding: 14px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.journal-page-readout span { color: var(--muted); font-size: 8px; letter-spacing: .13em; }
.journal-page-readout strong { font-family: var(--display); font-size: 27px; font-weight: 500; }
.wild-journal-stage:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }
.wild-journal-stage[data-turning] .journal-hotspots { opacity: 0; }
.journal-hotspots { transition: opacity .18s ease; }
.wild-journal-stage[data-page="5"] .journal-hotspot-1 { left: 24%; top: 34%; width: 20%; height: 43%; }
.wild-journal-stage[data-page="5"] .journal-hotspot-2 { left: 57%; top: 32%; width: 21%; height: 44%; }
.journal-reader-controls { display: grid; grid-template-columns: auto minmax(0,1fr) auto; align-items: stretch; min-height: 118px; margin-top: 14px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: transparent; }
.journal-turn-button { min-width: 118px; display: flex; align-items: center; justify-content: center; gap: 9px; padding: 18px; border: 0; color: var(--ink); background: transparent; cursor: pointer; transition: color .2s ease, background .2s ease, transform .2s ease; }
.journal-turn-button:first-child { border-right: 1px solid var(--line); }
.journal-turn-button:last-child { border-left: 1px solid var(--line); }
.journal-turn-button:hover:not(:disabled) { color: var(--forest); background: rgba(216,239,104,.28); }
.journal-turn-button:active:not(:disabled) { transform: scale(.98); }
.journal-turn-button:disabled { opacity: .28; cursor: default; }
.journal-turn-button svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.journal-turn-button:first-child svg { transform: rotate(180deg); }
.journal-turn-button span { font-size: 10px; font-weight: 700; }
.journal-page-center { min-width: 0; display: grid; grid-template-columns: minmax(0,1fr); align-content: center; gap: 16px; padding: 16px 22px; }
.journal-page-species { min-width: 0; width: 100%; display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); }
.journal-page-species button { min-width: 0; display: grid; gap: 3px; padding: 4px 13px; border: 0; border-left: 1px solid var(--line); background: transparent; text-align: left; cursor: pointer; }
.journal-page-species button:first-child { border-left: 0; }
.journal-page-species strong { overflow: hidden; font-family: var(--display); font-size: 15px; font-weight: 500; text-overflow: ellipsis; white-space: nowrap; }
.journal-page-species small { overflow: hidden; color: var(--muted); font-family: var(--display); font-size: 7px; font-style: italic; text-overflow: ellipsis; white-space: nowrap; }
.journal-page-species button:hover strong { color: var(--orange); }
.journal-page-dots { display: flex; justify-content: center; gap: 7px; }
.journal-page-dots button { width: 23px; height: 3px; padding: 0; border: 0; border-radius: 99px; background: var(--paper-2); cursor: pointer; transition: transform .2s ease, background .2s ease; }
.journal-page-dots button.is-active { background: var(--orange); transform: scaleX(1.25); }
@keyframes journal-open { from { transform: perspective(200px) rotateY(-8deg); } to { transform: perspective(200px) rotateY(8deg); } }

/* Journey planner */
.planner-hero { grid-template-columns: minmax(0,1fr) 340px; align-items: center; }
.planner-hero .page-hero-copy h1 { max-width: 900px; font-size: clamp(52px,6.8vw,92px); }
.planner-hero .page-hero-copy > p:last-child { max-width: 760px; }
.create-trip-button { min-height: 124px; display: grid; grid-template-columns: 48px 1fr; grid-template-rows: auto auto; align-content: center; gap: 3px 14px; padding: 20px 22px; border: 0; border-radius: 4px 4px 26px 4px; color: var(--white); background: var(--forest); cursor: pointer; text-align: left; transition: transform .25s cubic-bezier(.16,1,.3,1), background .25s ease; }
.create-trip-button:hover { background: var(--forest-2); transform: translateY(-2px); }
.create-trip-button:active { transform: translateY(1px) scale(.99); }
.create-trip-button > span { grid-row: 1 / 3; width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; color: var(--forest); background: var(--lime); }
.create-trip-button svg { width: 25px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.create-trip-button strong { align-self: end; font-family: var(--display); font-size: 21px; }
.create-trip-button small { align-self: start; color: rgba(255,255,255,.58); }
.trip-filter { display: flex; gap: 7px; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--line); overflow-x: auto; }
.trip-filter button { flex: 0 0 auto; padding: 8px 12px; border: 1px solid transparent; border-radius: 999px; color: var(--muted); background: transparent; font-size: 10px; cursor: pointer; }
.trip-filter button.is-active { color: var(--white); background: var(--forest); }
.journey-layout { display: grid; grid-template-columns: 280px minmax(0,1fr); align-items: start; gap: 16px; }
.trip-rail { position: sticky; top: 100px; display: grid; gap: 9px; padding: 16px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,253,245,.4); }
.trip-rail-head { display: flex; align-items: center; justify-content: space-between; padding: 5px 3px 12px; }
.trip-rail-head h2 { margin: 0; font-family: var(--display); font-size: 22px; }
.trip-rail-head span { color: var(--muted); font-size: 8px; }
.trip-card { width: 100%; display: grid; grid-template-columns: 72px 1fr; gap: 11px; padding: 8px; border: 1px solid transparent; border-radius: 13px; background: transparent; cursor: pointer; text-align: left; }
.trip-card:hover { background: rgba(255,255,255,.4); }
.trip-card.is-active { border-color: var(--line); background: var(--paper-3); box-shadow: 4px 5px 0 rgba(23,56,47,.07); }
.trip-card-image { position: relative; height: 70px; border-radius: 9px; background-position: center; background-size: cover; }
.trip-card-image i { position: absolute; right: 5px; bottom: 5px; width: 25px; height: 25px; display: grid; place-items: center; border-radius: 50%; color: var(--forest); background: var(--lime); font-size: 8px; font-style: normal; font-weight: 700; }
.trip-card-copy { min-width: 0; display: flex; flex-direction: column; justify-content: center; }
.trip-card-copy small { color: var(--orange); font-size: 7px; font-weight: 700; }
.trip-card-copy strong { overflow: hidden; margin: 5px 0; font-family: var(--display); font-size: 15px; white-space: nowrap; text-overflow: ellipsis; }
.trip-card-copy span { color: var(--muted); font-size: 8px; }
.trip-empty { padding: 24px 10px; color: var(--muted); font-size: 11px; text-align: center; }
.trip-empty button { padding: 8px 11px; border: 0; border-radius: 9px; color: var(--white); background: var(--forest); }
.trip-dashboard { min-width: 0; display: grid; gap: 14px; }
.trip-dashboard > * { scroll-margin-top: 102px; }
.trip-dashboard-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; padding: 27px 30px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,253,245,.5); }
.trip-dashboard-head .eyebrow { margin-bottom: 9px; }
.trip-dashboard-head h2 { margin: 0; font-family: var(--display); font-size: clamp(28px,3vw,44px); font-weight: 500; line-height: 1; }
.trip-dashboard-head p:last-child { margin: 10px 0 0; color: var(--muted); font-size: 11px; }
.trip-actions { display: flex; gap: 7px; }
.trip-actions button, .complete-trip button, .yearbook-panel button, .share-modal-actions button { padding: 10px 13px; border: 1px solid var(--line); border-radius: 10px; background: transparent; font-size: 10px; font-weight: 700; cursor: pointer; }
button.primary-action, .trip-actions .primary-action { color: var(--forest); border-color: var(--lime); background: var(--lime); }
.departure-status { display: grid; grid-template-columns: minmax(250px,.8fr) minmax(0,1.2fr); gap: 38px; padding: 32px 4px; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.departure-status-lead { position: relative; padding-left: 19px; }
.departure-status-lead::before { content: ""; position: absolute; left: 0; top: 3px; width: 4px; height: 48px; background: var(--orange); }
.departure-status-lead h3 { max-width: 430px; margin: 8px 0 12px; font-family: var(--display); font-size: clamp(31px,3.2vw,46px); font-weight: 500; line-height: 1; }
.departure-status-lead > p:not(.eyebrow) { max-width: 480px; margin: 0; color: var(--muted); font-size: 10px; line-height: 1.6; }
.departure-status-lead > p strong { color: var(--ink); }
.departure-status-lead button { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; padding: 9px 0; border: 0; border-bottom: 1px solid currentColor; color: var(--forest); background: transparent; font-size: 10px; font-weight: 700; cursor: pointer; }
.departure-status-lead button svg { width: 16px; fill: none; stroke: currentColor; stroke-width: 2; transition: transform .2s ease; }
.departure-status-lead button:hover svg { transform: translateX(4px); }
.departure-checks { display: grid; align-content: center; grid-template-columns: 1fr 1fr; gap: 0 20px; }
.departure-check { min-width: 0; display: grid; grid-template-columns: 26px minmax(0,1fr) 22px; align-items: center; gap: 9px; padding: 12px 0; border-top: 1px solid var(--line); }
.departure-check:nth-child(-n+2) { border-top-color: transparent; }
.departure-check > span { color: var(--orange); font-family: var(--display); font-size: 16px; }
.departure-check > div { min-width: 0; display: grid; gap: 3px; }
.departure-check strong { font-size: 10px; }
.departure-check small { overflow: hidden; color: var(--muted); font-size: 8px; white-space: nowrap; text-overflow: ellipsis; }
.departure-check > i { width: 21px; height: 21px; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: var(--orange); }
.departure-check.is-ready > span { color: var(--moss); }
.departure-check.is-ready > i { color: var(--forest); background: var(--lime); }
.departure-check svg { width: 12px; fill: none; stroke: currentColor; stroke-width: 2.5; }
.is-attention { animation: planner-attention .7s cubic-bezier(.16,1,.3,1); }
@keyframes planner-attention { 0% { transform: translateY(0); } 35% { transform: translateY(-5px); } 100% { transform: translateY(0); } }
.trip-command-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.health-panel { display: grid; grid-template-columns: 150px 1fr; gap: 18px; padding: 23px; border-radius: var(--radius); color: var(--white); background: var(--forest); }
.health-score { display: grid; align-content: center; justify-items: center; min-height: 160px; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; text-align: center; }
.health-score strong { color: var(--lime); font-family: var(--display); font-size: 60px; font-weight: 500; line-height: .9; }
.health-score span { margin-top: 5px; color: rgba(255,255,255,.6); font-size: 8px; }
.health-score small { margin-top: 3px; font-weight: 700; }
.assessment-list { display: grid; align-content: center; gap: 10px; }
.assessment-row { display: grid; grid-template-columns: 25px 1fr; gap: 9px; }
.assessment-row > i { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.09); }
.assessment-row.is-ok > i { color: var(--forest); background: var(--lime); }
.assessment-row.needs-work > i { color: var(--white); background: var(--orange); }
.assessment-row svg { width: 13px; fill: none; stroke: currentColor; stroke-width: 2.3; }
.assessment-row span { display: grid; }
.assessment-row strong { font-size: 10px; }
.assessment-row small { margin-top: 2px; color: rgba(255,255,255,.48); font-size: 8px; line-height: 1.35; }
.trip-brief { padding: 25px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,253,245,.5); }
.trip-brief > small, .work-panel-head small { color: var(--orange); font-size: 8px; font-weight: 700; letter-spacing: .13em; }
.trip-brief h3 { margin: 7px 0 10px; font-family: var(--display); font-size: 29px; }
.trip-brief > p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.65; }
.event-note { display: grid; gap: 3px; margin-top: 15px; padding: 11px 13px; border-left: 3px solid var(--orange); background: var(--paper-2); }
.event-note strong { font-size: 10px; }
.event-note span { color: var(--muted); font-size: 9px; line-height: 1.45; }
.target-species { display: flex; gap: 7px; margin-top: 16px; }
.target-species button { width: 62px; padding: 0; border: 0; background: transparent; cursor: pointer; }
.target-species i { width: 44px; height: 44px; display: block; margin: 0 auto 5px; border-radius: 50%; background-position: center; background-size: cover; }
.target-species span { display: block; overflow: hidden; font-size: 8px; white-space: nowrap; text-overflow: ellipsis; }
.trip-work-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.work-panel { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,253,245,.44); }
.work-panel-head { display: flex; justify-content: space-between; margin-bottom: 20px; }
.work-panel-head h3 { margin: 4px 0 0; font-family: var(--display); font-size: 23px; }
.work-panel-head > span { color: var(--muted); font-size: 8px; }
.work-panel-intro { margin: -10px 0 12px; color: var(--muted); font-size: 9px; line-height: 1.55; }
.day-timeline { display: grid; gap: 0; }
.day-timeline article { position: relative; display: grid; grid-template-columns: 43px 1fr; gap: 12px; padding-bottom: 19px; }
.day-timeline article::before { content: ""; position: absolute; left: 21px; top: 31px; bottom: 0; border-left: 1px dashed var(--line); }
.day-index { position: relative; z-index: 1; width: 43px; height: 29px; display: grid; place-items: center; border-radius: 9px; color: var(--forest); background: var(--lime); font-size: 8px; font-weight: 700; }
.day-timeline h4 { margin: 2px 0 7px; font-size: 12px; }
.day-timeline ul { display: flex; flex-wrap: wrap; gap: 5px; margin: 0; padding: 0; list-style: none; }
.day-timeline li { padding: 4px 7px; border-radius: 6px; color: var(--muted); background: var(--paper-2); font-size: 8px; }
.trip-tasks { display: grid; }
.trip-task { position: relative; display: grid; grid-template-columns: 25px 1fr; gap: 10px; padding: 11px 0; border-bottom: 1px solid var(--line); cursor: pointer; }
.trip-task input { position: absolute; opacity: 0; }
.trip-task > i { width: 24px; height: 24px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 7px; }
.trip-task.is-done > i { color: var(--forest); border-color: var(--lime); background: var(--lime); }
.trip-task svg { width: 13px; fill: none; stroke: currentColor; stroke-width: 2.4; }
.trip-task > span { display: grid; }
.trip-task strong { font-size: 10px; line-height: 1.35; }
.trip-task small { margin-top: 4px; color: var(--muted); font-size: 8px; }
.trip-task.is-done strong { color: var(--muted); text-decoration: line-through; }
.complete-trip { display: flex; justify-content: space-between; align-items: center; padding: 15px 19px; border: 1px dashed var(--line); border-radius: 13px; color: var(--muted); font-size: 9px; }
.yearbook-panel { display: grid; grid-template-columns: 290px 1fr; gap: 30px; align-items: center; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper-2); }
.yearbook-cover { min-height: 200px; display: flex; flex-direction: column; justify-content: end; padding: 18px; border-radius: 14px; color: var(--white); background-position: center; background-size: cover; box-shadow: inset 0 -130px 100px -70px rgba(10,25,20,.95); }
.yearbook-cover small { color: var(--lime); font-size: 8px; letter-spacing: .14em; }
.yearbook-cover h3 { margin: 7px 0; font-family: var(--display); font-size: 24px; }
.yearbook-cover strong { font-size: 9px; }
.yearbook-panel > div:last-child h3 { margin: 0; font-family: var(--display); font-size: 28px; }
.yearbook-panel > div:last-child > p:not(.eyebrow) { color: var(--muted); font-size: 11px; line-height: 1.7; }

/* Emotional destination wishlist */
.planner-wish-page { position: relative; padding-bottom: 110px; }
.planner-wish-page::before { content: "WISH ATLAS"; position: absolute; right: -1vw; top: 34px; color: rgba(22,39,32,.035); font-family: var(--display); font-size: clamp(92px,14vw,210px); font-weight: 600; letter-spacing: -.06em; pointer-events: none; }
.wish-hero { position: relative; display: grid; grid-template-columns: minmax(0,1.25fr) minmax(260px,.45fr); align-items: start; gap: clamp(50px,8vw,120px); padding: clamp(58px,6vw,88px) 0 58px; }
.wish-hero-copy > p:last-child { max-width: 670px; margin: 24px 0 0; color: var(--muted); font-size: 15px; line-height: 1.8; }
.wish-hero-ledger { padding: 6px 0 4px 32px; border-left: 1px solid var(--ink); }
.wish-hero-ledger > p { margin: 0; color: var(--orange); font-size: 8px; font-weight: 700; letter-spacing: .16em; }
.wish-hero-ledger > strong { display: block; margin: 13px 0 0; font-family: var(--display); font-size: 86px; font-weight: 500; letter-spacing: -.06em; line-height: .82; }
.wish-hero-ledger > span { display: block; margin-top: 12px; color: var(--muted); font-size: 9px; }
.wish-hero-ledger dl { display: grid; gap: 0; margin: 24px 0 18px; }
.wish-hero-ledger dl div { display: flex; justify-content: space-between; gap: 16px; padding: 9px 0; border-top: 1px solid var(--line); }
.wish-hero-ledger dt { color: var(--muted); font-size: 8px; }
.wish-hero-ledger dd { margin: 0; font-size: 9px; font-weight: 700; }
.wish-hero-ledger button, .wish-ledger-head > button, .wish-empty button { display: inline-flex; align-items: center; gap: 8px; padding: 9px 0; border: 0; border-bottom: 1px solid currentColor; color: var(--forest); background: transparent; font-size: 9px; font-weight: 700; cursor: pointer; }
.wish-hero-ledger button svg, .wish-ledger-head > button svg, .wish-empty button svg { width: 15px; fill: none; stroke: currentColor; stroke-width: 2; transition: transform .2s ease; }
.wish-hero-ledger button:hover svg, .wish-ledger-head > button:hover svg, .wish-empty button:hover svg { transform: translateX(4px); }
.wish-ledger-head { display: flex; align-items: end; justify-content: space-between; gap: 28px; padding: 25px 0 22px; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.wish-ledger-head h1 { margin: 5px 0 0; font-family: var(--display); font-size: clamp(32px,3.8vw,52px); font-weight: 500; line-height: 1; }
.wish-letter-list { display: grid; }
.wish-letter { display: block; padding: clamp(50px,6vw,86px) 0; border-bottom: 1px solid var(--line); perspective: 1800px; }
.wish-postcard { position: relative; width: min(920px,100%); min-height: clamp(540px,62vw,620px); margin: 0 auto; transform: rotate(-.55deg); }
.wish-letter.is-reversed .wish-postcard { transform: rotate(.55deg); }
.wish-postcard-inner { position: absolute; inset: 0; transform-style: preserve-3d; transition: transform .78s cubic-bezier(.16,1,.3,1); }
.wish-postcard.is-flipped .wish-postcard-inner { transform: rotateY(180deg); }
.wish-postcard-face { position: absolute; inset: 0; backface-visibility: hidden; -webkit-backface-visibility: hidden; }
.wish-letter-image { overflow: hidden; background: var(--paper-2); box-shadow: 15px 18px 0 rgba(23,56,47,.07); }
.wish-letter-image::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 -150px 110px -95px rgba(9,27,21,.88); pointer-events: none; }
.wish-letter-image img { width: 100%; height: 100%; object-fit: cover; }
.wish-photo-caption { position: absolute; left: 22px; right: 22px; bottom: 19px; z-index: 1; display: flex; align-items: end; justify-content: space-between; gap: 16px; color: var(--white); }
.wish-photo-caption span { font-size: 9px; font-weight: 700; letter-spacing: .12em; }
.wish-photo-caption strong { font-family: var(--display); font-size: 42px; font-weight: 500; line-height: .8; }
.wish-cover-trigger { position: absolute; inset: 0; z-index: 2; padding: 0; border: 0; color: var(--white); background: transparent; cursor: pointer; text-align: left; }
.wish-cover-trigger > span { position: absolute; left: 22px; top: 22px; display: grid; gap: 3px; padding: 11px 14px; border: 1px solid rgba(255,255,255,.32); color: var(--white); background: rgba(9,27,21,.58); backdrop-filter: blur(8px); transition: transform .25s ease, background .25s ease; }
.wish-cover-trigger b { font-size: 9px; letter-spacing: .08em; }
.wish-cover-trigger small { color: rgba(255,255,255,.66); font-size: 7px; }
.wish-cover-trigger:hover > span { background: rgba(9,27,21,.74); transform: translateY(-2px); }
.wish-cover-trigger:active > span { transform: translateY(1px) scale(.98); }
.wish-cover-trigger:focus-visible { outline: 3px solid var(--lime); outline-offset: -6px; }
.wish-remove { position: absolute; right: 16px; top: 16px; z-index: 4; width: 40px; height: 40px; display: grid; place-items: center; padding: 0; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; color: var(--forest); background: var(--lime); cursor: pointer; transition: opacity .2s ease, transform .2s ease; }
.wish-postcard.is-flipped > .wish-remove { opacity: 0; pointer-events: none; }
.wish-remove svg { width: 18px; fill: currentColor; stroke: currentColor; stroke-width: 1.5; }
.wish-letter-paper { overflow: auto; padding: clamp(30px,4vw,58px); border: 1px solid rgba(22,39,32,.16); border-radius: 2px; background: var(--paper-3); box-shadow: 10px 13px 0 rgba(23,56,47,.06); transform: rotateY(180deg); }
.wish-letter-paper::before { content: ""; position: absolute; left: 50%; top: -13px; width: 88px; height: 25px; background: rgba(216,239,104,.55); transform: translateX(-50%) rotate(-2deg); }
.wish-letter-paper::after { content: "WILD POST"; position: absolute; right: 25px; top: 24px; width: 58px; height: 58px; display: grid; place-items: center; border: 1px dashed var(--orange); border-radius: 50%; color: var(--orange); font-size: 7px; font-weight: 700; letter-spacing: .06em; transform: rotate(9deg); opacity: .7; }
.wish-flip-back { position: relative; z-index: 2; display: inline-flex; align-items: center; gap: 7px; padding: 0 0 6px; border: 0; border-bottom: 1px solid currentColor; color: var(--forest); background: transparent; font-size: 8px; font-weight: 700; cursor: pointer; }
.wish-flip-back svg { width: 13px; fill: none; stroke: currentColor; stroke-width: 2; transform: rotate(180deg); }
.wish-flip-back:active { transform: translateY(1px); }
.wish-letter-paper h2 { max-width: calc(100% - 78px); margin: 14px 0 3px; font-family: var(--display); font-size: clamp(40px,4.7vw,68px); font-weight: 500; letter-spacing: -.04em; line-height: .92; }
.wish-letter-paper > em { color: var(--muted); font-family: var(--display); font-size: 10px; }
.wish-letter-paper blockquote { margin: 29px 0 26px; padding: 0 0 0 17px; border-left: 3px solid var(--orange); color: var(--ink); font-family: var(--display); font-size: 19px; font-style: italic; line-height: 1.55; }
.wish-note { display: grid; gap: 7px; }
.wish-note > span { color: var(--orange); font-size: 8px; font-weight: 700; letter-spacing: .12em; }
.wish-note textarea { width: 100%; min-height: 72px; resize: vertical; padding: 10px 0; border: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); border-radius: 0; color: var(--ink); background: transparent; font-family: var(--display); font-size: 16px; line-height: 1.5; outline: 0; }
.wish-note textarea::placeholder { color: rgba(103,113,106,.64); }
.wish-note small { color: var(--muted); font-size: 8px; }
.wish-shared-note p { margin: 0; padding: 12px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--muted); font-size: 10px; line-height: 1.65; }
.wish-letter-facts { display: grid; grid-template-columns: .75fr 1.25fr; gap: 20px; margin: 25px 0 22px; }
.wish-letter-facts div { padding-top: 11px; border-top: 1px solid var(--line); }
.wish-letter-facts dt { color: var(--muted); font-size: 8px; }
.wish-letter-facts dd { margin: 6px 0 0; font-size: 10px; font-weight: 700; line-height: 1.45; }
.wish-open { display: inline-flex; align-items: center; gap: 8px; padding: 10px 14px; border: 0; border-radius: 8px; color: var(--white); background: var(--forest); font-size: 9px; font-weight: 700; cursor: pointer; }
.wish-open svg { width: 15px; fill: none; stroke: currentColor; stroke-width: 2; }
.wish-open:active, .wish-remove:active { transform: translateY(1px) scale(.98); }
.wish-empty { min-height: 480px; display: grid; place-content: center; justify-items: start; padding: 70px 12vw; border-bottom: 1px solid var(--line); }
.wish-empty > span { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 50%; color: var(--forest); background: var(--lime); }
.wish-empty > span svg { width: 22px; fill: currentColor; stroke: currentColor; }
.wish-empty h2 { margin: 18px 0 10px; font-family: var(--display); font-size: 48px; font-weight: 500; }
.wish-empty > p:not(.eyebrow) { max-width: 420px; margin: 0 0 22px; color: var(--muted); line-height: 1.7; }

/* Rich field cards and sharing */
.modal-action-group { display: flex; flex-wrap: wrap; justify-content: end; gap: 7px; }
.modal-action-group .modal-save { margin: 0; padding: 10px 12px; background: rgba(255,255,255,.88); }
.modal-action-group .modal-save.is-accent { background: var(--lime); }
.source-note { margin-top: 16px; padding-top: 12px; border-top: 1px solid var(--line); font-size: 8px !important; line-height: 1.5 !important; }
.section-kicker { margin: 0 0 5px !important; color: var(--orange) !important; font-size: 8px !important; font-weight: 700; letter-spacing: .13em; }
.identification-block { padding: 20px; border-radius: 14px; background: var(--paper-2); }
.sign-list { display: grid; gap: 6px; margin: 13px 0 0; padding: 0; list-style: none; }
.sign-list li { position: relative; padding-left: 15px; color: var(--muted); font-size: 10px; }
.sign-list li::before { content: ""; position: absolute; left: 0; top: 6px; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
.knowledge-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-top: 16px; }
.knowledge-grid > div { padding: 12px; border: 1px solid var(--line); border-radius: 10px; }
.knowledge-grid small { display: block; margin-bottom: 7px; color: var(--orange); font-size: 8px; }
.knowledge-grid strong { display: block; font-size: 10px; line-height: 1.5; }
.compact-modal { width: min(720px,100%); }
.compact-modal .modal-close, .share-modal .modal-close { color: var(--ink); border-color: var(--line); background: rgba(255,255,255,.7); }
.form-modal-head { padding: 45px 45px 24px; border-bottom: 1px solid var(--line); }
.form-modal-head h2 { margin: 0; font-family: var(--display); font-size: 45px; font-weight: 500; }
.form-modal-head > p:last-child { color: var(--muted); }
.trip-create-form { display: grid; gap: 18px; padding: 28px 45px 42px; }
.trip-create-form label { display: grid; gap: 7px; }
.trip-create-form label > span { font-size: 11px; font-weight: 700; }
.trip-create-form label > span b { display: inline-grid; place-items: center; width: 25px; height: 25px; margin-right: 8px; border-radius: 50%; color: var(--forest); background: var(--lime); font-size: 8px; }
.trip-create-form input, .trip-create-form select { width: 100%; padding: 12px 13px; border: 1px solid var(--line); border-radius: 10px; color: var(--ink); background: var(--paper-3); outline: 0; }
.trip-create-form label > small { color: var(--muted); font-size: 8px; }
.form-split { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.form-submit { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding-top: 18px; border-top: 1px solid var(--line); }
.form-submit p { max-width: 280px; margin: 0; color: var(--muted); font-size: 9px; }
.form-submit button { display: inline-flex; align-items: center; gap: 8px; padding: 12px 16px; border: 0; border-radius: 10px; color: var(--forest); background: var(--lime); font-weight: 700; cursor: pointer; }
.form-submit svg { width: 16px; fill: none; stroke: currentColor; stroke-width: 2; }
.share-modal { width: min(760px,100%); padding: 48px; }
.share-card-preview { width: min(440px,100%); margin: 0 auto; overflow: hidden; border-radius: 24px; background: var(--paper-3); box-shadow: 0 24px 60px rgba(22,39,32,.18); }
.share-image { min-height: 310px; display: flex; justify-content: space-between; align-items: start; padding: 18px; color: var(--white); background-position: center; background-size: cover; box-shadow: inset 0 110px 80px -80px rgba(10,25,20,.8), inset 0 -90px 80px -80px rgba(10,25,20,.8); }
.share-image span { font-size: 8px; font-weight: 700; letter-spacing: .12em; }
.share-image strong { padding: 6px 9px; border-radius: 99px; color: var(--forest); background: var(--lime); font-size: 8px; }
.share-copy { padding: 24px; }
.share-copy > p { margin: 0; color: var(--orange); font-size: 8px; font-weight: 700; letter-spacing: .13em; }
.share-copy h2 { margin: 7px 0 3px; font-family: var(--display); font-size: 43px; font-weight: 500; }
.share-copy em { color: var(--muted); font-family: var(--display); font-size: 11px; }
.share-copy blockquote { margin: 19px 0; color: var(--muted); font-size: 11px; line-height: 1.7; }
.share-discovery { display: flex; justify-content: space-between; padding: 11px 0; border-top: 1px solid var(--line); font-size: 9px; }
.share-copy footer { display: flex; justify-content: space-between; gap: 20px; margin-top: 18px; padding-top: 13px; border-top: 1px solid var(--ink); font-size: 8px; }
.share-copy footer span { color: var(--muted); }
.share-modal-actions { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 8px; margin-top: 25px; }
.share-modal-actions strong { font-size: 11px; }
.share-modal-actions p { margin: 3px 0 0; color: var(--muted); font-size: 8px; }
.species-share-actions { grid-template-columns: minmax(0,1fr) auto auto auto; }
.species-share-actions button { white-space: nowrap; }
.trip-share-image { min-height: 230px; display: flex; justify-content: space-between; align-items: start; padding: 18px; color: var(--white); background-position: center; background-size: cover; box-shadow: inset 0 100px 80px -70px rgba(10,25,20,.85), inset 0 -100px 90px -70px rgba(10,25,20,.8); }
.trip-share-image > span { font-size: 8px; font-weight: 700; letter-spacing: .12em; }
.trip-share-image > strong { font-family: var(--display); font-size: 42px; font-weight: 500; }
.trip-share-image small { font-family: var(--body); font-size: 8px; }
.share-itinerary { display: grid; gap: 7px; margin: 18px 0; }
.share-itinerary span { display: grid; grid-template-columns: 28px 1fr; gap: 8px; color: var(--muted); font-size: 9px; }
.share-itinerary b { color: var(--orange); }
.wish-share-image { min-height: 265px; display: flex; justify-content: space-between; align-items: start; padding: 18px; color: var(--white); background-position: center; background-size: cover; box-shadow: inset 0 110px 80px -80px rgba(10,25,20,.86), inset 0 -130px 90px -80px rgba(10,25,20,.88); }
.wish-share-image > span { font-size: 8px; font-weight: 700; letter-spacing: .12em; }
.wish-share-image > strong { align-self: end; font-family: var(--display); font-size: 44px; font-weight: 500; line-height: .8; }
.wish-share-image small { font-family: var(--body); font-size: 8px; font-weight: 700; letter-spacing: .1em; }
.wish-share-copy blockquote { margin: 15px 0 12px; }
.wish-share-list { display: grid; }
.wish-share-list > span { display: grid; grid-template-columns: 28px minmax(0,1fr) auto; align-items: baseline; gap: 8px; padding: 9px 0; border-top: 1px solid var(--line); }
.wish-share-list b { color: var(--orange); font-size: 8px; }
.wish-share-list strong { font-family: var(--display); font-size: 12px; font-weight: 600; }
.wish-share-list small { color: var(--muted); font-size: 8px; }
.wish-share-more { padding-top: 9px; border-top: 1px solid var(--line); color: var(--muted); font-size: 8px; }
.wish-share-actions { grid-template-columns: minmax(0,1fr) auto auto auto; }
.wish-share-actions button { white-space: nowrap; }
.field-modal { width: min(720px,100%); color: var(--white); background: #102c25; }
.field-mode-head { padding: 42px; background: linear-gradient(135deg,#17382f,#245346); }
.field-mode-head p { margin: 0; color: var(--lime); font-size: 8px; font-weight: 700; letter-spacing: .14em; }
.field-mode-head h2 { margin: 9px 0 5px; font-family: var(--display); font-size: 48px; font-weight: 500; }
.field-mode-head span { color: rgba(255,255,255,.57); font-size: 10px; }
.field-mode-body { display: grid; gap: 24px; padding: 32px 42px 42px; }
.field-mode-body section > small { color: var(--lime); font-size: 8px; letter-spacing: .13em; }
.field-mode-body h3 { margin: 6px 0 14px; font-family: var(--display); font-size: 23px; font-weight: 500; }
.field-mode-body ol { display: grid; gap: 7px; margin: 0; padding-left: 20px; color: rgba(255,255,255,.62); font-size: 10px; }
.field-targets { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.field-targets button { display: grid; grid-template-columns: 50px 1fr; grid-template-rows: auto auto; align-items: center; gap: 0 10px; padding: 8px; border: 1px solid rgba(255,255,255,.13); border-radius: 12px; color: var(--white); background: rgba(255,255,255,.05); text-align: left; }
.field-targets i { grid-row: 1 / 3; width: 50px; height: 50px; border-radius: 9px; background-position: center; background-size: cover; }
.field-targets span { align-self: end; font-size: 10px; font-weight: 700; }
.field-targets small { align-self: start; color: var(--lime); font-size: 8px; }
.field-safety { display: flex; justify-content: space-between; align-items: center; padding: 16px; border: 1px solid rgba(239,104,75,.5); border-radius: 12px; background: rgba(239,104,75,.09); }
.field-safety div { display: grid; gap: 4px; }
.field-safety small { color: var(--orange) !important; }
.field-safety strong { font-size: 9px; }
.field-safety a { padding: 9px 12px; border-radius: 9px; color: var(--white); background: var(--orange); font-size: 9px; font-weight: 700; text-decoration: none; }

.toast { position: fixed; left: 50%; bottom: 30px; z-index: 120; max-width: calc(100% - 40px); padding: 12px 17px; border-radius: 12px; color: var(--white); background: var(--forest); box-shadow: var(--shadow); font-size: 12px; opacity: 0; pointer-events: none; transform: translate(-50%, 18px); transition: .25s ease; }
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }
.mobile-nav { display: none; }

@media (max-width: 1120px) {
  .topbar { grid-template-columns: auto 1fr auto; }
  .desktop-nav { justify-self: center; }
  .season-pill { display: none; }
  .field-hero { grid-template-columns: 1fr .78fr; }
  .hero-copy h1 { font-size: clamp(54px, 7vw, 78px); }
  .collection-grid { grid-template-columns: repeat(2, 1fr); }
  .destination-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .species-strip { grid-template-columns: repeat(5, 230px); overflow-x: auto; padding-bottom: 8px; scroll-snap-type: x mandatory; }
  .species-card { scroll-snap-align: start; }
  .guide-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .destination-globe-hero { grid-template-columns: minmax(320px,.88fr) minmax(460px,1.12fr); min-height: 620px; }
  .destination-globe-stage { min-height: 620px; }
  .destination-globe-copy h1 { font-size: clamp(48px,5.6vw,66px); }
}

@media (max-width: 820px) {
  body { padding-bottom: 68px; }
  .topbar { height: 68px; grid-template-columns: 1fr auto; padding: 0 18px; }
  .brand-logo { width: 190px; max-width: 56vw; max-height: 38px; }
  .desktop-nav { display: none; }
  .round-button { width: 40px; height: 40px; }
  main { min-height: calc(100vh - 68px); }
  .page { padding: 0 18px 50px; }
  .mobile-nav { position: fixed; left: 12px; right: 12px; bottom: 10px; z-index: 60; display: grid; grid-template-columns: repeat(4, 1fr); padding: 7px; border: 1px solid rgba(255,255,255,.15); border-radius: 18px; color: rgba(255,255,255,.58); background: rgba(23,56,47,.96); box-shadow: 0 12px 35px rgba(0,0,0,.24); backdrop-filter: blur(12px); }
  .mobile-link { display: grid; justify-items: center; gap: 2px; padding: 4px; border: 0; border-radius: 11px; color: inherit; background: transparent; }
  .mobile-link.is-active { color: var(--lime); background: rgba(255,255,255,.08); }
  .mobile-link > span { height: 20px; }
  .mobile-link svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; }
  .mobile-link small { font-size: 9px; }
  .field-hero { min-height: auto; grid-template-columns: 1fr; padding: 46px 0 34px; }
  .hero-copy { padding: 0 0 10px; }
  .hero-index { top: 0; right: 0; font-size: 120px; }
  .hero-copy h1 { max-width: 620px; font-size: clamp(52px, 14vw, 82px); }
  .hero-lede { margin: 22px 0; }
  .season-board { min-height: 520px; }
  .section { padding: 48px 0; }
  .section-head { align-items: flex-start; }
  .section-title { font-size: clamp(38px, 10vw, 56px); }
  .atlas-grid { grid-template-columns: 1fr; }
  .map-card { min-height: 410px; }
  .map-detail { min-height: auto; }
  .map-detail-image { min-height: 260px; }
  .destination-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .destination-image { min-height: 230px; }
  .dispatch { grid-template-columns: 1fr; }
  .dispatch button { width: auto; height: auto; justify-self: start; padding: 13px 19px; border-radius: 12px; }
  .page-hero { grid-template-columns: 1fr; padding: 62px 0 32px; }
  .page-counter { justify-self: start; }
  .filter-bar { top: 68px; overflow-x: auto; align-items: center; }
  .filter-group { flex-wrap: nowrap; }
  .filter-chip { white-space: nowrap; }
  .filter-tools { display: none; }
  .destination-globe-hero { grid-template-columns: 1fr; min-height: auto; gap: 24px; margin-top: 18px; }
  .destination-globe-copy { padding: 40px 0 0; }
  .destination-globe-copy h1 { font-size: clamp(45px,10vw,64px); }
  .destination-globe-intro { max-width: 620px; margin: 20px 0 28px; }
  .destination-globe-stage { min-height: 520px; }
  .destination-globe-stage::before { display: none; }
  .guide-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .wish-hero { grid-template-columns: 1fr; align-items: start; gap: 32px; padding: 46px 0 42px; }
  .wish-hero-ledger { display: grid; grid-template-columns: minmax(120px,.72fr) minmax(0,1.28fr); grid-template-rows: auto auto 1fr; align-items: start; column-gap: 28px; padding: 24px 0 0; border-top: 1px solid var(--ink); border-left: 0; }
  .wish-hero-ledger > p { grid-column: 1; grid-row: 1; }
  .wish-hero-ledger > strong { grid-column: 1; grid-row: 2; }
  .wish-hero-ledger > span { grid-column: 1; grid-row: 3; max-width: 110px; line-height: 1.5; }
  .wish-hero-ledger dl { grid-column: 2; grid-row: 1 / span 2; align-self: start; width: 100%; margin: 0; }
  .wish-hero-ledger button { grid-column: 2; grid-row: 3; align-self: start; justify-self: start; margin-top: 7px; }
  .wish-postcard { min-height: 580px; }
  .planner-layout { grid-template-columns: 1fr; }
  .modal-backdrop { padding: 0; align-items: end; }
  .modal { max-height: 95vh; border-radius: 26px 26px 0 0; }
  .modal-hero { min-height: 380px; padding: 30px 24px; }
  .modal-hero > .image-provenance { left: 24px; top: 22px; }
  .modal-body { padding: 28px 24px 38px; }
  .modal-columns, .species-profile, .destination-overview { grid-template-columns: 1fr; gap: 28px; }
  .destination-overview > div:last-child { grid-template-columns: 1fr 1fr; }
  .atlas-hero, .planner-hero { grid-template-columns: 1fr; }
  .atlas-volume-mark { justify-self: start; }
  .daily-discovery, .create-trip-button { margin-top: 5px; }
  .atlas-index-page .daily-discovery { display: none; }
  .atlas-overview { grid-template-columns: 1fr 110px 110px; }
  .atlas-mode { grid-column: 1 / -1; justify-content: center; margin-top: 0; }
  .journal-scene-head { grid-template-columns: 1fr; align-items: start; }
  .journal-page-readout { min-width: 0; width: 100%; grid-template-columns: 1fr auto; align-items: center; justify-items: start; }
  .journal-page-readout strong { justify-self: end; }
  .journal-vitals { justify-self: stretch; }
  .journal-vitals span { flex: 1; min-width: 0; }
  .wild-journal-stage { height: 560px; }
  .journey-layout { grid-template-columns: 1fr; }
  .trip-rail { position: static; top: auto; display: flex; overflow-x: auto; scroll-snap-type: x mandatory; }
  .trip-rail-head { flex: 0 0 105px; display: block; }
  .trip-rail-head span { display: block; margin-top: 7px; }
  .trip-card { min-width: 245px; scroll-snap-align: start; }
  .departure-status { grid-template-columns: 1fr; gap: 24px; }
  .share-modal { border-radius: 26px 26px 0 0; }
  body[data-view="search"] { padding-bottom: 0; }
  body[data-view="search"] .topbar, body[data-view="search"] .mobile-nav { display: none; }
  body[data-view="search"] main { min-height: 100dvh; }
  body[data-view="search"] .page { padding-bottom: 36px; }
  .search-controls { top: 0; margin: 0 -18px; padding: 11px 18px 10px; }
  .search-result-section { grid-template-columns: 1fr; gap: 20px; padding: 36px 0 48px; }
  .search-result-section > header { position: static; }
  .search-result-section > header > span { max-width: 420px; }
}

@media (max-width: 560px) {
  .brand-logo { width: 190px; max-width: 56vw; }
  .hero-copy h1 { font-size: clamp(49px, 16vw, 68px); }
  .hero-search { grid-template-columns: auto 1fr; }
  .hero-search > button { grid-column: 1 / -1; }
  .hero-search-results { max-height: min(42dvh,330px); padding: 7px 10px 9px; }
  .hero-search-results-head { align-items: start; }
  .hero-search-result { grid-template-columns: 46px minmax(0,1fr) auto; gap: 9px; padding: 9px 3px; }
  .hero-search-result img { width: 46px; height: 44px; }
  .hero-search-result strong { font-size: 15px; }
  .hero-search-all { padding-top: 10px; }
  .quick-links { display: none; }
  .search-controls { grid-template-columns: 38px minmax(0,1fr); gap: 9px; }
  .search-back { width: 38px; height: 38px; justify-content: center; align-self: center; padding: 0; border-radius: 50%; }
  .search-back span { display: none; }
  .search-results-form { gap: 8px; padding: 4px 5px 4px 11px; border-radius: 13px; box-shadow: 4px 4px 0 rgba(23,56,47,.07); }
  .search-results-form > svg { width: 17px; }
  .search-results-form input { padding: 9px 0; font-size: 13px; }
  .search-results-form button { padding: 9px 12px; font-size: 10px; }
  .search-tabs { grid-column: 1 / -1; width: 100%; gap: 4px; padding-top: 2px; }
  .search-tabs button { flex: 1; min-width: 0; gap: 8px; padding: 7px 10px; }
  .search-tabs button span { font-size: 11px; }
  .search-tabs button small { min-width: 19px; height: 19px; padding: 0 5px; font-size: 7px; }
  .search-heading { padding: 48px 0 42px; }
  .search-heading::after { right: -10%; bottom: -8%; font-size: 190px; }
  .search-heading .eyebrow { margin-bottom: 18px; font-size: 8px; letter-spacing: .12em; }
  .search-heading h1 { max-width: 350px; font-size: clamp(48px,14.5vw,64px); line-height: .91; }
  .search-heading > p:last-child { margin-top: 18px; font-size: 9px; }
  .search-result-section { gap: 16px; padding: 30px 0 42px; }
  .search-result-section > header { display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: end; column-gap: 12px; }
  .search-result-section > header p, .search-result-section > header > span { grid-column: 1 / -1; }
  .search-result-section > header h2 { font-size: 34px; }
  .search-result-section > header > span { margin-top: 9px; font-size: 10px; }
  .search-result-section > header button { grid-column: 2; grid-row: 2; margin: 0; padding: 7px 0; }
  .search-result-row { grid-template-columns: 28px 82px minmax(0,1fr) 30px; gap: 10px; padding: 13px 2px 13px 0; }
  .search-result-row:hover { padding-left: 0; }
  .search-result-index { font-size: 9px; }
  .search-result-row > img { width: 82px; height: 82px; }
  .search-result-copy { gap: 5px; }
  .search-result-copy > small { font-size: 7px; }
  .search-result-copy > strong { display: grid; gap: 3px; font-size: 23px; }
  .search-result-copy > strong em { font-size: 7px; }
  .search-result-summary { font-size: 9px; line-height: 1.45; -webkit-line-clamp: 1; }
  .search-result-facts { gap: 4px; }
  .search-result-facts span { padding: 4px 6px; font-size: 7px; }
  .search-result-arrow { width: 28px; height: 28px; }
  .search-result-arrow svg { width: 13px; }
  .search-no-results { min-height: calc(100dvh - 130px); padding: 50px 0; }
  .search-no-results > span { font-size: 58px; }
  .search-no-results h2 { font-size: 48px; }
  .search-no-results h2 + p { font-size: 11px; }
  .season-board { min-height: 470px; padding: 19px; border-radius: 8px 8px 50px 8px; }
  .board-action { right: 19px; bottom: 19px; }
  .board-meta { gap: 11px; }
  .section-head { display: block; }
  .section-action { margin-top: 18px; }
  .map-card { min-height: 360px; }
  .map-head { left: 12px; top: 12px; padding: 9px 11px; }
  .map-head strong { font-size: 17px; }
  .world-map { inset: 0; width: 100%; height: 100%; }
  .collection-grid { grid-template-columns: 1fr; }
  .collection-card { min-height: 300px; }
  .trail-page-hero { min-height: 610px; display: grid; align-content: end; gap: 24px; padding: 28px; border-radius: 5px 5px 54px 5px; }
  .trail-page-hero::after { inset: 9px; border-radius: 3px 3px 47px 3px; }
  .trail-back { left: 25px; top: 24px; }
  .trail-hero-number { right: 25px; top: 22px; font-size: 68px; }
  .trail-hero-copy h1 { font-size: clamp(56px,15vw,72px); }
  .trail-hero-copy h1 + p { margin-top: 18px; font-size: 10px; }
  .trail-criteria { margin-top: 15px; }
  .trail-ledger { width: 100%; grid-template-columns: repeat(2,1fr); gap: 1px; padding: 0; border: 1px solid rgba(255,255,255,.28); }
  .trail-ledger div { padding: 13px; }
  .trail-ledger div + div { border-left: 1px solid rgba(255,255,255,.2); }
  .trail-ledger dd { font-size: 29px; }
  .trail-switcher { top: 76px; overflow-x: auto; grid-template-columns: repeat(4,minmax(150px,1fr)); scrollbar-width: none; }
  .trail-switcher::-webkit-scrollbar { display: none; }
  .collection-results .search-result-section { padding-top: 50px; }
  .destination-grid, .guide-grid { grid-template-columns: 1fr; }
  .destination-image, .guide-image { min-height: 285px; }
  .page-hero h1 { font-size: clamp(53px, 18vw, 83px); }
  .planner-hero .page-hero-copy h1 { font-size: clamp(43px,13vw,58px); line-height: .92; }
  .planner-hero .page-hero-copy > p:last-child { font-size: 13px; }
  .atlas-index-page .page-hero { padding: 44px 0 27px; }
  .atlas-index-page .page-hero h1 { font-size: clamp(48px,14vw,58px); }
  .page-counter strong { font-size: 62px; }
  .destination-globe-copy { padding: 32px 0 0; }
  .destination-globe-copy h1 { font-size: clamp(42px,13.2vw,58px); }
  .destination-globe-intro { margin: 18px 0 24px; font-size: 11px; }
  .globe-selection { grid-template-columns: 86px minmax(0,1fr) auto; gap: 11px; padding-top: 18px; }
  .globe-selection-image { min-height: 138px; }
  .globe-selection-index { min-width: 34px; padding: 7px 7px 5px; font-size: 16px; }
  .globe-selection-copy h2 { font-size: 26px; }
  .globe-selection dl { gap: 12px; }
  .globe-selection-action { width: 38px; height: 38px; }
  .destination-globe-stage { min-height: 410px; }
  .globe-zoom-controls { right: 17px; top: 49px; }
  .globe-zoom-controls button { width: 31px; height: 31px; font-size: 15px; }
  .globe-hud { left: 17px; right: 17px; top: 17px; }
  .globe-hud b { display: none; }
  .globe-credit { right: 17px; bottom: 15px; }
  .globe-fallback-index { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .planner-wish-page::before { display: none; }
  .wish-hero { gap: 24px; padding: 38px 0 32px; }
  .wish-hero-copy > p:last-child { font-size: 12px; line-height: 1.72; }
  .wish-hero-ledger { grid-template-columns: minmax(120px,.78fr) minmax(0,1.22fr); column-gap: 18px; }
  .wish-hero-ledger > strong { font-size: 66px; }
  .wish-ledger-head { align-items: start; padding: 22px 0 18px; }
  .wish-ledger-head h1 { font-size: 34px; line-height: 1.08; }
  .wish-ledger-head > button { flex: 0 0 auto; padding-top: 6px; }
  .wish-letter { padding: 43px 0; }
  .wish-postcard, .wish-letter.is-reversed .wish-postcard { min-height: 520px; transform: none; }
  .wish-letter-paper { padding: 30px 22px 26px; transform: rotateY(180deg); }
  .wish-letter-paper::before { width: 68px; }
  .wish-letter-paper::after { right: 17px; top: 17px; width: 50px; height: 50px; }
  .wish-letter-paper h2 { max-width: calc(100% - 66px); font-size: 42px; }
  .wish-letter-paper blockquote { margin: 24px 0 22px; font-size: 16px; }
  .wish-note textarea { min-height: 80px; font-size: 15px; }
  .wish-letter-facts { grid-template-columns: 1fr; gap: 12px; }
  .wish-empty { min-height: 420px; padding: 60px 14px; }
  .wish-empty h2 { font-size: 39px; }
  .trip-item { grid-template-columns: 75px 1fr auto; }
  .trip-thumb { height: 68px; }
  .planner-panel { padding: 18px; }
  .modal-hero-footer { display: block; }
  .modal-save { margin-top: 17px; }
  .modal-fact-row { grid-template-columns: repeat(2, 1fr); }
  .destination-overview { margin-bottom: 34px; }
  .destination-overview > div:last-child, .season-story-grid, .destination-practical-grid { grid-template-columns: 1fr; }
  .destination-section-head, .destination-sources { display: block; }
  .destination-section-head > p { margin-top: 10px; text-align: left; }
  .destination-sources div { justify-content: flex-start; margin-top: 8px; }
  .modal-hero h2 { font-size: 48px; }
  .daily-discovery { grid-template-columns: 86px 1fr auto; min-height: 130px; }
  .daily-discovery > span { width: 86px; height: 105px; }
  .atlas-overview { grid-template-columns: 1fr 1fr; }
  .observer-rank { grid-column: 1 / -1; }
  .atlas-stat { border-top: 1px solid rgba(255,255,255,.12); border-left: 0; }
  .atlas-stat + .atlas-stat { border-left: 1px solid rgba(255,255,255,.12); }
  .atlas-mode { grid-column: 1 / -1; }
  .journal-scene-head { gap: 20px; }
  .wild-journal-experience { padding-top: 34px; }
  .journal-scene-head h1 { font-size: 43px; }
  .journal-reader-controls { min-height: 194px; grid-template-columns: 52px minmax(0,1fr) 52px; overflow: visible; }
  .journal-turn-button { min-width: 0; padding: 12px 8px; }
  .journal-turn-button span { display: none; }
  .journal-page-center { align-content: stretch; gap: 13px; padding: 14px 8px 12px; overflow: visible; }
  .journal-page-species { grid-template-columns: repeat(2,minmax(0,1fr)); grid-auto-rows: minmax(58px,auto); gap: 0; }
  .journal-page-species button { align-content: center; padding: 8px 9px; }
  .journal-page-species button:nth-child(odd) { border-left: 0; }
  .journal-page-species button:nth-child(n+3) { border-top: 1px solid var(--line); }
  .journal-page-species strong { overflow: visible; font-size: 13px; line-height: 1.25; white-space: normal; text-overflow: clip; }
  .journal-page-species small { overflow: visible; font-size: 7px; line-height: 1.25; white-space: normal; text-overflow: clip; word-break: break-word; }
  .journal-page-dots { gap: 4px; }
  .journal-page-dots button { width: 12px; }
  .journal-vitals span { padding: 12px 8px; }
  .journal-vitals strong { font-size: 25px; }
  .wild-journal-stage { height: clamp(540px,136vw,620px); min-height: 540px; }
  .journal-hotspots { bottom: 80px; transform: translateY(-28px); }
  .journal-scene-hud { left: 14px; right: 14px; bottom: 13px; }
  .journal-ledger { grid-template-columns: 1fr; padding: 18px; }
  .journal-ledger > div:first-child { grid-template-columns: 1fr; gap: 5px; }
  .journal-ledger i { grid-column: auto; }
  .trip-dashboard-head { display: grid; padding: 22px; }
  .trip-actions { justify-content: stretch; }
  .trip-actions button { flex: 1; }
  .trip-command-grid, .trip-work-grid { grid-template-columns: 1fr; }
  .departure-status { padding: 25px 0; }
  .departure-status-lead { padding-left: 15px; }
  .departure-checks { grid-template-columns: 1fr; }
  .departure-check:nth-child(-n+2) { border-top-color: var(--line); }
  .departure-check:first-child { border-top-color: transparent; }
  .health-panel { grid-template-columns: 120px 1fr; padding: 17px; }
  .health-score { min-height: 120px; }
  .health-score strong { font-size: 48px; }
  .work-panel { padding: 20px; }
  .complete-trip { align-items: flex-start; gap: 12px; }
  .yearbook-panel { grid-template-columns: 1fr; }
  .modal-action-group { justify-content: start; margin-top: 16px; }
  .modal-action-group .modal-save { margin: 0; }
  .knowledge-grid { grid-template-columns: 1fr; }
  .form-modal-head { padding: 38px 24px 20px; }
  .form-modal-head h2 { font-size: 37px; }
  .trip-create-form { padding: 24px; }
  .form-split { grid-template-columns: 1fr; }
  .form-submit { display: grid; }
  .form-submit button { justify-content: center; }
  .share-modal { padding: 28px 18px; }
  .share-image { min-height: 270px; }
  .share-modal-actions { grid-template-columns: 1fr 1fr; }
  .share-modal-actions > div { grid-column: 1 / -1; }
  .species-share-actions { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .species-share-actions button { padding-right: 7px; padding-left: 7px; }
  .wish-share-actions { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .wish-share-actions button { padding-right: 6px; padding-left: 6px; }
  .wish-share-image { min-height: 230px; }
  .wish-share-copy { padding: 21px; }
  .wish-share-copy h2 { font-size: 36px; }
  .wish-share-list > span { grid-template-columns: 24px minmax(0,1fr); }
  .wish-share-list small { grid-column: 2; }
  .field-mode-head, .field-mode-body { padding-left: 24px; padding-right: 24px; }
  .field-targets { grid-template-columns: 1fr; }
}

.site-footer {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 22px 24px 96px;
  color: var(--muted);
  font-size: 12px;
}
.site-footer a { color: var(--ink); text-underline-offset: 3px; }

@media (pointer: coarse) {
  .journal-hotspot { pointer-events: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
