:root {
  --sand: #e8e4dc;
  --foam: #f5f5f7;
  --gulf: #0071a8;
  --deep: #0a1628;
  --teal: #0a84ff;
  --coral: #ff6b3d;
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --card: rgba(255, 255, 255, 0.72);
  --card-solid: #ffffff;
  --stroke: rgba(0, 0, 0, 0.08);
  --shadow: 0 8px 32px rgba(10, 22, 40, 0.08);
  --radius: 20px;
  --radius-sm: 14px;
  --blur: saturate(180%) blur(20px);
  --safe-top: env(safe-area-inset-top, 0px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--foam);
  line-height: 1.5;
  font-size: 17px;
  letter-spacing: -0.01em;
}
a { color: var(--teal); text-decoration: none; }
a:hover { opacity: 0.85; }
img { max-width: 100%; display: block; height: auto; }

.wrap { width: min(1080px, 92%); margin: 0 auto; }

/* —— Header / nav (glass) —— */
.site-header {
  position: sticky; top: 0; z-index: 50;
  padding-top: var(--safe-top);
  background: rgba(245, 245, 247, 0.78);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border-bottom: 1px solid var(--stroke);
}
.site-header .bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 0.85rem 0;
}
.logo {
  font-weight: 800; letter-spacing: -0.03em; color: var(--deep);
  font-size: 1.2rem; text-decoration: none;
}
.logo span { color: var(--coral); }
nav { display: flex; gap: 0.35rem 1rem; flex-wrap: wrap; align-items: center; }
nav a {
  color: var(--muted); font-weight: 600; font-size: 0.95rem;
  text-decoration: none; padding: 0.35rem 0.55rem; border-radius: 999px;
}
nav a:hover, nav a[aria-current="page"] {
  color: var(--deep); background: rgba(0, 0, 0, 0.05); opacity: 1;
}

/* —— Hero —— */
.hero, .hero-hybrid {
  position: relative;
  color: #fff;
  padding: 4.5rem 0 3.75rem;
  min-height: 58vh;
  display: flex; align-items: flex-end;
  background:
    linear-gradient(180deg, rgba(10,22,40,0.25) 0%, rgba(10,22,40,0.78) 100%),
    url("../images/photos/nps-padre-island-aerial.jpg") center / cover no-repeat;
  background-color: var(--deep);
}
.hero h1, .hero-hybrid h1 {
  font-size: clamp(2.35rem, 6vw, 3.6rem);
  line-height: 1.05; margin: 0 0 0.85rem;
  letter-spacing: -0.035em; font-weight: 800;
  max-width: 14ch;
}
.hero p, .hero-hybrid p {
  font-size: 1.2rem; max-width: 34rem; opacity: 0.92;
  font-weight: 400; line-height: 1.45;
}
.eyebrow, .section-kicker {
  text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.72rem;
  font-weight: 700; margin: 0 0 0.75rem; opacity: 0.9;
}
.eyebrow { color: rgba(255,255,255,0.85); }
.section-kicker { color: var(--coral); }

.cta-row {
  display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.75rem;
}
.btn, .btn-primary, .btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; padding: 0.85rem 1.35rem;
  font-weight: 700; font-size: 1rem; border: none; text-decoration: none;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.btn:active, .btn-primary:active, .btn-ghost:active { transform: scale(0.98); }
.btn-primary { background: var(--coral); color: #fff; }
.btn-primary:hover { opacity: 0.92; text-decoration: none; }
.btn-ghost {
  background: rgba(255,255,255,0.18); color: #fff;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.28);
}
.btn-ghost:hover { background: rgba(255,255,255,0.28); text-decoration: none; opacity: 1; }

/* —— Sections / cards —— */
.section { padding: 3.5rem 0; }
.section h2, .page-hero h1 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--deep); margin: 0 0 0.75rem;
  letter-spacing: -0.03em; font-weight: 800;
}
.lead { color: var(--muted); max-width: 38rem; font-size: 1.1rem; line-height: 1.45; }
.grid {
  display: grid; gap: 1.15rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin-top: 1.5rem;
}
.card {
  background: var(--card-solid);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem;
  box-shadow: var(--shadow);
}
.card h3 { margin: 0 0 0.4rem; color: var(--deep); font-size: 1.15rem; letter-spacing: -0.02em; }
.card p { margin: 0; color: var(--muted); font-size: 0.98rem; }
.pill {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  background: rgba(10, 132, 255, 0.12); color: var(--gulf);
  border-radius: 999px; padding: 0.25rem 0.65rem; margin-bottom: 0.65rem;
}
.card-guide { border-top: 3px solid var(--teal); }
.card-link {
  display: inline-block; margin-top: 0.9rem; font-weight: 700; font-size: 0.95rem;
  color: var(--teal); text-decoration: none;
}
.more-guides { margin-top: 1.35rem; font-weight: 700; }

/* Photo bands */
.photo-band {
  border-radius: var(--radius);
  overflow: hidden;
  margin: 1.5rem 0 0;
  box-shadow: var(--shadow);
  border: 1px solid var(--stroke);
}
.photo-band img { width: 100%; height: min(42vw, 380px); object-fit: cover; }
.photo-grid-home {
  display: grid; gap: 0.85rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-top: 1.5rem;
}
.photo-grid-home figure {
  margin: 0; border-radius: var(--radius-sm); overflow: hidden;
  border: 1px solid var(--stroke); background: #fff;
  box-shadow: var(--shadow);
}
.photo-grid-home img { width: 100%; height: 180px; object-fit: cover; }
.photo-grid-home figcaption {
  padding: 0.55rem 0.75rem 0.7rem; font-size: 0.78rem; color: var(--muted);
}

.vibe-strip {
  background:
    linear-gradient(120deg, rgba(10,22,40,0.88), rgba(0,113,168,0.72)),
    url("../images/photos/unsplash-ocean-pier.jpg") center / cover no-repeat;
  color: #fff;
  padding: 3.5rem 0;
}
.vibe-strip h2 { color: #fff; }
.vibe-strip .lead { color: rgba(255,255,255,0.9); }
.vibe-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}
.vibe-cards { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.vibe-chip {
  border: 1px solid rgba(255,255,255,0.28); border-radius: 999px;
  padding: 0.5rem 0.95rem; font-weight: 700; font-size: 0.88rem;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}

/* —— Live conditions (do not break JS hooks) —— */
.weather-section { background: #fff; border-bottom: 1px solid var(--stroke); }
.weather-panel { margin-top: 1.25rem; }
.weather-loading { color: var(--muted); }
.weather-error {
  color: #8b1a1a;
  background: rgba(255, 107, 61, 0.12);
  border: 1px solid rgba(255, 107, 61, 0.35);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  font-weight: 600;
}
.weather-updated {
  margin: 0.65rem 0 0;
  font-size: 0.82rem;
  font-weight: 650;
  color: var(--gulf);
  letter-spacing: -0.01em;
}
.map-popup-body .weather-updated,
.map-popup-body .weather-error { font-size: 0.78rem; margin-top: 0.5rem; }
.map-popup-body .weather-error { padding: 0.5rem 0.65rem; }
.weather-now { border-top: 3px solid var(--coral); margin-bottom: 1.25rem; }
.weather-temp { font-size: 2.6rem; font-weight: 800; color: var(--deep); margin: 0.35rem 0; line-height: 1; letter-spacing: -0.04em; }
.weather-cond { font-weight: 700; color: var(--gulf); margin: 0 0 0.5rem; }
.weather-day { border-top: 3px solid var(--teal); }
.weather-source, .weather-source { margin-top: 1rem; font-size: 0.8rem; color: var(--muted); }
.weather-days { margin-top: 1rem; }

.location-bar { background: #fff; border-bottom: 1px solid var(--stroke); padding: 1rem 0; }
.location-bar-inner { display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem 1rem; }
.location-label {
  font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em;
  font-size: 0.72rem; color: var(--coral);
}
.location-select {
  appearance: none; background: var(--foam); border: 1.5px solid var(--stroke);
  border-radius: 999px; padding: 0.7rem 2.4rem 0.7rem 1.1rem;
  font: inherit; font-weight: 650; color: var(--deep);
  min-width: min(100%, 300px);
  background-image: linear-gradient(45deg, transparent 50%, var(--gulf) 50%), linear-gradient(135deg, var(--gulf) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% + 2px), calc(100% - 12px) calc(50% + 2px);
  background-size: 6px 6px, 6px 6px; background-repeat: no-repeat;
}
.location-select:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 4px rgba(10,132,255,0.2); }
.location-hint { margin: 0; color: var(--muted); font-size: 0.92rem; flex: 1 1 200px; }

.location-bar-inline {
  background: rgba(255,255,255,0.7);
  backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
  margin: 1.25rem 0 1.5rem;
  box-shadow: var(--shadow);
}
.live-subhead { font-size: 1.1rem; color: var(--gulf); margin: 1.5rem 0 0.75rem; font-weight: 700; }
.live-block:first-child .live-subhead { margin-top: 0.25rem; }
.live-water-grid { margin-top: 0.25rem; align-items: start; }
.live-block { margin-top: 0.5rem; }

.tides-surf-section { background: var(--foam); border-bottom: 1px solid var(--stroke); }
.tide-surf-grid { margin-top: 0.25rem; }
.tide-card { border-top: 3px solid var(--gulf); }
.surf-card { border-top: 3px solid var(--coral); }
.tide-station { color: var(--muted); font-size: 0.9rem; margin-top: -0.25rem; }
.tide-list { margin: 0.35rem 0 1rem 1.1rem; padding: 0; color: var(--muted); }
.tide-list li { margin: 0.25rem 0; }

/* —— Page hero / shared —— */
.page-hero { padding: 2.75rem 0 1rem; }
.page-hero h1 { color: var(--deep); }

/* —— Weather map —— */
.map-layout {
  display: grid;
  gap: 1.15rem;
  margin-top: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .map-layout {
    grid-template-columns: minmax(0, 1.6fr) minmax(240px, 0.9fr);
    align-items: start;
  }
}
.map-card {
  padding: 0.85rem;
  /* Do not clip Leaflet popups / pins */
  overflow: visible;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.map-side { border-top: 3px solid var(--coral); min-height: 220px; }
.map-side .weather-temp { font-size: 2.4rem; margin: 0.25rem 0; }
.map-side h3 { margin: 0.35rem 0 0.25rem; color: var(--deep); letter-spacing: -0.02em; }
.map-detail-actions { margin-top: 1rem; }
.wx-map {
  width: 100%;
  height: min(52vh, 480px);
  min-height: 280px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--stroke);
  background: #dfe8f0;
  z-index: 1;
  overflow: hidden;
  isolation: isolate;
  touch-action: pan-x pan-y;
}
.map-hint {
  margin: 0.75rem 0 0.5rem;
  font-size: 0.88rem;
  color: var(--muted);
  order: 2;
}
.spot-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.35rem 0 0.15rem;
  order: 3;
}
.spot-chip {
  appearance: none;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gulf);
  background: #fff;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
  min-height: 36px;
  -webkit-tap-highlight-color: transparent;
}
.spot-chip:hover, .spot-chip.is-active {
  border-color: var(--coral);
  color: var(--coral);
  background: rgba(255, 107, 61, 0.08);
}

/* Touch-friendly DivIcon pins (not tiny SVG circles) */
.spot-pin-wrap {
  background: transparent !important;
  border: none !important;
}
.spot-pin {
  display: block;
  width: 22px;
  height: 22px;
  margin: 3px;
  border-radius: 50%;
  background: #0a84ff;
  border: 2.5px solid #fff;
  box-shadow: 0 2px 10px rgba(10, 22, 40, 0.28);
  box-sizing: border-box;
  pointer-events: auto;
}
.spot-pin-wrap.is-active-pin .spot-pin,
.spot-pin-wrap:hover .spot-pin {
  background: #ff6b3d;
  transform: scale(1.12);
}
.leaflet-marker-icon.spot-pin-wrap {
  /* Expand hit target beyond the visible dot */
  width: 28px !important;
  height: 28px !important;
  cursor: pointer;
}

/* Apple-like Leaflet popup */
.leaflet-container .spot-popup .leaflet-popup-content-wrapper {
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(10, 22, 40, 0.18);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 0;
}
.leaflet-container .spot-popup .leaflet-popup-content {
  margin: 12px 14px;
  font-family: inherit;
  line-height: 1.4;
  color: var(--ink);
  min-width: 160px;
}
.leaflet-container .spot-popup .leaflet-popup-tip {
  box-shadow: none;
}
.map-popup-body strong {
  display: block;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--deep);
  margin-bottom: 0.15rem;
}
.map-popup-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gulf);
}
.map-popup-temp {
  margin: 0.2rem 0;
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--deep);
  line-height: 1.1;
}
.map-popup-cond { margin: 0 0 0.35rem; color: var(--muted); }
.map-popup-body p { margin: 0.2rem 0; font-size: 0.9rem; color: var(--muted); }
.map-popup-muted { color: var(--muted) !important; font-size: 0.88rem !important; }

/* On narrow screens, keep detail near the map (grid sibling) and ahead of Windy */
@media (max-width: 899px) {
  .map-layout {
    display: flex;
    flex-direction: column;
  }
  .map-side {
    order: 2;
  }
  .map-main {
    order: 1;
  }
  .wx-map {
    height: min(48vh, 420px);
    min-height: 260px;
  }
}

.map-embed-card {
  padding: 0.65rem;
  margin-top: 1.25rem;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.windy-embed {
  display: block;
  width: 100%;
  height: min(70vh, 560px);
  min-height: 360px;
  border: 0;
  border-radius: var(--radius-sm);
  background: #0a1628;
  /* Never steal clicks from the Leaflet map above */
  pointer-events: auto;
  position: relative;
  z-index: 0;
}
.map-windy-section {
  position: relative;
  z-index: 0;
}

.note {
  margin: 1.75rem 0 0.5rem; padding: 1.1rem 1.2rem;
  border-radius: var(--radius-sm);
  background: rgba(255,107,61,0.08);
  border: 1px solid rgba(255,107,61,0.2);
  color: var(--muted);
}

.site-footer {
  background: var(--deep); color: var(--sand);
  padding: 2.5rem 0; margin-top: 2.5rem; font-size: 0.95rem;
}
.site-footer a { color: var(--sand); }
.fineprint { opacity: 0.75; font-size: 0.8rem; }

@media (min-width: 720px) {
  .photo-grid-home img { height: 200px; }
}
@media (max-width: 640px) {
  .site-header .bar { flex-direction: column; align-items: flex-start; }
  .hero, .hero-hybrid { min-height: 70vh; padding-top: 5rem; }
  body { font-size: 16px; }
}

/* —— Community / auth —— */
.hidden { display: none !important; }
.muted { color: var(--muted); font-size: 0.95rem; }
.btn-ghost-dark {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; padding: 0.75rem 1.25rem;
  font-weight: 700; font-size: 0.98rem; border: 1px solid var(--stroke);
  background: #fff; color: var(--deep); cursor: pointer;
  text-decoration: none;
}
.btn-ghost-dark:hover { background: var(--foam); opacity: 1; }
.btn-sm { padding: 0.55rem 1rem; font-size: 0.92rem; }
button.btn, button.btn-primary {
  cursor: pointer; font: inherit;
}
button.btn-primary {
  background: var(--coral); color: #fff; border: none;
  border-radius: 999px; padding: 0.85rem 1.35rem; font-weight: 700;
}
button.btn-primary:disabled { opacity: 0.55; cursor: not-allowed; }

.auth-bar {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.65rem;
  margin-top: 1.35rem; padding: 1rem 1.15rem;
}
.auth-who { color: var(--muted); flex: 1 1 auto; }
.auth-who strong { color: var(--deep); }

.note-card { border-top: 3px solid var(--coral); }
.report-compose { border-top: 3px solid var(--teal); margin-top: 1rem; }
.report-compose h2, .note-card h2 {
  font-size: 1.35rem; margin: 0 0 0.35rem; letter-spacing: -0.02em;
}

.auth-form { display: flex; flex-direction: column; gap: 0.85rem; margin-top: 1rem; }
.auth-field { display: flex; flex-direction: column; gap: 0.35rem; font-weight: 650; color: var(--deep); font-size: 0.92rem; }
.auth-field span { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); }
.auth-field input, .auth-field textarea, .auth-field select {
  font: inherit; font-weight: 500; color: var(--deep);
  border: 1.5px solid var(--stroke); border-radius: var(--radius-sm);
  padding: 0.75rem 0.95rem; background: var(--foam);
}
.auth-field input:focus, .auth-field textarea:focus {
  outline: none; border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(10,132,255,0.18);
}
.form-row {
  display: grid; gap: 0.85rem;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}
.form-msg { margin: 0.25rem 0 0; font-size: 0.92rem; font-weight: 650; }
.form-msg.is-ok { color: var(--gulf); }
.form-msg.is-error, .auth-error { color: #c0392b; }
.auth-ok { color: var(--gulf); font-weight: 650; font-size: 0.92rem; }

.feed-head {
  display: flex; flex-wrap: wrap; align-items: baseline;
  justify-content: space-between; gap: 0.5rem 1rem; margin-bottom: 1rem;
}
.feed-head h2 { margin: 0; }
.reports-feed { display: flex; flex-direction: column; gap: 1rem; }
.report-card { border-top: 3px solid var(--gulf); }
.report-meta {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 0.5rem; margin-bottom: 0.35rem;
}
.report-meta time { color: var(--muted); font-size: 0.88rem; font-weight: 600; }
.report-card h3 { margin: 0 0 0.35rem; font-size: 1.2rem; }
.report-conditions {
  margin: 0 0 0.5rem; color: var(--gulf); font-weight: 650; font-size: 0.95rem;
}
.report-text { margin: 0 0 0.75rem; color: var(--ink); white-space: pre-wrap; }
.report-by { margin: 0; color: var(--muted); font-size: 0.9rem; }
.linkish {
  appearance: none; border: 0; background: none; padding: 0;
  color: var(--teal); font: inherit; font-weight: 700; cursor: pointer;
}
.linkish:hover { opacity: 0.85; }

.report-comments {
  margin-top: 1rem; padding-top: 1rem;
  border-top: 1px solid var(--stroke);
}
.comments-list { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1rem; }
.comment {
  background: var(--foam); border-radius: var(--radius-sm);
  padding: 0.75rem 0.9rem; border: 1px solid var(--stroke);
}
.comment-text { margin: 0 0 0.35rem; white-space: pre-wrap; }
.comment-by { margin: 0; font-size: 0.82rem; color: var(--muted); font-weight: 600; }
.comment-form { margin-top: 0.5rem; }

/* Auth modal */
body.auth-open { overflow: hidden; }
.auth-modal {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: flex-end; justify-content: center;
  padding: 1rem;
}
@media (min-width: 560px) {
  .auth-modal { align-items: center; }
}
.auth-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(10, 22, 40, 0.45);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.auth-sheet {
  position: relative; z-index: 1;
  width: min(420px, 100%);
  max-height: min(92vh, 640px);
  overflow: auto;
  padding: 1.5rem 1.35rem 1.75rem;
  border-radius: 24px;
  box-shadow: 0 24px 64px rgba(10, 22, 40, 0.28);
}
.auth-sheet h2 {
  margin: 0 0 0.35rem; font-size: 1.55rem;
  letter-spacing: -0.03em; color: var(--deep);
}
.auth-lead { margin: 0 0 1rem; color: var(--muted); font-size: 0.98rem; }
.auth-close {
  position: absolute; top: 0.75rem; right: 0.85rem;
  appearance: none; border: 0; background: var(--foam);
  width: 2.1rem; height: 2.1rem; border-radius: 999px;
  font-size: 1.35rem; line-height: 1; color: var(--muted); cursor: pointer;
}
.auth-tabs {
  display: flex; gap: 0.35rem; background: var(--foam);
  padding: 0.25rem; border-radius: 999px; margin-bottom: 1rem;
}
.auth-tab {
  flex: 1; appearance: none; border: 0; background: transparent;
  border-radius: 999px; padding: 0.55rem; font: inherit; font-weight: 700;
  color: var(--muted); cursor: pointer;
}
.auth-tab.is-active {
  background: #fff; color: var(--deep);
  box-shadow: 0 2px 8px rgba(10,22,40,0.08);
}
.auth-submit { width: 100%; margin-top: 0.25rem; }
.auth-link {
  appearance: none; border: 0; background: none;
  color: var(--teal); font: inherit; font-weight: 650;
  font-size: 0.9rem; cursor: pointer; padding: 0.25rem 0;
  align-self: center;
}

.community-cta-card {
  border-top: 3px solid var(--coral);
}

/* —— Species / bag limits —— */
.verified-stamp {
  margin: 0.75rem 0 0;
  font-size: 0.92rem;
  font-weight: 650;
  color: var(--gulf);
}
.disclaimer-box {
  margin-top: 1.25rem;
  font-size: 0.98rem;
  line-height: 1.45;
  color: var(--ink);
}
.disclaimer-box .source-links {
  margin: 0.85rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}
.species-jump {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin: 1.25rem 0 0.25rem;
}
.species-jump a {
  display: inline-flex; align-items: center;
  border-radius: 999px; padding: 0.45rem 0.95rem;
  font-weight: 700; font-size: 0.9rem;
  background: #fff; color: var(--gulf);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}
.species-jump a:hover { border-color: var(--coral); color: var(--coral); opacity: 1; }
.species-grid {
  display: grid; gap: 1.15rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 1.35rem;
}
.species-card { border-top: 3px solid var(--gulf); }
.species-card .aka {
  font-weight: 600; color: var(--muted); font-size: 0.92rem;
}
.species-card .id-tips {
  margin: 0.35rem 0 0.9rem;
  font-size: 0.95rem; color: var(--muted);
}
.limit-dl {
  margin: 0; padding: 0;
  display: grid; gap: 0.65rem;
}
.limit-dl > div {
  display: grid; gap: 0.15rem;
  padding: 0.55rem 0.7rem;
  background: var(--foam);
  border-radius: 12px;
  border: 1px solid var(--stroke);
}
.limit-dl dt {
  font-size: 0.68rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.07em;
  color: var(--coral); margin: 0;
}
.limit-dl dd {
  margin: 0; color: var(--deep); font-weight: 650;
  font-size: 0.98rem; line-height: 1.4;
}
.species-source {
  margin: 0.9rem 0 0;
  font-weight: 700; font-size: 0.92rem;
}
.live-updated {
  display: inline-block;
  margin-top: 0.35rem;
  font-weight: 700;
  color: var(--gulf);
}


/* —— Accuracy / angler-report labels —— */
.pill-angler {
  background: rgba(0, 113, 168, 0.12);
  color: var(--gulf);
}
.angler-disclaimer { margin: 1rem 0 1.25rem; }
.report-cond-label {
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.72rem;
  margin-right: 0.35rem;
}

/* —— Community moderation —— */
.community-rules {
  margin-top: 0.85rem;
  border-left: 3px solid var(--gulf, #0a7a6e);
  background: rgba(10, 122, 110, 0.06);
}
.report-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
  margin: 0.35rem 0 0;
}
.btn-flag {
  background: transparent;
  border: none;
  color: var(--muted);
  font: inherit;
  font-size: 0.85rem;
  font-weight: 650;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.btn-flag:hover { color: #c0392b; }
.btn-flag:disabled {
  opacity: 0.6;
  cursor: default;
  text-decoration: none;
  color: var(--muted);
}
.flag-msg {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 650;
  color: var(--muted);
}
.flag-msg.is-ok { color: var(--gulf, #0a7a6e); }
.flag-msg.is-error { color: #c0392b; }
