:root {
  --bg: #0d1010;
  --surface: #151918;
  --surface2: #1a201f;
  --border: #313837;
  --muted: #93a09d;
  --body: #d6d7d1;
  --heading: #f2ecdf;
  --accent: #5f8f66;
  --water: #7fb5ce;
  --sand: #d4bf8a;
  --chip: rgba(255, 255, 255, 0.05);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at 20% 0%, rgba(174, 220, 225, 0.2), transparent 18%),
    radial-gradient(circle at 80% 4%, rgba(120, 182, 199, 0.14), transparent 18%),
    linear-gradient(180deg, #6ea8c1 0%, #96c4c4 10%, #7daeb0 13%, #396a76 19%, #183947 42%, #102731 72%, #0a0f12 100%);
  color: var(--body);
  font: 300 1rem/1.7 "DM Sans", sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(8, 10, 10, 0.97);
  backdrop-filter: blur(10px);
}

.header-inner,
.hero-inner,
.page-shell,
.footer-inner,
.hero-gallery-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
  min-width: 0;
}

.header-inner > *,
.hero-inner > *,
.hero-gallery > *,
.metric-grid > *,
.explorer-grid > *,
.source-grid > *,
.image-credit-grid > * {
  min-width: 0;
}

.header-inner {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.header-logo img {
  width: 36px;
  height: 36px;
}

.logo-text {
  color: var(--heading);
  font: 700 1.5rem "Merriweather", serif;
  letter-spacing: 0.06em;
}

.logo-text span {
  color: var(--accent);
}

nav {
  display: flex;
  align-items: center;
  gap: 1.7rem;
}

nav a,
.nav-dropdown-toggle {
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

nav a:hover,
nav a.active,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.active {
  color: var(--heading);
}

.nav-subscribe {
  border: 1px solid var(--accent);
  color: var(--accent) !important;
  padding: 0.4rem 1rem;
}

.nav-subscribe:hover {
  background: var(--accent);
  color: var(--heading) !important;
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  margin: -0.85rem 0;
  padding: 0.85rem 0;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  left: -1rem;
  right: -1rem;
  top: 100%;
  height: 1.1rem;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
  line-height: 1;
}

.nav-dropdown-toggle::after {
  content: "▾";
  font-size: 0.7rem;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  left: 50%;
  top: calc(100% + 1rem);
  min-width: 240px;
  transform: translateX(-50%);
  border: 1px solid var(--border);
  background: rgba(12, 14, 14, 0.98);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: flex;
  flex-direction: column;
}

.nav-dropdown-menu a {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--body);
  font-size: 0.7rem;
}

.nav-dropdown-menu a:last-child {
  border-bottom: none;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
  background: rgba(95, 143, 102, 0.12);
  color: var(--heading);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  border: none;
  background: none;
  cursor: pointer;
  flex: 0 0 auto;
  margin-left: 1rem;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--heading);
}

.mobile-menu {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 60px;
  padding: 1.2rem 2rem 1.5rem;
  border-bottom: 1px solid var(--border);
  background: rgba(8, 10, 10, 0.98);
}

.mobile-menu.open {
  display: flex;
  flex-direction: column;
}

.mobile-menu a,
.mobile-label {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mobile-label {
  color: var(--sand);
  font-size: 0.65rem;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(232, 246, 249, 0.2) 0 12%, rgba(255, 255, 255, 0.08) 12% 13%, rgba(55, 112, 123, 0.08) 13% 17%, rgba(15, 45, 56, 0.2) 17% 100%),
    radial-gradient(circle at 25% 8%, rgba(255, 255, 255, 0.3), transparent 18%),
    radial-gradient(circle at 78% 40%, rgba(127, 181, 206, 0.16), transparent 16%),
    linear-gradient(180deg, #9cc8d6 0%, #8bbfca 10%, #4c8792 17%, #214c5a 43%, #102d38 72%, #0b1114 100%);
}

.hero::after {
  content: "";
  position: absolute;
  left: -6%;
  right: -6%;
  bottom: -4%;
  height: 46%;
  background:
    radial-gradient(circle at 18% 42%, rgba(255, 255, 255, 0.08), transparent 16%),
    radial-gradient(circle at 74% 16%, rgba(255, 255, 255, 0.06), transparent 12%),
    linear-gradient(180deg, rgba(8, 20, 24, 0) 0%, rgba(8, 20, 24, 0.18) 30%, rgba(7, 15, 17, 0.7) 100%);
  clip-path: polygon(0 28%, 7% 22%, 14% 29%, 22% 19%, 29% 27%, 38% 17%, 48% 28%, 58% 18%, 69% 24%, 79% 16%, 88% 28%, 100% 20%, 100% 100%, 0 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 1.25rem;
  align-items: stretch;
  padding-top: 4.35rem;
  padding-bottom: 1.35rem;
}

.hero-kicker,
.eyebrow,
.section-head h2,
.mini-label,
.season-pill,
.lake-button,
.source-type,
.species-season,
.metric-label {
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-kicker,
.eyebrow,
.source-type {
  color: var(--sand);
}

.hero-copy {
  min-width: 0;
  padding: 1.55rem 1.55rem 1.3rem;
  border: 1px solid rgba(228, 240, 242, 0.16);
  background:
    linear-gradient(180deg, rgba(10, 25, 31, 0.34), rgba(8, 19, 24, 0.76)),
    radial-gradient(circle at 22% 12%, rgba(255, 255, 255, 0.12), transparent 22%);
  backdrop-filter: blur(10px);
}

.hero-title {
  max-width: 8.4ch;
  margin: 0.85rem 0 1.05rem;
  color: var(--heading);
  font: 400 clamp(3.1rem, 6vw, 5.5rem) / 0.95 "Merriweather", serif;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.hero-copy p {
  max-width: 58ch;
  color: #dde7e7;
  font-size: 1.05rem;
  line-height: 1.78;
  overflow-wrap: anywhere;
}

.hero-copy p + p {
  margin-top: 0.8rem;
}

.hero-stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: 1.35rem;
}

.hero-stat {
  display: flex;
  align-items: center;
  min-height: 100%;
  padding: 0.78rem 0.85rem;
  border: 1px solid rgba(212, 191, 138, 0.18);
  background: linear-gradient(180deg, rgba(212, 191, 138, 0.06), rgba(255, 255, 255, 0.02));
  color: var(--sand);
  font-size: 0.69rem;
  letter-spacing: 0.11em;
  line-height: 1.45;
  text-transform: uppercase;
}

.hero-panel,
.map-card,
.detail-card,
.source-card,
.notice,
.lake-strip {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(21, 25, 24, 0.98), rgba(17, 20, 20, 0.98));
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.015) inset;
}

.hero-panel {
  min-width: 0;
  align-self: end;
  padding: 1.25rem;
  background:
    linear-gradient(180deg, rgba(12, 27, 34, 0.76), rgba(10, 18, 20, 0.9)),
    radial-gradient(circle at 80% 16%, rgba(127, 181, 206, 0.18), transparent 18%);
  backdrop-filter: blur(12px);
}

.hero-panel ul {
  display: grid;
  gap: 0.9rem;
  list-style: none;
}

.hero-panel li {
  position: relative;
  padding-left: 1rem;
  color: var(--body);
  font-size: 0.98rem;
  line-height: 1.72;
}

.hero-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.34rem;
  height: 0.34rem;
  border-radius: 999px;
  background: var(--water);
}

.hero-gallery-shell {
  position: relative;
  z-index: 1;
  padding-bottom: 2.5rem;
}

.hero-gallery {
  display: grid;
  grid-template-columns: 1.16fr 0.92fr 0.92fr;
  gap: 1rem;
}

.hero-fish-card {
  display: grid;
  grid-template-rows: 210px auto;
  min-height: 100%;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(228, 240, 242, 0.16);
  background: linear-gradient(180deg, rgba(10, 28, 34, 0.44), rgba(8, 18, 20, 0.84));
  backdrop-filter: blur(10px);
}

.hero-fish-card:first-child {
  transform: translateY(-1rem);
}

.hero-fish-image {
  display: block;
  width: 100%;
  height: 100%;
  background: #10262d;
  filter: saturate(1.02) contrast(1.02);
  object-fit: cover;
}

.hero-fish-copy {
  display: grid;
  gap: 0.24rem;
  padding: 1rem 1rem 1.1rem;
}

.hero-fish-copy strong {
  color: var(--heading);
  font: 400 1.08rem/1.1 "Merriweather", serif;
}

.hero-fish-copy span {
  color: #c6d4d4;
  font-size: 0.88rem;
  line-height: 1.55;
}

.page-shell {
  position: relative;
  padding-top: 2rem;
  padding-bottom: 3.4rem;
}

.page-shell::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -2rem;
  height: 520px;
  background:
    radial-gradient(circle at 14% 22%, rgba(255, 255, 255, 0.08), transparent 8%),
    radial-gradient(circle at 84% 30%, rgba(255, 255, 255, 0.06), transparent 8%),
    linear-gradient(180deg, rgba(123, 184, 191, 0.08) 0 8%, rgba(71, 130, 143, 0.08) 8% 22%, rgba(18, 54, 66, 0.08) 22% 54%, rgba(10, 24, 29, 0) 80%);
  pointer-events: none;
  z-index: 0;
}

.page-shell > * {
  position: relative;
  z-index: 1;
}

.section + .section {
  margin-top: 2.4rem;
}

.section-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.section-head h2 {
  color: var(--muted);
  font-family: "Merriweather", serif;
  white-space: nowrap;
}

.section-head::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

.notice {
  padding: 1rem 1.1rem;
  margin-bottom: 1rem;
  color: var(--body);
  font-size: 0.92rem;
}

.notice strong {
  color: var(--heading);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.metric-card {
  padding: 1rem 1.05rem;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(13, 30, 34, 0.8), rgba(13, 18, 18, 0.96));
}

.metric-label {
  color: var(--muted);
}

.metric-value {
  margin: 0.4rem 0 0.3rem;
  color: var(--heading);
  font: 400 1.7rem/1.05 "Merriweather", serif;
}

.metric-note,
.detail-note,
.source-note,
.season-note {
  color: var(--muted);
  font-size: 0.88rem;
}

.explorer-grid {
  display: grid;
  grid-template-columns: 1.22fr 0.78fr;
  gap: 1rem;
  align-items: start;
}

.map-card {
  overflow: hidden;
  background: linear-gradient(180deg, rgba(12, 25, 28, 0.94), rgba(12, 18, 18, 0.98));
}

.map-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.84rem;
}

.season-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0 1rem 1rem;
}

.season-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.48rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--chip);
  color: var(--muted);
  cursor: pointer;
  transition: all 0.18s ease;
}

.season-pill:hover,
.season-pill.active {
  border-color: rgba(127, 181, 206, 0.42);
  background: rgba(127, 181, 206, 0.12);
  color: var(--heading);
}

.lake-map-shell {
  padding: 0 1rem 1rem;
}

.lake-map {
  width: 100%;
  height: 640px;
  border: 1px solid var(--border);
  background: #0f1112;
}

.leaflet-container {
  background: #0f1112;
}

.leaflet-control-attribution {
  background: rgba(15, 17, 18, 0.86) !important;
  color: var(--muted) !important;
}

.leaflet-control-attribution a {
  color: var(--body) !important;
}

.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  border: 1px solid var(--border);
  background: #151918;
  color: var(--body);
}

.leaflet-popup-content {
  margin: 0.65rem 0.8rem;
  line-height: 1.45;
}

.lake-popup {
  display: grid;
  gap: 0.45rem;
  min-width: 220px;
  max-width: 290px;
}

.lake-popup-title {
  display: block;
  color: var(--heading);
  font: 400 1rem/1.2 "DM Sans", sans-serif;
}

.lake-popup-copy {
  color: #c3cfcd;
  font-size: 0.86rem;
}

.popup-species-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.38rem;
  margin-top: 0.1rem;
}

.popup-species-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  padding: 0.22rem 0.4rem;
  border: 1px solid rgba(127, 181, 206, 0.26);
  background: rgba(127, 181, 206, 0.08);
  color: var(--heading);
  font-size: 0.72rem;
}

.popup-fish-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  object-fit: cover;
}

.leaflet-tooltip {
  border: 1px solid var(--border);
  background: rgba(21, 25, 24, 0.98);
  color: var(--heading);
  box-shadow: none;
}

.leaflet-tooltip-top:before {
  border-top-color: var(--border);
}

.lake-strip {
  margin: 0 1rem 1rem;
  padding: 0.85rem;
  background: linear-gradient(180deg, rgba(11, 23, 27, 0.9), rgba(12, 18, 18, 0.98));
}

.lake-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.lake-button {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  text-align: left;
  cursor: pointer;
  transition: all 0.18s ease;
}

.lake-button:hover,
.lake-button.active {
  border-color: rgba(95, 143, 102, 0.45);
  background: rgba(95, 143, 102, 0.1);
  color: var(--heading);
}

.lake-button strong {
  display: block;
  margin-top: 0.25rem;
  color: inherit;
  font: 400 0.98rem/1.2 "Merriweather", serif;
  letter-spacing: 0;
  text-transform: none;
}

.detail-card {
  position: sticky;
  top: 86px;
  min-height: 620px;
  min-width: 0;
  padding: 1.15rem;
  background:
    radial-gradient(circle at 85% 8%, rgba(127, 181, 206, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(10, 27, 33, 0.96), rgba(12, 17, 18, 0.98));
}

.detail-title {
  margin: 0.55rem 0 0.8rem;
  color: var(--heading);
  font: 400 1.95rem/1.04 "Merriweather", serif;
}

.detail-meta,
.season-chip-row,
.source-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.detail-meta {
  margin: 0.95rem 0 1rem;
}

.detail-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.55rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--body);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.detail-summary {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1.1rem;
}

.detail-block {
  padding-bottom: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.detail-block:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.detail-block strong {
  display: block;
  margin-bottom: 0.16rem;
  color: var(--heading);
  font-weight: 500;
}

.species-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.species-card {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
  padding: 0.85rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
  transition: all 0.18s ease;
}

.species-card:hover {
  border-color: rgba(127, 181, 206, 0.24);
  transform: translateY(-1px);
}

.species-card.dimmed {
  opacity: 0.42;
}

.species-thumb-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.22 / 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(21, 57, 71, 0.75), rgba(10, 20, 23, 0.95));
}

.species-thumb {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.species-body {
  min-width: 0;
}

.species-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 0.7rem;
  margin-bottom: 0.4rem;
}

.species-name {
  color: var(--heading);
  font-size: 1rem;
  font-weight: 500;
}

.species-season {
  color: var(--muted);
  white-space: nowrap;
}

.season-chip-row {
  margin: 0.6rem 0 0.4rem;
}

.season-chip {
  padding: 0.22rem 0.45rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.season-chip.on {
  border-color: rgba(127, 181, 206, 0.5);
  background: rgba(127, 181, 206, 0.12);
  color: var(--heading);
}

.season-chip.active-season {
  border-color: rgba(95, 143, 102, 0.55);
  background: rgba(95, 143, 102, 0.14);
  color: var(--heading);
}

.source-link {
  display: inline-flex;
  align-items: center;
  padding: 0.34rem 0.62rem;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.69rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.source-link:hover {
  border-color: rgba(95, 143, 102, 0.45);
  color: var(--heading);
}

.source-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.source-card {
  padding: 1rem;
  background: linear-gradient(180deg, rgba(11, 24, 28, 0.9), rgba(13, 18, 18, 0.98));
}

.source-card h3 {
  margin: 0.45rem 0;
  color: var(--heading);
  font: 400 1.08rem/1.25 "Merriweather", serif;
}

.image-credit-panel {
  padding: 1rem;
  background: linear-gradient(180deg, rgba(11, 24, 28, 0.9), rgba(13, 18, 18, 0.98));
}

.image-credit-panel summary {
  cursor: pointer;
  list-style: none;
  color: var(--sand);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.image-credit-panel summary::-webkit-details-marker {
  display: none;
}

.image-credit-panel[open] summary {
  margin-bottom: 0.95rem;
}

.image-credit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  padding-bottom: 1rem;
}

.image-credit-card {
  padding: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.image-credit-card strong {
  display: block;
  margin-bottom: 0.18rem;
  color: var(--heading);
  font-weight: 500;
}

.image-credit-card span {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
}

footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.75rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}

@media (max-width: 1120px) {
  .hero-inner,
  .explorer-grid,
  .metric-grid,
  .source-grid,
  .hero-gallery,
  .image-credit-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-copy {
    padding: 1.3rem;
  }

  .hero-title {
    max-width: 9ch;
  }

  .hero-stat-row {
    grid-template-columns: 1fr;
  }

  .hero-fish-card:first-child {
    transform: none;
  }

  .detail-card {
    position: static;
    min-height: auto;
  }

  .lake-strip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .species-card {
    grid-template-columns: 92px minmax(0, 1fr);
  }
}

@media (max-width: 1080px) {
  nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu .nav-subscribe {
    margin-top: 1rem;
    padding: 0.6rem 1rem;
    border-bottom: none !important;
    text-align: center;
  }
}

@media (max-width: 720px) {
  .logo-text {
    font-size: 1.2rem;
  }

  .hero-inner,
  .page-shell,
  .footer-inner,
  .hero-gallery-shell,
  .header-inner {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-inner,
  .explorer-grid,
  .metric-grid,
  .source-grid,
  .hero-gallery,
  .image-credit-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 1.15rem;
  }

  .hero-kicker,
  .eyebrow,
  .section-head h2,
  .mini-label,
  .season-pill,
  .lake-button,
  .source-type,
  .species-season,
  .metric-label {
    font-size: 0.58rem;
    letter-spacing: 0.14em;
  }

  .hero-title {
    max-width: 9ch;
    font-size: clamp(2.85rem, 11vw, 4.2rem);
  }

  .hero-copy p,
  .hero-panel li {
    font-size: 0.98rem;
    max-width: 100%;
  }

  .hero-fish-card {
    grid-template-rows: 180px auto;
  }

  .species-card {
    grid-template-columns: 1fr;
  }

  .species-thumb-wrap {
    max-width: 180px;
  }

  .species-head {
    flex-direction: column;
  }

  .species-season {
    white-space: normal;
  }

  .lake-strip-grid {
    grid-template-columns: 1fr;
  }

  .mobile-menu .nav-subscribe {
    margin-top: 1rem;
    padding: 0.6rem 1rem;
    border-bottom: none !important;
    text-align: center;
  }

  .lake-map {
    height: 420px;
  }
}
