:root {
  --coal: #0b0908;
  --pit: #15110f;
  --iron: #28201c;
  --ash: #6f6258;
  --smoke: #b9a995;
  --bone: #f1e4ce;
  --paper: #ddc59e;
  --ember: #c92d24;
  --ember-bright: #e04b2f;
  --brass: #c99845;
  --white: #fffaf0;
  --display: "Rye", Georgia, serif;
  --body: "Barlow", sans-serif;
  --utility: "Barlow Condensed", sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --max-width: 1280px;
}

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

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

body {
  margin: 0;
  overflow-x: clip;
  color: var(--bone);
  background:
    radial-gradient(circle at 20% -10%, rgba(201, 45, 36, 0.1), transparent 28rem),
    var(--coal);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  content: "";
  opacity: 0.025;
  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='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

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

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

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

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

button {
  color: inherit;
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  color: var(--coal);
  background: var(--bone);
  font-family: var(--utility);
  font-weight: 800;
  text-transform: uppercase;
  transform: translateY(-150%);
  transition: transform 180ms var(--ease-out);
}

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  height: 88px;
  padding: 0 max(28px, calc((100vw - var(--max-width)) / 2));
  border-bottom: 1px solid transparent;
  transition:
    height 240ms var(--ease-out),
    background 240ms ease,
    border-color 240ms ease,
    backdrop-filter 240ms ease;
}

.site-header.is-scrolled {
  height: 72px;
  border-bottom-color: rgba(241, 228, 206, 0.13);
  background: rgba(11, 9, 8, 0.86);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  position: relative;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(241, 228, 206, 0.24);
  border-radius: 50%;
  background: var(--ember);
  box-shadow: inset 0 0 16px rgba(11, 9, 8, 0.42);
}

.brand-crescent {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--coal);
}

.brand-star {
  position: absolute;
  bottom: 6px;
  left: 7px;
  color: var(--bone);
  font-size: 11px;
}

.brand-type {
  display: grid;
  line-height: 1;
}

.brand-type strong {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.brand-type small {
  margin-top: 5px;
  color: var(--ember-bright);
  font-family: var(--utility);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.desktop-nav a {
  position: relative;
  color: var(--smoke);
  font-family: var(--utility);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--ember);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease-out);
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--bone);
}

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

.site-header > .button {
  justify-self: end;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-family: var(--utility);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  transition:
    transform 180ms var(--ease-out),
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

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

.button:active {
  transform: translateY(1px) scale(0.99);
}

.button[disabled],
.button.is-disabled {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
}

.button.is-loading {
  cursor: wait;
  color: transparent;
}

.button.is-loading::after {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  content: "";
  animation: spin 700ms linear infinite;
}

.button-primary {
  color: var(--white);
  background: var(--ember);
  box-shadow: 0 10px 28px rgba(201, 45, 36, 0.2);
}

.button-primary:hover {
  background: var(--ember-bright);
  box-shadow: 0 14px 34px rgba(201, 45, 36, 0.3);
}

.button-primary:active {
  background: #a9231d;
}

.button-small {
  min-height: 44px;
  padding: 0 18px;
  font-size: 13px;
}

.button-ghost {
  border-color: rgba(241, 228, 206, 0.28);
  color: var(--bone);
  background: rgba(11, 9, 8, 0.3);
}

.button-ghost:hover {
  border-color: var(--bone);
  background: rgba(241, 228, 206, 0.07);
}

.button-bone {
  color: var(--coal);
  background: var(--bone);
}

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

.button-dark {
  color: var(--bone);
  background: var(--coal);
}

.button-dark:hover {
  color: var(--white);
  background: #211815;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(880px, 100svh);
  grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
  align-items: center;
  gap: clamp(32px, 5vw, 80px);
  max-width: 1536px;
  margin: 0 auto;
  padding: 138px max(32px, calc((100vw - var(--max-width)) / 2)) 74px;
  overflow: hidden;
}

.ember-field {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 49%;
  width: 1px;
  content: "";
  background: linear-gradient(transparent, rgba(241, 228, 206, 0.12) 20%, rgba(241, 228, 206, 0.12) 80%, transparent);
}

.hero-copy {
  position: relative;
  z-index: 3;
  min-width: 0;
  max-width: 610px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 23px;
  color: var(--brass);
  font-family: var(--utility);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow > span:first-child {
  width: 32px;
  height: 2px;
  background: var(--ember);
}

.eyebrow b {
  color: var(--ember);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  margin-bottom: 28px;
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.98;
  text-wrap: balance;
}

h1 {
  max-width: 760px;
  font-size: clamp(54px, 6.4vw, 98px);
  letter-spacing: -0.025em;
}

h2 {
  font-size: clamp(44px, 5.4vw, 78px);
  letter-spacing: -0.02em;
}

h1 em,
h2 em {
  color: var(--ember-bright);
  font-style: normal;
}

.hero-lede {
  max-width: 580px;
  margin-bottom: 34px;
  color: var(--smoke);
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.6;
}

.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.phone-icon {
  color: var(--brass);
}

.pickup-note {
  margin: 14px 0 0;
  color: var(--ash);
  font-family: var(--utility);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: clamp(46px, 7vh, 80px);
  padding-top: 22px;
  border-top: 1px solid rgba(241, 228, 206, 0.15);
}

.hero-proof > div {
  display: grid;
  padding: 0 16px;
  border-left: 1px solid rgba(241, 228, 206, 0.15);
}

.hero-proof > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-proof strong {
  color: var(--bone);
  font-family: var(--utility);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero-proof span {
  margin-top: 7px;
  color: var(--ash);
  font-size: 13px;
  line-height: 1.25;
}

.hero-art {
  position: relative;
  min-height: 660px;
}

.moon-disc {
  position: absolute;
  top: 2%;
  left: 0;
  display: grid;
  width: min(38vw, 530px);
  height: min(38vw, 530px);
  align-content: center;
  border-radius: 50%;
  color: rgba(11, 9, 8, 0.55);
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 129, 66, 0.58), transparent 12%),
    radial-gradient(circle at 64% 68%, rgba(56, 0, 0, 0.45), transparent 22%),
    radial-gradient(circle at 50% 50%, var(--ember-bright), #7d1515 70%);
  box-shadow:
    0 0 80px rgba(201, 45, 36, 0.2),
    inset -34px -20px 60px rgba(45, 0, 0, 0.55);
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 78px);
  line-height: 0.95;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-6deg);
}

.food-frame {
  position: absolute;
  top: 10%;
  right: 0;
  z-index: 2;
  width: 72%;
  height: 68%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(241, 228, 206, 0.2);
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.48);
  clip-path: polygon(6% 0, 100% 0, 100% 91%, 90% 100%, 0 100%, 0 7%);
}

.food-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(135deg, transparent 50%, rgba(11, 9, 8, 0.28));
}

.food-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 55%;
  filter: saturate(0.9) contrast(1.08);
  transition: transform 900ms var(--ease-out);
}

.hero-art:hover .food-frame img {
  transform: scale(1.025);
}

.smoker-ticket {
  position: absolute;
  bottom: 2%;
  left: 1%;
  z-index: 4;
  width: 48%;
  margin: 0;
  padding: 9px 9px 0;
  color: var(--coal);
  background: var(--paper);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.44);
  transform: rotate(-4deg);
}

.smoker-ticket::before {
  position: absolute;
  top: -18px;
  left: 46%;
  width: 64px;
  height: 26px;
  content: "";
  background: rgba(227, 206, 169, 0.76);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  transform: rotate(3deg);
}

.smoker-ticket img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: sepia(0.12) contrast(1.08);
}

.smoker-ticket figcaption {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 7px 12px;
  font-family: var(--utility);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.smoker-ticket figcaption span {
  color: #6d4a35;
}

.hero-stamp {
  position: absolute;
  right: 2%;
  bottom: 5%;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(241, 228, 206, 0.45);
  color: var(--bone);
  background: var(--coal);
  font-family: var(--utility);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: rotate(4deg);
}

.hero-stamp span {
  color: var(--brass);
}

.ember-field i {
  position: absolute;
  z-index: 1;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--ember-bright);
  box-shadow: 0 0 8px var(--ember);
  animation: ember-rise 5s ease-in infinite;
}

.ember-field i:nth-child(1) { right: 44%; bottom: 9%; animation-delay: -1s; }
.ember-field i:nth-child(2) { right: 36%; bottom: 5%; animation-delay: -3.7s; }
.ember-field i:nth-child(3) { right: 17%; bottom: 11%; animation-delay: -2.2s; }
.ember-field i:nth-child(4) { right: 5%; bottom: 2%; animation-delay: -4.5s; }
.ember-field i:nth-child(5) { right: 29%; bottom: 17%; animation-delay: -0.5s; }
.ember-field i:nth-child(6) { right: 48%; bottom: 16%; animation-delay: -2.8s; }

.smoke-strip {
  overflow: hidden;
  border-top: 1px solid rgba(241, 228, 206, 0.12);
  border-bottom: 1px solid rgba(241, 228, 206, 0.12);
  background: var(--pit);
}

.smoke-strip > div {
  display: flex;
  width: max-content;
  animation: ticker 30s linear infinite;
}

.smoke-strip span,
.smoke-strip i {
  display: inline-flex;
  height: 52px;
  align-items: center;
  font-family: var(--utility);
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.smoke-strip span {
  padding: 0 38px;
}

.smoke-strip i {
  color: var(--ember);
}

.section {
  padding: clamp(96px, 12vw, 170px) max(32px, calc((100vw - var(--max-width)) / 2));
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.55fr);
  column-gap: 80px;
  align-items: end;
  margin-bottom: 72px;
}

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

.section-heading h2 {
  margin: 0;
}

.section-heading > p:last-child {
  margin: 0 0 8px;
  color: var(--smoke);
  line-height: 1.65;
}

.menu-section {
  position: relative;
  background:
    linear-gradient(rgba(241, 228, 206, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(241, 228, 206, 0.035) 1px, transparent 1px),
    var(--coal);
  background-size: 42px 42px;
}

.menu-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: clamp(56px, 8vw, 110px);
  align-items: start;
}

.menu-item {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 22px;
  align-items: start;
  padding: 23px 0;
  border-top: 1px solid rgba(241, 228, 206, 0.15);
  transition:
    padding 220ms var(--ease-out),
    background 220ms ease;
}

.menu-item:last-of-type {
  border-bottom: 1px solid rgba(241, 228, 206, 0.15);
}

.menu-item:hover {
  padding-right: 14px;
  padding-left: 14px;
  background: rgba(241, 228, 206, 0.035);
}

.menu-item-number {
  padding-top: 4px;
  color: var(--ember-bright);
  font-family: var(--utility);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.menu-item h3 {
  margin: 0 0 6px;
  font-family: var(--utility);
  font-size: 25px;
  font-weight: 800;
  letter-spacing: 0.025em;
  line-height: 1;
  text-transform: uppercase;
}

.menu-item p {
  margin: 0;
  color: var(--smoke);
  font-size: 15px;
  line-height: 1.4;
}

.menu-item > strong {
  padding-top: 1px;
  color: var(--brass);
  font-family: var(--utility);
  font-size: 20px;
  white-space: nowrap;
}

.menu-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
  margin-top: 30px;
}

.text-button {
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid var(--ash);
  cursor: pointer;
  color: var(--bone);
  background: transparent;
  font-family: var(--utility);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    border-color 180ms ease;
}

.text-button:hover {
  border-color: var(--ember-bright);
  color: var(--ember-bright);
}

.text-button:active {
  color: var(--brass);
}

.text-button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.fine-print {
  margin: 16px 0 0;
  color: var(--ash);
  font-size: 12px;
}

.menu-poster-wrap {
  position: relative;
  max-width: 430px;
  justify-self: end;
}

.menu-poster {
  position: relative;
  display: block;
  width: 100%;
  padding: 10px;
  border: 1px solid rgba(201, 152, 69, 0.58);
  cursor: zoom-in;
  background: var(--pit);
  box-shadow: 24px 30px 0 rgba(201, 45, 36, 0.1);
  transition:
    transform 300ms var(--ease-out),
    border-color 180ms ease,
    box-shadow 300ms var(--ease-out);
}

.menu-poster:hover {
  border-color: var(--brass);
  box-shadow: 16px 20px 0 rgba(201, 45, 36, 0.17);
  transform: translate(5px, 5px) rotate(0.4deg);
}

.menu-poster:active {
  transform: translate(8px, 8px);
}

.menu-poster span {
  position: absolute;
  right: 20px;
  bottom: 20px;
  padding: 7px 10px;
  color: var(--coal);
  background: var(--bone);
  font-family: var(--utility);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.margin-note {
  position: absolute;
  top: 30%;
  right: -106px;
  margin: 0;
  color: var(--ash);
  font-family: var(--utility);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
  transform: rotate(90deg);
}

.crew-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(60px, 9vw, 130px);
  align-items: center;
  color: var(--coal);
  background:
    linear-gradient(90deg, rgba(94, 57, 31, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(94, 57, 31, 0.04) 1px, transparent 1px),
    var(--paper);
  background-size: 38px 38px;
}

.crew-photo {
  position: relative;
  padding: 13px;
  background: var(--coal);
  box-shadow: 34px 34px 0 rgba(110, 70, 42, 0.15);
  transform: rotate(-1.5deg);
}

.crew-photo::after {
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: 90px;
  height: 90px;
  border-right: 3px solid var(--ember);
  border-bottom: 3px solid var(--ember);
  content: "";
}

.crew-photo img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.paper-clip {
  position: absolute;
  top: -18px;
  left: 42%;
  width: 72px;
  height: 27px;
  background: rgba(244, 221, 179, 0.66);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
  transform: rotate(2deg);
}

.crew-section .eyebrow {
  color: #674430;
}

.crew-section .eyebrow > span:first-child {
  background: var(--ember);
}

.crew-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}

.crew-title-row h2 {
  margin-bottom: 28px;
  color: var(--coal);
}

.price-burst {
  flex: 0 0 auto;
  min-width: 122px;
  margin-top: -12px;
  padding: 15px 12px;
  color: var(--bone);
  background: var(--ember);
  font-family: var(--utility);
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.86;
  text-align: center;
  transform: rotate(3deg);
}

.price-burst small {
  font-size: 22px;
  vertical-align: top;
}

.price-burst sup {
  font-size: 20px;
  vertical-align: top;
}

.crew-lede {
  max-width: 650px;
  margin-bottom: 34px;
  color: #554336;
  font-size: 20px;
  line-height: 1.55;
}

.crew-includes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 0 0 36px;
  padding: 0;
  border-top: 1px solid rgba(38, 24, 16, 0.27);
  list-style: none;
}

.crew-includes li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 10px;
  border-bottom: 1px solid rgba(38, 24, 16, 0.27);
  font-family: var(--utility);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
}

.crew-includes li:nth-child(odd) {
  border-right: 1px solid rgba(38, 24, 16, 0.27);
}

.crew-includes span {
  display: inline-grid;
  min-width: 36px;
  height: 32px;
  place-items: center;
  color: var(--bone);
  background: var(--coal);
  font-size: 12px;
}

.crew-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
}

.text-link {
  padding: 8px 0;
  border-bottom: 1px solid rgba(38, 24, 16, 0.44);
  color: #3d2a20;
  font-family: var(--utility);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.03em;
  transition:
    color 180ms ease,
    border-color 180ms ease;
}

.text-link:hover {
  border-color: var(--ember);
  color: var(--ember);
}

.catering-section {
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(60px, 9vw, 130px);
  align-items: center;
  background: var(--pit);
}

.catering-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin-bottom: 35px;
  color: var(--smoke);
  font-size: 19px;
}

.service-list {
  margin: 0 0 34px;
  padding: 0;
  border-top: 1px solid rgba(241, 228, 206, 0.15);
  list-style: none;
}

.service-list li {
  display: flex;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(241, 228, 206, 0.15);
  font-family: var(--utility);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-list span {
  color: var(--ember-bright);
  font-size: 12px;
}

.catering-copy .button-bone {
  display: grid;
  width: max-content;
  min-height: 70px;
  justify-items: start;
  gap: 5px;
}

.catering-copy .button-bone .phone-display {
  font-size: 13px;
  letter-spacing: 0.16em;
}

.smoker-gallery {
  position: relative;
  min-height: 620px;
}

.smoker-main,
.smoker-detail {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(241, 228, 206, 0.18);
  box-shadow: 0 32px 72px rgba(0, 0, 0, 0.42);
}

.smoker-main {
  top: 0;
  right: 0;
  width: 87%;
  height: 72%;
}

.smoker-detail {
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 54%;
  height: 44%;
  border: 8px solid var(--paper);
  transform: rotate(-3deg);
}

.smoker-main img,
.smoker-detail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.1);
}

.gallery-caption {
  position: absolute;
  right: 0;
  bottom: 3%;
  display: grid;
  width: 43%;
  padding: 19px 22px;
  border-top: 2px solid var(--ember);
  background: var(--coal);
}

.gallery-caption strong {
  font-family: var(--utility);
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gallery-caption span {
  margin-top: 4px;
  color: var(--ash);
  font-size: 13px;
}

.final-cta {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  color: var(--bone);
  background: var(--ember);
}

.final-cta::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.15;
  background:
    repeating-radial-gradient(circle at 70% 50%, transparent 0 22px, #160908 23px 24px),
    linear-gradient(90deg, transparent 0 48%, rgba(11, 9, 8, 0.5));
}

.final-moon {
  position: absolute;
  top: 50%;
  right: -5vw;
  width: min(64vw, 800px);
  height: min(64vw, 800px);
  border: 2px solid rgba(241, 228, 206, 0.35);
  border-radius: 50%;
  transform: translateY(-50%);
}

.final-moon::after {
  position: absolute;
  top: -8%;
  right: -8%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  content: "";
  background: var(--ember);
}

.final-copy {
  position: relative;
  z-index: 2;
  max-width: 790px;
}

.final-copy .eyebrow {
  color: var(--bone);
}

.final-copy .eyebrow > span:first-child {
  background: var(--coal);
}

.final-copy h2 {
  font-size: clamp(58px, 8vw, 112px);
}

.final-copy h2 em {
  color: var(--coal);
}

.final-copy > p:not(.eyebrow) {
  margin-bottom: 32px;
  font-size: 21px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  min-height: 130px;
  padding: 26px max(32px, calc((100vw - var(--max-width)) / 2));
  border-top: 1px solid rgba(241, 228, 206, 0.12);
  background: var(--coal);
}

.site-footer p {
  margin: 0;
  color: var(--ash);
  font-family: var(--utility);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-align: center;
  text-transform: uppercase;
}

.site-footer p:last-child {
  justify-self: end;
}

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

.menu-dialog {
  width: min(680px, calc(100vw - 28px));
  max-height: calc(100dvh - 28px);
  padding: 0;
  border: 1px solid rgba(241, 228, 206, 0.22);
  color: var(--bone);
  background: var(--pit);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.72);
}

.menu-dialog::backdrop {
  background: rgba(5, 3, 2, 0.84);
  backdrop-filter: blur(8px);
}

.menu-dialog[open] {
  animation: dialog-in 300ms var(--ease-out);
}

.dialog-bar {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(241, 228, 206, 0.14);
  background: rgba(21, 17, 15, 0.94);
  backdrop-filter: blur(12px);
}

.dialog-bar > div {
  display: grid;
}

.dialog-bar span {
  color: var(--ember-bright);
  font-family: var(--utility);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.dialog-bar strong {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
}

.dialog-bar button {
  padding: 9px 0;
  border: 0;
  cursor: pointer;
  color: var(--bone);
  background: transparent;
  font-family: var(--utility);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.dialog-bar button:hover {
  color: var(--ember-bright);
}

.dialog-bar button:active {
  color: var(--brass);
}

.dialog-image-wrap {
  padding: 12px;
}

.dialog-image-wrap img {
  width: 100%;
}

.dialog-actions {
  position: sticky;
  bottom: 0;
  display: flex;
  justify-content: center;
  padding: 14px;
  border-top: 1px solid rgba(241, 228, 206, 0.14);
  background: rgba(21, 17, 15, 0.94);
  backdrop-filter: blur(12px);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 750ms ease,
    transform 750ms var(--ease-out);
}

.reveal-delay {
  transition-delay: 120ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes ember-rise {
  0% { opacity: 0; transform: translate(0, 0) scale(0.5); }
  18% { opacity: 0.9; }
  100% { opacity: 0; transform: translate(22px, -280px) scale(1.3); }
}

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

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

@keyframes dialog-in {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
}

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

  .desktop-nav {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(430px, 1.05fr);
  }

  .hero-art {
    min-height: 590px;
  }

  .margin-note {
    display: none;
  }

  .crew-section {
    gap: 60px;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 130px;
  }

  .hero::before {
    display: none;
  }

  .hero-copy {
    max-width: 700px;
  }

  .hero-art {
    width: min(100%, 680px);
    min-height: 610px;
    margin: -10px auto 0;
  }

  .moon-disc {
    width: min(60vw, 500px);
    height: min(60vw, 500px);
  }

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

  .section-heading .eyebrow {
    grid-column: auto;
  }

  .section-heading > p:last-child {
    max-width: 620px;
  }

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

  .menu-poster-wrap {
    width: min(100%, 470px);
    justify-self: center;
  }

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

  .crew-photo {
    width: min(100%, 680px);
    justify-self: center;
  }

  .crew-copy {
    max-width: 700px;
  }

  .catering-copy {
    max-width: 660px;
  }

  .smoker-gallery {
    min-height: 580px;
  }

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

  .site-footer > p:nth-child(2) {
    display: none;
  }
}

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

  body {
    font-size: 16px;
    padding-bottom: 68px;
  }

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

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-type strong {
    font-size: 14px;
  }

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

  .site-header > .button {
    display: none;
  }

  .hero {
    gap: 30px;
    padding: 112px 18px 60px;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 12px;
    letter-spacing: 0.16em;
  }

  h1 {
    font-size: clamp(44px, 13.8vw, 56px);
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .hero-lede {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
  }

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

  .hero-proof {
    grid-template-columns: 1fr;
    gap: 13px;
    margin-top: 40px;
  }

  .hero-proof > div,
  .hero-proof > div:first-child {
    grid-template-columns: 135px 1fr;
    align-items: baseline;
    padding: 0;
    border: 0;
  }

  .hero-proof span {
    margin: 0;
  }

  .hero-art {
    min-height: 440px;
  }

  .moon-disc {
    top: 0;
    width: 76vw;
    height: 76vw;
    max-width: 380px;
    max-height: 380px;
  }

  .food-frame {
    top: 6%;
    width: 79%;
    height: 68%;
  }

  .smoker-ticket {
    bottom: 1%;
    width: 62%;
  }

  .smoker-ticket figcaption {
    font-size: 11px;
  }

  .hero-stamp {
    right: 0;
    bottom: 2%;
    font-size: 10px;
  }

  .section {
    padding: 90px 18px;
  }

  .section-heading {
    margin-bottom: 44px;
  }

  .menu-layout {
    gap: 58px;
  }

  .menu-item {
    grid-template-columns: 30px 1fr;
    gap: 8px 12px;
  }

  .menu-item > strong {
    grid-column: 2;
    font-size: 16px;
  }

  .menu-item h3 {
    font-size: 21px;
  }

  .menu-actions {
    display: grid;
    justify-items: start;
  }

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

  .crew-section {
    gap: 62px;
  }

  .crew-photo {
    padding: 8px;
    box-shadow: 14px 16px 0 rgba(110, 70, 42, 0.15);
  }

  .crew-title-row {
    display: block;
  }

  .price-burst {
    width: max-content;
    margin: -10px 0 30px;
    font-size: 39px;
  }

  .crew-includes {
    grid-template-columns: 1fr;
  }

  .crew-includes li:nth-child(odd) {
    border-right: 0;
  }

  .crew-actions {
    display: grid;
  }

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

  .catering-section {
    gap: 54px;
  }

  .smoker-gallery {
    min-height: 390px;
  }

  .smoker-main {
    width: 94%;
    height: 67%;
  }

  .smoker-detail {
    width: 60%;
    height: 43%;
    border-width: 5px;
  }

  .gallery-caption {
    width: 51%;
    padding: 12px;
  }

  .gallery-caption strong {
    font-size: 13px;
  }

  .gallery-caption span {
    display: none;
  }

  .final-cta {
    min-height: 540px;
  }

  .final-copy h2 {
    font-size: clamp(54px, 18vw, 82px);
  }

  .final-actions {
    display: grid;
  }

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

  .site-footer {
    min-height: 154px;
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 34px 18px;
  }

  .site-footer p:last-child {
    justify-self: auto;
  }

  .mobile-order-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: 68px 1fr;
    height: 68px;
    border-top: 1px solid rgba(241, 228, 206, 0.22);
    background: var(--coal);
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.42);
  }

  .mobile-order-bar a {
    display: grid;
    place-items: center;
    font-family: var(--utility);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .mobile-order-bar .mobile-call {
    border-right: 1px solid rgba(241, 228, 206, 0.22);
    color: var(--brass);
    font-size: 20px;
  }

  .mobile-order-bar .order-link {
    color: var(--white);
    background: var(--ember);
  }

  .mobile-order-bar a:active {
    background: #a9231d;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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