:root {
  --ink: #2b2a26;
  --paper: #f7f5f0;
  --accent: #4a6741;
  --line: #d8d3c8;
  --muted: #5c584f;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.5;
}

.page {
  max-width: 40rem;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
}

.header h1 {
  font-size: 2rem;
  margin: 0 0 0.25rem;
  color: var(--accent);
}

.tagline {
  margin: 0 0 2rem;
  color: var(--muted);
  font-style: italic;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  background: #fffdf9;
  border: 1px solid var(--line);
}

.hours-table caption {
  text-align: left;
  color: var(--muted);
  font-size: 0.9rem;
  padding-bottom: 0.5rem;
}

.hours-table th,
.hours-table td {
  border-bottom: 1px solid var(--line);
  padding: 0.65rem 0.75rem;
  text-align: left;
}

.hours-table thead th {
  color: var(--accent);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hours-table tbody th {
  font-weight: normal;
}

.placeholder-note {
  margin-top: 1.25rem;
  padding: 0.9rem 1rem;
  border-left: 4px solid var(--accent);
  background: #eceee7;
  color: var(--ink);
}

a, button, [tabindex] { }
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}
