/* =============================================
   SIN SPIRE 罪恶尖塔 — 哥特教堂风格主题
   圣罪交织配色：深红 暗金 象牙白 深紫
   ============================================= */

/* --- Custom Properties --- */
:root {
  --font-sans: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --font-serif: 'Noto Serif SC', 'SimSun', 'STSong', serif;
  --font-title: 'Noto Serif SC', 'SimSun', serif;

  /* 圣罪交织配色 */
  --crimson: #B71C1C;
  --crimson-dark: #7F0000;
  --crimson-light: #E53935;
  --gold: #FF8F00;
  --gold-light: #FFB300;
  --gold-dark: #E65100;
  --ivory: #FFFFF0;
  --ivory-soft: #FFF8E7;
  --ivory-warm: #FAF0E6;
  --purple: #311B92;
  --purple-light: #5E35B1;
  --purple-dark: #1A0A4E;

  /* Semantic */
  --bg: #FFFDF7;
  --bg-card: #FFFFF0;
  --bg-header: #1A0A2E;
  --text: #1A1A2E;
  --text-soft: #4A4A5A;
  --text-muted: #7A7A8A;
  --text-light: #C8C8D0;
  --border: #E0D8CC;
  --border-accent: #B71C1C;
  --shadow: 0 2px 12px rgba(26, 10, 46, 0.12);
  --shadow-lg: 0 6px 24px rgba(26, 10, 46, 0.18);
  --radius: 8px;
  --radius-lg: 12px;
  --transition: 0.25s ease;

  --header-h: 64px;
  --max-width: 1200px;
}

/* --- Reset --- */
*, *::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: var(--bg);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Body decorative pattern — subtle gothic tracery */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.025;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 39px, var(--purple) 39px, var(--purple) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, var(--purple) 39px, var(--purple) 40px);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--crimson); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--crimson-dark); }

/* --- Utility / Anti-inline classes --- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Hero title (replaces visible h1 on index) */
.hero-title-main {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--ivory);
  text-shadow: 0 2px 12px rgba(0,0,0,0.6), 0 0 40px rgba(183,28,28,0.5);
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-align: center;
}
.hero-tagline {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  color: var(--gold-light);
  text-align: center;
  margin-top: 12px;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* Sub-page hero */
.hero-subpage {
  padding: 40px 24px 48px !important;
}
.hero-subpage-title {
  font-size: 2rem !important;
  font-weight: 700 !important;
}

/* Chapter titles in story.html */
.chapter-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--crimson);
  margin: 28px 0 8px;
  padding-left: 14px;
  border-left: 4px solid var(--gold);
}

/* Guide intro paragraphs */
.guide-intro {
  font-size: 1.05rem;
  color: var(--text-soft);
  margin-bottom: 20px;
}

/* Route descriptions */
.route-desc {
  font-size: 0.98rem;
  color: var(--text-soft);
  margin: 6px 0 14px;
  padding-left: 14px;
  border-left: 3px solid var(--border);
}

/* Route sub-headings */
.route-heading {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--purple-light);
  margin: 20px 0 8px;
}

/* Lists */
.content-list {
  list-style: disc;
  padding-left: 24px;
  margin: 8px 0 16px;
}
.content-list-num {
  list-style: decimal;
  padding-left: 28px;
  margin: 8px 0 16px;
}
.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-crimson { color: var(--crimson); }
.strong-gold { color: var(--gold-dark); }
.strong-purple { color: var(--purple-light); }
.strong-muted { color: var(--text-muted); }

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

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

/* System requirements h3 */
.sys-reqs-h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--purple-light);
  margin: 20px 0 8px;
}
.sys-reqs-h3:first-of-type { margin-top: 4px; }

/* Content section h2 (sub-page second-level) */
.content-section h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

/* Section sub-headings on characters page */
.section-subheading {
  text-align: center;
  margin: 40px 0 24px;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--purple-light);
}

/* --- Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-header);
  border-bottom: 3px solid var(--crimson);
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  padding: 0 24px;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ivory);
  text-decoration: none;
}
.header-logo img { width: 32px; height: 32px; }
.header-logo:hover { color: var(--gold-light); }

/* Header nav */
.header-nav { display: flex; align-items: center; gap: 6px; }
.header-nav a {
  color: var(--text-light);
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 500;
  transition: all var(--transition);
  white-space: nowrap;
}
.header-nav a:hover,
.header-nav a.active {
  color: var(--gold-light);
  background: rgba(183,28,28,0.15);
}

/* CTA button in header */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--crimson), var(--crimson-dark));
  color: var(--ivory) !important;
  padding: 8px 22px;
  border-radius: 24px;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(183,28,28,0.4);
  white-space: nowrap;
}
.btn-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(183,28,28,0.6);
  color: var(--ivory) !important;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  padding: 72px 24px 80px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(26,10,46,0.92) 0%, rgba(49,27,146,0.85) 40%, rgba(183,28,28,0.78) 100%),
    linear-gradient(180deg, rgba(26,10,46,0.95), rgba(26,10,46,0.7));
  overflow: hidden;
  border-bottom: 4px solid var(--crimson);
}
/* Gothic arch decorative overlay */
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background:
    radial-gradient(ellipse at 50% 120%, rgba(255,143,0,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 30%, rgba(183,28,28,0.18) 0%, transparent 40%),
    radial-gradient(ellipse at 80% 20%, rgba(49,27,146,0.15) 0%, transparent 40%);
}
.hero > * { position: relative; z-index: 1; }
.hero-subtitle {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 24px;
  letter-spacing: 0.06em;
}

/* --- Main Content --- */
main { position: relative; z-index: 1; }
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Section Layout --- */
.section {
  padding: 60px 0;
}
.section-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--purple-dark);
  text-align: center;
  margin-bottom: 8px;
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--crimson), var(--gold));
  margin: 12px auto 0;
  border-radius: 2px;
}
.section-desc {
  text-align: center;
  color: var(--text-soft);
  font-size: 1rem;
  margin-bottom: 36px;
}
.section-alt { background: var(--ivory-warm); }

/* --- Hero Header Image (on index hero) --- */
.hero-header-img {
  max-width: 480px;
  margin: 0 auto 24px;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  border: 2px solid rgba(255,143,0,0.3);
}

/* --- Info Cards (index) --- */
.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.info-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
  transition: transform var(--transition), box-shadow var(--transition);
}
.info-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.info-card-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}
.info-card h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--crimson-dark);
  margin-bottom: 4px;
}
.info-card p {
  font-size: 0.9rem;
  color: var(--text-soft);
}

/* --- Feature Cards --- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}
.feature-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border-left: 5px solid var(--crimson);
  transition: all var(--transition);
}
.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-left-color: var(--gold);
}
.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--purple-dark);
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.7;
}

/* --- Screenshot Gallery --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 48px;
}
.gallery-grid img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 2px solid transparent;
}
.gallery-grid img:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

/* --- Lightbox --- */
.lightbox {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  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 48px rgba(0,0,0,0.6);
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 30px;
  font-size: 2.5rem;
  color: var(--ivory);
  cursor: pointer;
  z-index: 1;
  transition: color var(--transition);
}
.lightbox-close:hover { color: var(--gold-light); }

/* --- Reviews / Quotes --- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}
.review-card {
  background: var(--ivory-warm);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
  position: relative;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 8px; left: 16px;
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--crimson);
  opacity: 0.25;
  line-height: 1;
}
.review-card p {
  font-size: 0.95rem;
  color: var(--text-soft);
  margin: 8px 0;
  position: relative;
  z-index: 1;
}
.review-card .review-author {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

/* --- CTA Banner (index only) --- */
.cta-banner {
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--crimson-dark) 60%, var(--gold-dark) 100%);
  padding: 48px 24px;
  text-align: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(255,143,0,0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(183,28,28,0.15) 0%, transparent 50%);
}
.cta-banner h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ivory);
  margin-bottom: 12px;
  position: relative;
}
.cta-banner p {
  color: var(--gold-light);
  font-size: 1rem;
  margin-bottom: 24px;
  position: relative;
}
.btn-cta-large {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--purple-dark) !important;
  padding: 14px 40px;
  border-radius: 28px;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(255,143,0,0.4);
  position: relative;
}
.btn-cta-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255,143,0,0.6);
  color: var(--purple-dark) !important;
}

/* --- Characters Page --- */
.char-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}
.char-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border-bottom: 4px solid var(--crimson);
}
.char-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--gold);
}
.char-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: var(--purple-dark);
}
.char-card-body {
  padding: 16px 18px;
}
.char-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--purple-dark);
  margin-bottom: 4px;
}
.char-card-body .char-role {
  font-size: 0.85rem;
  color: var(--crimson);
  font-weight: 600;
  margin-bottom: 8px;
}
.char-card-body p {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.6;
}

/* Traits pills */
.trait-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0;
}
.trait-tag {
  display: inline-block;
  background: rgba(183,28,28,0.08);
  color: var(--crimson-dark);
  padding: 3px 10px;
  border-radius: 14px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(183,28,28,0.2);
}

/* --- FAQ Accordion --- */
.faq-list { max-width: 860px; margin: 0 auto 48px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: var(--shadow);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  transition: background var(--transition);
}
.faq-q:hover { background: rgba(183,28,28,0.04); }
.faq-q::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--crimson);
  font-weight: 300;
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 12px;
}
.faq-item.open .faq-q::after {
  content: '−';
  transform: rotate(180deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-a {
  max-height: 600px;
  padding: 0 20px 18px;
}
.faq-a p {
  font-size: 0.93rem;
  color: var(--text-soft);
  line-height: 1.7;
}

/* --- System Requirements Table --- */
.sys-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 0.93rem;
}
.sys-table th, .sys-table td {
  padding: 10px 14px;
  border: 1px solid var(--border);
  text-align: left;
}
.sys-table th {
  background: var(--purple-dark);
  color: var(--ivory);
  font-weight: 600;
  font-family: var(--font-serif);
}
.sys-table tr:nth-child(even) { background: rgba(183,28,28,0.03); }
.sys-table tr:hover { background: rgba(255,143,0,0.06); }

/* --- Guide Steps --- */
.guide-steps { counter-reset: step; max-width: 860px; margin: 0 auto; }
.guide-step {
  counter-increment: step;
  position: relative;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 24px 24px 24px 70px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  border-left: 5px solid var(--crimson);
}
.guide-step::before {
  content: counter(step);
  position: absolute;
  left: 16px;
  top: 22px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--crimson), var(--crimson-dark));
  color: var(--ivory);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.guide-step h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--purple-dark);
  margin-bottom: 6px;
}
.guide-step p {
  font-size: 0.93rem;
  color: var(--text-soft);
  line-height: 1.7;
}

/* --- Tips Box --- */
.tips-box {
  background: linear-gradient(135deg, rgba(255,143,0,0.08), rgba(255,143,0,0.03));
  border: 1px solid rgba(255,143,0,0.3);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 16px 0;
  border-left: 4px solid var(--gold);
}
.tips-box strong {
  color: var(--gold-dark);
}

/* --- Story Page Timeline --- */
.timeline {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  padding-left: 32px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--crimson), var(--gold), var(--purple-light));
  border-radius: 2px;
}
.timeline-item {
  position: relative;
  margin-bottom: 32px;
  padding-left: 20px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -27px;
  top: 6px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--crimson);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px var(--crimson);
}
.timeline-item h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--purple-dark);
  margin-bottom: 4px;
}
.timeline-item p {
  font-size: 0.93rem;
  color: var(--text-soft);
}

/* --- Content section --- */
.content-section {
  padding: 48px 0;
}

/* --- Footer --- */
.site-footer {
  background: var(--bg-header);
  border-top: 3px solid var(--crimson);
  padding: 28px 24px;
  text-align: center;
}
.site-footer p {
  color: var(--text-light);
  font-size: 0.88rem;
}

/* --- Responsive — 768px --- */
@media (max-width: 768px) {
  :root { font-size: 15px; }
  .header-inner {
    flex-wrap: wrap;
    height: auto;
    padding: 10px 16px;
    gap: 8px;
  }
  .header-logo { font-size: 1rem; }
  .header-nav { flex-wrap: wrap; gap: 2px; }
  .header-nav a { padding: 6px 10px; font-size: 0.85rem; }
  .btn-cta { padding: 6px 16px; font-size: 0.85rem; }

  .hero { padding: 48px 16px 56px; }
  .hero-title-main { font-size: 2.2rem; }
  .hero-header-img { max-width: 300px; }

  .feature-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
  .info-cards { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
  .reviews-grid { grid-template-columns: 1fr; }
  .char-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }

  .section-title { font-size: 1.6rem; }
  .content-section h2 { font-size: 1.6rem; }
  .guide-step { padding: 20px 16px 20px 56px; }
  .hero-subpage-title { font-size: 1.6rem !important; }
}

/* --- Responsive — 480px --- */
@media (max-width: 480px) {
  :root { font-size: 14px; }
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .header-nav {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .header-nav a { font-size: 0.82rem; padding: 5px 8px; }

  .hero { padding: 36px 12px 44px; }
  .hero-title-main { font-size: 1.7rem; }
  .hero-header-img { max-width: 240px; }

  .info-cards { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .char-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 32px 16px; }
  .cta-banner h2 { font-size: 1.4rem; }
  .btn-cta-large { padding: 12px 28px; font-size: 1rem; }

  .hero-subpage { padding: 32px 16px 40px !important; }
  .hero-subpage-title { font-size: 1.4rem !important; }
}

/* --- Cross decorative divider --- */
.divider-cross {
  text-align: center;
  margin: 20px 0;
  color: var(--crimson);
  font-size: 1.5rem;
  opacity: 0.5;
}
