:root {
  --char: #0a0907;
  --ink: #16110d;
  --bone: #f5eddc;
  --paper: #fff8e8;
  --smoke: #b8b0a3;
  --ember: #d94d2e;
  --coal: #251914;
  --brass: #c19a4b;
  --sage: #75806a;
  --radius: 8px;
  --header-height: 112px;
  --mobile-header-height: 86px;

  --bg: var(--char);
  --cream: var(--bone);
  --gold: var(--brass);
  --font-display: "Fraunces", serif;
  --font-body: "Fraunces", serif;
  --font-mono: "IBM Plex Mono", monospace;
  --content-pad-x: clamp(1.5rem, 5vw, 6rem);
  --section-pad-y: clamp(4rem, 8vw, 7rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--char);
  color: var(--bone);
  font-family: "IBM Plex Mono", monospace;
  overflow-x: hidden;
}

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

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

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

#smoke-canvas,
.grain {
  inset: 0;
  pointer-events: none;
  position: fixed;
  z-index: 30;
}

#smoke-canvas {
  mix-blend-mode: screen;
  opacity: 0.22;
}

.grain {
  background-image: url("./images/vecteezy_a-close-up-of-a-chalkboard-surface_1259795.jpg");
  background-size: 360px;
  mix-blend-mode: overlay;
  opacity: 0.08;
}

.skip-link {
  background: var(--bone);
  color: var(--char);
  left: 1rem;
  padding: 0.7rem 1rem;
  position: fixed;
  top: -4rem;
  z-index: 100;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  align-items: center;
  display: grid;
  grid-template-columns: 128px 1fr 128px;
  gap: 1rem;
  left: 0;
  min-height: var(--header-height);
  padding: 0.8rem clamp(1rem, 3vw, 2.5rem);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 50;
  transition: background 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  background: rgb(10 9 7 / 86%);
  border-bottom: 1px solid rgb(245 237 220 / 14%);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: block;
  width: 96px;
}

.primary-nav {
  align-items: center;
  display: flex;
  gap: clamp(1rem, 2.6vw, 2.8rem);
  justify-content: center;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
}

.primary-nav a {
  position: relative;
}

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

.primary-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  align-items: center;
  background: var(--bone);
  color: var(--char);
  display: inline-flex;
  font-size: 0.96rem;
  font-weight: 900;
  justify-content: center;
  justify-self: end;
  line-height: 1;
  min-height: 58px;
  padding: 1rem 1.25rem;
  text-transform: uppercase;
}

.hero {
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  place-items: end start;
  position: relative;
}

.hero-media,
.hero-overlay {
  inset: 0;
  position: absolute;
}

.hero-media img {
  filter: saturate(1.08) contrast(1.08);
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  width: 100%;
}

.hero-overlay {
  background:
    radial-gradient(circle at 78% 34%, rgb(193 154 75 / 18%), transparent 24rem),
    linear-gradient(90deg, rgb(10 9 7 / 96%) 0%, rgb(10 9 7 / 82%) 38%, rgb(10 9 7 / 48%) 78%, rgb(10 9 7 / 28%) 100%),
    linear-gradient(0deg, var(--char) 0%, transparent 44%);
}

.hero-content {
  max-width: 950px;
  padding: 9rem clamp(1rem, 5vw, 4.5rem) 7rem;
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Oswald", "Bebas Neue", sans-serif;
  font-weight: 500;
  letter-spacing: 0.005em;
  line-height: 0.92;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(4.8rem, 13.2vw, 12rem);
  margin-bottom: 1rem;
  max-width: 11ch;
  text-shadow: 0 0 32px rgb(193 154 75 / 18%);
}

h2 {
  font-size: clamp(3.6rem, 8vw, 7.6rem);
  margin-bottom: 1rem;
}

h3 {
  font-family: "Fraunces", serif;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1;
}

.hero-copy {
  color: rgb(245 237 220 / 84%);
  font-family: "Fraunces", serif;
  font-size: clamp(1.22rem, 2.2vw, 1.9rem);
  line-height: 1.28;
  max-width: 690px;
}

.hero-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.button {
  align-items: center;
  border: 1px solid currentColor;
  display: inline-flex;
  font-size: 0.86rem;
  font-weight: 700;
  justify-content: center;
  min-height: 48px;
  overflow: hidden;
  padding: 0.95rem 1.15rem;
  position: relative;
  text-transform: uppercase;
}

.button::before {
  background: rgb(255 255 255 / 22%);
  content: "";
  inset: 0 auto 0 -40%;
  position: absolute;
  transform: skewX(-22deg);
  transition: left 260ms ease;
  width: 30%;
}

.button:hover::before {
  left: 118%;
}

.button-hot {
  background: var(--ember);
  border-color: var(--ember);
  color: white;
  box-shadow: 0 18px 60px rgb(217 77 46 / 22%);
}

.button-ghost {
  background: rgb(10 9 7 / 42%);
  color: var(--bone);
}

.scroll-cue {
  bottom: 2rem;
  font-size: 0.72rem;
  left: 50%;
  letter-spacing: 0.12em;
  position: absolute;
  text-transform: uppercase;
  transform: translateX(-50%) rotate(90deg);
  z-index: 3;
}

.conversion-strip {
  background: var(--bone);
  color: var(--char);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 4;
}

.conversion-strip a {
  border-right: 1px solid rgb(10 9 7 / 18%);
  min-height: 112px;
  padding: 1.15rem;
  transition: background 180ms ease, color 180ms ease;
}

.conversion-strip a:hover {
  background: var(--ember);
  color: white;
}

.conversion-strip strong {
  display: block;
  font-family: "Oswald", "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 400;
  line-height: 0.95;
}

.conversion-strip span {
  display: block;
  font-size: 0.78rem;
  margin-top: 0.35rem;
  text-transform: uppercase;
}

.section {
  padding: clamp(4rem, 9vw, 8rem) clamp(1rem, 5vw, 4.5rem);
}

.section-heading {
  align-items: end;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 1.15fr) minmax(270px, 0.65fr);
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.section-heading p,
.pit-copy p,
.catering p,
.reserve p,
.visit p {
  color: rgb(245 237 220 / 72%);
  line-height: 1.65;
}

.menu-world {
  background:
    radial-gradient(circle at 18% 12%, rgb(193 154 75 / 10%), transparent 28rem),
    linear-gradient(180deg, var(--char), var(--coal)),
    var(--char);
  position: relative;
}

.menu-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}

.menu-card {
  background: rgb(245 237 220 / 5%);
  border: 1px solid rgb(245 237 220 / 14%);
  cursor: pointer;
  min-height: 520px;
  overflow: hidden;
  position: relative;
}

.menu-card img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  opacity: 0.68;
  position: absolute;
  transform: scale(1.04);
  transition: transform 380ms ease, opacity 380ms ease;
  width: 100%;
}

.menu-card::after {
  background: linear-gradient(0deg, rgb(10 9 7 / 94%), transparent 70%);
  content: "";
  inset: 0;
  position: absolute;
}

.menu-card div {
  bottom: 0;
  left: 0;
  padding: 1.35rem;
  position: absolute;
  right: 0;
  z-index: 1;
}

.menu-card p {
  color: var(--brass);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.menu-card span {
  color: rgb(245 237 220 / 76%);
  line-height: 1.5;
}

.menu-card:hover img,
.menu-card.is-active img {
  opacity: 1;
  transform: scale(1.12);
}

.pit-stage {
  align-items: center;
  background: var(--paper);
  color: var(--char);
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: 0.85fr 1.15fr;
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 5vw, 4.5rem);
}

.pit-copy p {
  color: rgb(10 9 7 / 68%);
}

.ember-board {
  aspect-ratio: 1.25;
  background: var(--char);
  min-height: 420px;
  overflow: visible;
  position: relative;
}

.ember-board img {
  filter: contrast(1.08) saturate(1.15);
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.ember-board::before {
  background:
    radial-gradient(circle at var(--mx, 52%) var(--my, 48%), rgb(193 154 75 / 16%), transparent 15rem),
    linear-gradient(0deg, rgb(10 9 7 / 34%), transparent 58%);
  content: "";
  inset: 0;
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.spread-hotspot {
  box-shadow: 0 10px 32px rgb(10 9 7 / 34%);
  z-index: 2;
}

.spread-brisket {
  left: 19%;
  top: 26%;
}

.spread-ribs {
  right: 18%;
  top: 32%;
}

.spread-oysters {
  bottom: 18%;
  left: 14%;
}

.spread-cocktails {
  bottom: 14%;
  right: 12%;
}

.events {
  background: var(--char);
}

.space-rail {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 2rem;
}

.space-rail article {
  border: 1px solid rgb(245 237 220 / 14%);
  min-height: 520px;
  padding: 0 0 1rem;
}

.space-rail img {
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.space-rail h3,
.space-rail p {
  padding: 0 1rem;
}

.space-rail h3 {
  margin-top: 1rem;
}

.space-rail p {
  color: rgb(245 237 220 / 72%);
  line-height: 1.55;
}

.catering,
.reserve,
.visit {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: 1fr 1fr;
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 5vw, 4.5rem);
}

.catering {
  background: var(--sage);
  color: var(--paper);
}

.catering img {
  filter: invert(1) brightness(1.18) drop-shadow(0 24px 60px rgb(0 0 0 / 24%));
  mix-blend-mode: screen;
  opacity: 0.9;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.service-tags span {
  border: 1px solid rgb(255 248 232 / 38%);
  padding: 0.65rem 0.78rem;
  text-transform: uppercase;
}

.reserve {
  background:
    linear-gradient(90deg, rgb(10 9 7 / 86%), rgb(10 9 7 / 58%)),
    url("./images/TheCarbonBar_DiningRoom_140114_0008-2-1.jpg") center / cover;
}

.reservation-card {
  background: var(--paper);
  color: var(--char);
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 2rem);
}

.reservation-card.pv-embed {
  display: block;
  min-height: 480px;
  padding: clamp(1rem, 2.4vw, 1.6rem);
}

.reservation-card.pv-embed > div {
  min-height: inherit;
}

.reservation-card label {
  display: grid;
  font-size: 0.78rem;
  font-weight: 700;
  gap: 0.45rem;
  text-transform: uppercase;
}

.reservation-card select {
  appearance: none;
  background: white;
  border: 1px solid rgb(10 9 7 / 24%);
  border-radius: 0;
  color: var(--char);
  font: 700 1rem "IBM Plex Mono", monospace;
  min-height: 54px;
  padding: 0.8rem;
}

.visit {
  background: var(--bone);
  color: var(--char);
}

.visit p {
  color: rgb(10 9 7 / 68%);
}

.visit .button-ghost {
  background: transparent;
  color: var(--char);
}

.site-footer {
  align-items: center;
  background: var(--char);
  border-top: 1px solid rgb(245 237 220 / 14%);
  display: grid;
  gap: 1rem;
  grid-template-columns: 90px 1fr auto;
  padding: 1.2rem clamp(1rem, 5vw, 4.5rem);
}

.site-footer p {
  color: rgb(245 237 220 / 68%);
  margin: 0;
}

.site-footer a {
  color: var(--brass);
  font-weight: 700;
  text-transform: uppercase;
}

.menu-page {
  background: var(--char);
}

.menu-hero {
  align-items: start;
  background:
    radial-gradient(circle at 74% 28%, rgb(193 154 75 / 20%), transparent 22rem),
    linear-gradient(180deg, var(--char), var(--coal));
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(360px, 0.88fr) minmax(440px, 1.12fr);
  min-height: 100svh;
  overflow: hidden;
  padding: calc(var(--header-height) + 2rem) clamp(1rem, 4vw, 3.8rem) 4rem;
  position: relative;
}

.menu-hero-copy {
  min-width: 0;
  position: relative;
  z-index: 2;
}

.menu-hero-copy h1 {
  font-size: clamp(4.5rem, 8.2vw, 8.8rem);
  max-width: 7.5ch;
}

.menu-hero-copy p:not(.eyebrow) {
  color: rgb(245 237 220 / 78%);
  font-family: "Fraunces", serif;
  font-size: clamp(1.05rem, 1.45vw, 1.38rem);
  line-height: 1.35;
  max-width: 560px;
}

.menu-hero-plate {
  aspect-ratio: 1;
  border: 1px solid rgb(245 237 220 / 16%);
  align-self: start;
  max-height: min(72svh, 860px);
  overflow: hidden;
  position: relative;
  width: 100%;
}

.menu-hero-plate::after {
  background: radial-gradient(circle at center, transparent 30%, rgb(10 9 7 / 72%) 78%);
  content: "";
  inset: 0;
  position: absolute;
}

.menu-hero-plate img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  width: 100%;
}

.plate-hotspot,
.spread-hotspot {
  background: var(--bone);
  color: var(--char);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.7rem 0.85rem;
  position: absolute;
  text-transform: uppercase;
  z-index: 2;
}

.plate-hotspot::after,
.spread-hotspot::after {
  background: rgb(10 9 7 / 92%);
  border: 1px solid rgb(245 237 220 / 18%);
  bottom: calc(100% + 0.65rem);
  color: var(--bone);
  content: attr(data-note);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.76rem;
  font-weight: 600;
  left: 0;
  line-height: 1.35;
  max-width: min(270px, 70vw);
  opacity: 0;
  padding: 0.8rem;
  pointer-events: none;
  position: absolute;
  text-transform: none;
  transform: translateY(0.5rem);
  transition: opacity 180ms ease, transform 180ms ease;
  width: max-content;
}

.plate-hotspot:hover,
.plate-hotspot:focus-visible,
.spread-hotspot:hover,
.spread-hotspot:focus-visible {
  background: var(--ember);
  color: white;
  outline: 0;
}

.plate-hotspot:hover::after,
.plate-hotspot:focus-visible::after,
.spread-hotspot:hover::after,
.spread-hotspot:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.hotspot-brisket {
  left: 8%;
  top: 12%;
}

.hotspot-ribs {
  right: 8%;
  top: 28%;
}

.hotspot-chicken {
  left: 18%;
  top: 42%;
}

.hotspot-oysters {
  bottom: 22%;
  left: 12%;
}

.hotspot-bourbon {
  bottom: 10%;
  right: 10%;
}

.hotspot-ribs::after,
.hotspot-bourbon::after,
.spread-ribs::after,
.spread-cocktails::after {
  left: auto;
  right: 0;
}

.menu-tabs {
  background: var(--bone);
  color: var(--char);
  display: flex;
  gap: 1px;
  overflow-x: auto;
  position: sticky;
  top: var(--header-height);
  z-index: 20;
  border-top: 1px solid rgb(10 9 7 / 16%);
  border-bottom: 1px solid rgb(10 9 7 / 18%);
}

.menu-tabs a {
  align-items: center;
  border-right: 1px solid rgb(10 9 7 / 18%);
  display: flex;
  flex: 1 0 auto;
  font-size: 0.94rem;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0.05em;
  line-height: 1;
  min-height: 70px;
  min-width: 150px;
  padding: 1.1rem 1rem;
  text-align: center;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease;
}

.menu-tabs a:hover {
  background: var(--ember);
  color: white;
}

.menu-builder,
.menu-filter-panel,
.menu-cta-band {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 5vw, 4.5rem);
}

.menu-builder {
  background: var(--paper);
  color: var(--char);
}

.menu-builder h2,
.menu-filter-heading h2,
.menu-cta-band h2 {
  margin-bottom: 0;
}

.builder-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2rem;
}

.builder-card {
  background: transparent;
  border: 1px solid rgb(10 9 7 / 22%);
  color: var(--char);
  cursor: pointer;
  font: 600 1rem/1.55 "IBM Plex Mono", monospace;
  min-height: 190px;
  padding: 1rem;
  text-align: left;
  text-transform: none;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.builder-card span {
  display: block;
  font-family: "Oswald", "Bebas Neue", sans-serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 0.9;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.builder-card:hover,
.builder-card.is-active {
  background: var(--char);
  border-color: var(--char);
  color: var(--bone);
  transform: translateY(-4px);
}

.builder-result {
  border-left: 5px solid var(--ember);
  font-family: "Fraunces", serif;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.38;
  margin: 2rem 0 0;
  max-width: 880px;
  padding-left: 1rem;
}

.menu-filter-panel {
  background:
    linear-gradient(180deg, var(--coal), var(--char));
  color: var(--bone);
  scroll-margin-top: calc(var(--header-height) + 70px);
}

.menu-filter-heading {
  align-items: end;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 2rem;
}

.filter-buttons button {
  background: rgb(245 237 220 / 7%);
  border: 1px solid rgb(245 237 220 / 18%);
  color: var(--bone);
  cursor: pointer;
  font: 700 0.8rem "IBM Plex Mono", monospace;
  padding: 0.78rem 0.95rem;
  text-transform: uppercase;
}

.filter-buttons button:hover,
.filter-buttons button.is-active {
  background: var(--ember);
  border-color: var(--ember);
  color: white;
}

.dish-grid {
  display: grid;
  gap: 1rem;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, 1fr);
}

.dish-card {
  background: rgb(245 237 220 / 5%);
  border: 1px solid rgb(245 237 220 / 14%);
  display: grid;
  min-height: 410px;
  overflow: hidden;
  position: relative;
  transition: opacity 160ms ease, transform 180ms ease;
}

.dish-card.is-hidden {
  display: none;
}

.dish-card-large {
  grid-column: span 2;
  grid-row: span 2;
}

.dish-card-tall {
  grid-row: span 2;
}

.dish-card-photo {
  grid-row: span 2;
  min-height: 100%;
}

.dish-card img {
  aspect-ratio: 1.12;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.dish-card div {
  align-self: end;
  padding: 1rem;
}

.dish-card-photo div {
  background: linear-gradient(180deg, transparent, rgb(10 9 7 / 78%));
  bottom: 0;
  left: 0;
  padding-top: 5rem;
  position: absolute;
  right: 0;
}

.dish-card p {
  color: var(--brass);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 0.7rem;
  text-transform: uppercase;
}

.dish-card h3 {
  margin-bottom: 0.7rem;
}

.dish-card span {
  color: rgb(245 237 220 / 72%);
  line-height: 1.5;
}

.dish-card:hover {
  transform: translateY(-4px);
}

.menu-cta-band {
  align-items: center;
  background: var(--sage);
  color: var(--paper);
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr auto;
}

.menu-cta-band .button-ghost {
  background: transparent;
}

.page {
  background: var(--char);
}

.page-hero {
  background:
    radial-gradient(circle at 78% 28%, rgb(193 154 75 / 20%), transparent 24rem),
    linear-gradient(180deg, var(--char), var(--coal));
  display: grid;
  gap: clamp(1.5rem, 4vw, 4rem);
  min-height: 100svh;
  padding: calc(var(--header-height) + 2rem) clamp(1rem, 5vw, 4.5rem) clamp(3rem, 6vw, 5rem);
}

.split-hero,
.visit-hero {
  align-items: stretch;
  grid-template-columns: minmax(360px, 0.78fr) minmax(420px, 1.22fr);
}

.split-hero .page-hero-copy,
.visit-hero .page-hero-copy {
  align-self: center;
}

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

.page-hero h1 {
  font-size: clamp(4.6rem, 9.8vw, 9.5rem);
  max-width: 9ch;
  text-wrap: balance;
}

.groups-page .page-hero h1,
.gift-page .page-hero h1 {
  font-size: clamp(3.6rem, 7vw, 6.4rem);
  max-width: 18ch;
}

.reserve-page .page-hero h1 {
  max-width: 11ch;
}

.page-hero p:not(.eyebrow) {
  color: rgb(245 237 220 / 82%);
  font-family: "Fraunces", serif;
  font-size: clamp(1.06rem, 1.65vw, 1.55rem);
  line-height: 1.35;
  max-width: 700px;
}

.page-hero-image {
  border: 1px solid rgb(245 237 220 / 16%);
  min-height: min(66vh, 680px);
  overflow: hidden;
  position: relative;
}

.page-hero-image::after {
  background:
    radial-gradient(circle at 70% 20%, rgb(193 154 75 / 16%), transparent 20rem),
    linear-gradient(0deg, rgb(10 9 7 / 50%), transparent 60%);
  content: "";
  inset: 0;
  position: absolute;
}

.page-hero-image img {
  filter: saturate(1.06) contrast(1.05);
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.proof-strip,
.location-strip {
  background: var(--bone);
  color: var(--char);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-strip div,
.location-strip div {
  border-right: 1px solid rgb(10 9 7 / 18%);
  min-height: 118px;
  padding: 1rem;
}

.proof-strip strong,
.location-strip strong {
  display: block;
  font-family: "Oswald", "Bebas Neue", sans-serif;
  font-size: clamp(2.4rem, 4.8vw, 4.4rem);
  font-weight: 400;
  line-height: 0.9;
  text-transform: uppercase;
}

.proof-strip span,
.location-strip span {
  display: block;
  font-size: 0.78rem;
  line-height: 1.45;
  margin-top: 0.45rem;
  text-transform: uppercase;
}

.content-band {
  position: relative;
}

.dark-band {
  background:
    radial-gradient(circle at 24% 8%, rgb(193 154 75 / 10%), transparent 28rem),
    linear-gradient(180deg, var(--char), var(--coal));
  color: var(--bone);
}

.light-band {
  background: var(--paper);
  color: var(--char);
}

.light-band .section-kicker,
.visit-menu-callout .section-kicker {
  color: #9f7326;
}

.light-band .section-heading p,
.visit-menu-callout p,
.map-copy p,
.inquiry-panel p {
  color: rgb(10 9 7 / 68%);
}

.feature-grid,
.seo-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}

.spaces-grid {
  grid-template-columns: repeat(4, 1fr);
}

.feature-grid article,
.seo-grid article {
  border: 1px solid rgb(245 237 220 / 14%);
  min-height: 100%;
}

.feature-grid img {
  aspect-ratio: 1.18;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.feature-grid h3,
.feature-grid p,
.seo-grid h2,
.seo-grid h3,
.seo-grid p {
  padding-left: 1rem;
  padding-right: 1rem;
}

.feature-grid h3,
.seo-grid h2,
.seo-grid h3 {
  margin-top: 1rem;
}

.seo-grid h2,
.feature-grid h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  line-height: 1.1;
  margin-bottom: 0.6rem;
  max-width: none;
  text-wrap: balance;
}

.feature-grid p,
.seo-grid p {
  color: rgb(245 237 220 / 72%);
  line-height: 1.6;
}

.light-band .seo-grid article {
  border-color: rgb(10 9 7 / 18%);
}

.light-band .seo-grid p {
  color: rgb(10 9 7 / 68%);
}

.seo-grid-dark article {
  background: rgb(245 237 220 / 5%);
}

.inquiry-panel,
.visit-menu-callout {
  align-items: center;
  background: var(--sage);
  color: var(--paper);
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: 1fr 0.78fr;
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 5vw, 4.5rem);
}

.inquiry-panel .reservation-card {
  background: var(--paper);
}

.map-section {
  background: var(--paper);
  color: var(--char);
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: 0.72fr 1.28fr;
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 5vw, 4.5rem);
}

.map-preview {
  align-items: flex-start;
  background:
    linear-gradient(135deg, rgb(10 9 7 / 8%) 25%, transparent 25%) 0 0 / 28px 28px,
    linear-gradient(315deg, rgb(10 9 7 / 8%) 25%, transparent 25%) 0 0 / 28px 28px,
    var(--bone);
  border: 1px solid rgb(10 9 7 / 20%);
  color: var(--char);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: min(64vh, 620px);
  min-height: 420px;
  padding: clamp(1rem, 3vw, 2rem);
  position: relative;
  text-decoration: none;
  width: 100%;
}

.map-preview::before,
.map-preview::after {
  background: var(--ember);
  content: "";
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.map-preview::before {
  height: 1px;
  width: min(46vw, 520px);
}

.map-preview::after {
  height: min(42vh, 420px);
  width: 1px;
}

.map-preview span {
  color: rgb(10 9 7 / 62%);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.82rem;
  margin-bottom: 0.35rem;
}

.map-preview strong {
  border-bottom: 2px solid currentColor;
  color: var(--char);
  font-family: "Oswald", "Bebas Neue", sans-serif;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  letter-spacing: 0.01em;
  line-height: 0.95;
  text-transform: uppercase;
}

.visit-menu-callout {
  background: var(--bone);
  color: var(--char);
}

.visit-menu-callout .button-ghost {
  background: transparent;
  color: var(--char);
}

.faq-section {
  background:
    radial-gradient(circle at 80% 12%, rgb(193 154 75 / 10%), transparent 24rem),
    var(--char);
  color: var(--bone);
}

.faq-section h2 {
  max-width: 900px;
}

.faq-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2rem;
}

.faq-grid article {
  background: rgb(245 237 220 / 5%);
  border: 1px solid rgb(245 237 220 / 14%);
  padding: 1rem;
}

.faq-grid p {
  color: rgb(245 237 220 / 72%);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 86px 1fr;
    min-height: var(--mobile-header-height);
    padding-bottom: 0.55rem;
    padding-top: 0.55rem;
  }

  .brand-mark {
    width: 76px;
  }

  .primary-nav {
    display: none;
  }

  .header-cta {
    font-size: 0.84rem;
    justify-self: end;
    min-height: 48px;
    padding: 0.85rem 1rem;
  }

  .hero {
    min-height: 920px;
  }

  .hero-content {
    padding-top: 7rem;
  }

  .scroll-cue {
    display: none;
  }

  .conversion-strip,
  .proof-strip,
  .location-strip,
  .menu-grid,
  .space-rail,
  .menu-hero,
  .split-hero,
  .visit-hero,
  .feature-grid,
  .seo-grid,
  .faq-grid,
  .map-section,
  .builder-grid,
  .dish-grid,
  .pit-stage,
  .catering,
  .reserve,
  .visit,
  .inquiry-panel,
  .visit-menu-callout,
  .menu-cta-band,
  .section-heading,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .conversion-strip a {
    min-height: 92px;
  }

  .menu-card {
    min-height: 430px;
  }

  .ember-board {
    min-height: 320px;
  }

  .menu-tabs {
    top: var(--mobile-header-height);
  }

  .menu-tabs a {
    font-size: 0.84rem;
    min-height: 60px;
    min-width: 142px;
    padding: 1rem 0.85rem;
  }

  .menu-hero {
    gap: 2rem;
    min-height: auto;
    padding-top: calc(var(--mobile-header-height) + 2.5rem);
  }

  .page-hero {
    min-height: auto;
    padding-top: calc(var(--mobile-header-height) + 2.5rem);
  }

  .page-hero h1 {
    font-size: clamp(4rem, 17vw, 7.5rem);
  }

  .page-hero-image {
    min-height: 360px;
  }

  .menu-hero-copy h1 {
    font-size: clamp(4rem, 17vw, 7.5rem);
  }

  .menu-hero-plate {
    min-height: 360px;
    transform: none;
  }

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

  .dish-card-large,
  .dish-card-tall {
    grid-column: auto;
    grid-row: auto;
  }
}

.recognition {
  background: rgb(20 13 10);
  color: var(--bone);
  padding: clamp(1.25rem, 2.2vw, 1.9rem) clamp(1rem, 5vw, 4.5rem);
  position: relative;
  z-index: 4;
}

.recognition-inner {
  align-items: center;
  display: flex;
  gap: clamp(0.8rem, 2vw, 1.5rem);
  justify-content: center;
}

.recognition-label {
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  margin: 0;
  text-transform: uppercase;
}

.recognition-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.8rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.recognition-list li {
  color: rgb(245 237 220 / 72%);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.recognition-list li:not(:last-child)::after {
  color: rgb(245 237 220 / 28%);
  content: "/";
  margin-left: 0.8rem;
}

.voices {
  background:
    radial-gradient(circle at 22% 18%, rgb(193 154 75 / 10%), transparent 32rem),
    linear-gradient(180deg, var(--coal), var(--char));
  color: var(--bone);
}

.voices-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}

.voice-card {
  background: rgb(245 237 220 / 4%);
  border: 1px solid rgb(245 237 220 / 14%);
  display: grid;
  gap: 1.2rem;
  padding: 1.6rem;
}

.voice-card blockquote {
  color: var(--bone);
  font-family: "Fraunces", serif;
  font-size: clamp(1.18rem, 1.5vw, 1.45rem);
  line-height: 1.32;
  margin: 0;
  quotes: "“" "”";
}

.voice-card blockquote::before {
  color: var(--brass);
  content: open-quote;
  font-size: 1.6em;
  line-height: 0;
  margin-right: 0.2rem;
  vertical-align: -0.32em;
}

.voice-card cite {
  color: var(--brass);
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.story-strip {
  background: var(--paper);
  color: var(--char);
  display: grid;
  gap: clamp(1.6rem, 3vw, 3rem);
  grid-template-columns: 1fr 1fr 1fr;
  padding: clamp(3rem, 6vw, 5.5rem) clamp(1rem, 5vw, 4.5rem);
}

.story-strip article {
  border-left: 2px solid var(--ember);
  padding-left: 1.1rem;
}

.story-strip article p {
  color: rgb(10 9 7 / 70%);
  font-family: "Fraunces", serif;
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  line-height: 1.45;
  margin: 0;
}

.story-strip article strong {
  color: var(--char);
  display: block;
  font-family: "Oswald", "Bebas Neue", sans-serif;
  font-size: clamp(1.5rem, 2.2vw, 2.1rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}

.plate-hotspot.hotspot-wine {
  bottom: 30%;
  right: 32%;
}

.plate-hotspot.hotspot-wine::after,
.hotspot-bourbon::after {
  left: auto;
  right: 0;
}

.plate-hotspot.hotspot-beer {
  top: 14%;
  right: 30%;
}

@media (max-width: 900px) {
  .recognition-inner {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .recognition-list {
    gap: 0.9rem;
  }
}

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

  #smoke-canvas {
    display: none;
  }
}

/* Detailed Menu Styles */
.menu-detailed {
  background:
    radial-gradient(circle at 82% 8%, rgb(193 154 75 / 10%), transparent 24rem),
    linear-gradient(180deg, var(--char), var(--coal));
  color: var(--bone);
  margin: 0;
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 5vw, 4.5rem);
  scroll-margin-top: calc(var(--header-height) + 86px);
}

.menu-detailed-heading {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  max-width: 820px;
}

.menu-detailed-heading h2 {
  color: var(--cream);
  font-family: "Fraunces", serif;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  letter-spacing: 0;
  line-height: 0.96;
  margin: 0;
  text-transform: none;
}

.menu-detailed-heading p:not(.section-kicker) {
  color: rgb(245 237 220 / 72%);
  font-family: "Fraunces", serif;
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  line-height: 1.5;
  margin: 0.9rem 0 0;
  max-width: 64ch;
}

.menu-category {
  border-top: 1px solid rgb(245 237 220 / 12%);
  display: grid;
  gap: clamp(1.4rem, 3vw, 2.5rem);
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
  padding: clamp(2rem, 4vw, 3rem) 0;
  scroll-margin-top: calc(var(--header-height) + 86px);
}

.menu-category:last-of-type {
  border-bottom: 1px solid rgb(245 237 220 / 12%);
}

.menu-category-title {
  color: var(--gold);
  font-family: "Oswald", "Bebas Neue", sans-serif;
  font-size: clamp(1.45rem, 2.2vw, 2.1rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.menu-items {
  display: grid;
  gap: 1rem 1.2rem;
  grid-column: 2;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.menu-items-compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.menu-item {
  background: rgb(245 237 220 / 4%);
  border: 1px solid rgb(245 237 220 / 12%);
  padding: 1rem;
}

.menu-item-header {
  align-items: baseline;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

.menu-item-name {
  color: var(--cream);
  font-family: "Fraunces", serif;
  font-size: 1.04rem;
  font-weight: 600;
  line-height: 1.15;
  margin: 0;
}

.menu-item-price {
  color: var(--gold);
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  white-space: nowrap;
}

.menu-item-desc {
  color: rgba(245, 237, 220, 0.6);
  font-family: "Fraunces", serif;
  font-size: 0.92rem;
  line-height: 1.5;
  margin: 0.45rem 0 0;
}

.menu-item-addon {
  padding-left: 1rem;
  border-left: 2px solid rgba(193, 154, 75, 0.3);
}

.menu-category-note {
  color: rgb(245 237 220 / 66%);
  font-family: "Fraunces", serif;
  font-style: italic;
  grid-column: 2;
  margin: -1.2rem 0 0;
}

.menu-note {
  text-align: center;
  font-size: 0.82rem;
  color: rgba(245, 237, 220, 0.4);
  margin-top: 2rem;
  font-style: italic;
}

.parking-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: rgba(245, 237, 220, 0.7);
}

/* Reserve Page Styles */
.reserve-hero {
  align-items: center;
  background:
    radial-gradient(circle at 76% 30%, rgb(193 154 75 / 18%), transparent 28rem),
    linear-gradient(180deg, var(--char), var(--coal));
  column-gap: clamp(3rem, 10vw, 13rem);
  grid-template-columns: minmax(0, 600px) 344px;
  justify-content: start;
  position: relative;
}

.reserve-hero::before {
  background:
    radial-gradient(circle at 82% 42%, rgb(193 154 75 / 20%), transparent 25rem),
    linear-gradient(110deg, rgb(10 9 7 / 96%) 0%, rgb(10 9 7 / 82%) 42%, rgb(10 9 7 / 46%) 100%),
    linear-gradient(0deg, rgb(10 9 7 / 74%) 0%, transparent 36%),
    url("./images/TheCarbonBar_DiningRoom_140114_0008-2-1.jpg") center/cover no-repeat;
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.reserve-hero > * {
  position: relative;
  z-index: 1;
}

.reserve-hero .page-hero-copy {
  max-width: 640px;
}

.reserve-page .page-hero h1 {
  font-size: clamp(3.2rem, 5.45vw, 5.45rem);
  letter-spacing: 0.005em;
  line-height: 1;
  max-width: 12.5ch;
  text-wrap: balance;
}

.reserve-page .page-hero p:not(.eyebrow) {
  font-family: "Fraunces", serif;
  font-size: clamp(1rem, 1.18vw, 1.22rem);
  font-style: italic;
  max-width: 520px;
}

.reserve-quick-facts {
  display: grid;
  gap: 0.75rem;
  list-style: none;
  margin: 2rem 0 1.6rem;
  padding: 0;
}

.reserve-quick-facts li {
  align-items: baseline;
  border-left: 2px solid var(--brass);
  display: grid;
  gap: 0.15rem 1rem;
  grid-template-columns: minmax(110px, max-content) 1fr;
  padding: 0.2rem 0 0.2rem 1rem;
}

.reserve-quick-facts strong {
  color: var(--brass);
  font-family: "Oswald", "Bebas Neue", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.reserve-quick-facts span {
  color: rgb(245 237 220 / 88%);
  font-family: "Fraunces", serif;
  font-size: clamp(0.98rem, 1.1vw, 1.12rem);
  line-height: 1.35;
}

.reserve-quick-facts a {
  border-bottom: 1px solid currentColor;
}

.reserve-card {
  align-self: center;
  background: transparent;
  border: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  justify-self: end;
  max-width: 344px;
  padding: 0;
  position: relative;
  width: 100%;
  z-index: 40;
}

.reserve-card-widget {
  align-items: center;
  align-self: stretch;
  background: transparent;
  border: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 0;
  padding: 0;
  width: 100%;
}

.reserve-card-widget iframe {
  display: block;
  max-width: 100%;
}

.reserve-card-widget iframe,
.reserve-card-widget > * {
  max-width: 100%;
}

.location-details {
  display: grid;
  gap: 0.85rem;
  margin: 1.6rem 0 1.8rem;
}

.location-details > div {
  display: grid;
  gap: 0.1rem 1.2rem;
  grid-template-columns: minmax(86px, max-content) 1fr;
}

.location-details dt {
  color: var(--ember);
  font-family: "Oswald", "Bebas Neue", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.location-details dd {
  color: rgb(10 9 7 / 78%);
  font-family: "Fraunces", serif;
  font-size: clamp(0.95rem, 1.05vw, 1.08rem);
  line-height: 1.4;
  margin: 0;
}

.location-details a {
  border-bottom: 1px solid currentColor;
}

.reserve-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.reserve-hours {
  align-items: center;
  background:
    radial-gradient(circle at 84% 22%, rgb(193 154 75 / 10%), transparent 24rem),
    linear-gradient(180deg, var(--char), var(--coal));
  color: var(--bone);
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(280px, 0.8fr) minmax(360px, 1.2fr);
}

.reserve-hours-copy h2 {
  font-size: clamp(3.4rem, 6.7vw, 6.6rem);
  line-height: 0.96;
  margin-bottom: 1rem;
  max-width: 11ch;
}

.reserve-hours-copy p:not(.section-kicker) {
  color: rgb(245 237 220 / 72%);
  font-family: "Fraunces", serif;
  font-size: clamp(1.05rem, 1.35vw, 1.28rem);
  line-height: 1.5;
  max-width: 34rem;
}

.hours-panel {
  background: rgb(245 237 220 / 4%);
  border: 1px solid rgb(245 237 220 / 12%);
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 2vw, 1.35rem);
}

.hours-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  max-width: none;
}

.hours-item {
  background: rgb(10 9 7 / 34%);
  border: 1px solid rgb(245 237 220 / 10%);
  padding: 1rem;
  position: relative;
  text-align: left;
}

.hours-item strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.hours-item span {
  font-family: var(--font-body);
  color: rgba(245, 237, 220, 0.76);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
}

.hours-highlight {
  background: var(--brass);
  color: var(--char);
  display: grid;
  gap: 0.35rem;
  padding: 1.1rem;
}

.hours-highlight strong {
  color: var(--char);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hours-highlight span {
  color: var(--char);
  font-family: "Fraunces", serif;
  font-size: clamp(1.35rem, 2.3vw, 1.8rem);
  font-weight: 600;
  line-height: 1.05;
}

.hours-highlight p {
  color: rgb(10 9 7 / 72%);
  font-family: "Fraunces", serif;
  font-size: 0.98rem;
  line-height: 1.45;
  margin: 0;
}

.hours-note {
  align-items: center;
  border-top: 1px solid rgb(245 237 220 / 12%);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: 0.2rem 0 0;
}

.hours-note strong {
  color: var(--brass);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hours-note span {
  color: rgb(245 237 220 / 72%);
  font-family: "Fraunces", serif;
  text-align: right;
}

.reserve-address {
  text-align: center;
  margin-top: 2rem;
  color: rgba(245, 237, 220, 0.4);
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}

.header-cta.is-current {
  background: var(--gold);
  color: var(--bg);
}

/* Gift Cards Page */
.gift-tier-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 2rem;
}

.gift-tier {
  background: rgb(245 237 220 / 4%);
  border: 1px solid rgb(245 237 220 / 14%);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1.6rem 1.4rem;
  position: relative;
  transition: border-color 220ms ease, transform 220ms ease;
}

.gift-tier:hover {
  border-color: rgb(193 154 75 / 38%);
  transform: translateY(-3px);
}

.gift-tier-feature {
  background:
    radial-gradient(circle at 80% 0%, rgb(193 154 75 / 18%), transparent 18rem),
    rgb(245 237 220 / 6%);
  border-color: rgb(193 154 75 / 32%);
}

.gift-tier-feature::before {
  background: var(--brass);
  color: var(--char);
  content: "Most gifted";
  font-family: "Oswald", "Bebas Neue", sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  padding: 0.32rem 0.6rem;
  position: absolute;
  right: 1rem;
  text-transform: uppercase;
  top: -0.7rem;
}

.gift-tier-amount {
  color: var(--brass);
  display: block;
  font-family: "Oswald", "Bebas Neue", sans-serif;
  font-size: clamp(2.6rem, 4.4vw, 4rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.9;
  text-transform: uppercase;
}

.gift-tier h3 {
  color: var(--bone);
  font-family: "Fraunces", serif;
  font-size: clamp(1.3rem, 1.9vw, 1.6rem);
  line-height: 1.1;
  margin: 0;
}

.gift-tier p {
  color: rgb(245 237 220 / 72%);
  flex: 1;
  font-family: "Fraunces", serif;
  font-size: 1rem;
  line-height: 1.45;
  margin: 0;
}

.gift-tier .button {
  margin-top: 0.4rem;
}

@media (max-width: 1180px) {
  .reserve-hero {
    column-gap: clamp(4rem, 7vw, 5rem);
    grid-template-columns: minmax(0, 460px) 344px;
  }

  .reserve-page .page-hero h1 {
    font-size: clamp(3rem, 5.8vw, 4.7rem);
    max-width: 11.5ch;
  }

  .reserve-page .page-hero p:not(.eyebrow) {
    max-width: 480px;
  }
}

@media (max-width: 1020px) {
  .reserve-hero {
    grid-template-columns: 1fr;
    justify-content: start;
    row-gap: 2rem;
  }

  .reserve-hero .page-hero-copy {
    max-width: 620px;
  }

  .reserve-card {
    justify-self: start;
    max-width: 344px;
  }
}

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

  .reserve-hours {
    grid-template-columns: 1fr;
  }

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

  .hours-note {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }

  .hours-note span {
    text-align: left;
  }

  .menu-category,
  .menu-items,
  .menu-items-compact {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .menu-category {
    scroll-margin-top: calc(var(--mobile-header-height) + 76px);
  }

  .menu-detailed,
  .menu-downloads {
    scroll-margin-top: calc(var(--mobile-header-height) + 76px);
  }

  .menu-category-title {
    margin-bottom: 0;
  }

  .menu-category-note {
    grid-column: auto;
    margin: -0.7rem 0 0;
  }

  .reserve-quick-facts {
    margin-top: 1.4rem;
  }

  .map-preview {
    min-height: 320px;
  }
}

@media (max-width: 768px) {
  .gift-tier-grid {
    grid-template-columns: 1fr;
  }

  .reserve-quick-facts li {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .gift-tier-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Menu downloads (PDF library) */
.menu-downloads {
  background: rgb(16 11 9);
  border-top: 1px solid rgb(245 237 220 / 12%);
  color: var(--bone);
  padding: clamp(1.5rem, 3vw, 2.4rem) clamp(1rem, 5vw, 4.5rem) clamp(2rem, 4vw, 3.5rem);
  position: relative;
  scroll-margin-top: calc(var(--header-height) + 86px);
  z-index: 2;
}

.menu-downloads-heading {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.4rem;
  max-width: 620px;
}

.menu-downloads-heading h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1;
  margin: 0;
  text-wrap: balance;
}

.menu-downloads-heading p {
  color: rgb(245 237 220 / 72%);
  font-family: "Fraunces", serif;
  font-size: 0.98rem;
  line-height: 1.5;
  margin: 0;
  max-width: 64ch;
}

.menu-pdf-grid {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.menu-pdf-card {
  background: transparent;
  border: 1px solid rgb(245 237 220 / 14%);
  color: var(--bone);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 0.9rem;
  position: relative;
  transition: border-color 220ms ease, transform 220ms ease, background 220ms ease;
}

.menu-pdf-card:hover,
.menu-pdf-card:focus-visible {
  background: rgb(245 237 220 / 6%);
  border-color: rgb(193 154 75 / 42%);
  transform: translateY(-3px);
}

.menu-pdf-card::after {
  background: var(--brass);
  bottom: 0;
  content: "";
  height: 2px;
  left: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 220ms ease, width 220ms ease;
  width: 0;
}

.menu-pdf-card:hover::after,
.menu-pdf-card:focus-visible::after {
  opacity: 1;
  width: 100%;
}

.menu-pdf-feature {
  background: rgb(245 237 220 / 4%);
  border-color: rgb(193 154 75 / 32%);
}

.menu-pdf-kicker {
  color: var(--brass);
  font-family: "Oswald", "Bebas Neue", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.menu-pdf-card h3 {
  color: var(--bone);
  font-family: "Fraunces", serif;
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  font-weight: 600;
  line-height: 1;
  margin: 0;
}

.menu-pdf-card p {
  display: none;
}

.menu-pdf-meta {
  border-top: 1px solid rgb(245 237 220 / 12%);
  color: rgb(245 237 220 / 56%);
  display: flex;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  flex-direction: column;
  gap: 0.8rem;
  justify-content: start;
  letter-spacing: 0.06em;
  padding-top: 0.8rem;
  text-transform: uppercase;
}

.menu-pdf-action {
  color: var(--brass);
  font-family: "Oswald", "Bebas Neue", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-top: 0.4rem;
  text-transform: uppercase;
}

.menu-downloads-note {
  color: rgb(245 237 220 / 56%);
  font-family: "Fraunces", serif;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 2rem 0 0;
  max-width: 70ch;
}

.menu-downloads-note a {
  border-bottom: 1px solid currentColor;
  color: var(--brass);
}

@media (max-width: 1024px) {
  .menu-pdf-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .menu-pdf-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu-pdf-card {
    padding: 0.75rem;
  }

  .menu-pdf-meta {
    font-size: 0.66rem;
  }

  .menu-pdf-action {
    font-size: 0.76rem;
  }
}
