:root {
  --white: #FFFFFF;
  --shell: #EDE4CF;
  --shell-tint: #F7F2E7;
  --green: #33604A;
  --green-deep: #1C3527;
  --green-hover: #2A5040;
  --green-wash: #F2F6F3;
  --gold: #C9962E;
  --gold-light: #E8C879;
  --gold-ink: #8A6518;
  --ink: #1B211C;
  --ink-soft: #39413A;
  --muted: #5C665A;
  --line: #DED7C6;
  --line-soft: #EAE4D6;
  --line-green: rgba(28, 53, 39, 0.14);
  --open: #2F6B34;

  --font-display: "Oswald", "Arial Narrow", "Helvetica Neue Condensed", "Liberation Sans Narrow", sans-serif;
  --font-body: "Bitter", Georgia, "Times New Roman", serif;

  --wrap: 1140px;
  --gutter: clamp(22px, 5vw, 48px);
  --section: clamp(58px, 5.6vw, 96px);

  --s1: 4px;
  --s2: 8px;
  --s3: 12px;
  --s4: 16px;
  --s5: 24px;
  --s6: 32px;
  --s7: 48px;
  --s8: 64px;
  --s9: 96px;

  --shadow-sm: 0 1px 2px rgba(27, 33, 28, 0.05), 0 4px 12px -8px rgba(27, 33, 28, 0.14);
  --shadow-md: 0 1px 2px rgba(27, 33, 28, 0.06), 0 12px 28px -16px rgba(27, 33, 28, 0.22);

  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --nav-h: 54px;

  --sign-ink: #F4EFE2;
  --paper: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scrollbar-color: var(--green) var(--shell-tint);
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  margin: 0;
  font-weight: 600;
  line-height: 1.08;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }
ul, ol { margin: 0; }

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

a { color: inherit; }

a:not(.btn):not(.nav__link):not(.plain) {
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: var(--gold);
  transition: text-decoration-color 160ms ease;
}
a:not(.btn):not(.nav__link):not(.plain):hover { text-decoration-color: var(--green); }

::selection { background: var(--green); color: var(--white); }

input, textarea, button, select { font: inherit; accent-color: var(--green); caret-color: var(--green); }

:focus-visible {
  outline: 2px solid var(--green-deep);
  outline-offset: 3px;
  border-radius: 2px;
}

.on-dark :focus-visible, .masthead :focus-visible, .footer :focus-visible, .hero__inner :focus-visible {
  outline-color: var(--gold-light);
}

::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: var(--shell-tint); }
::-webkit-scrollbar-thumb { background: var(--green); border: 3px solid var(--shell-tint); border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: var(--green-deep); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--green-deep);
  color: var(--white);
  padding: 12px 18px;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
}
.skip-link:focus { left: 12px; top: 12px; }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section); }
.section--shell { background: var(--shell); }
.section--tint { background: var(--shell-tint); }
.section--green {
  background-color: var(--green);
  background-image: var(--paper);
  color: var(--white);
}

.section-head {
  display: flex;
  align-items: baseline;
  gap: clamp(14px, 3vw, 24px);
  margin-bottom: clamp(22px, 3vw, 36px);
}
.section-head:has(+ .section-note) { margin-bottom: clamp(10px, 1.4vw, 14px); }
.section-head h2 {
  font-size: clamp(26px, 3.8vw, 42px);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green-deep);
  max-inline-size: 22ch;
}
.section-head__rule {
  flex: 1;
  height: 0;
  border-top: 2px solid var(--gold);
  transform: translateY(-0.35em);
  min-width: 24px;
}
.section--green .section-head h2 { color: var(--white); }
.section--green .section-head__rule { border-top-color: var(--gold-light); }

.section-note {
  margin: 0 0 clamp(24px, 3.2vw, 40px);
  color: var(--muted);
  font-size: 15.5px;
  max-inline-size: 58ch;
}

.lead {
  font-size: clamp(17px, 1.9vw, 20px);
  line-height: 1.7;
  color: var(--ink-soft);
  max-inline-size: 52ch;
}

.storylead {
  font-size: clamp(23px, 3.4vw, 40px);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--green-deep);
  max-inline-size: 30ch;
  margin-bottom: clamp(22px, 3vw, 34px);
}

.lede { max-width: 740px; margin-inline: auto; }
.prose { max-inline-size: 54ch; }
.prose p { margin: 0 0 var(--s5); }
.prose p:last-child { margin-bottom: 0; }

.label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-ink);
}

.leader {
  flex: 1 1 16px;
  min-width: 12px;
  border-bottom: 1px dotted var(--line);
  transform: translateY(-0.3em);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  min-height: 48px;
  padding: 12px 26px;
  font-family: var(--font-display);
  font-size: clamp(13.5px, 1.5vw, 15px);
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid var(--green-deep);
  background: var(--green);
  color: var(--white);
  box-shadow: var(--shadow-sm);
  transition: background 180ms ease, transform 140ms var(--ease-out), box-shadow 180ms ease;
}
.btn:active { transform: scale(0.975); }
.btn .ico { width: 18px; height: 18px; flex: none; }

.btn--gold { background: var(--gold); color: var(--ink); border-color: #9C7423; }
.btn--ghost { background: transparent; color: var(--green-deep); border-color: var(--green); box-shadow: none; }
.btn--onphoto { background: var(--white); color: var(--green-deep); border-color: var(--white); }
.btn--quiet { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, 0.55); box-shadow: none; }

@media (hover: hover) and (pointer: fine) {
  .btn:hover { background: var(--green-hover); }
  .btn--gold:hover { background: #B9851F; }
  .btn--ghost:hover { background: var(--green); color: var(--white); }
  .btn--onphoto:hover { background: var(--shell); border-color: var(--shell); }
  .btn--quiet:hover { background: rgba(255, 255, 255, 0.14); border-color: var(--white); }
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s3) var(--s4);
  align-items: center;
}

.masthead {
  background-color: var(--green-deep);
  background-image:
    radial-gradient(120% 130% at 50% -10%, rgba(255, 240, 200, 0.11), rgba(0, 0, 0, 0) 62%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.20), rgba(0, 0, 0, 0)),
    var(--paper);
  color: var(--white);
  text-align: center;
  padding: clamp(30px, 5.2vw, 60px) var(--gutter) 0;
  border-bottom: 4px solid var(--gold);
}
.masthead__wordmark {
  font-family: var(--font-display);
  font-size: clamp(42px, 10.5vw, 104px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--sign-ink);
  text-shadow: 2px 3px 0 rgba(0, 0, 0, 0.22);
}
.masthead__wordmark a { color: inherit; text-decoration: none; }
.masthead__locality {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2.5vw, 18px);
  margin-top: clamp(14px, 2vw, 22px);
  font-family: var(--font-display);
  font-size: clamp(10.5px, 1.5vw, 13px);
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.masthead__locality span {
  width: clamp(18px, 5vw, 46px);
  height: 1px;
  background: var(--gold);
  flex: none;
}

.infoband {
  margin-top: clamp(20px, 3vw, 30px);
  border-top: 1px solid rgba(232, 200, 121, 0.28);
}
.infoband__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2px clamp(14px, 3vw, 28px);
  padding-block: 11px;
  font-size: clamp(13px, 3.3vw, 14.5px);
}
.infoband b { font-family: var(--font-display); font-weight: 600; letter-spacing: 0.04em; }
.infoband .sep { color: var(--gold); }
.infoband .cash {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.infoband a { display: inline-block; padding-block: 4px; color: var(--white); font-family: var(--font-display); font-weight: 500; letter-spacing: 0.04em; }

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.nav::after {
  content: "";
  position: absolute;
  inset: 100% 0 auto 0;
  height: 12px;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(to bottom, rgba(27, 33, 28, 0.11), rgba(27, 33, 28, 0));
  transition: opacity 180ms var(--ease-out);
}
.nav.is-stuck::after { opacity: 1; }
.nav__inner {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: max(calc(var(--gutter) - 14px), 6px);
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.nav__link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--nav-h);
  padding: 0 clamp(12px, 1.8vw, 20px);
  font-family: var(--font-display);
  font-size: clamp(11.5px, 1.6vw, 13.5px);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--green-deep);
  white-space: nowrap;
  box-shadow: inset 0 -3px 0 transparent;
  transition: box-shadow 160ms ease, color 160ms ease;
}
.nav__link[aria-current="page"] {
  font-weight: 600;
  color: var(--green);
  box-shadow: inset 0 -3px 0 var(--green);
}
.nav__link--call { color: var(--gold-ink); font-weight: 600; }
@media (hover: hover) and (pointer: fine) {
  .nav__link:hover { box-shadow: inset 0 -3px 0 var(--gold); }
}

.hero { position: relative; background: var(--green-deep); }
.hero__media {
  position: relative;
  display: grid;
  align-content: end;
  width: 100%;
  min-height: min(56vw, 62vh);
  overflow: hidden;
}
.hero__media > picture, .hero__media > img { position: absolute; inset: 0; display: block; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 44%; }
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 24, 17, 0.93) 0%, rgba(12, 24, 17, 0.8) 20%, rgba(12, 24, 17, 0.52) 42%, rgba(12, 24, 17, 0.16) 68%, rgba(12, 24, 17, 0) 100%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  padding: clamp(40px, 6vw, 88px) var(--gutter) clamp(24px, 3vw, 46px);
}
.hero__box {
  max-width: var(--wrap);
  margin-inline: auto;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(12px, 1.8vw, 20px);
}
.hero__tagline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 5.4vw, 62px);
  line-height: 1.02;
  letter-spacing: 0.01em;
  max-inline-size: 20ch;
  margin: 0;
}
.hero__sub {
  margin: 0;
  font-size: clamp(15px, 1.8vw, 19px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  max-inline-size: 44ch;
}

.status {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3px 9px;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.status__dot { width: 9px; height: 9px; border-radius: 50%; flex: none; background: currentColor; }
.status__sub { font-weight: 400; letter-spacing: 0.06em; opacity: 0.82; }
.status--onphoto {
  padding: 8px 15px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(14, 26, 19, 0.45);
  backdrop-filter: blur(6px);
  color: var(--white);
}
.status--onphoto .status__dot { background: #6DD07A; }
.status--onphoto.is-closed .status__dot { background: var(--gold-light); }
.status--inline.is-open { color: var(--open); }
.status--inline.is-closed { color: var(--muted); }

.specials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
}
.specials__board { min-width: 0; }
.specials__cols { columns: 1; column-gap: clamp(30px, 4vw, 56px); }
.menu-group {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  margin: 0 0 clamp(26px, 3vw, 36px);
  scroll-margin-top: var(--sticky-offset, 120px);
}
.menu-group:last-child { margin-bottom: 0; }
.menu-group__title {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 var(--s2);
}
.menu-group__rule { border-top: 2px solid var(--line); margin-bottom: var(--s4); }
.menu-group__note {
  font-size: 13.5px;
  font-style: italic;
  color: var(--muted);
  margin: calc(var(--s2) * -1) 0 var(--s4);
  line-height: 1.5;
  max-inline-size: 52ch;
}

.item-list { margin: 0; padding: 0; list-style: none; }
.item { margin-bottom: var(--s4); }
.item:last-child { margin-bottom: 0; }
.item__row { display: flex; align-items: baseline; gap: var(--s2); }
.item__name { font-size: 16.5px; line-height: 1.35; min-width: 0; overflow-wrap: break-word; }
.item__price {
  flex: 0 0 auto;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16px;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  color: var(--green-deep);
}
.item__price .cur { color: var(--muted); font-size: 0.82em; margin-right: 1px; }
.item__sizes { display: flex; flex-wrap: wrap; gap: 3px 14px; }

.item--stacked .item__row { flex-wrap: wrap; }
.item--stacked .leader { display: none; }
.item--stacked .item__price { flex: 1 1 100%; margin-top: 5px; white-space: normal; }
.item--stacked .item__sizes .lab { color: var(--muted); font-weight: 400; margin-right: 3px; }
.item__desc {
  margin: 3px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
  max-inline-size: 46ch;
}
.item--addon { padding-left: var(--s4); }
.item--addon .item__name, .item--addon .item__price { font-size: 13.5px; color: var(--muted); }
.item--addon .item__price { font-weight: 400; }

.specials__aside { display: grid; gap: var(--s5); }
.specials__photo { margin: 0; }
.specials__photo .shot { border: 1px solid var(--line); background: var(--green-wash); }
.specials__photo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: transform 300ms var(--ease-out);
}
.specials__photo figcaption {
  margin-top: var(--s3);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.specials__cta {
  border-top: 2px solid var(--gold);
  padding-top: var(--s5);
  display: grid;
  gap: var(--s4);
  justify-items: start;
}
.specials__cta p { margin: 0; font-size: 15.5px; color: var(--muted); max-inline-size: 40ch; }

.visitgrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid var(--line);
  background: var(--white);
}
.vcard { padding: clamp(22px, 3vw, 32px); border-top: 1px solid var(--line); }
.vcard:first-child { border-top: 0; }
.vcard__title {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-ink);
  margin: 0 0 var(--s4);
  display: flex;
  align-items: center;
  gap: var(--s2);
}
.vcard__title .ico { width: 17px; height: 17px; color: var(--green); flex: none; }
.hours-row { display: flex; align-items: baseline; gap: var(--s2); margin-bottom: 10px; }
.hours-row:last-child { margin-bottom: 0; }
.hours-row .d { font-family: var(--font-display); font-weight: 500; letter-spacing: 0.05em; font-size: 15.5px; }
.hours-row .t { font-variant-numeric: tabular-nums; font-size: 15.5px; flex: 0 0 auto; }
.hours-row .t--closed { color: var(--muted); font-style: italic; }
.hours-row.is-today .d, .hours-row.is-today .t { font-weight: 700; color: var(--green-deep); }
.vcard .status { margin-bottom: var(--s4); }
.vcard__big {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 3.2vw, 32px);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--green-deep);
}
.vcard__list { margin: var(--s4) 0 0; padding: 0; list-style: none; display: grid; gap: 7px; }
.vcard__list li { font-size: 15.5px; color: var(--ink-soft); padding-left: 18px; position: relative; }
.vcard__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  background: var(--gold);
}
.vcard__phone {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(25px, 3.4vw, 34px);
  letter-spacing: 0.01em;
  color: var(--green-deep);
  text-decoration: none;
  display: inline-block;
}
.vcard__addr { margin: var(--s3) 0 0; font-size: 15.5px; line-height: 1.55; color: var(--ink-soft); }
.vcard .btn-row { margin-top: var(--s5); }

.story__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.story__photo { margin: 0; }
.story__photo .shot { border: 1px solid var(--line); background: var(--green-wash); }
.story__photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  transition: transform 300ms var(--ease-out);
}
.story__body h2 {
  font-size: clamp(26px, 3.8vw, 42px);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: var(--s5);
  max-inline-size: 24ch;
}
.story__body .prose { margin-bottom: var(--s6); }

.findus__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 3vw, 36px);
  align-items: stretch;
}
.findus__grid--spaced { margin-top: clamp(24px, 3vw, 36px); }
.findus__photo { margin: 0; }
.findus__photo .shot { height: 100%; border: 1px solid var(--line); background: var(--green-wash); }
.findus__photo img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 300ms var(--ease-out);
}
.map { border: 1px solid var(--line); background: var(--shell-tint); min-height: 300px; }
.map iframe { width: 100%; height: 100%; min-height: 300px; border: 0; filter: saturate(0.9); }

.yelp {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  min-height: 48px;
  padding: 10px 18px;
  text-decoration: none;
  border: 1px solid var(--line);
  background: var(--white);
  transition: background 180ms ease, border-color 180ms ease, transform 140ms var(--ease-out);
}
.yelp:active { transform: scale(0.975); }
.yelp__score {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: var(--green-deep);
  font-variant-numeric: tabular-nums;
}
.yelp .ico { width: 17px; height: 17px; color: var(--gold); }
.yelp__label {
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (hover: hover) and (pointer: fine) {
  .yelp:hover { background: var(--shell-tint); border-color: var(--gold); }
  .gallery figure:hover .shot img,
  .gallery figure:focus-within .shot img { transform: scale(1.045); }
  .splitgrid__photo:hover .shot img,
  .story__photo:hover .shot img,
  .specials__photo:hover .shot img,
  .findus__photo:hover .shot img { transform: scale(1.03); }
  .gallery figure:hover figcaption { color: var(--green-deep); }
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: clamp(14px, 1.8vw, 24px);
}
.gallery figure { margin: 0; }
.shot { display: block; overflow: hidden; }
.gallery .shot, .splitgrid__photo .shot {
  border: 1px solid var(--line);
  background: var(--green-wash);
}
.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 300ms var(--ease-out);
}
.gallery figcaption {
  margin-top: var(--s2);
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--muted);
}

.gallery-hint { display: none; }
.gallery--food { grid-template-columns: 1fr; }
.gallery--food img { aspect-ratio: 1 / 1; }
.gallery--food .shot { border-color: rgba(28, 53, 39, 0.14); }
.gallery--food figcaption {
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.pagehero__bar {
  background-color: var(--green-deep);
  background-image:
    radial-gradient(120% 150% at 30% -20%, rgba(255, 240, 200, 0.10), rgba(0, 0, 0, 0) 64%),
    var(--paper);
  color: var(--white);
  padding-block: clamp(24px, 3.4vw, 44px);
  border-bottom: 4px solid var(--gold);
}
.pagehero__barinner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s4);
  align-items: end;
}
.pagehero h1 {
  font-size: clamp(31px, 5.2vw, 56px);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 0.98;
  color: var(--sign-ink);
  text-shadow: 2px 3px 0 rgba(0, 0, 0, 0.22);
}
.pagehero__lead {
  font-size: clamp(15.5px, 1.8vw, 18.5px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  max-inline-size: 54ch;
  padding-bottom: 4px;
}
.pagehero__figure {
  position: relative;
  margin: 0;
  height: min(34vw, 44vh);
  min-height: 230px;
  overflow: hidden;
}
.pagehero__figure img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 54%;
}

.splitgrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 52px);
  align-items: center;
}
.splitgrid__photo { margin: 0; }
.splitgrid__photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  transition: transform 300ms var(--ease-out);
}

.factlist {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s6) clamp(28px, 3.5vw, 48px);
}
.factlist li {
  position: relative;
  padding-left: 38px;
  font-size: 15.5px;
  line-height: 1.62;
  color: var(--ink-soft);
  max-inline-size: 46ch;
}
.factlist b {
  display: block;
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 5px;
}
.factlist .ico {
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  color: var(--green);
}

.timeline { list-style: none; margin: 0; padding: 0; position: relative; }
.timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 12px;
  bottom: 18px;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold) 0%, var(--gold) 40%, rgba(201, 150, 46, 0.22) 100%);
}
.timeline__item {
  position: relative;
  padding: 0 0 clamp(26px, 3vw, 38px) clamp(34px, 4vw, 46px);
}
.timeline__item:last-child { padding-bottom: 0; }
.timeline__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 15px;
  height: 15px;
  box-sizing: border-box;
  border: 2px solid var(--gold);
  background: var(--white);
  transform: rotate(45deg);
}
.timeline__item--now::before { background: var(--gold); }
.timeline__era {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-ink);
  line-height: 1.2;
}
.timeline__name {
  font-family: var(--font-display);
  font-size: clamp(21px, 2.7vw, 30px);
  font-weight: 600;
  letter-spacing: 0.015em;
  color: var(--green-deep);
  margin: 5px 0 0;
  line-height: 1.1;
}
.timeline__item--now .timeline__name { color: var(--green); }
.timeline__what {
  margin: var(--s2) 0 0;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-inline-size: 52ch;
}



.closing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(30px, 4vw, 60px);
  align-items: start;
}
.closing h2 {
  font-size: clamp(27px, 3.8vw, 44px);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: var(--s4);
  max-inline-size: 20ch;
}
.closing p {
  max-inline-size: 46ch;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(16px, 1.8vw, 19px);
}
.closing .btn-row { margin-top: clamp(24px, 3vw, 34px); }
.closing__facts {
  margin: 0;
  display: grid;
  gap: var(--s4);
  padding-left: clamp(18px, 2.2vw, 30px);
  border-left: 2px solid var(--gold);
}
.closing__facts > div { display: grid; gap: 3px; }
.closing__facts dt {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.closing__facts dd { margin: 0; font-size: 15.5px; line-height: 1.5; }
.closing__facts a { display: inline-block; padding-block: 4px; color: var(--white); }

.menupage { padding-block: clamp(28px, 4vw, 52px) var(--section); }
.menupage__title {
  font-size: clamp(28px, 4.6vw, 50px);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--green-deep);
  text-align: center;
  margin-bottom: clamp(18px, 2.4vw, 28px);
}
.menupage__foot {
  margin-top: clamp(40px, 5vw, 68px);
  padding-top: clamp(24px, 3vw, 34px);
  border-top: 1px solid var(--line);
  text-align: center;
}
.menupage__foot p { margin: 0 auto; color: var(--muted); font-size: 15.5px; max-inline-size: 44ch; }
.menupage__foot .btn-row { justify-content: center; margin-top: var(--s5); }

.allergy {
  max-width: 780px;
  margin: 0 auto clamp(28px, 4vw, 44px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: 12px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.jump {
  position: sticky;
  top: var(--nav-h);
  z-index: 30;
  background: var(--shell-tint);
  border-bottom: 1px solid var(--line);
}
.jump__inner {
  max-width: var(--wrap);
  margin-inline: auto;
  padding: 9px var(--gutter);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2) var(--s4);
  align-items: center;
}
.jump__group { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.jump__head {
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--green);
  text-decoration: none;
  margin-right: var(--s1);
  padding-block: 6px;
}
.jump__chip {
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  background: var(--white);
  padding: 6px 11px;
  white-space: nowrap;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}
.jump__chip.is-active { background: var(--green); color: var(--white); border-color: var(--green); }
@media (hover: hover) and (pointer: fine) {
  .jump__chip:hover { border-color: var(--green); color: var(--green); }
  .jump__chip.is-active:hover { color: var(--white); }
}

.course { margin-bottom: clamp(36px, 5vw, 64px); }
.course:last-child { margin-bottom: 0; }
.course__band {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 26px);
  margin-bottom: clamp(24px, 3.4vw, 40px);
  scroll-margin-top: var(--sticky-offset, 130px);
}
.course__band h2 {
  font-size: clamp(30px, 5.4vw, 56px);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--green-deep);
}
.course__band .ico { width: clamp(30px, 4vw, 44px); height: clamp(30px, 4vw, 44px); color: var(--gold); flex: none; }
.course__band .rule { flex: 1 1 0; height: 0; border-top: 2px solid var(--line); min-width: 0; }
.course__cols { columns: 1; column-gap: clamp(30px, 4vw, 56px); }

.notfound { max-width: 620px; margin-inline: auto; text-align: center; }
.notfound__big {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(64px, 16vw, 140px);
  line-height: 0.86;
  letter-spacing: 0.02em;
  color: var(--green);
}
.notfound h1 {
  font-size: clamp(22px, 3.4vw, 34px);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin: var(--s5) 0 var(--s4);
}
.notfound p { color: var(--ink-soft); margin: 0 auto var(--s6); max-inline-size: 46ch; }
.notfound .btn-row { justify-content: center; }
.notfound__hours {
  margin-top: var(--s7);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer { background: var(--ink); color: #BFB7A6; padding: clamp(40px, 5vw, 64px) var(--gutter) clamp(28px, 3.4vw, 40px); }
.footer__inner { max-width: var(--wrap); margin-inline: auto; }
.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 48px);
  padding-bottom: clamp(28px, 3.4vw, 40px);
  border-bottom: 1px solid rgba(232, 200, 121, 0.2);
}
.footer h2 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0 0 var(--s4);
}
.footer__brand p { margin: 0; font-size: 15px; line-height: 1.6; max-inline-size: 34ch; }
.footer__wordmark {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  display: inline-block;
  margin-bottom: var(--s3);
}
.footer__list { margin: 0; padding: 0; list-style: none; display: grid; gap: 2px; }
.footer__list a { display: inline-block; padding-block: 6px; font-size: 15px; color: #D8D0BE; }
.footer__notes { display: grid; gap: var(--s3); }
.footer__notes p { margin: 0; font-size: 12.5px; line-height: 1.55; }
.footer__base {
  padding-top: clamp(20px, 2.4vw, 28px);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2) var(--s5);
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8E8677;
}
.footer a { color: var(--gold-light); }
.footer__base a, .notfound__hours a { display: inline-block; padding-block: 5px; }
.footer__base span span, .notfound__hours span { white-space: nowrap; }

.load-error { text-align: center; font-style: italic; color: var(--green); padding: var(--s7) var(--s4); margin: 0; }

.reveal { opacity: 0; transform: translateY(8px); }
.reveal.reveal-on {
  opacity: 1;
  transform: none;
  transition: opacity 300ms var(--ease-out), transform 300ms var(--ease-out);
  transition-delay: var(--d, 0ms);
}

@media (min-width: 420px) {
  .gallery--food { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 760px) and (max-height: 900px) {
  .masthead { padding-top: clamp(18px, 2.2vw, 30px); }
  .masthead__wordmark { font-size: clamp(38px, 5.4vw, 70px); }
  .masthead__locality { margin-top: 10px; }
  .infoband { margin-top: 14px; }
  .infoband__inner { padding-block: 9px; }
}

@media (min-width: 560px) {
  .timeline__row { grid-template-columns: 150px 1fr; }
}

@media (min-width: 760px) {
  .specials__cols { columns: 2; }
  .course__cols { columns: 2; }
  .findus__grid { grid-template-columns: 1fr 1.15fr; }
  .factlist { grid-template-columns: 1fr 1fr; }
  .footer__top { grid-template-columns: 1.4fr 0.8fr 1.3fr; }
  .timeline__row { grid-template-columns: 190px 1fr; }
}

@media (min-width: 800px) {
  .visitgrid { grid-template-columns: repeat(3, 1fr); }
  .vcard { border-top: 0; border-left: 1px solid var(--line); }
  .vcard:first-child { border-left: 0; }
}

@media (min-width: 820px) {
  .pagehero__barinner { grid-template-columns: auto 1fr; gap: clamp(26px, 4vw, 60px); }
  .closing__grid { grid-template-columns: 1fr 0.7fr; }
}

@media (min-width: 900px) {
  .story__grid { grid-template-columns: 0.78fr 1fr; }
  .splitgrid { grid-template-columns: 1fr 0.58fr; }
  .timeline__item { display: grid; grid-template-columns: 300px 1fr; column-gap: clamp(24px, 3vw, 48px); align-items: start; padding-bottom: clamp(24px, 2.6vw, 34px); }
  .timeline__what { margin-top: 0; padding-top: 21px; max-inline-size: 56ch; }
}

@media (min-width: 1000px) {
  .specials__grid { grid-template-columns: 1fr 0.42fr; }
  .course__cols { columns: 3; }
  .gallery--food { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 759px) {
  .hero__media { min-height: min(112vw, 70vh); }
  .hero__inner { padding-top: clamp(56px, 22vw, 130px); }
  .hero__scrim {
    background: linear-gradient(to top, rgba(12, 24, 17, 0.94) 0%, rgba(12, 24, 17, 0.84) 30%, rgba(12, 24, 17, 0.5) 58%, rgba(12, 24, 17, 0.12) 82%, rgba(12, 24, 17, 0) 100%);
  }
  .pagehero__media { min-height: min(84vw, 48vh); }
  .findus__photo img { aspect-ratio: 3 / 2; min-height: 0; }

  .gallery {
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 76%;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--gutter);
    margin-inline: calc(var(--gutter) * -1);
    padding: 0 var(--gutter) 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
  }
  .gallery::-webkit-scrollbar { display: none; }
  .gallery > figure { scroll-snap-align: start; }
  .gallery img { aspect-ratio: 4 / 3; }
  .gallery--food { grid-auto-columns: 66%; }
  .gallery--food img { aspect-ratio: 1 / 1; }
  .gallery-hint {
    display: flex;
    align-items: center;
    gap: var(--s2);
    margin-top: var(--s3);
    font-family: var(--font-display);
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .gallery-hint .ico { width: 15px; height: 15px; flex: none; }

  .nav__inner { overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; }
  .nav__inner::-webkit-scrollbar { display: none; }
  .nav__link { flex: 0 0 auto; }

  .jump__inner { flex-direction: column; flex-wrap: nowrap; align-items: stretch; gap: var(--s2); padding-inline: 0; }
  .jump__group {
    flex-wrap: nowrap;
    align-items: stretch;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 2px 40px 2px 0;
  }
  .jump__group::-webkit-scrollbar { display: none; }
  .jump__head {
    position: sticky;
    left: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    background: var(--shell-tint);
    padding: 4px 14px;
    margin-right: 0;
    box-shadow: 6px 0 0 0 var(--shell-tint), 12px 0 10px -7px rgba(27, 33, 28, 0.32);
    white-space: nowrap;
  }
  .jump__chip { flex: 0 0 auto; scroll-snap-align: start; }
  .jump::after {
    content: "";
    position: absolute;
    inset: 0 0 0 auto;
    width: 38px;
    background: linear-gradient(to right, rgba(247, 242, 231, 0), var(--shell-tint));
    pointer-events: none;
  }
}

.course__band .ico { width: clamp(30px, 4vw, 44px); height: clamp(30px, 4vw, 44px); }

@media (max-width: 899px) {
  .story__grid { display: flex; flex-direction: column; align-items: stretch; }
  .story__photo { order: 2; }
  .story__photo img { aspect-ratio: 3 / 2; }
  .splitgrid__photo img { aspect-ratio: 3 / 2; }
}

@media (max-width: 559px) {
  .hero__box .btn { padding: 11px 15px; font-size: 12.5px; letter-spacing: 0.07em; }
  .hero__tagline { font-size: clamp(27px, 8.2vw, 40px); }
  .course__band { gap: 10px; }
  .course__band .rule { display: none; }
  .course__band .ico { width: 26px; height: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .nav, .jump, .infoband, .hero, .pagehero, .skip-link, .map, .btn, .btn-row, .specials__aside, .footer__top { display: none !important; }
  html, body { background: #fff; color: #000; font-size: 11pt; }
  .masthead { background: #fff; color: #000; padding: 0 0 12pt; border-bottom: 1pt solid #000; }
  .masthead__wordmark { font-size: 30pt; }
  .masthead__locality { color: #000; }
  .masthead__locality span { background: #000; }
  .section, .menupage { padding-block: 12pt; }
  .course__cols, .specials__cols { columns: 2; }
  .course { break-inside: auto; }
  .menu-group { break-inside: avoid; }
  .course__band h2 { font-size: 18pt; }
  .item__price, .menu-group__title { color: #000; }
  .footer { background: #fff; color: #000; padding: 0; }
  a { text-decoration: none; }
}
