/* Main Street Ed's — Argonne, Wisconsin
   Northwoods supper club. Not a template. */

:root {
  --burgundy: #6b1010;
  --burgundy-mid: #5a0e0e;
  --burgundy-deep: #140c0a;
  --cream: #f6f1d6;
  --cream-dark: #e4d6a4;
  --paper: #fbf7e8;
  --wood: #8a5532;
  --wood-deep: #4a2f1d;
  --gold: #d2b03a;
  --gold-lite: #ead56a;
  --hop: #1f6a22;
  --ink: #1a120e;
  --ink-soft: #5a4d44;
  --line: rgba(74, 40, 28, 0.16);
  --white: #fffaf3;
  --header-h: 4.5rem;
  --font-display: "Cormorant Garamond", "Palatino Linotype", Palatino, serif;
  --font-ui: "Outfit", "Avenir Next", "Segoe UI", sans-serif;
  --font-body: "Source Serif 4", "Iowan Old Style", Georgia, serif;
  --shadow: 0 20px 50px rgba(28, 12, 10, 0.18);
  --max: 70rem;
  --gutter: 1.25rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  font-optical-sizing: auto;
}

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

a {
  color: var(--burgundy);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--wood);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip {
  position: absolute;
  left: 0.75rem;
  top: -4rem;
  z-index: 100;
  background: var(--gold);
  color: var(--ink);
  padding: 0.5rem 0.9rem;
  font-family: var(--font-ui);
  font-weight: 600;
  text-decoration: none;
}

.skip:focus {
  top: 0.75rem;
}

/* Checkered tablecloth edge */
.checker {
  height: 8px;
  background-color: var(--burgundy-deep);
  background-image: repeating-linear-gradient(
    90deg,
    var(--burgundy-deep) 0 8px,
    var(--cream) 8px 16px
  );
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--burgundy-deep);
  color: var(--cream);
  box-shadow: 0 8px 24px rgba(20, 6, 8, 0.28);
}

.header-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: var(--max);
  margin: 0 auto;
  min-height: var(--header-h);
  padding: 0.45rem var(--gutter);
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--cream);
  line-height: 1;
  margin-right: auto;
}

.wordmark img {
  height: 3.35rem;
  width: auto;
  flex: none;
  border-radius: 50%;
  background: var(--cream);
}

.wordmark-text {
  display: grid;
}

.wordmark:hover {
  color: var(--gold-lite);
}

.wordmark-kicker {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-lite);
}

.wordmark-name {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.header-menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.6rem;
  padding: 0 0.95rem;
  border: 1px solid var(--gold);
  color: var(--gold-lite);
  text-decoration: none;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.header-menu-btn:hover {
  background: var(--gold);
  color: var(--burgundy-deep);
}

.nav-toggle {
  width: 2.7rem;
  height: 2.6rem;
  border: 1px solid rgba(228, 204, 138, 0.45);
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: var(--cream);
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bars::before {
  top: -6px;
}

.nav-toggle-bars::after {
  top: 6px;
}

.nav-open .nav-toggle-bars {
  background: transparent;
}

.nav-open .nav-toggle-bars::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-open .nav-toggle-bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.site-nav {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(var(--header-h) + 8px);
  background: var(--burgundy-mid);
  border-bottom: 1px solid rgba(196, 160, 90, 0.28);
  display: none;
  padding: 0.5rem 0 1rem;
}

.nav-open .site-nav {
  display: block;
}

.site-nav ul {
  list-style: none;
  margin: 0 auto;
  padding: 0 var(--gutter);
  max-width: var(--max);
}

.site-nav a {
  display: block;
  color: var(--cream);
  text-decoration: none;
  font-family: var(--font-ui);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 0.15rem;
  border-bottom: 1px solid rgba(243, 234, 216, 0.1);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--gold-lite);
}

.site-nav a[aria-current="page"] {
  box-shadow: inset 3px 0 0 var(--gold);
  padding-left: 0.7rem;
}

/* Hero: full original photo, no crop */
.hero {
  position: relative;
  display: grid;
  color: var(--cream);
  background-color: var(--paper);
}

.hero-photo {
  grid-area: 1 / 1;
  width: 100%;
  height: auto;
  display: block;
  align-self: start;
}

.hero::after {
  content: "";
  grid-area: 1 / 1;
  background: linear-gradient(to bottom, rgba(28, 8, 8, 0.5) 0%, rgba(28, 8, 8, 0.22) 42%, rgba(28, 8, 8, 0.5) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-stage {
  grid-area: 1 / 1;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 2.9rem;
  padding: 0.55rem 0 0.75rem;
  min-height: 100%;
}

.hero-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.place-label {
  margin: 0 0 0.35rem;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-lite);
}

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.35rem, 7.5vw, 4.1rem);
  line-height: 0.92;
  letter-spacing: 0.01em;
}

.tagline {
  margin: 0.4rem 0 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.35rem, 3.4vw, 2rem);
  font-weight: 500;
  color: var(--cream);
}

.hero-lead {
  max-width: 34rem;
  margin: 0.3rem auto 0;
  color: rgba(243, 234, 216, 0.88);
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 0.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.55rem 1.2rem;
  font-family: var(--font-ui);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
}

.btn-gold {
  background: var(--gold);
  color: var(--burgundy-deep);
}

.btn-gold:hover {
  background: var(--gold-lite);
  color: var(--burgundy-deep);
}

.btn-ghost {
  border-color: var(--cream);
  color: var(--cream);
  background: transparent;
}

.btn-ghost:hover {
  background: var(--cream);
  color: var(--burgundy-deep);
}

.btn-burgundy {
  background: var(--burgundy);
  color: var(--cream);
}

.btn-burgundy:hover {
  background: var(--burgundy-mid);
  color: var(--cream);
}

/* Page hero (inner pages) */
.page-hero {
  background: var(--burgundy-deep);
  color: var(--cream);
  padding: 2.6rem var(--gutter) 2.3rem;
  border-bottom: 8px solid transparent;
  border-image: repeating-linear-gradient(90deg, var(--burgundy-deep) 0 8px, var(--cream) 8px 16px) 8;
}

.page-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.page-hero h1 {
  margin: 0.2rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 8vw, 4.4rem);
  font-weight: 600;
  line-height: 0.95;
}

.page-hero p {
  margin: 0.7rem 0 0;
  max-width: 36rem;
  color: rgba(243, 234, 216, 0.86);
}

/* Layout */
.wrap {
  width: min(var(--max), 100% - (var(--gutter) * 2));
  margin-inline: auto;
}

.section {
  padding: 1.5rem 0;
}

.week-at-eds {
  padding-top: 1.1rem;
}

.section-head {
  margin-bottom: 1.6rem;
}

.kicker {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--hop);
}

h2 {
  margin: 0.25rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 5vw, 2.7rem);
  font-weight: 600;
  line-height: 1.1;
}

.rule {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0.7rem 0 0;
  color: var(--gold);
}

.rule::before,
.rule::after {
  content: "";
  height: 1px;
  background: var(--gold);
  flex: 0 0 2.2rem;
}

.rule span {
  width: 7px;
  height: 7px;
  transform: rotate(45deg);
  background: var(--gold);
}

/* Specials card — filled by JS from this-week.json */
.specials-band {
  background: transparent;
  color: var(--cream);
  padding: 0;
  width: 100%;
}

.specials-band .wrap {
  margin-top: 0;
  position: relative;
}

.specials-card {
  background: var(--paper);
  color: var(--ink);
  padding: 1.5rem 1.3rem 1.4rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--cream-dark);
  position: relative;
  text-align: center;
  max-width: 42rem;
  margin-inline: auto;
}

.specials-card::before,
.specials-card::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid var(--gold);
}

.specials-card::before {
  top: 10px;
  left: 10px;
  border-right: 0;
  border-bottom: 0;
}

.specials-card::after {
  bottom: 10px;
  right: 10px;
  border-left: 0;
  border-top: 0;
}

.specials-card .kicker {
  color: var(--burgundy);
}

.specials-card h2 {
  font-size: clamp(1.8rem, 5vw, 2.55rem);
}

.specials-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem 1rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  font-family: var(--font-ui);
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.specials-meta li {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}

.specials-meta strong {
  color: var(--burgundy);
  font-weight: 650;
  letter-spacing: 0.02em;
}

.price-pill {
  display: inline-block;
  margin-top: 1rem;
  background: var(--burgundy);
  color: var(--cream);
  font-family: var(--font-ui);
  font-weight: 650;
  letter-spacing: 0.08em;
  padding: 0.4rem 0.85rem;
  font-size: 1.05rem;
}

.specials-note {
  margin: 1rem 0 0;
  font-style: italic;
  color: var(--ink-soft);
}

.specials-card.is-error .price-pill,
.specials-card.is-error .specials-meta,
.specials-card.is-error .specials-items {
  display: none;
}

/* BBQ stays the compact supper-club card */
.specials-card.theme-bbq {
  background:
    linear-gradient(180deg, rgba(196, 160, 90, 0.08), transparent 3.4rem),
    var(--paper);
}

/* Fall Fest — printed seasonal board, harvest gold, northwoods paper */
.specials-band.is-fall-fest {
  background: transparent;
  padding-bottom: 0;
}

.specials-card.theme-fall-fest {
  background-color: #faf3e4;
  background-image:
    repeating-linear-gradient(
      90deg,
      var(--burgundy-deep) 0 8px,
      var(--cream) 8px 16px
    ),
    repeating-linear-gradient(
      45deg,
      rgba(138, 85, 50, 0.04) 0 10px,
      rgba(196, 160, 90, 0.03) 10px 20px
    ),
    linear-gradient(180deg, #fbf6ea 0%, #f3ead8 100%);
  background-size: 100% 8px, auto, auto;
  background-repeat: no-repeat, repeat, no-repeat;
  background-position: 0 0, 0 8px, 0 0;
  border: 1px solid var(--gold);
  padding-top: 1.85rem;
}

.specials-card.theme-fall-fest::before,
.specials-card.theme-fall-fest::after {
  border-color: #b07d2a;
}

.specials-card.theme-fall-fest::before {
  top: 18px;
}

.specials-card.theme-fall-fest .kicker {
  color: #7a3e16;
  letter-spacing: 0.2em;
}

.specials-card.theme-fall-fest h2 {
  color: var(--burgundy-deep);
  padding-bottom: 0.55rem;
}

.specials-card.theme-fall-fest h2::after {
  content: "";
  display: block;
  width: 3.1rem;
  height: 2px;
  margin-top: 0.65rem;
  background: var(--gold);
}

.specials-card.theme-fall-fest .specials-meta {
  color: var(--wood-deep);
  font-size: 0.95rem;
}

.specials-card.theme-fall-fest .specials-note {
  color: var(--wood-deep);
}

.specials-items {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0.85rem 0 0;
  border-top: 1px solid rgba(176, 125, 42, 0.45);
}

.specials-items li {
  padding: 0.72rem 0;
  border-bottom: 1px solid rgba(74, 40, 28, 0.08);
}

.specials-items li:last-child {
  border-bottom: 0;
  padding-bottom: 0.15rem;
}

.specials-item-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.specials-item-name {
  flex: 0 1 auto;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--burgundy-deep);
}

.specials-item-dots {
  flex: 1 1 auto;
  min-width: 1.25rem;
  height: 0.62em;
  border-bottom: 1px dotted rgba(110, 28, 41, 0.38);
}

.specials-item-price {
  flex: 0 0 auto;
  font-family: var(--font-ui);
  font-weight: 650;
  color: var(--burgundy);
  letter-spacing: 0.03em;
  font-size: 1.02rem;
  white-space: nowrap;
}

.specials-item-desc {
  margin: 0.22rem 0 0;
  max-width: 40rem;
  font-size: 0.92rem;
  font-style: italic;
  line-height: 1.45;
  color: var(--ink-soft);
}

.specials-card.theme-fallback .price-pill,
.specials-card.theme-fallback .specials-items {
  display: none;
}

/* Always-on Fall Fest board on the menu page */
.fest-band {
  background:
    radial-gradient(1000px 260px at 50% 0%, rgba(196, 160, 90, 0.2), transparent 60%),
    var(--burgundy-deep);
  color: var(--cream);
  padding: 2.4rem 0 2.8rem;
}

.fest-band .specials-card {
  margin: 0;
}

.fest-coming {
  margin: 0.55rem 0 0;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7a3e16;
}

/* Rhythm / weekly classics */
.rhythm-grid {
  display: grid;
  gap: 1rem;
}

.rhythm-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.2rem 1.15rem 1.25rem;
}

.rhythm-card .day {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin: 0;
}

.rhythm-card h3 {
  margin: 0.3rem 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
}

.rhythm-card p {
  margin: 0;
  color: var(--ink-soft);
}

.rhythm-card .from {
  margin-top: 0.7rem;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--wood);
}

/* Photos */
.photo-grid {
  display: grid;
  gap: 0.7rem;
}

.photo-card {
  margin: 0;
  background: var(--wood-deep);
}

.photo-card img {
  width: 100%;
  height: 14rem;
  object-fit: cover;
  object-position: center 40%;
}

.photo-card figcaption {
  padding: 0.55rem 0.75rem 0.7rem;
  color: var(--cream);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Visit / hours split */
.split {
  display: grid;
  gap: 1.4rem;
}

.panel {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.35rem 1.2rem 1.4rem;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.8rem;
  font-size: 1rem;
}

.hours-table th,
.hours-table td {
  text-align: left;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  font-weight: 400;
}

.hours-table th {
  font-family: var(--font-ui);
  font-weight: 550;
  width: 42%;
}

.hours-table tr.is-today th,
.hours-table tr.is-today td {
  color: var(--burgundy);
  font-weight: 650;
}

.hours-table tr.is-closed td {
  color: var(--ink-soft);
  font-style: italic;
}

.weather-note {
  margin: 0.9rem 0 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
  font-style: italic;
}

.address-block {
  margin: 0.8rem 0 0;
  font-style: normal;
}

.address-block p {
  margin: 0.15rem 0;
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.1rem;
}

.map-note {
  margin: 0.8rem 0 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* Hiring */
.hiring {
  background: var(--wood-deep);
  color: var(--cream);
  padding: 2.4rem 0;
}

.hiring .wrap {
  display: grid;
  gap: 1rem;
}

.hiring h2 {
  color: var(--gold-lite);
}

.hiring p {
  margin: 0.5rem 0 0;
  max-width: 38rem;
}

/* Menu page */
.menu-cards {
  display: grid;
  gap: 1rem;
}

.menu-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.4rem 1.2rem 1.3rem;
  display: grid;
  gap: 0.45rem;
  align-content: start;
}

.menu-card svg {
  width: 2rem;
  height: 2rem;
  stroke: var(--burgundy);
  fill: none;
  stroke-width: 1.6;
}

.menu-card h2 {
  font-size: 1.85rem;
}

.menu-card p {
  margin: 0;
  color: var(--ink-soft);
}

.menu-card a {
  margin-top: 0.55rem;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--burgundy);
  border-bottom: 1px solid var(--gold);
  width: max-content;
  padding-bottom: 0.15rem;
}

.menu-card a:hover {
  color: var(--wood);
}

.price-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.price-list li {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  padding: 0.55rem 0;
  border-bottom: 1px dashed var(--line);
}

.price-list .dots {
  flex: 1;
  border-bottom: 1px dotted rgba(74, 40, 28, 0.35);
  height: 0.7em;
}

.price-list .item {
  font-weight: 600;
}

.price-list .cost {
  font-family: var(--font-ui);
  font-weight: 650;
  color: var(--burgundy);
  letter-spacing: 0.02em;
}

.cuts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.cuts li {
  border: 1px solid var(--gold);
  color: var(--wood-deep);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 0.75rem;
}

.bucket-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.9rem 0 0;
}

.bucket {
  min-width: 3.4rem;
  text-align: center;
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  padding: 0.45rem 0.55rem;
  font-family: var(--font-ui);
}

.bucket b {
  display: block;
  font-size: 1.15rem;
  color: var(--burgundy);
}

.bucket span {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.catering {
  background:
    linear-gradient(to top, rgba(24, 8, 10, 0.78), rgba(24, 8, 10, 0.42)),
    url("../images/patio.jpg") center/cover;
  color: var(--cream);
}

.catering h2 {
  color: var(--cream);
}

.catering p {
  max-width: 34rem;
}

/* About */
.prose {
  max-width: 40rem;
}

.prose p {
  margin: 0.9rem 0 0;
  font-size: 1.12rem;
}

.owners {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.owner-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.3rem 1.2rem 1.35rem;
  border-top: 4px solid var(--burgundy);
}

.owner-photo {
  display: block;
  width: 100%;
  max-width: 13.5rem;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center 18%;
  margin: 0 0 0.95rem;
  border: 1px solid var(--line);
}

.owner-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.7rem;
}

.owner-card .role {
  margin: 0.15rem 0 0.6rem;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wood);
}

.owner-card p {
  margin: 0;
  color: var(--ink-soft);
}

.places {
  margin: 0.7rem 0 0;
  padding: 0;
  list-style: none;
  color: var(--ink);
}

.places li {
  padding: 0.28rem 0 0.28rem 0.9rem;
  position: relative;
}

.places li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--gold);
  position: absolute;
  left: 0;
  top: 0.7em;
  transform: rotate(45deg);
}

.about-photo {
  margin: 2rem 0 0;
}

.about-photo img {
  width: 100%;
  height: 18rem;
  object-fit: cover;
}

.about-photo figcaption {
  margin-top: 0.5rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
  font-style: italic;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: var(--cream-dark);
  padding: 2.4rem 0 1.4rem;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  gap: 1.4rem;
}

.site-footer a {
  color: var(--gold-lite);
  text-decoration: none;
}

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

.site-footer h2,
.site-footer .footer-name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--cream);
  font-weight: 600;
}

.footer-tag {
  margin: 0.2rem 0 0.7rem;
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold-lite);
}

.site-footer h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.legal {
  margin-top: 1.8rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(243, 234, 216, 0.12);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: rgba(230, 213, 184, 0.7);
}

/* Dark band hours on home */
.visit-band {
  background: var(--cream);
}

/* Current page polish */
.muted {
  color: var(--ink-soft);
}


@media (max-width: 639px) {
  .hero {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 15.5rem auto;
  }

  .hero-photo,
  .hero::after {
    grid-row: 1;
    grid-column: 1;
    width: 100%;
    height: 15.5rem;
  }

  .hero-photo {
    object-fit: cover;
    object-position: center 28%;
    align-self: stretch;
  }

  .hero-stage {
    display: contents;
  }

  .hero-inner {
    grid-row: 1;
    grid-column: 1;
    z-index: 2;
    padding: 0.8rem var(--gutter) 0;
  }

  .hero-lead,
  .hero-actions {
    display: none;
  }

  .hero h1 {
    font-size: 2.15rem;
  }

  .tagline {
    font-size: 1.12rem;
    margin-top: 0.22rem;
  }

  .place-label {
    font-size: 0.68rem;
    margin-bottom: 0.2rem;
  }

  .specials-band {
    grid-row: 2;
    grid-column: 1;
    padding: 0.9rem 0 0;
  }
}

@media (min-width: 640px) {
  :root {
    --gutter: 1.6rem;
  }

  .rhythm-grid,
  .menu-cards,
  .owners,
  .split,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .photo-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .photo-card img {
    height: 12.5rem;
  }

  .specials-card {
    padding: 1.8rem 1.8rem 1.6rem;
  }

  .specials-card.theme-fall-fest {
    padding: 2.05rem 2rem 1.8rem;
  }

  .specials-item-name {
    font-size: 1.28rem;
  }

  .about-photo img {
    height: 24rem;
  }
}

@media (min-width: 900px) {
  .header-menu-btn,
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: block;
    background: transparent;
    border: 0;
    padding: 0;
  }

  .site-nav ul {
    display: flex;
    align-items: center;
    gap: 0.15rem 1.35rem;
    padding: 0;
  }

  .site-nav a {
    padding: 0.35rem 0;
    border: 0;
    font-size: 0.82rem;
  }

  .site-nav a[aria-current="page"] {
    box-shadow: none;
    padding-left: 0;
    border-bottom: 2px solid var(--gold);
  }

  .hero-stage {
    gap: 2.9rem;
    padding: 0.7rem 0 0.85rem;
  }

  .rhythm-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .menu-cards {
    grid-template-columns: repeat(4, 1fr);
  }

  .hiring .wrap {
    grid-template-columns: 1.4fr auto;
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .photo-card img {
    height: 15rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .nav-toggle-bars,
  .nav-toggle-bars::before,
  .nav-toggle-bars::after {
    transition: none;
  }
}


[hidden] {
  display: none !important;
}

.specials-card[aria-busy="true"] .specials-meta,
.specials-card[aria-busy="true"] .price-pill,
.specials-card[aria-busy="true"] .specials-note,
.specials-card[aria-busy="true"] .specials-items,
.specials-card[aria-busy="true"] [data-field="through"] {
  display: none;
}

.nav-open {
  overflow: hidden;
}

.specials-stack [data-panel] {
  display: none;
}

.specials-stack [data-panel].is-on,
#home-fall-fest:target {
  display: block;
}

body:has(#home-fall-fest:target) .specials-stack [data-panel="smoking-thursday"] {
  display: none;
}

body:has(#home-fall-fest:target) .specials-band,
body.is-fall-fest .specials-band,
.specials-band.is-fall-fest {
  background: transparent;
  padding-bottom: 0;
}

.construction-card {
  border: 1px solid var(--gold);
  background:
    linear-gradient(180deg, rgba(196, 160, 90, 0.1), transparent 3rem),
    var(--paper);
}

.construction-card p {
  margin: 0.7rem 0 0;
  max-width: 42rem;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.55;
}

.construction-card ol {
  margin: 0.85rem 0 0;
  padding: 0 0 0 1.15rem;
  max-width: 42rem;
  color: var(--ink);
}

.construction-card li {
  margin: 0.35rem 0;
}

.construction-card .muted {
  margin-top: 0.9rem;
}

.construction-band {
  background:
    radial-gradient(900px 240px at 20% 0%, rgba(196, 160, 90, 0.16), transparent 55%),
    var(--burgundy-deep);
  color: var(--cream);
  padding: 2.2rem 0 2.6rem;
}

.construction-grid {
  display: grid;
  gap: 1.2rem;
}

.construction-map {
  display: grid;
  gap: 0.75rem;
}

.construction-map iframe {
  width: 100%;
  height: 280px;
  border: 1px solid var(--gold);
  background: var(--paper);
}

.construction-map .btn {
  justify-self: start;
}

.construction-copy h2 {
  color: var(--gold-lite);
}

.construction-copy p {
  margin: 0.7rem 0 0;
  color: rgba(243, 234, 216, 0.88);
  max-width: 38rem;
}

.construction-copy ol {
  margin: 1rem 0 0;
  padding: 0 0 0 1.2rem;
  color: var(--cream);
}

.construction-copy li {
  margin: 0.45rem 0;
  padding-left: 0.2rem;
}

.construction-copy .muted {
  color: rgba(243, 234, 216, 0.7);
}

@media (min-width: 880px) {
  .construction-grid {
    grid-template-columns: 1.15fr 0.95fr;
    align-items: start;
    gap: 1.6rem;
  }

  .construction-map iframe {
    height: 360px;
  }
}
