:root {
  --ink: #080808;
  --ink-soft: #160d0e;
  --ember: #e22027;
  --ember-dark: #991117;
  --honey: #ffb9bc;
  --paper: #f7f5f2;
  --muted: #aaa3a0;
  --line: rgba(247, 245, 242, 0.16);
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.8rem 1rem;
  transform: translateY(-160%);
  border-radius: 0.2rem;
  background: var(--paper);
  color: var(--ink);
  font-weight: 700;
}

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem clamp(1.25rem, 4vw, 4.5rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  width: max-content;
}

.brand-mark {
  display: block;
  width: 3rem;
  height: 3rem;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-wordmark {
  display: grid;
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 0.82;
}

.brand-wordmark i,
.footer-brand i {
  color: var(--ember);
  font-style: normal;
}

.brand-wordmark small {
  margin-top: 0.24rem;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--body);
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.25em;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3rem);
}

.site-header nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-header nav a::after {
  position: absolute;
  bottom: -0.4rem;
  left: 0;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--ember);
  content: "";
  transition: transform 240ms ease;
}

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

.header-order {
  justify-self: end;
  padding: 0.72rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
}

.header-order:hover,
.header-order:focus-visible {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  min-height: min(900px, 100svh);
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-video {
  position: absolute;
  z-index: -4;
  top: -8%;
  left: -2%;
  width: 104%;
  height: 116%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
}

.hero-shade {
  position: absolute;
  z-index: -3;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 4, 4, 0.95) 0%, rgba(5, 4, 4, 0.77) 38%, rgba(5, 4, 4, 0.17) 76%, rgba(5, 4, 4, 0.4) 100%),
    linear-gradient(0deg, rgba(5, 4, 4, 0.78) 0%, transparent 34%);
}

.hero-glow {
  position: absolute;
  z-index: -2;
  top: 12%;
  right: 14%;
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  background: rgba(226, 32, 39, 0.2);
  filter: blur(80px);
  will-change: transform;
}

.hero-grid {
  position: absolute;
  z-index: -1;
  right: -8vw;
  bottom: -25vh;
  width: min(52vw, 46rem);
  aspect-ratio: 1;
  transform: rotate(15deg);
  background-image: radial-gradient(rgba(255, 255, 255, 0.26) 1px, transparent 1.5px);
  background-size: 17px 17px;
  opacity: 0.22;
  mask-image: radial-gradient(circle, black 0%, transparent 67%);
  will-change: transform;
}

.hero-content {
  width: min(760px, calc(100% - 2.5rem));
  margin: 7rem auto 4rem;
  transform: translateX(min(-18vw, -7rem));
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.3rem;
  color: var(--ember);
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  width: 2.5rem;
  height: 2px;
  background: currentColor;
  content: "";
}

.hero h1,
.section h2,
.visit h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.7rem, 9.6vw, 9.6rem);
  font-weight: 900;
  font-kerning: normal;
  font-feature-settings: "kern" 1;
  letter-spacing: 0.008em;
  line-height: 0.83;
  text-transform: uppercase;
  word-spacing: 0.035em;
}

.hero h1 em,
.section h2 em,
.visit h2 em {
  color: var(--ember);
  font-style: italic;
}

.hero-copy {
  max-width: 37rem;
  margin: 2.1rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.1rem;
}

.button {
  display: inline-flex;
  min-height: 3.35rem;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 0.85rem 1.25rem;
  border: 1px solid transparent;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button-primary {
  background: var(--ember);
  color: white;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #f33139;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(7, 6, 6, 0.22);
  backdrop-filter: blur(8px);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: var(--paper);
  color: var(--ink);
}

.hero-location {
  position: absolute;
  right: clamp(1.25rem, 4vw, 4.5rem);
  bottom: 2.6rem;
  display: grid;
  padding-left: 1rem;
  border-left: 2px solid var(--ember);
  line-height: 1.25;
}

.hero-location span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-location strong {
  margin-top: 0.3rem;
  font-family: var(--display);
  font-size: 1.3rem;
  letter-spacing: 0.02em;
}

.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: clamp(1.25rem, 4vw, 4.5rem);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scroll-cue i {
  position: relative;
  display: block;
  width: 2.6rem;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.25);
}

.scroll-cue i::after {
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: var(--ember);
  content: "";
  animation: scroll-line 1.7s ease-in-out infinite;
}

.flavor-ticker {
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--ember);
  color: #fff;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.ticker-track i {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.54rem;
  font-style: normal;
}

.section {
  position: relative;
  overflow: hidden;
  padding: clamp(5.5rem, 10vw, 9rem) clamp(1.25rem, 6vw, 6rem);
}

.about {
  min-height: 700px;
  background: var(--paper);
  color: var(--ink);
}

.about-grid {
  display: grid;
  max-width: 1320px;
  margin: 0 auto;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: clamp(3rem, 8vw, 10rem);
}

.about .section-kicker {
  max-width: 1320px;
  margin-inline: auto;
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
}

.about h2,
.reviews h2 {
  font-size: clamp(4rem, 8vw, 8.1rem);
}

.about-copy {
  position: relative;
  z-index: 2;
  max-width: 34rem;
  padding-bottom: 0.5rem;
}

.about-copy p {
  margin: 1.4rem 0 0;
  color: #5d5651;
}

.about-copy .lead {
  margin-top: 0;
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 1.72rem);
  font-weight: 600;
  line-height: 1.5;
}

.sauce-orbit {
  position: absolute;
  border: 1px solid rgba(226, 32, 39, 0.2);
  border-radius: 50%;
  will-change: transform;
}

.sauce-orbit::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 0 0.5rem rgba(226, 32, 39, 0.12);
  content: "";
}

.sauce-orbit-one {
  right: -12rem;
  bottom: -17rem;
  width: 38rem;
  height: 38rem;
}

.sauce-orbit-two {
  top: 7rem;
  right: 20%;
  width: 9rem;
  height: 9rem;
}

.menu {
  background:
    radial-gradient(circle at 92% 10%, rgba(226, 32, 39, 0.18), transparent 25rem),
    var(--ink);
}

.menu-heading {
  display: flex;
  max-width: 1320px;
  margin: 0 auto clamp(3.5rem, 7vw, 6rem);
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
}

.section-kicker-light {
  color: rgba(255, 255, 255, 0.5);
}

.menu h2 {
  font-size: clamp(4.6rem, 8.8vw, 8.6rem);
}

.menu-heading > p {
  max-width: 25rem;
  margin: 0 0 0.5rem;
  color: var(--muted);
}

.menu-grid {
  display: grid;
  max-width: 1320px;
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.menu-card {
  position: relative;
  display: flex;
  min-height: 28rem;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.4rem, 3vw, 2.5rem);
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0d0b0b;
  isolation: isolate;
  transition: background 280ms ease, transform 280ms ease;
}

.menu-card::before {
  position: absolute;
  z-index: 4;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--ember);
  content: "";
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-card:hover,
.menu-card:focus-within {
  background: #141010;
  transform: translateY(-4px);
}

.menu-card:hover::before {
  transform: scaleX(1);
}

.menu-card-media {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  left: 0;
  height: 60%;
  overflow: hidden;
}

.menu-card-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, #0d0b0b 100%);
  content: "";
}

.menu-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1), filter 300ms ease;
}

.menu-card:hover .menu-card-media img {
  transform: scale(1.055);
  filter: saturate(1.08);
}

.menu-number {
  position: absolute;
  z-index: 3;
  top: 1rem;
  left: 1rem;
  padding: 0.32rem 0.46rem;
  background: var(--ember);
  color: #fff;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.menu-icon {
  position: absolute;
  z-index: 3;
  top: 0.8rem;
  right: 1rem;
  color: rgba(255, 255, 255, 0.22);
  font-family: var(--display);
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  transition: color 260ms ease, transform 360ms ease;
}

.menu-card:hover .menu-icon {
  transform: rotate(-7deg) scale(1.08);
  color: rgba(255, 255, 255, 0.38);
}

.menu-card h3 {
  position: relative;
  z-index: 2;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.06;
  text-transform: uppercase;
}

.menu-card p {
  position: relative;
  z-index: 2;
  max-width: 20rem;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.9rem;
  line-height: 1.6;
}

.flavor-finder {
  max-width: 1320px;
  margin: clamp(6rem, 10vw, 9rem) auto 0;
  padding-top: clamp(4rem, 7vw, 6rem);
  border-top: 1px solid var(--line);
  scroll-margin-top: 2rem;
}

.flavor-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
  align-items: end;
  gap: clamp(2rem, 7vw, 7rem);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.flavor-label {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--ember);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.flavor-heading h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4rem, 7.5vw, 7.6rem);
  font-weight: 900;
  letter-spacing: 0.008em;
  line-height: 0.84;
  text-transform: uppercase;
}

.flavor-heading h3 em {
  color: var(--ember);
  font-style: italic;
}

.flavor-heading > p {
  max-width: 33rem;
  margin: 0 0 0.25rem;
  color: rgba(255, 255, 255, 0.64);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.65;
}

.heat-selector {
  position: relative;
  padding: clamp(1.3rem, 3vw, 2.2rem);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background:
    linear-gradient(110deg, rgba(226, 32, 39, 0.11), transparent 48%),
    #100c0d;
}

.heat-selector-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.heat-selector-top label {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.heat-selector-top output {
  color: var(--ember);
  font-family: var(--display);
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.heat-selector input[type="range"] {
  width: 100%;
  height: 0.72rem;
  margin: 0;
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background:
    linear-gradient(
      90deg,
      var(--ember) 0%,
      var(--ember) var(--heat-progress, 0%),
      rgba(255, 255, 255, 0.12) var(--heat-progress, 0%),
      rgba(255, 255, 255, 0.12) 100%
    );
  cursor: pointer;
}

.heat-selector input[type="range"]::-webkit-slider-thumb {
  width: 1.55rem;
  height: 1.55rem;
  margin-top: -0.415rem;
  appearance: none;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 0 0.35rem rgba(226, 32, 39, 0.22);
}

.heat-selector input[type="range"]::-webkit-slider-runnable-track {
  height: 0.72rem;
  border-radius: 999px;
  background: transparent;
}

.heat-selector input[type="range"]::-moz-range-thumb {
  width: 1.18rem;
  height: 1.18rem;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 0 0.35rem rgba(226, 32, 39, 0.22);
}

.heat-selector input[type="range"]::-moz-range-track {
  height: 0.72rem;
  border-radius: 999px;
  background: transparent;
}

.heat-labels {
  display: grid;
  margin-top: 1.1rem;
  grid-template-columns: repeat(4, 1fr);
}

.heat-labels button {
  min-height: 2.6rem;
  padding: 0.45rem;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: rgba(255, 255, 255, 0.46);
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.heat-labels button:last-child {
  border-right: 0;
}

.heat-labels button:hover,
.heat-labels button:focus-visible {
  color: #fff;
}

.heat-labels button[aria-current="true"] {
  background: var(--ember);
  color: #fff;
}

.flavor-guidance {
  min-height: 1.5rem;
  margin: 1.2rem 0 2rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.875rem;
}

.heat-note {
  margin: 1rem 0 0;
  max-width: 50rem;
  color: #b5acad;
  font-size: 0.875rem;
  line-height: 1.6;
}

.flavor-results { min-height: 18rem; }
.flavor-group + .flavor-group { margin-top: 2rem; }
.flavor-group > h4 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.flavor-group > h4 span { color: var(--ember); font-size: 1rem; }
.flavor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 1rem;
}
.flavor-card {
  min-height: 15rem;
  position: relative;
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(226, 32, 39, 0.35);
  background: linear-gradient(125deg, rgba(226,32,39,.08), transparent 70%), #0d0a0a;
  animation: flavor-arrive 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
}
.flavor-card[hidden], .flavor-group[hidden] { display: none; }
@keyframes flavor-arrive {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.flavor-card-media { aspect-ratio: 3 / 2; overflow: hidden; background: #0a0707; }
.flavor-card-media img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 450ms ease; }
.flavor-card:hover .flavor-card-media img { transform: scale(1.035); }
.flavor-card-copy { padding: 1.3rem; }
.flavor-heat {
  color: var(--ember);
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.flavor-card h5 {
  margin: 0.6rem 0 0;
  font-family: var(--display);
  font-size: clamp(1.65rem, 2.5vw, 2.3rem);
  font-weight: 900;
  letter-spacing: 0.025em;
  line-height: 1.08;
  text-transform: uppercase;
}
.flavor-card p { margin: 0.8rem 0 0; color: #bcb4b4; font-size: 1rem; line-height: 1.55; }

.menu-link {
  display: flex;
  width: max-content;
  max-width: 1320px;
  align-items: center;
  gap: 2rem;
  margin: 2.5rem auto 0;
  margin-right: max(calc((100vw - 1320px) / 2), 0px);
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--ember);
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.finder-menu-link {
  margin: 2.7rem 0 0 auto;
}

.reviews {
  background:
    radial-gradient(circle at 10% 12%, rgba(226, 32, 39, 0.18), transparent 24rem),
    #0b0808;
  color: var(--paper);
}

.reviews-layout {
  display: grid;
  max-width: 1320px;
  margin: 0 auto;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(3rem, 8vw, 9rem);
}

.reviews > .section-kicker {
  max-width: 1320px;
  margin-inline: auto;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.reviews-note {
  color: rgba(255, 255, 255, 0.58);
}

.review-stack {
  display: grid;
  gap: 1rem;
}

blockquote {
  position: relative;
  margin: 0;
  padding: clamp(2rem, 4vw, 3.3rem);
  overflow: hidden;
  background: var(--paper);
}

blockquote:first-child {
  transform: rotate(1.2deg);
  color: var(--ink);
}

blockquote:last-child {
  transform: translateX(-2rem) rotate(-1deg);
  background: var(--ember);
  color: #fff;
}

.quote-mark {
  position: absolute;
  top: -1.2rem;
  right: 1.2rem;
  color: rgba(226, 32, 39, 0.2);
  font-family: Georgia, serif;
  font-size: 11rem;
  line-height: 1;
}

blockquote p {
  position: relative;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3.2vw, 2.7rem);
  font-weight: 700;
  line-height: 1.18;
}

blockquote footer {
  display: flex;
  gap: 0.7rem;
  margin-top: 2rem;
  color: var(--ember-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

blockquote:last-child footer {
  color: #fff;
}

blockquote footer span {
  color: #918881;
}

blockquote:last-child .quote-mark {
  color: rgba(0, 0, 0, 0.16);
}

blockquote:last-child footer span {
  color: rgba(255, 255, 255, 0.68);
}

.visit {
  position: relative;
  padding: clamp(5.5rem, 10vw, 9rem) clamp(1.25rem, 6vw, 6rem);
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(8, 7, 7, 0.96), rgba(8, 7, 7, 0.82)),
    url("/assets/hero-poster.jpg") center 58% / cover;
}

.visit::after {
  position: absolute;
  right: -8rem;
  bottom: -13rem;
  width: 30rem;
  height: 30rem;
  border: 5rem solid rgba(255, 255, 255, 0.025);
  border-radius: 50%;
  content: "";
}

.visit-glow {
  position: absolute;
  top: -15rem;
  left: 35%;
  width: 42rem;
  height: 42rem;
  border-radius: 50%;
  background: rgba(226, 32, 39, 0.22);
  filter: blur(90px);
  will-change: transform;
}

.visit-content {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
}

.visit h2 {
  font-size: clamp(5rem, 10vw, 9.8rem);
}

.visit-actions {
  display: grid;
  margin-top: clamp(3.5rem, 7vw, 6rem);
  grid-template-columns: 1.25fr 1fr 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.visit-card {
  position: relative;
  display: grid;
  min-height: 12rem;
  align-content: space-between;
  padding: 1.7rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 220ms ease;
}

a.visit-card:hover,
a.visit-card:focus-visible {
  background: rgba(255, 255, 255, 0.06);
}

.visit-label {
  color: var(--ember);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.visit-card strong {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  line-height: 1.12;
  text-transform: uppercase;
}

.visit-arrow {
  position: absolute;
  top: 1.45rem;
  right: 1.45rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 1.4rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem clamp(1.25rem, 6vw, 6rem) 6rem;
  border-top: 1px solid var(--line);
  background: #050404;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.footer-logo-mark {
  display: block;
  width: 2.75rem;
  height: 2.75rem;
  object-fit: contain;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  color: var(--muted);
  font-size: 0.76rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--paper);
}

.site-footer > p {
  justify-self: end;
  margin: 0;
  color: #625d59;
  font-size: 0.7rem;
}

.design-credit {
  grid-column: 1 / -1;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  text-align: center;
  color: #a79f9f;
  font-size: 0.875rem;
}
.design-credit a { color: #fff; text-underline-offset: 0.25em; }
.design-credit a:hover, .design-credit a:focus-visible { color: var(--ember); text-decoration: underline; }

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

.reveal {
  opacity: 0;
  transform: translateY(20px);
  animation: reveal-up 700ms 150ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.reveal-delay-1 {
  animation-delay: 260ms;
}

.reveal-delay-2 {
  animation-delay: 380ms;
}

.reveal-delay-3 {
  animation-delay: 500ms;
}

@keyframes reveal-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scroll-line {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    display: none;
  }

  .hero-content {
    margin-top: 8rem;
    transform: none;
  }

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

  .about-copy {
    max-width: 42rem;
  }

  .menu-heading {
    display: grid;
  }

  .flavor-heading {
    grid-template-columns: 1fr;
  }

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

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

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

  .visit-card:first-child {
    grid-column: 1 / -1;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .site-footer > p {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 4.35rem;
  }

  .site-header {
    padding: 1rem 1rem;
  }

  .header-order {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero-video {
    left: -38%;
    width: 165%;
    object-position: 55% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 4, 4, 0.89), rgba(5, 4, 4, 0.28)),
      linear-gradient(0deg, rgba(5, 4, 4, 0.92), transparent 58%);
  }

  .hero-content {
    width: calc(100% - 2rem);
    margin: 7.5rem 1rem 7rem;
  }

  .hero h1 {
    font-size: clamp(4rem, 20vw, 6.3rem);
    line-height: 0.87;
  }

  .hero-copy {
    max-width: 31rem;
    color: rgba(255, 255, 255, 0.78);
  }

  .hero-actions {
    display: grid;
  }

  .button {
    justify-content: space-between;
  }

  .hero-location {
    right: 1rem;
    bottom: 1.25rem;
  }

  .scroll-cue {
    display: none;
  }

  .section,
  .visit {
    padding-inline: 1rem;
  }

  .about {
    min-height: auto;
  }

  .about h2,
  .reviews h2,
  .menu h2 {
    font-size: clamp(3.8rem, 18vw, 5.8rem);
    line-height: 0.87;
  }

  .sauce-orbit-two {
    display: none;
  }

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

  .menu-card {
    min-height: 25rem;
  }

  .menu-link {
    margin-right: 0;
  }

  .flavor-finder {
    padding-top: 3.5rem;
  }

  .flavor-heading h3 {
    font-size: clamp(3.8rem, 18vw, 5.8rem);
    line-height: 0.87;
  }

  .heat-selector {
    padding: 1rem;
  }

  .heat-labels button {
    padding-inline: 0.15rem;
    font-size: 0.84rem;
    letter-spacing: 0.02em;
  }

  .flavor-grid {
    display: flex;
    margin-right: -1rem;
    padding: 0.8rem 1rem 1.2rem 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .flavor-card {
    flex: 0 0 min(82vw, 21rem);
    scroll-snap-align: center;
  }

  blockquote:last-child {
    transform: translateX(0) rotate(-1deg);
  }

  .visit h2 {
    font-size: clamp(4.4rem, 21vw, 6.4rem);
    line-height: 0.87;
  }

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

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

  .site-footer {
    padding-bottom: 2.5rem;
  }

  .footer-links {
    display: grid;
    gap: 0.9rem;
  }

  .mobile-order-bar {
    position: fixed;
    z-index: 30;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr auto;
    padding: 0.55rem;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(5, 4, 4, 0.92);
    backdrop-filter: blur(16px);
  }

  .mobile-order-bar a {
    display: flex;
    min-height: 3.25rem;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1rem;
    background: var(--ember);
    font-family: var(--display);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .mobile-order-bar a:last-child {
    margin-left: 0.5rem;
    background: var(--paper);
    color: var(--ink);
  }
}

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

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

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

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

/* Review-only palette overrides: layout, media and behavior remain unchanged. */
:root { --ink: #111111; --ink-soft: #f8f8f8; --paper: #ffffff; --muted: #555555; --line: rgba(17,17,17,.16); --honey: #c71920; }
html, body { background: #fff; color: #111; color-scheme: light; }
.site-header { background: rgba(255,255,255,.94); border-bottom-color: var(--line); }
.brand-wordmark small, .site-header nav a { color: #333; }
.header-order { color: #c71920; border-color: #c71920; }
.header-order:hover, .header-order:focus-visible { background: #c71920; border-color: #c71920; color: #fff; }
.hero-shade { background: linear-gradient(90deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.87) 38%, rgba(255,255,255,.24) 76%, rgba(255,255,255,.46) 100%), linear-gradient(0deg, rgba(255,255,255,.86) 0%, transparent 34%); }
.hero-grid { background-image: radial-gradient(rgba(17,17,17,.26) 1px, transparent 1.5px); }
.hero-copy, .hero-location span, .scroll-cue { color: #333; }
.scroll-cue i { background: rgba(17,17,17,.25); }
.button-ghost { border-color: rgba(17,17,17,.42); background: rgba(255,255,255,.8); color: #111; }
.button-ghost:hover, .button-ghost:focus-visible { background: #111; color: #fff; }
.about, .menu, .reviews, .site-footer { background: #fff; color: #111; }
.about-copy p { color: #444; }
.section-kicker-light { color: #c71920; }
.menu-card, .menu-card:hover, .menu-card:focus-within { background: #fff; }
.menu-card-media::after { background: linear-gradient(180deg, transparent 48%, #fff 100%); }
.menu-card p, .flavor-heading > p, .heat-selector-top label, .flavor-guidance, .heat-note, .flavor-card p, .reviews-note { color: #444; }
.heat-selector { background: #fff; border-color: var(--line); }
.heat-selector input[type="range"] { border-color: var(--line); background: linear-gradient(90deg, var(--ember) 0%, var(--ember) var(--heat-progress,0%), #dedede var(--heat-progress,0%), #dedede 100%); }
.heat-labels button { color: #333; border-right-color: var(--line); }
.heat-labels button:hover, .heat-labels button:focus-visible { color: #c71920; }
.heat-labels button[aria-current="true"] { color: #fff; }
.flavor-card, .flavor-card-media { background: #fff; }
blockquote { background: #f5f5f5; }
blockquote:last-child { background: #fff0f1; color: #111; }
blockquote:last-child footer { color: #991117; }
blockquote footer span, blockquote:last-child footer span { color: #555; }
blockquote:last-child .quote-mark { color: rgba(226,32,39,.2); }
.visit { background: linear-gradient(115deg,rgba(255,255,255,.97),rgba(255,255,255,.90)),url("/assets/hero-poster.jpg") center 58% / cover; }
.visit::after { border-color: rgba(226,32,39,.04); }
.visit-glow { background: rgba(226,32,39,.08); }
a.visit-card:hover, a.visit-card:focus-visible { background: rgba(226,32,39,.04); }
.visit-arrow { color: #c71920; }
.footer-links a:hover, .footer-links a:focus-visible { color: #c71920; }
.site-footer > p, .design-credit { color: #555; }
.design-credit a { color: #c71920; }
.mobile-order-bar { background: rgba(255,255,255,.96); border-top-color: var(--line); }
.mobile-order-bar a { color: #fff; }
.mobile-order-bar a:last-child { background: #f1f1f1; color: #111; }
@media(max-width:640px) {
 .hero-shade { background: linear-gradient(90deg,rgba(255,255,255,.95),rgba(255,255,255,.65)),linear-gradient(0deg,rgba(255,255,255,.96),transparent 58%); }
 .hero-copy { color: #333; }
}
