:root {
  color-scheme: dark;
  --ink: #15100c;
  --ink-soft: #21170f;
  --ink-raised: #2c1e13;
  --cream: #f6efdf;
  --paper: #fffaf0;
  --gold: #d9a22e;
  --gold-bright: #f0c968;
  --orange: #d95f28;
  --green: #537b58;
  --muted: #b9aa98;
  --line: rgba(240, 201, 104, 0.2);
  --shadow: 0 24px 70px rgba(14, 8, 4, 0.26);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  overflow-x: clip;
}

body {
  min-width: 280px;
  margin: 0;
  overflow-x: hidden;
  color: var(--cream);
  background: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::selection {
  color: var(--ink);
  background: var(--gold-bright);
}

a {
  color: inherit;
}

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

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

.shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--ink);
  border-radius: 8px;
  background: var(--gold-bright);
  font-weight: 800;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

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

.menu-board :focus-visible,
.allergen-callout :focus-visible,
.info-card:not(.info-card--location) :focus-visible {
  outline-color: #76500a;
}

.order-banner .button:focus-visible,
.mobile-order-bar:focus-visible {
  outline-color: var(--ink);
}

.header-marker {
  position: absolute;
  top: 0;
  width: 1px;
  height: 1px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  padding-top: env(safe-area-inset-top);
  border-bottom: 1px solid transparent;
  background: rgba(21, 16, 12, 0.78);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(240, 201, 104, 0.14);
  box-shadow: 0 10px 35px rgba(8, 4, 2, 0.24);
}

.site-header__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
  text-decoration: none;
}

.brand__mark {
  position: relative;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(240, 201, 104, 0.45);
  transform: rotate(45deg);
}

.brand__mark::before,
.brand__mark::after,
.brand__mark span {
  content: "";
  position: absolute;
  border: 1px solid var(--gold);
}

.brand__mark::before {
  width: 24px;
  height: 24px;
}

.brand__mark::after {
  width: 12px;
  height: 12px;
  background: rgba(217, 162, 46, 0.14);
}

.brand__mark span {
  width: 4px;
  height: 4px;
  border: 0;
  border-radius: 50%;
  background: var(--gold-bright);
}

.brand__copy {
  display: grid;
  line-height: 1.15;
}

.brand__copy strong {
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: 0.025em;
}

.brand__copy small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.desktop-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #d7ccbf;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.desktop-nav a:hover {
  color: var(--gold-bright);
}

.button {
  position: relative;
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--ink);
  border: 1px solid var(--gold-bright);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  box-shadow: 0 12px 28px rgba(217, 162, 46, 0.2);
  isolation: isolate;
  overflow: hidden;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

.button::before {
  position: absolute;
  inset: -2px;
  content: "";
  pointer-events: none;
  background: linear-gradient(105deg, transparent 28%, rgba(255, 255, 255, 0.34) 48%, transparent 68%);
  transform: translateX(-125%) skewX(-12deg);
  transition: transform 420ms ease;
}

.button > span {
  position: relative;
  transition: transform 180ms ease;
}

.button:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(217, 162, 46, 0.26);
}

.button:hover::before {
  transform: translateX(125%) skewX(-12deg);
}

.button:hover > span {
  transform: translateX(3px);
}

.button:active {
  filter: brightness(0.98);
  transform: translateY(0) scale(0.985);
}

.button--small {
  min-height: 44px;
  padding-inline: 18px;
}

.button--hero {
  min-height: 58px;
  padding-inline: 28px;
}

.button--light {
  color: var(--ink);
  border-color: var(--paper);
  background: var(--paper);
  box-shadow: none;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-bright);
  font-size: 13px;
  font-weight: 800;
  text-decoration-color: rgba(240, 201, 104, 0.45);
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover {
  text-decoration-color: currentColor;
}

.text-link:hover span {
  transform: translateX(3px);
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 18% 24%, rgba(217, 95, 40, 0.16), transparent 30%),
    radial-gradient(circle at 84% 32%, rgba(217, 162, 46, 0.12), transparent 27%),
    linear-gradient(145deg, #17100b 0%, #20140b 52%, #110d0a 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.22));
  pointer-events: none;
}

.hero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image:
    linear-gradient(30deg, transparent 48%, rgba(240, 201, 104, 0.18) 49%, rgba(240, 201, 104, 0.18) 51%, transparent 52%),
    linear-gradient(-30deg, transparent 48%, rgba(240, 201, 104, 0.12) 49%, rgba(240, 201, 104, 0.12) 51%, transparent 52%);
  background-size: 44px 76px;
  mask-image: linear-gradient(90deg, transparent, #000 30%, #000 70%, transparent);
}

.hero__layout {
  position: relative;
  z-index: 2;
  min-height: 640px;
  padding-block: 88px 70px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.76fr);
  align-items: center;
  gap: 80px;
}

.hero__copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 1px;
  background: currentColor;
}

.hero h1,
.section-heading h2,
.story-copy h2,
.order-banner h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 760px;
  display: grid;
  gap: clamp(7px, 0.8vw, 12px);
  font-size: clamp(60px, 7.4vw, 100px);
  line-height: 0.92;
  text-wrap: balance;
}

.hero-title__line {
  display: block;
  white-space: nowrap;
}

.hero h1 em {
  color: var(--gold-bright);
  font-weight: 400;
}

.hero__lead {
  max-width: 590px;
  margin: 30px 0 0;
  color: #cfc1b3;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
}

.hero__actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero__facts {
  margin: 32px 0 0;
  padding: 20px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 25px;
  color: #b8a898;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.08em;
  list-style: none;
  text-transform: uppercase;
}

.hero__facts li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero__facts li + li::before {
  content: "◆";
  margin-right: 12px;
  color: rgba(240, 201, 104, 0.55);
  font-size: 6px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6fbd7d;
  box-shadow: 0 0 0 4px rgba(111, 189, 125, 0.12);
}

.hero-card {
  position: relative;
  min-height: 490px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(240, 201, 104, 0.28);
  border-radius: 220px 220px 24px 24px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
    #2a1b10;
  box-shadow: var(--shadow);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(240, 201, 104, 0.16);
  border-radius: inherit;
}

.hero-card__sun {
  position: absolute;
  top: 48px;
  left: 50%;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 201, 104, 0.3), rgba(217, 95, 40, 0.05) 58%, transparent 70%);
  transform: translateX(-50%);
}

.hero-card__top,
.hero-card__bottom {
  position: relative;
  z-index: 2;
}

.hero-card__top {
  padding-inline: 40px;
  display: grid;
  justify-items: center;
  gap: 4px;
  color: #c4b4a3;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.hero-card__top span {
  max-width: 100%;
  white-space: nowrap;
}

.hero-card__top span:last-child {
  color: var(--gold-bright);
}

.hero-card__plate {
  position: absolute;
  z-index: 2;
  top: 120px;
  left: 50%;
  width: 300px;
  height: 300px;
  border: 20px solid #e9dcc9;
  border-radius: 50%;
  background: #fcf7ee;
  box-shadow:
    inset 0 0 0 3px rgba(62, 38, 20, 0.15),
    0 25px 45px rgba(8, 4, 2, 0.44);
  transform: translateX(-50%) rotate(-6deg);
  animation: hero-plate-float 7s ease-in-out infinite;
}

.hero-card__plate-ring {
  position: absolute;
  inset: 12px;
  border: 2px solid rgba(217, 162, 46, 0.48);
  border-radius: 50%;
}

.hero-card__food {
  position: absolute;
  border-radius: 54% 46% 52% 48%;
  background:
    radial-gradient(circle at 30% 30%, #f2bc55 0 8%, transparent 9%),
    radial-gradient(circle at 70% 60%, #7b4924 0 7%, transparent 8%),
    radial-gradient(circle at 50% 50%, #c87931, #7e3c1f);
  box-shadow: inset -8px -8px 14px rgba(50, 22, 8, 0.24);
}

.hero-card__food--one {
  top: 54px;
  left: 55px;
  width: 96px;
  height: 86px;
}

.hero-card__food--two {
  top: 80px;
  right: 47px;
  width: 84px;
  height: 94px;
}

.hero-card__food--three {
  bottom: 44px;
  left: 94px;
  width: 104px;
  height: 84px;
}

.hero-card__leaf {
  position: absolute;
  width: 58px;
  height: 25px;
  border-radius: 100% 0 100% 0;
  background: #567d4d;
}

.hero-card__leaf--one {
  top: 58px;
  left: 122px;
  transform: rotate(38deg);
}

.hero-card__leaf--two {
  right: 63px;
  bottom: 78px;
  transform: rotate(-25deg);
}

.hero-card__bottom {
  position: absolute;
  right: 30px;
  bottom: 29px;
  left: 30px;
  display: grid;
  text-align: center;
}

.hero-card__bottom strong {
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 19px;
}

.hero-card__bottom span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.marquee {
  --marquee-gap: clamp(42px, 4vw, 52px);
  overflow: hidden;
  color: var(--ink);
  background: var(--gold);
}

.marquee:focus-visible {
  outline-color: var(--ink);
  outline-offset: -4px;
}

.marquee__track {
  width: max-content;
  min-height: 54px;
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  will-change: transform;
  animation: marquee-scroll 42s linear 400ms infinite;
}

.marquee__group {
  padding-inline: calc(var(--marquee-gap) / 2);
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: var(--marquee-gap);
}

.marquee__item {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: var(--marquee-gap);
  white-space: nowrap;
}

.marquee i {
  font-style: normal;
  opacity: 0.55;
}

.marquee:hover .marquee__track,
.marquee:focus .marquee__track,
.marquee:focus-within .marquee__track {
  animation-play-state: paused;
}

.section {
  padding-block: 110px;
}

.menu-section {
  color: #271a11;
  background:
    radial-gradient(circle at 88% 8%, rgba(217, 162, 46, 0.1), transparent 24%),
    var(--paper);
}

.section-heading {
  max-width: 760px;
}

.section-heading--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: 70px;
}

.menu-section .eyebrow,
.visit-section .eyebrow {
  color: #9b601e;
}

.section-heading h2,
.story-copy h2 {
  font-size: clamp(46px, 6vw, 74px);
  line-height: 0.98;
}

.section-heading > p,
.section-heading--split > p {
  margin: 0;
  color: #6c5d4e;
  font-size: 15px;
}

.menu-board {
  margin-top: 56px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  gap: 24px;
}

.menu-board__side {
  display: grid;
  gap: 24px;
}

.menu-group {
  overflow: hidden;
  border: 1px solid #dfd1be;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 18px 50px rgba(75, 48, 27, 0.08);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.menu-group__heading {
  min-height: 68px;
  padding: 17px 21px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--cream);
  background: #2b1c12;
}

.menu-group__heading h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
}

.menu-group__heading span {
  color: var(--gold-bright);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.menu-list {
  padding-inline: 20px;
}

.menu-item {
  min-height: 92px;
  padding-block: 19px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 26px;
  border-bottom: 1px dashed #d7c8b6;
}

.menu-item:last-child {
  border-bottom: 0;
}

.menu-item h4,
.menu-item p {
  margin: 0;
}

.menu-item h4 {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.3;
}

.menu-item p {
  margin-top: 5px;
  color: #7a6856;
  font-size: 12px;
}

.menu-item > strong {
  flex: 0 0 auto;
  color: #9b601e;
  font-family: var(--serif);
  font-size: 18px;
}

.menu-list--compact .menu-item {
  min-height: 0;
  padding-block: 13px;
}

.tag {
  margin-left: 6px;
  padding: 3px 6px;
  color: #365a3c;
  border: 1px solid rgba(54, 90, 60, 0.28);
  border-radius: 999px;
  background: rgba(83, 123, 88, 0.1);
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  vertical-align: 2px;
}

.allergen-callout {
  margin-top: 28px;
  padding: 22px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: #332317;
  border: 1px solid rgba(155, 96, 30, 0.35);
  border-radius: 18px;
  background: #f7e8c9;
}

.allergen-callout__icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  border-radius: 50%;
  background: #8c4f1f;
  font-weight: 900;
}

.allergen-callout p {
  margin: 3px 0 0;
  font-size: 13px;
}

.allergen-callout a {
  font-weight: 800;
}

.story-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 35%, rgba(217, 95, 40, 0.12), transparent 26%),
    #21150d;
}

.story-section__layout {
  display: grid;
  grid-template-columns: minmax(350px, 0.9fr) minmax(0, 1fr);
  align-items: center;
  gap: 90px;
}

.story-art {
  position: relative;
  min-height: 490px;
  overflow: hidden;
  border: 1px solid rgba(240, 201, 104, 0.28);
  border-radius: 240px 240px 18px 18px;
  background: linear-gradient(#d9793c 0%, #e9ac58 45%, #3a2415 46%, #21150d 100%);
  box-shadow: var(--shadow);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.story-art__arch {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 250, 240, 0.34);
  border-radius: inherit;
}

.story-art__sun {
  position: absolute;
  top: 86px;
  left: 50%;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: #f7d37d;
  box-shadow: 0 0 70px rgba(247, 211, 125, 0.38);
  transform: translateX(-50%);
}

.story-art__pyramid {
  position: absolute;
  bottom: 72px;
  width: 0;
  height: 0;
  border-right: 145px solid transparent;
  border-bottom: 215px solid #3b2618;
  border-left: 145px solid transparent;
  filter: drop-shadow(10px 10px 8px rgba(10, 4, 2, 0.24));
}

.story-art__pyramid--one {
  left: -18px;
}

.story-art__pyramid--two {
  right: -68px;
  bottom: 54px;
  border-right-width: 120px;
  border-bottom-width: 175px;
  border-left-width: 120px;
  border-bottom-color: #4c301d;
}

.story-art > p {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 24px;
  left: 0;
  margin: 0;
  color: var(--gold-bright);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.19em;
  text-align: center;
  text-transform: uppercase;
}

.story-copy > p:not(.eyebrow) {
  max-width: 600px;
  margin: 26px 0 0;
  color: #c7b8aa;
  font-size: 17px;
}

.story-copy blockquote {
  margin: 36px 0 0;
  padding: 12px 0 12px 24px;
  color: var(--gold-bright);
  border-left: 2px solid var(--gold);
  font-family: var(--serif);
  font-size: 23px;
  font-style: italic;
}

.visit-section {
  color: #2b1d13;
  background: #efe4d2;
}

.visit-grid {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.info-card {
  min-height: 390px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid #dac7ad;
  border-radius: 20px;
  background: rgba(255, 250, 240, 0.7);
  box-shadow: 0 16px 40px rgba(75, 48, 27, 0.06);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.info-card--location {
  color: var(--cream);
  border-color: #2b1c12;
  background:
    linear-gradient(rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.12)),
    #2b1c12;
}

.info-card__number {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-left: auto;
  color: #9b601e;
  border: 1px solid rgba(155, 96, 30, 0.35);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 13px;
}

.info-card--location .info-card__number {
  color: var(--gold-bright);
  border-color: rgba(240, 201, 104, 0.35);
}

.info-card__label {
  margin: 22px 0 12px;
  color: #6f553e;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.info-card--location .info-card__label {
  color: #bda78e;
}

.info-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(29px, 3vw, 39px);
  font-weight: 500;
  line-height: 1.08;
}

.info-card > p:not(.info-card__label) {
  margin: 20px 0 0;
  color: #715e4c;
  font-size: 13px;
}

.info-card .text-link {
  margin-top: auto;
  padding-top: 28px;
  color: #7d4919;
}

.info-card--location .text-link {
  color: var(--gold-bright);
}

.order-banner {
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 52%),
    var(--gold);
}

.order-banner__inner {
  min-height: 280px;
  padding-block: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.order-banner__inner > div {
  min-width: 0;
}

.order-banner .eyebrow {
  color: #5c3713;
}

.order-banner h2 {
  max-width: 700px;
  font-size: clamp(46px, 6vw, 74px);
  line-height: 0.98;
}

.site-footer {
  position: relative;
  background:
    radial-gradient(circle at 12% 0%, rgba(217, 162, 46, 0.09), transparent 30rem),
    #100c09;
}

.site-footer::before {
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--gold) 28%, var(--orange) 50%, var(--gold) 72%, transparent);
  opacity: 0.9;
}

.site-footer__top {
  padding-block: 72px 58px;
  display: grid;
  grid-template-columns:
    minmax(240px, 1.2fr)
    minmax(220px, 1fr)
    minmax(180px, 0.8fr)
    minmax(140px, 0.6fr);
  gap: clamp(30px, 4vw, 58px);
}

.site-footer__intro > p {
  max-width: 330px;
  margin: 22px 0 0;
  color: #b9ab9d;
  font-size: 14px;
}

.brand--footer .brand__copy small {
  font-size: 10px;
}

.site-footer h2 {
  margin: 0 0 16px;
  color: var(--gold-bright);
  font-size: 12px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.site-footer__column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.site-footer__column > a {
  position: relative;
  min-height: 44px;
  margin-left: -6px;
  padding-inline: 6px;
  display: inline-flex;
  align-items: center;
  color: #d1c5b8;
  font-size: 14px;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.site-footer__column > a::after {
  position: absolute;
  right: 6px;
  bottom: 8px;
  left: 6px;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-footer__column > a:hover {
  color: var(--gold-bright);
  transform: translateX(3px);
}

.site-footer__column > a:hover::after,
.site-footer__column > a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-footer__address {
  margin: 0;
  padding-left: 16px;
  display: grid;
  gap: 10px;
  border-left: 1px solid rgba(240, 201, 104, 0.38);
}

.site-footer__address strong {
  color: var(--gold-bright);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer__address a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--cream);
  font-weight: 700;
  line-height: 1.45;
  text-decoration-color: rgba(240, 201, 104, 0.55);
  text-underline-offset: 4px;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.site-footer__address a:hover {
  color: var(--gold-bright);
  text-decoration-color: currentColor;
}

.site-footer__bottom {
  min-height: 92px;
  padding-block: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #b9ab9d;
  border-top: 1px solid rgba(240, 201, 104, 0.16);
  font-size: 14px;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__bottom strong {
  color: var(--cream);
}

.site-footer__company {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 9px;
}

.site-footer__company > span:last-child {
  color: #c7b9ab;
}

.mobile-order-bar {
  display: none;
}

[data-reveal].is-reveal-pending {
  opacity: 0;
  translate: 0 22px;
  transition:
    opacity 560ms cubic-bezier(0.2, 0.7, 0.2, 1),
    translate 560ms cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-reveal-pending.is-revealed {
  opacity: 1;
  translate: 0 0;
}

[data-reveal-delay="1"] {
  --reveal-delay: 80ms;
}

[data-reveal-delay="2"] {
  --reveal-delay: 160ms;
}

[data-reveal-delay="3"] {
  --reveal-delay: 240ms;
}

[data-tilt] {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --tilt-lift: 0px;
  transform:
    perspective(1000px)
    translateY(var(--tilt-lift))
    rotateX(var(--tilt-x))
    rotateY(var(--tilt-y));
  transform-style: preserve-3d;
}

[data-tilt].is-tilting {
  will-change: transform;
  transition-duration: 90ms;
}

.menu-group:focus-within,
.info-card:focus-within {
  border-color: rgba(155, 96, 30, 0.7);
  box-shadow: 0 22px 52px rgba(75, 48, 27, 0.13);
}

@media (hover: hover) and (pointer: fine) {
  .hero-card:hover,
  .story-art:hover,
  .menu-group:hover,
  .info-card:hover {
    --tilt-lift: -3px;
  }

  .hero-card:hover,
  .story-art:hover {
    border-color: rgba(240, 201, 104, 0.52);
    box-shadow: 0 30px 78px rgba(8, 4, 2, 0.34);
  }

  .menu-group:hover,
  .info-card:hover {
    border-color: rgba(155, 96, 30, 0.48);
    box-shadow: 0 24px 56px rgba(75, 48, 27, 0.14);
  }
}

@keyframes hero-plate-float {
  0%,
  100% {
    transform: translateX(-50%) translateY(0) rotate(-6deg);
  }

  50% {
    transform: translateX(-50%) translateY(-5px) rotate(-5deg);
  }
}

@keyframes marquee-scroll {
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (max-width: 980px) {
  .desktop-nav {
    gap: 20px;
  }

  .site-header__inner > .button {
    margin-left: auto;
  }

  .hero__layout {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.65fr);
    gap: 40px;
  }

  .hero h1 {
    font-size: clamp(50px, 7.4vw, 72px);
  }

  .hero-card {
    min-height: 430px;
  }

  .hero-card__plate {
    top: 110px;
    width: 250px;
    height: 250px;
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

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

  .story-section__layout {
    gap: 55px;
  }

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

  .visit-grid .info-card:last-child {
    grid-column: 1 / -1;
    min-height: 310px;
  }

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

@media (max-width: 720px) {
  html {
    scroll-padding-top: 128px;
  }

  body {
    padding-bottom: 0;
  }

  .shell {
    width: min(100% - 28px, 1180px);
  }

  .site-header__inner {
    min-height: 0;
    padding-block: 8px;
    flex-wrap: wrap;
    gap: 6px 12px;
  }

  .site-header__inner > .button {
    min-height: 44px;
    margin-left: auto;
    padding-inline: 14px;
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 11px;
  }

  .desktop-nav {
    width: 100%;
    margin-left: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
    order: 3;
  }

  .desktop-nav a {
    min-width: 0;
    justify-content: center;
    border-radius: 9px;
    font-size: 12px;
  }

  .desktop-nav a:hover {
    background: rgba(240, 201, 104, 0.08);
  }

  .brand__mark {
    width: 34px;
    height: 34px;
  }

  .brand__mark::before {
    width: 20px;
    height: 20px;
  }

  .brand__copy strong {
    font-size: 15px;
  }

  .brand__copy small {
    font-size: 8px;
    letter-spacing: 0.14em;
  }

  .hero {
    min-height: auto;
  }

  .hero__layout {
    min-height: 0;
    padding-block: 64px 48px;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero h1 {
    gap: 0.12em;
    font-size: clamp(38px, 12.2vw, 68px);
    line-height: 0.94;
  }

  .hero__lead {
    margin-top: 24px;
    font-size: 17px;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero__actions .text-link {
    min-height: 44px;
    align-items: center;
  }

  .hero__facts {
    gap: 10px 18px;
  }

  .hero__facts li + li::before {
    display: none;
  }

  .hero-card {
    width: min(100%, 420px);
    min-height: 460px;
    margin-inline: auto;
  }

  .marquee__track {
    animation-duration: 38s;
  }

  .section {
    padding-block: 78px;
  }

  .section-heading h2,
  .story-copy h2,
  .order-banner h2 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .menu-board {
    margin-top: 40px;
  }

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

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

  .story-art {
    width: min(100%, 470px);
    min-height: 440px;
    margin-inline: auto;
  }

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

  .visit-grid .info-card:last-child {
    grid-column: auto;
  }

  .info-card {
    min-height: 320px;
    padding: 28px 24px;
    align-items: center;
    text-align: center;
  }

  .info-card__number {
    margin-left: 0;
  }

  .info-card > p:not(.info-card__label) {
    max-width: 38ch;
    font-size: 14px;
  }

  .info-card .text-link {
    min-height: 44px;
    justify-content: center;
  }

  .order-banner__inner {
    min-height: 320px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    text-align: center;
  }

  .order-banner__inner > div {
    width: 100%;
    display: grid;
    justify-items: center;
  }

  .order-banner .eyebrow {
    justify-content: center;
  }

  .order-banner h2 {
    max-width: 11ch;
  }

  .order-banner .button {
    width: min(100%, 340px);
  }

  .site-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 34px 26px;
  }

  .site-footer__intro,
  .site-footer__visit {
    grid-column: 1 / -1;
  }

  .site-footer__visit {
    max-width: 440px;
  }

  .site-footer__bottom {
    padding-block: 24px max(24px, env(safe-area-inset-bottom));
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .mobile-order-bar {
    position: fixed;
    z-index: 120;
    right: 12px;
    bottom: 10px;
    left: 12px;
    min-height: 62px;
    padding: 10px 16px;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: var(--ink);
    border: 1px solid #f8dd91;
    border-radius: 17px;
    background: linear-gradient(135deg, var(--gold-bright), var(--gold));
    box-shadow: 0 16px 42px rgba(8, 4, 2, 0.48);
    text-decoration: none;
  }

  .mobile-order-bar > span:first-child {
    display: grid;
    line-height: 1.2;
  }

  .mobile-order-bar small {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .mobile-order-bar strong {
    margin-top: 3px;
    font-size: 14px;
  }

  .mobile-order-bar > span:last-child {
    font-size: 22px;
  }
}

@media (max-width: 430px) {
  .hero__actions .button {
    width: 100%;
  }

  .hero-card {
    min-height: 430px;
    padding: 24px;
  }

  .hero-card__plate {
    top: 100px;
    width: 215px;
    height: 215px;
    border-width: 18px;
  }

  .hero-card__bottom span {
    font-size: 9px;
    letter-spacing: 0.08em;
  }

  .hero-card__food--one {
    top: 44px;
    left: 42px;
  }

  .hero-card__food--two {
    top: 67px;
    right: 35px;
  }

  .hero-card__food--three {
    bottom: 33px;
    left: 72px;
  }

  .menu-item {
    gap: 14px;
  }

  .allergen-callout {
    padding: 18px;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-footer__intro,
  .site-footer__visit {
    grid-column: auto;
  }

  .site-footer__top {
    padding-block: 48px 38px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-card__plate {
    animation: none !important;
    transform: translateX(-50%) rotate(-6deg);
  }

  .marquee__track {
    width: 100%;
    min-height: 0;
    flex-wrap: wrap;
    transform: none !important;
    animation: none !important;
    will-change: auto;
  }

  .marquee__group {
    width: 100%;
    min-height: 54px;
    padding: 12px 18px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 24px;
  }

  .marquee__group[aria-hidden="true"] {
    display: none;
  }

  .marquee__item {
    gap: 14px;
  }

  [data-reveal] {
    opacity: 1 !important;
    translate: none !important;
    transition: none !important;
  }

  [data-tilt] {
    transform: none !important;
  }
}
