/* ============================================================
   Alice in Cradle / 爱丽丝的摇篮 - 简体中文推广站
   摇篮森林主题 — 森林绿 · 天空蓝 · 陶土暖 · 金箔点缀
   Light theme, unique design
   ============================================================ */

/* --- Custom Properties --- */
:root {
  --forest: #5B8C5A;
  --forest-dark: #3D6B4F;
  --forest-light: #8DB580;
  --forest-pale: #EDF5EC;
  --sky: #5B7DB1;
  --sky-dark: #3E5F8A;
  --sky-light: #97B3D6;
  --sky-pale: #EDF2F8;
  --clay: #C97D60;
  --clay-dark: #A0523D;
  --clay-light: #E0A98D;
  --clay-pale: #FDF0EA;
  --gold: #C4A44A;
  --gold-light: #DFC87A;
  --gold-pale: #FBF6E8;
  --text-primary: #2C2416;
  --text-secondary: #5C5346;
  --text-muted: #968C7E;
  --surface: #FFFFFF;
  --surface-alt: #F7F4EE;
  --surface-warm: #FAF8F3;
  --border: #E0D9CC;
  --border-light: #EDE7DA;
  --shadow-sm: 0 1px 3px rgba(44,36,22,0.06);
  --shadow-md: 0 4px 16px rgba(44,36,22,0.08);
  --shadow-lg: 0 8px 32px rgba(44,36,22,0.10);
  --shadow-glow-gold: 0 0 24px rgba(196,164,74,0.18);
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --font-heading: 'Georgia', 'Noto Serif SC', 'STSong', 'SimSun', serif;
  --font-body: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', sans-serif;
  --max-width: 1160px;
  --nav-height: 68px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--surface-warm);
  line-height: 1.75;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250,248,243,0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  height: var(--nav-height);
  box-shadow: 0 1px 8px rgba(44,36,22,0.04);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: color 0.25s;
}

.site-logo:hover {
  color: var(--forest-dark);
}

.site-logo .logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--forest), var(--sky));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(91,140,90,0.25);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  border-radius: var(--radius-xl);
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.92rem;
  font-weight: 500;
  transition: all 0.25s ease;
  position: relative;
}

.main-nav a:hover {
  color: var(--forest-dark);
  background: var(--forest-pale);
}

.main-nav a.active {
  color: var(--forest-dark);
  background: var(--forest-pale);
  font-weight: 600;
}

.main-nav .nav-cta {
  background: linear-gradient(135deg, var(--forest), var(--sky));
  color: white !important;
  font-weight: 600;
  padding: 8px 22px;
  margin-left: 6px;
  box-shadow: 0 2px 10px rgba(91,140,90,0.30);
  border-radius: var(--radius-xl);
}

.main-nav .nav-cta:hover {
  box-shadow: 0 4px 18px rgba(91,140,90,0.40);
  transform: translateY(-1px);
  background: linear-gradient(135deg, var(--forest-dark), var(--sky-dark));
}

/* ============================================================
   HERO SECTION (Home)
   ============================================================ */
.hero {
  position: relative;
  background: linear-gradient(168deg, var(--forest-pale) 0%, var(--sky-pale) 35%, var(--surface-warm) 65%);
  padding: 84px 24px 96px;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -70px;
  right: -50px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(196,164,74,0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(91,140,90,0.10) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  padding: 6px 20px;
  background: rgba(255,255,255,0.75);
  border: 1px solid var(--forest-light);
  border-radius: var(--radius-xl);
  color: var(--forest-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 18px;
  letter-spacing: 0.03em;
}

.hero h1 .accent {
  background: linear-gradient(135deg, var(--forest), var(--sky));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 38px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}

.btn-primary {
  background: linear-gradient(135deg, var(--forest), var(--sky));
  color: white;
  box-shadow: 0 4px 18px rgba(91,140,90,0.30);
}

.btn-primary:hover {
  box-shadow: 0 6px 26px rgba(91,140,90,0.40);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--surface);
  color: var(--forest-dark);
  border: 2px solid var(--forest-light);
}

.btn-secondary:hover {
  background: var(--forest-pale);
  border-color: var(--forest);
}

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

.btn-outline:hover {
  background: var(--sky-pale);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--clay));
  color: white;
  box-shadow: 0 4px 18px rgba(196,164,74,0.30);
}

.btn-gold:hover {
  box-shadow: 0 6px 26px rgba(196,164,74,0.40);
  transform: translateY(-2px);
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding: 72px 24px;
}

.section-alt {
  background: var(--surface-alt);
}

.section-warm {
  background: linear-gradient(180deg, var(--surface-warm) 0%, var(--gold-pale) 50%, var(--surface-warm) 100%);
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-label {
  display: inline-block;
  padding: 5px 18px;
  background: var(--forest-pale);
  color: var(--forest-dark);
  border-radius: var(--radius-xl);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.02rem;
  max-width: 580px;
  margin: 0 auto;
}

/* ============================================================
   FEATURE CARDS
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}

.feature-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle at bottom right, rgba(196,164,74,0.06), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.feature-icon.f-green {
  background: var(--forest-pale);
  color: var(--forest-dark);
}

.feature-icon.f-sky {
  background: var(--sky-pale);
  color: var(--sky-dark);
}

.feature-icon.f-clay {
  background: var(--clay-pale);
  color: var(--clay-dark);
}

.feature-icon.f-gold {
  background: var(--gold-pale);
  color: var(--gold);
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

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

/* ============================================================
   GAME INFO CARDS
   ============================================================ */
.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.info-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  text-align: center;
  transition: box-shadow 0.3s;
}

.info-card:hover {
  box-shadow: var(--shadow-md);
}

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

.info-card .info-value {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-item {
  display: flex;
  gap: 22px;
  padding: 22px 26px;
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--forest-light);
  transition: box-shadow 0.3s, border-color 0.3s;
}

.timeline-item:hover {
  box-shadow: var(--shadow-md);
  border-left-color: var(--gold);
}

.timeline-date {
  flex-shrink: 0;
  width: 90px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--forest-dark);
  padding-top: 2px;
}

.timeline-body h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.timeline-body p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ============================================================
   PAGE HERO (subpages)
   ============================================================ */
.page-hero {
  background: linear-gradient(168deg, var(--forest-pale) 0%, var(--sky-pale) 45%, var(--surface-warm) 100%);
  padding: 56px 24px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(196,164,74,0.10) 0%, transparent 70%);
  border-radius: 50%;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
  position: relative;
}

.page-hero p {
  color: var(--text-secondary);
  font-size: 1.08rem;
  max-width: 540px;
  margin: 0 auto;
  position: relative;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--forest), var(--sky));
  padding: 60px 24px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
}

.cta-banner p {
  font-size: 1.08rem;
  opacity: 0.92;
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.cta-banner .btn {
  background: white;
  color: var(--forest-dark);
  font-weight: 700;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  position: relative;
}

.cta-banner .btn:hover {
  box-shadow: 0 6px 30px rgba(0,0,0,0.18);
  transform: translateY(-2px);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border-light);
  padding: 22px 24px;
  text-align: center;
  margin-top: auto;
}

.site-footer p {
  color: var(--text-muted);
  font-size: 0.84rem;
}

/* ============================================================
   STORY PAGE
   ============================================================ */
.story-section {
  padding: 48px 0;
}

.story-section h2 {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--forest-pale);
}

.story-section p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 18px;
}

.story-visual {
  background: linear-gradient(135deg, var(--forest-pale), var(--sky-pale));
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  margin: 32px 0;
  position: relative;
  overflow: hidden;
}

.story-visual .story-icon {
  font-size: 4rem;
  opacity: 0.5;
}

.story-visual .story-quote {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--forest-dark);
  margin-top: 14px;
  position: relative;
  z-index: 1;
}

.world-lore-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
  margin: 32px 0;
}

.lore-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: box-shadow 0.3s, transform 0.3s;
}

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

.lore-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--forest-dark);
  margin-bottom: 10px;
}

.lore-card p {
  color: var(--text-secondary);
  font-size: 0.93rem;
  line-height: 1.7;
}

/* ============================================================
   CHARACTERS PAGE
   ============================================================ */
.char-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.char-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: box-shadow 0.35s, transform 0.35s;
}

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

.char-card-header {
  padding: 28px;
  text-align: center;
  position: relative;
}

.char-card-header.gradient-green {
  background: linear-gradient(135deg, var(--forest-pale), var(--surface));
}

.char-card-header.gradient-sky {
  background: linear-gradient(135deg, var(--sky-pale), var(--surface));
}

.char-card-header.gradient-clay {
  background: linear-gradient(135deg, var(--clay-pale), var(--surface));
}

.char-card-header.gradient-gold {
  background: linear-gradient(135deg, var(--gold-pale), var(--surface));
}

.char-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: var(--shadow-sm);
}

.char-avatar.av-green {
  background: var(--forest-pale);
  color: var(--forest-dark);
}

.char-avatar.av-sky {
  background: var(--sky-pale);
  color: var(--sky-dark);
}

.char-avatar.av-clay {
  background: var(--clay-pale);
  color: var(--clay-dark);
}

.char-avatar.av-gold {
  background: var(--gold-pale);
  color: var(--gold);
}

.char-card-header h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.char-card-header .char-title {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.char-card-body {
  padding: 0 28px 28px;
}

.char-card-body p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.char-traits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.char-trait {
  background: var(--surface-alt);
  padding: 4px 14px;
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ============================================================
   GUIDE PAGE
   ============================================================ */
.guide-toc {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 24px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  margin-bottom: 36px;
}

.guide-toc h2 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.guide-toc ol {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.guide-toc li a {
  color: var(--sky-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.93rem;
  transition: color 0.2s;
}

.guide-toc li a:hover {
  color: var(--forest-dark);
  text-decoration: underline;
}

.guide-chapter {
  margin-bottom: 44px;
}

.guide-chapter h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--forest-pale);
}

.guide-chapter p {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.guide-tip {
  background: var(--gold-pale);
  border: 1px solid var(--gold-light);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin: 20px 0;
  font-size: 0.93rem;
  color: var(--text-primary);
}

.guide-tip strong {
  color: var(--clay-dark);
}

.guide-warning {
  background: var(--clay-pale);
  border: 1px solid var(--clay-light);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin: 20px 0;
  font-size: 0.93rem;
  color: var(--text-primary);
}

.guide-warning strong {
  color: var(--clay-dark);
}

.guide-steps {
  padding-left: 22px;
  margin: 12px 0 20px;
}

.guide-steps li {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 6px;
}

/* ============================================================
   FAQ PAGE
   ============================================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: box-shadow 0.3s, border-color 0.3s;
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-item.open {
  border-color: var(--forest-light);
}

.faq-question {
  padding: 20px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.faq-question h3 {
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text-primary);
  padding-right: 14px;
}

.faq-question .faq-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--forest-pale);
  color: var(--forest-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  transition: transform 0.35s ease, background 0.35s;
}

.faq-item.open .faq-question .faq-icon {
  transform: rotate(45deg);
  background: var(--sky-pale);
  color: var(--sky-dark);
}

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

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

.faq-answer-inner {
  padding: 0 26px 20px;
  color: var(--text-secondary);
  font-size: 0.93rem;
  line-height: 1.75;
}

.faq-answer-inner p {
  margin-bottom: 8px;
}

/* ============================================================
   STATS ROW
   ============================================================ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 18px;
  margin: 36px 0;
}

.stat-item {
  text-align: center;
  padding: 18px 12px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--forest), var(--sky));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 4px;
}

/* ============================================================
   PILLARS
   ============================================================ */
.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin: 36px 0;
}

.pillar {
  padding: 26px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: box-shadow 0.3s, transform 0.3s;
}

.pillar:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.pillar.green {
  background: var(--forest-pale);
  border-color: var(--forest-light);
}

.pillar.sky {
  background: var(--sky-pale);
  border-color: var(--sky-light);
}

.pillar.clay {
  background: var(--clay-pale);
  border-color: var(--clay-light);
}

.pillar.gold {
  background: var(--gold-pale);
  border-color: var(--gold-light);
}

.pillar h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.pillar p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 24px 0;
  font-size: 0.84rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--sky-dark);
  text-decoration: none;
}

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

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.9rem;
  }
  .hero {
    padding: 50px 18px 60px;
  }
  .section {
    padding: 44px 18px;
  }
  .pillars {
    grid-template-columns: 1fr;
  }
  .site-header {
    height: auto;
    min-height: 56px;
  }
  .header-inner {
    flex-wrap: wrap;
    padding: 8px 14px;
    gap: 8px;
    justify-content: center;
  }
  .main-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2px;
  }
  .main-nav a {
    padding: 5px 10px;
    font-size: 0.82rem;
  }
  .main-nav .nav-cta {
    padding: 5px 14px;
    font-size: 0.82rem;
  }
  .page-hero h1 {
    font-size: 1.8rem;
  }
  .char-grid {
    grid-template-columns: 1fr;
  }
  .world-lore-grid {
    grid-template-columns: 1fr;
  }
  .story-visual {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.5rem;
  }
  .hero-subtitle {
    font-size: 0.95rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .section-header h2 {
    font-size: 1.5rem;
  }
  .cta-banner h2 {
    font-size: 1.4rem;
  }
}

/* ============================================================
   ANIMATION
   ============================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}

/* ============================================================
   UTILITY
   ============================================================ */
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.w-full { width: 100%; }
.justify-center { justify-content: center; }

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .site-header,
  .site-footer,
  .cta-banner,
  .btn,
  .main-nav {
    display: none;
  }
}
