:root {
  --ink: #1b130e;
  --coal: #241813;
  --coal-soft: #34231a;
  --paper: #f4eee3;
  --cream: #fff8ec;
  --smoke: #d8c8b1;
  --muted: #7c6d5b;
  --ember: #a53616;
  --tomato: #c94b27;
  --gold: #dca85a;
  --olive: #6f7451;
  --line: rgba(27, 19, 14, 0.14);
  --light-line: rgba(255, 248, 236, 0.2);
  --shadow: 0 28px 80px rgba(42, 24, 14, 0.18);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

.pw-gate {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
  background: #140d09;
  color: var(--cream);
  transition:
    opacity 500ms ease,
    visibility 500ms ease;
}

body:not(.pw-locked) .pw-gate {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.pw-gate__panel {
  width: min(92vw, 380px);
  display: grid;
  gap: 14px;
  padding: 32px 28px;
  background: rgba(255, 248, 236, 0.04);
  border: 1px solid rgba(255, 248, 236, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.4);
}

.pw-gate__panel .eyebrow {
  margin: 0;
  color: var(--gold);
}

.pw-gate__panel h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  color: var(--cream);
}

.pw-gate__hint {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 248, 236, 0.68);
}

.pw-gate__field {
  display: grid;
  gap: 6px;
  font-size: 13px;
  color: rgba(255, 248, 236, 0.68);
}

.pw-gate__field input {
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 248, 236, 0.24);
  background: rgba(0, 0, 0, 0.3);
  color: var(--cream);
  font-size: 16px;
}

.pw-gate__field input:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.pw-gate__submit {
  justify-content: center;
}

.pw-gate__error {
  margin: 0;
  min-height: 18px;
  font-size: 13px;
  color: #ff8a70;
}

.pw-gate__panel.is-shake {
  animation: pw-shake 380ms ease;
}

@keyframes pw-shake {
  0%,
  100% {
    transform: translateX(0);
  }
  20%,
  60% {
    transform: translateX(-8px);
  }
  40%,
  80% {
    transform: translateX(8px);
  }
}

.intro {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: #140d09;
  color: var(--cream);
  transition:
    opacity 600ms ease,
    visibility 600ms ease;
}

body:not(.is-loading) .intro {
  opacity: 0;
  visibility: hidden;
}

.intro__inner {
  width: min(78vw, 760px);
  display: flex;
  align-items: end;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 248, 236, 0.36);
  padding-bottom: 22px;
}

.intro p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

.intro span {
  font-variant-numeric: tabular-nums;
  font-size: 14px;
  color: var(--gold);
}

.site-header {
  position: fixed;
  top: 22px;
  left: 30px;
  right: 30px;
  z-index: 40;
  min-height: 66px;
  display: grid;
  grid-template-columns: auto minmax(170px, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 8px 10px 8px 12px;
  color: var(--cream);
  background: rgba(20, 12, 7, 0.72);
  border: 1px solid rgba(255, 248, 236, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 18px 60px rgba(6, 3, 2, 0.28);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  min-height: 48px;
  padding: 0 10px 0 4px;
}

.brand__text {
  display: grid;
  gap: 0;
  line-height: 1;
}

.brand__small {
  color: rgba(255, 248, 236, 0.68);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand__script {
  position: relative;
  color: #f15a35;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0;
  text-shadow:
    0 1px 0 rgba(255, 248, 236, 0.55),
    0 12px 22px rgba(201, 75, 39, 0.24);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 6px;
  font-size: 13px;
  color: rgba(255, 248, 236, 0.78);
}

.main-nav a {
  padding: 10px 11px;
  border-radius: 999px;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--cream);
  background: rgba(255, 248, 236, 0.1);
}

.fixed-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.quick-link,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 17px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.quick-link svg,
.button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.quick-link:hover,
.button:hover {
  transform: translateY(-1px);
}

.quick-link--phone {
  color: var(--cream);
  background: rgba(27, 19, 14, 0.72);
  border-color: rgba(255, 248, 236, 0.18);
  backdrop-filter: blur(16px);
}

.quick-link--wa {
  color: #102018;
  background: #c8e7bd;
  border-color: rgba(255, 255, 255, 0.42);
}

.quick-link--app {
  color: var(--cream);
  background: rgba(255, 248, 236, 0.09);
  border-color: rgba(255, 248, 236, 0.22);
}

.button--primary {
  color: var(--cream);
  background: var(--ember);
  border-color: rgba(255, 248, 236, 0.16);
  box-shadow: 0 18px 42px rgba(165, 54, 22, 0.26);
}

.button--primary:hover {
  background: #8f2d14;
}

.button--ghost {
  color: inherit;
  background: rgba(255, 248, 236, 0.08);
  border-color: currentColor;
}

.button--full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  overflow: hidden;
  color: var(--cream);
  background: #130d09;
  isolation: isolate;
  padding: 150px 22px 34px;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  background:
    linear-gradient(90deg, rgba(12, 7, 4, 0.95) 0%, rgba(12, 7, 4, 0.88) 31%, rgba(12, 7, 4, 0.44) 61%, rgba(12, 7, 4, 0.14) 100%),
    linear-gradient(0deg, rgba(12, 7, 4, 0.92) 0%, rgba(12, 7, 4, 0.12) 52%, rgba(12, 7, 4, 0.68) 100%);
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 8;
  opacity: 0.16;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 22% 18%, rgba(255, 248, 236, 0.16) 0 1px, transparent 1px),
    radial-gradient(circle at 67% 64%, rgba(0, 0, 0, 0.28) 0 1px, transparent 1px);
  background-size: 3px 3px, 4px 4px;
  mix-blend-mode: overlay;
}

.hero__poster,
.hero__video {
  position: absolute;
  inset: -2%;
  width: 104%;
  height: 104%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.02) contrast(1.03);
}

.hero__video {
  opacity: 0;
  transition: opacity 900ms ease;
}

.hero__video--ready {
  opacity: 1;
}

.hero__heat,
.hero__sparks {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__heat {
  z-index: 6;
  opacity: 0.34;
  background:
    radial-gradient(circle at 79% 35%, rgba(236, 103, 28, 0.32), transparent 29%),
    radial-gradient(circle at 62% 72%, rgba(255, 184, 86, 0.18), transparent 24%),
    linear-gradient(90deg, transparent 43%, rgba(255, 126, 39, 0.08), transparent 78%);
  mix-blend-mode: screen;
  animation: fireBreath 4.8s ease-in-out infinite alternate;
}

.hero__sparks {
  z-index: 7;
  opacity: 0.5;
  background:
    radial-gradient(circle at 76% 31%, rgba(255, 206, 133, 0.92) 0 1px, transparent 2px),
    radial-gradient(circle at 82% 47%, rgba(238, 86, 32, 0.72) 0 1px, transparent 2px),
    radial-gradient(circle at 69% 59%, rgba(255, 244, 194, 0.62) 0 1px, transparent 2px),
    radial-gradient(circle at 91% 24%, rgba(220, 75, 29, 0.7) 0 1px, transparent 2px);
  filter: blur(0.2px);
  animation: sparksLift 5.6s ease-in-out infinite;
}

@keyframes fireBreath {
  from {
    opacity: 0.22;
    transform: scale(1);
  }
  to {
    opacity: 0.42;
    transform: scale(1.02) translate3d(-0.6%, -0.4%, 0);
  }
}

@keyframes sparksLift {
  0% {
    transform: translate3d(0, 22px, 0);
    opacity: 0.22;
  }
  48% {
    opacity: 0.56;
  }
  100% {
    transform: translate3d(-12px, -46px, 0);
    opacity: 0;
  }
}

.steam {
  position: absolute;
  z-index: 7;
  width: 210px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 248, 236, 0.15), transparent 64%);
  filter: blur(24px);
  opacity: 0.26;
  mix-blend-mode: screen;
  animation: steamRise 8.8s ease-in-out infinite;
}

.steam--one {
  right: 31%;
  bottom: 20%;
}

.steam--two {
  right: 14%;
  bottom: 14%;
  animation-delay: 2.2s;
}

@keyframes steamRise {
  0% {
    transform: translateY(30px) scale(0.82);
    opacity: 0;
  }
  38% {
    opacity: 0.32;
  }
  100% {
    transform: translateY(-95px) scale(1.16);
    opacity: 0;
  }
}

.ember-line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--tomato), transparent);
  opacity: 0.72;
}

.hero__copy {
  width: min(840px, 100%);
  padding: 0 0 76px max(0px, calc((100vw - min(1160px, calc(100vw - 44px))) / 2 - 22px));
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--tomato);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold);
}

.opening-status {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  margin: 0 0 18px;
  padding: 0 12px;
  color: #dff0d5;
  background: rgba(71, 117, 62, 0.2);
  border: 1px solid rgba(143, 204, 120, 0.38);
  border-radius: 999px;
  backdrop-filter: blur(14px);
}

.opening-status__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7ad36b;
  box-shadow: 0 0 0 5px rgba(122, 211, 107, 0.14);
}

.opening-status strong,
.opening-status span {
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
}

.opening-status strong {
  font-weight: 900;
}

.opening-status span:not(.opening-status__dot) {
  color: rgba(223, 240, 213, 0.82);
}

.opening-status.is-closed {
  color: #ffd8cf;
  background: rgba(153, 49, 25, 0.22);
  border-color: rgba(226, 91, 61, 0.46);
}

.opening-status.is-closed span:not(.opening-status__dot) {
  color: rgba(255, 216, 207, 0.82);
}

.opening-status.is-closed .opening-status__dot {
  background: #ff674f;
  box-shadow: 0 0 0 5px rgba(255, 103, 79, 0.14);
}

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

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: 68px;
  line-height: 0.95;
}

.hero__lead {
  max-width: 560px;
  margin-bottom: 34px;
  color: rgba(255, 248, 236, 0.78);
  font-size: 19px;
  line-height: 1.6;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.hero__facts {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(1160px, calc(100% - 44px));
  margin: 0 auto;
  color: var(--cream);
  border: 1px solid var(--light-line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(27, 19, 14, 0.4);
  backdrop-filter: blur(14px);
}

.hero__facts div {
  min-height: 74px;
  padding: 14px 18px;
  background: rgba(255, 248, 236, 0.045);
}

.hero__facts strong {
  display: block;
  margin-bottom: 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
}

.hero__facts span {
  color: rgba(255, 248, 236, 0.74);
  font-size: 13px;
}

.section {
  position: relative;
  width: min(1160px, calc(100% - 44px));
  margin: 0 auto;
  padding: 108px 0;
}

.section__index {
  position: absolute;
  top: 112px;
  left: 0;
  color: var(--muted);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.section__heading {
  max-width: 660px;
  margin-left: 120px;
}

.section__heading--wide {
  max-width: 790px;
}

.section__heading h2 {
  margin-bottom: 22px;
  font-size: 48px;
  line-height: 1.04;
}

.section__heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.story__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 80px;
  align-items: start;
  margin: 66px 0 64px 120px;
}

.story__text p {
  margin-bottom: 24px;
  color: #3d3026;
  font-size: 22px;
  line-height: 1.6;
}

.story__proof {
  border-top: 1px solid var(--line);
}

.proof-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.proof-row span {
  color: var(--muted);
}

.proof-row strong {
  text-align: right;
  font-weight: 800;
}

.image-strip {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 14px;
}

.image-strip figure,
.highlight-photo,
.map-frame {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--coal);
}

.image-strip figure {
  position: relative;
  min-height: 360px;
  box-shadow: var(--shadow);
}

.image-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.02);
}

.image-strip figure:nth-child(1) img {
  object-position: center bottom;
}

.image-strip figure:nth-child(2) img {
  object-position: center 70%;
}

.image-strip figure:nth-child(3) img {
  object-position: center top;
}

.image-strip figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 9px 11px;
  color: var(--cream);
  background: rgba(27, 19, 14, 0.72);
  border-radius: var(--radius);
  font-size: 13px;
  backdrop-filter: blur(12px);
}

.menu-section {
  width: 100%;
  max-width: none;
  padding: 118px max(22px, calc((100% - 1160px) / 2));
  background: var(--cream);
}

.menu-section .section__index {
  left: max(22px, calc((100% - 1160px) / 2));
}

.menu-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 28px;
  width: min(1040px, calc(100% - 120px));
  margin: 62px 0 0 120px;
}

.menu-highlights {
  align-self: start;
  position: sticky;
  top: 94px;
}

.highlight-photo {
  height: 430px;
}

.highlight-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
  filter: saturate(0.9) contrast(1.08);
}

.highlight-copy {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.highlight-copy p {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 800;
}

.highlight-copy strong {
  display: block;
  max-width: 280px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.08;
  font-weight: 500;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.tab {
  min-height: 42px;
  padding: 0 14px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.tab.is-active {
  color: var(--cream);
  background: var(--coal);
  border-color: var(--coal);
}

.menu-list {
  border-top: 1px solid var(--line);
}

.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 18px;
  align-items: center;
  min-height: 92px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.menu-item h3 {
  margin-bottom: 7px;
  font-size: 24px;
  line-height: 1.1;
}

.menu-item p {
  max-width: 530px;
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.menu-item__price {
  min-width: 84px;
  text-align: right;
  font-weight: 900;
}

.add-button,
.qty-button,
.icon-button {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.add-button:hover,
.qty-button:hover,
.icon-button:hover {
  color: var(--cream);
  background: var(--ember);
  border-color: var(--ember);
}

.add-button svg,
.qty-button svg,
.icon-button svg {
  width: 18px;
  height: 18px;
}

.source-menu {
  width: min(1040px, calc(100% - 120px));
  margin: 34px 0 0 120px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.source-menu summary {
  padding: 18px 0;
  font-weight: 800;
  cursor: pointer;
}

.source-menu__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding-bottom: 22px;
}

.source-menu__grid img {
  height: 260px;
  width: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.order-section {
  padding-bottom: 72px;
}

.order-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 28px;
  margin: 62px 0 0 120px;
}

.order-form,
.cart-panel,
.operator-toolbar,
.confirmation,
.order-card,
.reviews-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 248, 236, 0.64);
  box-shadow: 0 16px 60px rgba(49, 31, 20, 0.08);
}

.order-form {
  padding: 22px;
}

.mode-switch {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 22px;
  padding: 6px;
  background: #eadfce;
  border-radius: var(--radius);
}

.mode-switch label {
  display: block;
}

.mode-switch input {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 0;
  padding: 0;
  opacity: 0;
  pointer-events: none;
}

.mode-switch span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  border-radius: 6px;
  color: var(--muted);
  font-weight: 900;
}

.mode-switch svg {
  width: 18px;
  height: 18px;
}

.mode-switch input:checked + span {
  color: var(--cream);
  background: var(--coal);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-grid label {
  display: grid;
  gap: 8px;
  color: #4b3a2e;
  font-size: 13px;
  font-weight: 800;
}

.form-wide {
  grid-column: 1 / -1;
}

input,
textarea,
select {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--ember);
  box-shadow: 0 0 0 3px rgba(165, 54, 22, 0.12);
}

.delivery-field.is-hidden {
  display: none;
}

.delivery-hint {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.delivery-hint.is-ok {
  color: #3f6f39;
}

.delivery-hint.is-bad,
.form-message.is-bad {
  color: #a33118;
}

.cart-panel {
  align-self: start;
  position: sticky;
  top: 94px;
  padding: 20px;
}

.cart-panel__top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.cart-panel h3 {
  margin: 0;
  font-size: 28px;
}

#cart-count {
  display: grid;
  place-items: center;
  min-width: 34px;
  height: 34px;
  padding: 0 8px;
  color: var(--cream);
  background: var(--coal);
  border-radius: 999px;
  font-weight: 900;
}

.cart-items {
  min-height: 110px;
}

.empty-state {
  margin: 22px 0;
  color: var(--muted);
  line-height: 1.5;
}

.cart-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.cart-row h4 {
  margin: 0 0 5px;
  font-size: 15px;
}

.cart-row p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.cart-row__controls {
  display: flex;
  align-items: center;
  gap: 7px;
}

.cart-row__controls span {
  min-width: 24px;
  text-align: center;
  font-weight: 900;
}

.qty-button {
  width: 32px;
  height: 32px;
  border-radius: 6px;
}

.qty-button svg {
  width: 15px;
  height: 15px;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 20px 0;
  font-size: 18px;
}

.cart-total strong {
  font-size: 22px;
}

.form-message {
  min-height: 22px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.confirmation {
  margin: 26px 0 0 120px;
  padding: 24px;
}

.confirmation h3 {
  margin-bottom: 10px;
  font-size: 30px;
}

.confirmation p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.operator-section {
  width: 100%;
  max-width: none;
  padding: 118px max(22px, calc((100% - 1160px) / 2));
  color: var(--cream);
  background: var(--coal);
}

.operator-section .section__index {
  left: max(22px, calc((100% - 1160px) / 2));
  color: rgba(255, 248, 236, 0.42);
}

.operator-section .section__heading p:not(.eyebrow) {
  color: rgba(255, 248, 236, 0.7);
}

.operator-section .eyebrow {
  color: var(--gold);
}

.operator-toolbar,
.orders-list {
  width: min(1040px, calc(100% - 120px));
  margin-left: 120px;
}

.operator-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 56px;
  padding: 18px;
  color: var(--cream);
  background: rgba(255, 248, 236, 0.06);
  border-color: var(--light-line);
  box-shadow: none;
}

.operator-toolbar span {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 248, 236, 0.62);
  font-size: 13px;
}

.operator-toolbar strong {
  font-size: 20px;
}

.orders-list {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.order-card {
  padding: 18px;
  color: var(--cream);
  background: rgba(255, 248, 236, 0.05);
  border-color: var(--light-line);
  box-shadow: none;
}

.order-card__head,
.order-card__meta,
.order-card__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.order-card h3 {
  margin: 0 0 6px;
  font-size: 24px;
}

.order-card p,
.order-card li,
.order-card span {
  color: rgba(255, 248, 236, 0.72);
}

.order-card ul {
  margin: 16px 0;
  padding: 0;
  list-style: none;
}

.order-card li {
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 248, 236, 0.11);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--cream);
  background: rgba(220, 168, 90, 0.18);
  border: 1px solid rgba(220, 168, 90, 0.32);
  font-size: 12px;
  font-weight: 900;
}

.order-card__actions {
  align-items: end;
  margin-top: 18px;
}

.order-card__actions label {
  display: grid;
  gap: 7px;
  color: rgba(255, 248, 236, 0.62);
  font-size: 13px;
  font-weight: 800;
}

.order-card select {
  color: var(--cream);
  background: rgba(255, 248, 236, 0.08);
  border-color: var(--light-line);
}

.location-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1fr);
  gap: 54px;
  align-items: center;
}

.location-layout .section__heading {
  margin-left: 120px;
}

.location-layout .button {
  margin-top: 12px;
}

.map-frame {
  min-height: 450px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.map-frame img {
  width: 100%;
  height: 100%;
  min-height: 450px;
  object-fit: cover;
}

.service-band {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 52px 0 0 120px;
}

.service-band span {
  padding: 10px 12px;
  color: #3b2b20;
  background: #eadfce;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.reviews-section {
  padding-top: 74px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 56px 0 0 120px;
}

.reviews-grid article {
  padding: 22px;
}

.reviews-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--tomato);
  font-size: 16px;
}

.reviews-grid p {
  min-height: 86px;
  color: #3f3026;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.24;
}

.reviews-grid strong {
  color: var(--muted);
  font-size: 13px;
}

.footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 40px;
  width: 100%;
  padding: 70px max(22px, calc((100% - 1160px) / 2));
  color: var(--cream);
  background: #130d09;
}

.footer h2 {
  margin-bottom: 24px;
  font-size: 44px;
}

.footer p {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255, 248, 236, 0.66);
}

.footer__contact {
  display: grid;
  gap: 12px;
  align-content: start;
}

.footer__contact a {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 248, 236, 0.18);
  color: rgba(255, 248, 236, 0.82);
}

@media (max-width: 1040px) {
  .site-header {
    top: 16px;
    left: 22px;
    right: 22px;
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  h1 {
    font-size: 52px;
  }

  .section__heading,
  .story__grid,
  .menu-layout,
  .source-menu,
  .order-shell,
  .confirmation,
  .operator-toolbar,
  .orders-list,
  .location-layout .section__heading,
  .service-band,
  .reviews-grid {
    margin-left: 74px;
  }

  .story__grid,
  .order-shell,
  .location-layout {
    grid-template-columns: 1fr;
  }

  .menu-layout {
    grid-template-columns: 1fr;
    width: calc(100% - 74px);
  }

  .menu-highlights,
  .cart-panel {
    position: static;
  }

  .highlight-photo {
    height: 330px;
  }

  .operator-toolbar,
  .orders-list,
  .source-menu {
    width: calc(100% - 74px);
  }

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

@media (max-width: 760px) {
  .site-header {
    top: 10px;
    left: 10px;
    right: 10px;
    min-height: 58px;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px;
    padding: 7px;
  }

  .brand {
    min-height: 42px;
    padding-right: 0;
  }

  .brand__text {
    display: grid;
  }

  .brand__small {
    display: none;
  }

  .brand__script {
    font-size: 23px;
  }

  .fixed-actions {
    min-width: 0;
    gap: 6px;
  }

  .quick-link {
    flex: 0 1 auto;
    min-width: 0;
    min-height: 42px;
    padding: 0 8px;
    font-size: 11px;
  }

  .quick-link--app {
    width: 42px;
    padding: 0;
  }

  .quick-link--app span {
    display: none;
  }

  .main-nav {
    display: none;
  }

  .hero {
    min-height: 94svh;
    padding: 118px 16px 24px;
  }

  .hero__media::before {
    background:
      linear-gradient(90deg, rgba(12, 7, 4, 0.94) 0%, rgba(12, 7, 4, 0.7) 72%, rgba(12, 7, 4, 0.36) 100%),
      linear-gradient(0deg, rgba(12, 7, 4, 0.94) 0%, rgba(12, 7, 4, 0.08) 60%, rgba(12, 7, 4, 0.76) 100%);
  }

  .hero__copy {
    padding: 0 0 240px;
  }

  h1 {
    font-size: 39px;
    line-height: 1;
  }

  .hero__lead {
    font-size: 16px;
  }

  .opening-status {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 14px;
    padding: 9px 12px 10px 28px;
    border-radius: var(--radius);
  }

  .opening-status__dot {
    position: absolute;
    margin: 4px 0 0 -16px;
  }

  .opening-status strong,
  .opening-status span {
    font-size: 12px;
  }

  .hero__facts {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
  }

  .hero__facts div {
    min-height: 52px;
    padding: 8px 12px;
  }

  .hero__facts strong {
    font-size: 24px;
  }

  .hero__facts span {
    font-size: 12px;
  }

  .section,
  .menu-section,
  .operator-section {
    width: 100%;
    padding: 78px 16px;
  }

  .section__index {
    position: static;
    margin-bottom: 16px;
  }

  .menu-section .section__index,
  .operator-section .section__index {
    position: static;
  }

  .section__heading,
  .story__grid,
  .menu-layout,
  .source-menu,
  .order-shell,
  .confirmation,
  .operator-toolbar,
  .orders-list,
  .location-layout .section__heading,
  .service-band,
  .reviews-grid {
    width: 100%;
    margin-left: 0;
  }

  .section__heading h2 {
    font-size: 36px;
  }

  .story__grid {
    gap: 36px;
    margin-top: 40px;
  }

  .story__text p {
    font-size: 18px;
  }

  .image-strip,
  .form-grid,
  .source-menu__grid,
  .footer {
    grid-template-columns: 1fr;
  }

  .image-strip figure {
    min-height: 270px;
  }

  .menu-item {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .menu-item__price {
    grid-column: 1;
    grid-row: 2;
    text-align: left;
  }

  .add-button {
    grid-row: 1 / span 2;
    grid-column: 2;
  }

  .order-shell {
    gap: 18px;
  }

  .cart-row {
    grid-template-columns: 1fr;
  }

  .cart-row__controls {
    justify-content: flex-start;
  }

  .operator-toolbar,
  .order-card__head,
  .order-card__meta,
  .order-card__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .location-layout {
    gap: 30px;
  }

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

  .map-frame,
  .map-frame img {
    min-height: 310px;
  }

  .reviews-grid p {
    min-height: 0;
  }

  .footer {
    padding: 54px 16px;
  }

  .footer p {
    grid-column: auto;
  }
}

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

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