/* ====================================================
   云菌志 · Wild Mushroom Atlas
   Design System
==================================================== */
:root {
  --green-900: #0f2a1d;
  --green-800: #1a3d2e;
  --green-700: #2d5a3a;
  --green-600: #3d6b4a;
  --green-500: #5d8a5a;
  --green-300: #a8c4a3;
  --green-100: #e8f0e6;

  --orange-700: #8b4513;
  --orange-600: #b8621e;
  --orange-500: #d4843a;
  --orange-400: #e89f5a;
  --orange-300: #f0b97a;

  --yellow-500: #f4d03f;
  --yellow-300: #f8e58a;

  --red-700: #6b1818;
  --red-600: #8b2424;
  --red-500: #c0392b;
  --red-400: #d35454;

  --bg: #faf7f0;
  --bg-2: #f3ede0;
  --paper: #ffffff;
  --ink: #1f2a1f;
  --ink-2: #4a5a4a;
  --ink-3: #7a8a7a;
  --line: #d9d2c0;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --font-serif: 'Playfair Display', 'Noto Serif SC', 'Songti SC', serif;

  --shadow-sm: 0 2px 8px rgba(15, 42, 29, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 42, 29, 0.08);
  --shadow-lg: 0 16px 48px rgba(15, 42, 29, 0.12);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ====================================================
   HEADER / NAV
==================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(250, 247, 240, 0.0);
  backdrop-filter: blur(0);
  transition: all 0.3s ease;
}
.site-header.scrolled {
  background: rgba(250, 247, 240, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: nowrap;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-mark {
  font-size: 26px;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text strong {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 900;
  color: var(--green-900);
  letter-spacing: 0.02em;
}
.logo-text small {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ink-3);
  text-transform: uppercase;
}
.site-header:not(.scrolled) .logo-text strong { color: var(--green-900); }

.main-nav {
  display: flex;
  gap: 2px;
  align-items: center;
  flex-wrap: nowrap;
}
.main-nav a {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-2);
  transition: all 0.2s ease;
  position: relative;
  white-space: nowrap;
}
.main-nav a:hover {
  color: var(--green-800);
  background: var(--green-100);
}
.main-nav a.active {
  color: var(--green-900);
  background: var(--green-100);
  font-weight: 600;
}
.nav-toggle {
  display: none;
  font-size: 24px;
  color: var(--green-900);
  padding: 8px;
}

/* ====================================================
   HERO
==================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px 0 80px;
  background: linear-gradient(180deg, #e8f0e6 0%, #d4e4d0 40%, #c4d8be 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.fog {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}
.fog-1 { width: 600px; height: 600px; background: #ffffff; top: -200px; left: -100px; }
.fog-2 { width: 500px; height: 500px; background: var(--orange-300); bottom: -100px; right: -100px; opacity: 0.3; }

.hero-mush {
  position: absolute;
  font-size: 60px;
  opacity: 0.25;
  animation: float 8s ease-in-out infinite;
}
.hero-mush-1 { top: 15%; left: 8%; animation-delay: 0s; }
.hero-mush-2 { top: 60%; right: 12%; font-size: 80px; animation-delay: 2s; }
.hero-mush-3 { top: 30%; right: 25%; font-size: 50px; animation-delay: 4s; }
.hero-mush-4 { top: 75%; left: 18%; font-size: 70px; opacity: 0.18; animation-delay: 3s; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(8deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.hero-tag {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(45, 90, 58, 0.2);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--green-800);
  font-weight: 500;
  margin-bottom: 28px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(48px, 9vw, 120px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--green-900);
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.hero-title .grad {
  background: linear-gradient(120deg, var(--orange-600), var(--orange-500) 50%, var(--yellow-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}
.hero-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.8;
  color: var(--ink-2);
  max-width: 720px;
  margin: 0 auto 40px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 1.5px solid transparent;
}
.btn-primary {
  background: var(--green-800);
  color: white;
}
.btn-primary:hover {
  background: var(--green-900);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(15, 42, 29, 0.25);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.6);
  color: var(--green-900);
  border-color: var(--green-800);
}
.btn-ghost:hover {
  background: var(--green-800);
  color: white;
}
.btn-danger {
  background: var(--red-600);
  color: white;
}
.btn-danger:hover {
  background: var(--red-700);
  transform: translateY(-2px);
}

.hero-data {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
  padding: 32px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(45, 90, 58, 0.15);
}
.data-cell { text-align: center; }
.data-num {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 900;
  color: var(--green-800);
  line-height: 1;
}
.data-unit {
  font-size: 0.5em;
  color: var(--orange-500);
  margin-left: 2px;
}
.data-label {
  margin-top: 8px;
  font-size: 13px;
  color: var(--ink-2);
  letter-spacing: 0.05em;
}

.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--green-800);
  font-size: 12px;
  letter-spacing: 0.2em;
  opacity: 0.6;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--green-800);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--orange-500);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(200%); }
}

/* ====================================================
   SECTION (通用)
==================================================== */
.section {
  padding: 100px 0;
  position: relative;
}
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--orange-600);
  font-weight: 600;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  color: var(--green-900);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.section-lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-2);
}

/* ====================================================
   WHY (为何是云南)
==================================================== */
.why { background: var(--bg); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.why-card {
  background: var(--paper);
  padding: 32px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: all 0.3s ease;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-500);
}
.why-icon {
  font-size: 40px;
  margin-bottom: 16px;
}
.why-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 12px;
}
.why-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-2);
}

.quote-block {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px;
  background: var(--green-800);
  border-radius: var(--radius-lg);
  color: var(--green-100);
  text-align: center;
  position: relative;
}
.quote-mark {
  font-family: var(--font-serif);
  font-size: 80px;
  color: var(--orange-500);
  line-height: 0.5;
  display: block;
  margin-bottom: 16px;
}
.quote-block p {
  font-size: 19px;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 16px;
}
.quote-block cite {
  font-size: 13px;
  color: var(--orange-300);
  font-style: normal;
  letter-spacing: 0.1em;
}

/* ====================================================
   FEATURED (四大名菌)
==================================================== */
.featured {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.featured-card {
  background: var(--paper);
  padding: 36px 28px;
  border-radius: var(--radius);
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all 0.35s ease;
}
.featured-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--green-500);
  transition: height 0.3s ease;
}
.featured-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.featured-card:hover::before { height: 8px; }
.feat-1::before { background: linear-gradient(90deg, #8b4513, #d4843a); }
.feat-2::before { background: linear-gradient(90deg, #2d5a3a, #5d8a5a); }
.feat-3::before { background: linear-gradient(90deg, #1a1a1a, #4a4a4a); }
.feat-4::before { background: linear-gradient(90deg, #6b5b1a, #c4a020); }

.featured-emoji {
  font-size: 64px;
  margin-bottom: 16px;
  display: inline-block;
  transition: transform 0.4s ease;
}
.featured-card:hover .featured-emoji { transform: scale(1.1) rotate(-5deg); }
.featured-name {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 4px;
}
.featured-latin {
  font-size: 12px;
  font-style: italic;
  color: var(--ink-3);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.featured-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-2);
  margin-bottom: 16px;
}
.featured-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--green-100);
  color: var(--green-800);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
}
.see-all { text-align: center; }

/* ====================================================
   SEASON (季节时间线)
==================================================== */
.season-section { background: var(--bg-2); }
.season-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}
.season-timeline::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: linear-gradient(90deg, var(--green-300), var(--orange-400), var(--green-300));
  z-index: 0;
}
.month {
  background: var(--paper);
  padding: 32px 20px;
  border-radius: var(--radius);
  text-align: center;
  position: relative;
  z-index: 1;
  border: 1px solid var(--line);
  transition: all 0.3s ease;
}
.month:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.m-num {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 900;
  color: var(--green-700);
  margin-bottom: 4px;
}
.m-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--orange-600);
  margin-bottom: 12px;
}
.m-info {
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-2);
}
.month.highlight {
  background: var(--green-800);
  color: white;
  border-color: var(--green-800);
}
.month.highlight .m-num { color: var(--orange-300); }
.month.highlight .m-info { color: var(--green-100); }
.month.peak {
  background: var(--orange-500);
  color: white;
  border-color: var(--orange-500);
  transform: scale(1.05);
}
.month.peak .m-num { color: white; }
.month.peak .m-info { color: rgba(255,255,255,0.95); }

/* ====================================================
   BIG STATS
==================================================== */
.big-stats {
  background: var(--green-900);
  color: white;
  padding: 80px 0;
}
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 900;
  color: var(--orange-400);
  line-height: 1;
  margin-bottom: 12px;
}
.stat-label {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 6px;
}
.stat-note {
  font-size: 13px;
  color: var(--green-300);
}

/* ====================================================
   VALUE
==================================================== */
.value { background: var(--bg); }
.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.value-card {
  background: var(--paper);
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  position: relative;
}
.value-num {
  position: absolute;
  top: 20px;
  right: 32px;
  font-family: var(--font-serif);
  font-size: 80px;
  font-weight: 900;
  color: var(--green-100);
  line-height: 1;
}
.value-card h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.value-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-2);
  position: relative;
  z-index: 1;
}

/* ====================================================
   DANGER BANNER
==================================================== */
.danger-banner {
  background: linear-gradient(135deg, var(--red-700), var(--red-500));
  color: white;
  padding: 48px 0;
}
.danger-content {
  display: flex;
  align-items: center;
  gap: 32px;
}
.danger-icon {
  font-size: 64px;
  flex-shrink: 0;
}
.danger-text { flex: 1; }
.danger-text h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}
.danger-text p {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.95;
}

/* ====================================================
   CULTURE
==================================================== */
.culture { background: var(--bg-2); }
.culture-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.culture-card {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all 0.3s ease;
}
.culture-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.culture-img {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
}
.culture-body { padding: 24px; }
.culture-body h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 10px;
}
.culture-body p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-2);
}

/* ====================================================
   EXPLORE
==================================================== */
.explore { background: var(--bg); }
.explore-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.explore-card {
  background: var(--paper);
  padding: 36px 28px;
  border-radius: var(--radius);
  border: 1.5px solid var(--line);
  position: relative;
  transition: all 0.3s ease;
  display: block;
}
.explore-card:hover {
  border-color: var(--green-700);
  background: var(--green-100);
  transform: translateY(-4px);
}
.exp-icon {
  font-size: 48px;
  margin-bottom: 16px;
}
.explore-card h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 8px;
}
.explore-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-2);
  margin-bottom: 20px;
}
.exp-arrow {
  position: absolute;
  bottom: 24px;
  right: 28px;
  font-size: 24px;
  color: var(--orange-500);
  transition: transform 0.3s ease;
}
.explore-card:hover .exp-arrow {
  transform: translateX(8px);
}
.explore-warn { border-color: var(--red-400); }
.explore-warn:hover {
  border-color: var(--red-600);
  background: #fdf2f2;
}

/* ====================================================
   FOOTER
==================================================== */
.site-footer {
  background: var(--green-900);
  color: var(--green-100);
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-col h4 {
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--orange-300);
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--green-300);
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--orange-300); }
.footer-desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--green-300);
  margin-top: 16px;
  max-width: 360px;
}
.footer-note {
  font-size: 13px;
  line-height: 1.7;
  color: var(--green-300);
  margin-bottom: 12px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 12px;
  color: var(--green-300);
  letter-spacing: 0.05em;
}

/* ====================================================
   SPECIES PAGE
==================================================== */
.page-hero {
  padding: 140px 0 60px;
  background: linear-gradient(180deg, #e8f0e6 0%, var(--bg) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  color: var(--green-900);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.page-hero p {
  font-size: 18px;
  color: var(--ink-2);
  max-width: 640px;
  margin: 0 auto;
}

.filter-bar {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 40px 0 60px;
}
.filter-btn {
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--paper);
  border: 1.5px solid var(--line);
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}
.filter-btn:hover { border-color: var(--green-500); }
.filter-btn.active {
  background: var(--green-800);
  color: white;
  border-color: var(--green-800);
}
.filter-btn.danger.active {
  background: var(--red-600);
  border-color: var(--red-600);
}

.species-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}
.species-card {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.species-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-500);
}
.species-card.toxic { border-color: var(--red-400); }
.species-card.toxic:hover { border-color: var(--red-600); }

.species-visual {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 110px;
  position: relative;
  overflow: hidden;
}
.species-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.3), transparent);
}
.species-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.species-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}
.species-tag {
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.tag-edible { background: var(--green-100); color: var(--green-800); }
.tag-toxic { background: #fde2e2; color: var(--red-700); }
.tag-premium { background: #fef3c7; color: #8b6914; }
.tag-popular { background: #fde9d4; color: var(--orange-700); }

.species-name {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 2px;
}
.species-card.toxic .species-name { color: var(--red-700); }
.species-latin {
  font-size: 12px;
  font-style: italic;
  color: var(--ink-3);
  margin-bottom: 12px;
}
.species-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-2);
  margin-bottom: 12px;
  flex: 1;
}
.species-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--ink-3);
}
.species-meta span { display: flex; align-items: center; gap: 4px; }
.toxicity-bar {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.toxicity-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
}
.toxicity-dot.active { background: var(--red-500); }

/* ====================================================
   REGIONS PAGE
==================================================== */
.region-grid {
  display: grid;
  gap: 24px;
  margin-bottom: 80px;
}
.region-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 280px 1fr;
  transition: all 0.3s ease;
}
.region-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.region-visual {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.region-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.15), transparent 60%);
}
.region-emoji {
  font-size: 90px;
  margin-bottom: 16px;
  position: relative;
}
.region-rank {
  font-family: var(--font-serif);
  font-size: 14px;
  letter-spacing: 0.3em;
  opacity: 0.8;
  position: relative;
}
.region-body { padding: 32px; }
.region-body h3 {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 8px;
}
.region-subtitle {
  font-size: 13px;
  color: var(--orange-600);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.region-body p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-2);
  margin-bottom: 16px;
}
.region-sig {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* ====================================================
   COOKING PAGE
==================================================== */
.cook-section { margin-bottom: 60px; }
.cook-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cook-card {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all 0.3s ease;
}
.cook-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.cook-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 90px;
  position: relative;
}
.cook-body { padding: 24px; }
.cook-body h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 8px;
}
.cook-meta {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: var(--ink-3);
  margin-bottom: 12px;
}
.cook-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}
.cook-body p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-2);
}

.method-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.method-card {
  background: var(--paper);
  padding: 28px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  text-align: center;
  transition: all 0.3s ease;
}
.method-card:hover {
  border-color: var(--orange-500);
  background: #fef3e6;
}
.method-emoji {
  font-size: 50px;
  margin-bottom: 12px;
}
.method-card h4 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 6px;
}
.method-card p {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.6;
}

/* ====================================================
   SAFETY PAGE
==================================================== */
.safety-hero {
  background: linear-gradient(135deg, #fef3e6 0%, #fde2c4 100%);
}
.safety-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 60px;
}
.safety-card {
  background: var(--paper);
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.safety-card.danger { border-color: var(--red-400); border-width: 1.5px; }
.safety-card.danger h3 { color: var(--red-700); }
.safety-card h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.safety-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-2);
  margin-bottom: 12px;
}
.safety-list {
  list-style: none;
  margin-top: 12px;
}
.safety-list li {
  padding-left: 28px;
  position: relative;
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink-2);
  margin-bottom: 6px;
}
.safety-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--orange-500);
  font-weight: bold;
}
.safety-card.danger .safety-list li::before { content: '⚠'; color: var(--red-500); }

.toxic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}
.toxic-card {
  background: var(--paper);
  border-radius: var(--radius);
  border: 1.5px solid var(--red-400);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.toxic-card::before {
  content: '剧毒';
  position: absolute;
  top: 16px;
  right: -28px;
  background: var(--red-600);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 32px;
  transform: rotate(35deg);
  letter-spacing: 0.1em;
}
.toxic-emoji {
  font-size: 56px;
  margin-bottom: 12px;
}
.toxic-card h4 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--red-700);
  margin-bottom: 4px;
}
.toxic-latin {
  font-size: 12px;
  font-style: italic;
  color: var(--ink-3);
  margin-bottom: 10px;
}
.toxic-card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-2);
}

.emergency-box {
  background: linear-gradient(135deg, var(--red-700), var(--red-500));
  color: white;
  padding: 48px;
  border-radius: var(--radius-lg);
  margin-bottom: 60px;
}
.emergency-box h3 {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 16px;
  text-align: center;
}
.emergency-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.emergency-step {
  text-align: center;
  position: relative;
}
.emergency-step::after {
  content: '→';
  position: absolute;
  top: 28px;
  right: -16px;
  font-size: 24px;
  color: rgba(255,255,255,0.5);
}
.emergency-step:last-child::after { content: ''; }
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 900;
  margin: 0 auto 12px;
}
.emergency-step h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}
.emergency-step p {
  font-size: 13px;
  line-height: 1.6;
  opacity: 0.9;
}

.myth-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.myth-card {
  background: var(--paper);
  padding: 20px;
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--red-500);
}
.myth-q {
  font-size: 14px;
  font-weight: 600;
  color: var(--red-700);
  margin-bottom: 4px;
}
.myth-a {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.6;
}

/* ====================================================
   RESPONSIVE
==================================================== */
@media (max-width: 1024px) {
  .hero-data { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .culture-grid { grid-template-columns: repeat(2, 1fr); }
  .explore-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .region-card { grid-template-columns: 1fr; }
  .region-visual { padding: 24px; flex-direction: row; gap: 20px; }
  .species-grid { grid-template-columns: repeat(2, 1fr); }
  .cook-grid { grid-template-columns: repeat(2, 1fr); }
  .method-tabs { grid-template-columns: repeat(2, 1fr); }
  .toxic-grid { grid-template-columns: repeat(2, 1fr); }
  .season-timeline { grid-template-columns: repeat(3, 1fr); }
  .season-timeline::before { display: none; }
  .emergency-steps { grid-template-columns: repeat(2, 1fr); }
  .emergency-step::after { display: none; }
}

@media (max-width: 720px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    flex-direction: column;
    padding: 16px;
    gap: 0;
    box-shadow: var(--shadow-md);
    border-radius: 0 0 var(--radius) var(--radius);
    display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav a { width: 100%; text-align: center; }
  .nav-toggle { display: block; }

  .hero { min-height: 90vh; padding: 100px 0 60px; }
  .hero-data { grid-template-columns: repeat(2, 1fr); padding: 20px; gap: 16px; }
  .why-grid,
  .featured-grid,
  .culture-grid,
  .explore-grid,
  .species-grid,
  .cook-grid,
  .method-tabs,
  .value-grid,
  .safety-grid,
  .myth-grid,
  .toxic-grid {
    grid-template-columns: 1fr;
  }
  .stat-row { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .danger-content { flex-direction: column; text-align: center; }
  .section { padding: 64px 0; }
  .quote-block { padding: 32px 24px; }
  .season-timeline { grid-template-columns: repeat(2, 1fr); }
  .month.peak { transform: none; }
  .region-visual { flex-direction: column; }
  .emergency-steps { grid-template-columns: 1fr; }
  .emergency-box { padding: 32px 24px; }
  .page-hero { padding: 110px 0 40px; }
}

/* ====================================================
   SPECIES-CARD-LINK
==================================================== */
a.species-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
  border-radius: var(--radius);
}
a.species-card-link:hover {
  transform: translateY(-4px);
}

/* ====================================================
   ANIMATIONS / FADE-IN
==================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ====================================================
   物种详情页样式(species/*.html)
==================================================== */
.breadcrumb {
  max-width: 1200px;
  margin: 20px auto 0;
  padding: 0 24px;
  font-size: 14px;
  color: var(--green-700, #2d4a2d);
}
.breadcrumb a {
  color: var(--orange-600, #c75a20);
  text-decoration: none;
}
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: var(--green-800, #1a2e1a); font-weight: 500; }

.species-hero {
  position: relative;
  margin: 24px auto 0;
  max-width: 1200px;
  border-radius: 24px;
  padding: 64px 32px;
  color: #fff;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}
.species-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.18), transparent 60%),
              radial-gradient(circle at 80% 70%, rgba(0,0,0,0.18), transparent 60%);
  pointer-events: none;
}
.species-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}
.species-emoji {
  font-size: 96px;
  line-height: 1;
  margin-bottom: 16px;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3));
}
.species-hero h1 {
  font-size: 56px;
  font-weight: 900;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  font-family: 'Noto Serif SC', 'Playfair Display', serif;
}
.species-hero .species-latin {
  font-size: 22px;
  font-style: italic;
  opacity: 0.92;
  margin: 0 0 20px;
}
.warning-badge {
  display: inline-block;
  background: rgba(0,0,0,0.5);
  color: #ffd0d0;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 700;
  border: 2px solid rgba(255,255,255,0.4);
  margin-top: 12px;
}
.premium-badge {
  display: inline-block;
  background: rgba(255,215,0,0.25);
  color: #fff5d0;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 700;
  border: 2px solid rgba(255,215,0,0.5);
  margin-top: 12px;
}
.edible-badge {
  display: inline-block;
  background: rgba(40, 167, 80, 0.3);
  color: #d4ffe0;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 700;
  border: 2px solid rgba(40, 167, 80, 0.5);
  margin-top: 12px;
}

.species-info {
  max-width: 1200px;
  margin: 32px auto;
  padding: 0 24px;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}
.info-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px 28px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  border-left: 4px solid var(--orange-500, #e07a3c);
}
.info-card h3 {
  margin: 0 0 14px;
  font-size: 20px;
  color: var(--green-800, #1a2e1a);
  font-family: 'Noto Serif SC', serif;
  font-weight: 700;
}
.info-card p {
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}
.info-card p strong { color: var(--green-800, #1a2e1a); }
.info-card p em { color: var(--orange-600, #c75a20); font-style: italic; }

.toxicity {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
}
.toxicity.toxic {
  background: var(--red-100, #fde0e0);
  color: var(--red-700, #b03020);
}
.toxicity.edible {
  background: var(--green-100, #d8f0d8);
  color: var(--green-700, #2d5a2d);
}

.species-content {
  max-width: 1000px;
  margin: 32px auto 60px;
  padding: 0 24px;
  background: #fff;
  border-radius: 24px;
  padding: 40px 48px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.05);
}
.species-content h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--green-800, #1a2e1a);
  margin: 32px 0 16px;
  font-family: 'Noto Serif SC', serif;
  position: relative;
  padding-left: 18px;
}
.species-content h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 5px;
  background: linear-gradient(180deg, var(--orange-500, #e07a3c), var(--yellow-500, #f0c850));
  border-radius: 3px;
}
.species-content h2:first-of-type { margin-top: 0; }

.content-block {
  font-size: 16px;
  line-height: 1.85;
  color: #333;
  margin-bottom: 16px;
}
.content-block p { margin: 0 0 12px; }
.content-block ul, .content-block ol {
  margin: 0 0 16px;
  padding-left: 24px;
}
.content-block li { margin-bottom: 6px; }
.content-block strong { color: var(--green-800, #1a2e1a); }
.content-block em { color: var(--orange-600, #c75a20); font-style: italic; }

.warning-box {
  background: linear-gradient(135deg, #fde0e0 0%, #ffd0d0 100%);
  border-left: 5px solid var(--red-600, #b03020);
  padding: 20px 24px;
  border-radius: 12px;
  margin: 16px 0;
}
.warning-box p, .warning-box li { color: #5a1010; }
.warning-box strong { color: #800000; }
.notice-box {
  background: linear-gradient(135deg, #fff8e0 0%, #fff0c0 100%);
  border-left: 5px solid var(--orange-500, #e07a3c);
  padding: 20px 24px;
  border-radius: 12px;
  margin: 16px 0;
}
.notice-box p, .notice-box li { color: #5a4010; }
.notice-box strong { color: #804000; }

.related-species {
  margin-top: 32px;
  padding: 24px;
  background: linear-gradient(135deg, #f7f4ed 0%, #efe8d8 100%);
  border-radius: 16px;
}
.related-species p { margin: 0 0 12px; font-weight: 600; color: var(--green-800, #1a2e1a); }
.related-species ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
}
.related-species li a {
  display: block;
  padding: 10px 16px;
  background: #fff;
  border-radius: 10px;
  color: var(--orange-600, #c75a20);
  text-decoration: none;
  border: 1px solid rgba(199, 90, 32, 0.2);
  transition: all 0.2s;
}
.related-species li a:hover {
  background: var(--orange-500, #e07a3c);
  color: #fff;
  transform: translateY(-2px);
}

footer { margin-top: 40px; }

/* ====================================================
   Header 搜索框
==================================================== */
.header-search {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 100px;
  padding: 4px 4px 4px 14px;
  margin-left: auto;
  margin-right: 8px;
  transition: all 0.25s;
  min-width: 160px;
  max-width: 240px;
  flex-shrink: 1;
}
.header-search:focus-within {
  background: #fff;
  border-color: var(--orange-500, #e07a3c);
  box-shadow: 0 4px 16px rgba(224, 122, 60, 0.25);
}
.header-search input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 14px;
  color: #fff;
  font-family: inherit;
  padding: 6px 8px;
  min-width: 0;
}
.header-search:focus-within input { color: #1a2e1a; }
.header-search input::placeholder { color: rgba(255,255,255,0.75); }
.header-search:focus-within input::placeholder { color: #999; }
.header-search button {
  border: none;
  background: var(--orange-500, #e07a3c);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  font-weight: 700;
  transition: background 0.2s;
  flex-shrink: 0;
}
.header-search button:hover { background: var(--orange-600, #c75a20); }

@media (max-width: 1100px) {
  .header-search { display: none; }
  .main-nav a { padding: 8px 10px; font-size: 13px; }
}

@media (max-width: 920px) {
  .main-nav { display: none; }
  .nav-toggle { display: block; }
}

/* ====================================================
   搜索页 (search.html)
==================================================== */
.search-hero {
  padding: 80px 0 40px;
}
.search-box {
  max-width: 700px;
  margin: 32px auto 24px;
}
.search-form {
  display: flex;
  gap: 0;
  background: #fff;
  border-radius: 100px;
  padding: 8px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}
.search-form input {
  flex: 1;
  border: none;
  outline: none;
  padding: 16px 24px;
  font-size: 18px;
  font-family: inherit;
  background: transparent;
  color: #1a2e1a;
}
.search-form input::placeholder { color: #999; }
.search-btn {
  border: none;
  background: linear-gradient(135deg, var(--orange-500, #e07a3c), var(--orange-600, #c75a20));
  color: #fff;
  padding: 14px 36px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.search-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(224, 122, 60, 0.4);
}

.quick-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}
.quick-tag-label {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-right: 4px;
}
.quick-tag {
  background: rgba(255,255,255,0.18);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.quick-tag:hover {
  background: rgba(255,255,255,0.28);
  transform: translateY(-1px);
}
.quick-tag.active {
  background: var(--orange-500, #e07a3c);
  border-color: var(--orange-500, #e07a3c);
  color: #fff;
}

.result-meta {
  text-align: center;
  padding: 16px 0 24px;
  color: var(--green-700, #2d4a2d);
  font-size: 15px;
}
.result-meta #resultCount {
  font-size: 28px;
  font-weight: 800;
  color: var(--orange-600, #c75a20);
  font-family: 'Noto Serif SC', serif;
}
.result-meta #resultQuery { color: #666; font-size: 14px; }
.result-meta #resultLoading { color: #888; font-size: 13px; margin-left: 12px; }

.result-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
  margin-bottom: 48px;
}
.result-card {
  display: flex;
  align-items: stretch;
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  border-left: 5px solid var(--green-500, #5a8a3a);
  transition: all 0.25s;
}
.result-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}
.result-card.r-toxic { border-left-color: var(--red-500, #c84030); }
.result-card.r-edible { border-left-color: var(--green-500, #5a8a3a); }

.r-emoji {
  font-size: 40px;
  margin-right: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 56px;
}
.r-body { flex: 1; min-width: 0; }
.r-name {
  font-size: 18px;
  font-weight: 700;
  color: #1a2e1a;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.r-tag {
  font-size: 11px;
  padding: 2px 10px;
  border-radius: 100px;
  font-weight: 600;
  white-space: nowrap;
}
.r-tag-toxic { background: #fde0e0; color: #b03020; }
.r-tag-edible { background: #d8f0d8; color: #2d5a2d; }
.r-latin {
  font-size: 13px;
  font-style: italic;
  color: var(--orange-600, #c75a20);
  margin-bottom: 6px;
}
.r-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: #666;
}
.r-meta span { display: inline-flex; align-items: center; gap: 2px; }

.result-card mark {
  background: linear-gradient(120deg, #fff3a0 0%, #ffe060 100%);
  color: #5a4010;
  padding: 1px 4px;
  border-radius: 3px;
  font-weight: 700;
}

.result-more {
  text-align: center;
  padding: 24px;
  color: #888;
  font-size: 14px;
  background: #f8f6f0;
  border-radius: 12px;
}

.result-empty {
  text-align: center;
  padding: 80px 20px;
}
.empty-icon { font-size: 80px; margin-bottom: 20px; opacity: 0.5; }
.result-empty h3 {
  font-size: 22px;
  color: #1a2e1a;
  margin: 0 0 12px;
  font-family: 'Noto Serif SC', serif;
}
.result-empty p { color: #666; font-size: 15px; }
.result-empty a {
  color: var(--orange-600, #c75a20);
  text-decoration: none;
  font-weight: 600;
}
.result-empty a:hover { text-decoration: underline; }

/* ====================================================
   物种详情页 - 真实照片
==================================================== */
.species-hero {
  min-height: 520px;
  padding: 32px 24px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* (v3 旧定义已删除: <img class="species-photo"> 不再使用,详情见下方 section 定义) */
.photo-credit {
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.photo-credit-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 6px;
  opacity: 0.92;
}
.photo-credit-row a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.photo-credit-row a:hover { color: var(--yellow-500, #f0c850); }
.photo-disclaimer {
  background: rgba(0, 0, 0, 0.45);
  color: #fff5d0;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 11.5px;
  border: 1px solid rgba(255, 220, 100, 0.4);
  display: inline-block;
  margin-top: 4px;
  max-width: 100%;
}
.photo-disclaimer strong { color: #ffe080; }

@media (max-width: 600px) {
  .species-photo { max-width: 240px; max-height: 240px; }
  .species-hero { min-height: 420px; }
}

/* ====================================================
   物种图片区(species-photo)
==================================================== */
.species-photo {
  max-width: 1100px;
  margin: 32px auto 24px;
  padding: 0 24px;
  clear: both;
}
.photo-frame {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  border: 4px solid #fff;
  position: relative;
  text-align: center;
}
.photo-frame img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 540px;
  object-fit: contain;
  background: linear-gradient(135deg, #2c2c2c, #4a3a2a);
}

.photo-meta {
  background: #fff;
  border-radius: 12px;
  padding: 16px 20px;
  margin-top: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  font-size: 14px;
  line-height: 1.7;
}
.photo-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 8px;
}
.photo-meta-row:last-child { margin-bottom: 0; }
.photo-tag {
  display: inline-block;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  color: #2d5a2d;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
}
.photo-meta-credit {
  color: #666;
  font-size: 13px;
}
.photo-meta-credit a {
  color: var(--orange-600, #c75a20);
  text-decoration: none;
  font-weight: 600;
}
.photo-meta-credit a:hover { text-decoration: underline; }
.photo-meta-credit strong { color: #1a2e1a; }

.photo-disclaimer {
  background: linear-gradient(135deg, #fff8e0 0%, #fff0c0 100%);
  border-left: 4px solid #f0c850;
  padding: 12px 18px;
  border-radius: 8px;
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.6;
  color: #5a4010;
}
.photo-disclaimer strong { color: #5a3000; }

/* 占位卡(无图) */
.species-photo.no-photo { padding-top: 0; }
.photo-placeholder {
  background: linear-gradient(135deg, #f7f4ed 0%, #efe8d8 100%);
  border: 2px dashed #c9bfa0;
  border-radius: 16px;
  padding: 40px 32px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.placeholder-icon {
  font-size: 64px;
  flex-shrink: 0;
  opacity: 0.6;
  line-height: 1;
}
.placeholder-text { flex: 1; }
.placeholder-text strong {
  font-size: 18px;
  color: #1a2e1a;
  display: block;
  margin-bottom: 8px;
}
.placeholder-text p {
  margin: 0 0 12px;
  color: #555;
  font-size: 14px;
}
.placeholder-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 8px;
}
.placeholder-text li {
  background: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  color: #444;
  border-left: 3px solid var(--orange-500, #e07a3c);
}
.placeholder-text em { color: var(--orange-600, #c75a20); font-style: italic; }

@media (max-width: 640px) {
  .photo-placeholder { flex-direction: column; align-items: center; text-align: center; }
  .placeholder-icon { font-size: 48px; }
}

/* ====================================================
   毒菌占位卡警示(danger 变体)
==================================================== */
.species-photo.no-photo.danger {
  border: 3px solid #c0392b;
  border-radius: 18px;
  padding: 8px;
  background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
  box-shadow: 0 4px 20px rgba(192, 57, 43, 0.15);
  position: relative;
  overflow: hidden;
}
.species-photo.no-photo.danger::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, #c0392b 0%, #e74c3c 50%, #c0392b 100%);
  z-index: 1;
}
.photo-placeholder.danger {
  background: linear-gradient(135deg, #fff0f0 0%, #ffe0e0 100%);
  border: 2px dashed #c0392b;
  border-radius: 12px;
  position: relative;
}
.placeholder-danger-banner {
  background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
  color: #fff;
  padding: 14px 20px;
  border-radius: 8px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 2px 8px rgba(192, 57, 43, 0.3);
}
.placeholder-danger-banner .danger-icon {
  font-size: 26px;
  flex-shrink: 0;
  line-height: 1;
}
.placeholder-danger-banner .danger-text {
  flex: 1;
  line-height: 1.45;
}
.placeholder-danger-banner strong {
  font-size: 16px;
  letter-spacing: 0.02em;
}
.placeholder-icon.danger-icon-large {
  font-size: 64px;
  color: #c0392b;
  opacity: 1;
  flex-shrink: 0;
  line-height: 1;
}

/* ====================================================
   分类剪影区(silhouette-row / silhouette-mini-row)
==================================================== */
.silhouette-row,
.silhouette-mini-row {
  max-width: 1100px;
  margin: 24px auto 0;
  clear: both;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 20px;
  align-items: stretch;
}
.silhouette-mini-row { margin-top: 24px; }

.silhouette-card {
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-top: 4px solid var(--orange-500, #e07a3c);
}
.silhouette-card.mini { padding: 12px; }
.silhouette-img {
  width: 100%;
  max-width: 160px;
  height: auto;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.1));
}
.silhouette-caption {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.silhouette-caption strong {
  font-size: 14px;
  color: #1a2e1a;
  font-family: 'Noto Serif SC', serif;
}
.silhouette-caption span {
  font-size: 12px;
  color: #888;
}

.silhouette-notice {
  background: linear-gradient(135deg, #f7f4ed 0%, #efe8d8 100%);
  border-left: 4px solid #c9bfa0;
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 13px;
  line-height: 1.7;
  color: #5a4010;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.silhouette-notice.mini { padding: 12px 16px; }
.silhouette-notice strong {
  color: #5a3000;
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
}
.silhouette-notice p { margin: 0; }
.silhouette-notice strong + p { font-size: 12.5px; }

@media (max-width: 640px) {
  .silhouette-row,
  .silhouette-mini-row {
    grid-template-columns: 1fr;
  }
}
