:root {
  --charcoal: #0d0b09;
  --charcoal-2: #17120f;
  --smoke: #f5eee1;
  --smoke-muted: #d7c7ae;
  --paper: #fbf3e5;
  --ember: #a21917;
  --ember-bright: #d53926;
  --molasses: #3a1712;
  --mustard: #d7a742;
  --sage: #5b6245;
  --ash: rgba(255, 248, 235, .72);
  --line: rgba(255, 248, 235, .16);
  --shadow: 0 26px 80px rgba(0, 0, 0, .36);
  --display: "Bebas Neue", Impact, sans-serif;
  --serif: "Libre Baskerville", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--charcoal);
  color: var(--smoke);
  font-family: var(--sans);
  line-height: 1.6;
}

section[id] {
  scroll-margin-top: 92px;
}

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

a {
  color: inherit;
}

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

.skip-link:focus {
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  padding: 12px 18px;
  background: var(--paper);
  color: var(--charcoal);
  z-index: 20;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: linear-gradient(180deg, rgba(13, 11, 9, .9), rgba(13, 11, 9, .58) 76%, transparent);
  transition: background .25s ease, border-color .25s ease;
}

.site-header.is-scrolled {
  background: rgba(13, 11, 9, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.brand-mark img {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 248, 235, .25);
}

.brand-mark strong {
  display: block;
  font-family: var(--display);
  font-size: 28px;
  line-height: .9;
  letter-spacing: 0;
}

.brand-mark small {
  display: block;
  color: var(--smoke-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 34px);
}

.site-nav a {
  color: var(--ash);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, .34);
  color: var(--smoke);
  padding: 10px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 140px clamp(20px, 5vw, 72px) 56px;
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.08);
}

.hero-overlay {
  background:
    radial-gradient(circle at 78% 18%, rgba(215, 167, 66, .18), transparent 29%),
    linear-gradient(90deg, rgba(13, 11, 9, .95) 0%, rgba(13, 11, 9, .76) 42%, rgba(13, 11, 9, .42) 100%),
    linear-gradient(180deg, rgba(13, 11, 9, .3), rgba(13, 11, 9, .86));
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 930px;
}

.eyebrow,
.section-kicker,
.dish-label {
  margin: 0 0 16px;
  color: var(--mustard);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 910px;
  margin-bottom: 24px;
  font-family: var(--display);
  font-size: clamp(46px, 7vw, 86px);
  line-height: .92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 680px;
  color: var(--ash);
  font-size: clamp(18px, 2vw, 23px);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 20px;
  border: 1px solid transparent;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
}

.button-primary {
  background: var(--ember);
  box-shadow: 0 14px 36px rgba(162, 25, 23, .28);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--ember-bright);
}

.button-secondary {
  border-color: rgba(255, 248, 235, .3);
  background: rgba(255, 248, 235, .07);
}

.hero-badge {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: 54px;
  z-index: 1;
  width: min(220px, 38vw);
  padding: 22px;
  border: 1px solid rgba(255, 248, 235, .24);
  background: rgba(13, 11, 9, .62);
  backdrop-filter: blur(12px);
}

.hero-badge span {
  color: var(--smoke-muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.hero-badge strong {
  display: block;
  margin-top: 8px;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.2;
}

.intro-band,
.menu-section,
.gallery-section {
  padding: clamp(58px, 8vw, 110px) clamp(20px, 5vw, 72px);
}

.marquee-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-bottom: clamp(34px, 5vw, 70px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.marquee-line span {
  padding: 18px 12px;
  color: var(--smoke-muted);
  font-family: var(--display);
  font-size: clamp(26px, 4vw, 54px);
  line-height: .9;
  text-align: center;
  text-transform: uppercase;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: clamp(30px, 7vw, 100px);
  align-items: end;
}

.intro-grid h2,
.section-heading h2,
.legacy-copy h2,
.events-copy h2,
.contact-panel h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: 0;
}

.intro-grid p:last-child,
.section-heading p,
.legacy-copy p,
.events-copy p,
.contact-panel p {
  color: var(--smoke-muted);
  font-size: 17px;
}

.legacy-section {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(340px, 1.05fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  padding: clamp(56px, 8vw, 112px) clamp(20px, 5vw, 72px);
  background: var(--paper);
  color: var(--charcoal);
}

.legacy-photo img {
  aspect-ratio: 16 / 9;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow);
}

.legacy-copy .section-kicker {
  color: var(--ember);
}

.legacy-copy .lead {
  color: var(--charcoal);
  font-size: clamp(20px, 2vw, 25px);
  font-family: var(--serif);
}

.legacy-copy p {
  color: #4d4034;
}

.quote-panel {
  margin-top: 32px;
  padding: 24px;
  border-left: 5px solid var(--ember);
  background: #efe0ca;
}

.quote-panel span {
  display: block;
  color: #6a5745;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.quote-panel strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(42px, 7vw, 82px);
  line-height: .9;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--ember);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link.dark {
  color: var(--ember);
}

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

.legacy-stack img:first-child {
  min-height: 0;
  aspect-ratio: 1 / 1;
}

.legacy-stack img:last-child {
  min-height: 250px;
}

.page-hero,
.page-title {
  padding: 150px clamp(20px, 5vw, 72px) clamp(56px, 8vw, 104px);
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: end;
  background: linear-gradient(180deg, #17120f, var(--charcoal));
}

.page-hero img {
  aspect-ratio: 4 / 5;
  height: 100%;
  max-height: 760px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.legacy-page-hero img {
  object-position: center;
}

.page-hero h1,
.page-title h1 {
  max-width: 960px;
  margin-bottom: 22px;
  font-family: var(--display);
  font-size: clamp(46px, 7vw, 86px);
  line-height: .94;
  text-transform: uppercase;
}

.page-hero p:last-child,
.page-title p:last-child {
  max-width: 720px;
  color: var(--smoke-muted);
  font-size: clamp(18px, 2vw, 23px);
}

.page-title {
  background:
    radial-gradient(circle at 80% 20%, rgba(162, 25, 23, .18), transparent 34%),
    linear-gradient(180deg, #17120f, var(--charcoal));
}

.editorial-story {
  display: grid;
  grid-template-columns: minmax(280px, .75fr) minmax(0, 1fr);
  gap: clamp(32px, 7vw, 100px);
  padding: clamp(58px, 8vw, 110px) clamp(20px, 5vw, 72px);
  background: var(--paper);
  color: var(--charcoal);
}

.story-lede .section-kicker {
  color: var(--ember);
}

.story-lede h2,
.story-body blockquote,
.founder-section h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 70px);
  line-height: 1.04;
}

.story-body {
  color: #4d4034;
  font-size: 18px;
}

.story-body .lead {
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 30px);
}

.story-body blockquote {
  margin: 34px 0;
  padding-left: 24px;
  border-left: 5px solid var(--ember);
  color: var(--charcoal);
}

.founder-section {
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(280px, .95fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  padding: clamp(58px, 8vw, 110px) clamp(20px, 5vw, 72px);
  background: #211913;
}

.founder-section img {
  aspect-ratio: 16 / 9;
  height: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.founder-section p:not(.section-kicker) {
  color: var(--smoke-muted);
  font-size: 18px;
}

.menu-page-grid {
  display: grid;
  grid-template-columns: minmax(280px, .7fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: start;
  padding: 0 clamp(20px, 5vw, 72px) clamp(58px, 8vw, 110px);
  background: var(--charcoal);
}

.menu-photo-panel {
  position: sticky;
  top: 112px;
}

.menu-photo-panel img {
  max-height: 760px;
  object-fit: contain;
  background: #c8bfae;
  box-shadow: var(--shadow);
}

.menu-photo-panel .button {
  width: 100%;
  margin-top: 14px;
}

.readable-menu {
  padding: clamp(26px, 4vw, 52px);
  background: var(--paper);
  color: var(--charcoal);
}

.readable-menu h2 {
  margin: 34px 0 18px;
  color: var(--ember);
  font-family: var(--display);
  font-size: clamp(44px, 6vw, 76px);
  line-height: .9;
  text-transform: uppercase;
}

.readable-menu h2:first-child {
  margin-top: 0;
}

.price-list {
  display: grid;
  gap: 1px;
  background: rgba(58, 23, 18, .14);
}

.price-list article {
  padding: 18px 0;
  background: var(--paper);
  border-bottom: 1px solid rgba(58, 23, 18, .16);
}

.price-list h3 {
  margin: 0 0 6px;
  font-size: 18px;
  text-transform: uppercase;
}

.price-list p {
  margin-bottom: 5px;
  color: #584838;
}

.price-list span {
  color: var(--ember);
  font-weight: 900;
}

.price-list.compact {
  grid-template-columns: repeat(2, 1fr);
  column-gap: 24px;
  background: transparent;
}

.gallery-section.standalone {
  padding-top: clamp(18px, 3vw, 36px);
}

.gallery-title {
  padding-top: 104px;
  padding-bottom: clamp(12px, 2vw, 24px);
}

.gallery-title h1 {
  margin-bottom: 0;
  font-size: clamp(42px, 6vw, 66px);
}

.events-section.page-version {
  padding-top: clamp(58px, 8vw, 110px);
}

.contact-section.standalone {
  grid-template-columns: minmax(0, .9fr) minmax(280px, .62fr) minmax(280px, .62fr);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(42px, 7vw, 92px) clamp(20px, 4vw, 52px);
  background: #120e0c;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--smoke-muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255, 248, 235, .06);
  color: var(--smoke);
  font: inherit;
  padding: 13px 14px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--smoke-muted);
  font-size: 14px;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: .68;
}

.section-heading {
  max-width: 850px;
  margin-bottom: clamp(32px, 5vw, 64px);
}

.menu-section {
  background:
    linear-gradient(180deg, rgba(58, 23, 18, .22), transparent 460px),
    var(--charcoal-2);
}

.menu-layout {
  display: grid;
  gap: 32px;
}

.feature-dish {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(0, 1.1fr);
  align-items: stretch;
  background: var(--paper);
  color: var(--charcoal);
  box-shadow: var(--shadow);
}

.feature-dish img {
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.feature-dish div {
  padding: clamp(28px, 5vw, 64px);
}

.feature-dish h3 {
  margin-bottom: 18px;
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 92px);
  line-height: .88;
  text-transform: uppercase;
}

.feature-dish p:last-child {
  max-width: 620px;
  color: #493a30;
  font-size: 18px;
}

.menu-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.menu-column {
  padding: clamp(24px, 3vw, 38px);
  background: #120e0c;
}

.menu-column h3 {
  margin-bottom: 24px;
  color: var(--mustard);
  font-family: var(--display);
  font-size: 42px;
  line-height: .9;
  text-transform: uppercase;
}

.menu-column ul {
  display: grid;
  gap: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.menu-column li {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 248, 235, .12);
}

.menu-column span {
  display: block;
  color: #fff;
  font-weight: 900;
}

.menu-column small {
  display: block;
  margin-top: 5px;
  color: var(--smoke-muted);
  font-size: 14px;
}

.events-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .75fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
  padding: clamp(56px, 8vw, 110px) clamp(20px, 5vw, 72px);
  background: #211913;
}

.event-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 6px;
}

.event-notes span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  color: var(--smoke-muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.events-image img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.gallery-section {
  background: var(--paper);
  color: var(--charcoal);
}

.gallery-section .section-kicker {
  color: var(--ember);
}

.gallery-section .section-heading p {
  color: #584838;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 14px;
}

.gallery-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #111;
}

.gallery-grid .wide {
  grid-column: span 2;
}

.gallery-grid .tall {
  grid-row: span 2;
}

.gallery-grid img {
  height: 100%;
  object-fit: cover;
  transition: none;
  cursor: zoom-in;
}

.gallery-grid figcaption {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 4vw, 48px);
  background: rgba(8, 7, 6, .92);
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  width: auto;
  max-width: 94vw;
  max-height: 86svh;
  object-fit: contain;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .55);
}

.lightbox-video {
  display: none;
  width: min(94vw, 960px);
  max-height: 86svh;
  aspect-ratio: 16 / 9;
  background: #050403;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .55);
}

.lightbox.is-video img {
  display: none;
}

.lightbox.is-video .lightbox-video {
  display: block;
}

.lightbox-close {
  position: absolute;
  top: clamp(14px, 3vw, 28px);
  right: clamp(14px, 3vw, 28px);
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 248, 235, .34);
  border-radius: 50%;
  background: rgba(0, 0, 0, .46);
  color: var(--smoke);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

body.is-lightbox-open {
  overflow: hidden;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(300px, .7fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
}

.contact-panel,
.contact-details {
  padding: clamp(42px, 7vw, 92px) clamp(20px, 5vw, 72px);
  background: var(--charcoal);
}

.contact-details dl {
  display: grid;
  gap: 22px;
  margin: 0;
}

.contact-details div {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.contact-details dt {
  color: var(--mustard);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contact-details dd {
  margin: 6px 0 0;
  color: var(--smoke);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.3;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 30px clamp(20px, 5vw, 72px);
  background: #080706;
  color: var(--smoke-muted);
}

.site-footer div {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  align-items: center;
  column-gap: 14px;
  min-width: 0;
}

.site-footer img {
  grid-row: span 3;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 248, 235, .22);
}

.site-footer p {
  margin: 0;
  color: var(--smoke);
  font-weight: 900;
}

.site-footer span {
  font-size: 13px;
}

.site-footer small {
  display: block;
  color: rgba(215, 199, 174, .72);
  font-size: 12px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-footer a {
  color: var(--smoke-muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(360px, 1.12fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
  min-height: 100svh;
  padding: 140px clamp(20px, 5vw, 72px) clamp(62px, 7vw, 96px);
  background:
    radial-gradient(circle at 82% 16%, rgba(162, 25, 23, .18), transparent 34%),
    linear-gradient(180deg, #17120f, var(--charcoal));
}

.home-hero-copy {
  max-width: 650px;
}

.home-hero-copy h1,
.legacy-hero h1,
.page-title h1,
.page-hero h1 {
  font-size: clamp(46px, 7vw, 86px);
  line-height: .94;
}

.home-hero-copy p:last-of-type,
.brand-intro p,
.food-moment p,
.home-legacy-preview p,
.home-contact h2,
.legacy-hero p,
.page-hero p:last-child,
.page-title p:last-child {
  color: var(--smoke-muted);
  font-size: clamp(17px, 1.7vw, 21px);
}

.home-founder {
  margin: 0;
}

.home-founder img {
  aspect-ratio: 2.4 / 1;
  object-fit: contain;
  object-position: center;
  background: #070504;
  box-shadow: var(--shadow);
}

.home-founder figcaption {
  margin-top: 14px;
  color: var(--smoke-muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.brand-intro {
  display: grid;
  grid-template-columns: 220px minmax(0, 820px);
  gap: clamp(24px, 5vw, 70px);
  padding: clamp(62px, 8vw, 112px) clamp(20px, 5vw, 72px);
  background: var(--paper);
  color: var(--charcoal);
}

.brand-intro .section-kicker,
.home-legacy-preview .section-kicker {
  color: var(--ember);
}

.brand-intro h2,
.food-moment h2,
.home-legacy-preview h2,
.home-contact h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4.4vw, 62px);
  line-height: 1.06;
}

.brand-intro p {
  max-width: 680px;
  color: #4d4034;
}

.food-moment {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, .82fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
  padding: clamp(62px, 8vw, 112px) clamp(20px, 5vw, 72px);
  background: #17120f;
}

.food-moment img {
  aspect-ratio: 5 / 4;
  height: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.home-legacy-preview {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
  padding: clamp(62px, 8vw, 112px) clamp(20px, 5vw, 72px);
  background: var(--paper);
  color: var(--charcoal);
}

.home-legacy-preview img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.home-legacy-preview p {
  max-width: 620px;
  color: #4d4034;
}

.home-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(50px, 7vw, 88px) clamp(20px, 5vw, 72px);
  background: #211913;
}

.home-contact h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.home-video-section {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(280px, 560px);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  padding: clamp(44px, 6vw, 76px) clamp(20px, 5vw, 72px);
  background: #120e0c;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.home-video-section h2 {
  max-width: 540px;
  margin-bottom: 16px;
  font-family: var(--serif);
  font-size: clamp(32px, 4.5vw, 58px);
  line-height: 1.05;
}

.home-video-section p:last-child {
  max-width: 560px;
  color: var(--smoke-muted);
  font-family: var(--serif);
  font-size: clamp(16px, 1.5vw, 20px);
}

.home-video-frame {
  width: min(100%, 560px);
  justify-self: end;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #050403;
  box-shadow: var(--shadow);
}

.home-video {
  width: 100%;
  height: 100%;
  max-height: 315px;
  aspect-ratio: 16 / 9;
  display: block;
  background: #050403;
  object-fit: cover;
}

.reviews-section {
  padding: clamp(52px, 7vw, 92px) clamp(20px, 5vw, 72px);
  background: var(--paper);
  color: var(--charcoal);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.reviews-grid article {
  padding: 24px;
  border-top: 2px solid var(--ember);
  background: rgba(58, 23, 18, .05);
}

.reviews-grid p {
  color: #4f3f32;
}

.reviews-grid strong {
  display: block;
  color: var(--ember);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.legacy-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .62fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: end;
  padding: 150px clamp(20px, 5vw, 72px) clamp(58px, 8vw, 108px);
  background: linear-gradient(180deg, #17120f, var(--charcoal));
}

.legacy-hero img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.legacy-story-shell {
  display: grid;
  grid-template-columns: minmax(260px, .48fr) minmax(0, .82fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: start;
  padding: clamp(58px, 8vw, 110px) clamp(20px, 5vw, 72px);
  background: var(--paper);
  color: var(--charcoal);
}

.legacy-owner-portrait {
  padding: clamp(42px, 6vw, 78px) clamp(20px, 5vw, 72px);
  background: #080706;
}

.legacy-owner-portrait img {
  width: min(1180px, 100%);
  margin: 0 auto;
  aspect-ratio: 2.4 / 1;
  object-fit: contain;
  object-position: center;
  background: #070504;
  box-shadow: var(--shadow);
}

.legacy-story-aside {
  display: grid;
  gap: 28px;
}

.legacy-memory-rail {
  display: grid;
  gap: 14px;
}

.legacy-memory-rail img {
  aspect-ratio: 3 / 2;
  object-fit: contain;
  background: #1a100b;
  border: 1px solid rgba(58, 23, 18, .2);
  box-shadow: 0 18px 44px rgba(58, 23, 18, .16);
}

.legacy-story-aside blockquote {
  margin: 0;
  padding-left: 20px;
  border-left: 4px solid var(--ember);
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1.18;
}

.legacy-story {
  max-width: 820px;
}

.legacy-story h2 {
  margin-bottom: 30px;
  color: var(--ember);
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.08;
}

.legacy-story p {
  color: #3f342b;
  font-family: var(--serif);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.85;
}

.legacy-family-names {
  display: grid;
  grid-template-columns: minmax(260px, .52fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 72px);
  padding: clamp(58px, 8vw, 104px) clamp(20px, 5vw, 72px);
  background: #120e0c;
  border-top: 1px solid var(--line);
}

.legacy-family-names-intro {
  max-width: 520px;
}

.legacy-family-names h2 {
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: clamp(32px, 4.5vw, 58px);
  line-height: 1.05;
}

.legacy-family-names-intro p:last-child {
  color: var(--smoke-muted);
  font-family: var(--serif);
  font-size: clamp(16px, 1.5vw, 19px);
}

.legacy-name-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 24px;
}

.legacy-name-grid div {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 248, 235, .13);
}

.legacy-name-grid span,
.legacy-name-grid strong {
  display: block;
}

.legacy-name-grid span {
  color: var(--smoke);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.2;
}

.legacy-name-grid strong {
  margin-top: 5px;
  color: var(--mustard);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.thank-you-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(28px, 6vw, 72px);
  background:
    radial-gradient(circle at 50% 12%, rgba(162, 25, 23, .22), transparent 34%),
    linear-gradient(180deg, #17120f, #080706);
}

.thank-you-panel {
  width: min(760px, 100%);
  text-align: center;
}

.thank-you-panel img {
  width: clamp(112px, 18vw, 156px);
  height: clamp(112px, 18vw, 156px);
  margin: 0 auto 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 248, 235, .32);
  box-shadow: var(--shadow);
}

.thank-you-panel h1 {
  margin-bottom: 18px;
  font-size: clamp(58px, 10vw, 108px);
  line-height: .86;
}

.thank-you-panel > p:not(.eyebrow) {
  max-width: 620px;
  margin: 0 auto 30px;
  color: var(--smoke-muted);
  font-family: var(--serif);
  font-size: clamp(17px, 2vw, 21px);
}

.thank-you-panel .hero-actions {
  justify-content: center;
}

@media (max-width: 980px) {
  .hero-badge {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 34px;
  }

  .intro-grid,
  .legacy-section,
  .feature-dish,
  .events-section,
  .contact-section,
  .page-hero,
  .editorial-story,
  .founder-section,
  .menu-page-grid,
  .contact-section.standalone,
  .home-hero,
  .brand-intro,
  .food-moment,
  .home-legacy-preview,
  .legacy-hero,
  .legacy-story-shell,
  .home-video-section,
  .legacy-family-names {
    grid-template-columns: 1fr;
  }

  .menu-photo-panel,
  .legacy-story-aside {
    position: static;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .legacy-name-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand-mark img {
    width: 52px;
    height: 52px;
  }

  .brand-mark strong {
    font-size: 24px;
  }

  .brand-mark small {
    max-width: 156px;
    font-size: 10px;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .site-nav {
    position: fixed;
    top: 74px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: rgba(13, 11, 9, .96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

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

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

  .hero {
    min-height: 94svh;
    padding: 118px 18px 38px;
  }

  .home-hero,
  .legacy-hero {
    min-height: auto;
    padding: 118px 18px 52px;
  }

  .home-hero-copy h1,
  .legacy-hero h1,
  .page-title h1,
  .page-hero h1 {
    font-size: clamp(48px, 15vw, 78px);
  }

  .home-founder img {
    min-height: 260px;
  }

  .brand-intro,
  .food-moment,
  .home-legacy-preview,
  .home-contact,
  .legacy-story-shell {
    padding: 52px 18px;
  }

  .home-contact {
    align-items: stretch;
    flex-direction: column;
  }

  .home-video-section {
    padding: 52px 18px;
  }

  .home-video-frame {
    width: min(100%, 520px);
    justify-self: stretch;
  }

  .page-hero,
  .page-title {
    padding: 118px 18px 48px;
  }

  .page-hero h1,
  .page-title h1 {
    font-size: clamp(48px, 15vw, 78px);
  }

  .page-hero img {
    max-height: none;
  }

  .legacy-owner-portrait img {
    aspect-ratio: 1.45 / 1;
    object-fit: cover;
    object-position: left center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(13, 11, 9, .96), rgba(13, 11, 9, .62)),
      linear-gradient(180deg, rgba(13, 11, 9, .3), rgba(13, 11, 9, .9));
  }

  h1 {
    font-size: clamp(48px, 15vw, 78px);
  }

  .button {
    width: 100%;
  }

  .marquee-line {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-dish img,
  .legacy-photo img {
    min-height: 280px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 300px;
  }

  .price-list.compact {
    grid-template-columns: 1fr;
  }

  .legacy-name-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid .wide,
  .gallery-grid .tall {
    grid-column: auto;
    grid-row: auto;
  }

  .site-footer,
  .site-footer div {
    align-items: flex-start;
  }

  .site-footer {
    flex-direction: column;
  }

  .site-footer div {
    grid-template-columns: 58px minmax(0, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* Final restaurant menu system */
.menu-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .55fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
  padding: clamp(120px, 14vw, 180px) clamp(20px, 5vw, 72px) clamp(48px, 7vw, 86px);
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(13, 10, 8, .9), rgba(13, 10, 8, .62)),
    url("assets/sauced-ribs.jpg") center / cover;
}

.menu-hero h1 {
  max-width: 920px;
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: clamp(64px, 11vw, 150px);
  line-height: .82;
  letter-spacing: 0;
  text-transform: uppercase;
}

.menu-hero-copy > p:last-of-type {
  max-width: 680px;
  color: var(--smoke-muted);
  font-size: clamp(18px, 2vw, 23px);
}

.menu-hero-detailed {
  min-height: 76svh;
}

.menu-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.menu-dedication {
  padding: 24px;
  background: rgba(255, 248, 235, .94);
  color: var(--charcoal);
  border: 1px solid rgba(255, 248, 235, .36);
  box-shadow: var(--shadow);
}

.menu-dedication img {
  width: 92px;
  height: 92px;
  margin-bottom: 18px;
  border-radius: 50%;
  object-fit: cover;
}

.menu-dedication p {
  color: #4d3b2d;
}

.menu-dedication strong {
  display: block;
  margin-top: 16px;
  color: var(--ember);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
}

.restaurant-menu {
  padding: clamp(44px, 7vw, 92px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(rgba(255, 248, 235, .96), rgba(255, 248, 235, .98)),
    repeating-linear-gradient(90deg, rgba(58, 23, 18, .04) 0 1px, transparent 1px 9px);
  color: var(--charcoal);
}

.menu-story-panel {
  display: grid;
  grid-template-columns: minmax(260px, .75fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: end;
  padding: clamp(40px, 6vw, 78px) clamp(20px, 5vw, 72px);
  background: #211913;
  color: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.menu-story-panel h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(30px, 4.5vw, 62px);
  line-height: 1.04;
}

.menu-story-panel p:not(.section-kicker) {
  margin: 0;
  color: var(--smoke-muted);
  font-family: var(--serif);
  font-size: clamp(16px, 1.5vw, 20px);
}

.menu-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin: 0 0 18px;
  border-bottom: 2px solid rgba(139, 28, 24, .32);
}

.menu-section-heading h2 {
  margin: 0;
  color: var(--ember);
  font-family: var(--display);
  font-size: clamp(50px, 8vw, 104px);
  line-height: .82;
  letter-spacing: 0;
  text-transform: uppercase;
}

.menu-board {
  display: grid;
  gap: 1px;
  margin-bottom: clamp(38px, 6vw, 70px);
  background: rgba(58, 23, 18, .18);
  border: 1px solid rgba(58, 23, 18, .18);
}

.menu-board.two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.story-board {
  grid-template-columns: 1fr;
}

.secondary-board {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.menu-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: clamp(18px, 2.4vw, 28px);
  background: #fff8eb;
}

.menu-line.feature-line {
  grid-column: 1 / -1;
  background: #241812;
  color: var(--paper);
}

.story-line {
  align-items: start;
}

.menu-line h3 {
  margin: 0 0 6px;
  font-size: clamp(20px, 2.1vw, 30px);
  letter-spacing: .02em;
  text-transform: uppercase;
}

.menu-line p {
  margin: 0;
  max-width: 58ch;
  color: #655241;
}

.item-subtitle {
  color: var(--ember) !important;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.menu-line.feature-line p {
  color: var(--smoke-muted);
}

.menu-line strong {
  min-width: 126px;
  color: var(--ember);
  font-size: clamp(20px, 2vw, 28px);
  text-align: right;
  white-space: nowrap;
}

.menu-line strong span {
  display: block;
}

.sides-strip,
.drink-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.plate-note,
.pan-note {
  margin: -6px 0 22px;
  padding: 14px 18px;
  color: var(--paper);
  background: var(--ember);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.pan-note {
  margin-top: 0;
  color: var(--charcoal);
  background: rgba(58, 23, 18, .08);
  border: 1px solid rgba(58, 23, 18, .18);
}

.side-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 18px;
  background: rgba(58, 23, 18, .18);
  border: 1px solid rgba(58, 23, 18, .18);
}

.side-story-grid article {
  padding: 20px;
  background: #fff8eb;
}

.side-story-grid h3 {
  margin: 0 0 8px;
  font-size: 17px;
  text-transform: uppercase;
}

.side-story-grid p {
  margin: 0;
  color: #655241;
}

.sides-strip span,
.drink-grid span,
.drink-grid strong {
  padding: 18px;
  background: #2a1b14;
  color: var(--paper);
  font-weight: 900;
  text-transform: uppercase;
}

.drink-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.drink-grid strong {
  display: grid;
  place-items: center;
  background: var(--ember);
  text-align: center;
}

.menu-price-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  gap: 12px;
  align-items: center;
  margin-bottom: clamp(38px, 6vw, 70px);
  padding: 16px 18px;
  background: rgba(139, 28, 24, .1);
  border: 1px solid rgba(139, 28, 24, .24);
}

.menu-price-row p,
.menu-price-row strong {
  margin: 0;
  text-transform: uppercase;
}

.menu-price-row strong {
  color: var(--ember);
  font-size: 24px;
}

.compact-board {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.menu-legacy-note {
  display: grid;
  grid-template-columns: minmax(240px, .58fr) minmax(0, 1fr) auto;
  gap: clamp(20px, 4vw, 50px);
  align-items: center;
  padding: clamp(36px, 5vw, 66px) clamp(20px, 5vw, 72px);
  background: #211913;
  color: var(--paper);
}

.menu-fold-panels {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
  padding: clamp(34px, 5vw, 62px) clamp(20px, 5vw, 72px);
  background: var(--paper);
  color: var(--charcoal);
  border-top: 1px solid rgba(58, 23, 18, .16);
}

.menu-fold-panels h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 48px);
}

.menu-fold-panels p:last-child {
  color: #574636;
}

.menu-legacy-note h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 54px);
}

.menu-legacy-note p:last-of-type {
  margin: 0;
  color: var(--smoke-muted);
  font-size: 18px;
}

.gallery-section-stack {
  display: grid;
  gap: clamp(34px, 6vw, 74px);
}

.gallery-media-section h2 {
  margin: 0 0 18px;
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 50px);
}

.gallery-video-card {
  grid-column: span 2;
  min-height: 300px;
}

.gallery-video-button {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  padding: 0;
  border: 0;
  background: #111;
  cursor: zoom-in;
}

.gallery-video-button img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.gallery-video-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .06), rgba(0, 0, 0, .34));
}

.gallery-video-button::after {
  content: "Play";
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border: 1px solid rgba(255, 248, 235, .5);
  border-radius: 50%;
  background: rgba(8, 7, 6, .72);
  color: var(--smoke);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
}

.legacy-memory-rail img:first-child {
  aspect-ratio: 5 / 4;
  object-fit: contain;
  object-position: center;
  background: #211611;
}

@media (max-width: 980px) {
  .menu-hero,
  .menu-board.two-column,
  .compact-board,
  .menu-legacy-note,
  .menu-story-panel,
  .menu-fold-panels,
  .secondary-board,
  .side-story-grid {
    grid-template-columns: 1fr;
  }

  .drink-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .menu-hero {
    padding-top: 108px;
  }

  .menu-line {
    grid-template-columns: 1fr;
  }

  .menu-line strong {
    text-align: left;
  }

  .menu-price-row,
  .sides-strip,
  .drink-grid {
    grid-template-columns: 1fr;
  }

  .gallery-video-card {
    grid-column: auto;
  }

  .menu-story-panel,
  .menu-fold-panels {
    gap: 16px;
  }
}

@media print {
  .site-header,
  .site-footer,
  .menu-hero-actions,
  .menu-legacy-note .button,
  .menu-fold-panels {
    display: none !important;
  }

  body {
    background: #fff;
    color: #111;
  }

  .menu-hero,
  .restaurant-menu,
  .menu-legacy-note,
  .menu-story-panel {
    padding: 24px 0;
    background: #fff !important;
    color: #111;
    box-shadow: none;
  }

  .menu-hero {
    grid-template-columns: 1fr;
  }

  .menu-dedication {
    border: 1px solid #999;
    box-shadow: none;
  }

  .menu-board.two-column,
  .secondary-board,
  .side-story-grid,
  .compact-board,
  .drink-grid,
  .sides-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu-line,
  .side-story-grid article,
  .sides-strip span,
  .drink-grid span,
  .drink-grid strong {
    break-inside: avoid;
    background: #fff;
    color: #111;
    border: 1px solid #ccc;
  }

  .restaurant-menu {
    column-count: 2;
    column-gap: 28px;
  }

  .menu-section-heading,
  .menu-board,
  .side-story-grid,
  .sides-strip,
  .menu-price-row,
  .pan-note,
  .drink-grid {
    break-inside: avoid;
  }
}

/* Final legacy artwork correction */
.legacy-memory-rail img[src*="grandaddy-charlie"] {
  aspect-ratio: 5 / 4 !important;
  object-fit: contain !important;
  object-position: center !important;
  background: #211611 !important;
}

/* Contract menu redesign: restaurant-chain style fold menu */
.brand-signature {
  margin-top: 18px;
  color: var(--ember) !important;
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 34px) !important;
  font-style: italic;
  font-weight: 700;
}

.menu-redesign-page {
  background: #120d0a;
}

.menu-cover {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, .34fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: end;
  min-height: 78svh;
  padding: clamp(120px, 14vw, 180px) clamp(20px, 5vw, 72px) clamp(48px, 7vw, 86px);
  color: var(--paper);
  background:
    linear-gradient(100deg, rgba(10, 7, 5, .94) 0%, rgba(18, 13, 10, .82) 48%, rgba(18, 13, 10, .46) 100%),
    url("assets/ribs-on-grill.jpg") center / cover;
  border-bottom: 1px solid rgba(255, 248, 235, .16);
}

.menu-cover h1 {
  max-width: 980px;
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: clamp(66px, 12vw, 164px);
  line-height: .8;
  letter-spacing: 0;
  text-transform: uppercase;
}

.menu-cover-copy > p:not(.eyebrow):not(.menu-slogan) {
  max-width: 670px;
  color: var(--smoke-muted);
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 23px);
}

.menu-slogan {
  margin: 0 0 20px;
  color: #f4c05c;
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 58px);
  font-style: italic;
  font-weight: 700;
  line-height: 1;
}

.menu-slogan.small {
  margin-top: 28px;
  font-size: clamp(24px, 3vw, 38px);
}

.menu-cover .button {
  margin-top: 28px;
}

.menu-cover-mark {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 0;
  background: transparent;
  color: var(--paper);
  box-shadow: none;
}

.menu-cover-mark img {
  width: min(220px, 46vw);
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(244, 192, 92, .78);
  box-shadow: 0 22px 70px rgba(0, 0, 0, .55);
}

.menu-cover-mark span {
  color: #f4c05c;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.fold-menu {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
  padding: clamp(34px, 6vw, 80px) clamp(18px, 4vw, 56px);
  background:
    linear-gradient(rgba(22, 15, 11, .92), rgba(22, 15, 11, .96)),
    repeating-linear-gradient(90deg, rgba(255, 248, 235, .04) 0 1px, transparent 1px 12px);
}

.fold-panel {
  position: relative;
  min-height: 560px;
  padding: clamp(22px, 2.4vw, 34px);
  overflow: hidden;
  background: #fff5df;
  color: var(--charcoal);
  border: 1px solid rgba(255, 248, 235, .22);
  box-shadow: 0 26px 70px rgba(0, 0, 0, .22);
}

.fold-panel::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  background: linear-gradient(90deg, var(--ember), #f4c05c, var(--ember));
}

.fold-panel-dark,
.fold-panel-legacy {
  background: #211611;
  color: var(--paper);
}

.fold-panel-story {
  background:
    linear-gradient(rgba(255, 245, 223, .94), rgba(255, 245, 223, .98)),
    url("assets/legacy-members.jpg") center / cover;
}

.fold-panel h2 {
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: clamp(46px, 5.4vw, 76px);
  line-height: .84;
  letter-spacing: 0;
  text-transform: uppercase;
}

.fold-panel-story h2,
.fold-panel-sides h2,
.fold-panel:not(.fold-panel-dark):not(.fold-panel-legacy) h2 {
  color: var(--ember);
}

.fold-panel p {
  color: inherit;
}

.fold-panel-dark p,
.fold-panel-legacy p {
  color: var(--smoke-muted);
}

.panel-number {
  position: absolute;
  top: 18px;
  right: 22px;
  margin: 0;
  color: rgba(139, 28, 24, .28);
  font-family: var(--display);
  font-size: 64px;
  line-height: 1;
}

.fold-panel-dark .panel-number,
.fold-panel-legacy .panel-number {
  color: rgba(255, 248, 235, .18);
}

.chain-menu-list {
  display: grid;
  gap: 12px;
}

.chain-menu-list > div,
.dessert-grid > div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
  align-items: start;
  padding: 11px 0;
  border-top: 1px solid rgba(139, 28, 24, .22);
}

.fold-panel-dark .chain-menu-list > div,
.fold-panel-legacy .chain-menu-list > div {
  border-color: rgba(255, 248, 235, .18);
}

.chain-menu-list h3,
.dessert-grid h3 {
  margin: 0 0 5px;
  font-size: clamp(17px, 1.7vw, 22px);
  text-transform: uppercase;
}

.chain-menu-list p {
  margin: 0;
  max-width: 54ch;
  font-size: 14px;
}

.chain-menu-list strong,
.dessert-grid strong {
  color: var(--ember);
  font-size: clamp(18px, 1.8vw, 24px);
  text-align: left;
  white-space: nowrap;
}

.fold-panel-dark .chain-menu-list strong,
.fold-panel-legacy .chain-menu-list strong {
  color: #f4c05c;
}

.chain-menu-list strong span,
.dessert-grid strong span {
  display: inline;
  margin-left: 10px;
}

.menu-note,
.small-menu-note {
  padding: 10px 12px;
  background: var(--ember);
  color: var(--paper) !important;
  font-weight: 900;
  text-transform: uppercase;
}

.side-feature-row,
.side-price-band,
.drink-band {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.side-feature-row {
  grid-template-columns: repeat(3, 1fr);
}

.side-feature-row span,
.side-price-band span,
.drink-band {
  padding: 13px;
  background: #211611;
  color: var(--paper);
  font-weight: 900;
  text-transform: uppercase;
}

.side-story-columns {
  display: grid;
  gap: 10px;
}

.side-story-columns p,
.drink-list {
  margin: 0;
  color: #574636;
}

.side-price-band,
.drink-band {
  grid-template-columns: repeat(2, 1fr);
}

.drink-band {
  align-items: center;
  background: var(--ember);
}

.drink-band p,
.drink-band strong {
  margin: 0;
  color: var(--paper);
}

.drink-band strong {
  font-size: 28px;
  text-align: right;
}

.dessert-grid {
  display: grid;
  gap: 8px;
}

.fold-panel-legacy .button {
  margin-top: 20px;
}

@media (max-width: 1180px) {
  .fold-menu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .menu-cover,
  .fold-menu,
  .chain-menu-list > div,
  .dessert-grid > div,
  .side-feature-row,
  .side-price-band,
  .drink-band {
    grid-template-columns: 1fr;
  }

  .fold-panel {
    min-height: auto;
  }

  .panel-number {
    position: static;
    display: block;
    margin: 0 0 10px;
    font-size: 40px;
    line-height: .9;
  }

  .chain-menu-list strong,
  .dessert-grid strong,
  .drink-band strong {
    text-align: left;
  }
}

@media print {
  @page {
    size: letter landscape;
    margin: .35in;
  }

  .menu-redesign-page .site-header,
  .menu-redesign-page .site-footer,
  .menu-cover .button {
    display: none !important;
  }

  .menu-redesign-page {
    background: #fff !important;
  }

  .menu-cover {
    min-height: auto;
    padding: 0 0 .16in;
    color: #111;
    background: #fff !important;
    border: 0;
    grid-template-columns: 1fr auto;
    break-after: avoid;
  }

  .menu-cover h1 {
    font-size: 52pt;
  }

  .menu-cover-copy > p:not(.eyebrow):not(.menu-slogan) {
    color: #111;
    font-size: 12pt;
  }

  .menu-slogan {
    color: #8b1c18;
    font-size: 22pt;
  }

  .menu-cover-mark {
    width: 1.3in;
    padding: 0;
    box-shadow: none;
    border: 0;
  }

  .menu-cover-mark img {
    width: 1.05in;
  }

  .fold-menu {
    grid-template-columns: repeat(3, 1fr);
    gap: .12in;
    padding: 0;
    background: #fff !important;
  }

  .fold-panel {
    min-height: 3.25in;
    padding: .16in;
    background: #fff !important;
    color: #111 !important;
    border: 1px solid #777;
    box-shadow: none;
    break-inside: avoid;
  }

  .fold-panel h2 {
    font-size: 30pt;
    color: #8b1c18 !important;
  }

  .fold-panel p,
  .fold-panel-dark p,
  .fold-panel-legacy p,
  .side-story-columns p,
  .drink-list {
    color: #111 !important;
    font-size: 8.8pt;
  }

  .chain-menu-list {
    gap: 4px;
  }

  .chain-menu-list > div,
  .dessert-grid > div {
    padding: 5px 0;
    border-top: 1px solid #bbb;
  }

  .chain-menu-list h3,
  .dessert-grid h3 {
    font-size: 10pt;
  }

  .chain-menu-list strong,
  .dessert-grid strong {
    color: #8b1c18 !important;
    font-size: 10pt;
  }

  .menu-note,
  .small-menu-note,
  .side-feature-row span,
  .side-price-band span,
  .drink-band {
    background: #eee !important;
    color: #111 !important;
    border: 1px solid #aaa;
  }
}

/* Visible print menu preview */
.print-menu-page {
  background: #15100d;
  color: var(--paper);
}

.print-menu-preview {
  padding: clamp(24px, 4vw, 54px);
}

.print-toolbar {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 24px;
}

.print-sheet {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1320px;
  margin: 0 auto 28px;
  background: #fff5df;
  color: var(--charcoal);
  box-shadow: var(--shadow);
}

.print-panel {
  min-height: 520px;
  padding: 28px;
  border-right: 1px dashed rgba(58, 23, 18, .3);
  outline: 1px solid rgba(58, 23, 18, .18);
}

.print-panel:last-child {
  border-right: 0;
}

.print-panel h1,
.print-panel h2 {
  margin: 0 0 16px;
  color: var(--ember);
  font-family: var(--display);
  line-height: .85;
  letter-spacing: 0;
  text-transform: uppercase;
}

.print-panel h1 {
  font-size: clamp(54px, 6vw, 88px);
}

.print-panel h2 {
  font-size: clamp(42px, 4vw, 62px);
}

.print-cover {
  display: grid;
  align-content: center;
  justify-items: start;
  background: #211611;
  color: var(--paper);
}

.print-cover img {
  width: 138px;
  height: 138px;
  margin-bottom: 22px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #f4c05c;
}

.print-cover p {
  color: var(--smoke-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.print-cover strong {
  color: #f4c05c;
  font-family: var(--serif);
  font-size: 28px;
  font-style: italic;
}

.print-menu-panel dl {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px 12px;
}

.print-item {
  padding: 10px 0;
  border-top: 1px solid rgba(58, 23, 18, .18);
}

.print-item h3 {
  margin: 0 0 4px;
  font-size: 15px;
  text-transform: uppercase;
}

.print-item p {
  margin: 0 0 5px;
  color: #4e3f32;
  font-size: 13px;
  line-height: 1.35;
}

.print-item strong {
  display: block;
  color: var(--ember);
  font-size: 16px;
}

.print-menu-panel dt {
  font-weight: 900;
  text-transform: uppercase;
}

.print-menu-panel dd {
  margin: 0;
  color: var(--ember);
  font-weight: 900;
  text-align: right;
  white-space: nowrap;
}

.print-note {
  padding: 10px;
  background: var(--ember);
  color: var(--paper);
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .print-sheet {
    grid-template-columns: 1fr;
  }

  .print-panel {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px dashed rgba(58, 23, 18, .3);
  }
}

@media print {
  .print-toolbar {
    display: none !important;
  }

  .print-menu-page {
    background: #fff !important;
  }

  .print-menu-preview {
    padding: 0;
  }

  .print-sheet {
    width: 100%;
    max-width: none;
    margin: 0;
    box-shadow: none;
    break-after: page;
  }

  .print-sheet:last-child {
    break-after: auto;
  }

  .print-panel {
    min-height: 6.95in;
    padding: .14in;
  }

  .print-item {
    padding: 5px 0;
  }

  .print-item h3 {
    font-size: 8.8pt;
  }

  .print-item p {
    font-size: 7.6pt;
    line-height: 1.2;
  }

  .print-item strong {
    font-size: 8.6pt;
  }
}
