:root {
  --ink: #24312a;
  --paper: #f5f1e8;
  --card: #fffdf8;
  --accent: #9c4221;
  --accent-soft: #f3ddd0;
  --muted: #5b665e;
  --line: #ddd4c2;
}

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

body {
  background: var(--paper);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.55;
  -webkit-text-size-adjust: 100%;
}

.wrap {
  max-width: 42rem;
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
}

.masthead { margin-bottom: 2rem; }

.eyebrow {
  font-family: "Helvetica Neue", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 700;
}

h1 {
  font-size: 2rem;
  margin: 0.4rem 0 0.5rem;
  line-height: 1.2;
}

.lede { color: var(--muted); }

h2 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.hours, .closures {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}

.note {
  color: var(--muted);
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 1rem;
}

.schedule { list-style: none; }

.schedule li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0.6rem;
  border-top: 1px solid var(--line);
  border-radius: 6px;
}

.schedule li:first-child { border-top: none; }

.schedule .day { font-weight: 700; }

.schedule .time { color: var(--muted); text-align: right; }

.schedule li.today {
  background: var(--accent-soft);
  border-top-color: transparent;
}

.schedule li.today + li { border-top-color: transparent; }

.schedule li.today .day { color: var(--accent); }

.today-badge {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--paper);
  background: var(--accent);
  border-radius: 4px;
  padding: 0.15rem 0.45rem;
  margin-right: 0.5rem;
}

.foot {
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
}

a, button { outline: none; }

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

@media (max-width: 480px) {
  h1 { font-size: 1.6rem; }
  .schedule li { flex-direction: column; gap: 0.15rem; }
  .schedule .time { text-align: left; }
}
