
:root {
  color-scheme: dark;
  --bg: #151611;
  --bg-2: #202116;
  --ink: #f3ead7;
  --muted: #b8b09d;
  --faint: #7f786a;
  --line: #3c3a2d;
  --panel: #24251b;
  --panel-2: #2d2b1f;
  --amber: #d7b56d;
  --leaf: #8aa77a;
  --rust: #b66d45;
  --focus: #f0cf7a;
  --max: 1380px;
  --topbar-height: 64px;
}
* { box-sizing: border-box; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--topbar-height) + 18px);
}
body {
  margin: 0;
  padding-top: var(--topbar-height);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
}
.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 80;
  padding: 10px 12px;
  background: var(--amber);
  color: #17140e;
  border-radius: 4px;
}
.skip-link:focus { top: 16px; }
.site-shell {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}
header {
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  width: 100%;
  min-height: 64px;
  padding: 0 max(16px, calc((100vw - var(--max)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(240, 232, 214, 0.12);
  background: rgba(21, 22, 17, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.topbar-primary {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 0 0 auto;
}
.topbar-mode-only {
  justify-content: center;
}
.topbar-mode-only .topbar-primary {
  width: min(var(--max), calc(100% - 32px));
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 650;
}
.brand-mark {
  width: 14px;
  height: 14px;
  background: var(--amber);
  transform: rotate(45deg);
  box-shadow: 0 0 0 5px rgba(215, 181, 109, 0.12);
}
.mode-toggle {
  display: inline-flex;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #181910;
}
.mode-toggle a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 9px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.74rem;
  font-weight: 650;
}
.mode-toggle a:hover {
  color: var(--ink);
}
.mode-toggle a.is-active {
  background: var(--amber);
  color: #1b170f;
}
.mode-toggle a:focus-visible {
  position: relative;
  z-index: 1;
  outline: 3px solid var(--focus);
  outline-offset: -3px;
}
.section-nav {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.section-nav::-webkit-scrollbar {
  display: none;
}
.section-nav-group {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.section-nav-group + .section-nav-group {
  margin-left: 2px;
  padding-left: 16px;
  border-left: 1px solid var(--line);
}
.section-nav-group-label {
  color: var(--faint);
  font-size: 0.68rem;
  font-weight: 650;
  white-space: nowrap;
}
.section-nav a {
  flex: 0 0 auto;
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: color 160ms ease-out;
}
.section-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 1px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease-out;
}
.section-nav a:hover,
.section-nav a.is-active {
  color: var(--ink);
}
.section-nav a:hover::after,
.section-nav a.is-active::after {
  transform: scaleX(1);
}
.section-nav a:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}
.hero {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 30px 0 22px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}
.profile-hero {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 54px 0 38px;
  border-top: 6px solid var(--station-color);
}
.profile-hero h1 {
  max-width: 980px;
}
.profile-links {
  margin-top: 14px;
}
.profile-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}
.profile-metric {
  min-width: 0;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid color-mix(in srgb, var(--station-color) 46%, var(--line));
  border-radius: 999px;
  background: color-mix(in srgb, var(--station-color) 9%, var(--panel));
}
.profile-metric strong {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.96rem;
  color: var(--ink);
  font-weight: 720;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.profile-metric span {
  color: var(--muted);
  font-size: 0.76rem;
  white-space: nowrap;
}
.hero-copy {
  grid-column: 1;
}
.eyebrow {
  color: var(--amber);
  margin: 0 0 12px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.82rem;
}
h1 {
  margin: 0;
  max-width: 880px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 10vw, 8.4rem);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: 0;
}
h1, h2 {
  text-wrap: balance;
}
.hero-copy h1 {
  max-width: 620px;
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  line-height: 1.05;
}
.subhead {
  max-width: 660px;
  color: var(--muted);
  margin: 10px 0 0;
  font-size: clamp(0.92rem, 1.6vw, 1.05rem);
  text-wrap: pretty;
}
.hero-metrics {
  grid-column: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hero-metric {
  min-width: 0;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid color-mix(in srgb, var(--amber) 46%, var(--line));
  border-radius: 999px;
  background: color-mix(in srgb, var(--amber) 9%, var(--panel));
}
.hero-metric strong {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.96rem;
  font-weight: 720;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.hero-metric-compact strong {
  font-size: 0.88rem;
}
.hero-metric span {
  color: var(--muted);
  font-size: 0.76rem;
  white-space: nowrap;
}
.photo-rail {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: row dense;
  grid-auto-rows: 132px;
  gap: 8px;
  min-width: 0;
  overflow: hidden;
  border-radius: 6px;
}
.photo-tile {
  min-width: 0;
  min-height: 0;
  position: relative;
  display: block;
  overflow: hidden;
  background: #322f21;
  color: var(--ink);
  text-decoration: none;
}
.photo-tile:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}
.photo-tile:nth-child(6) {
  grid-column: span 2;
}
.photo-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.08) brightness(1.08);
  opacity: 0.96;
  transition: transform 180ms ease-out, opacity 180ms ease-out;
}
.photo-tile:hover img {
  transform: scale(1.025);
  opacity: 1;
}
.photo-tile:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: -3px;
  z-index: 2;
}
.photo-tile span {
  position: absolute;
  inset: auto 0 0;
  min-width: 0;
  padding: 28px 10px 9px;
  background: linear-gradient(to bottom, transparent, rgba(14, 15, 11, 0.92) 56%);
  color: var(--ink);
}
.photo-tile strong,
.photo-tile small {
  display: block;
  min-width: 0;
}
.photo-tile strong {
  display: -webkit-box;
  overflow: hidden;
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 650;
  line-height: 1.16;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.photo-tile small {
  margin-top: 4px;
  overflow: hidden;
  color: var(--amber);
  font-size: 0.64rem;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.photo-empty {
  min-height: 280px;
  display: grid;
  place-items: center;
  border: 1px dashed var(--line);
  color: var(--muted);
}
main {
  padding: 20px 0 54px;
}
section {
  margin-top: 42px;
}
.section-chapter-start {
  margin-top: 76px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.section-chapter-start::before {
  content: attr(data-chapter);
  display: block;
  margin-bottom: 10px;
  color: var(--amber);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 650;
}
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  font-weight: 500;
  margin: 0;
  letter-spacing: 0;
}
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 16px;
}
.section-head p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  text-wrap: pretty;
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 10px;
}
.profile-chart {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
  overflow-x: auto;
}
.profile-week-grid {
  min-width: 760px;
  display: grid;
  grid-template-columns: repeat(13, minmax(54px, 1fr));
  gap: 6px;
}
.profile-week {
  min-height: 54px;
  display: grid;
  align-content: space-between;
  padding: 6px;
  border: 1px solid var(--line);
  background: var(--cell-bg);
}
.profile-week strong {
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.95rem;
}
.profile-week span,
.profile-week small {
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.66rem;
  line-height: 1.05;
}
.month-bar {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 56px;
  gap: 10px;
  align-items: center;
  min-height: 28px;
}
.month-bar span,
.month-bar strong {
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.8rem;
  font-weight: 500;
}
.month-bar strong {
  color: var(--ink);
  text-align: right;
}
.month-bar small,
.sampling-year-row small {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 500;
  white-space: nowrap;
}
.month-bar div {
  height: 12px;
  background: #191a12;
  border: 1px solid var(--line);
}
.month-bar i {
  display: block;
  height: 100%;
  background: var(--amber);
}
.sampling-context {
  display: grid;
  gap: 22px;
  padding: 2px 0;
}
.sampling-context-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(168px, 1fr));
  margin: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.sampling-context-metrics > div {
  min-width: 0;
  padding: 14px 16px;
  border-right: 1px solid var(--line);
}
.sampling-context-metrics > div:last-child {
  border-right: 0;
}
.sampling-context-metrics dt,
.sampling-context-metrics small,
.sampling-year-chart figcaption {
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.7rem;
  line-height: 1.2;
}
.sampling-context-metrics dd {
  margin: 5px 0 3px;
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.35rem;
  font-weight: 720;
  font-variant-numeric: tabular-nums;
}
.sampling-year-chart {
  max-width: 620px;
  margin: 0;
}
.sampling-year-chart figcaption {
  margin-bottom: 9px;
}
.sampling-year-list {
  display: grid;
  gap: 7px;
}
.sampling-year-row {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) minmax(110px, auto);
  gap: 10px;
  align-items: center;
}
.sampling-year-row > span,
.sampling-year-row strong {
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.76rem;
  font-weight: 500;
}
.sampling-year-row strong {
  color: var(--ink);
  text-align: right;
  white-space: nowrap;
}
.sampling-year-row > div {
  height: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #191a12;
}
.sampling-year-row i {
  display: block;
  height: 100%;
  background: var(--amber);
}
.forecast-validation {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.forecast-comparison {
  display: grid;
  gap: 18px;
}
.forecast-comparison-head h3 {
  margin: 0 0 4px;
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 720;
}
.forecast-comparison-head p {
  max-width: 72ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}
.forecast-scorecard {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
}
.forecast-scorecard h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 720;
}
.forecast-scorecard > p {
  min-height: 3.8em;
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}
.forecast-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.forecast-metrics > div {
  min-width: 0;
  padding: 11px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.forecast-metrics dt,
.forecast-metrics small {
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.64rem;
  line-height: 1.25;
}
.forecast-metrics dd {
  margin: 5px 0 2px;
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.1rem;
  font-weight: 720;
  font-variant-numeric: tabular-nums;
}
.forecast-window-details {
  margin-top: 16px;
}
.forecast-window-details summary {
  color: var(--amber);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 700;
}
.forecast-window-table-wrap {
  margin-top: 10px;
}
.accumulation-line-chart {
  margin: 0;
  position: relative;
}
.chart-toolbar {
  display: flex;
  justify-content: flex-end;
  margin: 0 0 8px;
}
.chart-toolbar-label {
  display: inline-block;
  margin: 0 8px 0 0;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
}
.chart-range-controls {
  display: inline-flex;
  gap: 4px;
}
.chart-range-controls button {
  min-height: 30px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 4px 9px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.76rem;
  font-weight: 700;
  cursor: pointer;
}
.chart-range-controls button:hover,
.chart-range-controls button[aria-pressed="true"] {
  border-color: var(--amber);
  background: color-mix(in srgb, var(--amber) 13%, transparent);
  color: var(--ink);
}
.chart-range-controls button:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}
.chart-range-status {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.accumulation-line-chart svg {
  width: 100%;
  aspect-ratio: 720 / 260;
  height: auto;
  max-height: 340px;
  display: block;
}
.chart-axis,
.chart-grid {
  vector-effect: non-scaling-stroke;
  stroke: var(--line);
  stroke-width: 1;
}
.chart-grid {
  stroke-dasharray: 4 6;
}
.chart-year-tick line {
  stroke: var(--muted);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}
.chart-year-tick text {
  fill: var(--muted);
  font-size: 10px;
}
.accumulation-area {
  fill: rgba(215, 181, 109, 0.12);
}
.accumulation-line {
  fill: none;
  stroke: var(--amber);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}
.chart-label,
.chart-callout {
  fill: var(--muted);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.72rem;
  font-variant-numeric: tabular-nums;
}
.chart-callout {
  fill: var(--ink);
  font-size: 0.76rem;
  font-weight: 720;
}
.profile-species-list,
.distinctive-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.profile-species-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 10px;
}
.profile-species-list li {
  min-height: 82px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
}
.profile-species-list span {
  color: var(--ink);
  line-height: 1.2;
}
.profile-species-list small {
  color: var(--muted);
  font-size: 0.78rem;
}
.watch-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 10px;
}
.watch-card {
  min-width: 0;
  min-height: 124px;
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: var(--panel);
  transition: border-color 180ms ease-out;
}
.seasonal-target-card {
  border-left: 4px solid var(--amber);
}
.seasonal-target-card .watch-copy em {
  color: var(--leaf);
}
.seasonal-target-filters {
  display: flex;
  align-items: center;
  gap: 10px 14px;
  margin: 0 0 14px;
  flex-wrap: wrap;
}
.seasonal-target-filter-group {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.seasonal-target-filter-label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 650;
}
.seasonal-target-filter {
  min-height: 30px;
  padding: 4px 9px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.82rem;
  cursor: pointer;
}
.seasonal-target-filter:hover,
.seasonal-target-filter.is-active {
  border-color: var(--amber);
  color: var(--ink);
  background: color-mix(in srgb, var(--amber) 13%, transparent);
}
.seasonal-target-filter:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}
.seasonal-target-filter:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}
.seasonal-target-host-filter span[aria-hidden="true"] {
  margin-right: 3px;
}
.seasonal-target-filter-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}
.target-host-marker {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 7px;
  color: var(--ink);
  font-size: 0.76rem;
  line-height: 1.3;
}
.target-sheet-time {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.3;
}
.target-sheet-time span[aria-hidden="true"] {
  flex: 0 0 auto;
  color: var(--amber);
  font-size: 0.92rem;
}
.target-host-marker span[aria-hidden="true"] {
  flex: 0 0 auto;
  font-size: 0.92rem;
}
.seasonal-target-filter-empty[hidden] {
  display: none;
}
.watch-image {
  min-height: 124px;
  background: var(--panel-2);
}
.watch-image img,
.watch-placeholder {
  width: 100%;
  height: 100%;
}
.watch-image img {
  display: block;
  object-fit: cover;
  transition: transform 180ms ease-out;
}
.watch-placeholder {
  display: grid;
  place-items: center;
  color: var(--faint);
  font-size: 0.72rem;
}
.watch-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 12px;
}
.watch-copy span,
.watch-copy a {
  color: var(--ink);
  font-weight: 650;
  line-height: 1.18;
}
.watch-copy a:hover {
  color: var(--amber);
}
.watch-copy small,
.watch-copy em {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.75rem;
  font-style: normal;
  line-height: 1.3;
}
.watch-copy em {
  margin-top: 5px;
  color: var(--amber);
  font-size: 0.68rem;
  text-transform: uppercase;
}
.signature-gallery {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, minmax(0, 1fr));
  min-height: 340px;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: var(--panel);
}
.signature-card {
  min-width: 0;
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 340px;
  overflow: hidden;
  color: var(--ink);
  border-left: 1px solid var(--line);
  text-decoration: none;
}
.signature-card:first-child {
  border-left: 0;
}
.signature-media,
.signature-media img,
.signature-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.signature-media img {
  object-fit: cover;
  transition: transform 220ms ease;
}
.signature-placeholder {
  display: grid;
  place-items: center;
  color: var(--faint);
  background: var(--panel-2);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.75rem;
}
.signature-copy {
  width: 100%;
  position: relative;
  z-index: 1;
  padding: 48px 14px 14px;
  background: linear-gradient(to bottom, transparent, rgba(16, 17, 13, 0.94) 46%);
}
.signature-copy h3,
.signature-copy p,
.signature-copy small {
  margin: 0;
}
.signature-copy h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.16rem;
  font-weight: 500;
  line-height: 1.05;
}
.signature-card:first-child .signature-copy h3 {
  font-size: 1.48rem;
}
.signature-copy p,
.signature-copy small {
  display: block;
  margin-top: 7px;
  color: var(--ink);
  font-size: 0.78rem;
  line-height: 1.3;
}
.signature-copy small {
  color: var(--muted);
}
.signature-card:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: -3px;
}
.distinctive-overview {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: baseline;
  column-gap: 12px;
  padding: 0 0 18px;
  border-bottom: 1px solid var(--line);
}
.distinctive-overview strong {
  grid-row: span 2;
  color: var(--amber);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  font-weight: 500;
  line-height: 0.9;
}
.distinctive-overview span {
  color: var(--ink);
  font-size: 1rem;
}
.distinctive-overview small {
  color: var(--muted);
  font-size: 0.78rem;
}
.distinctive-ledger {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  padding-top: 24px;
}
.distinctive-heading p,
.distinctive-heading span {
  margin: 0;
}
.distinctive-heading p {
  color: var(--amber);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.82rem;
  text-transform: uppercase;
}
.distinctive-heading span {
  display: block;
  min-height: 42px;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.35;
}
.distinctive-list {
  margin-top: 10px;
  counter-reset: distinctive;
}
.distinctive-list li {
  counter-increment: distinctive;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  padding: 11px 0;
  border-top: 1px solid var(--line);
}
.distinctive-list li::before {
  content: counter(distinctive, decimal-leading-zero);
  color: var(--faint);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.68rem;
}
.distinctive-list span,
.distinctive-list small {
  grid-column: 2;
}
.distinctive-list span,
.distinctive-list a {
  color: var(--ink);
  line-height: 1.25;
}
.distinctive-list a:hover {
  color: var(--amber);
}
.distinctive-list small,
.distinctive-empty {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.76rem;
}
.recap-range {
  margin: 0 0 16px;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.82rem;
  text-transform: uppercase;
}
.recap-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}
.recap-showcase-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 6px;
  min-width: 0;
  transition: border-color 180ms ease-out;
}
.recap-showcase-image {
  height: 150px;
  background: var(--panel);
}
.recap-showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 180ms ease-out;
}
.recap-showcase-image .record-placeholder {
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--faint);
  font-size: 0.7rem;
}
.recap-showcase-copy {
  padding: 12px 14px 16px;
}
.recap-showcase-copy h4 {
  margin: 0 0 4px;
  font-size: 1rem;
  line-height: 1.25;
}
.recap-showcase-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}
.recap-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.recap-card {
  padding: 16px 18px;
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 6px;
  min-width: 0;
}
.recap-card-wide {
  grid-column: span 2;
}
@media (max-width: 720px) {
  .recap-card-wide {
    grid-column: span 1;
  }
}
.recap-headline strong {
  display: block;
  color: var(--amber);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1;
}
.recap-headline span {
  display: block;
  margin-top: 6px;
  color: var(--ink);
}
.recap-headline small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.78rem;
}
.recap-card-label {
  margin: 0 0 10px;
  color: var(--amber);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.78rem;
  text-transform: uppercase;
}
.recap-empty-line {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}
.recap-stacked-copy {
  margin: 0;
  color: var(--ink);
  line-height: 1.45;
}
.habitat-overview {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.9rem;
}
.habitat-preview-note {
  margin: -6px 0 14px;
  color: var(--faint);
  font-size: 0.8rem;
}
.habitat-browse {
  margin: 0 0 18px;
}
.habitat-browse a {
  display: inline-block;
  padding: 9px 12px;
  color: var(--amber);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 0.84rem;
}
.habitat-browse a:hover {
  border-color: var(--amber);
}
.habitat-list {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.habitat-list li {
  padding: 12px 14px;
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 6px;
}
.habitat-species {
  font-weight: 600;
}
.habitat-genus-note {
  color: var(--muted);
  font-size: 0.76rem;
}
.habitat-hosts {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}
.habitat-empty {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.86rem;
}
.habitat-info {
  border-top: 1px solid var(--line);
  margin-bottom: 16px;
}
.habitat-info summary {
  cursor: pointer;
  padding: 10px 2px;
  color: var(--amber);
  font-size: 0.84rem;
  list-style: none;
}
.habitat-info summary::-webkit-details-marker {
  display: none;
}
.habitat-info summary span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-right: 6px;
  border: 1px solid var(--amber);
  border-radius: 50%;
  font-size: 0.72rem;
}
.habitat-info p {
  margin: 0 0 12px;
  padding: 0 2px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}
.habitat-companions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.habitat-candidates li {
  padding: 10px 12px;
}
.habitat-candidates a {
  color: var(--amber);
}
.habitat-candidates small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.76rem;
}
.trend-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.trend-panel {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
}
.trend-panel-wide {
  grid-column: 1 / -1;
}
.trend-panel h3 {
  margin: 0 0 6px;
  font-size: 1.15rem;
}
.trend-panel p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.9rem;
}
.phenology-row {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(260px, 1fr) 132px;
  gap: 12px;
  align-items: center;
  padding: 9px 0;
  border-top: 1px solid var(--line);
}
.phenology-row strong,
.rank-row strong {
  display: block;
  color: var(--ink);
  line-height: 1.15;
}
.phenology-row span,
.phenology-row small,
.rank-row small {
  color: var(--muted);
  font-size: 0.78rem;
}
.phenology-track {
  position: relative;
  height: 14px;
  background: #191a12;
  border: 1px solid var(--line);
}
.phenology-track::before,
.phenology-track::after {
  position: absolute;
  top: 18px;
  color: var(--faint);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.68rem;
}
.phenology-track::before {
  content: "Jan";
  left: 0;
}
.phenology-track::after {
  content: "Dec";
  right: 0;
}
.phenology-track i {
  position: absolute;
  top: -1px;
  bottom: -1px;
  display: block;
  background: var(--amber);
}
.rank-row span {
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.78rem;
  font-weight: 500;
}
.network-line-chart .accumulation-area {
  fill: rgba(138, 167, 122, 0.14);
}
.network-line-chart .accumulation-line {
  stroke: var(--leaf);
}
.station-launch-marker line {
  stroke: var(--station-color);
  stroke-width: 1;
  stroke-dasharray: 3 5;
  opacity: 0.7;
  vector-effect: non-scaling-stroke;
}
.network-line-chart .station-launch-marker circle {
  fill: var(--panel);
  stroke: var(--station-color);
  stroke-width: 3;
  vector-effect: non-scaling-stroke;
}
.station-launches {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 2px 0;
}
.station-launches p {
  flex: 0 0 auto;
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
}
.station-launches ul,
.monthly-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.station-launches li {
  display: grid;
  grid-template-columns: 8px auto;
  align-items: center;
  column-gap: 6px;
  color: var(--ink);
  font-size: 0.72rem;
}
.station-launches li i {
  grid-row: span 2;
  width: 7px;
  height: 7px;
  border: 2px solid var(--station-color);
  border-radius: 50%;
}
.station-launches time {
  color: var(--muted);
  font-size: 0.64rem;
  font-variant-numeric: tabular-nums;
}
.chart-caveat {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}
.monthly-overlay-chart {
  margin: 0;
  position: relative;
}
.monthly-legend {
  margin-bottom: 10px;
}
.monthly-legend li {
  display: grid;
  grid-template-columns: 20px auto;
  align-items: center;
  column-gap: 7px;
}
.monthly-legend i {
  grid-row: span 2;
  width: 20px;
  height: 3px;
  background: var(--series-color);
}
.monthly-legend strong {
  color: var(--ink);
  font-size: 0.74rem;
  line-height: 1;
}
.monthly-legend span {
  color: var(--muted);
  font-size: 0.64rem;
  line-height: 1.2;
}
.monthly-overlay-chart svg {
  width: 100%;
  aspect-ratio: 720 / 260;
  height: auto;
  max-height: 340px;
  display: block;
}
.monthly-line {
  fill: none;
  stroke: var(--series-color);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}
.monthly-point {
  fill: var(--panel);
  stroke: var(--series-color);
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}
.monthly-hit-target {
  fill: transparent;
  stroke: transparent;
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
  cursor: crosshair;
}
.monthly-point-group:focus {
  outline: none;
}
.monthly-point-group:hover .monthly-hit-target,
.monthly-point-group:focus .monthly-hit-target {
  fill: rgba(215, 181, 109, 0.12);
  stroke: var(--amber);
}
.monthly-point-group:hover .monthly-point,
.monthly-point-group:focus .monthly-point {
  fill: var(--amber);
  stroke-width: 3;
}
.monthly-tooltip {
  position: absolute;
  z-index: 4;
  width: min(240px, calc(100% - 16px));
  border: 1px solid var(--amber);
  background: rgba(21, 22, 17, 0.97);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.32);
  padding: 10px 12px;
  pointer-events: none;
}
.monthly-tooltip-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 7px;
}
.monthly-tooltip-head strong {
  color: var(--paper);
}
.monthly-tooltip-head span {
  color: var(--amber);
  font-size: 0.72rem;
  text-align: right;
}
.monthly-tooltip ul {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.monthly-tooltip li {
  display: grid;
  grid-template-columns: 8px minmax(0, 1fr) auto;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 0.76rem;
}
.monthly-tooltip li i {
  width: 7px;
  height: 7px;
  background: var(--station-color);
}
.monthly-tooltip li i.shared-dot {
  background: color-mix(in srgb, var(--muted) 58%, var(--panel));
}
.monthly-tooltip li strong {
  color: var(--paper);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
.rank-row {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 9px;
  padding: 8px 0;
  border-top: 1px solid var(--line);
}
.rank-row div {
  position: relative;
  min-height: 42px;
}
.rank-row i {
  display: block;
  height: 4px;
  margin-top: 7px;
  background: var(--amber);
}
.similarity-wrap {
  overflow-x: auto;
}
.similarity-table {
  min-width: 760px;
  table-layout: fixed;
}
.similarity-table th,
.similarity-table td {
  text-align: center;
  padding: 8px;
}
.similarity-table th:first-child {
  text-align: left;
  width: 118px;
}
.similarity-table td {
  background: var(--cell-bg);
}
.similarity-table td span,
.similarity-table td small {
  display: block;
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
.similarity-table td small {
  color: var(--muted);
  font-size: 0.68rem;
}
.insight-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 8px;
}
.insight-card {
  min-height: 128px;
  grid-column: span 3;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(215, 181, 109, 0.08), rgba(255, 255, 255, 0.015) 46%), var(--panel);
  transition: border-color 180ms ease-out, background-color 180ms ease-out;
}
.insight-card p,
.insight-card small {
  margin: 0;
  color: var(--amber);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.72rem;
}
.insight-card h3 {
  margin: 10px 0 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 500;
  line-height: 1.1;
  text-wrap: balance;
}
.insight-card span {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
  text-wrap: pretty;
}
.insight-card small {
  color: var(--faint);
  padding-top: 8px;
}
.feed-section-copy {
  display: grid;
  justify-items: end;
  gap: 8px;
}
.insight-feedback-copy {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 6px 9px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.76rem;
  cursor: pointer;
}
.insight-feedback-copy:hover {
  border-color: var(--amber);
  color: var(--amber);
}
.insight-feedback-status {
  min-height: 1.25em;
  margin: -8px 0 12px;
  color: var(--faint);
  font-size: 0.78rem;
}
.insight-feedback {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 12px;
  padding-top: 9px;
  border-top: 1px solid rgba(240, 232, 214, 0.09);
}
.insight-feedback > span {
  margin-right: auto;
  color: var(--faint);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.68rem;
}
.insight-rating {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  line-height: 1;
  cursor: pointer;
}
.insight-rating:hover {
  border-color: var(--amber);
  color: var(--ink);
}
.insight-rating.is-selected[data-insight-rating="up"] {
  border-color: var(--leaf);
  background: color-mix(in srgb, var(--leaf) 18%, transparent);
  color: var(--ink);
}
.insight-rating.is-selected[data-insight-rating="down"] {
  border-color: var(--rust);
  background: color-mix(in srgb, var(--rust) 18%, transparent);
  color: var(--ink);
}
.insight-rating:focus-visible,
.insight-feedback-copy:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}
.insight-index {
  position: absolute;
  top: 10px;
  right: 12px;
  color: rgba(243, 234, 215, 0.24);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 1rem;
}
.station-card {
  min-height: 218px;
  display: grid;
  grid-template-rows: minmax(90px, 1fr) auto auto;
  gap: 16px;
  position: relative;
  overflow: hidden;
  background: color-mix(in srgb, var(--station-color) 7%, var(--panel));
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 18px 15px 22px;
  transition: border-color 180ms ease-out, background-color 180ms ease-out;
}
.station-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--station-color, var(--amber));
  border-radius: 8px 0 0 8px;
}
.station-card h3 {
  margin: 9px 0 7px;
  font-size: 1.32rem;
  line-height: 1.06;
}
@media (hover: hover) {
  .station-card:hover,
  .sighting-card:hover,
  .night-card:hover,
  .pulse-card:hover,
  .insight-card:hover {
    border-color: color-mix(in srgb, var(--amber) 48%, var(--line));
    background-color: color-mix(in srgb, var(--amber) 5%, var(--panel));
  }
  .sighting-card:hover .sighting-image img,
  .night-card:hover .night-image img {
    transform: scale(1.025);
  }
  .watch-card:hover,
  .recap-showcase-card:hover,
  .record-card:hover {
    border-color: color-mix(in srgb, var(--amber) 48%, var(--line));
  }
  .watch-card:hover .watch-image img,
  .recap-showcase-card:hover .recap-showcase-image img,
  .record-card:hover .record-image img,
  .signature-card:hover .signature-media img {
    transform: scale(1.025);
  }
}
.station-card p {
  margin: 0;
  color: var(--muted);
}
.station-location {
  max-width: 28ch;
  line-height: 1.35;
}
.station-status {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
}
.station-status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--leaf);
}
.station-status-inactive {
  color: var(--faint);
}
.station-status-inactive span {
  background: var(--faint);
}
.station-numbers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}
.station-numbers span {
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 8px 9px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.02);
}
.station-numbers strong,
.station-numbers small {
  display: block;
}
.station-numbers strong {
  color: var(--ink);
  font-size: 1.12rem;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.station-numbers small {
  margin-top: 4px;
  font-size: 0.7rem;
}
.latest {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.7rem;
}
.latest time {
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.sighting-grid,
.pulse-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}
.sighting-card {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  min-height: 128px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 180ms ease-out, background-color 180ms ease-out;
}
.sighting-image {
  background: var(--panel-2);
}
.sighting-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease-out;
}
.sighting-placeholder {
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--faint);
  font-size: 0.8rem;
}
.sighting-copy {
  min-width: 0;
  padding: 12px;
}
.sighting-copy p,
.sighting-copy span {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}
.sighting-copy h3 {
  margin: 7px 0 8px;
  font-size: 1rem;
  line-height: 1.2;
}
.night-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: var(--panel);
  margin-bottom: 12px;
}
.night-summary div {
  padding: 14px 16px;
  border-right: 1px solid var(--line);
}
.night-summary div:last-child {
  border-right: 0;
}
.night-summary strong {
  display: block;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  line-height: 1.1;
}
.night-summary span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.82rem;
}
.night-stations {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.night-station-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  border: 1px solid color-mix(in srgb, var(--station-color) 64%, var(--line));
  border-left-width: 5px;
  border-radius: 4px;
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--muted);
  text-decoration: none;
  font: inherit;
}
.night-filter-chip {
  cursor: pointer;
}
.night-station-chip:hover {
  color: var(--ink);
  background: color-mix(in srgb, var(--station-color) 12%, var(--panel));
}
.night-filter-chip[aria-pressed="true"] {
  color: var(--ink);
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--station-color) 22%, transparent), transparent),
    var(--panel-2);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--station-color) 52%, transparent);
}
.night-station-chip:focus-visible {
  outline: 2px solid var(--station-color);
  outline-offset: 2px;
}
.night-station-chip strong {
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
.night-filter-status {
  margin: -8px 0 12px;
  color: var(--muted);
  font-size: 0.82rem;
}
.night-filter-empty {
  margin-top: 14px;
}
.night-filter-empty[hidden] {
  display: none;
}
.network-total-chip {
  background: color-mix(in srgb, var(--amber) 12%, var(--panel));
  color: var(--ink);
}
.live-new-station-counter .night-station-chip:not(.network-total-chip) {
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 8px;
  row-gap: 1px;
}
.live-station-chip-name {
  min-width: 0;
}
.live-new-station-counter .night-station-chip small {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.15;
}
.live-new-station-counter .night-station-chip small b {
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-weight: 700;
}
.night-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(178px, 1fr));
  gap: 10px;
}
.night-card {
  display: grid;
  grid-template-rows: 150px minmax(116px, auto);
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
  transition: border-color 180ms ease-out, background-color 180ms ease-out;
}
.night-card[hidden] {
  display: none;
}
.night-image {
  min-width: 0;
  background: var(--panel-2);
}
.night-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease-out;
}
.night-placeholder {
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--faint);
  font-size: 0.82rem;
}
.night-copy {
  min-width: 0;
  padding: 10px;
}
.night-copy p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 0.76rem;
}
.night-copy h3 {
  margin: 0 0 10px;
  font-size: 0.95rem;
  line-height: 1.18;
}
.night-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.night-badges span {
  border-left: 4px solid var(--station-color, var(--amber));
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  padding: 3px 6px;
  border-radius: 3px;
  font-size: 0.72rem;
}
.pulse-card {
  padding: 16px;
  background: var(--panel-2);
  border-left: 4px solid var(--amber);
  border-radius: 4px;
  transition: border-color 180ms ease-out, background-color 180ms ease-out;
}
.pulse-card p {
  margin: 0 0 10px;
  color: var(--amber);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.78rem;
}
.pulse-card h3 {
  margin: 0 0 16px;
  font-size: 1.05rem;
  line-height: 1.2;
}
.pulse-card div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pulse-card span {
  color: var(--muted);
  font-size: 0.82rem;
}
.record-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}
.record-card {
  display: grid;
  grid-template-rows: 150px minmax(116px, auto);
  min-width: 0;
  overflow: hidden;
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: border-color 180ms ease-out;
}
.record-image {
  min-width: 0;
  background: var(--panel);
}
.record-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease-out;
}
.record-placeholder {
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--faint);
  font-size: 0.82rem;
}
.record-copy {
  min-width: 0;
  padding: 12px 16px;
}
.record-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.record-card h3 {
  margin: 10px 0 6px;
  font-size: 1.02rem;
  line-height: 1.2;
}
.record-card p {
  margin: 0;
  color: var(--muted);
}
.record-archive {
  border-top: 1px solid var(--line);
}
.record-archive summary {
  cursor: pointer;
  padding: 13px 2px;
  color: var(--amber);
  font-size: 0.86rem;
}
.record-archive[open] summary {
  margin-bottom: 8px;
}
.record-archive-controls,
.record-grid-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 2px 2px;
  color: var(--muted);
  font-size: 0.86rem;
}
.record-grid-controls {
  padding: 0 2px 14px;
}
.record-archive-controls button,
.record-grid-controls button {
  border: 1px solid var(--amber);
  border-radius: 4px;
  padding: 8px 12px;
  background: transparent;
  color: var(--amber);
  font: inherit;
  cursor: pointer;
}
.record-archive-controls button:hover,
.record-grid-controls button:hover {
  background: color-mix(in srgb, var(--amber) 10%, transparent);
}
.record-archive-controls button:focus-visible,
.record-grid-controls button:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}
.record-filter-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  margin-bottom: 14px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
}
.record-filter-row label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.86rem;
}
.record-filter-row select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 10px 12px;
  background: #181910;
  color: var(--ink);
  font: inherit;
}
.record-filter-row select:focus {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}
.unique-filter-row {
  display: grid;
  grid-template-columns: minmax(140px, 0.22fr) minmax(220px, 1fr);
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
}
.unique-filter-row label {
  color: var(--muted);
  font-size: 0.86rem;
}
.unique-filter-row input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 10px 12px;
  background: #181910;
  color: var(--ink);
  font: inherit;
}
.unique-filter-row input:focus {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}
.unique-station-grid {
  display: grid;
  gap: 14px;
}
.unique-station-panel {
  border: 1px solid var(--line);
  border-left: 5px solid var(--station-color, var(--amber));
  border-radius: 6px;
  background: var(--panel);
  overflow: hidden;
}
.unique-station-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}
.unique-station-head p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 0.82rem;
}
.unique-station-head h3 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.1;
}
.unique-station-head strong {
  color: var(--station-color, var(--amber));
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 0.95;
}
.unique-lists {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 14px;
}
.unique-lists h4 {
  margin: 0 0 8px;
  color: var(--amber);
  font-size: 0.9rem;
}
.unique-lists ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.unique-lists li {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.02);
}
.unique-lists li strong,
.unique-lists li span {
  display: block;
}
.unique-lists li strong {
  font-size: 0.9rem;
  line-height: 1.2;
}
.unique-lists li span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.76rem;
}
.unique-full-list {
  border-top: 1px solid var(--line);
  padding: 0 14px 14px;
}
.unique-full-list summary {
  cursor: pointer;
  padding: 12px 0;
  color: var(--amber);
}
.unique-table-wrap {
  max-height: min(62vh, 620px);
}
.unique-empty-note {
  margin: 0;
  padding: 16px;
  color: var(--muted);
}
.flag {
  display: inline-block;
  margin: 0 5px 5px 0;
  padding: 2px 7px;
  color: #1b170f;
  background: var(--amber);
  border-radius: 4px;
  font-size: 0.74rem;
  line-height: 1.4;
  white-space: nowrap;
}
.table-wrap {
  max-height: min(72vh, 760px);
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
}
table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
  font-size: 0.92rem;
  font-variant-numeric: tabular-nums;
}
th, td {
  text-align: left;
  padding: 11px 12px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
th {
  position: sticky;
  top: 0;
  z-index: 2;
  background: #1c1d15;
  color: var(--amber);
  font-weight: 650;
  white-space: nowrap;
  box-shadow: 0 1px 0 rgba(240, 232, 214, 0.13), 0 7px 12px rgba(0, 0, 0, 0.12);
}
tbody tr {
  transition: background-color 150ms ease-out;
}
tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.018);
}
@media (hover: hover) {
  tbody tr:hover {
    background: color-mix(in srgb, var(--amber) 6%, var(--panel));
  }
}
th.station-head {
  color: var(--station-color);
}
th.station-head::before {
  content: "";
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  margin-right: 0.45rem;
  background: var(--station-color);
  vertical-align: -0.05rem;
}
.sort-button {
  appearance: none;
  border: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
  text-align: left;
}
.sort-button span::after {
  content: "↕";
  color: var(--faint);
  font-size: 0.78rem;
}
.sort-button[data-direction="asc"] span::after {
  content: "↑";
  color: var(--ink);
}
.sort-button[data-direction="desc"] span::after {
  content: "↓";
  color: var(--ink);
}
.sort-button:focus-visible,
.view-toggle-button:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}
td span {
  color: var(--muted);
  font-size: 0.84rem;
}
a {
  color: var(--amber);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
a:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}
a:hover { color: #f2d78e; }
.station-heading-link {
  color: var(--ink);
  text-decoration-color: color-mix(in srgb, var(--station-color, var(--amber)) 72%, transparent);
  text-underline-offset: 3px;
}
.station-heading-link:hover {
  color: var(--amber);
}
.tag {
  display: inline-block;
  color: #1b170f;
  background: var(--amber);
  border-radius: 4px;
  padding: 2px 8px;
  white-space: nowrap;
}
.empty {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  margin: 0;
  padding: 18px;
  border: 1px dashed var(--line);
  border-radius: 6px;
  background: rgba(215, 181, 109, 0.025);
}
.empty::before {
  content: "";
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  margin: 6px 2px 0 1px;
  background: var(--amber);
  opacity: 0.75;
  transform: rotate(45deg);
}
.view-toggle {
  display: inline-flex;
  gap: 1px;
  padding: 3px;
  margin: 0 0 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #181910;
}
.view-toggle-button {
  appearance: none;
  border: 0;
  border-radius: 4px;
  padding: 7px 10px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.86rem;
  cursor: pointer;
}
.view-toggle-button.is-active {
  background: var(--amber);
  color: #1b170f;
}
.view-panel[hidden] {
  display: none;
}
.calendar-table {
  table-layout: fixed;
  min-width: 920px;
}
.calendar-table th,
.calendar-table td {
  text-align: center;
  padding: 8px;
}
.calendar-table td:first-child,
.calendar-table th:first-child {
  width: 96px;
  text-align: left;
}
.calendar-table th:nth-child(2),
.calendar-table td:nth-child(2) {
  width: 92px;
}
.calendar-table th:nth-child(3),
.calendar-table td:nth-child(3) {
  width: 88px;
}
.calendar-table th.station-head {
  width: 82px;
}
.calendar-table th.station-head::before {
  display: block;
  margin: 0 auto 4px;
}
.calendar-table .sort-button {
  width: 100%;
  justify-content: center;
  white-space: normal;
  line-height: 1.1;
}
.calendar-table th:first-child .sort-button {
  justify-content: flex-start;
}
.calendar-line-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: baseline;
  margin: 0 0 12px;
}
.calendar-line-head h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.08rem;
}
.calendar-line-head p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}
.daily-richness-line-chart {
  position: relative;
  margin: 0 0 16px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
}
.daily-richness-line-chart svg {
  width: 100%;
  aspect-ratio: 900 / 300;
  height: auto;
  display: block;
}
.daily-richness-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 14px;
  margin: 0 0 10px;
  padding: 0;
  list-style: none;
}
.daily-richness-legend li { display: contents; }
.daily-richness-legend button,
.daily-richness-shared-key {
  display: inline-grid;
  grid-template-columns: 18px auto;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font: inherit;
  font-size: 0.72rem;
}
.daily-richness-legend button {
  min-height: 28px;
  padding: 4px 6px;
  border: 1px solid transparent;
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  transition: color 160ms ease-out, background-color 160ms ease-out, border-color 160ms ease-out;
}
.daily-richness-legend button[aria-pressed="true"] {
  color: var(--ink);
  border-color: color-mix(in srgb, var(--series-color) 42%, var(--line));
  background: color-mix(in srgb, var(--series-color) 10%, transparent);
}
.daily-richness-legend button:hover {
  color: var(--ink);
  border-color: color-mix(in srgb, var(--series-color) 48%, var(--line));
}
.daily-richness-legend button:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}
.daily-richness-legend button[aria-pressed="false"] {
  color: var(--faint);
  text-decoration: line-through;
  opacity: 0.72;
}
.daily-richness-legend button[aria-pressed="false"] i { opacity: 0.25; }
.daily-richness-legend i {
  width: 16px;
  height: 9px;
  border-radius: 2px;
  opacity: 0.85;
  background: var(--series-color);
}
.daily-richness-shared-key {
  --series-color: color-mix(in srgb, var(--muted) 58%, var(--panel));
}
.daily-richness-station-bar {
  fill: var(--series-color);
  opacity: 0.9;
}
.daily-richness-station-bar[hidden] { display: none; }
.daily-richness-shared-bar {
  fill: color-mix(in srgb, var(--muted) 58%, var(--panel));
  opacity: 0.88;
}
.calendar-cell {
  width: 82px;
}
.calendar-cell span {
  width: 100%;
  min-height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--station-color);
  background: var(--cell-bg);
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.86rem;
}
footer {
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding: 22px 0 34px;
  font-size: 0.9rem;
}
footer div {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}
.footer-utility-link {
  margin-left: 10px;
  color: var(--faint);
  font-size: 0.78rem;
}
.validation-intro {
  max-width: 760px;
  padding: 46px 0 8px;
}
.validation-intro h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
}
.validation-intro > p:last-child {
  max-width: 680px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.5;
}
.forecast-method-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.forecast-method-copy p {
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}
.forecast-method-copy strong {
  color: var(--ink);
}
@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-copy,
  .hero-metrics,
  .photo-rail {
    grid-column: auto;
    grid-row: auto;
  }
  .hero-copy {
    order: 1;
  }
  .hero-metrics {
    order: 2;
  }
  .photo-rail {
    order: 3;
    grid-auto-rows: 146px;
  }
  .signature-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .signature-card,
  .signature-card:first-child {
    min-height: 280px;
    border: 1px solid var(--line);
  }
  .signature-card:nth-child(odd) {
    border-left: 0;
  }
  .distinctive-ledger {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .trend-grid {
    grid-template-columns: 1fr;
  }
  .phenology-row {
    grid-template-columns: 1fr;
  }
  .phenology-track {
    margin-bottom: 20px;
  }
  .section-head {
    display: block;
  }
  .section-head p {
    margin-top: 8px;
  }
  .calendar-line-head {
    display: block;
  }
  .calendar-line-head p {
    margin-top: 5px;
  }
  .feed-section-copy {
    justify-items: start;
    margin-top: 8px;
  }
  .insight-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .insight-card,
  .insight-card:nth-child(1),
  .insight-card:nth-child(2) {
    grid-column: span 1;
  }
  .forecast-method-copy {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 621px) and (max-width: 1180px) {
  :root {
    --topbar-height: 108px;
  }
  .topbar {
    align-items: stretch;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    min-height: var(--topbar-height);
    padding: 10px 16px 0;
  }
  .topbar-primary {
    width: 100%;
    min-height: 38px;
    justify-content: space-between;
  }
  .section-nav {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .section-nav::-webkit-scrollbar {
    display: none;
  }
  .section-nav a {
    flex: 0 0 auto;
    white-space: nowrap;
  }
}
@media (max-width: 620px) {
  :root {
    --topbar-height: 108px;
  }
  .topbar {
    align-items: stretch;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    min-height: var(--topbar-height);
    padding: 10px 16px 0;
  }
  .topbar-primary {
    width: 100%;
    min-height: 38px;
    justify-content: space-between;
  }
  .topbar-mode-only {
    min-height: var(--topbar-height);
    padding: 10px 16px;
  }
  .topbar-mode-only .topbar-primary {
    width: 100%;
  }
  .section-nav {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .section-nav::-webkit-scrollbar {
    display: none;
  }
  .section-nav a {
    flex: 0 0 auto;
    white-space: nowrap;
  }
  h1 {
    font-size: clamp(3rem, 17vw, 5rem);
  }
  .insight-grid {
    grid-template-columns: 1fr;
  }
  .photo-rail {
    width: calc(100vw - 16px);
    margin-right: calc(50% - 50vw);
    padding-right: 16px;
    display: grid;
    grid-template-columns: none;
    grid-template-rows: 230px;
    grid-auto-flow: column;
    grid-auto-columns: min(78vw, 320px);
    grid-auto-rows: auto;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    border-radius: 0;
    scroll-padding-left: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
    touch-action: pan-x;
    -webkit-mask-image: linear-gradient(to right, #000 0 calc(100% - 22px), transparent 100%);
    mask-image: linear-gradient(to right, #000 0 calc(100% - 22px), transparent 100%);
  }
  .photo-rail::-webkit-scrollbar {
    display: none;
  }
  .photo-tile,
  .photo-tile:nth-child(1),
  .photo-tile:nth-child(6) {
    grid-column: auto;
    grid-row: 1;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
  .sighting-card {
    grid-template-columns: 92px minmax(0, 1fr);
  }
  .watch-grid {
    grid-template-columns: 1fr;
  }
  .watch-card {
    grid-template-columns: 104px minmax(0, 1fr);
  }
  .signature-gallery {
    grid-template-columns: 1fr;
  }
  .signature-card,
  .signature-card:first-child,
  .signature-card:nth-child(odd) {
    min-height: 260px;
    border: 0;
    border-top: 1px solid var(--line);
  }
  .signature-card:first-child {
    min-height: 320px;
    border-top: 0;
  }
  .signature-copy h3,
  .signature-card:first-child .signature-copy h3 {
    font-size: 1.3rem;
  }
  .distinctive-overview {
    align-items: start;
  }
  .distinctive-overview strong {
    font-size: 2.5rem;
  }
  .unique-filter-row,
  .unique-lists {
    grid-template-columns: 1fr;
  }
  .unique-station-head {
    gap: 12px;
  }
  .night-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .night-summary div {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .night-summary div:nth-child(2n) {
    border-right: 0;
  }
  .night-summary div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
  .night-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .night-card {
    grid-template-rows: 132px minmax(126px, auto);
  }
  .sampling-context-metrics > div:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    border-right: 0;
  }
  .forecast-validation {
    grid-template-columns: 1fr;
  }
  .chart-year-tick-odd text {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
