/* ============================================================
   Nemurimouto 中文官网 — 樱花日常主题
   Color Scheme: Sakura Everyday
   ============================================================ */

/* --- CSS Variables --- */
:root {
  /* Primary palette */
  --sakura-pink: #F8BBD0;
  --sakura-pink-deep: #EC407A;
  --sakura-pink-dark: #C2185B;
  --warm-yellow: #FFF9C4;
  --warm-yellow-deep: #FFF176;
  --soft-green: #C8E6C9;
  --soft-green-deep: #81C784;
  --cream-bg: #FFFDE7;
  --cream-warm: #FFF8E1;

  /* Text */
  --text: #333333;
  --text-soft: #666666;
  --text-muted: #999999;
  --text-light: #BBBBBB;

  /* Accents */
  --pink-fierce: #E91E63;
  --danger-red: #D32F2F;
  --accent-gold: #F9A825;
  --uniform-navy: #37474F;
  --steel-light: #ECEFF1;

  /* UI */
  --header-bg: #2D2424;
  --header-border: #E91E63;
  --card-bg: #FFFFFF;
  --card-border: #F8BBD0;
  --section-alt-bg: #FFF8E1;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);

  /* Fonts */
  --font-serif: 'Noto Serif SC', 'SimSun', 'STSong', 'Songti SC', Georgia, serif;
  --font-sans: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', 'Hiragino Sans GB', Arial, sans-serif;

  /* Layout */
  --container-max: 1200px;
  --header-height: 64px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background-color: var(--cream-bg);
  line-height: 1.75;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  /* Subtle body pattern via pseudo-element on html */
}

/* --- Decorative body background --- */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 30%, rgba(248,187,208,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255,249,196,0.06) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(200,230,201,0.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
}

/* --- 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: 0;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  line-height: 1.4;
  color: var(--text);
}

h1 { font-size: 2.4rem; font-weight: 900; }
h2 { font-size: 1.8rem; font-weight: 700; }
h3 { font-size: 1.4rem; font-weight: 600; }

p { margin-bottom: 16px; }

a {
  color: var(--pink-fierce);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover { color: var(--sakura-pink-dark); }

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

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 8px;
  background: var(--pink-fierce);
  color: #fff;
  padding: 8px 16px;
  z-index: 1000;
  border-radius: 4px;
}
.skip-link:focus { top: 8px; }

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

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

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.header-logo span {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
}

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

.site-nav a {
  color: var(--steel-light);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}

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

/* Header CTA Button */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--pink-fierce);
  color: #fff !important;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 24px;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 2px 8px rgba(233,30,99,0.3);
  white-space: nowrap;
}
.btn-cta:hover {
  background: var(--sakura-pink-dark);
  transform: translateY(-1px);
  color: #fff !important;
}

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

/* --- Hamburger (mobile) --- */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: 0.3s;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  padding: 60px 24px 80px;
  background: linear-gradient(135deg, var(--sakura-pink-deep) 0%, var(--sakura-pink-dark) 100%);
  overflow: hidden;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255,249,196,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(200,230,201,0.1) 0%, transparent 60%);
  pointer-events: none;
}

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

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

/* --- Hero decorative sakura petals --- */
.hero-inner::before {
  content: '🌸';
  position: absolute;
  top: -30px;
  left: 10%;
  font-size: 2rem;
  opacity: 0.5;
  animation: float 4s ease-in-out infinite;
}

.hero-inner::after {
  content: '🌸';
  position: absolute;
  top: -20px;
  right: 10%;
  font-size: 1.5rem;
  opacity: 0.35;
  animation: float 5s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(10deg); }
}

/* Hero title main (visible div, NOT h1) */
.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-tagline {
  color: rgba(255,255,255,0.9);
  font-size: 1.15rem;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================================
   HERO SUB-PAGE (guide, story, characters, faq)
   ============================================================ */
.hero-subpage {
  padding: 40px 24px 48px;
}

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

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 64px 24px;
}

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

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

.section-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  color: var(--text);
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--pink-fierce);
  margin: 12px auto 0;
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-soft);
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* --- 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;
}

/* --- Section title group spacing --- */
.section-title-group-spaced {
  margin-top: 48px;
}

/* ============================================================
   GAME INFO CARDS (index)
   ============================================================ */
.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 0 auto 16px;
}

.info-card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
  border-top: 3px solid var(--sakura-pink);
}

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

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

.info-card-value {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--pink-fierce);
}

.info-card-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

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

/* ============================================================
   FEATURE CARDS (index)
   ============================================================ */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.feature-card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--sakura-pink);
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.feature-card h3 {
  color: var(--pink-fierce);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

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

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

/* ============================================================
   SCREENSHOT GALLERY (index)
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

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

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

/* ============================================================
   REVIEWS (index)
   ============================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.review-card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--soft-green);
}

.review-card .review-text {
  font-style: italic;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.review-card .review-author {
  font-weight: 600;
  color: var(--text);
  font-size: 0.9rem;
}

.review-card .review-stars {
  color: var(--accent-gold);
  margin-bottom: 8px;
}

/* ============================================================
   CTA BANNER (index only)
   ============================================================ */
.cta-banner {
  text-align: center;
  padding: 64px 24px;
  background: linear-gradient(135deg, var(--sakura-pink) 0%, var(--sakura-pink-deep) 100%);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,249,196,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(200,230,201,0.1) 0%, transparent 50%);
  pointer-events: none;
}

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

.cta-banner h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 12px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

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

.btn-cta-large {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--pink-fierce) !important;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 30px;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-cta-large:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--pink-fierce) !important;
}

.btn-cta-large::after {
  content: ' →';
}

/* ============================================================
   CONTENT PAGES (guide, story, characters, faq)
   ============================================================ */
.content-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

/* The h2 in content-section is styled to look like page title */
.content-section h2 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

/* Chapter title (story.html sub-headings) */
.chapter-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--pink-fierce);
  margin-top: 32px;
  margin-bottom: 12px;
  padding-left: 12px;
  border-left: 4px solid var(--sakura-pink);
}

/* ============================================================
   GUIDE PAGE
   ============================================================ */
.guide-intro {
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.guide-step {
  background: var(--card-bg);
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--warm-yellow-deep);
}

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

.guide-step p {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.guide-tip {
  background: var(--warm-yellow);
  border-radius: 8px;
  padding: 16px;
  margin: 16px 0;
  border-left: 4px solid var(--accent-gold);
  font-size: 0.95rem;
  color: var(--text-soft);
}

.guide-tip strong {
  color: var(--uniform-navy);
}

.route-heading {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--pink-fierce);
  margin-top: 28px;
  margin-bottom: 10px;
}

.route-desc {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

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

.guide-step-counter::before {
  counter-increment: guide-step-counter;
  content: '第' counter(guide-step-counter, cjk-ideographic) '步 ';
  font-weight: 700;
  color: var(--pink-fierce);
}

/* ============================================================
   STORY PAGE
   ============================================================ */
.story-block {
  background: var(--card-bg);
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--soft-green);
}

.story-block h3 {
  color: var(--uniform-navy);
  margin-bottom: 10px;
}

.story-block p {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.7;
}

.branch-path {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 16px 0;
}

.path-card {
  background: var(--card-bg);
  border-radius: 8px;
  padding: 16px;
  box-shadow: var(--shadow-sm);
}

.path-card h4 {
  color: var(--pink-fierce);
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.path-card p {
  font-size: 0.9rem;
  color: var(--text-soft);
  margin: 0;
}

/* ============================================================
   CHARACTERS PAGE
   ============================================================ */
.characters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: var(--container-max);
  margin: 0 auto;
}

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

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

.character-card-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--sakura-pink), var(--cream-warm));
}

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

.character-card-body h3 {
  font-size: 1.3rem;
  color: var(--pink-fierce);
  margin-bottom: 4px;
}

.character-card-body .char-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

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

.char-traits {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.char-trait {
  background: var(--sakura-pink);
  color: var(--pink-fierce);
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: 12px;
  font-weight: 500;
}

/* Section sub-heading */
.section-subheading {
  text-align: center;
  margin: 40px 0 24px;
}

/* ============================================================
   FAQ PAGE
   ============================================================ */
.faq-intro {
  color: var(--text-soft);
  margin-bottom: 32px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--card-bg);
  border-radius: 10px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

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

.faq-question:hover {
  background: var(--cream-warm);
}

.faq-question::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--pink-fierce);
  font-weight: 700;
  transition: transform 0.3s;
}

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

.faq-answer {
  display: none;
  padding: 0 20px 20px;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.75;
}

.faq-answer.open {
  display: block;
}

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

/* System requirements */
.sys-reqs-h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--uniform-navy);
  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;
}

/* ============================================================
   TABLES
   ============================================================ */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0;
}

th, td {
  padding: 10px 14px;
  border: 1px solid #E0E0E0;
  font-size: 0.9rem;
}

th {
  background: var(--cream-warm);
  font-weight: 600;
  color: var(--uniform-navy);
}

td {
  color: var(--text-soft);
}

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

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

/* ============================================================
   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(--uniform-navy); }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

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

.lightbox-overlay img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
  z-index: 1001;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  margin-top: auto;
  background: var(--header-bg);
  color: var(--text-muted);
  text-align: center;
  padding: 24px;
  font-size: 0.9rem;
  border-top: 2px solid var(--header-border);
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
  .hero-title-main {
    font-size: 2rem;
  }

  .info-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

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

  .branch-path {
    grid-template-columns: 1fr;
  }

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

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

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

  .section {
    padding: 40px 16px;
  }

  .content-section {
    padding: 32px 16px 60px;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .content-section h2 { font-size: 1.8rem; }

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

  .site-nav {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: 100%;
    flex-direction: column;
    background: var(--header-bg);
    padding: 16px;
    box-shadow: var(--shadow-md);
  }

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

  .menu-toggle {
    display: block;
  }
}

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

  .hero {
    padding: 40px 16px 60px;
  }

  .hero-subpage {
    padding: 30px 16px 36px;
  }

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

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

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

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

  .btn-cta-large {
    padding: 12px 28px;
    font-size: 1rem;
  }
}
