*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue-dark: #0C447C;
  --blue-mid: #185FA5;
  --blue-light: #E6F1FB;
  --blue-border: #B5D4F4;
  --gray-text: #444441;
  --gray-muted: #5F5E5A;
  --gray-light: #F1EFE8;
  --gray-border: #D3D1C7;
  --red-bg: #FCEBEB;
  --red-border: #F7C1C1;
  --red-text: #791F1F;
  --amber-bg: #FAEEDA;
  --amber-border: #FAC775;
  --amber-text: #633806;
  --white: #ffffff;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-text);
  background: #f8f7f4;
}

.disclaimer-banner {
  background: var(--amber-bg);
  border-bottom: 1px solid var(--amber-border);
  padding: 0.6rem 1.5rem;
  text-align: center;
  font-size: 0.675rem;
  color: var(--amber-text);
}

header {
  background: var(--blue-dark);
  color: #fff;
  padding: 3rem 1.5rem 2.5rem;
  text-align: center;
}
header .eyebrow {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #85B7EB;
  margin-bottom: 0.75rem;
}
header h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
header p {
  font-size: 1rem;
  color: #B5D4F4;
  max-width: 580px;
  margin: 0 auto;
}

.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-border);
  padding: 1.5rem;
}
.stats-inner {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}
.stat { text-align: center; padding: 0.75rem 0.5rem; }
.stat-value {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--blue-mid);
  display: block;
  line-height: 1.1;
  margin-bottom: 0.25rem;
}
.stat-label {
  font-size: 12px;
  color: var(--gray-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

main {
  max-width: 860px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

.alert {
  background: var(--red-bg);
  border: 1px solid var(--red-border);
  border-left: 4px solid #E24B4A;
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin-bottom: 2.5rem;
  color: var(--red-text);
  font-size: 0.925rem;
}
.alert strong { color: #A32D2D; }

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-mid);
  background: var(--blue-light);
  border: 1px solid var(--blue-border);
  border-radius: 4px;
  padding: 3px 10px;
  margin-bottom: 1.5rem;
}

.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 2px;
  background: var(--gray-border);
}

.timeline-entry { position: relative; margin-bottom: 2.5rem; }
.timeline-entry::before {
  content: '';
  position: absolute;
  left: -2.4rem; top: 6px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--blue-mid);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--blue-mid);
}
.timeline-entry.critical::before {
  background: #E24B4A;
  box-shadow: 0 0 0 2px #E24B4A;
}

.timeline-month {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: 0.25rem;
}
.timeline-entry.critical .timeline-month { color: #A32D2D; }

.timeline-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
}
.timeline-entry.critical .timeline-card {
  border-color: var(--red-border);
  background: #fffafa;
}

.timeline-card h2 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--blue-dark);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.timeline-entry.critical .timeline-card h2 { color: var(--red-text); }

.timeline-card ul { list-style: none; padding: 0; margin: 0; }
.timeline-card ul li {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--gray-muted);
  padding: 0.35rem 0 0.35rem 1.1rem;
  border-bottom: 1px solid var(--gray-light);
  position: relative;
}
.timeline-card ul li:last-child { border-bottom: none; }
.timeline-card ul li::before { content: '–'; position: absolute; left: 0; color: var(--gray-border); }
.timeline-card ul li strong { color: var(--gray-text); font-weight: 600; }

.divider { border: none; border-top: 1px solid var(--gray-border); margin: 2.5rem 0; }

/* PHOTO SECTION */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}
.photo-item {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 10px;
  overflow: hidden;
}
.photo-item img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.photo-caption {
  padding: 0.6rem 0.85rem;
  font-size: 0.775rem;
  color: var(--gray-muted);
  border-top: 1px solid var(--gray-light);
  line-height: 1.4;
}

.concerns-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.concern-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 10px;
  padding: 1rem 1.25rem;
}
.concern-card .icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--amber-bg);
  border: 1px solid var(--amber-border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.75rem;
  font-size: 15px;
}
.concern-card h3 { font-size: 0.875rem; font-weight: 600; color: var(--gray-text); margin-bottom: 0.4rem; }
.concern-card p { font-size: 0.825rem; color: var(--gray-muted); line-height: 1.5; }

.resolution-box {
  background: var(--blue-light);
  border: 1px solid var(--blue-border);
  border-radius: 10px;
  padding: 1.5rem;
  margin-top: 1rem;
}
.resolution-box h3 { font-size: 0.95rem; font-weight: 600; color: var(--blue-dark); margin-bottom: 0.75rem; }
.resolution-box ul { list-style: none; padding: 0; }
.resolution-box ul li {
  font-size: 0.9rem;
  color: var(--blue-mid);
  padding: 0.3rem 0 0.3rem 1.25rem;
  position: relative;
}
.resolution-box ul li::before { content: '✓'; position: absolute; left: 0; font-weight: 700; color: var(--blue-mid); }

footer {
  text-align: center;
  padding: 2rem 1.5rem;
  font-size: 0.8rem;
  color: var(--gray-muted);
  border-top: 1px solid var(--gray-border);
  background: var(--white);
}
footer .footer-disclaimer {
  margin-top: 0.5rem;
  font-size: 0.725rem;
  color: #888780;
}

@media (max-width: 600px) {
  .timeline { padding-left: 1.5rem; }
  .timeline-entry::before { left: -1.9rem; }
  .photo-grid { grid-template-columns: 1fr 1fr; }
}
