/* ============================================================
   迷途的二人与世界的全部 / Lost Duo and the World
   Design: Wandering-compass browns + world-map teals
   Two-paths-diverge motifs on light journey background
   ============================================================ */

/* ---- CSS Custom Properties ---- */
:root {
  /* Color Palette */
  --bg: #faf8f2;
  --bg-card: #f5f1e8;
  --bg-alt: #efe9dd;
  --text: #3d3226;
  --text-soft: #6b5d4f;
  --text-muted: #8e8072;
  --header-bg: #2c2416;
  --header-border: #1a7a6d;
  --accent-teal: #1a7a6d;
  --accent-teal-light: #289487;
  --accent-teal-dark: #126158;
  --accent-brown: #c17a3b;
  --accent-brown-light: #d49152;
  --accent-brown-dark: #9e5f2a;
  --accent-gold: #d4a34a;
  --accent-cream: #f0e6d3;
  --pink-fierce: #c44b6b;
  --danger-red: #c0392b;
  --steel-light: #c4b8a6;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px 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.12);

  /* Typography */
  --font-serif: 'Noto Serif SC', 'SimSun', 'STSong', serif;
  --font-sans: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', 'Hiragino Sans GB', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.8;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---- Screen Reader Only ---- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--header-bg);
  border-bottom: 3px solid var(--header-border);
  box-shadow: var(--shadow-md);
}

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

.header-logo {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-cream);
  text-decoration: none;
  letter-spacing: 0.04em;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-logo::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background: var(--accent-teal);
  border-radius: 50%;
  position: relative;
}

.header-logo::after {
  content: '';
  position: absolute;
  display: none;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-nav a {
  color: var(--steel-light);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
}

.header-nav a:hover,
.header-nav a.active {
  color: var(--accent-cream);
}

.header-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -19px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-teal);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 18px;
  background: var(--accent-teal);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.15s ease;
}

.header-cta:hover {
  background: var(--accent-teal-light);
  transform: translateY(-1px);
}

.header-cta::after {
  content: '→';
  font-size: 0.85rem;
}

/* ---- Hero Section ---- */
.hero {
  background: linear-gradient(160deg, #1e3a35 0%, #2c2416 40%, #3d3028 70%, #1a7a6d 100%);
  padding: 60px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(26,122,109,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(193,122,59,0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(212,163,74,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, var(--bg), transparent);
  pointer-events: none;
}

/* Two-paths-diverge decorative motif */
.hero-paths {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 120px;
  pointer-events: none;
  opacity: 0.3;
}

.hero-paths::before,
.hero-paths::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 3px;
  background: var(--accent-gold);
  border-radius: 2px;
}

.hero-paths::before {
  left: 30%;
  height: 100%;
  transform: rotate(-18deg);
  transform-origin: bottom;
}

.hero-paths::after {
  right: 30%;
  height: 100%;
  transform: rotate(18deg);
  transform-origin: bottom;
}

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

.hero-cover {
  max-width: 460px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
  margin-bottom: 32px;
}

.hero-title-main {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
  margin-bottom: 12px;
  line-height: 1.3;
}

.hero-title-main .jp-subtitle {
  display: block;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--steel-light);
  margin-top: 6px;
  letter-spacing: 0.05em;
}

.hero-tagline {
  font-size: 1.05rem;
  color: var(--steel-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Sub-page hero */
.hero-subpage {
  padding: 40px 24px 48px;
}

.hero-subpage-title {
  font-size: 2rem;
  font-weight: 700;
}

/* ---- Sections ---- */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 24px;
}

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

.section-no-padding {
  padding: 0;
}

.section-title-group {
  text-align: center;
  margin-bottom: 40px;
}

.section-title-group-spaced {
  margin-top: 48px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
}

/* Two-paths decorative underline for section titles */
.section-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-brown), var(--accent-teal));
  border-radius: 2px;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-soft);
  margin-top: 12px;
}

/* Content section h2 (for sub-pages where hero h1 is the page's one h1) */
.content-section h2 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

/* ---- Game Info Grid (index) ---- */
.game-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.info-card {
  background: var(--bg-card);
  border-radius: 10px;
  padding: 20px 16px;
  text-align: center;
  border-left: 3px solid var(--accent-teal);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.info-card-icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.info-card-value {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-teal);
  margin-bottom: 4px;
}

.info-card-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.game-info-desc {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 0;
}

/* ---- Prose Centered ---- */
.prose-centered {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 32px;
  color: var(--text-soft);
  line-height: 1.85;
  font-size: 0.95rem;
}

.prose-centered:last-of-type {
  margin-bottom: 40px;
}

/* ---- Feature Cards (index) ---- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--bg-card);
  border-radius: 10px;
  padding: 28px 22px;
  border-left: 3px solid var(--accent-brown);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, transparent 50%, rgba(26,122,109,0.06) 50%);
  border-radius: 0 0 0 60px;
}

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

.feature-card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

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

/* ---- Screenshot Gallery ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  aspect-ratio: 16/9;
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---- Player Reviews ---- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  background: var(--white);
  border-radius: 10px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 8px;
  left: 16px;
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--accent-teal);
  opacity: 0.15;
  line-height: 1;
}

.review-text {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.review-author {
  font-size: 0.85rem;
  color: var(--accent-brown);
  font-weight: 600;
}

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--accent-teal-dark), var(--accent-teal));
  border-radius: 12px;
  padding: 40px 32px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}

.cta-banner h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 8px;
}

.cta-banner p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 36px;
  background: var(--accent-gold);
  color: #2c2416;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 700;
  transition: background 0.2s ease, transform 0.15s ease;
}

.cta-btn:hover {
  background: #e0b85a;
  transform: translateY(-2px);
}

.cta-btn::after {
  content: '→';
  font-size: 1.1rem;
}

/* ---- Guide Page ---- */
.guide-steps-wrapper {
  counter-reset: guide-step;
}

.guide-step {
  background: var(--bg-card);
  border-radius: 10px;
  padding: 24px 28px;
  margin-bottom: 20px;
  border-left: 4px solid var(--accent-teal);
  position: relative;
}

.guide-step h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.guide-step h3::before {
  counter-increment: guide-step;
  content: '#' counter(guide-step) ' ';
  color: var(--accent-teal);
}

.guide-step p {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.75;
}

.guide-tip {
  background: rgba(26,122,109,0.06);
  border-left: 4px solid var(--accent-teal-light);
  border-radius: 8px;
  padding: 16px 20px;
  margin: 16px 0;
}

.guide-tip strong {
  color: var(--accent-teal);
}

.guide-intro {
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 20px;
}

.route-desc {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 12px;
}

.route-heading {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-brown);
  margin-top: 24px;
  margin-bottom: 8px;
}

/* ---- Story Page ---- */
.chapter-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent-teal);
  margin-bottom: 4px;
}

.chapter-block {
  background: var(--bg-card);
  border-radius: 10px;
  padding: 24px 28px;
  margin-bottom: 20px;
  border-left: 4px solid var(--accent-brown);
}

.chapter-block p {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 8px;
}

.chapter-block p:last-child {
  margin-bottom: 0;
}

/* ---- Characters Page ---- */
.characters-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.character-card {
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.character-card-img {
  width: 100%;
  aspect-ratio: 5/6;
  object-fit: cover;
  display: block;
}

.character-card-body {
  padding: 20px;
}

.character-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.character-card-body .jp-name {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 8px;
}

.character-card-body .role-tag {
  display: inline-block;
  padding: 2px 10px;
  background: rgba(26,122,109,0.1);
  color: var(--accent-teal);
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.character-card-body p {
  font-size: 0.85rem;
  color: var(--text-soft);
  line-height: 1.65;
}

.character-traits {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.trait-tag {
  padding: 3px 10px;
  background: rgba(193,122,59,0.08);
  color: var(--accent-brown-dark);
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
}

/* ---- Relationships Section ---- */
.relationships {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.relationship-card {
  background: var(--bg-card);
  border-radius: 10px;
  padding: 20px;
  border-left: 3px solid var(--accent-gold);
}

.relationship-card h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.relationship-card p {
  font-size: 0.85rem;
  color: var(--text-soft);
  line-height: 1.65;
}

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

.faq-item {
  border-bottom: 1px solid rgba(44,36,22,0.08);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 0;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--accent-teal);
}

.faq-question::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--accent-teal);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-question::after {
  content: '−';
  transform: rotate(180deg);
}

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

.faq-item.open .faq-answer {
  max-height: 800px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.8;
}

/* ---- System Requirements Table ---- */
.table-scroll {
  overflow-x: auto;
  margin: 16px 0;
}

.sys-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.sys-table thead th {
  background: var(--accent-teal);
  color: #fff;
  padding: 10px 16px;
  text-align: left;
  font-weight: 600;
}

.sys-table thead th:first-child {
  border-radius: 6px 0 0 0;
}

.sys-table thead th:last-child {
  border-radius: 0 6px 0 0;
}

.sys-table tbody td {
  padding: 10px 16px;
  border-bottom: 1px solid rgba(44,36,22,0.06);
}

.sys-table tbody tr:nth-child(even) {
  background: var(--bg-card);
}

.sys-table tbody tr:last-child td:first-child {
  border-radius: 0 0 0 6px;
}

.sys-table tbody tr:last-child td:last-child {
  border-radius: 0 0 6px 0;
}

/* ---- System Requirements ---- */
.sys-reqs-h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--header-bg);
  margin-top: 24px;
  margin-bottom: 12px;
}

.sys-reqs-h3:first-of-type {
  margin-top: 8px;
}

.sys-note {
  margin-top: 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.faq-note {
  margin-top: 16px;
}

/* ---- Content List Classes ---- */
.content-list {
  list-style: disc;
  padding-left: 20px;
}

.content-list-num {
  list-style: decimal;
  padding-left: 24px;
}

.content-li {
  margin-bottom: 5px;
  color: var(--text-soft);
}

.content-li-sm {
  margin-bottom: 4px;
  color: var(--text-soft);
}

.content-li-md {
  margin-bottom: 8px;
  color: var(--text-soft);
}

.content-li-lg {
  margin-bottom: 10px;
  color: var(--text-soft);
}

/* ---- Colored Strong Tags ---- */
.strong-pink { color: var(--pink-fierce); }
.strong-red { color: var(--danger-red); }
.strong-gold { color: var(--accent-gold); }
.strong-muted { color: var(--text-muted); }
.strong-navy { color: var(--header-bg); }
.strong-teal { color: var(--accent-teal); }
.strong-brown { color: var(--accent-brown); }

/* ---- Table Highlight ---- */
.td-highlight {
  color: var(--pink-fierce);
  font-weight: 700;
}

/* ---- Sub-Page Content Sections ---- */
.subpage-content {
  padding: 48px 24px;
}

/* ---- Footer ---- */
.site-footer {
  background: var(--header-bg);
  padding: 24px;
  text-align: center;
  border-top: 3px solid var(--header-border);
}

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

/* ---- Lightbox ---- */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.9);
  align-items: center;
  justify-content: center;
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-overlay img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1;
  transition: color 0.2s;
}

.lightbox-close:hover {
  color: var(--accent-teal);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255,255,255,0.25);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ---- Body decorative background motif ---- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(26,122,109,0.02) 0%, transparent 30%),
    radial-gradient(circle at 90% 80%, rgba(193,122,59,0.02) 0%, transparent 30%);
  opacity: 0.5;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .hero {
    padding: 40px 20px 60px;
  }

  .hero-title-main {
    font-size: 2rem;
  }

  .hero-subpage-title {
    font-size: 1.5rem;
  }

  .section {
    padding: 40px 20px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .content-section h2 {
    font-size: 1.6rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .game-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .characters-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .header-nav {
    gap: 12px;
  }

  .header-nav a {
    font-size: 0.8rem;
  }

  .header-logo {
    font-size: 0.95rem;
  }

  .hero-paths {
    width: 260px;
  }
}

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

  .hero-cover {
    max-width: 280px;
  }

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

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

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

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

  .cta-banner {
    padding: 28px 20px;
  }

  .cta-banner h2 {
    font-size: 1.4rem;
  }

  .header-inner {
    padding: 0 12px;
  }

  .header-nav a {
    font-size: 0.75rem;
  }

  .header-cta {
    padding: 5px 12px;
    font-size: 0.78rem;
  }

  .hero-paths {
    display: none;
  }
}
