:root {
  --brown-950: #21120e;
  --brown-900: #2f1b15;
  --brown-800: #4a2b22;
  --brand: #744c3e;
  --brand-deep: #5a342c;
  --cream: #eee6dd;
  --paper: #f6efe4;
  --cheese: #ffbf36;
  --red: #d7332f;
  --green: #77a95b;
  --ink: #17100d;
  --white: #fff9f0;
  --shadow: 0 24px 80px rgba(18, 8, 4, 0.28);
  --hard-shadow: 4px 5px 0 #090604;
  --radius: 18px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 191, 54, 0.13), transparent 26rem),
    linear-gradient(180deg, var(--brown-900), var(--brown-950) 42%, #160d0a);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.45;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, #000, transparent 78%);
}

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

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

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-6rem);
  border-radius: 999px;
  background: var(--cheese);
  color: var(--ink);
  padding: 0.75rem 1rem;
  font-weight: 900;
}

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

.topbar {
  position: fixed;
  top: 0.75rem;
  left: 50%;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  width: min(calc(100% - 1.5rem), var(--max));
  min-height: 4rem;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(33, 18, 14, 0.72);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 3.25rem;
  min-width: 3.25rem;
  min-height: 3.25rem;
  margin-left: 0.35rem;
  border: 2px solid #0b0705;
  border-radius: 50%;
  background: var(--paper);
  color: var(--brand-deep);
  box-shadow: var(--hard-shadow);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

.topbar__nav {
  display: none;
  justify-content: center;
  gap: 0.35rem;
}

.topbar__nav a,
.topbar__order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  border-radius: 999px;
  padding: 0 1rem;
  color: var(--cream);
  font-weight: 800;
  font-size: 0.9rem;
}

.topbar__nav a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.topbar__order {
  min-width: 4.6rem;
  margin-right: 0.45rem;
  background: var(--cheese);
  color: var(--ink);
  justify-self: end;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  isolation: isolate;
  overflow: hidden;
  padding: 7.5rem 1rem 2rem;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 50%;
  filter: saturate(1.05) contrast(1.04);
  transform: scale(1.04);
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(33, 18, 14, 0.35), rgba(33, 18, 14, 0.85) 52%, var(--brown-950) 100%),
    linear-gradient(90deg, rgba(33, 18, 14, 0.92), rgba(33, 18, 14, 0.42) 58%, rgba(33, 18, 14, 0.8));
}

.hero__smoke {
  position: absolute;
  inset: auto -10% 0;
  z-index: -1;
  height: 18rem;
  opacity: 0.72;
  background:
    radial-gradient(ellipse at 18% 70%, rgba(238, 230, 221, 0.18), transparent 48%),
    radial-gradient(ellipse at 70% 65%, rgba(238, 230, 221, 0.12), transparent 50%);
  filter: blur(22px);
  animation: smoke 8s ease-in-out infinite alternate;
}

.hero__content {
  align-self: end;
  max-width: 42rem;
  margin-inline: auto;
  width: min(100%, var(--max));
}

.hero-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 3.65rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(238, 230, 221, 0.28);
  border-radius: 999px;
  background: rgba(33, 18, 14, 0.72);
  padding: 0.35rem 0.8rem 0.35rem 0.35rem;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.hero-logo img {
  width: 2.9rem;
  height: 2.9rem;
  border: 2px solid #0a0604;
  border-radius: 50%;
  object-fit: cover;
}

.hero-logo span {
  color: var(--paper);
  font-family: Capriola, Inter, sans-serif;
  font-size: 1rem;
}

.eyebrow {
  margin: 0 0 0.65rem;
  color: var(--cheese);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Capriola, Inter, sans-serif;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 11ch;
  font-size: 3.15rem;
  text-wrap: balance;
  text-shadow: 0 10px 48px rgba(0, 0, 0, 0.5);
}

h2 {
  font-size: 2.05rem;
  text-wrap: balance;
}

h3 {
  font-size: 1.35rem;
}

.hero__text {
  max-width: 30rem;
  margin: 1rem 0 0;
  color: rgba(255, 249, 240, 0.9);
  font-size: 1.06rem;
  font-weight: 700;
}

.hero__actions,
.promo__actions,
.unit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.hero__actions .btn {
  flex: 1 1 calc(50% - 0.5rem);
}

.hero__actions .btn--ghost {
  flex-basis: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  border: 2px solid #0a0604;
  border-radius: 999px;
  padding: 0.8rem 1.05rem;
  box-shadow: var(--hard-shadow);
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translate(-1px, -2px);
  box-shadow: 6px 8px 0 #090604;
}

.btn:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 #090604;
}

.btn--primary {
  background: var(--cheese);
  color: var(--ink);
}

.btn--light {
  background: var(--paper);
  color: var(--brand-deep);
}

.btn--ghost {
  background: rgba(33, 18, 14, 0.45);
  color: var(--cream);
  border-color: rgba(246, 239, 228, 0.38);
  box-shadow: none;
}

.hero-ticket {
  width: min(100%, 21rem);
  margin: 1.75rem auto 0;
  align-self: end;
  border: 2px dashed rgba(33, 18, 14, 0.95);
  border-radius: 1rem;
  background: rgba(246, 239, 228, 0.95);
  color: var(--ink);
  box-shadow: var(--shadow);
  padding: 1.15rem;
  transform: rotate(-2deg);
}

.hero-ticket p {
  margin: 0 0 0.35rem;
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero-ticket strong {
  display: block;
  font-family: Capriola, Inter, sans-serif;
  font-size: 1.35rem;
  line-height: 1;
}

.hero-ticket a {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--brand-deep);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 0.12rem;
  text-underline-offset: 0.2rem;
}

.ticket-pin {
  display: block;
  width: 2.5rem;
  height: 0.48rem;
  margin: -1.25rem auto 0.75rem;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 3px 0 #0a0604;
}

.quick-strip {
  display: grid;
  gap: 0.85rem;
  width: min(calc(100% - 2rem), var(--max));
  margin: -1rem auto 0;
  position: relative;
  z-index: 5;
}

.quick-strip a {
  min-height: 5.35rem;
  border: 2px solid #0b0705;
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  padding: 1rem;
  box-shadow: var(--hard-shadow);
}

.quick-strip span {
  display: block;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-strip strong {
  display: block;
  margin-top: 0.2rem;
  font-family: Capriola, Inter, sans-serif;
  font-size: 1.12rem;
  line-height: 1.05;
}

.section-band {
  padding: 4.5rem 1rem;
}

.section-band--dark {
  background:
    linear-gradient(135deg, rgba(215, 51, 47, 0.14), transparent 32rem),
    #1c100d;
}

.section-band--cream {
  background: var(--paper);
  color: var(--ink);
}

.section-head {
  width: min(100%, var(--max));
  margin: 0 auto 1.5rem;
}

.section-head h2 {
  max-width: 15ch;
}

.menu-tabs,
.location-switch {
  display: flex;
  gap: 0.6rem;
  width: min(100%, var(--max));
  margin: 0 auto 1.3rem;
  overflow-x: auto;
  padding: 0.25rem 0.1rem 0.75rem;
  scrollbar-width: none;
}

.menu-tabs::-webkit-scrollbar,
.location-switch::-webkit-scrollbar,
.menu-rail::-webkit-scrollbar {
  display: none;
}

.menu-tab,
.unit-tab {
  flex: 0 0 auto;
  min-height: 2.85rem;
  border: 2px solid rgba(255, 249, 240, 0.22);
  border-radius: 999px;
  background: rgba(255, 249, 240, 0.08);
  color: var(--cream);
  padding: 0.65rem 1rem;
  font-weight: 900;
  cursor: pointer;
}

.menu-tab.is-active,
.unit-tab.is-active {
  border-color: #090604;
  background: var(--cheese);
  color: var(--ink);
  box-shadow: var(--hard-shadow);
}

.menu-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(18rem, 74vw);
  gap: 1rem;
  width: min(100%, var(--max));
  margin: 0 auto;
  overflow-x: auto;
  padding: 0.25rem 0.2rem 1rem;
  scroll-snap-type: x mandatory;
}

.menu-card {
  display: grid;
  grid-template-rows: 16rem 1fr;
  min-height: 30rem;
  overflow: hidden;
  border: 2px solid #080503;
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--hard-shadow);
  scroll-snap-align: start;
  transition: transform 220ms ease, opacity 220ms ease;
}

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

.menu-card:hover {
  transform: translateY(-0.25rem) rotate(-0.5deg);
}

.menu-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-card div {
  display: grid;
  align-content: start;
  gap: 0.65rem;
  padding: 1rem;
}

.menu-card span {
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-card p {
  margin: 0;
  color: rgba(23, 16, 13, 0.78);
  font-weight: 700;
}

.menu-card a {
  justify-self: start;
  margin-top: 0.25rem;
  border-radius: 999px;
  background: var(--brown-900);
  color: var(--paper);
  padding: 0.75rem 1rem;
  font-weight: 900;
}

.hunger-grid {
  display: grid;
  gap: 0.8rem;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.hunger-tile {
  display: grid;
  gap: 0.45rem;
  min-height: 7rem;
  align-content: center;
  border: 1px solid rgba(238, 230, 221, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 191, 54, 0.15), rgba(255, 249, 240, 0.04)),
    rgba(255, 255, 255, 0.04);
  padding: 1rem;
  transition: transform 180ms ease, background 180ms ease;
}

.hunger-tile:hover {
  transform: translateY(-0.2rem);
  background:
    linear-gradient(135deg, rgba(255, 191, 54, 0.25), rgba(255, 249, 240, 0.07)),
    rgba(255, 255, 255, 0.06);
}

.hunger-tile span {
  color: var(--cheese);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.hunger-tile strong {
  max-width: 18rem;
  font-family: Capriola, Inter, sans-serif;
  font-size: 1.18rem;
  line-height: 1;
}

.craft {
  display: grid;
  gap: 1.4rem;
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: 4rem 0;
}

.craft__image {
  overflow: hidden;
  min-height: 24rem;
  border: 2px solid #090604;
  border-radius: var(--radius);
  box-shadow: var(--hard-shadow);
}

.craft__image img {
  width: 100%;
  height: 100%;
  min-height: 24rem;
  object-fit: cover;
}

.craft__content {
  align-self: center;
}

.craft__content h2 {
  max-width: 13ch;
}

.proof-list {
  display: grid;
  gap: 0.7rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.proof-list li {
  border: 2px solid rgba(238, 230, 221, 0.28);
  border-radius: 999px;
  background: rgba(238, 230, 221, 0.08);
  padding: 0.8rem 1rem;
  font-weight: 900;
}

.proof-list li::before {
  content: "";
  display: inline-block;
  width: 0.72rem;
  height: 0.72rem;
  margin-right: 0.65rem;
  border-radius: 50%;
  background: var(--cheese);
  box-shadow: 0 0 0 4px rgba(255, 191, 54, 0.16);
}

.promo {
  display: grid;
  gap: 1.3rem;
  align-items: center;
}

.promo__plate,
.promo__copy {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.promo__plate {
  overflow: hidden;
  border: 2px solid #090604;
  border-radius: 1.4rem;
  box-shadow: var(--hard-shadow);
}

.promo__plate img {
  width: 100%;
  max-height: 32rem;
  object-fit: cover;
}

.promo__copy {
  color: var(--cream);
}

.promo__copy h2 {
  color: var(--cheese);
}

.promo__copy p {
  max-width: 34rem;
  margin: 1rem 0 0;
  color: rgba(255, 249, 240, 0.86);
  font-weight: 700;
}

.gallery .section-head h2 {
  max-width: 16ch;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 11rem;
  gap: 0.75rem;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.gallery-item {
  overflow: hidden;
  border: 0;
  border-radius: 0.9rem;
  background: var(--brown-900);
  cursor: zoom-in;
  padding: 0;
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-item--tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease, filter 300ms ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: saturate(1.08);
}

.location-switch {
  margin-bottom: 1rem;
}

.unit-panel {
  display: none;
  width: min(100%, var(--max));
  margin: 0 auto;
  border: 1px solid rgba(238, 230, 221, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(238, 230, 221, 0.12), transparent 60%),
    rgba(255, 255, 255, 0.04);
  padding: 1rem;
}

.unit-panel.is-active {
  display: grid;
  gap: 0.8rem;
}

.unit-panel h3 {
  margin-top: 0.25rem;
  line-height: 1.1;
}

.unit-panel p {
  margin: 0.8rem 0 0;
  color: rgba(255, 249, 240, 0.76);
  font-weight: 700;
}

.footer {
  display: grid;
  gap: 1.5rem;
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: 3rem 0 7rem;
  color: var(--cream);
}

.brand-mark--footer {
  width: 5.4rem;
  min-width: 5.4rem;
  min-height: 5.4rem;
  margin: 0 0 1rem;
}

.footer p {
  margin: 0;
  color: rgba(255, 249, 240, 0.68);
  font-weight: 700;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.footer nav a {
  border: 1px solid rgba(238, 230, 221, 0.2);
  border-radius: 999px;
  padding: 0.8rem 1rem;
  font-weight: 900;
}

.mobile-dock {
  position: fixed;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  background: rgba(33, 18, 14, 0.85);
  padding: 0.45rem;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
}

.mobile-dock a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  border-radius: 999px;
  color: var(--cream);
  font-size: 0.82rem;
  font-weight: 900;
}

.mobile-dock .dock-main {
  background: var(--cheese);
  color: var(--ink);
}

.lightbox {
  width: min(92vw, 58rem);
  border: 0;
  border-radius: 1rem;
  background: transparent;
  padding: 0;
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.82);
}

.lightbox img {
  width: 100%;
  max-height: 82svh;
  object-fit: contain;
  border-radius: 1rem;
}

.lightbox__close {
  display: block;
  min-height: 2.8rem;
  margin: 0 0 0.7rem auto;
  border: 2px solid #090604;
  border-radius: 999px;
  background: var(--cheese);
  color: var(--ink);
  padding: 0.55rem 1rem;
  font-weight: 900;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@keyframes smoke {
  from {
    transform: translateX(-2%) translateY(3%);
  }
  to {
    transform: translateX(2%) translateY(-2%);
  }
}

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

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

@media (min-width: 680px) {
  .topbar {
    grid-template-columns: auto 1fr auto;
  }

  .topbar__nav {
    display: flex;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) 21rem;
    align-items: end;
    gap: 2rem;
    padding-inline: max(2rem, calc((100vw - var(--max)) / 2));
  }

  .hero__content {
    margin: 0;
  }

  .hero__actions .btn {
    flex: 0 1 auto;
  }

  .hero__actions .btn--ghost {
    flex-basis: auto;
  }

  .hero-ticket {
    margin: 0;
  }

  h1 {
    font-size: 4.8rem;
  }

  h2 {
    font-size: 3rem;
  }

  .quick-strip {
    grid-template-columns: repeat(3, 1fr);
    margin-top: -2.2rem;
  }

  .hunger-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .hunger-tile {
    min-height: 13rem;
  }

  .craft {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
    padding: 6rem 0;
  }

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

  .promo {
    grid-template-columns: minmax(0, 1.1fr) minmax(20rem, 0.9fr);
    width: min(calc(100% - 4rem), var(--max));
    margin: 0 auto;
  }

  .promo__plate,
  .promo__copy {
    width: auto;
  }

  .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 14rem;
  }

  .unit-panel.is-active {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .unit-actions {
    justify-content: flex-end;
    max-width: 29rem;
  }

  .footer {
    grid-template-columns: 1fr auto;
    align-items: end;
    padding-bottom: 3rem;
  }

  .mobile-dock {
    display: none;
  }
}

@media (min-width: 980px) {
  h1 {
    font-size: 5.6rem;
  }

  .menu-rail {
    grid-auto-columns: minmax(17rem, 1fr);
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-flow: row;
    overflow: visible;
  }
}
