/* ============================================================
   家出少女 - Runaway Girl 官方网站
   Theme: 黄昏站台 · Journey Motif
   Palette: Twilight Blues + Backpack Browns on Light Dusk
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@400;600;700&display=swap');

/* ========== CSS VARIABLES ========== */
:root {
  /* Backgrounds */
  --bg: #faf7f2;
  --bg-card: #ffffff;
  --bg-warm: #f5f0e6;
  --bg-dusk: #efe8db;

  /* Primary - Twilight Station Blues */
  --primary: #3a4a6b;
  --primary-light: #5a6d91;
  --primary-dark: #25304a;
  --primary-fade: rgba(58, 74, 107, 0.08);

  /* Accent - Backpack-Worn Browns */
  --accent: #c4824e;
  --accent-light: #e8c9a0;
  --accent-dark: #a06535;
  --accent-fade: rgba(196, 130, 78, 0.12);

  /* Text */
  --text: #3d3530;
  --text-secondary: #6b5f55;
  --text-light: #8a7e72;
  --text-inverse: #faf7f2;

  /* Borders & Dividers */
  --border: #e0d9cc;
  --border-light: #ede6d8;
  --shadow: 0 2px 12px rgba(58, 74, 107, 0.06);
  --shadow-md: 0 4px 20px rgba(58, 74, 107, 0.10);
  --shadow-lg: 0 8px 32px rgba(58, 74, 107, 0.12);

  /* Fonts */
  --font-sans: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', 'Hiragino Sans GB', system-ui, -apple-system, sans-serif;
  --font-serif: 'Noto Serif SC', 'SimSun', 'STSong', serif;

  /* Spacing */
  --max-width: 1120px;
  --header-height: 64px;
  --section-pad: 80px;
  --section-pad-m: 48px;

  /* Border Radius */
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
}

/* ========== RESET & BASE ========== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent);
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.35;
}

h1 { font-size: 2.25rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.25rem; }

/* ========== UTILITY CLASSES ========== */
.prose {
  max-width: 800px;
  margin: 0 auto;
}

.section-alt {
  background: var(--bg-warm);
  padding-top: 0;
}

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

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

.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.chapter-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent-dark);
  margin-top: 16px;
  margin-bottom: 8px;
  padding-left: 12px;
  border-left: 3px solid var(--accent);
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: #fff;
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.text-secondary {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: var(--radius);
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 130, 78, 0.35);
  color: #fff;
  background: linear-gradient(135deg, var(--accent-dark), var(--accent-dark));
}

.cta-button::after {
  content: '→';
  margin-left: 2px;
  transition: transform 0.2s ease;
}

.cta-button:hover::after {
  transform: translateX(3px);
}

/* ========== HEADER ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--primary-dark);
  border-bottom: 3px solid var(--accent);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

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

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}

.site-logo:hover {
  color: var(--accent-light);
}

.site-logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  object-fit: cover;
}

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

.main-nav a {
  display: block;
  padding: 8px 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  border-radius: 6px;
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.10);
}

.header-cta {
  margin-left: 12px;
}

.header-cta .cta-button {
  padding: 8px 20px;
  font-size: 0.95rem;
}

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(37, 48, 74, 0.75) 0%,
    rgba(37, 48, 74, 0.60) 40%,
    rgba(58, 74, 107, 0.45) 100%
  );
}

/* Journey decorative overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 40px,
      rgba(232, 201, 160, 0.06) 40px,
      rgba(232, 201, 160, 0.06) 42px
    );
  /* Evokes train tracks / railway sleepers */
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 24px;
  max-width: 720px;
}

.hero-content h2 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 12px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.hero-content .subtitle {
  font-size: 1.15rem;
  color: var(--accent-light);
  margin-bottom: 28px;
  font-family: var(--font-serif);
  font-weight: 600;
}

.hero-content .cta-button {
  font-size: 1.1rem;
  padding: 14px 36px;
}

/* Page-specific hero backgrounds */
.hero-home .hero-bg { background-image: url('../img/header.jpg'); }
.hero-story .hero-bg { background-image: url('../img/screenshot-01.jpg'); }
.hero-guide .hero-bg { background-image: url('../img/screenshot-03.jpg'); }
.hero-characters .hero-bg { background-image: url('../img/screenshot-02.jpg'); }
.hero-faq .hero-bg { background-image: url('../img/header.jpg'); }

/* Inner page hero (smaller) */
.hero-inner {
  min-height: 280px;
}

.hero-inner .hero-content h2 {
  font-size: 2rem;
}

.hero-inner .hero-content .subtitle {
  font-size: 1.05rem;
}

/* ========== SECTION ========== */
.section {
  padding: var(--section-pad) 24px;
}

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

.section-header h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 12px;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  margin: 14px auto 0;
  background: var(--accent);
  border-radius: 2px;
}

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

/* Section divider - ticket stub motif */
.section-divider {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px 40px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.section-divider-icon {
  font-size: 1.3rem;
  color: var(--accent);
}

/* ========== INTRO SECTION ========== */
.intro-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.intro-text h3 {
  font-size: 1.35rem;
  margin-bottom: 16px;
  color: var(--primary);
}

.intro-text p {
  color: var(--text-secondary);
  margin-bottom: 12px;
  font-size: 1.02rem;
}

.intro-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.intro-image img {
  width: 100%;
  object-fit: cover;
}

/* ========== GAME INFO CARDS ========== */
.info-cards {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

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

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

.info-card-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.info-card h4 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--primary);
}

.info-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ========== FEATURE CARDS ========== */
.feature-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: var(--bg-card);
  padding: 32px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--accent);
  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: var(--accent-fade);
  border-radius: 0 0 0 60px;
}

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

.feature-card-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

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

/* ========== SCREENSHOT GALLERY ========== */
.gallery-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.gallery-item::after {
  content: '🔍';
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 1.1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  background: rgba(0, 0, 0, 0.5);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

/* ========== REVIEWS ========== */
.review-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

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

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

.review-card p {
  font-size: 0.98rem;
  color: var(--text-secondary);
  font-style: italic;
  padding-left: 20px;
}

.review-card .reviewer {
  margin-top: 14px;
  font-style: normal;
  font-weight: 600;
  color: var(--primary);
  font-size: 0.9rem;
}

/* ========== CTA BANNER (index only) ========== */
.cta-banner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
  padding: 56px 24px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(196, 130, 78, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(232, 201, 160, 0.10) 0%, transparent 50%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 30px,
      rgba(255, 255, 255, 0.02) 30px,
      rgba(255, 255, 255, 0.02) 31px
    );
  pointer-events: none;
}

.cta-banner h2 {
  position: relative;
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.cta-banner p {
  position: relative;
  color: var(--accent-light);
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.cta-banner .cta-button {
  position: relative;
  font-size: 1.15rem;
  padding: 16px 44px;
}

/* ========== CONTENT PAGES ========== */
.content-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--section-pad) 24px;
}

.content-section h2 {
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
  position: relative;
}

.content-section h2::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--accent);
}

.content-section p {
  margin-bottom: 16px;
  font-size: 1.02rem;
  color: var(--text-secondary);
}

/* ========== GUIDE STEPS ========== */
.guide-step {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 28px 28px 28px 80px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
  position: relative;
  border-left: 4px solid var(--accent);
}

.guide-step-number {
  position: absolute;
  top: 24px;
  left: 20px;
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guide-step h3 {
  margin-bottom: 10px;
  color: var(--primary);
}

.guide-step p,
.guide-step ul {
  color: var(--text-secondary);
  font-size: 0.98rem;
}

.guide-step ul {
  padding-left: 20px;
}

.guide-step li {
  margin-bottom: 6px;
}

.tip-box {
  background: var(--accent-fade);
  border-left: 4px solid var(--accent);
  padding: 16px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 20px 0;
}

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

/* ========== STORY CHAPTERS ========== */
.story-chapter {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 28px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary);
}

.story-chapter h3 {
  color: var(--primary);
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.story-chapter .chapter-label {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.story-chapter p {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.8;
}

/* ========== CHARACTER CARDS ========== */
.char-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.char-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.char-card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.char-card-body {
  padding: 24px;
}

.char-card-body h3 {
  font-size: 1.25rem;
  margin-bottom: 6px;
  color: var(--primary);
}

.char-card-body .char-role {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  background: var(--accent-fade);
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.char-card-body p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
}

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

.char-trait {
  font-size: 0.82rem;
  padding: 4px 12px;
  background: var(--primary-fade);
  color: var(--primary);
  border-radius: 20px;
  font-weight: 500;
}

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

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 18px 60px 18px 24px;
  background: none;
  border: none;
  font-size: 1.05rem;
  font-weight: 600;
  font-family: var(--font-sans);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  position: relative;
  line-height: 1.5;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--accent);
  font-weight: 400;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  content: '−';
  transform: translateY(-50%) rotate(180deg);
}

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

.faq-item.active .faq-answer {
  max-height: 800px;
}

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

/* ========== SYSTEM REQUIREMENTS TABLE ========== */
.sys-req-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

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

.sys-req-table th,
.sys-req-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  font-size: 0.95rem;
}

.sys-req-table th {
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
}

.sys-req-table th:first-child {
  border-radius: var(--radius-sm) 0 0 0;
}

.sys-req-table th:last-child {
  border-radius: 0 var(--radius-sm) 0 0;
}

.sys-req-table tr:nth-child(even) {
  background: var(--primary-fade);
}

.sys-req-table td:first-child {
  font-weight: 600;
  color: var(--text);
}

/* ========== LIGHTBOX ========== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.88);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 2;
}

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

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

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

/* ========== FOOTER ========== */
.site-footer {
  background: var(--primary-dark);
  padding: 24px;
  text-align: center;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  :root {
    --section-pad: 56px;
    --section-pad-m: 36px;
  }

  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.4rem; }

  /* Header mobile */
  .main-nav {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--primary-dark);
    padding: 12px;
    gap: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    padding: 12px 16px;
  }

  .header-cta {
    margin-left: 0;
  }

  .header-cta .cta-button {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .hamburger {
    display: flex;
  }

  /* Hero */
  .hero {
    min-height: 340px;
  }

  .hero-content h2 {
    font-size: 1.75rem;
  }

  .hero-inner {
    min-height: 220px;
  }

  .hero-inner .hero-content h2 {
    font-size: 1.5rem;
  }

  /* Grids */
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

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

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

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

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

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

@media (max-width: 480px) {
  :root {
    --section-pad: 40px;
    --section-pad-m: 28px;
  }

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

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

  .guide-step {
    padding: 20px 20px 20px 60px;
  }

  .guide-step-number {
    left: 12px;
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }

  .hero-content h2 {
    font-size: 1.5rem;
  }
}
