:root {
  --ink: #23301f;
  --paper: #f6f4ec;
  --card: #fffdf7;
  --accent: #4a6b3a;
  --muted: #5c664f;
  --line: #dcd7c4;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 24px 16px;
  background: var(--paper);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.5;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 32px 28px;
  max-width: 560px;
  width: 100%;
  height: fit-content;
}

.eyebrow {
  margin: 0 0 4px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  color: var(--accent);
  font-weight: bold;
}

h1 {
  margin: 0 0 24px;
  font-size: 34px;
  line-height: 1.15;
}

h2 {
  font-size: 19px;
  margin: 28px 0 10px;
}

h2:first-of-type { margin-top: 0; }

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

table.hours th,
table.hours td {
  text-align: left;
  padding: 9px 8px;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
}

table.hours thead th {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  border-bottom: 2px solid var(--line);
}

td.empty, p.empty {
  color: var(--muted);
  font-style: italic;
}

ul.notes {
  margin: 0;
  padding-left: 20px;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

@media (max-width: 480px) {
  .card { padding: 22px 16px; }
  h1 { font-size: 27px; }
}
