:root {
  --ink: #33241b;
  --paper: #f7f1e8;
  --crust: #c8532b;
  --crust-dark: #9c3f20;
  --card: #ffffff;
  --muted: #6b5a4e;
}

* { box-sizing: border-box; }

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

a { color: var(--crust-dark); }
a:hover { color: var(--crust); }

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

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

.hero {
  background: var(--ink);
  color: var(--paper);
  padding: 4rem 1.5rem 3.5rem;
}
.hero-inner { max-width: 60rem; margin: 0 auto; }
.kicker {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  color: #e8d5c4;
  margin: 0 0 0.5rem;
}
.hero h1 {
  font-size: clamp(2rem, 6vw, 3.25rem);
  margin: 0 0 0.75rem;
  line-height: 1.15;
}
.lede {
  max-width: 42rem;
  font-size: 1.15rem;
  color: #f1e4d6;
  margin: 0 0 1.5rem;
}
.hero-nav { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero-nav a {
  color: var(--paper);
  text-decoration: none;
  border: 1.5px solid #e8d5c4;
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  font-size: 0.95rem;
}
.hero-nav a:hover { background: var(--crust); border-color: var(--crust); }

.section {
  max-width: 60rem;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}
.section-alt {
  max-width: none;
  background: #efe5d6;
}
.section-alt > * { max-width: 60rem; margin-left: auto; margin-right: auto; }
.section h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin: 0 0 0.5rem;
}
.section-lede { margin: 0 0 1.75rem; color: var(--muted); max-width: 42rem; }

.hours-table {
  width: 100%;
  max-width: 34rem;
  border-collapse: collapse;
  background: var(--card);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(51, 36, 27, 0.12);
}
.hours-table th, .hours-table td {
  text-align: left;
  padding: 0.7rem 1rem;
  border-bottom: 1px solid #eee2d2;
  font-size: 1rem;
}
.hours-table thead th {
  background: var(--crust);
  color: #fff;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}
.hours-table tbody tr:last-child td { border-bottom: none; }
.hours-table td.today {
  font-weight: bold;
  background: #fdf6ee;
}

.gallery {
  list-style: none;
  margin: 0;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
  gap: 1rem;
}
.gallery-item {
  background: var(--card);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(51, 36, 27, 0.12);
}
.gallery-item img {
  display: block;
  width: 100%;
  height: auto;
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 46rem;
}
.visit-grid h3 {
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--crust-dark);
  margin: 0 0 0.4rem;
}
.visit-grid p { margin: 0 0 1.5rem; }

.footer {
  background: var(--ink);
  color: #e8d5c4;
  text-align: center;
  padding: 1.5rem 1rem;
  font-size: 0.9rem;
}
.footer p { margin: 0; }

@media (max-width: 600px) {
  .visit-grid { grid-template-columns: 1fr; }
  .hours-table th, .hours-table td { padding: 0.55rem 0.7rem; }
}
