/* ============================================================
   兔兔秘密花园 — Bunny Secret Garden Theme
   Whimsical Botanical Garden with Fluffy Bunny Motifs
   Carrot Orange + Garden Greens on Light Fresh Background
   ============================================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Primary palette */
  --carrot: #e67e22;
  --carrot-light: #f5b041;
  --carrot-pale: #fdebd0;
  --carrot-glow: #fad7a1;
  
  /* Garden greens */
  --garden: #27ae60;
  --garden-light: #58d68d;
  --garden-pale: #d5f5e3;
  --garden-dark: #1e8449;
  --leaf: #7dcea0;
  --moss: #a9dfbf;
  
  /* Bunny neutrals */
  --bunny-fur: #c49a6c;
  --bunny-fur-light: #e8d5c4;
  --bunny-pink: #f8c8d8;
  --bunny-pink-soft: #fde8ef;
  
  /* Background & surfaces */
  --bg: #f9faf6;
  --bg-cream: #fefaf5;
  --bg-card: #ffffff;
  --bg-header: rgba(255, 255, 255, 0.95);
  --bg-footer: #2c3e1f;
  
  /* Text */
  --text: #3d3d2e;
  --text-light: #6b6b5a;
  --text-muted: #999988;
  --text-on-dark: #e8ecd6;
  
  /* UI */
  --border: #e0e8d8;
  --shadow-sm: 0 2px 8px rgba(39, 174, 96, 0.08);
  --shadow-md: 0 4px 16px rgba(39, 174, 96, 0.12);
  --shadow-lg: 0 8px 32px rgba(39, 174, 96, 0.16);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-sm: 8px;
  
  /* Typography */
  --font: 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
  --font-serif: Georgia, 'Noto Serif SC', 'SimSun', serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  
  /* Whimsical bunny-paw scattered background */
  background-image:
    radial-gradient(circle at 10% 20%, rgba(245, 176, 65, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 85% 60%, rgba(125, 206, 160, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 85%, rgba(248, 200, 216, 0.07) 0%, transparent 50%),
    radial-gradient(circle at 20% 75%, rgba(39, 174, 96, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 70% 15%, rgba(230, 126, 34, 0.05) 0%, transparent 40%);
}

/* --- Header --- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-header);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 2px solid var(--moss);
  box-shadow: 0 1px 8px rgba(39, 174, 96, 0.06);
}

header::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--carrot) 20%, 
    var(--garden) 50%, 
    var(--carrot) 80%, 
    transparent 100%);
  border-radius: 0 0 2px 2px;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.6rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--garden-dark);
}

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

.site-logo .logo-text {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.site-logo .logo-bunny {
  font-size: 1.4rem;
}

/* --- Navigation --- */
nav {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

nav a {
  text-decoration: none;
  color: var(--text-light);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.25s ease;
  position: relative;
}

nav a:hover {
  color: var(--carrot);
  background: var(--carrot-pale);
}

nav a.active {
  color: var(--carrot);
  font-weight: 600;
}

nav a.active::after {
  content: '🐾';
  position: absolute;
  bottom: -2px;
  right: 4px;
  font-size: 0.55rem;
}

.nav-cta {
  background: linear-gradient(135deg, var(--carrot), var(--carrot-light));
  color: #fff !important;
  padding: 0.5rem 1.3rem !important;
  border-radius: 24px !important;
  font-weight: 600 !important;
  box-shadow: 0 2px 8px rgba(230, 126, 34, 0.3);
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--carrot-light), var(--carrot)) !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(230, 126, 34, 0.4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* --- Main --- */
main {
  flex: 1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  background: linear-gradient(170deg, 
    var(--bg-cream) 0%, 
    var(--carrot-pale) 30%, 
    var(--garden-pale) 70%, 
    var(--bg-cream) 100%);
  padding: 4rem 0 3rem;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(245, 176, 65, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(88, 214, 141, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

/* Bunny ear silhouettes in hero */
.hero-bg-ears {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 8rem;
  opacity: 0.06;
  pointer-events: none;
  user-select: none;
  letter-spacing: 3rem;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero img.hero-logo {
  max-width: 360px;
  height: auto;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--carrot) 0%, var(--garden-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.hero .hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  font-weight: 400;
}

.hero .hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.tag {
  display: inline-block;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

.tag-carrot {
  background: var(--carrot-pale);
  color: var(--carrot);
}

.tag-garden {
  background: var(--garden-pale);
  color: var(--garden-dark);
}

.tag-pink {
  background: var(--bunny-pink-soft);
  color: #c97a8e;
}

.tag-fur {
  background: var(--bunny-fur-light);
  color: #8b6914;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 2rem;
  border-radius: 28px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--carrot), var(--carrot-light));
  color: #fff;
  box-shadow: 0 4px 16px rgba(230, 126, 34, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(230, 126, 34, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--garden-dark);
  border: 2px solid var(--garden);
}

.btn-outline:hover {
  background: var(--garden-pale);
  transform: translateY(-2px);
}

/* Hero visual image */
.hero-visual {
  margin-top: 2.5rem;
  position: relative;
  display: inline-block;
}

.hero-visual img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* --- Sections --- */
section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
}

.section-title h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--garden-dark);
  display: inline-block;
  position: relative;
}

.section-title h2::after {
  content: '🐰';
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  opacity: 0.5;
}

.section-title .section-desc {
  color: var(--text-muted);
  margin-top: 0.5rem;
  font-size: 1.05rem;
}

/* Bunny paw divider */
.paw-divider {
  text-align: center;
  margin: 1rem 0 2rem;
  color: var(--moss);
  font-size: 1.2rem;
  letter-spacing: 1rem;
  opacity: 0.7;
}

/* --- Info Cards Grid --- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--carrot), var(--garden-light));
  border-radius: var(--radius) var(--radius) 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--moss);
}

.info-card:hover::before {
  opacity: 1;
}

.info-card .card-icon {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
}

.info-card h3 {
  font-size: 1.15rem;
  color: var(--garden-dark);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.info-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- Feature Cards --- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.8rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--leaf);
}

.feature-card .feat-icon {
  font-size: 2.2rem;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--carrot-pale);
  border-radius: 50%;
}

.feature-card:nth-child(even) .feat-icon {
  background: var(--garden-pale);
}

.feature-card h3 {
  font-size: 1.1rem;
  color: var(--garden-dark);
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.feature-card p {
  color: var(--text-light);
  font-size: 0.93rem;
  line-height: 1.6;
}

/* --- Story Blocks --- */
.story-block {
  background: var(--bg-cream);
  border-left: 4px solid var(--carrot);
  padding: 1.8rem 2rem;
  margin-bottom: 1.5rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  position: relative;
}

.story-block:nth-child(even) {
  border-left-color: var(--garden);
}

.story-block::before {
  content: '🌿';
  position: absolute;
  top: -5px;
  left: -16px;
  font-size: 0.8rem;
}

.story-block h3 {
  color: var(--garden-dark);
  margin-bottom: 0.6rem;
  font-size: 1.15rem;
}

.story-block p {
  color: var(--text-light);
  line-height: 1.8;
}

/* --- Character Cards --- */
.char-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.char-card {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.char-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--carrot-light);
}

.char-card .char-img {
  position: relative;
  background: linear-gradient(180deg, var(--bg-cream) 0%, var(--carrot-pale) 100%);
  padding: 1.5rem;
  text-align: center;
}

.char-card .char-img img {
  max-width: 220px;
  height: auto;
  border-radius: var(--radius-sm);
}

.char-card .char-img::after {
  content: '🐰';
  position: absolute;
  bottom: 8px;
  right: 16px;
  font-size: 1.2rem;
  opacity: 0.6;
}

.char-info {
  padding: 1.5rem;
}

.char-info h3 {
  font-size: 1.3rem;
  color: var(--carrot);
  margin-bottom: 0.3rem;
  font-weight: 700;
}

.char-info .char-role {
  display: inline-block;
  background: var(--garden-pale);
  color: var(--garden-dark);
  padding: 0.2rem 0.8rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 0.7rem;
}

.char-info .char-va {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
}

.char-info .char-desc {
  color: var(--text-light);
  font-size: 0.93rem;
  line-height: 1.7;
}

.char-info .char-traits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.8rem;
}

.char-trait {
  padding: 0.2rem 0.7rem;
  border-radius: 12px;
  font-size: 0.78rem;
  background: var(--bunny-pink-soft);
  color: #c97a8e;
}

/* --- Gallery --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
}

.gallery-grid a {
  display: block;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery-grid a:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-md);
}

.gallery-grid img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- Guide Steps --- */
.guide-steps {
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.guide-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.guide-step .step-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--carrot), var(--carrot-light));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 2px 8px rgba(230, 126, 34, 0.25);
}

.guide-step:nth-child(even) .step-num {
  background: linear-gradient(135deg, var(--garden), var(--garden-light));
  box-shadow: 0 2px 8px rgba(39, 174, 96, 0.25);
}

.guide-step h3 {
  color: var(--garden-dark);
  margin-bottom: 0.3rem;
  font-size: 1.1rem;
}

.guide-step p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- FAQ Accordion --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 0.8rem;
  overflow: hidden;
  background: var(--bg-card);
  transition: border-color 0.3s ease;
}

.faq-item:hover {
  border-color: var(--moss);
}

.faq-question {
  width: 100%;
  padding: 1.2rem 1.5rem;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font);
}

.faq-question .faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--carrot);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.2rem;
  color: var(--text-light);
  font-size: 0.93rem;
  line-height: 1.8;
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--carrot-pale) 0%, var(--garden-pale) 50%, var(--bunny-pink-soft) 100%);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '🐰';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 3rem;
  opacity: 0.3;
  transform: rotate(-15deg);
}

.cta-banner::after {
  content: '🥕';
  position: absolute;
  bottom: -15px;
  right: 25px;
  font-size: 2.5rem;
  opacity: 0.3;
  transform: rotate(15deg);
}

.cta-banner h2 {
  font-size: 1.8rem;
  color: var(--garden-dark);
  margin-bottom: 0.8rem;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.cta-banner .btn {
  position: relative;
  z-index: 1;
}

/* --- Breadcrumbs --- */
.breadcrumbs {
  padding: 1rem 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.breadcrumbs a {
  color: var(--carrot);
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

/* --- Page Hero (sub-pages) --- */
.page-hero {
  background: linear-gradient(170deg, var(--bg-cream) 0%, var(--garden-pale) 100%);
  padding: 3rem 0;
  text-align: center;
}

.page-hero h1 {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--garden-dark);
  margin-bottom: 0.5rem;
}

.page-hero p {
  color: var(--text-light);
  font-size: 1.1rem;
}

/* --- Content Sections --- */
.content-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.content-section h2 {
  font-size: 1.6rem;
  color: var(--carrot);
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--moss);
}

.content-section h3 {
  font-size: 1.2rem;
  color: var(--garden-dark);
  margin: 1.5rem 0 0.7rem;
}

.content-section p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 0.98rem;
}

/* Tip boxes */
.tip-box {
  background: var(--garden-pale);
  border-left: 4px solid var(--garden);
  padding: 1.2rem 1.5rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.5rem 0;
}

.tip-box strong {
  color: var(--garden-dark);
}

/* --- Stats Row --- */
.stats-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 0;
}

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

.stat-item .stat-value {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--carrot), var(--garden));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-item .stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* --- Footer --- */
footer {
  background: var(--bg-footer);
  color: var(--text-on-dark);
  padding: 2rem 0;
  text-align: center;
  margin-top: auto;
}

footer p {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* --- Lightbox --- */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-sm);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

/* --- Ending Cards --- */
.ending-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.ending-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.ending-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.ending-card .ending-emoji {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
}

.ending-card h3 {
  color: var(--carrot);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.ending-card p {
  color: var(--text-light);
  font-size: 0.93rem;
  line-height: 1.6;
}

/* --- Blockquote --- */
blockquote {
  background: var(--bg-cream);
  border-left: 4px solid var(--bunny-pink);
  padding: 1.2rem 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--text-light);
}

/* --- Table --- */
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.info-table th, .info-table td {
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.info-table th {
  background: var(--carrot-pale);
  color: var(--carrot);
  font-weight: 600;
  font-size: 0.9rem;
  width: 140px;
}

.info-table td {
  color: var(--text-light);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .header-inner {
    padding: 0.5rem 1rem;
  }

  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-header);
    flex-direction: column;
    padding: 1rem;
    border-bottom: 2px solid var(--moss);
    box-shadow: var(--shadow-md);
  }

  nav.open {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding: 2.5rem 0 2rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero img.hero-logo {
    max-width: 240px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .char-grid {
    grid-template-columns: 1fr;
  }

  .guide-step {
    flex-direction: column;
    gap: 0.8rem;
  }

  .stats-row {
    gap: 1.2rem;
  }

  .page-hero h1 {
    font-size: 1.8rem;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.6rem;
  }

  .hero .hero-subtitle {
    font-size: 1rem;
  }

  .btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }

  .section-title h2 {
    font-size: 1.5rem;
  }
}
