:root {
  --ink: #100c08;
  --ink-soft: #1a130d;
  --paper: #e8d5ad;
  --paper-deep: #c9aa74;
  --cream: #f7ead0;
  --fire: #e2292d;
  --red: #e2292d;
  --gold: #d8952d;
  --line: rgba(232, 213, 173, 0.17);
  --display: "Sancreek", Rockwell, serif;
  --script: "Abuget", "Brush Script MT", cursive;
  --sans: "Barlow Condensed", Impact, sans-serif;
  --gutter: max(28px, calc((100vw - 1320px) / 2));
}

@font-face {
  font-family: "Abuget";
  src: url("assets/Abuget.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--cream);
  background:
    radial-gradient(circle at 50% 0%, rgba(123, 44, 19, 0.15), transparent 25rem),
    var(--ink);
  font-family: var(--sans);
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body::before {
  position: fixed;
  z-index: 99;
  inset: 0;
  pointer-events: none;
  opacity: 0.045;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

body.intro-active {
  overflow: hidden;
}

button,
a {
  font: inherit;
}

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

button {
  color: inherit;
}

img {
  max-width: 100%;
}

::selection {
  color: var(--cream);
  background: var(--red);
}

.skip-link {
  position: fixed;
  z-index: 1001;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--cream);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow::before,
.kicker::before {
  width: 28px;
  height: 1px;
  content: "";
  background: currentColor;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  overflow: hidden;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: skewX(-5deg);
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button span {
  position: relative;
  z-index: 1;
  transform: skewX(5deg);
}

.button-fire {
  color: var(--cream);
  background: linear-gradient(135deg, var(--red), var(--fire));
  box-shadow: 0 16px 45px rgba(226, 41, 45, 0.28);
}

.button-fire::before {
  position: absolute;
  inset: 0;
  content: "";
  background: var(--cream);
  transform: translateX(-105%);
  transition: transform 260ms ease;
}

.button-fire:hover {
  color: var(--ink);
  transform: skewX(-5deg) translateY(-3px);
}

.button-fire:hover::before {
  transform: translateX(0);
}

.button-ghost {
  border-color: rgba(232, 213, 173, 0.38);
}

.button-ghost:hover {
  border-color: var(--gold);
  transform: skewX(-5deg) translateY(-3px);
}

/* Saloon intro */
.saloon-intro {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #080503;
  perspective: 1500px;
  transition: opacity 600ms ease, visibility 0s linear 600ms;
}

.saloon-intro.is-open {
  opacity: 0;
  visibility: hidden;
}

.intro-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 45%, rgba(241, 158, 54, 0.42), rgba(105, 28, 12, 0.15) 34%, transparent 67%),
    linear-gradient(#1c0d06, #050302);
}

.intro-brand {
  position: absolute;
  z-index: 6;
  top: 50%;
  left: 50%;
  display: flex;
  width: min(380px, 76vw);
  align-items: center;
  flex-direction: column;
  text-align: center;
  transform: translate(-50%, -57%);
  transition: opacity 300ms ease, transform 450ms ease;
}

.is-opening .intro-brand {
  opacity: 0;
  transform: translate(-50%, -55%) scale(0.86);
}

.intro-brand img {
  width: 220px;
  filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.72));
}

.intro-brand p {
  margin: 0 0 22px;
  color: rgba(247, 234, 208, 0.74);
  font-size: 17px;
  letter-spacing: 0.08em;
}

.enter-button {
  display: flex;
  width: 230px;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border: 1px solid rgba(232, 213, 173, 0.56);
  color: var(--cream);
  background: rgba(16, 12, 8, 0.72);
  cursor: pointer;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.enter-button:hover {
  color: var(--ink);
  background: var(--paper);
}

.enter-arrow {
  font-size: 23px;
}

.saloon-gates {
  position: absolute;
  z-index: 4;
  inset: 0;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  pointer-events: auto;
  perspective: 1500px;
}

.gate {
  position: absolute;
  top: 0;
  width: 51%;
  height: 100%;
  overflow: hidden;
  border: 9px solid #281308;
  background:
    linear-gradient(90deg, transparent 31%, rgba(35, 11, 4, 0.72) 32%, rgba(255, 187, 79, 0.12) 33%, transparent 34%, transparent 65%, rgba(35, 11, 4, 0.74) 66%, rgba(255, 187, 79, 0.1) 67%, transparent 68%),
    linear-gradient(105deg, rgba(255,255,255,0.04), transparent 28%),
    #6b3015;
  box-shadow: inset 0 0 80px rgba(22, 7, 2, 0.78), 0 0 40px #000;
  backface-visibility: hidden;
  transition: transform 1.35s cubic-bezier(0.68, -0.18, 0.25, 1.12);
  transform-style: preserve-3d;
}

.gate::before,
.gate::after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 7px;
  content: "";
  background: #251207;
  box-shadow: 0 2px 0 rgba(255, 182, 72, 0.15);
}

.gate::before { top: 19%; }
.gate::after { bottom: 18%; }

.gate-left {
  left: 0;
  clip-path: polygon(0 0, 100% 0, 100% 36%, 91% 50%, 100% 64%, 100% 100%, 0 100%);
  transform-origin: left center;
}

.gate-right {
  right: 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 64%, 9% 50%, 0 36%);
  transform-origin: right center;
}

.is-opening .gate-left {
  transform: rotateY(108deg);
}

.is-opening .gate-right {
  transform: rotateY(-108deg);
}

.gate-plank {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(34, 10, 3, 0.75);
  box-shadow: 3px 0 0 rgba(235, 149, 55, 0.11);
}

.p1 { left: 33%; }
.p2 { left: 66%; }
.p3 { left: 99%; }

.gate-brace {
  position: absolute;
  left: -10%;
  width: 120%;
  height: 58px;
  border-block: 4px solid #32170b;
  background: linear-gradient(#7c3c1b, #4b200e);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.45);
}

.brace-top { top: 23%; transform: rotate(16deg); }
.brace-bottom { bottom: 22%; transform: rotate(-16deg); }
.gate-right .brace-top { transform: rotate(-16deg); }
.gate-right .brace-bottom { transform: rotate(16deg); }

.gate-stud {
  position: absolute;
  z-index: 1;
  width: 16px;
  height: 16px;
  border: 3px solid #17100b;
  border-radius: 50%;
  background: #7b674b;
  box-shadow: inset 2px 2px 2px rgba(255,255,255,0.16);
}

.stud-1 { top: 18%; left: 15%; }
.stud-2 { right: 14%; bottom: 17%; }

.gate-hinge {
  position: absolute;
  width: 90px;
  height: 24px;
  border-block: 4px solid #110b07;
  background: #40362a;
  box-shadow: inset 0 2px 0 rgba(255,255,255,0.12);
}

.gate-left .gate-hinge { left: -10px; }
.gate-right .gate-hinge { right: -10px; }
.hinge-1 { top: 14%; }
.hinge-2 { bottom: 13%; }

.skip-intro {
  position: absolute;
  z-index: 7;
  right: 24px;
  bottom: 22px;
  padding: 8px;
  border: 0;
  color: rgba(247, 234, 208, 0.58);
  background: none;
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  height: 84px;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  border-bottom: 1px solid transparent;
  transition: height 240ms ease, background 240ms ease, border-color 240ms ease;
}

.site-header.is-scrolled {
  height: 70px;
  border-color: var(--line);
  background: rgba(16, 12, 8, 0.9);
  backdrop-filter: blur(14px);
}

.brand {
  position: relative;
  z-index: 2;
}

.brand img {
  display: block;
  width: 94px;
  transition: width 240ms ease;
}

.is-scrolled .brand img {
  width: 78px;
}

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

.site-nav a {
  position: relative;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-nav > a:not(.nav-order)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--fire);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

.site-nav > a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-order {
  padding: 12px 17px;
  border: 1px solid rgba(232, 213, 173, 0.38);
  transition: color 180ms ease, background 180ms ease;
}

.nav-order:hover {
  color: var(--ink);
  background: var(--paper);
}

.menu-toggle {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  padding: 140px var(--gutter) 86px;
  overflow: hidden;
  align-items: center;
  gap: clamp(30px, 4vw, 70px);
  grid-template-columns: minmax(520px, 1.15fr) minmax(390px, 0.85fr);
  background:
    radial-gradient(circle at 79% 52%, rgba(226, 41, 45, 0.18), transparent 25rem),
    radial-gradient(circle at 25% 15%, rgba(216, 149, 45, 0.06), transparent 30rem),
    linear-gradient(105deg, #100c08 0%, #130e0a 58%, #090604 100%);
}

.hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.2;
  background: url("assets/cow.webp") 88% 42% / auto 138% no-repeat;
  filter: grayscale(0.6) contrast(1.15);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 120px;
  content: "";
  background: linear-gradient(transparent, var(--ink));
}

.hero-copy {
  position: relative;
  z-index: 4;
  max-width: 770px;
}

.hero h1,
.section-heading h2,
.showcase h2,
.reviews h2,
.contact h2 {
  margin: 18px 0 24px;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.94;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(60px, 6vw, 96px);
  line-height: 0.98;
}

.hero h1 span {
  color: var(--paper);
}

.hero h1 em,
.section-heading h2 em,
.showcase h2 em,
.reviews h2 em,
.contact h2 em {
  color: var(--fire);
  font-style: normal;
  text-shadow: 0 10px 40px rgba(226, 41, 45, 0.26);
}

.hero-lead {
  max-width: 540px;
  margin: 0 0 30px;
  color: rgba(247, 234, 208, 0.72);
  font-size: clamp(19px, 1.5vw, 24px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-proof {
  display: flex;
  gap: 38px;
  margin-top: 48px;
}

.hero-proof div {
  display: grid;
  padding-left: 13px;
  border-left: 2px solid var(--fire);
}

.hero-proof strong {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
}

.hero-proof span {
  margin-top: 5px;
  color: rgba(247, 234, 208, 0.52);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-food {
  position: relative;
  z-index: 3;
  display: grid;
  width: min(37vw, 540px);
  aspect-ratio: 1;
  justify-self: start;
  place-items: center;
  border-radius: 50%;
  cursor: pointer;
  outline: 0;
  transition: transform 260ms ease;
}

.hero-food:hover,
.hero-food:focus-visible {
  transform: translateY(-7px);
}

.hero-food:focus-visible {
  box-shadow: 0 0 0 2px var(--gold);
}

.sun-disc {
  position: absolute;
  width: 66%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 45% 40%, #f2b248, #e2292d 58%, rgba(94, 18, 10, 0.38) 70%, transparent 71%);
  box-shadow: 0 0 90px rgba(226, 41, 45, 0.26);
}

.food-orbit {
  position: absolute;
  width: 82%;
  aspect-ratio: 1;
  border: 1px dashed rgba(232, 213, 173, 0.28);
  border-radius: 50%;
  animation: spin 24s linear infinite;
}

.orbit-two {
  width: 94%;
  border-style: solid;
  border-color: rgba(226, 41, 45, 0.12);
  animation-direction: reverse;
  animation-duration: 30s;
}

.hero-burger {
  position: relative;
  z-index: 2;
  width: min(69%, 430px);
  filter: drop-shadow(0 40px 34px rgba(0,0,0,0.68));
  animation: burger-float 5s ease-in-out infinite;
}

.hot-badge {
  position: absolute;
  z-index: 3;
  right: 3%;
  bottom: 19%;
  display: grid;
  width: 110px;
  aspect-ratio: 1;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 0 0 5px var(--paper), 0 16px 28px rgba(0,0,0,0.32);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.11em;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(8deg);
}

.food-click-label {
  position: absolute;
  z-index: 4;
  bottom: 10%;
  left: 3%;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--paper);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transform: rotate(-4deg);
  transition: color 180ms ease, background 180ms ease;
}

.mobile-smash-cta {
  display: none;
}

.hero-food:hover .food-click-label,
.hero-food:focus-visible .food-click-label {
  color: var(--cream);
  background: var(--red);
}

.hot-badge b {
  display: block;
  color: var(--red);
  font-size: 12px;
}

.heat {
  position: absolute;
  z-index: 3;
  top: 13%;
  width: 18px;
  height: 100px;
  border-left: 3px solid rgba(232, 213, 173, 0.35);
  border-radius: 50%;
  opacity: 0;
  filter: blur(1px);
  animation: heat-rise 3s ease-in infinite;
}

.heat-one { left: 42%; }
.heat-two { left: 52%; animation-delay: 1s; }
.heat-three { left: 60%; animation-delay: 1.8s; }

.hero-stamp {
  position: absolute;
  z-index: 5;
  top: 120px;
  right: 4vw;
  display: grid;
  width: 118px;
  aspect-ratio: 1;
  border: 1px solid rgba(232, 213, 173, 0.37);
  border-radius: 50%;
  place-content: center;
  color: rgba(232, 213, 173, 0.62);
  text-align: center;
  transform: rotate(10deg);
}

.hero-stamp::before {
  position: absolute;
  inset: 7px;
  border: 1px dashed currentColor;
  border-radius: inherit;
  content: "";
}

.hero-stamp span {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-stamp b {
  font-size: 17px;
}

.cow-card {
  position: absolute;
  z-index: 7;
  top: auto;
  right: max(16px, calc((100vw - 1490px) / 2));
  bottom: 22px;
  display: block;
  width: clamp(110px, 8.5vw, 138px);
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transform: rotate(3deg);
  transition: transform 180ms ease, filter 180ms ease;
}

.cow-card:hover,
.cow-card:focus-visible {
  filter: drop-shadow(0 0 18px rgba(226, 41, 45, 0.55));
  transform: rotate(-1deg) scale(1.035);
}

.cow-card img {
  display: block;
  width: 100%;
  border: 0;
  opacity: 1;
  box-shadow: none;
  mix-blend-mode: normal;
  transition: filter 200ms ease;
}

.cow-card:hover img,
.cow-card:focus-visible img,
.cow-card.is-mooing img {
  opacity: 1;
  filter: saturate(1.08) brightness(1.05);
}

.cow-hint {
  position: absolute;
  z-index: 3;
  top: -31px;
  left: 50%;
  width: max-content;
  padding: 7px 10px;
  color: var(--ink);
  background: var(--paper);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: translateX(-50%) rotate(-4deg);
}

.cow-speech {
  position: absolute;
  z-index: 4;
  top: 17%;
  right: 70%;
  padding: 10px 14px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--cream);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  font-family: var(--display);
  font-size: 18px;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.5) rotate(-10deg);
  transition: opacity 160ms ease, transform 300ms cubic-bezier(.2, 1.6, .4, 1);
}

.cow-card.is-mooing .cow-speech {
  opacity: 1;
  transform: scale(1) rotate(-10deg);
}

.cow-card.is-mooing img {
  animation: cow-shake 480ms ease;
}

.sound-lines {
  position: absolute;
  top: 30%;
  left: -22px;
  display: flex;
  gap: 3px;
  align-items: center;
}

.sound-lines i {
  display: block;
  width: 2px;
  height: 10px;
  border-radius: 2px;
  background: var(--gold);
  opacity: 0;
}

.is-mooing .sound-lines i {
  opacity: 1;
  animation: sound-wave 700ms ease infinite alternate;
}
.is-mooing .sound-lines i:nth-child(2) { height: 20px; animation-delay: 90ms; }
.is-mooing .sound-lines i:nth-child(3) { height: 13px; animation-delay: 160ms; }

.scroll-cue {
  position: absolute;
  z-index: 6;
  bottom: 26px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(247, 234, 208, 0.44);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: translateX(-50%) rotate(90deg);
  transform-origin: center;
}

.scroll-cue i {
  width: 34px;
  height: 1px;
  overflow: hidden;
  background: rgba(232, 213, 173, 0.25);
}

.scroll-cue i::after {
  display: block;
  width: 50%;
  height: 100%;
  content: "";
  background: var(--fire);
  animation: scroll-line 1.7s ease-in-out infinite;
}

.embers {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}

.embers i {
  position: absolute;
  bottom: 5%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #ff8d34;
  box-shadow: 0 0 10px #ff5e22;
  opacity: 0;
  animation: ember-rise 7s linear infinite;
}

.embers i:nth-child(1) { left: 12%; animation-delay: 0s; }
.embers i:nth-child(2) { left: 28%; animation-delay: 3.2s; }
.embers i:nth-child(3) { left: 43%; animation-delay: 1.1s; }
.embers i:nth-child(4) { left: 62%; animation-delay: 4.8s; }
.embers i:nth-child(5) { left: 75%; animation-delay: 2.4s; }
.embers i:nth-child(6) { left: 87%; animation-delay: .8s; }
.embers i:nth-child(7) { left: 54%; animation-delay: 5.4s; }
.embers i:nth-child(8) { left: 93%; animation-delay: 4s; }

/* Ticker */
.ticker {
  position: relative;
  z-index: 8;
  overflow: hidden;
  border-block: 1px solid rgba(16,12,8,0.45);
  color: var(--ink);
  background: var(--paper);
  transform: rotate(-1deg) scale(1.02);
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 28px;
  padding: 15px 0;
  animation: ticker 24s linear infinite;
}

.ticker span {
  font-family: var(--display);
  font-size: 17px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ticker b {
  color: var(--red);
}

/* Shared sections */
.section {
  position: relative;
  padding: clamp(100px, 10vw, 160px) var(--gutter);
}

.section-heading h2,
.showcase h2,
.reviews h2,
.contact h2 {
  font-size: clamp(50px, 6.4vw, 92px);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.8,.2,1);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Story */
.story {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 30px 9vw;
}

.story-copy {
  max-width: 570px;
  padding-top: 54px;
}

.story-copy p {
  color: rgba(247, 234, 208, 0.55);
  font-size: 18px;
  line-height: 1.6;
}

.story-copy .story-lead {
  color: var(--paper);
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 600;
  line-height: 1.35;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--fire);
  color: var(--paper);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.text-link span {
  color: var(--fire);
  font-size: 20px;
  transition: transform 180ms ease;
}

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

.story-gallery {
  grid-column: 1 / -1;
  display: grid;
  margin-top: 35px;
  grid-template-columns: 1.3fr 0.85fr 0.85fr;
}

.food-shot {
  position: relative;
  display: grid;
  min-height: 500px;
  padding: 36px;
  overflow: hidden;
  border: 1px solid var(--line);
  place-items: center;
  background:
    radial-gradient(circle at 50% 47%, rgba(226,41,45,.3), transparent 45%),
    var(--ink-soft);
}

.food-menu-link {
  cursor: pointer;
}

.food-shot:focus-visible,
.wheel-card:focus-visible {
  z-index: 5;
  outline: 2px solid var(--gold);
  outline-offset: -3px;
}

.food-shot + .food-shot {
  border-left: 0;
}

.food-shot::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(transparent 55%, rgba(5,3,2,0.86));
}

.food-shot img {
  width: min(88%, 390px);
  filter: drop-shadow(0 30px 30px rgba(0,0,0,.56));
  transition: transform 500ms cubic-bezier(.2,.8,.2,1);
}

.food-shot:hover img {
  transform: translateY(-12px) scale(1.06) rotate(-2deg);
}

.food-shot > div {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 28px;
  left: 30px;
}

.food-shot small {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.food-shot h3 {
  margin: 6px 0 0;
  font-family: var(--display);
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 400;
  line-height: 1.05;
  text-transform: uppercase;
}

.shot-number {
  position: absolute;
  z-index: 2;
  top: 24px;
  left: 26px;
  color: rgba(232,213,173,.32);
  font-family: var(--display);
  font-size: 13px;
}

/* Menu */
.menu-section {
  background:
    radial-gradient(circle at 92% 10%, rgba(226,41,45,.12), transparent 32rem),
    #0b0806;
}

.menu-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.menu-intro > p {
  max-width: 300px;
  margin-bottom: 36px;
  color: rgba(247,234,208,.48);
  line-height: 1.5;
}

.menu-shell {
  display: grid;
  min-height: 690px;
  margin-top: 45px;
  border: 1px solid rgba(232,213,173,.22);
  grid-template-columns: 245px 1fr;
  box-shadow: 0 45px 100px rgba(0,0,0,.25);
}

.category-rail {
  padding: 16px 0;
  border-right: 1px solid rgba(16,12,8,.3);
  color: var(--ink);
  background:
    linear-gradient(rgba(255,255,255,.12), transparent 35%),
    var(--paper-deep);
}

.category-tab {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 57px;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border: 0;
  border-bottom: 1px dashed rgba(16,12,8,.2);
  color: rgba(16,12,8,.72);
  background: transparent;
  cursor: pointer;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .1em;
  text-align: left;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, padding 180ms ease;
}

.category-tab span:last-child {
  color: rgba(16,12,8,.38);
  font-size: 11px;
}

.category-tab:hover,
.category-tab[aria-selected="true"] {
  padding-left: 27px;
  color: var(--cream);
  background: var(--red);
}

.category-tab[aria-selected="true"]::before {
  position: absolute;
  top: 0;
  right: -12px;
  width: 13px;
  height: 100%;
  content: "";
  background: var(--red);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.menu-board {
  position: relative;
  padding: clamp(28px, 4vw, 60px);
  overflow: hidden;
  color: #2a170d;
  background:
    linear-gradient(95deg, rgba(113,67,24,.06), transparent 48%, rgba(113,67,24,.08)),
    #eadab8;
}

.menu-board::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='p'%3E%3CfeTurbulence baseFrequency='.45' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23p)' opacity='.28'/%3E%3C/svg%3E");
}

.menu-board-top {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 135px;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 28px;
  border-bottom: 3px double rgba(42,23,13,.38);
}

.menu-count {
  color: var(--red);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.menu-board h3 {
  margin: 8px 0 4px;
  font-family: var(--display);
  font-size: clamp(36px, 4.4vw, 62px);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.menu-board-top p {
  margin: 0;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .06em;
}

.menu-board-top img {
  width: 170px;
  height: 135px;
  object-fit: contain;
  filter: drop-shadow(0 20px 16px rgba(49,25,10,.25));
}

.menu-items {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0 34px;
  margin-top: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.menu-item {
  position: relative;
  display: grid;
  padding: 16px 0;
  border-bottom: 1px dashed rgba(42,23,13,.34);
  grid-template-columns: 1fr auto;
  gap: 5px 18px;
  animation: item-in 320ms ease both;
}

.menu-item h4 {
  margin: 0;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.25;
  text-transform: uppercase;
}

.menu-item .price {
  color: var(--red);
  font-family: var(--display);
  font-size: 17px;
  white-space: nowrap;
}

.menu-item p {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(42,23,13,.69);
  font-size: 14px;
  line-height: 1.38;
}

.menu-item .flags {
  display: inline-flex;
  gap: 5px;
  margin-left: 7px;
  color: var(--red);
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: .08em;
  vertical-align: 2px;
}

.menu-note {
  position: relative;
  z-index: 1;
  margin: 30px 0 0;
  color: rgba(42,23,13,.56);
  font-size: 11px;
  letter-spacing: .04em;
}

/* Showcase */
.showcase {
  display: grid;
  min-height: 900px;
  align-items: center;
  overflow: hidden;
  grid-template-columns: .75fr 1.25fr;
  background:
    radial-gradient(circle at 71% 48%, rgba(166,50,24,.23), transparent 28rem),
    var(--ink-soft);
}

.showcase-copy {
  position: relative;
  z-index: 5;
  max-width: 560px;
}

.showcase-copy p {
  max-width: 450px;
  margin: 0 0 30px;
  color: rgba(247,234,208,.56);
  line-height: 1.6;
}

.mobile-title-break {
  display: none;
}

.showcase-wheel {
  position: relative;
  width: min(64vw, 850px);
  aspect-ratio: 1;
  justify-self: center;
}

.showcase-wheel::before,
.showcase-wheel::after {
  position: absolute;
  inset: 11%;
  border: 1px dashed rgba(232,213,173,.2);
  border-radius: 50%;
  content: "";
  animation: spin 60s linear infinite;
}

.showcase-wheel::after {
  inset: 27%;
  border-style: solid;
  border-color: rgba(226,41,45,.2);
  animation-direction: reverse;
  animation-duration: 35s;
}

.wheel-card {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 33%;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: radial-gradient(circle, #26170f, #0d0907 72%);
  box-shadow: 0 25px 50px rgba(0,0,0,.35);
  transition: border-color 180ms ease, transform 300ms ease;
}

.wheel-card:hover {
  z-index: 4;
  border-color: var(--fire);
  transform: scale(1.08);
}

.wheel-card img {
  width: 72%;
  height: 72%;
  object-fit: contain;
  filter: drop-shadow(0 18px 14px rgba(0,0,0,.55));
}

.wheel-sauces {
  overflow: hidden;
  background: #000;
}

.wheel-sauces img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  filter: none;
}

.wheel-card span {
  position: absolute;
  bottom: 11%;
  padding: 4px 10px;
  color: var(--paper);
  background: rgba(16,12,8,.78);
  font-family: var(--display);
  font-size: clamp(10px, 1.2vw, 15px);
  text-transform: uppercase;
}

.wheel-fries { top: 2%; left: 34%; }
.wheel-potato { top: 32%; right: 1%; }
.wheel-sweet { right: 13%; bottom: 1%; }
.wheel-sandwich { bottom: 1%; left: 13%; }
.wheel-chicken { top: 32%; left: 1%; }

/* Reviews */
.reviews {
  display: grid;
  padding-bottom: 180px;
  grid-template-columns: .7fr 1.3fr;
  gap: 7vw;
}

.rating {
  display: grid;
  width: 170px;
  padding: 16px 18px;
  border-left: 2px solid var(--fire);
  grid-template-columns: auto 1fr;
  gap: 2px 10px;
}

.rating b {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 400;
  grid-row: 1 / 3;
}

.rating span {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: .09em;
}

.rating small {
  color: rgba(247,234,208,.45);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.review-stack {
  display: flex;
  flex-direction: column;
  padding-top: 35px;
}

.review-card {
  position: relative;
  width: 85%;
  margin: 0;
  padding: 34px 40px;
  border: 1px solid var(--line);
  background: var(--ink-soft);
  box-shadow: 0 24px 60px rgba(0,0,0,.18);
}

.review-card:nth-child(2) {
  align-self: flex-end;
  margin-top: -6px;
}

.review-card:nth-child(3) {
  margin-top: -6px;
  margin-left: 6%;
}

.review-card.featured {
  z-index: 2;
  border-color: rgba(226,41,45,.42);
  background: #20130e;
  transform: rotate(1deg);
}

.review-card.featured.in-view {
  transform: rotate(1deg);
}

.quote-mark {
  position: absolute;
  top: -23px;
  right: 26px;
  color: var(--red);
  font-family: Georgia, serif;
  font-size: 90px;
  line-height: 1;
}

.review-card > p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--paper);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.35;
}

.review-card footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.review-card footer > span {
  display: grid;
  width: 40px;
  aspect-ratio: 1;
  border-radius: 50%;
  place-items: center;
  color: var(--cream);
  background: var(--red);
  font-weight: 800;
  font-size: 12px;
}

.review-card footer div {
  display: grid;
}

.review-card footer b {
  font-size: 14px;
  letter-spacing: .06em;
}

.review-card footer small {
  color: rgba(247,234,208,.38);
  font-size: 11px;
}

.reviews-link {
  position: absolute;
  right: var(--gutter);
  bottom: 105px;
}

/* Contact */
.contact {
  padding-top: 80px;
  background:
    linear-gradient(90deg, rgba(16,12,8,.97), rgba(16,12,8,.8) 68%, rgba(16,12,8,.9)),
    url("assets/cow.webp") right 5% center / auto 90% no-repeat,
    #100c08;
}

.contact-poster {
  max-width: 1120px;
  margin: 0 auto;
  padding: 12px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 35px 100px rgba(0,0,0,.5);
}

.poster-border {
  padding: clamp(35px, 6vw, 78px);
  border: 2px solid rgba(42,23,13,.6);
  outline: 1px dashed rgba(42,23,13,.32);
  outline-offset: -9px;
}

.contact .eyebrow {
  color: var(--red);
}

.contact h2 {
  margin-bottom: 46px;
}

.contact-grid {
  display: grid;
  padding-block: 28px;
  border-block: 2px solid rgba(42,23,13,.45);
  grid-template-columns: repeat(3, 1fr);
}

.contact-grid > div {
  display: grid;
  align-content: start;
  padding: 0 28px;
}

.contact-grid > div + div {
  border-left: 1px solid rgba(42,23,13,.25);
}

.contact-grid > div:first-child {
  padding-left: 0;
}

.contact-grid small,
.big-phone small {
  margin-bottom: 9px;
  color: var(--red);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.contact-grid b {
  font-size: 19px;
  line-height: 1.35;
}

.contact-grid a,
.contact-grid > div > span:not(.open-status) {
  margin-top: 12px;
  color: rgba(42,23,13,.65);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.open-status {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  color: #4f7824;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.open-status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px rgba(79,120,36,.15);
}

.open-status.closed {
  color: var(--red);
}

.big-phone {
  display: grid;
  margin-top: 32px;
  align-items: center;
  grid-template-columns: 1fr auto;
}

.big-phone small {
  grid-column: 1 / -1;
}

.big-phone strong {
  font-family: var(--display);
  font-size: clamp(38px, 6.4vw, 84px);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: 1;
  transition: color 180ms ease;
}

.big-phone > span {
  font-size: 54px;
  transition: transform 180ms ease;
}

.big-phone:hover strong {
  color: var(--red);
}

.big-phone:hover > span {
  transform: translateX(8px);
}

/* Footer */
.site-footer {
  display: grid;
  min-height: 320px;
  padding: 65px var(--gutter) 35px;
  align-items: center;
  border-top: 1px solid var(--line);
  grid-template-columns: 1fr auto;
  background: #090604;
}

.footer-brand img {
  width: 150px;
}

.footer-brand p {
  margin: 0;
  color: rgba(247,234,208,.38);
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a {
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: var(--fire);
}

.copyright {
  margin: 0;
  color: rgba(247,234,208,.3);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  grid-column: 1 / -1;
  align-self: end;
}

.mobile-order {
  display: none;
}

.noscript {
  position: fixed;
  z-index: 2000;
  right: 20px;
  bottom: 20px;
  padding: 14px 20px;
  color: var(--ink);
  background: var(--paper);
}

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes ticker { to { transform: translateX(-50%); } }
@keyframes burger-float { 50% { transform: translateY(-16px) rotate(1deg); } }
@keyframes heat-rise {
  0% { opacity: 0; transform: translateY(55px) scale(.7); }
  35% { opacity: .6; }
  100% { opacity: 0; transform: translateY(-45px) scale(1.2); }
}
@keyframes ember-rise {
  0% { opacity: 0; transform: translate(0, 0) scale(.5); }
  14% { opacity: .8; }
  100% { opacity: 0; transform: translate(70px, -78vh) scale(1.2); }
}
@keyframes scroll-line {
  0% { transform: translateX(-105%); }
  100% { transform: translateX(205%); }
}
@keyframes cow-shake {
  0%, 100% { transform: rotate(4deg); }
  25% { transform: rotate(-4deg) scale(1.04); }
  50% { transform: rotate(5deg) scale(1.02); }
  75% { transform: rotate(-2deg) scale(1.04); }
}
@keyframes sound-wave { to { transform: scaleY(.5); opacity: .4; } }
@keyframes item-in {
  from { opacity: 0; transform: translateY(9px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1100px) {
  .hero {
    padding-inline: 45px;
    gap: 24px;
    grid-template-columns: minmax(430px, 1.08fr) minmax(320px, .92fr);
  }

  .hero h1 {
    font-size: clamp(56px, 7.5vw, 82px);
  }

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

  .food-shot:last-child {
    grid-column: 1 / -1;
    min-height: 380px;
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .showcase {
    grid-template-columns: .85fr 1.15fr;
  }

  .showcase h2 {
    max-width: 100%;
    font-size: clamp(36px, 10.4vw, 46px);
    line-height: 1;
  }

  .mobile-title-break {
    display: inline;
  }

  .showcase-copy,
  .showcase-copy p {
    width: 100%;
    max-width: 100%;
  }

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

@media (max-width: 820px) {
  body {
    padding-bottom: 66px;
  }

  .site-header,
  .site-header.is-scrolled {
    height: 68px;
  }

  .brand img,
  .is-scrolled .brand img {
    width: 75px;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    display: grid;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--line);
    place-content: center;
    gap: 6px;
    background: rgba(16,12,8,.82);
  }

  .menu-toggle span:not(.sr-only) {
    width: 20px;
    height: 2px;
    background: var(--paper);
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    width: min(82vw, 360px);
    height: 100svh;
    padding: 110px 35px 35px;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    background: #100c08;
    box-shadow: -30px 0 80px rgba(0,0,0,.45);
    transform: translateX(105%);
    transition: transform 300ms cubic-bezier(.2,.8,.2,1);
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .site-nav a {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }

  .nav-order {
    margin-top: 25px;
    padding-inline: 17px !important;
    text-align: center;
  }

  .hero {
    min-height: 900px;
    padding: 125px 24px 110px;
    align-content: start;
    grid-template-columns: 1fr;
    background-position: 62% center;
  }

  .hero::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: 0.15;
    background: url("assets/cow.webp") 77% 46% / auto 122% no-repeat;
    filter: grayscale(0.6) contrast(1.1);
  }

  .hero-copy {
    text-align: center;
  }

  .kicker {
    justify-content: center;
  }

  .hero h1 {
    margin-top: 20px;
    font-size: clamp(52px, 15vw, 82px);
  }

  .hero-lead {
    margin-inline: auto;
    font-size: 19px;
  }

  .hero-actions,
  .hero-proof {
    justify-content: center;
  }

  .hero-food {
    position: absolute;
    right: -12%;
    bottom: 18px;
    width: 76vw;
    opacity: .72;
  }

  .hero-stamp {
    display: none;
  }

  .cow-card {
    top: auto;
    right: auto;
    bottom: 2%;
    left: 24px;
    width: 86px;
    transform: rotate(4deg);
  }

  .cow-card:hover,
  .cow-card:focus-visible {
    transform: rotate(-2deg) scale(1.05);
  }

  .cow-card img {
    opacity: 1;
    mix-blend-mode: normal;
  }

  .scroll-cue {
    display: none;
  }

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

  .story-copy {
    padding-top: 0;
  }

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

  .food-shot,
  .food-shot:last-child {
    min-height: 400px;
  }

  .food-shot:last-child {
    grid-column: 1 / -1;
  }

  .menu-shell {
    display: block;
  }

  .category-rail {
    display: flex;
    padding: 0;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(16,12,8,.3);
    scrollbar-width: thin;
  }

  .category-tab {
    width: auto;
    min-width: max-content;
    padding-inline: 17px;
    border-right: 1px dashed rgba(16,12,8,.2);
    border-bottom: 0;
  }

  .category-tab:hover,
  .category-tab[aria-selected="true"] {
    padding-left: 17px;
  }

  .category-tab[aria-selected="true"]::before {
    display: none;
  }

  .showcase {
    min-height: 1080px;
    align-content: start;
    grid-template-columns: 1fr;
  }

  .showcase-wheel {
    width: min(94vw, 650px);
    margin-top: 50px;
  }

  .reviews {
    padding-bottom: 150px;
  }

  .review-stack {
    padding-top: 20px;
  }

  .review-card {
    width: 90%;
  }

  .reviews-link {
    bottom: 82px;
    left: 24px;
  }

  .contact {
    background-attachment: scroll;
  }

  .contact-grid {
    gap: 25px;
    grid-template-columns: 1fr;
  }

  .contact-grid > div,
  .contact-grid > div:first-child {
    padding: 0 0 22px;
  }

  .contact-grid > div + div {
    padding-top: 22px;
    border-top: 1px solid rgba(42,23,13,.25);
    border-left: 0;
  }

  .site-footer {
    gap: 40px;
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .copyright {
    grid-column: auto;
  }

  .mobile-order {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    height: 66px;
    align-items: center;
    justify-content: space-between;
    padding: 0 22px;
    color: var(--cream);
    background: linear-gradient(100deg, var(--red), var(--fire));
    box-shadow: 0 -10px 30px rgba(0,0,0,.35);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: .13em;
    text-transform: uppercase;
  }

  .mobile-order b {
    font-size: 17px;
  }
}

@media (max-width: 560px) {
  .saloon-intro {
    perspective: 900px;
  }

  .intro-brand {
    width: 82vw;
  }

  .intro-brand img {
    width: 165px;
  }

  .intro-brand .eyebrow {
    font-size: 9px;
  }

  .gate-brace {
    height: 38px;
  }

  .gate-hinge {
    width: 55px;
    height: 18px;
  }

  .section {
    padding: 92px 20px;
  }

  .hero {
    min-height: 850px;
  }

  .hero h1 {
    font-size: clamp(46px, 14vw, 68px);
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-proof {
    display: none;
  }

  .hero-food {
    right: -18%;
    bottom: 20px;
    width: 92vw;
  }

  .cow-card {
    bottom: 1.5%;
  }

  .hot-badge {
    width: 82px;
    font-size: 10px;
  }

  .section-heading h2,
  .showcase h2,
  .reviews h2,
  .contact h2 {
    font-size: clamp(42px, 13vw, 61px);
  }

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

  .food-shot,
  .food-shot:last-child {
    min-height: 360px;
    grid-column: auto;
  }

  .food-shot + .food-shot,
  .food-shot:last-child {
    border-top: 0;
    border-left: 1px solid var(--line);
  }

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

  .menu-intro > p {
    margin: -5px 0 15px;
  }

  .menu-shell {
    margin-top: 20px;
  }

  .menu-board {
    padding: 25px 20px;
  }

  .menu-board-top {
    min-height: 120px;
  }

  .menu-board-top img {
    width: 105px;
    height: 100px;
  }

  .menu-board h3 {
    font-size: 33px;
  }

  .menu-board-top p {
    max-width: 190px;
    font-size: 12px;
  }

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

  .showcase {
    min-height: 890px;
  }

  .showcase-wheel {
    width: 110vw;
    margin-left: -10vw;
  }

  .wheel-card {
    width: 36%;
  }

  .review-card,
  .review-card:nth-child(2),
  .review-card:nth-child(3) {
    width: 100%;
    padding: 30px 25px;
    margin: -1px 0 0;
    align-self: stretch;
  }

  .review-card.featured,
  .review-card.featured.in-view {
    transform: none;
  }

  .contact {
    padding: 50px 12px 80px;
  }

  .poster-border {
    padding: 35px 23px;
  }

  .big-phone {
    grid-template-columns: 1fr;
  }

  .big-phone strong {
    font-size: clamp(34px, 10.5vw, 50px);
  }

  .big-phone > span {
    display: none;
  }

  .site-footer {
    padding: 55px 24px 32px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* 2026 content refresh */
.site-header {
  height: 96px;
}

.site-header.is-scrolled {
  height: 76px;
}

.brand img {
  width: 122px;
}

.is-scrolled .brand img {
  width: 101px;
}

.site-nav {
  gap: clamp(28px, 3.2vw, 52px);
}

.site-nav a {
  font-size: 14px;
}

.hero-proof {
  gap: clamp(22px, 3vw, 46px);
}

.hero-proof strong {
  font-family: var(--sans);
  font-size: clamp(18px, 1.45vw, 22px);
  font-weight: 800;
  line-height: .95;
  white-space: nowrap;
}

.food-click-label {
  font-size: 11px;
}

.ticker {
  transform: none;
}

.ticker-track {
  gap: 0;
  padding: 0;
  animation-duration: 34s;
}

.ticker-group {
  display: flex;
  flex: none;
  align-items: center;
  gap: 28px;
  padding: 15px 28px 15px 0;
}

.story-gallery-heading {
  grid-column: 1 / -1;
  margin: 65px 0 -8px;
  text-align: center;
}

.story-gallery-heading .eyebrow {
  justify-content: center;
}

.story-gallery-heading h3 {
  margin: 14px 0 0;
  font-family: var(--display);
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1;
  text-transform: uppercase;
}

.story-gallery.five-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.five-grid .food-shot,
.five-grid .food-shot:last-child {
  min-height: 370px;
  padding: 20px;
  grid-column: auto;
}

.five-grid .food-shot img {
  width: min(94%, 300px);
}

.five-grid .food-shot > div {
  right: 20px;
  bottom: 22px;
  left: 20px;
}

.five-grid .food-shot h3 {
  font-size: clamp(18px, 1.65vw, 27px);
}

.burger-price-legend {
  position: relative;
  z-index: 2;
  display: grid;
  margin: 22px 0 0;
  padding: 11px 14px;
  border: 1px solid rgba(42, 23, 13, .28);
  color: var(--cream);
  background: var(--red);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.burger-price-legend[hidden] {
  display: none;
}

.burger-price-legend span {
  font-weight: 900;
  font-size: 11px;
  letter-spacing: .13em;
  text-align: center;
  text-transform: uppercase;
}

.menu-subheading {
  grid-column: 1 / -1;
  display: flex;
  margin-top: 18px;
  padding: 14px 16px;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  border-block: 2px solid rgba(226, 41, 45, .5);
  color: var(--cream);
  background: var(--red);
  animation: item-in 320ms ease both;
}

.menu-subheading strong {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.menu-subheading small {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .04em;
  text-align: right;
}

.menu-item p small {
  display: block;
  margin-top: 5px;
  color: var(--red);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.menu-item .flags {
  gap: 7px;
  margin-left: 9px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  vertical-align: 1px;
}

.menu-item .flag {
  display: inline-flex;
  padding: 3px 6px;
  align-items: center;
  border: 1px solid currentColor;
  line-height: 1;
}

.menu-item .flag-hot i {
  margin-right: 3px;
  font-size: 17px;
  font-style: normal;
  line-height: .7;
}

.menu-item .flag-new {
  color: var(--cream);
  background: var(--red);
}

/* Random food generator */
.food-generator {
  display: grid;
  min-height: 820px;
  align-items: center;
  overflow: hidden;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(45px, 8vw, 120px);
  background:
    radial-gradient(circle at 72% 48%, rgba(226, 41, 45, .24), transparent 28rem),
    linear-gradient(115deg, #0b0806, #1a100b 65%, #0b0806);
}

.food-generator::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: repeating-linear-gradient(135deg, transparent 0 28px, rgba(232, 213, 173, .018) 29px 31px);
}

.generator-heading,
.generator-machine {
  position: relative;
  z-index: 1;
}

.generator-heading h2 {
  margin: 18px 0 30px;
  font-family: var(--display);
  font-size: clamp(50px, 6vw, 86px);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: .94;
  text-transform: uppercase;
}

.generator-heading h2 em {
  color: var(--fire);
  font-style: normal;
}

.generator-heading > p {
  max-width: 510px;
  margin: 0;
  color: var(--paper);
  font-family: var(--script);
  font-size: clamp(29px, 3vw, 44px);
  line-height: 1.08;
}

.generator-machine {
  padding: clamp(28px, 4vw, 50px);
  border: 1px solid rgba(232, 213, 173, .24);
  background: rgba(9, 6, 4, .78);
  box-shadow: 0 38px 90px rgba(0, 0, 0, .42), inset 0 0 0 7px rgba(232, 213, 173, .025);
}

.generator-wheel {
  position: absolute;
  z-index: 3;
  top: -58px;
  right: -30px;
  display: grid;
  width: 120px;
  aspect-ratio: 1;
  border: 7px double var(--paper);
  border-radius: 50%;
  place-items: center;
  color: var(--cream);
  background: var(--red);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .46);
}

.generator-wheel::before,
.generator-wheel::after {
  position: absolute;
  inset: 9px;
  border: 1px dashed rgba(247, 234, 208, .7);
  border-radius: inherit;
  content: "";
}

.generator-wheel::after {
  inset: 20px;
}

.generator-wheel span {
  font-family: var(--display);
  font-size: 26px;
}

.generator-results {
  display: grid;
  border: 1px solid rgba(232, 213, 173, .16);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.generator-results article {
  position: relative;
  display: grid;
  min-height: 145px;
  padding: 24px;
  align-content: center;
  gap: 8px;
  border: 1px solid rgba(232, 213, 173, .12);
  background: linear-gradient(145deg, rgba(232, 213, 173, .05), transparent);
  transition: opacity 180ms ease, transform 180ms ease;
}

.generator-results small {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.generator-results strong {
  color: var(--cream);
  font-family: var(--display);
  font-size: clamp(18px, 1.6vw, 25px);
  font-weight: 400;
  line-height: 1.15;
  text-transform: uppercase;
}

.generator-results span {
  color: rgba(247, 234, 208, .5);
  font-size: 13px;
  font-weight: 700;
}

.generator-button {
  display: flex;
  width: 100%;
  min-height: 66px;
  margin-top: 18px;
  padding: 0 22px;
  border: 0;
  align-items: center;
  justify-content: space-between;
  color: var(--cream);
  background: linear-gradient(100deg, var(--red), var(--fire));
  cursor: pointer;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: filter 180ms ease, transform 180ms ease;
}

.generator-button:hover {
  filter: brightness(1.12);
  transform: translateY(-2px);
}

.generator-button b {
  font-size: 30px;
  line-height: 1;
}

.generator-button:disabled {
  cursor: wait;
}

.generator-machine.is-spinning .generator-wheel {
  animation: generator-spin .32s linear infinite;
}

.generator-machine.is-spinning .generator-results article {
  opacity: .24;
  transform: scale(.96);
}

.generator-machine.is-spinning .generator-results article:nth-child(2n) {
  transform: scale(.96) translateY(7px);
}

@keyframes generator-spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 1100px) {
  .story-gallery.five-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .five-grid .food-shot:last-child {
    min-height: 370px;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 820px) {
  .site-header,
  .site-header.is-scrolled {
    height: 76px;
  }

  .brand img,
  .is-scrolled .brand img {
    width: 98px;
  }

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

  .food-generator {
    min-height: auto;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .story-gallery.five-grid {
    grid-template-columns: 1fr;
  }

  .five-grid .food-shot,
  .five-grid .food-shot:last-child {
    min-height: 330px;
  }

  .burger-price-legend {
    padding-inline: 8px;
    gap: 3px;
  }

  .burger-price-legend span {
    font-size: 8px;
    letter-spacing: .04em;
  }

  .menu-subheading {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .menu-subheading small {
    text-align: left;
  }

  .generator-heading > p {
    font-size: 31px;
  }

  .generator-machine {
    padding: 20px;
  }

  .generator-wheel {
    top: -42px;
    right: 10px;
    width: 88px;
  }

  .generator-results {
    grid-template-columns: 1fr;
  }

  .generator-results article {
    min-height: 112px;
    padding: 20px;
  }
}

/* English slogans use the supplied Abuget handwriting font. */
#menuTagline {
  max-width: 620px;
  margin-top: 9px;
  font-family: var(--script);
  font-size: clamp(27px, 2.4vw, 38px);
  font-weight: 400;
  letter-spacing: .01em;
  line-height: 1;
}

.footer-brand p {
  margin-top: 8px;
  color: rgba(247, 234, 208, .62);
  font-family: var(--script);
  font-size: clamp(25px, 2.2vw, 34px);
  font-weight: 400;
  letter-spacing: .01em;
  line-height: 1;
  text-transform: none;
}

@media (max-width: 560px) {
  #menuTagline {
    max-width: 195px;
    font-size: 25px;
    line-height: .95;
  }

  .footer-brand p {
    font-size: 27px;
  }
}

/* 2026 visual polish: modern timber entrance, hero balance and menu details */
.saloon-intro {
  padding: 28px;
  background: rgba(4, 3, 2, .92);
  backdrop-filter: blur(14px);
  perspective: 1800px;
}

.intro-glow {
  inset: 50% auto auto 50%;
  width: min(1200px, calc(100vw - 40px));
  height: min(790px, calc(100svh - 40px));
  border: 1px solid rgba(213, 165, 91, .3);
  border-radius: 6px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .32), transparent 18% 82%, rgba(0, 0, 0, .32)),
    radial-gradient(circle at 50% 46%, rgba(193, 105, 40, .22), transparent 58%),
    #100a06;
  box-shadow: 0 45px 140px rgba(0, 0, 0, .75), 0 0 0 9px rgba(210, 157, 79, .025);
  transform: translate(-50%, -50%);
}

.intro-glow::before,
.intro-glow::after {
  position: absolute;
  top: 22px;
  bottom: 22px;
  width: 1px;
  content: "";
  background: linear-gradient(transparent, rgba(213, 165, 91, .45), transparent);
}

.intro-glow::before { left: 22px; }
.intro-glow::after { right: 22px; }

.saloon-gates {
  inset: 50% auto auto 50%;
  width: min(1150px, calc(100vw - 62px));
  height: min(740px, calc(100svh - 62px));
  overflow: hidden;
  border: 1px solid rgba(222, 175, 100, .24);
  border-radius: 3px;
  box-shadow: inset 0 0 0 8px rgba(0, 0, 0, .26);
  transform: translate(-50%, -50%);
}

.gate {
  width: 50.1%;
  height: 100%;
  border: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .4), transparent 8%, transparent 91%, rgba(0, 0, 0, .45)),
    repeating-linear-gradient(90deg, transparent 0 108px, rgba(8, 3, 1, .72) 109px 112px),
    linear-gradient(112deg, transparent 12%, rgba(236, 178, 91, .055) 30%, transparent 43%),
    linear-gradient(#4a2412, #2b130a 48%, #1b0d07);
  box-shadow: inset 0 0 70px rgba(0, 0, 0, .67), 0 0 36px rgba(0, 0, 0, .7);
  transition: transform 1.15s cubic-bezier(.64, 0, .24, 1);
}

.gate::before,
.gate::after {
  height: 2px;
  background: linear-gradient(90deg, #1b100a, #806747, #1b100a);
  box-shadow: 0 1px 0 rgba(255, 215, 151, .08);
}

.gate-left {
  clip-path: polygon(0 0, 100% 0, 100% 39%, 94% 45%, 100% 51%, 100% 100%, 0 100%);
}

.gate-right {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 51%, 6% 45%, 0 39%);
}

.gate-brace,
.gate-stud {
  display: none;
}

.gate-hinge {
  width: 68px;
  height: 14px;
  border: 1px solid #0a0806;
  border-radius: 2px;
  background: linear-gradient(#625a4e, #27231e);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12), 0 4px 12px rgba(0, 0, 0, .42);
}

.gate-left .gate-hinge { left: 12px; }
.gate-right .gate-hinge { right: 12px; }

.intro-brand {
  width: min(520px, 74vw);
  transform: translate(-50%, -51%);
}

.intro-brand::before {
  width: 44px;
  height: 1px;
  margin-bottom: 24px;
  content: "";
  background: var(--gold);
  box-shadow: 0 0 20px rgba(216, 149, 45, .45);
}

.intro-brand .eyebrow {
  color: rgba(232, 213, 173, .7);
  font-size: 11px;
}

.intro-brand .eyebrow::before {
  display: none;
}

.intro-brand img {
  width: 198px;
  margin: 16px 0 10px;
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, .66));
}

.intro-brand strong {
  max-width: 430px;
  margin: 0 0 28px;
  color: var(--cream);
  font-family: var(--display);
  font-size: clamp(23px, 3vw, 36px);
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: 1.08;
  text-transform: uppercase;
}

.intro-brand p {
  margin-bottom: 26px;
  color: rgba(247, 234, 208, .56);
  font-size: 15px;
  letter-spacing: .05em;
}

.enter-button {
  width: 220px;
  border-color: rgba(216, 149, 45, .52);
  border-radius: 2px;
  background: rgba(8, 5, 3, .74);
}

.enter-button:hover {
  color: var(--cream);
  background: var(--red);
}

.hero-main-logo {
  display: block;
  width: 244px;
  margin: -18px 0 22px;
  filter: drop-shadow(0 16px 26px rgba(0, 0, 0, .54));
}

.hero-food {
  margin-left: clamp(-64px, -4vw, -38px);
}

.hero-burger {
  width: min(97%, 600px);
}

.cow-card {
  width: clamp(150px, 11vw, 184px);
}

.cow-hint {
  top: -38px;
  padding: 9px 13px;
  font-size: 13px;
}

.pacman-runner {
  position: relative;
  z-index: 2;
  width: calc(100% + (2 * var(--gutter)));
  height: 92px;
  margin: -48px calc(-1 * var(--gutter)) 48px;
  overflow: hidden;
}

.pacman-track,
.pacman-eaten {
  position: absolute;
  top: 50%;
  left: 0;
  height: 24px;
  transform: translateY(-50%);
}

.pacman-track {
  right: 0;
  background: radial-gradient(circle, var(--paper) 0 4px, transparent 4.5px) 0 50% / 44px 24px repeat-x;
  opacity: .8;
}

.pacman-eaten {
  z-index: 1;
  width: 0;
  background: #0b0806;
  animation: pacman-eat 9s linear infinite;
}

.pacman-runner img {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 0;
  width: 84px;
  height: 84px;
  object-fit: contain;
  filter: drop-shadow(0 8px 13px rgba(0, 0, 0, .5));
  animation: pacman-ride 9s linear infinite;
}

@keyframes pacman-ride {
  from { transform: translate(-105px, -50%); }
  to { transform: translate(calc(100vw + 25px), -50%); }
}

@keyframes pacman-eat {
  from { width: 0; }
  to { width: 100%; }
}

.menu-board-top > img[src$="burger-texas.png"] {
  width: 205px;
}

.menu-board-top > img[src$="chicken-menu.png"],
.menu-board-top > img[src$="sosevi-transparent.png"] {
  width: 185px;
  height: 150px;
}

.menu-item .price b {
  font: inherit;
  font-weight: inherit;
}

.menu-item.is-burger {
  align-items: center;
  grid-template-columns: minmax(88px, 1fr) minmax(210px, 300px);
  gap: 7px 14px;
}

.burger-size-options {
  display: grid;
  width: 100%;
  margin: 0 0 9px;
  grid-column: 2;
  grid-row: 1;
}

.burger-size-guide {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.burger-item-prices {
  display: grid;
  width: 100%;
  color: var(--red);
  font-family: var(--display);
  font-size: 16px;
  grid-column: 2;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.burger-item-prices b {
  font-weight: 400;
  text-align: center;
}

.menu-item.is-burger h4 {
  grid-column: 1;
}

.menu-item.is-burger p {
  width: 100%;
  grid-column: 1 / -1;
}

.menu-item.is-burger.has-size-guide h4,
.menu-item.is-burger.has-size-guide .burger-item-prices {
  grid-row: 2;
}

.menu-item.is-burger.has-size-guide p {
  grid-row: 3;
}

.generator-heading > p {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .22em;
  line-height: 1.35;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .site-nav {
    gap: clamp(18px, 2.4vw, 32px);
  }

  .hero-main-logo {
    width: 210px;
  }

  .hero-food {
    margin-left: -28px;
  }
}

@media (max-width: 820px) {
  .saloon-intro {
    padding: 16px;
  }

  .intro-glow {
    width: calc(100vw - 30px);
    height: min(590px, calc(100svh - 30px));
  }

  .saloon-gates {
    width: calc(100vw - 46px);
    height: min(558px, calc(100svh - 46px));
  }

  .hero-main-logo {
    width: 190px;
    margin-inline: auto;
  }

  .hero-food {
    margin-left: 0;
  }

  .hero-food .food-click-label {
    display: none;
  }

  .mobile-smash-cta {
    position: absolute;
    z-index: 8;
    right: 24px;
    bottom: 34px;
    display: block;
    width: max-content;
    max-width: calc(100% - 190px);
    padding: 12px 15px;
    color: var(--ink);
    background: var(--paper);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .34);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .11em;
    line-height: 1.15;
    text-align: center;
    text-transform: uppercase;
    transform: rotate(-2deg);
  }

  .mobile-smash-cta:focus-visible,
  .mobile-smash-cta:active {
    color: var(--cream);
    background: var(--red);
  }

  .cow-card {
    width: 112px;
  }

  .cow-hint {
    top: -32px;
    font-size: 11px;
  }

  .pacman-runner {
    width: calc(100% + 48px);
    margin-inline: -24px;
  }

  .menu-board-top > img[src$="burger-texas.png"],
  .menu-board-top > img[src$="chicken-menu.png"],
  .menu-board-top > img[src$="sosevi-transparent.png"] {
    width: 145px;
    height: 112px;
  }
}

@media (max-width: 560px) {
  .intro-brand {
    width: 76vw;
  }

  .intro-brand::before {
    margin-bottom: 15px;
  }

  .intro-brand img {
    width: 145px;
    margin-top: 12px;
  }

  .intro-brand strong {
    font-size: 23px;
  }

  .intro-brand p {
    font-size: 13px;
  }

  .skip-intro {
    right: 13px;
    bottom: 9px;
  }

  .hero-main-logo {
    width: 168px;
    margin-top: -6px;
  }

  .mobile-smash-cta {
    right: 18px;
    bottom: 30px;
    max-width: calc(100% - 164px);
    padding: 11px 12px;
    font-size: 10px;
  }

  .pacman-runner {
    height: 74px;
    margin-top: -24px;
    margin-bottom: 35px;
  }

  .pacman-runner img {
    width: 66px;
    height: 66px;
  }

  .pacman-track {
    background-size: 34px 20px;
  }

  .menu-item.is-burger {
    grid-template-columns: minmax(72px, 1fr) minmax(200px, 230px);
    gap-inline: 10px;
  }

  .burger-item-prices {
    font-size: 13px;
  }

  .menu-board-top > img[src$="burger-texas.png"],
  .menu-board-top > img[src$="chicken-menu.png"],
  .menu-board-top > img[src$="sosevi-transparent.png"] {
    width: 108px;
    height: 96px;
  }

  .generator-heading > p {
    font-size: 12px;
  }

  /* Mobile showcase: one centered card followed by a clean two-column grid. */
  .showcase {
    display: block;
    min-height: auto;
    padding-bottom: 112px;
    overflow: hidden;
  }

  .showcase-wheel {
    display: grid;
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    margin: 54px 0 0;
    align-items: stretch;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .showcase-wheel::before,
  .showcase-wheel::after {
    display: none;
  }

  .wheel-card,
  .wheel-fries,
  .wheel-potato,
  .wheel-sweet,
  .wheel-sandwich,
  .wheel-chicken {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: none;
    transform: none;
  }

  .wheel-fries {
    width: calc((100% - 16px) / 2);
    justify-self: center;
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .wheel-chicken {
    grid-column: 1;
    grid-row: 2;
  }

  .wheel-potato {
    grid-column: 2;
    grid-row: 2;
  }

  .wheel-sandwich {
    grid-column: 1;
    grid-row: 3;
  }

  .wheel-sweet {
    grid-column: 2;
    grid-row: 3;
  }

  .wheel-card:hover,
  .wheel-card:focus-visible {
    transform: translateY(-4px);
  }

  .wheel-card img {
    width: 70%;
    height: 70%;
  }

  .wheel-sauces img {
    width: 100%;
    height: 100%;
  }

  .wheel-card span {
    right: auto;
    bottom: 8%;
    left: 50%;
    width: max-content;
    max-width: calc(100% - 16px);
    padding: 5px 6px;
    font-size: clamp(10px, 3vw, 13px);
    line-height: 1.15;
    text-align: center;
    white-space: normal;
    transform: translateX(-50%);
  }
}

@media (max-width: 380px) {
  .showcase-wheel {
    gap: 12px;
  }

  .wheel-fries {
    width: calc((100% - 12px) / 2);
  }

  .wheel-card span {
    font-size: 10px;
  }
}

/* Final mobile alignment fixes: cow speech, reviews CTA and footer navigation. */
@media (max-width: 820px) {
  .cow-speech {
    top: 15%;
    right: auto;
    left: calc(100% + 9px);
    padding: 9px 12px;
    font-size: 16px;
    white-space: nowrap;
    transform: scale(.5) rotate(8deg);
    transform-origin: left center;
  }

  .cow-card.is-mooing .cow-speech {
    transform: scale(1) rotate(8deg);
  }

  .reviews {
    padding-bottom: 105px;
  }

  .review-stack {
    gap: 34px;
    padding-top: 44px;
  }

  .review-card,
  .review-card:nth-child(2),
  .review-card:nth-child(3),
  .review-card.featured,
  .review-card.featured.in-view {
    z-index: 1;
    margin: 0;
    overflow: visible;
  }

  .review-card .quote-mark {
    z-index: 3;
  }

  .reviews-link {
    position: static;
    inset: auto;
    margin-top: 36px;
    justify-self: start;
  }

  .site-footer {
    gap: 28px;
  }

  .footer-links {
    width: 100%;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 12px;
  }

  .footer-links a {
    font-size: clamp(9px, 3vw, 12px);
    letter-spacing: .1em;
    white-space: nowrap;
  }
}

@media (max-width: 380px) {
  .cow-speech {
    left: calc(100% + 4px);
    padding: 8px 10px;
    font-size: 15px;
  }

  .footer-links {
    gap: 8px;
  }
}
