:root {
  --ink: #241813;
  --paper: #fffaf2;
  --warm: #f4e6d1;
  --accent: #8f2f1f;
  --accent-dark: #681f14;
  --line: #c9ad8d;
  --focus: #0b57d0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; line-height: 1.6; background: var(--paper); }
a { color: var(--accent-dark); text-underline-offset: .2em; }
a:hover { text-decoration-thickness: 2px; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }
img { display: block; max-width: 100%; height: auto; }
.shell { width: min(1120px, calc(100% - 2rem)); margin-inline: auto; }
.narrow { max-width: 760px; }
.skip-link { position: absolute; left: 1rem; top: -5rem; padding: .75rem 1rem; background: #fff; z-index: 1000; }
.skip-link:focus { top: 1rem; }
.site-header { position: sticky; top: 0; z-index: 10; background: rgba(255,250,242,.96); border-bottom: 1px solid var(--line); backdrop-filter: blur(10px); }
.header-inner { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: .65rem; font-weight: 800; text-decoration: none; color: var(--ink); }
.brand-mark { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--accent); color: white; font-size: .8rem; letter-spacing: .08em; }
nav { display: none; gap: 1.25rem; }
nav a { color: var(--ink); font-weight: 650; text-decoration: none; }
.hero { padding: 4rem 0 3rem; background: linear-gradient(180deg, #fffaf2 0%, #f9eedf 100%); }
.hero-grid { display: grid; gap: 2.5rem; align-items: center; }
.eyebrow { margin: 0 0 .6rem; color: var(--accent); font-weight: 800; letter-spacing: .12em; text-transform: uppercase; font-size: .78rem; }
h1, h2, h3 { line-height: 1.12; margin-top: 0; }
h1 { font-family: Georgia, serif; font-size: clamp(2.55rem, 9vw, 5.5rem); max-width: 12ch; margin-bottom: 1rem; }
h2 { font-family: Georgia, serif; font-size: clamp(2rem, 6vw, 3.6rem); margin-bottom: 1.2rem; }
h3 { font-size: 1.25rem; }
.lede { font-size: 1.15rem; max-width: 60ch; }
.actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.5rem; }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: .75rem 1.05rem; border-radius: 999px; font-weight: 800; text-decoration: none; border: 2px solid var(--accent); }
.button.primary { background: var(--accent); color: white; }
.button.primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.button.secondary { background: transparent; color: var(--accent-dark); }
.status-note { margin-top: 1rem; font-size: .95rem; }
.hero-art { margin: 0; max-width: 520px; justify-self: center; }
.section { padding: 4.5rem 0; }
.warm { background: var(--warm); }
.visit-grid { display: grid; gap: 2.5rem; }
address { font-style: normal; font-size: 1.08rem; margin-bottom: .8rem; }
.text-link, .source-link a { font-weight: 750; }
.hours { margin: 0 0 1rem; }
.hours div { display: grid; grid-template-columns: 1fr; padding: .7rem 0; border-bottom: 1px solid var(--line); }
.hours dt { font-weight: 750; }
.hours dd { margin: 0; }
.notice { margin: 1.5rem 0; padding: 1rem 1.1rem; border-left: 5px solid var(--accent); background: #fff7ea; }
.notice p { margin-bottom: 0; }
.site-footer { padding: 2.5rem 0; background: #241813; color: #fff8ef; }
.site-footer a { color: white; }
.footer-inner { display: grid; gap: 1.25rem; }
.footer-inner p { margin: .25rem 0 0; }
.fine-print { font-size: .88rem; color: #e5d7c7; }
@media (min-width: 720px) {
  nav { display: flex; }
  .hero { padding: 6rem 0 5rem; }
  .hero-grid { grid-template-columns: 1.2fr .8fr; }
  .visit-grid { grid-template-columns: repeat(3, 1fr); }
  .hours div { grid-template-columns: 1fr auto; gap: 1rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .fine-print { grid-column: 1 / -1; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
