@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:opsz,wght@8..60,400;8..60,600;8..60,700&family=Inter:wght@400;500;600&display=swap');

:root {
  --paper: #F5F3EF;
  --surface: #FFFFFF;
  --ink: #1B1F24;
  --ink-soft: #545A62;
  --rule: #DBDFE3;
  --green: #03244D;
  --green-dark: #021830;
  --brass: #DD550C;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 18px;
  line-height: 1.6;
}

a { color: var(--green); }
a:focus-visible, button:focus-visible { outline: 3px solid var(--brass); outline-offset: 2px; }

.wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

header.hero {
  background: var(--green);
  color: #F5F3EF;
  padding: 56px 0 48px;
  border-bottom: 6px solid var(--brass);
}

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #F4A876;
  margin: 0 0 10px;
  letter-spacing: 0.02em;
}

h1.title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 700;
  font-size: 44px;
  line-height: 1.12;
  margin: 0 0 12px;
}

.subtitle {
  font-family: 'Source Serif 4', Georgia, serif;
  font-style: italic;
  font-size: 21px;
  color: #D9E2EE;
  margin: 0;
}

main { padding: 44px 0 20px; }

section { margin-bottom: 52px; }

h2 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 600;
  font-size: 28px;
  color: var(--green-dark);
  margin: 0 0 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--rule);
}

.about p { color: var(--ink-soft); margin: 0 0 14px; max-width: 66ch; }

.format-note {
  background: var(--surface);
  border-left: 4px solid var(--brass);
  padding: 16px 20px;
  border-radius: 2px;
  color: var(--ink-soft);
  font-size: 16px;
}

table.schedule {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  font-size: 16px;
}

table.schedule caption { text-align: left; }

table.schedule th, table.schedule td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
}

table.schedule th {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-soft);
  background: #EBEEF1;
}

table.schedule td.week { white-space: nowrap; font-weight: 600; color: var(--green-dark); }
table.schedule td.session { font-weight: 500; }
table.schedule td.leaders { color: var(--ink-soft); }

.bench-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 18px;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 18px 22px;
}

.bench-list li {
  font-size: 16px;
  color: var(--ink);
  padding: 4px 0;
}

@media (max-width: 560px) {
  .bench-list { grid-template-columns: repeat(2, 1fr); }
}

.downloads { display: grid; gap: 14px; }

.download-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 20px 22px;
}

.download-card .label {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 600;
  font-size: 19px;
  color: var(--ink);
  margin: 0 0 4px;
}

.download-card .desc { color: var(--ink-soft); font-size: 15px; margin: 0; }

.download-card a.btn {
  flex-shrink: 0;
  background: var(--brass);
  color: #fff;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 11px 20px;
  border-radius: 5px;
}

.download-card a.btn:hover { background: #C24A08; }

.meeting-info {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 24px 26px;
}

.meeting-info dl { margin: 0; display: grid; grid-template-columns: 120px 1fr; gap: 10px 16px; }
.meeting-info dt { font-weight: 600; color: var(--ink-soft); font-size: 15px; }
.meeting-info dd { margin: 0; }

.editme {
  background: #FBF0DC;
  border: 1px dashed var(--brass);
  padding: 2px 6px;
  border-radius: 3px;
}

footer {
  border-top: 1px solid var(--rule);
  padding: 28px 0 40px;
  color: var(--ink-soft);
  font-size: 14px;
}

@media (max-width: 560px) {
  h1.title { font-size: 32px; }
  .subtitle { font-size: 18px; }
  table.schedule { font-size: 14px; }
  table.schedule th, table.schedule td { padding: 9px 8px; }
  .download-card { flex-direction: column; align-items: flex-start; }
  .meeting-info dl { grid-template-columns: 1fr; }
}
