* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #000000;
  --surface: #0b0b0b;
  --surface2: #111111;
  --border: #1a1a1a;
  --text: #e8e8f0;
  --text-muted: #9999a8;
  --red: #FA6A4D;
  --red-dim: #c24a3d;
  --red-glow: rgba(250, 106, 77, 0.12);
  --accent: #FA6A4D;
}

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  line-height: 1.7;
  min-height: 100vh;
}

/* ── HEADER ── */
.site-header {
  background: var(--surface);
  border-bottom: 2px solid var(--red);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 30px rgba(0,0,0,0.6);
}

.site-header .inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-header .logo-icon {
  display: none;
}

.site-header .logo-text {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
  text-decoration: none;
}

.site-header .logo-text span {
  color: var(--red);
}

/* ── BACK BUTTON ── */
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  margin-left: auto;
}

.back-btn:hover {
  border-color: var(--red);
  color: var(--text);
  background: var(--red-glow);
}

/* ── LAYOUT ── */
.page-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

/* ── HERO / HOMEPAGE ── */
.hero {
  text-align: center;
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 48px;
}

.hero .badge {
  display: inline-block;
  background: var(--red-glow);
  border: 1px solid var(--red);
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(26px, 5vw, 42px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--red);
}

.hero .subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

.contact-box {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 14px;
  color: var(--text-muted);
}

.contact-box strong {
  color: var(--accent);
  font-family: 'Courier New', monospace;
}

/* ── INTRO TEXT ── */
.intro-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  border-radius: 8px;
  padding: 28px 32px;
  margin-bottom: 48px;
}

.intro-section p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 12px;
}

.intro-section p:last-child {
  margin-bottom: 0;
}

/* ── PEOPLE SECTION ── */
.people-section {
  margin-bottom: 48px;
}

.people-section h2 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
}

.person-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 20px;
  transition: border-color 0.2s, background 0.2s;
}

.person-card:hover {
  border-color: var(--red-dim);
  background: var(--surface2);
}

.person-card .alias {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  font-family: 'Courier New', monospace;
}

.person-card .nickname {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

.person-card .role {
  display: inline-block;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-glow);
  padding: 2px 8px;
  border-radius: 4px;
}

/* ── NAV BUTTONS (homepage) ── */
.nav-section h2 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.nav-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.nav-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  text-decoration: none;
  transition: transform 0.18s, border-color 0.18s, box-shadow 0.18s;
  cursor: pointer;
}

.nav-card:hover {
  transform: translateY(-3px);
  border-color: var(--red);
  box-shadow: 0 8px 32px var(--red-glow);
}

.nav-card .card-icon {
  font-size: 28px;
  margin-bottom: 12px;
  color: var(--red);
}

.nav-card .card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.nav-card .card-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.nav-card .card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
}

/* ── INNER PAGE ── */
.page-title {
  margin-bottom: 32px;
}

.page-title .page-badge {
  display: inline-block;
  background: var(--red-glow);
  border: 1px solid var(--red);
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.page-title h1 {
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}

.page-title p {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.7;
}

.page-title p + p {
  margin-top: 12px;
}

.page-title p b, .page-title p strong {
  color: var(--text);
  font-weight: 700;
}

/* ── EVIDENCE SECTION ── */
.evidence-section {
  margin-top: 40px;
}

.evidence-section h2 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.evidence-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.evidence-img {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

/* Plain image variant (no box/label) */
.evidence-img.plain {
  background: transparent;
  border: none;
  padding: 0;
}
.evidence-img.plain .img-label {
  display: none;
}

/* Lightbox / modal for enlarging images in-place */
.lightbox {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.85);
  visibility: hidden;
  opacity: 0;
  transition: opacity 180ms ease;
  z-index: 9999;
}
.lightbox.open {
  visibility: visible;
  opacity: 1;
}
.lightbox img {
  max-width: none;
  max-height: 92%;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
}

.evidence-img img {
  cursor: pointer;
}

/* Plain inline image (no surrounding box) */
.plain-img {
  display: block;
  width: 100%;
  border-radius: 6px;
  background: transparent;
  box-shadow: none;
  border: none;
  cursor: pointer;
}

.evidence-img:hover {
  border-color: var(--red-dim);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.evidence-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.evidence-img .img-label {
  padding: 10px 14px;
  font-size: 12px;
  color: var(--text-muted);
  font-family: 'Courier New', monospace;
  border-top: 1px solid var(--border);
}

/* ── BODY TEXT ── */
.body-text {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  border-radius: 8px;
  padding: 28px 32px;
  margin-bottom: 32px;
}

.body-text p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 14px;
  line-height: 1.75;
}

.body-text p:last-child {
  margin-bottom: 0;
}

.body-text b, .body-text strong {
  color: var(--red);
  font-weight: 700;
}

/* ── FOOTER ── */
.site-footer {
  text-align: center;
  padding: 32px 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 40px;
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .page-wrap {
    padding: 32px 16px 60px;
  }

  .hero {
    padding: 40px 0 32px;
  }

  .intro-section, .body-text {
    padding: 20px 18px;
  }

  .nav-cards, .evidence-grid, .people-grid {
    grid-template-columns: 1fr;
  }
}
