:root {
  --ink: #18201c;
  --muted: #66706a;
  --line: #dce2de;
  --paper: #fbfcfa;
  --surface: #ffffff;
  --soft: #f1f4f1;
  --accent: #1f5d42;
  --accent-dark: #15442f;
  --live: #17834f;
  --shadow: 0 14px 34px rgba(30, 45, 37, .07);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* { box-sizing: border-box; }
body { margin: 0; min-height: 100vh; background: var(--paper); }
a { color: inherit; }
button, input, select { font: inherit; }
.site-header {
  height: 68px; padding: 0 max(22px, calc((100vw - 1120px) / 2)); display: flex;
  align-items: center; gap: 30px; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.94);
  position: sticky; top: 0; z-index: 10; backdrop-filter: blur(12px);
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 750; letter-spacing: -.02em; }
.brand-mark { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--accent); color: white; font-family: Georgia, serif; }
.site-header nav { display: flex; align-self: stretch; gap: 24px; margin-left: auto; }
.site-header nav a { display: grid; place-items: center; text-decoration: none; font-size: 14px; color: var(--muted); border-bottom: 2px solid transparent; }
.site-header nav a[aria-current="page"] { color: var(--ink); border-color: var(--accent); }
.sound-toggle { background: var(--soft); color: var(--muted); border: 1px solid var(--line); border-radius: 999px; padding: 8px 12px; cursor: pointer; }
.sound-toggle[aria-pressed="true"] { color: var(--accent-dark); background: #e6f2eb; border-color: #b7d5c3; }
main { width: min(1120px, calc(100% - 40px)); margin: 0 auto; padding: 55px 0 80px; }
.page-heading { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 34px; }
.eyebrow { margin: 0 0 8px; color: var(--accent); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .13em; }
h1 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(38px, 6vw, 64px); letter-spacing: -.045em; line-height: .98; margin: 0; font-weight: 500; }
.subhead { max-width: 610px; margin: 16px 0 0; color: var(--muted); font-size: 17px; line-height: 1.6; }
.live-state { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); white-space: nowrap; }
.live-state span { width: 8px; height: 8px; border-radius: 50%; background: #b3bab6; box-shadow: 0 0 0 4px var(--soft); }
.live-state.connected span { background: var(--live); box-shadow: 0 0 0 4px #dff2e7; }
.filters { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 20px; box-shadow: var(--shadow); }
label > span { display: block; margin-bottom: 7px; color: var(--muted); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
input, select { width: 100%; min-height: 42px; border: 1px solid #cdd5d0; border-radius: 8px; padding: 9px 11px; background: white; color: var(--ink); }
input:focus, select:focus { outline: 3px solid #dcece3; border-color: var(--accent); }
.search-field input { font-size: 16px; padding: 13px 14px; }
.filter-grid { display: grid; grid-template-columns: repeat(4, 1fr) auto; align-items: end; gap: 12px; margin-top: 14px; }
.filter-actions { display: flex; gap: 8px; }
.button { min-height: 42px; display: inline-flex; align-items: center; justify-content: center; border-radius: 8px; border: 1px solid transparent; padding: 9px 14px; text-decoration: none; cursor: pointer; font-weight: 700; font-size: 14px; }
.button.primary { background: var(--accent); color: white; }
.button.primary:hover { background: var(--accent-dark); }
.button.quiet { background: white; border-color: var(--line); color: var(--ink); }
.results-heading { display: flex; justify-content: space-between; color: var(--muted); font-size: 13px; margin: 28px 2px 12px; }
.results-heading p { margin: 0; }
.report-list { display: grid; gap: 10px; }
.report-card { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 22px 24px; transition: border-color .15s, transform .15s, box-shadow .15s; }
.report-card:hover { border-color: #b9c7be; transform: translateY(-1px); box-shadow: var(--shadow); }
.report-card.is-new { animation: arrive .65s ease-out; border-color: #a7cab5; }
@keyframes arrive { from { opacity: 0; transform: translateY(-10px); background: #edf8f1; } }
.report-meta { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: 12px; }
.tag { display: inline-flex; width: fit-content; border-radius: 999px; padding: 4px 8px; background: var(--soft); color: var(--accent-dark); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.report-card h2 { margin: 12px 0 8px; font-family: Georgia, serif; font-size: 25px; line-height: 1.2; font-weight: 500; }
.report-card h2 a { text-decoration: none; }
.report-card > p { margin: 0; color: #4d5852; line-height: 1.58; }
.report-footer { display: flex; justify-content: flex-end; gap: 20px; margin-top: 18px; color: var(--muted); font-size: 12px; }
.report-footer a { color: var(--accent); font-weight: 750; text-decoration: none; }
.pagination, .day-nav { display: flex; justify-content: center; align-items: center; gap: 18px; margin-top: 24px; font-size: 13px; color: var(--muted); }
.empty-state { text-align: center; padding: 75px 20px; border: 1px dashed #cbd4ce; border-radius: 12px; color: var(--muted); }
.empty-state h2 { margin: 0 0 8px; color: var(--ink); font-family: Georgia, serif; font-size: 28px; }
.empty-state.standalone { max-width: 650px; margin: 80px auto; }
.empty-state.standalone h1 { margin-bottom: 18px; }
.empty-state.standalone .button { margin-top: 18px; }
.report-detail { max-width: 800px; margin: 0 auto; }
.back-link { display: inline-block; color: var(--accent); text-decoration: none; font-weight: 700; margin-bottom: 35px; }
.report-detail header { border-bottom: 1px solid var(--line); padding-bottom: 28px; }
.report-detail h1 { font-size: clamp(36px, 6vw, 58px); margin: 18px 0 26px; line-height: 1.05; }
.report-detail dl { display: flex; flex-wrap: wrap; gap: 18px 35px; margin: 0; }
.report-detail dl div { min-width: 120px; }
.report-detail dt { color: var(--muted); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.report-detail dd { margin: 5px 0 0; font-size: 13px; word-break: break-word; }
.report-body { white-space: pre-wrap; margin-top: 34px; font-family: Georgia, serif; font-size: 19px; line-height: 1.72; overflow-wrap: anywhere; }
.schedule-heading { justify-content: start; }
.day-nav { justify-content: space-between; margin: 0 0 20px; }
.day-nav input { min-width: 155px; }
.schedule-card { background: white; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); overflow: hidden; }
.schedule-card > header { padding: 28px 30px; border-bottom: 1px solid var(--line); }
.schedule-card > header p { margin: 0 0 5px; color: var(--accent); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.schedule-card h2 { margin: 0; font-family: Georgia, serif; font-size: 31px; font-weight: 500; }
.timeline { list-style: none; padding: 0; margin: 0; }
.timeline li { display: grid; grid-template-columns: 130px 1fr; gap: 24px; padding: 25px 30px; border-bottom: 1px solid var(--line); }
.timeline li:last-child { border-bottom: 0; }
.timeline time { color: var(--muted); font-size: 13px; font-weight: 700; padding-top: 5px; }
.timeline h3 { margin: 9px 0 0; font-family: Georgia, serif; font-size: 22px; font-weight: 500; }
footer { width: min(1120px, calc(100% - 40px)); margin: 0 auto; padding: 22px 0 35px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; color: var(--muted); font-size: 12px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
@media (max-width: 900px) {
  .filter-grid { grid-template-columns: repeat(2, 1fr); }
  .filter-actions { grid-column: 1 / -1; }
}
@media (max-width: 620px) {
  .site-header { padding: 0 15px; gap: 12px; }
  .brand span:last-child { display: none; }
  .site-header nav { margin-left: 0; gap: 16px; }
  .sound-toggle { margin-left: auto; font-size: 0; }
  .sound-toggle span { font-size: 18px; }
  main { width: min(100% - 28px, 1120px); padding-top: 36px; }
  .page-heading { align-items: start; flex-direction: column; }
  .filter-grid { grid-template-columns: 1fr; }
  .filter-actions { grid-column: auto; }
  .report-card { padding: 19px; }
  .report-footer { flex-direction: column; gap: 8px; }
  .day-nav { display: grid; grid-template-columns: 1fr 1fr; }
  .day-nav form { grid-column: 1 / -1; grid-row: 1; }
  .timeline li { grid-template-columns: 1fr; gap: 8px; padding: 22px; }
  footer { flex-direction: column; gap: 8px; }
}

