/* ============================================
   有闲夫人俱乐部 — Art Deco Luxury Theme
   Champagne Gold + Burgundy Velvet + Geometric
   On light cream background
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --bg: #faf6f0;
  --bg-header: #1a1210;
  --bg-card: #ffffff;
  --bg-alt: #f5ede2;
  --bg-hero-overlay: rgba(10, 6, 4, 0.55);

  --text: #2c2420;
  --text-light: #6b5e53;
  --text-muted: #9c8b7c;
  --text-on-dark: #f5ede2;

  --gold: #c9a030;
  --gold-light: #dcc06a;
  --gold-pale: #efe0b8;
  --gold-dark: #a8811f;

  --burgundy: #6b1f3a;
  --burgundy-light: #8b3050;
  --burgundy-dark: #4a1528;
  --burgundy-velvet: #5c1a30;

  --cream: #faf6f0;
  --cream-dark: #ede0cf;

  --deco-line: #c9a030;
  --border: #e0d5c5;
  --border-light: #ede0cf;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.10);

  --radius: 4px;
  --radius-lg: 8px;
  --transition: 0.25s ease;

  --font-heading: 'Georgia', 'Noto Serif SC', 'Songti SC', 'SimSun', serif;
  --font-body: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', 'Hiragino Sans GB', sans-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-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
}

/* --- Art Deco Background Pattern --- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.04;
  background:
    repeating-linear-gradient(45deg, transparent, transparent 8px, var(--gold) 8px, var(--gold) 9px),
    repeating-linear-gradient(-45deg, transparent, transparent 8px, var(--gold) 8px, var(--gold) 9px);
}

body::after {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg,
    var(--burgundy) 0%, var(--gold) 25%, var(--burgundy) 50%,
    var(--gold) 75%, var(--burgundy) 100%);
  z-index: 1000;
  pointer-events: none;
}

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.3; color: var(--burgundy-dark); }
h1 { font-size: 2.4rem; letter-spacing: 0.02em; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.3rem; }

p { margin-bottom: 1rem; }

a { color: var(--burgundy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-dark); }

/* --- Header --- */
header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: linear-gradient(180deg, #1a1210 0%, #2a1a16 100%);
  border-bottom: 2px solid var(--gold);
  padding: 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

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

.logo span {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--gold-light);
  letter-spacing: 0.05em;
}

nav { display: flex; align-items: center; gap: 0.25rem; }

nav a {
  display: inline-block;
  padding: 0.5rem 0.9rem;
  color: var(--text-on-dark);
  font-size: 0.9rem;
  font-family: var(--font-heading);
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

nav a:hover, nav a.active {
  color: var(--gold-light);
}

nav a:hover::after, nav a.active::after {
  width: 60%;
}

/* Header CTA Button */
.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.4rem !important;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #1a1210 !important;
  font-weight: 700;
  border-radius: var(--radius);
  letter-spacing: 0.06em;
  transition: all var(--transition);
}

.nav-cta::after { display: none; }

.nav-cta:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: #1a1210 !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(201, 160, 48, 0.35);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: all var(--transition);
  border-radius: 1px;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--burgundy-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26, 18, 16, 0.7) 0%, rgba(74, 21, 40, 0.5) 40%, rgba(26, 18, 16, 0.8) 100%);
}

/* Art Deco hero decorative bands */
.hero::before {
  content: '';
  position: absolute;
  top: 20px; left: 20px; right: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  z-index: 2;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  z-index: 2;
}

.hero-inner {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 4rem 2rem;
  max-width: 800px;
}

.hero-inner h1 {
  font-size: 2.8rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
  letter-spacing: 0.06em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--cream);
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
  opacity: 0.85;
}

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

.tag {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 2px;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  background: rgba(201, 160, 48, 0.1);
  font-family: var(--font-heading);
}

.tag-gold {
  background: rgba(201, 160, 48, 0.15);
  border-color: var(--gold);
  color: var(--gold-light);
}

.tag-burgundy {
  background: rgba(107, 31, 58, 0.3);
  border-color: var(--burgundy-light);
  color: #d4788a;
}

.btn-hero {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #1a1210;
  font-weight: 700;
  font-size: 1.05rem;
  font-family: var(--font-heading);
  letter-spacing: 0.06em;
  border-radius: var(--radius);
  border: none;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-hero:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 160, 48, 0.4);
  color: #1a1210;
}

/* --- Page Hero (sub-pages) --- */
.page-hero {
  position: relative;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--burgundy-dark);
  overflow: hidden;
}

.page-hero .hero-bg {
  opacity: 0.3;
}

.page-hero .hero-overlay {
  background: linear-gradient(180deg, rgba(26, 18, 16, 0.8) 0%, rgba(26, 18, 16, 0.85) 100%);
}

.page-hero .hero-inner { padding: 2.5rem 2rem; }

.page-hero h1 {
  font-size: 2rem;
  color: var(--gold-light);
  margin-bottom: 0.3rem;
}

.page-hero .hero-tagline {
  font-size: 1rem;
  color: var(--cream);
  opacity: 0.7;
}

/* --- Content Container --- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 1.8rem;
  color: var(--burgundy-dark);
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
}

.section-title p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* --- Deco Divider --- */
.deco-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}

.deco-divider::before,
.deco-divider::after {
  content: '';
  height: 1px;
  flex: 1;
  max-width: 120px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.deco-divider::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.deco-divider span {
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 0.5em;
}

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

.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
  transition: all var(--transition);
  position: relative;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--burgundy), var(--gold), var(--burgundy));
  border-radius: var(--radius) var(--radius) 0 0;
  opacity: 0;
  transition: opacity var(--transition);
}

.info-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-pale);
}

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

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

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

.info-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0;
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--gold), var(--burgundy));
  border-radius: var(--radius) 0 0 var(--radius);
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-pale);
}

.feature-card .fc-icon {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
  display: block;
}

.feature-card h3 {
  font-size: 1.15rem;
  color: var(--burgundy);
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0;
}

/* --- Story Blocks --- */
.story-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.story-block::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--burgundy), var(--gold));
  border-radius: var(--radius) 0 0 var(--radius);
}

.story-block h3 {
  font-size: 1.25rem;
  color: var(--burgundy);
  margin-bottom: 0.75rem;
}

.story-block p {
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.story-block .story-chapter {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  color: var(--gold-dark);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

/* --- Guide Steps --- */
.guide-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.75rem 1.75rem 4rem;
  margin-bottom: 1.5rem;
  position: relative;
  transition: all var(--transition);
}

.guide-step:hover {
  box-shadow: var(--shadow);
  border-color: var(--gold-pale);
}

.guide-step .step-num {
  position: absolute;
  left: 1rem;
  top: 1.75rem;
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--burgundy-dark);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
}

.guide-step h3 {
  font-size: 1.1rem;
  color: var(--burgundy);
  margin-bottom: 0.4rem;
}

.guide-step p {
  font-size: 0.92rem;
  color: var(--text-light);
  margin-bottom: 0;
}

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

.char-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}

.char-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-pale);
}

.char-card-header {
  background: linear-gradient(135deg, var(--burgundy-dark) 0%, var(--burgundy) 100%);
  padding: 1rem 1.25rem;
  position: relative;
}

.char-card-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 1rem; right: 1rem;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.char-card-header h3 {
  color: var(--gold-light);
  font-size: 1.15rem;
  margin-bottom: 0;
}

.char-card-header .char-role {
  font-size: 0.8rem;
  color: var(--gold-pale);
  opacity: 0.8;
  margin-top: 0.25rem;
}

.char-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-pale), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 0.5rem;
  border: 2px solid var(--gold);
}

.char-card-body {
  padding: 1.25rem;
}

.char-card-body p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.char-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.char-tag {
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  background: var(--bg-alt);
  color: var(--text-light);
  border-radius: 2px;
  font-family: var(--font-heading);
  letter-spacing: 0.02em;
}

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

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

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--burgundy-dark);
  text-align: left;
  transition: all var(--transition);
}

.faq-q:hover {
  background: var(--bg-alt);
}

.faq-q .faq-icon {
  font-size: 1.2rem;
  color: var(--gold-dark);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 1rem;
}

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

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

.faq-item.open .faq-a {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem;
}

.faq-a p {
  font-size: 0.92rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

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

.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all var(--transition);
  background: var(--bg-alt);
}

.gallery-grid img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--burgundy-dark) 0%, var(--burgundy) 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent, transparent 8px, rgba(201, 160, 48, 0.05) 8px, rgba(201, 160, 48, 0.05) 9px),
    repeating-linear-gradient(-45deg, transparent, transparent 8px, rgba(201, 160, 48, 0.05) 8px, rgba(201, 160, 48, 0.05) 9px);
}

.cta-banner h2 {
  color: var(--gold-light);
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

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

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

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

.breadcrumbs a {
  color: var(--text-muted);
}

.breadcrumbs a:hover { color: var(--burgundy); }

.breadcrumbs span { color: var(--text-light); }

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

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

.stat-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--burgundy);
  font-weight: 700;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-top: 0.25rem;
}

/* --- Info Table --- */
.info-table {
  width: 100%;
  max-width: 700px;
  margin: 0 auto 2rem;
  border-collapse: collapse;
}

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

.info-table th {
  font-family: var(--font-heading);
  color: var(--burgundy);
  width: 140px;
  font-weight: 700;
  letter-spacing: 0.03em;
  background: var(--bg-alt);
}

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

/* --- Tip Box --- */
.tip-box {
  background: var(--bg-alt);
  border-left: 4px solid var(--gold);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
}

.tip-box h3 {
  color: var(--burgundy-dark);
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.tip-box p {
  color: var(--text-light);
  font-size: 0.92rem;
  margin-bottom: 0;
}

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

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

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

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

.ending-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 0;
}

/* --- Blockquote --- */
blockquote {
  background: var(--bg-alt);
  border-left: 4px solid var(--burgundy);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-heading);
  color: var(--text-light);
  font-style: italic;
}

blockquote p { margin-bottom: 0; }

/* --- Utility Classes --- */
.text-center { text-align: center; }
.accent-text { font-family: var(--font-heading); color: var(--burgundy); font-size: 0.95rem; }

/* --- Section Alt (alternating background) --- */
.section-alt {
  background: var(--bg-alt);
}

/* --- Specs Section --- */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
}

.spec-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
}

.spec-item .spec-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.spec-item .spec-value {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--burgundy-dark);
}

/* --- Lightbox --- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10, 6, 4, 0.92);
  align-items: center;
  justify-content: center;
}

.lightbox.active { display: flex; }

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

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2rem;
  color: var(--gold);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
}

.lightbox-close:hover { color: var(--gold-light); }

/* --- Footer --- */
footer {
  background: linear-gradient(0deg, #1a1210 0%, #2a1a16 100%);
  border-top: 2px solid var(--gold);
  padding: 1.5rem 1.5rem;
  text-align: center;
}

footer p {
  color: var(--text-on-dark);
  font-size: 0.85rem;
  opacity: 0.6;
  margin-bottom: 0;
}

/* --- Page-Specific Hero Backgrounds --- */
.hero-home .hero-bg { background-image: url('../img/header.png'); }
.hero-story .hero-bg { background-image: url('../img/header.png'); }
.hero-guide .hero-bg { background-image: url('../img/gallery-03.png'); }
.hero-characters .hero-bg { background-image: url('../img/gallery-02.png'); }
.hero-faq .hero-bg { background-image: url('../img/header.png'); }

/* --- Responsive --- */
@media (max-width: 768px) {
  html { font-size: 15px; }

  .header-inner {
    flex-wrap: wrap;
    padding: 0.5rem 1rem;
  }

  .menu-toggle { display: flex; }

  nav {
    display: none;
    flex-direction: column;
    width: 100%;
    padding: 0.5rem 0;
  }

  nav.open { display: flex; }

  nav a {
    width: 100%;
    text-align: center;
    padding: 0.7rem 1rem;
  }

  .nav-cta {
    margin-top: 0.5rem;
  }

  .hero {
    min-height: 380px;
  }

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

  .hero-tagline {
    font-size: 0.95rem;
  }

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

  section { padding: 2.5rem 0; }

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

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

  .stats-row {
    gap: 1.5rem;
  }

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

  .guide-step {
    padding-left: 3.5rem;
  }

  .info-table th {
    width: 100px;
  }
}

@media (max-width: 480px) {
  .info-grid {
    grid-template-columns: 1fr;
  }

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

  .stats-row {
    flex-direction: column;
    gap: 1rem;
  }

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

  .cta-banner {
    padding: 1.75rem 1.25rem;
  }

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