:root {
  --paper: #f3ebe0;
  --paper-2: #eae0d2;
  --ink: #241812;
  --ink-soft: #4a3c34;
  --muted: #6e5f54;
  --line: #d3c4b4;
  --blood: #9c1c2c;
  --blood-dark: #7a1422;
  --walnut: #2b1c18;
  --cream: #faf6ef;
  --font-serif: "Neuton", "Times New Roman", serif;
  --font-sans: "Cabin", Georgia, sans-serif;
  --max: 1040px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  min-height: 100vh;
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.4em;
  letter-spacing: 0;
  text-transform: none;
}

p {
  margin: 0 0 1em;
}

.skip {
  position: absolute;
  left: -999px;
}

.skip:focus {
  left: 12px;
  top: 12px;
  z-index: 80;
  background: var(--blood);
  color: #fff;
  padding: 8px 12px;
}

.container {
  width: min(calc(100% - 36px), var(--max));
  margin-inline: auto;
}

.eyebrow {
  display: block;
  color: var(--blood);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.eyebrow::before {
  content: none;
}

.lede {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 38rem;
}

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

.ticker {
  display: none;
}

.topline {
  background: var(--walnut);
  color: #efe6da;
  font-size: 0.8rem;
}

.topline-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  min-height: 36px;
}

.topline a:hover {
  text-decoration: underline;
}

.site-header {
  position: relative;
  z-index: 40;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.site-header.is-scrolled {
  box-shadow: 0 1px 0 var(--line);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo strong {
  font-family: var(--font-serif);
  font-size: 2.05rem;
  font-weight: 700;
  color: var(--blood);
}

.logo em,
.logo span {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  font-size: 0.95rem;
  color: var(--ink);
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--blood);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--ink);
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 2px;
  background: var(--blood);
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
  border: 0;
  cursor: pointer;
}

.btn:hover {
  background: var(--blood-dark);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.btn-ghost:hover {
  background: var(--ink);
  color: var(--paper);
}

.hero {
  position: relative;
  min-height: 0;
  padding: 0;
}

.hero-media {
  position: relative;
  height: min(72vh, 640px);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: none;
}

.hero .container {
  position: relative;
  margin-top: -72px;
  padding-bottom: 8px;
}

.hero-copy {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 28px 28px 24px;
  max-width: 34rem;
  box-shadow: 6px 6px 0 rgba(36, 24, 18, 0.08);
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  max-width: none;
  margin-bottom: 10px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-meta {
  display: none;
}

.status[data-state="open"] {
  color: #b7e0b4;
}

.status[data-state="closed"] {
  color: #f0b4b4;
}

.section {
  padding: 56px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 22px;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 10px;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  margin: 0;
}

.split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 40px;
  align-items: start;
}

.frame {
  position: relative;
  border-radius: 0;
  overflow: visible;
  min-height: 0;
  box-shadow: none;
  border: 1px solid var(--ink);
  padding: 8px;
  background: var(--cream);
}

.frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 340px;
}

.frame-badge {
  position: absolute;
  right: -8px;
  bottom: 18px;
  background: var(--blood);
  color: #fff;
  padding: 7px 12px;
  font-size: 0.78rem;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.stat {
  border: 0;
  padding: 0;
  background: none;
  min-width: 7rem;
}

.stat b {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.7rem;
  color: var(--blood);
}

.feature-grid,
.card-grid,
.menu-grid,
.guide-grid {
  display: grid;
  gap: 0;
}

.feature-grid {
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}

.feature {
  min-height: 0;
  background: none;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 18px 0;
}

.feature h3,
.card h3,
.menu-item h3 {
  font-size: 1.25rem;
}

.card {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  overflow: hidden;
}

.card img {
  width: 120px;
  height: 88px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.card:hover {
  border-color: var(--line);
}

.card:hover h3 {
  color: var(--blood);
}

.guide-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  grid-template-rows: auto;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
}

.card-body {
  padding: 0;
}

.menu-preview {
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.menu-grid {
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px 12px;
  background: none;
  border: 0;
  border-bottom: 1px dotted #c4b6a5;
  border-radius: 0;
  padding: 12px 0;
}

.menu-item p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.price {
  font-family: var(--font-serif);
  color: var(--ink);
  font-size: 1.1rem;
}

.specials {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
}

.special {
  position: relative;
  min-height: 0;
  border-radius: 0;
  overflow: visible;
  display: block;
  padding: 0;
  background: var(--cream);
  border: 1px solid var(--line);
}

.special img {
  position: static;
  width: 100%;
  height: 220px;
  object-fit: cover;
  z-index: auto;
}

.special::after {
  content: none;
}

.special > div {
  padding: 16px 18px 18px;
}

.special a {
  color: var(--blood);
  text-decoration: underline;
}

.specials-stack {
  display: grid;
  gap: 16px;
}

.hours-visit {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
}

.panel {
  background: var(--cream);
  border: 1px solid var(--ink);
  border-radius: 0;
  padding: 22px 22px 8px;
}

.hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.95rem;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  border-bottom: 1px dotted #c4b6a5;
}

.map-wrap iframe {
  width: 100%;
  min-height: 340px;
  border: 1px solid var(--ink);
  border-radius: 0;
  filter: none;
}

.page-hero {
  padding: 36px 0 24px;
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.1rem);
}

.article {
  display: grid;
  grid-template-columns: minmax(0, 700px) 260px;
  gap: 48px;
  padding: 40px 0 72px;
}

.article-body {
  font-size: 1.08rem;
  color: var(--ink);
}

.article-body h2 {
  margin-top: 1.35em;
  font-size: 1.7rem;
}

.article-body h3 {
  margin-top: 1em;
  font-size: 1.2rem;
}

.article-body a {
  color: var(--blood);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-figure {
  margin: 8px 0 24px;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid var(--ink);
}

.article-figure img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.sidebar {
  position: sticky;
  top: 18px;
  height: fit-content;
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 6px 18px 14px;
}

.sidebar a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}

.sidebar a:hover {
  color: var(--blood);
}

.press-list {
  list-style: none;
  margin: 0 0 1.5em;
  padding: 0;
}

.press-list li {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.press-list strong {
  display: block;
  font-family: var(--font-serif);
  letter-spacing: 0;
  text-transform: none;
  color: var(--blood);
  margin-bottom: 4px;
}

.event-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 20px 0 8px;
}

.event-meta div {
  border: 1px solid var(--line);
  background: var(--cream);
  padding: 14px;
  border-radius: 0;
}

.event-meta strong {
  display: block;
  color: var(--blood);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  text-transform: none;
  margin-bottom: 4px;
}

.menu-page .menu-section + .menu-section {
  margin-top: 40px;
}

.menu-full {
  display: grid;
  gap: 0;
}

.site-footer {
  border-top: 8px solid var(--walnut);
  padding: 36px 0 22px;
  background: var(--walnut);
  color: #efe6da;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 24px;
}

.site-footer h2,
.site-footer h3 {
  font-size: 1.15rem;
  color: #fff;
}

.site-footer .logo strong {
  color: #fff;
}

.site-footer .logo em,
.site-footer .logo span {
  color: #cbb9a8;
}

.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.legal {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: #cbb9a8;
  font-size: 0.85rem;
  border-top: 1px solid #4a382f;
  padding-top: 16px;
}

.net {
  background: none;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 112px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream);
    border: 1px solid var(--ink);
    padding: 8px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 10px;
  }

  .split,
  .feature-grid,
  .menu-grid,
  .specials,
  .hours-visit,
  .guide-grid,
  .article,
  .footer-grid,
  .stats,
  .event-meta,
  .guide-card {
    grid-template-columns: 1fr;
  }

  .hero .container {
    margin-top: -36px;
  }

  .card img {
    width: 100%;
    height: 180px;
  }

  .hero-actions .btn:last-child {
    display: none;
  }

  .nav-bar > .nav-cta {
    display: none;
  }

  .section {
    padding: 40px 0;
  }
}
