/* Palette — see DESIGN.md */
:root {
  --ink: #3a2318;        /* deep roasted brown */
  --paper: #faf5ee;      /* warm flour white */
  --crust: #c86a2b;      /* baked crust orange */
  --crust-dark: #9a4d1c;
  --card: #ffffff;
  --muted: #6b5a4e;
  --line: #e5d8c8;
}

* { box-sizing: border-box; }

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

.wrap { max-width: 960px; margin: 0 auto; padding: 0 20px; }

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

/* Hero */
.hero {
  background: var(--ink);
  color: var(--paper);
  padding: 64px 0 56px;
}
.hero h1 {
  margin: 0 0 12px;
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  line-height: 1.15;
  color: #ffffff;
}
.tagline {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  margin: 0 0 16px;
  color: #f0e4d4;
  max-width: 34em;
}
.hero-note {
  margin: 0;
  max-width: 44em;
  color: #cfc0ae;
  font-size: 1rem;
}

/* Nav */
.nav {
  background: var(--crust);
}
.nav-inner { display: flex; gap: 28px; padding-top: 12px; padding-bottom: 12px; }
.nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav a:hover { text-decoration: underline; }

/* Sections */
.section { padding: 48px 0; }
.section-alt { background: #f2e9dc; }
h2 {
  margin: 0 0 8px;
  font-size: clamp(1.6rem, 4vw, 2.1rem);
}
.section-note { margin: 0 0 24px; color: var(--muted); }

/* Hours table */
.hours {
  width: 100%;
  max-width: 460px;
  border-collapse: collapse;
  background: var(--card);
  border: 1px solid var(--line);
}
.hours th, .hours td {
  text-align: left;
  padding: 10px 16px;
  border-bottom: 1px solid var(--line);
}
.hours thead th {
  background: var(--ink);
  color: var(--paper);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hours tr[data-day].today { background: #fdeadd; box-shadow: inset 3px 0 0 var(--crust); }
.hours tr:last-child th, .hours tr:last-child td { border-bottom: none; }

.today-note { margin-top: 14px; font-style: italic; color: var(--muted); }

/* Gallery */
.gallery {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.gallery li {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 8px;
}
.gallery img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.gallery figcaption {
  padding: 8px 4px 2px;
  font-size: 0.95rem;
  color: var(--ink);
}

/* Footer */
.footer {
  background: var(--ink);
  color: #e8dcc9;
  padding: 32px 0 40px;
  font-size: 0.95rem;
}
.footer p { margin: 0 0 6px; }
.footer-fine { color: #a8987f; font-size: 0.85rem; }

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