/* ============================================================
   LORENA LATERRA VICTIMS — style.css
   Dark investigative dossier — IMPROVED READABILITY
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Source+Serif+4:ital,wght@0,300;0,400;0,600;1,400&family=IBM+Plex+Mono:wght@400;600&display=swap');

:root {
  --red: #c0170f;
  --dark-red: #8b0000;
  --black: #0d0d0d;
  --dark: #1a1a1a;
  --mid: #2e2e2e;
  --border: #cccccc;
  --text: #111111;
  --text-muted: #111111;
  --accent: #1a6bbf;
  --bg: #ffffff;
  --bg-card: #f4f4f4;
  --bg-section: #f0f0f0;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Source Serif 4', Georgia, serif;
  background: var(--bg);
  color: var(--text);
  font-size: 18px;
  line-height: 1.85;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.2; }

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700; color: var(--red); margin-bottom: 1rem; }
h3 { font-size: 1.2rem; font-weight: 700; color: #111111; margin-bottom: 0.5rem; }
h4 { font-size: 0.9rem; font-weight: 700; color: #111111; text-transform: uppercase; letter-spacing: 0.08em; }

p { margin-bottom: 1.1rem; color: var(--text); }
a { color: #1a6bbf; text-decoration: none; }
a:hover { text-decoration: underline; color: #0d4a8a; }
strong { color: #111111; font-weight: 600; }
ul, ol { margin: 0.5rem 0 1rem 1.5rem; }
li { margin-bottom: 0.4rem; color: var(--text); }

/* ── FRAUD BANNER ── */
.fraud-banner {
  background: var(--red);
  color: #fff;
  text-align: center;
  padding: 1rem 2rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid var(--dark-red);
}

/* ── NAV ── */
nav {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 48px;
  z-index: 999;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  padding: 0 1.5rem;
}

nav a {
  color: #111111;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.85rem 0.9rem;
  display: block;
  transition: color 0.2s, background 0.2s;
  border-bottom: 2px solid transparent;
  text-decoration: none;
}

nav a:hover {
  color: #1a6bbf;
  background: rgba(212,168,67,0.06);
  border-bottom-color: #1a6bbf;
}

/* ── HERO ── */
.hero {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  padding: 3rem 1.5rem 2.5rem;
  text-align: center;
}

.hero-inner { max-width: 800px; margin: 0 auto; }

.hero-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}

.hero h1 { color: var(--red); margin-bottom: 0.5rem; }
.hero .subtitle { color: #111111; font-size: 1.05rem; margin-top: 0.5rem; }

/* ── LAYOUT ── */
.container { max-width: 860px; margin: 0 auto; padding: 0 1.5rem; }

section { padding: 3rem 1.5rem; border-bottom: 1px solid var(--border); scroll-margin-top: 110px; }
section:nth-child(even) { background: var(--bg-section); }

/* ── STAT BADGES ── */
.stat-row { display: flex; flex-wrap: wrap; gap: 1rem; margin: 1.5rem 0; }

.stat-badge {
  background: #f4f4f4;
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  padding: 1.1rem 1.25rem;
  flex: 1;
  min-width: 150px;
  text-align: center;
}

.stat-badge .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  display: block;
}

.stat-badge .lbl {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #111111;
  margin-top: 0.4rem;
}

/* ── IDENTITY CARD ── */
.identity-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  padding: 2rem;
  margin: 2rem auto;
}

.identity-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

.mugshot-wrapper {
  border: 4px solid var(--red);
  padding: 4px;
  background: #fff;
  max-width: 700px;
  margin: 0 auto 1.5rem;
}
.mugshot-wrapper img { width: 100%; display: block; filter: contrast(1.05); }

.mugshot-caption {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem;
  color: #c0170f;
  text-align: center;
  margin-top: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.identity-details table { width: 100%; border-collapse: collapse; }

.identity-details td {
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  vertical-align: top;
  color: var(--text);
}

.identity-details td:first-child {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  color: #111111;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: 140px;
  padding-right: 1rem;
}

/* ── SERVICES LIST ── */
.services-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.5rem;
  margin: 1rem 0;
}

.services-list li {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 0.5rem 0.75rem;
  font-size: 0.95rem;
  color: var(--text);
}

.services-list li::before { content: '⚠ '; color: var(--red); }

/* ── FRAUD ITEMS ── */
.fraud-item {
  border-left: 3px solid var(--red);
  padding: 0.85rem 1.25rem;
  margin: 1rem 0;
  background: #fff5f5;
}

.fraud-item strong { color: var(--red); }
.fraud-item p { color: var(--text); margin-bottom: 0; }

/* ── RECORD BLOCKS ── */
.record-block {
  background: #ffffff;
  border: 1px solid var(--border);
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.record-block h3 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #c0170f;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.case-line {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.88rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: var(--text);
}

.case-line:last-child { border-bottom: none; }

.case-line .label {
  color: #111111;
  display: inline-block;
  min-width: 130px;
  font-size: 0.78rem;
}

/* ── VIDEO ── */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #000;
  border: 1px solid var(--border);
  margin: 1.5rem 0;
}

.video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }

/* ── COURT IMAGES ── */
.court-images {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 1.5rem 0;
}

.court-images .court-img-wrapper {
  max-width: 100%;
}

.court-images .court-img-wrapper img {
  width: 100%;
  max-width: 900px;
  display: block;
  margin: 0 auto;
}

.court-img-wrapper { background: #ffffff; border: 1px solid var(--border); padding: 0.5rem; }
.court-img-wrapper img { width: 100%; display: block; }

.court-img-caption {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  color: #111111;
  text-align: center;
  padding: 0.4rem 0 0.2rem;
  text-transform: uppercase;
}

/* ── THREADS ── */
.thread-block {
  background: #ffffff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  padding: 1.5rem;
  margin: 2rem 0;
}

.thread-number {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  color: #c0170f;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.confirmed-box, .unconfirmed-box {
  margin: 1rem 0;
  padding: 1rem 1.25rem;
  border-left: 3px solid;
}

.confirmed-box { border-color: #2e7d32; background: #f0faf0; }
.confirmed-box h4 { color: #66bb6a; margin-bottom: 0.5rem; }
.unconfirmed-box { border-color: #f57f17; background: #fff8f0; }
.unconfirmed-box h4 { color: #ffa726; margin-bottom: 0.5rem; }
.confirmed-box li::before { content: '✓ '; color: #66bb6a; }
.unconfirmed-box li::before { content: '? '; color: #ffa726; }
.confirmed-box ul, .unconfirmed-box ul { list-style: none; padding: 0; margin: 0; }
.confirmed-box li, .unconfirmed-box li { color: var(--text); }

/* ── COMPARISON TABLE ── */
.comparison-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: 0.92rem; }

.comparison-table th {
  background: #222222;
  color: #1a6bbf;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.75rem 1rem;
  text-align: left;
  border: 1px solid var(--border);
}

.comparison-table td { padding: 0.75rem 1rem; border: 1px solid var(--border); vertical-align: top; color: var(--text); }
.comparison-table tr:nth-child(even) td { background: #f9f9f9; }

/* ── MEDIA ── */
.media-year {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: #111111;
  margin: 2rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.media-item { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); align-items: baseline; }

.media-date {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  color: #111111;
  min-width: 90px;
  flex-shrink: 0;
  font-weight: 600;
}

.media-outlet { font-weight: 600; color: #111111; margin-right: 0.5rem; }

/* ── EMBASSY ── */
.embassy-header {
  background: #ffffff;
  border: 2px solid var(--border);
  border-top: 4px solid var(--accent);
  padding: 2rem;
  margin-bottom: 2rem;
}

.embassy-header h2 { color: #111111; font-size: 1.3rem; }

.embassy-header .disclaimer {
  font-size: 0.88rem;
  color: #111111;
  font-style: italic;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.report-text {
  background: #ffffff;
  border: 1px solid var(--border);
  padding: 2rem;
  margin: 1.5rem 0;
  font-size: 0.95rem;
  line-height: 1.9;
  max-height: 500px;
  overflow-y: auto;
  color: #1a1a1a;
}

.report-text h4 { color: var(--red); margin: 1.2rem 0 0.4rem; font-size: 0.95rem; }
.report-text::-webkit-scrollbar { width: 6px; }
.report-text::-webkit-scrollbar-track { background: #222222; }
.report-text::-webkit-scrollbar-thumb { background: var(--border); }

/* PDF - hidden on mobile */
.pdf-embed { width: 100%; height: 600px; border: 1px solid var(--border); margin: 1rem 0 1.5rem; display: block; }

.pdf-mobile-note { display: none; }

@media (max-width: 700px) {
  .pdf-embed { display: none; }
  .pdf-mobile-note {
    display: block;
    background: #fff8f0;
    border: 1px solid var(--border);
    border-left: 4px solid var(--red);
    padding: 0.85rem 1rem;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: #111111;
  }
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: var(--black) !important;
  padding: 0.65rem 1.3rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0.5rem 0 1.5rem;
  transition: background 0.2s;
  text-decoration: none;
}

.download-btn:hover { background: #e8bc50; }

/* ── FOOTPRINT ── */
.footprint-group { margin: 1.5rem 0; }

.footprint-group h3 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #1a6bbf;
  margin-bottom: 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--border);
}

.footprint-list { list-style: none; font-family: 'IBM Plex Mono', monospace; font-size: 0.85rem; margin: 0; }
.footprint-list li { padding: 0.3rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); color: var(--text); }
.footprint-list li::before { content: '→ '; color: #111111; }
.footprint-list a { color: #1a6bbf; }

/* ── ACTION STEPS ── */
.action-step { display: flex; gap: 1.25rem; margin: 1.25rem 0; }

.step-num {
  width: 40px;
  height: 40px;
  background: var(--red);
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-content { flex: 1; color: var(--text); }

/* ── CONTACT SECTION ── */
.contact-section {
  background: #ffffff;
  border-top: 1px solid var(--border);
  border-bottom: 4px solid var(--red);
  padding: 2.5rem 1.5rem;
  text-align: center;
}

.contact-section h2 { color: var(--red); border: none; padding: 0; margin-bottom: 0.5rem; }
.contact-section p { color: #111111; margin-bottom: 0.5rem; }
.contact-section a { color: #1a6bbf; font-weight: 600; font-size: 1.15rem; }
.contact-section a:hover { color: #1a6bbf; text-decoration: underline; }

/* ── DIVIDER ── */
.divider {
  text-align: center;
  color: #555555;
  font-family: 'IBM Plex Mono', monospace;
  margin: 2rem 0;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
}

/* ── FOOTER ── */
footer {
  background: #ffffff;
  border-top: 1px solid var(--border);
  padding: 2.5rem 1.5rem;
  text-align: center;
  color: #111111;
  font-size: 0.88rem;
}

footer .footer-inner { max-width: 700px; margin: 0 auto; }
footer p { margin-bottom: 0.5rem; color: #cccccc; }
footer a { color: #1a6bbf; }

/* ── SEO ── */
.seo-terms { position: absolute; left: -9999px; font-size: 0; line-height: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
  .identity-grid { grid-template-columns: 1fr; }
  .mugshot-wrapper { max-width: 200px; }
  nav a { font-size: 0.65rem; padding: 0.7rem 0.6rem; }
  .fraud-banner { font-size: 0.72rem; }
  .court-images { grid-template-columns: 1fr; }
  .comparison-table { font-size: 0.82rem; }
  .media-item { flex-direction: column; gap: 0.2rem; }
}
