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

@font-face {
  font-family: 'IM Fell English';
  src: url('https://fonts.gstatic.com/s/imfellenglish/v14/Ktk1ALSLW8zDe0LSNByrPdyqoezOA2I.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'IM Fell English';
  src: url('https://fonts.gstatic.com/s/imfellenglish/v14/Ktk3ALSLW8zDe0LSNByrPdyqoezKA6LR.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Courier Prime';
  src: url('https://fonts.gstatic.com/s/courierprime/v9/u-450q2lgwslOqpF_6gQ8kELWwZjEg.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}

:root {
  --bg: #0d0d0d;
  --text: #e8e6e0;
  --text-dim: #888880;
  --public: #3B8BD4;
  --private: #BA7517;
  --coral: #D85A30;
  --teal: #2A9D8F;
  --font-display: 'IM Fell English', Georgia, serif;
  --font-body: 'IM Fell English', Georgia, serif;
  --font-data: 'Courier Prime', 'Courier New', monospace;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.8;
  overflow-x: hidden;
}

/* ── Typography ── */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
}

.prose {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
}

.prose p {
  margin-bottom: 1.6em;
}

blockquote {
  font-style: italic;
  border-left: 2px solid var(--text-dim);
  padding-left: 24px;
  margin: 1.6em 0;
  color: var(--text);
}

/* ── Section spacing ── */
section {
  padding: 80px 0;
}

/* ── Links ── */
a {
  color: var(--public);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
a:hover {
  border-bottom-color: var(--public);
}

/* ── Pull quote ── */
.pull-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 32px;
  line-height: 1.5;
  text-align: center;
  max-width: 800px;
  margin: 60px auto;
  padding: 0 24px;
  color: var(--text);
}

@media (min-width: 768px) {
  .pull-quote { font-size: 42px; }
}

/* ── Horizontal rule ── */
.section-rule {
  border: none;
  border-top: 1px solid rgba(136, 136, 128, 0.3);
  max-width: 200px;
  margin: 60px auto;
}

/* ── Data labels ── */
.data-label {
  font-family: var(--font-data);
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.5px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  body { font-size: 16px; }
  section { padding: 40px 0; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
