@import url("https://fonts.googleapis.com/css2?family=Archivo+Black&family=DM+Sans:wght@400;500;600;700&display=swap");

:root {
  --ink: #0b0b0a;
  --coal: #171512;
  --flour: #f5efe4;
  --paper: #eae2d4;
  --ember: #f04b23;
  --ember-deep: #b63216;
  --ash: #aaa399;
  --line-dark: rgba(11, 11, 10, 0.22);
  --line-light: rgba(245, 239, 228, 0.22);
  --display: "Archivo Black", Impact, sans-serif;
  --body: "DM Sans", Arial, sans-serif;
  --pad: clamp(1.25rem, 4vw, 5rem);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--flour);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

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

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

::selection {
  background: var(--ember);
  color: white;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  padding: 0.65rem 0.9rem;
  transform: translateY(-150%);
  background: var(--flour);
  color: var(--ink);
  font-weight: 700;
}

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

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

.section-pad {
  padding: clamp(5.5rem, 11vw, 10rem) var(--pad);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 1.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2.4rem;
  height: 2px;
  background: var(--ember);
  content: "";
}

.button {
  display: inline-flex;
  min-height: 3.45rem;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 0.9rem 1.3rem;
  border: 1px solid transparent;
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  line-height: 1.1;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button span,
.text-link span,
.nav-cta span,
.schedule-row h3 span {
  transition: transform 180ms ease;
}

.button:hover span,
.text-link:hover span,
.nav-cta:hover span,
.schedule-row h3 a:hover span {
  transform: translate(0.16rem, -0.16rem);
}

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

.button-ember:hover {
  background: #ff5d33;
  transform: translateY(-2px);
}

.button-ghost {
  border-color: rgba(245, 239, 228, 0.55);
  background: rgba(11, 11, 10, 0.08);
  color: var(--flour);
  backdrop-filter: blur(6px);
}

.button-ghost:hover {
  border-color: var(--flour);
  background: var(--flour);
  color: var(--ink);
}

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

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding-bottom: 0.28rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  display: flex;
  min-height: 5.4rem;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
  border-bottom: 1px solid var(--line-light);
  color: var(--flour);
  transition: min-height 220ms ease, background 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  min-height: 4.4rem;
  border-color: rgba(245, 239, 228, 0.12);
  background: rgba(11, 11, 10, 0.94);
  backdrop-filter: blur(14px);
}

.wordmark,
.footer-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0.3rem;
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: -0.055em;
  line-height: 0.82;
  text-decoration: none;
  text-transform: uppercase;
}

.wordmark strong,
.footer-wordmark strong {
  color: var(--ember);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.7vw, 2.6rem);
}

.site-nav > a {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
}

.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--ember);
  content: "";
  transition: transform 180ms ease;
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 0.95rem;
  background: var(--ember);
  color: var(--ink);
}

.nav-toggle {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--ink);
  color: var(--flour);
}

.hero-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 51% 42%;
  transform: scale(1.01);
  animation: hero-breathe 12s ease-out both;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 6, 5, 0.92) 0%, rgba(6, 6, 5, 0.68) 36%, rgba(6, 6, 5, 0.12) 71%),
    linear-gradient(0deg, rgba(6, 6, 5, 0.72) 0%, transparent 42%),
    radial-gradient(circle at 63% 39%, rgba(240, 75, 35, 0.16), transparent 34%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(54rem, 72vw);
  min-height: 100svh;
  flex-direction: column;
  justify-content: center;
  padding: 8.5rem var(--pad) 6.5rem;
}

.hero-eyebrow {
  opacity: 0;
  transform: translateY(1rem);
  animation: hero-in 650ms 100ms ease forwards;
}

.hero-eyebrow i {
  width: 0.24rem;
  height: 0.24rem;
  background: var(--ember);
  border-radius: 50%;
}

.hero-brand {
  display: flex;
  flex-direction: column;
  margin: 0 0 0.9rem;
  font-family: var(--display);
  font-size: clamp(4.3rem, 11.5vw, 10.8rem);
  letter-spacing: -0.085em;
  line-height: 0.69;
  text-transform: uppercase;
}

.hero-brand span {
  opacity: 0;
  transform: translateY(1.8rem);
  animation: hero-in 680ms cubic-bezier(.2,.75,.25,1) forwards;
}

.hero-brand span:first-child {
  animation-delay: 180ms;
}

.hero-brand span:last-child {
  color: var(--ember);
  animation-delay: 260ms;
}

.hero h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.hero-line {
  margin: 1.15rem 0 0;
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.5vw, 2.65rem);
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(1rem);
  animation: hero-in 600ms 360ms ease forwards;
}

.hero-deck {
  width: min(30rem, 100%);
  margin: 1rem 0 1.65rem;
  color: rgba(245, 239, 228, 0.78);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  opacity: 0;
  transform: translateY(1rem);
  animation: hero-in 600ms 420ms ease forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  opacity: 0;
  transform: translateY(1rem);
  animation: hero-in 600ms 480ms ease forwards;
}

.hero-running {
  position: absolute;
  right: var(--pad);
  bottom: 1.6rem;
  z-index: 2;
  display: flex;
  gap: 1.8rem;
  margin: 0;
  color: rgba(245, 239, 228, 0.63);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-running span + span::before {
  margin-right: 1.8rem;
  color: var(--ember);
  content: "/";
}

.hero-scroll {
  position: absolute;
  bottom: 1.4rem;
  left: var(--pad);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(245, 239, 228, 0.68);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-scroll i {
  position: relative;
  width: 3.3rem;
  height: 1px;
  overflow: hidden;
  background: rgba(245, 239, 228, 0.42);
}

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

@keyframes hero-in {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-breathe {
  to { transform: scale(1.045); }
}

@keyframes line-travel {
  50%, 100% { transform: translateX(100%); }
}

/* Ticker */
.heat-ticker {
  overflow: hidden;
  border-top: 1px solid rgba(245, 239, 228, 0.09);
  border-bottom: 1px solid rgba(245, 239, 228, 0.09);
  background: var(--ember);
  color: var(--ink);
}

.heat-ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  padding: 0.84rem 0;
  animation: ticker 27s linear infinite;
}

.heat-ticker span,
.heat-ticker i {
  white-space: nowrap;
}

.heat-ticker span {
  padding: 0 2rem;
  font-family: var(--display);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.heat-ticker i {
  font-style: normal;
  opacity: 0.62;
}

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

/* Schedule */
.schedule {
  display: grid;
  grid-template-columns: minmax(16rem, 0.78fr) minmax(30rem, 1.42fr);
  gap: clamp(3rem, 8vw, 9rem);
  background: var(--flour);
}

.section-heading h2,
.live-heading h2,
.catering-heading h2,
.final-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.2rem, 7.3vw, 7.5rem);
  letter-spacing: -0.075em;
  line-height: 0.83;
  text-transform: uppercase;
}

.section-heading > p:last-child,
.live-heading > p {
  width: min(27rem, 100%);
  margin: 1.8rem 0 0;
  color: #5b554d;
  font-size: 1.02rem;
}

.schedule-panel {
  align-self: start;
  border-top: 3px solid var(--ink);
}

.schedule-meta {
  display: flex;
  min-height: 4.4rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.schedule-meta p {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0;
}

.schedule-meta a {
  text-decoration: none;
}

.live-dot {
  width: 0.58rem;
  height: 0.58rem;
  background: var(--ember);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(240, 75, 35, 0.45);
  animation: pulse 2.4s infinite;
}

@keyframes pulse {
  55% { box-shadow: 0 0 0 0 rgba(240, 75, 35, 0.28); }
  100% { box-shadow: 0 0 0 0.6rem rgba(240, 75, 35, 0); }
}

.schedule-row {
  position: relative;
  display: grid;
  min-height: 10.5rem;
  grid-template-columns: 5rem minmax(12rem, 1fr) 8rem auto;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2.5rem);
  border-bottom: 1px solid var(--line-dark);
  transition: color 190ms ease, padding 190ms ease;
}

.schedule-row::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: scaleY(0);
  transform-origin: bottom;
  background: var(--ink);
  content: "";
  transition: transform 230ms cubic-bezier(.2,.7,.2,1);
}

.schedule-row:hover {
  padding-right: 1rem;
  padding-left: 1rem;
  color: var(--flour);
}

.schedule-row:hover::before {
  transform: scaleY(1);
}

.schedule-row time {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.schedule-row time b {
  margin-bottom: 0.22rem;
  color: var(--ember-deep);
  font-size: 0.68rem;
  letter-spacing: 0.13em;
}

.schedule-row time strong {
  font-family: var(--display);
  font-size: 2.85rem;
  letter-spacing: -0.06em;
}

.schedule-row div > p {
  margin: 0 0 0.32rem;
  color: #716b62;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.schedule-row:hover div > p {
  color: var(--ash);
}

.schedule-row h3 {
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin: 0;
  padding-right: 2rem;
  font-family: var(--display);
  font-size: clamp(1.25rem, 1.8vw, 1.8rem);
  letter-spacing: -0.045em;
  line-height: 1.06;
  text-transform: uppercase;
}

.schedule-row h3 a {
  display: inline;
  text-decoration: none;
}

.schedule-row h3 span {
  position: absolute;
  top: 0;
  right: 0.15rem;
  margin: 0;
  color: var(--ember-deep);
}

.schedule-time {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: right;
  text-transform: uppercase;
}

.schedule-time span {
  color: var(--ember-deep);
  font-size: 0.68rem;
}

.directions {
  padding: 0.65rem 0;
  border-bottom: 1px solid currentColor;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.schedule-empty {
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--line-dark);
}

.schedule-empty h3 {
  margin: 0 0 0.7rem;
  font-family: var(--display);
  font-size: 2.1rem;
  letter-spacing: -0.055em;
  line-height: 1;
  text-transform: uppercase;
}

.schedule-empty p {
  margin: 0;
  color: #655f56;
}

.schedule-note {
  margin: 1rem 0 0;
  color: #6d675e;
  font-size: 0.76rem;
  line-height: 1.6;
}

/* About */
.about {
  display: grid;
  min-height: 48rem;
  grid-template-columns: 1.15fr 0.85fr;
  background: var(--ink);
  color: var(--flour);
}

.about-photo {
  min-height: 48rem;
  min-width: 0;
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(.2,.65,.2,1);
}

.about-photo:hover img {
  transform: scale(1.035);
}

.about-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 8vw, 8rem) var(--pad);
}

.about-copy h2 {
  margin: 0 0 2.1rem;
  font-family: var(--display);
  font-size: clamp(3.5rem, 7vw, 7.8rem);
  letter-spacing: -0.075em;
  line-height: 0.81;
  text-transform: uppercase;
}

.about-copy h2 em {
  color: var(--ember);
  font-style: normal;
}

.about-copy > p {
  width: min(30rem, 100%);
  margin: 0 0 1rem;
  color: rgba(245, 239, 228, 0.72);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  margin-top: 2rem;
}

/* Menu */
.menu-section {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(22rem, 0.92fr);
  align-items: stretch;
  background: var(--flour);
}

.menu-copy {
  min-width: 0;
}

.menu-heading {
  display: grid;
  grid-template-columns: 1fr minmax(14rem, 0.7fr);
  align-items: end;
  gap: 1rem 3rem;
  margin-bottom: 3.5rem;
}

.menu-heading .eyebrow {
  grid-column: 1 / -1;
}

.menu-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.5rem, 8.5vw, 9rem);
  letter-spacing: -0.08em;
  line-height: 0.76;
  text-transform: uppercase;
}

.menu-heading > p:last-child {
  margin: 0 0 0.25rem;
  color: #5b554d;
  font-size: clamp(1rem, 1.3vw, 1.14rem);
}

.menu-board {
  border-top: 3px solid var(--ink);
}

.menu-item {
  display: grid;
  min-height: 8.8rem;
  grid-template-columns: 4rem minmax(9rem, 0.62fr) minmax(13rem, 1fr);
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line-dark);
  transition: color 180ms ease, background 180ms ease, padding 180ms ease;
}

.menu-item:hover {
  padding-right: 1rem;
  padding-left: 1rem;
  background: var(--ink);
  color: var(--flour);
}

.menu-price {
  display: flex;
  align-items: flex-start;
  margin: 0;
  color: var(--ember-deep);
  font-family: var(--display);
  font-size: 2rem;
  letter-spacing: -0.06em;
  line-height: 1;
}

.menu-price span {
  margin: 0.08rem 0.08rem 0 0;
  font-family: var(--body);
  font-size: 0.75rem;
  font-weight: 700;
}

.menu-item h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2vw, 2rem);
  letter-spacing: -0.05em;
  line-height: 0.95;
  text-transform: uppercase;
}

.menu-item > p:last-child {
  margin: 0;
  color: #5f594f;
  font-size: 0.84rem;
  line-height: 1.55;
}

.menu-item:hover > p:last-child {
  color: rgba(245, 239, 228, 0.72);
}

.menu-addons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem 1.5rem;
  margin-top: 2rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-addons p {
  margin: 0 auto 0 0;
}

.menu-addons strong {
  color: var(--ember-deep);
}

.menu-addons span {
  padding-bottom: 0.2rem;
  border-bottom: 1px solid currentColor;
}

.menu-note {
  margin: 1.25rem 0 0;
  color: #6d675e;
  font-size: 0.72rem;
}

.menu-photo {
  position: relative;
  min-width: 0;
  min-height: 70rem;
  margin: 0;
  overflow: hidden;
  background: var(--coal);
}

.menu-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 51% 45%;
  transition: transform 900ms cubic-bezier(.2,.65,.2,1);
}

.menu-photo:hover img {
  transform: scale(1.025);
}

.menu-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11, 11, 10, 0.82), transparent 35%);
  content: "";
  pointer-events: none;
}

.menu-photo figcaption {
  position: absolute;
  right: var(--pad);
  bottom: 3.5rem;
  left: var(--pad);
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  color: var(--flour);
  text-transform: uppercase;
}

.menu-photo figcaption span {
  color: var(--ember);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.menu-photo figcaption strong {
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 2rem);
  letter-spacing: -0.045em;
}

/* Catering */
.catering {
  display: grid;
  grid-template-columns: 0.85fr 0.7fr 0.65fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 6rem);
  background: var(--paper);
}

.catering-heading h2 {
  font-size: clamp(4rem, 8.5vw, 8.8rem);
}

.catering-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.catering-photo::after {
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 32%;
  height: 12%;
  background: var(--paper);
  content: "";
}

.catering-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.catering-copy p {
  margin: 0 0 2rem;
  color: #4f4941;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

/* Facebook */
.live-feed {
  display: grid;
  grid-template-columns: minmax(18rem, 0.9fr) minmax(20rem, 1.1fr);
  align-items: start;
  gap: clamp(3rem, 10vw, 11rem);
  background: var(--ink);
  color: var(--flour);
}

.live-heading {
  position: sticky;
  top: 7rem;
}

.live-heading > p {
  color: rgba(245, 239, 228, 0.68);
}

.live-heading .text-link {
  margin-top: 1.4rem;
}

.facebook-shell {
  position: relative;
  min-height: 34rem;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(240, 75, 35, 0.12), transparent 46%),
    #24211d;
}

.facebook-shell::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 4rem;
  height: 4rem;
  border-top: 2px solid var(--ember);
  border-right: 2px solid var(--ember);
  content: "";
  pointer-events: none;
}

.native-facebook-post {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 34rem;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(2rem, 5vw, 4.5rem);
}

.native-post-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.facebook-mark {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  flex: 0 0 auto;
  place-items: center;
  background: #1877f2;
  border-radius: 50%;
  color: white;
  font-family: Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.native-post-meta p {
  margin: 0;
}

.native-post-meta strong,
.native-post-meta time {
  display: block;
}

.native-post-meta strong {
  font-size: 0.92rem;
}

.native-post-meta time {
  margin-top: 0.15rem;
  color: var(--ash);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.native-facebook-post blockquote {
  max-width: 13ch;
  margin: clamp(2.5rem, 7vw, 5rem) 0;
  font-family: var(--display);
  font-size: clamp(2.1rem, 4.7vw, 4.5rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-transform: uppercase;
}

.native-post-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}

.native-post-note {
  margin: 1.5rem 0 0;
  color: var(--ash);
  font-size: 0.72rem;
}

/* Final CTA */
.final-cta {
  position: relative;
  display: grid;
  min-height: 43rem;
  grid-template-columns: minmax(17rem, 0.65fr) minmax(22rem, 1.35fr);
  align-items: center;
  gap: clamp(2rem, 8vw, 8rem);
  overflow: hidden;
  padding: clamp(5rem, 11vw, 10rem) var(--pad);
  background: var(--coal);
  color: var(--flour);
}

.final-cta::before {
  position: absolute;
  top: -22rem;
  left: 30%;
  width: 50rem;
  height: 50rem;
  border: 1px solid rgba(240, 75, 35, 0.28);
  border-radius: 50%;
  content: "";
}

.final-cta > img {
  position: relative;
  width: min(22rem, 100%);
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  mix-blend-mode: screen;
  object-fit: cover;
  transform: rotate(-4deg);
}

.final-copy {
  position: relative;
}

.final-copy h2 {
  font-size: clamp(4rem, 9vw, 9rem);
}

.final-copy > div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.4rem;
}

/* Footer */
.site-footer {
  display: grid;
  grid-template-columns: 0.7fr 1fr 1.2fr;
  align-items: start;
  gap: 2rem;
  padding: 3.4rem var(--pad) 2.2rem;
  border-top: 1px solid rgba(245, 239, 228, 0.12);
  background: var(--ink);
  color: var(--flour);
}

.footer-wordmark {
  font-size: clamp(1.6rem, 2.8vw, 2.6rem);
}

.site-footer > p {
  margin: 0;
  color: var(--ash);
  font-size: 0.82rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.8rem 1.5rem;
}

.footer-links a {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-footer > small {
  grid-column: 1 / -1;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(245, 239, 228, 0.12);
  color: #948d83;
  font-size: 0.66rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.mobile-actions {
  display: none;
}

/* Scroll reveals */
.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 1;
  transform: none;
  transition: opacity 650ms ease, transform 650ms cubic-bezier(.2,.7,.2,1);
}

.reveal-image {
  opacity: 1;
  clip-path: none;
}

.reveal.is-visible,
.reveal-image.is-visible {
  opacity: 1;
  transform: translateY(0);
  clip-path: inset(0 0 0 0);
}

@media (max-width: 1050px) {
  .schedule {
    grid-template-columns: 1fr;
  }

  .section-heading h2 {
    font-size: clamp(4rem, 10vw, 7.4rem);
  }

  .catering {
    grid-template-columns: 0.9fr 1fr;
  }

  .catering-copy {
    grid-column: 2;
  }

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

  .menu-photo {
    min-height: 70vw;
    max-height: 55rem;
  }
}

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

  .about-photo {
    min-height: 70vw;
    max-height: 42rem;
  }

  .about-copy {
    min-height: 40rem;
  }
}

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

  .site-header {
    min-height: 4.7rem;
  }

  .nav-toggle {
    position: relative;
    z-index: 102;
    display: grid;
    width: 3.25rem;
    height: 3.25rem;
    place-content: center;
    gap: 0.32rem;
    padding: 0;
    border: 0;
    background: transparent;
    color: currentColor;
    cursor: pointer;
  }

  .nav-toggle span {
    display: block;
    width: 1.5rem;
    height: 2px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .nav-toggle b {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

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

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

  .site-nav {
    position: fixed;
    top: 0;
    right: auto;
    bottom: auto;
    left: 0;
    z-index: 101;
    display: flex;
    width: 100vw;
    height: 100svh;
    visibility: hidden;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.15rem;
    padding: 6rem var(--pad);
    background: var(--ink);
    opacity: 0;
    transform: translateY(-1rem);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  }

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

  body.nav-open .site-header {
    backdrop-filter: none;
  }

  .site-nav > a {
    font-family: var(--display);
    font-size: clamp(2rem, 9vw, 4rem);
    letter-spacing: -0.06em;
    line-height: 0.95;
  }

  .site-nav .nav-cta {
    margin-top: 1rem;
    padding: 1rem;
    font-family: var(--body);
    font-size: 0.78rem;
    letter-spacing: 0.06em;
  }

  .hero-copy {
    width: 100%;
    justify-content: flex-end;
    padding-top: 7rem;
    padding-bottom: 7.5rem;
  }

  .hero-image {
    object-position: 57% 50%;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(5, 5, 4, 0.96) 0%, rgba(5, 5, 4, 0.55) 54%, rgba(5, 5, 4, 0.13) 100%),
      linear-gradient(90deg, rgba(5, 5, 4, 0.34), transparent 70%);
  }

  .hero-brand {
    font-size: clamp(4rem, 21vw, 8rem);
  }

  .hero-running {
    display: none;
  }

  .hero-scroll {
    bottom: 5rem;
  }

  .schedule-row {
    grid-template-columns: 4rem 1fr auto;
  }

  .schedule-row .directions {
    grid-column: 2;
    justify-self: start;
    margin-bottom: 1rem;
  }

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

  .about-photo {
    min-height: 70vw;
    max-height: 42rem;
  }

  .about-copy {
    min-height: 40rem;
  }

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

  .menu-heading .eyebrow {
    grid-column: 1;
  }

  .menu-item {
    grid-template-columns: 3.4rem minmax(8rem, 0.55fr) minmax(12rem, 1fr);
  }

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

  .catering-heading,
  .catering-copy {
    grid-column: 1 / -1;
  }

  .catering-photo {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: stretch;
  }

  .live-feed {
    grid-template-columns: 1fr;
  }

  .live-heading {
    position: static;
  }

  .facebook-shell {
    min-height: 34rem;
  }

  .final-cta {
    min-height: 48rem;
    grid-template-columns: 0.65fr 1.35fr;
  }

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

  .footer-links {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .mobile-actions {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 90;
    display: grid;
    min-height: 4.6rem;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgba(245, 239, 228, 0.16);
    background: rgba(11, 11, 10, 0.96);
    color: var(--flour);
    backdrop-filter: blur(12px);
  }

  .mobile-actions a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0.65rem 1rem;
    text-decoration: none;
  }

  .mobile-actions a + a {
    border-left: 1px solid rgba(245, 239, 228, 0.14);
    background: var(--ember);
    color: var(--ink);
  }

  .mobile-actions span {
    color: var(--ash);
    font-size: 0.58rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mobile-actions a + a span {
    color: rgba(11, 11, 10, 0.72);
  }

  .mobile-actions strong {
    font-size: 0.76rem;
  }
}

@media (max-width: 600px) {
  :root {
    --pad: 1.15rem;
  }

  .section-pad {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
  }

  .hero-copy {
    padding-bottom: 7.4rem;
  }

  .hero-eyebrow {
    margin-bottom: 0.85rem;
    font-size: 0.61rem;
  }

  .hero-brand {
    margin-bottom: 0.6rem;
    line-height: 0.72;
  }

  .hero-line {
    margin-top: 0.8rem;
  }

  .hero-deck {
    margin: 0.7rem 0 1.15rem;
    font-size: 0.95rem;
  }

  .hero-actions {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
  }

  .button {
    min-height: 3.15rem;
  }

  .hero-scroll {
    display: none;
  }

  .schedule {
    gap: 3rem;
  }

  .section-heading h2,
  .live-heading h2 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .schedule-meta {
    min-height: 4.7rem;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 0.35rem;
  }

  .schedule-row {
    min-height: 12.2rem;
    grid-template-columns: 3.3rem 1fr;
    gap: 0.7rem 1rem;
    padding: 1.1rem 0;
  }

  .schedule-row:hover {
    padding-right: 0.7rem;
    padding-left: 0.7rem;
  }

  .schedule-row time {
    grid-row: 1 / 3;
    align-self: start;
    padding-top: 0.1rem;
  }

  .schedule-row time strong {
    font-size: 2.15rem;
  }

  .schedule-row h3 {
    font-size: 1.28rem;
  }

  .schedule-time {
    grid-column: 2;
    text-align: left;
  }

  .schedule-row .directions {
    grid-column: 2;
    margin: 0;
  }

  .about-photo {
    min-height: 100vw;
  }

  .about-copy {
    min-height: 38rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .about-copy h2 {
    font-size: clamp(3rem, 14vw, 4.75rem);
  }

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

  .menu-heading {
    margin-bottom: 2.5rem;
  }

  .menu-heading h2 {
    font-size: clamp(4rem, 18vw, 6rem);
  }

  .menu-item {
    min-height: 0;
    grid-template-columns: 3.25rem 1fr;
    gap: 0.65rem 1rem;
    padding: 1.35rem 0;
  }

  .menu-price {
    grid-row: 1 / 3;
    font-size: 1.7rem;
  }

  .menu-item h3 {
    font-size: 1.45rem;
  }

  .menu-item > p:last-child {
    grid-column: 2;
  }

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

  .menu-addons p {
    margin-bottom: 0.25rem;
  }

  .menu-photo {
    min-height: 120vw;
  }

  .menu-photo figcaption {
    bottom: 2rem;
    align-items: flex-start;
    flex-direction: column;
  }

  .catering {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .catering-heading h2 {
    font-size: clamp(4rem, 19vw, 6rem);
  }

  .catering-photo {
    width: calc(100% + (var(--pad) * 2));
    margin-left: calc(var(--pad) * -1);
    aspect-ratio: 1;
  }

  .catering-photo::after {
    display: none;
  }

  .facebook-shell,
  .native-facebook-post {
    min-height: 33rem;
  }

  .final-cta {
    display: flex;
    min-height: 45rem;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .final-cta > img {
    width: 9rem;
    height: 9rem;
  }

  .final-copy h2 {
    font-size: clamp(3.8rem, 18vw, 6rem);
  }

  .final-copy > div {
    align-items: stretch;
    flex-direction: column;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-bottom: 3rem;
  }

  .site-footer > small,
  .footer-links {
    grid-column: 1;
  }
}

@media (max-height: 600px) and (min-width: 650px) and (max-width: 900px) {
  body {
    padding-bottom: 0;
  }

  .hero-copy {
    width: min(46rem, 80vw);
    justify-content: center;
    padding: 4.7rem var(--pad) 1.5rem;
  }

  .hero-brand {
    margin-bottom: 0.35rem;
    font-size: clamp(3.3rem, 9vw, 5.4rem);
  }

  .hero-eyebrow {
    margin-bottom: 0.55rem;
  }

  .hero-line {
    margin-top: 0.45rem;
    font-size: 1.2rem;
  }

  .hero-deck {
    margin: 0.45rem 0 0.7rem;
    font-size: 0.85rem;
    line-height: 1.35;
  }

  .hero-actions {
    display: flex;
  }

  .hero-actions .button {
    min-height: 2.8rem;
    padding: 0.65rem 0.9rem;
    font-size: 0.65rem;
  }

  .hero-scroll,
  .mobile-actions {
    display: none;
  }
}

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

  .reveal,
  .reveal-image,
  .hero-brand span,
  .hero-eyebrow,
  .hero-line,
  .hero-deck,
  .hero-actions {
    opacity: 1;
    transform: none;
    clip-path: none;
  }
}
