/* seedscan.net — the site stylesheet.
   Layout: a light-blue page column on a dark stone backdrop, a pixel wordmark,
   a biome-map banner, a wooden plank nav, wooden sign headings over rounded
   panels (the Chunkbase-style frame players already know how to read). Every
   rule here is seedscan's own. One stylesheet for every page. */

:root {
  --stone: #383838;
  --sky: #b7d4ee;
  --sky-2: #a6c8e8;
  --panel: #e2ecf7;
  --panel-bd: #ffffff;
  --box: #f5f8fc;
  --box-bd: #bfd0e0;
  --line: #d3e0ec;
  --wood: #d0904d;
  --wood-2: #b97538;
  --wood-3: #915a29;
  --wood-4: #5b3816;
  --wood-text: #fff7ea;
  --ink: #1c2734;
  --mut: #5a6b7d;
  --link: #1a56b8;
  --brand: #20a06a;
  --brand-2: #157a4f;
  --gold: #e0a24e;
  --font: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --display: 'Fredoka', 'Segoe UI', Arial, sans-serif;
  --pixel: 'Press Start 2P', 'Courier New', monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  color: var(--ink);
  font: 14px/1.55 var(--font);
  -webkit-font-smoothing: antialiased;
  background-color: var(--stone);
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,.028) 0 2px, transparent 2px 9px),
    repeating-linear-gradient(-45deg, rgba(0,0,0,.14) 0 2px, transparent 2px 9px);
}
a { color: var(--link); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; }
button { font-family: inherit; }
code { font-family: ui-monospace, Menlo, Consolas, 'Liberation Mono', monospace; }

/* ── header band + wordmark ──────────────────────────────────────────── */
.site-head { height: 112px; }
.site-head .wrap { max-width: 1100px; margin: 0 auto; height: 100%; display: flex; align-items: center; justify-content: center; position: relative; }
.wordmark {
  display: inline-flex; align-items: baseline;
  font-family: var(--pixel); font-size: 38px; line-height: 1; letter-spacing: 2px;
  padding: 10px 6px 4px; transform: translateY(14px);
  text-decoration: none; position: relative; z-index: 3;
}
.wordmark:hover { text-decoration: none; }
.wordmark .a { color: #f6f6f6; text-shadow: 2px 2px 0 #a0a0a0, 4px 4px 0 #626262, 6px 6px 0 #222; }
.wordmark .b { color: #3ed08f; text-shadow: 2px 2px 0 #1f8f5f, 4px 4px 0 #146342, 6px 6px 0 #0a3423; }

/* ── the page column ─────────────────────────────────────────────────── */
.page {
  max-width: 1100px; margin: 0 auto; padding: 34px 30px 36px; position: relative;
  background-color: var(--sky);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72'%3E%3Cg fill='%23ffffff' fill-opacity='.22'%3E%3Crect x='8' y='8' width='5' height='5'/%3E%3Crect x='13' y='13' width='5' height='5'/%3E%3Crect x='18' y='18' width='5' height='5'/%3E%3Crect x='50' y='42' width='5' height='5'/%3E%3Crect x='45' y='47' width='5' height='5'/%3E%3Crect x='40' y='52' width='5' height='5'/%3E%3C/g%3E%3C/svg%3E");
  border-radius: 16px 16px 0 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.35), 0 -10px 40px rgba(0,0,0,.35);
}
main { display: block; }

/* banner: our own rendered biome map */
.banner {
  display: block; position: relative; max-width: 1000px; height: 210px; margin: 0 auto 20px;
  border-radius: 16px; overflow: hidden; border: 3px solid rgba(255,255,255,.6);
  box-shadow: 0 8px 22px rgba(20,40,70,.28); background: #1b2a44;
}
.banner img { width: 100%; height: 100%; object-fit: cover; display: block; image-rendering: auto; }
.banner:hover { text-decoration: none; }
.banner-tag {
  position: absolute; right: 12px; bottom: 10px; font-size: 11.5px; font-weight: 600; color: #fff;
  background: rgba(10,20,35,.62); padding: 4px 10px; border-radius: 999px; opacity: 0; transition: opacity .15s;
}
.banner:hover .banner-tag { opacity: 1; }

/* wooden plank nav */
.plank {
  position: relative; max-width: 1000px; height: 54px; margin: 0 auto 26px; padding: 0 64px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  border: 2px solid var(--wood-4); border-radius: 6px;
  background-image:
    repeating-linear-gradient(180deg, rgba(60,30,10,.07) 0 1px, transparent 1px 8px),
    linear-gradient(180deg, #dc9c5c 0%, #cd8848 45%, #bf7a3c 55%, #cb8747 100%);
  box-shadow: 0 4px 0 var(--wood-4), 0 10px 22px rgba(30,20,10,.35), inset 0 1px 0 rgba(255,255,255,.4);
}
.plank::before, .plank::after {
  content: ""; position: absolute; top: 50%; width: 22px; height: 22px; margin-top: -11px; border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 44%, #3a3a3a 44% 56%, transparent 56%),
    radial-gradient(circle at 38% 34%, #f4f4f4, #a5a5a5 58%, #5a5a5a 100%);
  box-shadow: inset 0 0 0 2px #444, 0 1px 3px rgba(0,0,0,.55);
}
.plank::before { left: 18px; }
.plank::after { right: 18px; }
.plank a {
  font-family: var(--display); font-weight: 600; font-size: 21px; color: var(--wood-text);
  text-shadow: 0 2px 0 rgba(60,30,10,.55); padding: 5px 22px; border-radius: 8px; text-decoration: none;
  transition: background .12s;
}
.plank a:hover { background: rgba(91,56,22,.22); text-decoration: none; }
.plank a[aria-current] {
  background: linear-gradient(180deg, #5b3816, #7c4b1f); color: #ffe6bf;
  box-shadow: inset 0 2px 5px rgba(0,0,0,.5), 0 1px 0 rgba(255,255,255,.25);
}

/* ── signs + panels ──────────────────────────────────────────────────── */
.sign {
  position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 14px;
  margin: 24px 26px -8px 0; padding: 0 22px; min-height: 44px;
  border: 2px solid var(--wood-4); border-right: 0; border-radius: 6px 0 0 6px;
  background-image:
    repeating-linear-gradient(180deg, rgba(60,30,10,.06) 0 1px, transparent 1px 7px),
    linear-gradient(180deg, #e2a463 0%, #cf8a49 55%, #bd7838 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.4), inset 0 -2px 0 rgba(0,0,0,.16), 0 3px 8px rgba(30,20,10,.28);
}
.sign::after {
  content: ""; position: absolute; right: -26px; top: -2px; bottom: -2px; width: 26px;
  background: linear-gradient(180deg, #c7803f, #a86428);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.sign h1, .sign h2 {
  margin: 0; padding: 8px 0; font-family: var(--display); font-weight: 700; font-size: 19px; line-height: 1.2;
  letter-spacing: .06em; text-transform: uppercase; color: #fff8ec;
  text-shadow: 0 2px 0 rgba(70,35,10,.6);
}
.sign.title h1, .sign.title h2 { text-transform: none; letter-spacing: 0; font-size: 20px; }
.sign .right {
  flex: none; font-size: 12px; font-weight: 600; color: #fff2dd; text-shadow: 0 1px 0 rgba(0,0,0,.45);
  background: rgba(91,56,22,.35); padding: 3px 10px; border-radius: 999px; white-space: nowrap;
}
.panel {
  position: relative; z-index: 1; margin: 0 0 8px; padding: 22px 20px 18px;
  background: var(--panel); border: 1px solid var(--panel-bd); border-radius: 0 14px 14px 14px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 8px 24px rgba(30,55,90,.16);
}
.panel > :first-child { margin-top: 0; }
.panel h3 { font-family: var(--display); font-weight: 600; font-size: 16px; margin: 16px 0 8px; }
.note { background: #fff; border: 1px solid var(--box-bd); border-radius: 6px; padding: 10px 12px; color: #3b4b5c; font-size: 13px; }
.mut { color: var(--mut); }
.small { font-size: 12.5px; }

/* two-column home */
.cols2 { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 22px; align-items: start; }
.cols2 > * { min-width: 0; }

/* form box */
.box { background: var(--box); border: 1px solid var(--box-bd); border-radius: 6px; padding: 12px 14px; }
.frm { display: grid; grid-template-columns: 92px minmax(0, 1fr); gap: 10px 8px; align-items: center; }
.frm label { font-size: 13px; }
.frm .row { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; min-width: 0; }
.in {
  height: 30px; border: 1px solid #b6c6d6; border-radius: 3px; background: #fff; padding: 0 8px;
  font: 13px var(--font); color: var(--ink); min-width: 0;
}
.in:focus { outline: 2px solid rgba(32,160,106,.35); border-color: var(--brand); }
.in.seed { width: 300px; font-variant-numeric: tabular-nums; }
.in.static { display: inline-flex; align-items: center; background: #edf2f7; color: var(--mut); }
select.in { padding-right: 22px; }
.in.xz { width: 82px; }
.btn {
  display: inline-flex; align-items: center; gap: 6px; height: 30px; padding: 0 11px;
  border: 1px solid #a9b8c7; border-radius: 3px; background: linear-gradient(#fff, #e7edf3);
  color: var(--ink); font: 600 12.5px var(--font); cursor: pointer; white-space: nowrap; text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
}
.btn:hover { background: linear-gradient(#fff, #d9e3ec); text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn.primary { background: linear-gradient(#41d296, #21a26c); border-color: #16704a; color: #fff; text-shadow: 0 1px 0 rgba(0,0,0,.22); }
.btn.primary:hover { background: linear-gradient(#4bdb9f, #1d9663); }
.btn.wood {
  height: 40px; padding: 0 20px; font: 600 16px var(--display); color: var(--wood-text); border-color: var(--wood-4);
  background: linear-gradient(180deg, #dd9d5d, #bf7a3c); text-shadow: 0 1px 0 rgba(60,30,10,.5); border-radius: 6px;
  box-shadow: 0 3px 0 var(--wood-4);
}
.btn.wood:hover { background: linear-gradient(180deg, #e4a869, #c6813f); }
.chk { display: inline-flex; align-items: center; gap: 5px; cursor: pointer; font-size: 13px; user-select: none; }
.chk input { accent-color: var(--brand); margin: 0; }

/* features (marker) toggles + biome highlight */
.feat { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; margin-top: 10px; }
.feat .feat { margin-top: 0; }
.feat .lbl { font-size: 13px; margin-right: 4px; }
.ft { width: 34px; height: 34px; padding: 0; border: 1px solid #a9b8c7; border-radius: 4px; background: #fff; display: grid; place-items: center; cursor: pointer; opacity: .42; }
.ft img { width: 22px; height: 22px; image-rendering: pixelated; display: block; }
.ft.on { opacity: 1; border-color: var(--gold); box-shadow: 0 0 0 2px rgba(224,162,78,.45); }
.ft:hover { opacity: 1; }
.biobox { margin-top: 10px; }
.biobox .tools { display: flex; gap: 8px; align-items: center; margin-bottom: 6px; font-size: 13px; }
.biolist { columns: 4; column-gap: 14px; max-height: 190px; overflow-y: auto; background: #fff; border: 1px solid var(--box-bd); border-radius: 4px; padding: 8px 10px; }
.biorow { display: flex; align-items: center; gap: 6px; padding: 2px 0; font-size: 12.5px; cursor: pointer; break-inside: avoid; }
.biorow .sw { width: 13px; height: 13px; border-radius: 3px; border: 1px solid rgba(0,0,0,.25); flex: none; }
.biorow input { accent-color: var(--brand); margin: 0; }

/* map */
.map { position: relative; margin-top: 14px; border: 1px solid #9fb6cd; border-radius: 6px; overflow: hidden; background: #cbd6e2; height: min(66vh, 620px); min-height: 380px; }
.map iframe { display: block; width: 100%; height: 100%; border: 0; background: #cbd6e2; }
/* the Seed Map page frames the FULL viewer (seed card, map, Layers + Finder
   below) — no fixed height: the iframe is sized to the viewer's content */
.map.frame { height: auto; min-height: 0; margin-top: 0; border: 0; border-radius: 0; overflow: visible; background: transparent; }
.map.frame iframe { background: transparent; }
.map:fullscreen { height: 100%; border-radius: 0; }
.fsbtn { position: absolute; top: 8px; right: 8px; z-index: 3; width: 28px; height: 28px; border: 1px solid #9fb6cd; border-radius: 4px; background: rgba(255,255,255,.94); cursor: pointer; display: grid; place-items: center; font-size: 15px; color: var(--ink); }
.fsbtn:hover { background: #fff; }
.maptools { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 12px; margin-top: 10px; font-size: 13px; }
.maptools .sp { flex: 1; }
.maptools .spawn b { font-variant-numeric: tabular-nums; }

/* nearest structures */
.near { margin-top: 16px; }
.ngrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 6px; }
.nrow { display: flex; align-items: center; gap: 8px; padding: 6px 9px; background: #fff; border: 1px solid var(--box-bd); border-radius: 5px; cursor: pointer; font-size: 13px; }
.nrow:hover { border-color: var(--brand); }
.nrow img { width: 18px; height: 18px; image-rendering: pixelated; flex: none; }
.nrow .co { font-family: ui-monospace, Menlo, Consolas, monospace; font-size: 12.5px; font-weight: 600; }
.nrow .di { margin-left: auto; color: var(--mut); font-variant-numeric: tabular-nums; white-space: nowrap; }

/* seed finder */
.sf-conds { display: flex; flex-direction: column; gap: 8px; margin: 8px 0; }
.sf-cond { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; font-size: 13px; }
.sf-cond .cond-struct { flex: 1 1 170px; max-width: 260px; }
.sf-cond .cond-dist { width: 84px; }
.sf-cond .rm { width: 30px; padding: 0; justify-content: center; }
.rowbtns { display: flex; gap: 8px; align-items: center; margin: 10px 0; flex-wrap: wrap; }
.sf-results { display: flex; flex-direction: column; gap: 6px; margin-top: 8px; }
.sf-result { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; background: #fff; border: 1px solid var(--box-bd); border-radius: 5px; padding: 8px 12px; font-size: 13px; }
.sf-result .seed { font-family: ui-monospace, Menlo, Consolas, monospace; font-weight: 700; word-break: break-all; }
.sf-result .show { margin-left: auto; }

/* prose (how to use, about) */
.prose h2 { font-family: var(--display); font-weight: 700; font-size: 17px; margin: 18px 0 6px; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { font-size: 13.5px; color: #2b3a4a; }
.prose p { margin: 8px 0; }
.prose ol, .prose ul { padding-left: 22px; margin: 6px 0; }
.prose li { margin: 4px 0; }
.prose details { background: #fff; border: 1px solid var(--box-bd); border-radius: 6px; padding: 2px 12px; margin: 6px 0; }
.prose summary { cursor: pointer; font-weight: 600; padding: 7px 0; font-size: 13.5px; }
.callout { background: #e8f8f0; border: 1px solid #a9e2c6; color: #0f5a3a; border-radius: 6px; padding: 10px 12px; margin: 12px 0; font-size: 13px; }

/* app tiles + rows */
.tiles { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; }
.tile {
  display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 12px 8px 10px; text-align: center;
  background: #fff; border: 1px solid var(--box-bd); border-radius: 8px; color: var(--ink); font-weight: 600; font-size: 13px; line-height: 1.25;
}
.tile:hover { border-color: var(--brand); text-decoration: none; box-shadow: 0 3px 10px rgba(30,55,90,.14); }
.ic { width: 46px; height: 46px; border-radius: 9px; display: grid; place-items: center; flex: none; }
.ic img { width: 30px; height: 30px; image-rendering: pixelated; display: block; }
.ic .g { font-size: 24px; line-height: 1; }
.tile .ic { box-shadow: inset 0 -3px 0 rgba(0,0,0,.18); }
.applist { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 8px; }
.approw { display: flex; align-items: center; gap: 12px; padding: 9px 12px; background: #fff; border: 1px solid var(--box-bd); border-radius: 8px; color: var(--ink); }
.approw .ic { width: 40px; height: 40px; }
.approw .ic img { width: 26px; height: 26px; }
.approw .txt { display: flex; flex-direction: column; min-width: 0; }
.approw b { font-family: var(--display); font-weight: 600; font-size: 15px; }
.approw small { color: var(--mut); font-size: 12px; }
.approw:hover { border-color: var(--brand); text-decoration: none; }

/* seed cards */
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 12px; }
.cards.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card { background: #fff; border: 1px solid var(--box-bd); border-radius: 8px; overflow: hidden; display: flex; flex-direction: column; min-width: 0; }
.card .th { display: block; aspect-ratio: 16/9; background: #cfd8e2; }
.card .th img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card .tt { display: block; padding: 9px 11px 4px; font: 600 14px/1.3 var(--font); color: var(--ink); }
.card .tt:hover { color: var(--brand-2); text-decoration: none; }
.card .sd { display: flex; align-items: center; gap: 6px; padding: 0 11px 8px; font: 12px ui-monospace, Menlo, Consolas, monospace; color: var(--mut); min-width: 0; }
.card .sd code { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0; }
.copy { margin-left: auto; flex: none; font: 600 11px var(--font); border: 1px solid #b6c6d6; background: #fff; border-radius: 3px; padding: 2px 7px; cursor: pointer; color: var(--mut); }
.copy:hover { color: var(--brand-2); border-color: var(--brand); }
.card .tg { padding: 0 11px 10px; display: flex; flex-wrap: wrap; gap: 4px; }
.chips { display: flex; flex-wrap: wrap; gap: 5px; }
.chip { display: inline-block; font-size: 11.5px; font-weight: 600; padding: 2px 9px; border-radius: 999px; background: #eaf2fa; border: 1px solid #bcd0e4; color: #2b4a6a; white-space: nowrap; }
.chip:hover { background: #d7e7f6; text-decoration: none; }
.chip.rare { background: #fff4d6; border-color: #e3c165; color: #7a5a12; }
.chip .n { color: var(--mut); font-weight: 500; margin-left: 5px; }
.more { display: flex; justify-content: flex-end; margin-top: 12px; font-weight: 600; font-size: 13px; }

/* sidebar lists */
.rlist { display: flex; flex-direction: column; }
.rlist a { display: block; padding: 7px 0; border-bottom: 1px solid #cddbea; font-size: 13px; font-weight: 600; line-height: 1.3; }
.rlist a:last-child { border-bottom: 0; }
.rlist small { display: block; color: var(--mut); font-weight: 400; font-size: 11.5px; font-family: ui-monospace, Menlo, Consolas, monospace; }
.quick { display: flex; gap: 6px; }
.quick .in { flex: 1; }
.catgroup { margin: 8px 0 14px; }
.catgroup h3 { font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--mut); margin: 0 0 6px; }

/* seed post */
.facts { display: flex; flex-wrap: wrap; gap: 6px; margin: 0 0 12px; }
.fact { background: #fff; border: 1px solid var(--box-bd); border-radius: 4px; padding: 4px 9px; font-size: 12.5px; color: var(--mut); }
.fact b { color: var(--ink); font-weight: 600; }
.hero { display: block; border: 1px solid #9fb6cd; border-radius: 8px; overflow: hidden; background: #cbd6e2; position: relative; }
.hero img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.hero .banner-tag { opacity: 1; }
.seedbox { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin: 14px 0 4px; }
.seedbox .lbl { font-size: 13px; }
.seedbox code { font-size: 15px; background: #fff; border: 1px solid var(--box-bd); padding: 6px 10px; border-radius: 3px; letter-spacing: .02em; }
.blurb { font-size: 14.5px; line-height: 1.65; margin: 12px 0 14px; }
.two { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 8px; }
.two > * { min-width: 0; }
table.st { width: 100%; border-collapse: collapse; font-size: 13px; background: #fff; border: 1px solid var(--box-bd); border-radius: 6px; overflow: hidden; }
table.st td { padding: 6px 9px; border-bottom: 1px solid #e6eef5; white-space: nowrap; vertical-align: middle; }
table.st tr:last-child td { border-bottom: 0; }
table.st td.name { width: 100%; white-space: normal; }
table.st td.name img { width: 18px; height: 18px; image-rendering: pixelated; vertical-align: -4px; margin-right: 7px; }
table.st td.dir { color: var(--mut); }
table.st td.co { font-family: ui-monospace, Menlo, Consolas, monospace; font-size: 12px; color: var(--mut); }
table.st td.di { text-align: right; color: var(--mut); font-variant-numeric: tabular-nums; }
table.st td.go a { font-size: 12px; font-weight: 600; }
table.st td.bn { white-space: nowrap; max-width: 160px; overflow: hidden; text-overflow: ellipsis; }
table.st td.bar { width: 100%; }
table.st .track { display: block; height: 11px; border-radius: 3px; background: #e2eaf2; overflow: hidden; }
table.st .track i { display: block; height: 100%; border-radius: 3px; }
table.st td.bp { text-align: right; color: var(--mut); font-variant-numeric: tabular-nums; }
.byline { font-size: 12.5px; color: var(--mut); margin: 0 0 10px; }
.byline b { color: var(--ink); font-weight: 600; }
.trychips { display: flex; flex-wrap: wrap; gap: 6px; }
.trychips a { display: inline-flex; align-items: center; gap: 6px; background: #fff; border: 1px solid var(--box-bd); border-radius: 6px; padding: 4px 10px 4px 6px; font-size: 12.5px; font-weight: 600; color: var(--ink); }
.trychips a img { width: 18px; height: 18px; image-rendering: pixelated; }
.trychips a:hover { border-color: var(--brand); text-decoration: none; }

/* pagination */
.pages { display: flex; justify-content: center; gap: 6px; margin: 16px 0 2px; flex-wrap: wrap; }
.pages a, .pages span { min-width: 32px; height: 32px; padding: 0 10px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid #a9b8c7; border-radius: 4px; background: #fff; font-weight: 600; font-size: 13px; color: var(--ink); }
.pages a:hover { border-color: var(--brand); color: var(--brand-2); text-decoration: none; }
.pages .cur { background: var(--brand); border-color: #16704a; color: #fff; }
.pages .dis { opacity: .45; }
.pages .gap { border: 0; background: transparent; min-width: 0; padding: 0 2px; color: var(--mut); }

/* footer on the stone */
.site-foot { max-width: 1100px; margin: 0 auto; padding: 16px 30px 30px; color: #c6c6c6; font-size: 11.5px; line-height: 1.55; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.site-foot b { color: #fff; }
.site-foot a { color: #e8e8e8; font-weight: 600; }
.foot-links { white-space: nowrap; }

/* ── responsive ──────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .cols2 { grid-template-columns: 1fr; }
  .cards.three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .biolist { columns: 2; }
}
@media (max-width: 720px) {
  .site-head { height: 92px; }
  .wordmark { font-size: 26px; transform: translateY(10px); }
  .page { padding: 20px 12px 26px; border-radius: 0; }
  .banner { height: 130px; margin-bottom: 14px; }
  .plank { height: auto; flex-wrap: wrap; padding: 6px 40px; gap: 2px; margin-bottom: 18px; }
  .plank a { font-size: 17px; padding: 5px 12px; }
  .sign { margin-right: 22px; }
  .sign h1, .sign h2 { font-size: 16px; }
  .sign .right { display: none; }
  .panel { padding: 18px 12px 14px; }
  .frm { grid-template-columns: 1fr; gap: 6px; }
  .in.seed { width: 100%; }
  .map { height: 60vh; min-height: 320px; }
  .map.frame { height: auto; min-height: 0; }
  .two { grid-template-columns: 1fr; }
  .cards.three { grid-template-columns: 1fr; }
  .site-foot { flex-direction: column; padding: 14px 16px 24px; }
}
