/* ============================================================
   Be Fish Wiki — style.css
   Shared across all pages: index, fishdex, how-to-play, tips
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Nunito:wght@400;500;600;700&display=swap');

/* ── CSS Variables ── */
:root {
  --ocean:        #0a6e8a;
  --ocean-light:  #0e97bd;
  --ocean-dark:   #064d62;
  --sand:         #f5dfa0;
  --sand-dark:    #e8c96a;
  --foam:         #e8f7fb;
  --coral:        #e8604a;
  --seaweed:      #2d9e5f;
  --seaweed-light:#3dcc7a;
  --page-bg:      #e0f4fa;
  --text-dark:    #1a3a45;
  --text-mid:     #2d6070;
  --text-muted:   #5a8a98;
  --card-bg:      #ffffff;
  --border:       rgba(10,110,138,0.15);

  /* Rarity — badge bg / badge text / bar */
  --r-common-bg:    #eeeeee; --r-common-txt:    #555555; --r-common-bar:    #888888;
  --r-uncommon-bg:  #d4f0dc; --r-uncommon-txt:  #1c6030; --r-uncommon-bar:  #2a9e50;
  --r-rare-bg:      #d4e8f8; --r-rare-txt:      #0d4a8a; --r-rare-bar:      #1a72c4;
  --r-epic-bg:      #ead4f8; --r-epic-txt:      #5a1a88; --r-epic-bar:      #8a35c4;
  --r-legendary-bg: #f8e8d4; --r-legendary-txt: #884a0d; --r-legendary-bar: #c47a1a;
  --r-mythic-bg:    #f8d4d2; --r-mythic-txt:    #881a13; --r-mythic-bar:    #c4271a;

  /* Tier colors */
  --tc-normal:  #888888;
  --tc-golden:  #c4841a;
  --tc-rainbow: #c43a9a;
  --tc-glowing: #0f8fa0;
  --tc-shadow:  #5535c4;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Base ── */
html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background-color: var(--page-bg);
  background-image:
    radial-gradient(ellipse at 8% 15%,  rgba(14,151,189,0.20) 0%, transparent 48%),
    radial-gradient(ellipse at 92% 85%, rgba(45,158,95,0.14)  0%, transparent 48%);
  color: var(--text-dark);
  min-height: 100vh;
  line-height: 1.6;
}

img { display: block; max-width: 100%; }
a   { color: var(--ocean-light); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Fredoka One', cursive;
  letter-spacing: 0.02em;
  line-height: 1.15;
  color: var(--text-dark);
}

/* ── Navigation ── */
.nav {
  background: var(--ocean-dark);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 14px rgba(0,0,0,0.28);
}

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-logo {
  font-family: 'Fredoka One', cursive;
  font-size: 1.5rem;
  color: var(--sand);
  letter-spacing: 0.03em;
  padding: 0.9rem 1.5rem 0.9rem 0;
  border-right: 1px solid rgba(255,255,255,0.12);
  margin-right: 0.5rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-logo span { color: var(--ocean-light); }

.nav-links { display: flex; align-items: center; gap: 0; }

.nav-link {
  font-family: 'Nunito', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 1rem 1.1rem;
  cursor: pointer;
  text-decoration: none;
  display: block;
  transition: color 0.14s, border-color 0.14s;
  white-space: nowrap;
}

.nav-link:hover { color: #fff; text-decoration: none; }
.nav-link.active { color: var(--sand); border-bottom-color: var(--sand-dark); }

/* ── Page wrapper ── */
.page-wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 5rem;
}

/* ── Page heading ── */
.page-heading { margin-bottom: 2rem; }
.page-heading h1 { font-size: 2.4rem; color: var(--ocean-dark); }
.page-heading p  { font-size: 0.88rem; color: var(--text-muted); font-weight: 600; margin-top: 4px; }

/* ── Section blocks (How to Play, Tips) ── */
.section-block {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.section-header {
  background: var(--ocean-dark);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-header-icon { font-size: 1.5rem; flex-shrink: 0; }

.section-header h2 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.35rem;
  color: var(--sand);
  letter-spacing: 0.02em;
}

.section-body { padding: 1.5rem; }

.section-desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1.1rem;
  font-weight: 500;
}

/* ── Info grid (card grid inside sections) ── */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 12px;
  margin-top: 0.6rem;
}

.info-card {
  background: var(--foam);
  border: 1px solid rgba(10,110,138,0.14);
  border-radius: 10px;
  padding: 0.9rem 1rem;
}

.info-card-label {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 2px;
}

.info-card-val {
  font-family: 'Fredoka One', cursive;
  font-size: 1.15rem;
  color: var(--ocean-dark);
  margin-bottom: 3px;
}

.info-card-note {
  font-size: 0.76rem;
  color: var(--text-mid);
  font-weight: 500;
  line-height: 1.5;
}

/* ── Tip / callout box ── */
.tip-box {
  background: #fffbe6;
  border-left: 4px solid var(--sand-dark);
  border-radius: 0 10px 10px 0;
  padding: 10px 14px;
  font-size: 0.82rem;
  color: #6b5a10;
  font-weight: 600;
  margin-top: 1.1rem;
  line-height: 1.65;
}

/* ── Tier progression chain ── */
.tier-chain {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 0.6rem;
}

.tier-pill {
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  font-family: 'Nunito', sans-serif;
}

.tier-arrow { color: var(--text-muted); font-size: 1rem; }

.craft-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  background: var(--foam);
  padding: 8px 14px;
  border-radius: 8px;
  border-left: 3px solid var(--ocean-light);
  margin-top: 0.9rem;
}

/* ── Data tables (boosts, passes, gems, UI guide) ── */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.84rem;
  margin-top: 0.6rem;
}

.data-table th {
  text-align: left;
  font-weight: 700;
  color: var(--text-muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 12px 6px 0;
  border-bottom: 2px solid var(--border);
}

.data-table td {
  padding: 8px 12px 8px 0;
  color: var(--text-mid);
  font-weight: 500;
  border-bottom: 1px solid rgba(10,110,138,0.08);
  vertical-align: top;
}

.data-table td:first-child { font-weight: 700; color: var(--text-dark); }

.data-table tr:last-child td { border-bottom: none; }

.cost-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 5px;
}

.cost-robux { color: var(--coral); background: #fde8e4; }
.cost-pass  { color: var(--seaweed); background: #d4f0dc; }
.cost-gem   { color: #1060a8; background: #d4e8f8; }

/* ── Passes / Boosts / Gems grids ── */
.passes-grid, .boosts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(188px, 1fr));
  gap: 12px;
  margin-top: 0.6rem;
}

.pass-card, .boost-card {
  background: var(--foam);
  border: 1px solid rgba(10,110,138,0.15);
  border-radius: 12px;
  padding: 1rem 1.1rem;
  position: relative;
}

.pass-card-icon, .boost-card-icon { font-size: 1.7rem; margin-bottom: 6px; }

.pass-card-name, .boost-card-name {
  font-family: 'Fredoka One', cursive;
  font-size: 1rem;
  color: var(--ocean-dark);
  margin-bottom: 4px;
}

.pass-card-desc, .boost-card-desc {
  font-size: 0.78rem;
  color: var(--text-mid);
  line-height: 1.55;
  font-weight: 500;
}

.boost-dur-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
}

.gems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
  margin-top: 0.6rem;
}

.gem-card {
  background: linear-gradient(135deg, #e8f7fd 0%, #d0eef8 100%);
  border: 1px solid rgba(10,110,138,0.2);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
}

.gem-card-amount {
  font-family: 'Fredoka One', cursive;
  font-size: 1.2rem;
  color: var(--ocean-dark);
}

.gem-card-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 6px;
}

/* ── Milestone section ── */
.milestone-example {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  background: var(--foam);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin-top: 0.8rem;
  border: 1px solid rgba(10,110,138,0.14);
}

.milestone-stat {
  flex: 1;
  min-width: 140px;
}

.milestone-stat-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.milestone-stat-val {
  font-family: 'Fredoka One', cursive;
  font-size: 1.1rem;
  color: var(--ocean-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.milestone-arrow {
  color: var(--sand-dark);
  font-size: 1rem;
}

/* ── Fish Dex controls ── */
.dex-controls {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 1rem;
}

.control-group-label {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.control-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

/* Tier toggle buttons */
.tier-btn {
  padding: 5px 15px;
  font-size: 0.8rem;
  border-radius: 20px;
  border: 1.5px solid;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  background: transparent;
  transition: all 0.12s;
}
.tier-btn:hover, .tier-btn.active { color: #fff !important; }

.t-normal  { border-color: var(--tc-normal);  color: var(--tc-normal);  }
.t-normal.active,  .t-normal:hover  { background: var(--tc-normal)  !important; }
.t-golden  { border-color: var(--tc-golden);  color: var(--tc-golden);  }
.t-golden.active,  .t-golden:hover  { background: var(--tc-golden)  !important; }
.t-rainbow { border-color: var(--tc-rainbow); color: var(--tc-rainbow); }
.t-rainbow.active, .t-rainbow:hover { background: var(--tc-rainbow) !important; }
.t-glowing { border-color: var(--tc-glowing); color: var(--tc-glowing); }
.t-glowing.active, .t-glowing:hover { background: var(--tc-glowing) !important; }
.t-shadow  { border-color: var(--tc-shadow);  color: var(--tc-shadow);  }
.t-shadow.active,  .t-shadow:hover  { background: var(--tc-shadow)  !important; }

/* Rarity toggle buttons */
.rar-btn {
  padding: 4px 11px;
  font-size: 0.76rem;
  border-radius: 5px;
  border: 1px solid;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  background: transparent;
  transition: all 0.12s;
}
.rar-btn.active { color: #fff !important; }

.r-common    { border-color: var(--r-common-bar);    color: var(--r-common-bar);    }
.r-common.active    { background: var(--r-common-bar);    }
.r-uncommon  { border-color: var(--r-uncommon-bar);  color: var(--r-uncommon-bar);  }
.r-uncommon.active  { background: var(--r-uncommon-bar);  }
.r-rare      { border-color: var(--r-rare-bar);      color: var(--r-rare-bar);      }
.r-rare.active      { background: var(--r-rare-bar);      }
.r-epic      { border-color: var(--r-epic-bar);      color: var(--r-epic-bar);      }
.r-epic.active      { background: var(--r-epic-bar);      }
.r-legendary { border-color: var(--r-legendary-bar); color: var(--r-legendary-bar); }
.r-legendary.active { background: var(--r-legendary-bar); }
.r-mythic    { border-color: var(--r-mythic-bar);    color: var(--r-mythic-bar);    }
.r-mythic.active    { background: var(--r-mythic-bar);    }

/* Sort buttons */
.sort-btn {
  padding: 5px 12px;
  font-size: 0.78rem;
  border-radius: 6px;
  border: 1px solid rgba(10,110,138,0.25);
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  background: transparent;
  color: var(--text-muted);
  transition: all 0.12s;
  display: flex;
  align-items: center;
  gap: 4px;
}
.sort-btn.active         { background: var(--ocean); color: #fff; border-color: var(--ocean); }
.sort-btn:hover:not(.active) { background: rgba(10,110,138,0.08); }

/* Divider between control groups */
.ctrl-sep {
  width: 1px;
  height: 26px;
  background: rgba(10,110,138,0.2);
  flex-shrink: 0;
}

/* Search input */
.dex-search {
  padding: 6px 12px;
  font-size: 0.84rem;
  border: 1px solid rgba(10,110,138,0.3);
  border-radius: 8px;
  background: #fff;
  color: var(--text-dark);
  font-family: 'Nunito', sans-serif;
  width: 200px;
  transition: border-color 0.12s;
}
.dex-search:focus { outline: none; border-color: var(--ocean); }

/* Results count */
.dex-count {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 10px;
}

/* ── Fish Grid ── */
.fish-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(192px, 1fr));
  gap: 10px;
}

/* ── Fish Card ── */
.fish-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px;
  position: relative;
  transition: box-shadow 0.15s, transform 0.15s;
}

.fish-card:hover {
  box-shadow: 0 4px 20px rgba(10,110,138,0.14);
  transform: translateY(-1px);
}

.fish-card.all-unknown { opacity: 0.58; }

/* Fish image area */
.fish-img-wrap {
  width: 100%;
  height: 70px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 9px;
  background: rgba(10,110,138,0.06);
}

.fish-img-wrap img {
  max-width: 100%;
  max-height: 66px;
  object-fit: contain;
  image-rendering: pixelated;
}

.fish-img-placeholder { font-size: 2rem; opacity: 0.22; }

/* Card text */
.fish-card-name {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text-dark);
  padding-right: 50px;
  line-height: 1.2;
  margin-bottom: 4px;
}

.fish-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 9px;
}

.rarity-badge {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
}

.fish-odds {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Tier badge */
.tier-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
}

/* Stat rows */
.stat-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.68rem;
  color: var(--text-muted);
  width: 44px;
  flex-shrink: 0;
  font-weight: 600;
  transition: color 0.12s;
}

.bar-track {
  flex: 1;
  height: 6px;
  background: #e0ecf0;
  border-radius: 3px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 0.3s;
}

.bar-unknown {
  flex: 1;
  height: 6px;
  border-radius: 3px;
  background: repeating-linear-gradient(
    90deg,
    #dde8ec 0px, #dde8ec 4px,
    #eef4f6 4px, #eef4f6 8px
  );
}

.stat-val {
  font-size: 0.68rem;
  color: var(--text-muted);
  width: 26px;
  text-align: right;
  flex-shrink: 0;
  font-weight: 700;
}

.stat-val.unknown { color: #bbbfc4; }

.stat-label.highlight { font-weight: 700; }

/* XP row */
.xp-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.74rem;
  color: var(--text-muted);
  font-weight: 600;
  border-top: 1px solid rgba(10,110,138,0.1);
  padding-top: 7px;
  margin-top: 6px;
}

.xp-val { font-weight: 700; color: var(--text-dark); }
.xp-unknown { color: #bbbfc4; font-weight: 700; }

/* No results */
.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 600;
}

/* ── Footer ── */
.site-footer {
  background: var(--ocean-dark);
  color: rgba(255,255,255,0.45);
  text-align: center;
  padding: 1.2rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  margin-top: auto;
}

/* ── Home page specific ── */
.hero {
  text-align: center;
  padding: 4rem 1rem 3.5rem;
  position: relative;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ocean-light);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
}

.hero h1 {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--ocean-dark);
  line-height: 1.05;
  margin-bottom: 0.5rem;
}

.hero h1 span { color: var(--ocean); }

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  font-weight: 600;
  max-width: 520px;
  margin: 0 auto 2rem;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  background: var(--ocean);
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.7rem 1.6rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.14s, transform 0.1s;
}
.btn-primary:hover { background: var(--ocean-light); transform: translateY(-1px); text-decoration: none; color: #fff; }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--ocean);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.7rem 1.6rem;
  border-radius: 8px;
  border: 2px solid var(--ocean);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.14s, color 0.14s, transform 0.1s;
}
.btn-secondary:hover { background: var(--ocean); color: #fff; transform: translateY(-1px); text-decoration: none; }

/* About + Quick Stats */
.home-about {
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
}

.home-about h2 {
  font-size: 1.6rem;
  color: var(--ocean-dark);
  margin-bottom: 0.6rem;
}

.home-about p {
  font-size: 0.92rem;
  color: var(--text-mid);
  font-weight: 500;
  line-height: 1.75;
}

.quick-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 1.5rem auto 3rem;
}

.qs-item { text-align: center; }

.qs-num {
  font-family: 'Fredoka One', cursive;
  font-size: 2.2rem;
  color: var(--ocean);
  line-height: 1;
}

.qs-label {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* Feature cards */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-bottom: 1rem;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.6rem 1.4rem;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.15s, transform 0.15s;
  display: block;
}

.feature-card:hover {
  box-shadow: 0 6px 24px rgba(10,110,138,0.15);
  transform: translateY(-2px);
  text-decoration: none;
}

.feature-card-icon { font-size: 2.2rem; margin-bottom: 0.7rem; }

.feature-card h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.2rem;
  color: var(--ocean-dark);
  margin-bottom: 0.4rem;
}

.feature-card p {
  font-size: 0.82rem;
  color: var(--text-mid);
  font-weight: 500;
  line-height: 1.6;
}

.feature-card-link {
  display: inline-block;
  margin-top: 0.8rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ocean-light);
}

/* Tips page */
.tips-sections { display: flex; flex-direction: column; }

.tip-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--ocean);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-right: 8px;
}

.tips-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 0.6rem; }

.tips-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-mid);
  font-weight: 500;
  line-height: 1.6;
}

.tips-list li::before {
  content: '→';
  color: var(--ocean-light);
  font-weight: 700;
  margin-top: 1px;
  flex-shrink: 0;
}

.pass-priority-list { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-top: 0.6rem; }

.pass-priority-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--text-mid);
  font-weight: 600;
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .nav-logo { font-size: 1.2rem; padding-right: 1rem; }
  .nav-link  { padding: 0.9rem 0.75rem; font-size: 0.82rem; }
  .hero h1   { font-size: 2rem; }
  .fish-grid { grid-template-columns: repeat(auto-fill, minmax(155px, 1fr)); }
  .page-wrap { padding: 1.5rem 1rem 4rem; }
}
