:root {
  --ink: #160d0c;
  --ink-soft: #271716;
  --cream: #f5eddf;
  --cream-deep: #e9ddca;
  --paper: #fffaf1;
  --red: #a2202d;
  --red-bright: #c92c3d;
  --red-dark: #6f1520;
  --gold: #d8a854;
  --white: #fffdf8;
  --line-dark: rgba(22, 13, 12, 0.18);
  --line-light: rgba(255, 253, 248, 0.18);
  --serif: "DM Serif Display", Georgia, serif;
  --condensed: "Barlow Condensed", "Arial Narrow", sans-serif;
  --sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: min(1180px, calc(100vw - 48px));
  --radius: 22px;
}

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

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

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 16px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.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;
}

.announcement {
  min-height: 34px;
  padding: 7px 24px;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--condensed);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.announcement a {
  text-underline-offset: 3px;
}

.announcement-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f3c779;
  box-shadow: 0 0 0 4px rgba(243, 199, 121, 0.15);
}

.announcement-divider {
  color: rgba(255, 255, 255, 0.5);
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 76px;
  background: rgba(22, 13, 12, 0.95);
  border-bottom: 1px solid var(--line-light);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: var(--shell);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 194px;
}

.brand img,
.footer-brand img {
  width: 100%;
  height: auto;
  filter: brightness(0) saturate(100%) invert(22%) sepia(46%) saturate(2052%) hue-rotate(316deg) brightness(86%) contrast(91%);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links > a:not(.button) {
  color: rgba(255, 253, 248, 0.8);
  font-family: var(--condensed);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.nav-links > a:not(.button):hover {
  color: var(--white);
}

.nav-call {
  display: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  background: transparent;
  border: 1px solid var(--line-light);
  border-radius: 50%;
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 1px;
  margin: 4px 0;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

.button {
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-family: var(--condensed);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-small {
  min-height: 42px;
  padding: 0 20px;
  background: var(--red);
  color: var(--white);
  font-size: 0.78rem;
}

.button-small:hover,
.button-primary:hover {
  background: var(--red-bright);
}

.button-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 18px 40px rgba(75, 7, 17, 0.28);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.button-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  min-height: calc(100vh - 110px);
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 34%, rgba(138, 30, 43, 0.22), transparent 32%),
    radial-gradient(circle at 76% 98%, rgba(216, 168, 84, 0.08), transparent 26%),
    var(--ink);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  pointer-events: none;
  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='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
}

.hero-shell {
  position: relative;
  z-index: 2;
  width: var(--shell);
  min-height: calc(100vh - 110px);
  margin: 0 auto;
  padding: 72px 0 92px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 0.72fr);
  align-items: center;
  gap: clamp(48px, 7vw, 108px);
}

.eyebrow {
  margin: 0 0 22px;
  color: rgba(255, 253, 248, 0.67);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--condensed);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 30px;
  height: 1px;
  background: var(--red-bright);
}

.eyebrow-dark {
  color: rgba(22, 13, 12, 0.58);
}

.hero h1,
.section-heading h2,
.story-copy h2,
.visit-heading h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.91;
}

.hero h1 {
  max-width: 710px;
  font-size: clamp(4rem, 7.2vw, 7.2rem);
}

.hero h1 em,
.section-heading h2 em,
.story-copy h2 em,
.visit-heading h2 em,
.final-cta h2 em {
  color: var(--red-bright);
  font-weight: 400;
}

.hero-lede {
  max-width: 580px;
  margin: 30px 0 0;
  color: rgba(255, 253, 248, 0.7);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.75;
}

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

.hero-details {
  max-width: 540px;
  margin-top: 46px;
  padding-top: 24px;
  border-top: 1px solid var(--line-light);
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 28px;
  font-size: 0.86rem;
  line-height: 1.5;
}

.hero-details div {
  display: grid;
  gap: 5px;
}

.hero-details a {
  text-decoration: none;
}

.detail-label {
  color: rgba(255, 253, 248, 0.42);
  font-family: var(--condensed);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  justify-self: end;
  width: min(100%, 500px);
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 0.79;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 240px 240px 24px 24px;
  background: var(--ink-soft);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35);
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.video-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15), transparent 40%, rgba(0, 0, 0, 0.55));
  pointer-events: none;
}

.video-topline {
  position: absolute;
  top: 32px;
  right: 36px;
  left: 36px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--condensed);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.video-topline span:first-child {
  display: flex;
  align-items: center;
  gap: 7px;
}

.video-topline i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ec4655;
  box-shadow: 0 0 0 4px rgba(236, 70, 85, 0.24);
}

.hero-mark {
  position: absolute;
  right: -54px;
  bottom: -42px;
  width: 122px;
  height: 122px;
  padding: 10px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--cream);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  right: max(24px, calc((100vw - 1180px) / 2 - 70px));
  bottom: 28px;
  color: rgba(255, 255, 255, 0.38);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--condensed);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: rotate(90deg) translateX(100%);
  transform-origin: right bottom;
}

.scroll-cue i {
  width: 40px;
  height: 1px;
  background: currentColor;
}

.ticker {
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: var(--red);
  color: var(--cream);
}

.ticker-track {
  width: max-content;
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 34px;
  animation: ticker 28s linear infinite;
}

.ticker-track span {
  font-family: var(--condensed);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ticker-track i {
  color: var(--gold);
  font-style: normal;
  font-size: 0.8rem;
}

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

.section-shell,
.story-shell,
.final-cta-shell,
.footer-shell {
  width: var(--shell);
  margin: 0 auto;
}

.menu-section {
  padding: clamp(92px, 11vw, 150px) 0;
  background: var(--cream);
}

.section-heading {
  margin-bottom: 52px;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 64px;
}

.section-heading h2,
.visit-heading h2 {
  font-size: clamp(3.5rem, 6.2vw, 6.3rem);
}

.heading-side {
  padding-bottom: 5px;
}

.heading-side p {
  margin: 0 0 20px;
  color: rgba(22, 13, 12, 0.63);
  font-size: 0.92rem;
  line-height: 1.75;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-family: var(--condensed);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.dish-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.66);
}

.dish-card-featured,
.dish-card-wide {
  grid-column: 1 / -1;
}

.dish-card-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(300px, 0.72fr);
}

.dish-media {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  background: #d5c6b2;
}

.dish-card-featured .dish-media {
  min-height: 500px;
}

.dish-card-wide .dish-media {
  min-height: 350px;
}

.dish-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 550ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.dish-card:hover .dish-media img {
  transform: scale(1.035);
}

.dish-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  padding: 10px 15px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--condensed);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.dish-copy {
  min-height: 220px;
  padding: 28px 30px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.dish-card-featured .dish-copy {
  min-height: 100%;
  padding: 44px;
}

.dish-kicker {
  margin: 0 0 8px;
  color: var(--red);
  font-family: var(--condensed);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.dish-copy h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
}

.dish-copy p:not(.dish-kicker) {
  max-width: 34ch;
  margin: 16px 0 0;
  color: rgba(22, 13, 12, 0.59);
  font-size: 0.82rem;
  line-height: 1.65;
}

.dish-order {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 1.25rem;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.dish-order:hover {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
  transform: rotate(8deg);
}

.story-section {
  position: relative;
  overflow: hidden;
  padding: clamp(90px, 10vw, 140px) 0;
  background:
    radial-gradient(circle at 20% 58%, rgba(197, 42, 58, 0.17), transparent 24%),
    var(--ink);
  color: var(--white);
}

.story-section::after {
  content: "SINFUL";
  position: absolute;
  right: -0.04em;
  bottom: -0.28em;
  color: rgba(255, 255, 255, 0.025);
  font-family: var(--condensed);
  font-size: clamp(10rem, 28vw, 28rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
  pointer-events: none;
}

.story-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: clamp(64px, 10vw, 140px);
}

.story-brand {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-light);
  border-radius: 50%;
}

.brand-ring {
  position: absolute;
  inset: 7%;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.story-brand img {
  position: relative;
  z-index: 1;
  width: 52%;
  height: auto;
  filter: drop-shadow(0 16px 20px rgba(0, 0, 0, 0.24));
}

.story-brand p {
  position: absolute;
  bottom: 10%;
  margin: 0;
  font-family: var(--condensed);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
}

.story-brand p span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.58rem;
}

.story-copy h2 {
  max-width: 780px;
  font-size: clamp(3.5rem, 6.2vw, 6.15rem);
}

.story-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  line-height: 1.8;
}

.story-points {
  max-width: 650px;
  margin-top: 46px;
  padding-top: 25px;
  border-top: 1px solid var(--line-light);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.story-points div {
  display: flex;
  gap: 13px;
}

.story-points strong {
  color: var(--red-bright);
  font-family: var(--serif);
  font-size: 0.82rem;
  font-weight: 400;
}

.story-points span {
  font-family: var(--condensed);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.45;
  text-transform: uppercase;
}

.visit-section {
  padding: clamp(92px, 11vw, 150px) 0;
  background: var(--paper);
}

.visit-heading {
  margin-bottom: 52px;
}

.visit-grid {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(340px, 0.8fr) minmax(0, 1.2fr);
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--cream);
}

.visit-card {
  padding: clamp(34px, 5vw, 60px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 60px;
}

.visit-address > p,
.hours-title {
  margin: 0 0 16px;
  color: var(--red);
  font-family: var(--condensed);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.visit-address h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.8vw, 3.45rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.06;
}

.visit-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover {
  background: var(--red);
}

.button-line {
  border-color: var(--line-dark);
  color: var(--ink);
}

.button-line:hover {
  border-color: var(--ink);
}

.hours-block {
  padding-top: 26px;
  border-top: 1px solid var(--line-dark);
}

.hours-block dl {
  margin: 0;
}

.hours-block dl > div {
  padding: 8px 0;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 0.8rem;
}

.hours-block dt {
  color: rgba(22, 13, 12, 0.63);
  font-weight: 500;
}

.hours-block dd {
  margin: 0;
  font-weight: 700;
  text-align: right;
}

.hours-note {
  margin: 12px 0 0;
  color: rgba(22, 13, 12, 0.45);
  font-size: 0.68rem;
}

.map-frame {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: #d9d1c3;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) sepia(0.22) contrast(0.9);
}

.map-frame > a {
  position: absolute;
  right: 22px;
  bottom: 22px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--condensed);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(90px, 11vw, 150px) 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(217, 168, 84, 0.17), transparent 27%),
    var(--red-dark);
  color: var(--white);
  text-align: center;
}

.final-cta::before,
.final-cta::after {
  content: "✦";
  position: absolute;
  color: rgba(255, 255, 255, 0.09);
  font-size: clamp(8rem, 20vw, 18rem);
  line-height: 1;
}

.final-cta::before {
  top: -0.2em;
  left: -0.08em;
}

.final-cta::after {
  right: -0.08em;
  bottom: -0.22em;
}

.final-cta-shell {
  position: relative;
  z-index: 2;
}

.final-cta .eyebrow {
  justify-content: center;
}

.final-cta h2 {
  font-size: clamp(3.7rem, 7vw, 7rem);
}

.final-cta h2 em {
  color: var(--cream);
}

.button-cream {
  margin-top: 38px;
  background: var(--cream);
  color: var(--ink);
}

.button-cream:hover {
  background: var(--white);
}

.social-strip {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--cream);
  color: var(--ink);
}

.social-strip-shell {
  width: var(--shell);
  min-height: 128px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.social-strip-copy {
  display: grid;
  gap: 4px;
}

.social-strip-copy > span {
  color: var(--red);
  font-family: var(--condensed);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.social-strip-copy strong {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 400;
  letter-spacing: -0.03em;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-links a {
  width: 54px;
  height: 54px;
  padding: 0;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--condensed);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.social-links a:hover {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

.social-links i {
  font-size: 1.15rem;
  line-height: 1;
}

.site-footer {
  padding: 74px 0 28px;
  background: #0d0808;
  color: var(--white);
}

.footer-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

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

.footer-brand p {
  margin: 15px 0 0;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-links > div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.36);
  font-family: var(--condensed);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-links a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.82rem;
  text-decoration: none;
}

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

.footer-bottom {
  grid-column: 1 / -1;
  margin-top: 12px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.32);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--condensed);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

@media (max-width: 1050px) {
  .hero-shell {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.65fr);
    gap: 44px;
  }

  .hero-mark {
    right: -20px;
  }

  .story-shell {
    gap: 68px;
  }

  .story-points {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .story-points span br {
    display: none;
  }
}

@media (max-width: 850px) {
  :root {
    --shell: min(100% - 34px, 700px);
  }

  .announcement {
    font-size: 0.7rem;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 110px;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 46px 24px;
    background: rgba(22, 13, 12, 0.985);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }

  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links > a:not(.button) {
    padding: 18px 2px;
    border-bottom: 1px solid var(--line-light);
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    text-transform: none;
  }

  .nav-links .button {
    margin-top: 24px;
  }

  .nav-call {
    display: block;
  }

  .nav-toggle[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
  }

  .hero-shell {
    padding: 68px 0 108px;
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
  }

  .hero-visual {
    justify-self: center;
    width: min(100%, 530px);
  }

  .video-frame {
    aspect-ratio: 0.83;
  }

  .scroll-cue {
    display: none;
  }

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

  .heading-side {
    max-width: 520px;
  }

  .dish-card-featured {
    grid-template-columns: 1fr;
  }

  .dish-card-featured .dish-media {
    min-height: 420px;
  }

  .dish-card-featured .dish-copy {
    min-height: 230px;
    padding: 30px;
  }

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

  .story-brand {
    width: min(100%, 430px);
    margin: 0 auto;
  }

  .story-points {
    grid-template-columns: repeat(3, 1fr);
  }

  .story-points span br {
    display: block;
  }

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

  .map-frame {
    min-height: 480px;
  }
}

@media (max-width: 600px) {
  :root {
    --shell: calc(100vw - 30px);
    --radius: 17px;
  }

  html {
    scroll-padding-top: 76px;
  }

  body {
    padding-bottom: 66px;
  }

  .announcement {
    min-height: 30px;
    padding-inline: 12px;
    letter-spacing: 0.08em;
  }

  .announcement-divider,
  .announcement a {
    display: none;
  }

  .site-nav {
    height: 68px;
  }

  .brand {
    width: 166px;
  }

  .nav-links {
    top: 98px;
  }

  .hero {
    min-height: auto;
  }

  .hero-shell {
    min-height: auto;
    padding: 58px 0 86px;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 0.68rem;
    letter-spacing: 0.15em;
  }

  .hero h1 {
    font-size: clamp(3.65rem, 17.7vw, 5rem);
  }

  .hero-lede {
    margin-top: 25px;
    font-size: 0.94rem;
    line-height: 1.7;
  }

  .hero-actions {
    margin-top: 30px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-details {
    margin-top: 34px;
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .video-frame {
    border-radius: 170px 170px 17px 17px;
  }

  .video-topline {
    top: 24px;
    right: 25px;
    left: 25px;
    font-size: 0.55rem;
  }

  .video-topline span:last-child {
    display: none;
  }

  .hero-mark {
    right: -5px;
    bottom: -30px;
    width: 90px;
    height: 90px;
  }

  .ticker-track {
    min-height: 58px;
  }

  .menu-section,
  .visit-section {
    padding: 82px 0;
  }

  .section-heading h2,
  .visit-heading h2,
  .story-copy h2 {
    font-size: clamp(3.2rem, 15vw, 4.45rem);
  }

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

  .dish-card-featured,
  .dish-card-wide {
    grid-column: auto;
  }

  .dish-media,
  .dish-card-featured .dish-media,
  .dish-card-wide .dish-media {
    min-height: 290px;
  }

  .dish-copy,
  .dish-card-featured .dish-copy {
    min-height: 205px;
    padding: 25px;
  }

  .dish-copy h3 {
    font-size: 2.15rem;
  }

  .story-section {
    padding: 82px 0 96px;
  }

  .story-shell {
    gap: 62px;
  }

  .story-copy > p:not(.eyebrow) {
    font-size: 0.91rem;
  }

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

  .story-points span br {
    display: none;
  }

  .visit-heading h2 br {
    display: none;
  }

  .visit-grid {
    min-height: 0;
  }

  .visit-card {
    padding: 30px 24px;
    gap: 48px;
  }

  .visit-address h3 {
    font-size: 2.35rem;
  }

  .visit-actions .button {
    width: 100%;
  }

  .hours-block dl > div {
    align-items: flex-start;
  }

  .map-frame {
    min-height: 390px;
  }

  .final-cta h2 {
    font-size: clamp(3.2rem, 15vw, 4.6rem);
  }

  .final-cta .button {
    width: 100%;
  }

  .site-footer {
    padding: 60px 0 26px;
  }

  .social-strip-shell {
    min-height: 0;
    padding: 34px 0;
    align-items: stretch;
    flex-direction: column;
    gap: 24px;
  }

  .social-links {
    align-items: center;
    flex-direction: row;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 24px;
  }

  .footer-bottom {
    grid-column: auto;
    flex-direction: column;
  }

  .mobile-order-bar {
    position: fixed;
    z-index: 200;
    right: 0;
    bottom: 0;
    left: 0;
    height: 66px;
    padding: 9px 12px;
    background: rgba(13, 8, 8, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    display: block;
    backdrop-filter: blur(14px);
  }

  .mobile-order-bar a {
    width: 100%;
    height: 100%;
    border-radius: 999px;
    background: var(--red);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: var(--condensed);
    font-size: 0.83rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-decoration: none;
    text-transform: uppercase;
  }
}

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

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

  .ticker-track {
    animation: none;
  }
}
