/* ─────────────────────────────────────────────
   BwaStories — story-static.css
   Styles for static story pages only.
   Does NOT override the main style.css theme.
   ───────────────────────────────────────────── */

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--bg2);
  border-bottom: 1px solid var(--line);
  padding: 0.55rem 1.5rem;
  font-size: 0.8rem;
  color: var(--muted);
}
.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
}
.breadcrumb li + li::before {
  content: '›';
  margin-right: 0.4rem;
  opacity: 0.5;
}
.breadcrumb a { color: var(--accent); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ── MAIN LAYOUT ── */
.static-story-page {
  max-width: 740px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
}

/* ── STORY HEADER ── */
.story-header {
  text-align: center;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.story-english-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 400;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.story-korean-title {
  font-family: 'Noto Serif KR', serif;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 0.3rem;
}
.story-meta {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 0.6rem;
}

/* ── PARAGRAPHS ── */
.story-body {
  line-height: 1.9;
}
.static-para {
  margin-bottom: 1.4rem;
}
.static-korean {
  font-family: 'Noto Serif KR', serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.25rem;
}
.static-english {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--muted);
  padding-left: 0.8rem;
  border-left: 2px solid var(--line);
}

/* ── SCENE BREAK ── */
hr.scene-break {
  border: none;
  border-top: 1px solid var(--line);
  margin: 2rem 0;
  opacity: 0.6;
}

/* ── ADS ── */
.ad-banner {
  margin: 2rem 0;
  text-align: center;
  min-height: 90px;
}

/* ── STORY NAVIGATION ── */
.story-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 2.5rem 0 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.nav-link {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.15s;
}
.nav-link:hover { opacity: 0.7; }
.home-link {
  font-style: normal;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── CTA ── */
.static-cta {
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1.4rem 1.6rem;
  text-align: center;
  margin-top: 2rem;
}
.static-cta p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.9rem;
}
.cta-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  text-decoration: none;
  padding: 0.6rem 1.4rem;
  border-radius: 4px;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  transition: opacity 0.15s;
}
.cta-btn:hover { opacity: 0.85; }

/* ── SITE FOOTER ── */
.site-footer {
  background: var(--bg2);
  border-top: 1px solid var(--line);
  text-align: center;
  padding: 1.4rem 1.5rem;
  margin-top: 3rem;
}
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 0.6rem;
}
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
}
.footer-links a:hover { color: var(--accent); }
.footer-copy {
  font-size: 0.75rem;
  color: var(--muted);
  opacity: 0.7;
}

/* ── TRUST PAGES (about, privacy, etc.) ── */
.trust-page {
  max-width: 740px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}
.trust-page h1 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: var(--accent);
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--line);
}
.trust-page h2 {
  font-family: 'Noto Serif KR', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  margin: 2rem 0 0.6rem;
}
.trust-page p, .trust-page li {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--ink);
  opacity: 0.85;
}
.trust-page ul, .trust-page ol {
  padding-left: 1.4rem;
  margin-bottom: 1rem;
}
.trust-page a { color: var(--accent); }

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .static-story-page, .trust-page { padding: 1.2rem 1rem 2rem; }
  .story-nav { flex-direction: column; align-items: flex-start; }
  .nav-link.next-link { align-self: flex-end; }
}
