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

:root {
  --bg:       #0f0f0f;
  --surface:  #181818;
  --border:   #2a2a2a;
  --accent:   #e8c468;
  --text:     #d4d4d4;
  --muted:    #888;
  --max-w:    680px;
  --font:     'Georgia', 'Times New Roman', serif;
  --mono:     'Courier New', monospace;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 1.125rem;
  line-height: 1.8;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero {
  padding: 6rem 0 5rem;
  border-bottom: 1px solid var(--border);
}

.hero-label {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: clamp(2rem, 6vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1rem;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 560px;
}

.story { padding: 4rem 0; }

.chapter { margin-bottom: 3.5rem; }

.chapter h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

.chapter p {
  margin-bottom: 1.1rem;
  color: var(--text);
}

.chapter p:last-child { margin-bottom: 0; }

.chapter a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(232,196,104,0.35);
  transition: border-color 0.15s;
}
.chapter a:hover { border-bottom-color: var(--accent); }

.chapter h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ccc;
  margin: 1.8rem 0 0.6rem;
  font-family: var(--mono);
  letter-spacing: 0.03em;
}

.chapter ul {
  margin: 0.75rem 0 1rem 1.25rem;
  color: var(--text);
}

.chapter ul li { margin-bottom: 0.35rem; }

.intro-note {
  border-left: 3px solid var(--accent);
  padding-left: 1.25rem;
  margin-bottom: 3rem;
  color: var(--muted);
}

.intro-note strong { color: var(--text); }

.callout {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--border);
  border-radius: 6px;
  padding: 1.1rem 1.3rem;
  margin: 1.5rem 0;
  font-size: 0.97rem;
}

.callout p { margin-bottom: 0.6rem; }
.callout p:last-child { margin-bottom: 0; }

.callout--accent {
  border-left-color: var(--accent);
  background: #1a1700;
}

.conclusion {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}

.contact-section {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.contact-section p {
  color: var(--muted);
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.contact-email {
  display: inline-block;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 1rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(232,196,104,0.35);
  transition: border-color 0.15s;
}

.contact-email:hover { border-bottom-color: var(--accent); }

.footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  font-family: var(--mono);
}

@media (max-width: 600px) {
  .hero { padding: 4rem 0 3rem; }
  .story { padding: 2.5rem 0; }
  .chapter { margin-bottom: 2.5rem; }
}