:root {
  --ink: #08090a;
  --ink-soft: #111214;
  --paper: #f4f0e7;
  --paper-soft: #d4cec1;
  --gold: #f3b233;
  --gold-bright: #ffc94c;
  --gold-dark: #9f6918;
  --line: rgba(255, 255, 255, 0.13);
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

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

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

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

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

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

button {
  font: inherit;
}

::selection {
  background: var(--gold);
  color: var(--ink);
}

.section {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: absolute;
  z-index: 30;
  top: 0;
  left: 50%;
  width: min(var(--max), calc(100% - 48px));
  min-height: 104px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.header-brand {
  justify-self: start;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.83rem;
  font-weight: 760;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
  padding: 14px 0;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: white;
}

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

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

.wordmark-image {
  display: block;
  width: 292px;
  height: auto;
  object-fit: contain;
}

.button {
  display: inline-flex;
  min-height: 55px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.79rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.button:focus-visible,
.desktop-nav a:focus-visible,
.product-card a:focus-visible,
.text-link:focus-visible,
footer a:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 4px;
}

.button--small {
  min-height: 43px;
  padding-inline: 18px;
  font-size: 0.68rem;
}

.button--gold {
  background: var(--gold);
  color: #171007;
  box-shadow: 0 10px 35px rgba(243, 178, 51, 0.12);
}

.button--gold:hover,
.button--gold:focus-visible {
  background: var(--gold-bright);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.25);
  color: white;
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: var(--gold);
  background: rgba(243, 178, 51, 0.05);
}

.hero {
  position: relative;
  min-height: 790px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 0.95fr);
  align-items: center;
  gap: 34px;
  padding: 154px max(24px, calc((100vw - var(--max)) / 2)) 74px;
  background:
    radial-gradient(circle at 71% 39%, rgba(243, 178, 51, 0.11), transparent 33%),
    linear-gradient(105deg, #070809 0%, #0b0c0d 64%, #14100a 100%);
}

.hero::before {
  content: "LORD";
  position: absolute;
  z-index: 0;
  left: -2.2vw;
  bottom: -7.2vw;
  color: rgba(255, 255, 255, 0.018);
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(15rem, 30vw, 34rem);
  letter-spacing: -0.06em;
  line-height: 0.8;
  pointer-events: none;
}

.hero__glow {
  position: absolute;
  top: 20%;
  right: 5%;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(243, 178, 51, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(243, 178, 51, 0.014), 0 0 0 110px rgba(243, 178, 51, 0.008);
}

.hero__copy,
.hero__visual {
  position: relative;
  z-index: 2;
}

.hero__copy {
  max-width: 675px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 0.71rem;
  font-weight: 850;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow > span {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: currentColor;
}

.hero h1,
.section-heading h2,
.package-builder h2,
.order-panel h2 {
  margin: 0;
  font-family: Impact, "Arial Narrow", "Franklin Gothic Condensed", sans-serif;
  font-weight: 800;
  letter-spacing: 0.012em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 700px;
  font-size: clamp(4rem, 6.4vw, 7.1rem);
  line-height: 0.9;
}

.hero h1 em {
  display: block;
  color: var(--gold);
  font-style: normal;
}

.hero__lead {
  max-width: 590px;
  margin: 27px 0 32px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.03rem;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.wa-dot {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: #171007;
  color: var(--gold);
  font-size: 0.7rem;
}

.service-strip {
  display: flex;
  gap: 36px;
  margin-top: 41px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.service-strip > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-strip__icon {
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  border: 1px solid rgba(243, 178, 51, 0.4);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.1rem;
}

.service-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.61);
  font-size: 0.76rem;
  line-height: 1.45;
}

.service-strip strong {
  color: white;
  font-size: 0.82rem;
}

.hero__visual {
  justify-self: stretch;
  align-self: stretch;
  min-height: 580px;
}

.hero__image-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%, 0 18%);
  background: #111;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.hero__image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 9, 10, 0.58) 0%, transparent 27%), linear-gradient(0deg, rgba(8, 9, 10, 0.28), transparent 45%);
}

.hero__image-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: clamp(14px, 2.6vw, 38px);
}

.hero__badge {
  position: absolute;
  z-index: 3;
  right: -20px;
  bottom: 42px;
  width: 148px;
  height: 148px;
  display: grid;
  place-content: center;
  border: 1px solid rgba(243, 178, 51, 0.66);
  border-radius: 50%;
  background: rgba(8, 9, 10, 0.86);
  color: rgba(255, 255, 255, 0.63);
  text-align: center;
  backdrop-filter: blur(8px);
}

.hero__badge::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px dashed rgba(243, 178, 51, 0.33);
  border-radius: inherit;
}

.hero__badge span,
.hero__badge strong {
  position: relative;
}

.hero__badge span {
  max-width: 105px;
  line-height: 1.3;
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__badge strong {
  margin-top: 3px;
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

.proof-bar {
  position: relative;
  z-index: 5;
  min-height: 94px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 0;
  padding-inline: max(24px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid rgba(243, 178, 51, 0.36);
  border-bottom: 1px solid rgba(243, 178, 51, 0.18);
  background: #0d0e10;
}

.proof-bar p {
  margin: 0;
  padding: 0 30px;
  color: rgba(255, 255, 255, 0.73);
  font-size: 0.73rem;
  font-weight: 760;
  letter-spacing: 0.11em;
  text-align: center;
  text-transform: uppercase;
}

.proof-bar p + p {
  border-left: 1px solid var(--line);
}

.proof-bar span {
  margin-right: 12px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 0.72rem;
}

.menu-section,
.extras-section {
  padding-block: 116px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.52fr);
  align-items: end;
  gap: 48px;
  margin-bottom: 50px;
}

.section-heading h2,
.package-builder h2,
.order-panel h2 {
  color: #171717;
  font-size: clamp(3rem, 5vw, 5.5rem);
  line-height: 0.92;
}

.section-heading > p,
.package-builder__copy > p,
.order-panel__copy > p {
  margin: 0;
  color: #65615a;
  font-size: 0.96rem;
  line-height: 1.75;
}

.menu-section {
  width: 100%;
  max-width: none;
  padding-inline: max(24px, calc((100vw - var(--max)) / 2));
  background: #fff;
  color: #1b1b1b;
}

.burger-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.product-card {
  grid-column: span 2;
  overflow: hidden;
  border: 1px solid #dbd3c5;
  background: #faf8f3;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 60px rgba(59, 45, 20, 0.11);
}

.product-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.product-card__image {
  position: relative;
  aspect-ratio: 1 / 0.78;
  overflow: hidden;
  background: #111;
}

.product-card__image::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.24));
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.product-card:hover .product-card__image img {
  transform: scale(1.035);
}

.product-card__tag {
  position: absolute;
  z-index: 2;
  top: 17px;
  left: 17px;
  padding: 8px 10px;
  background: var(--gold);
  color: #15100a;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.product-card__body {
  padding: 24px 24px 25px;
}

.product-card__title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.product-card h3,
.combo-card h3,
.extra-card h3 {
  margin: 0;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.product-card h3 {
  font-size: 2rem;
}

.product-card__title strong {
  color: var(--gold-dark);
  font-family: Georgia, serif;
  font-size: 1.38rem;
}

.product-card__body p {
  min-height: 48px;
  margin: 12px 0 20px;
  color: #6b665e;
  font-size: 0.86rem;
  line-height: 1.55;
}

.product-card__body a,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #23211e;
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-card__body a span,
.text-link span {
  color: var(--gold-dark);
  font-size: 1.1rem;
  transition: transform 170ms ease;
}

.product-card__body a:hover span,
.text-link:hover span {
  transform: translateX(4px);
}

.product-card__actions,
.extra-card__actions,
.combo-card__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.cart-add {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 11px;
  border: 1px solid #c8bda9;
  border-radius: 2px;
  background: transparent;
  color: #25221d;
  cursor: pointer;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.cart-add:hover,
.cart-add:focus-visible {
  border-color: var(--gold-dark);
  background: #f3ead8;
  transform: translateY(-1px);
}

.cart-add--dark {
  border-color: rgba(243, 178, 51, 0.52);
  color: white;
}

.cart-add--dark:hover,
.cart-add--dark:focus-visible {
  border-color: var(--gold);
  background: rgba(243, 178, 51, 0.13);
}

.combos-section {
  width: 100%;
  max-width: none;
  padding: 116px max(24px, calc((100vw - var(--max)) / 2)) 124px;
  background: #0b0c0d;
}

.section-heading--light h2 {
  color: white;
}

.section-heading--light > p {
  color: rgba(255, 255, 255, 0.55);
}

.combo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.combo-card {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: #111;
}

.combo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 5, 5, 0.9) 0%, rgba(5, 5, 5, 0.02) 69%);
}

.combo-card img {
  width: 100%;
  height: 100%;
  min-height: 570px;
  object-fit: cover;
  transition: transform 600ms ease;
}

.combo-card:hover img {
  transform: scale(1.025);
}

.combo-card__overlay {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 28px;
  left: 30px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 7px 20px;
}

.combo-card__overlay span {
  grid-column: 1 / -1;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.combo-card__overlay h3 {
  grid-column: 1;
  font-size: 2.5rem;
}

.combo-card__overlay p {
  grid-column: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.86rem;
}

.combo-card__overlay strong {
  grid-column: 2;
  grid-row: 2 / 4;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 2rem;
}

.combo-card__actions {
  grid-column: 1 / -1;
  margin-top: 11px;
  justify-content: flex-start;
}

.combo-order {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  background: var(--gold);
  color: #171007;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.extras-section {
  width: 100%;
  max-width: none;
  padding: 116px max(24px, calc((100vw - var(--max)) / 2));
  color: #171717;
  background: #fff;
}

.extras-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.extra-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  display: grid;
  grid-template-rows: 245px 1fr;
  padding: 0;
  border: 1px solid #d8d0c3;
  background: #fff;
}

.extra-card--photo {
  color: #171717;
  background: #fff;
}

.extra-card--photo::after {
  content: none;
}

.extra-card img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.extra-card:hover img {
  transform: scale(1.035);
}

.extra-card > div:not(.extra-card__number) {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 23px 25px 25px;
}

.extra-card span {
  display: block;
  margin-bottom: 7px;
  color: var(--gold-dark);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.extra-card--photo span {
  color: var(--gold-dark);
}

.extra-card h3 {
  max-width: 190px;
  font-size: 1.75rem;
  line-height: 0.97;
}

.extra-card:last-child h3 {
  max-width: 230px;
  font-size: 1.42rem;
  line-height: 1.08;
}

.extra-card strong {
  display: block;
  margin-top: 13px;
  color: var(--gold-dark);
  font-family: Georgia, serif;
  font-size: 1.45rem;
}

.extra-card__actions {
  margin-top: 16px;
}

.extra-card__actions a {
  color: #27231d;
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.extra-card--photo strong {
  color: var(--gold-dark);
}

.extra-card__number {
  position: absolute;
  top: 8px;
  right: 12px;
  color: rgba(139, 99, 35, 0.13);
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 8rem;
  line-height: 1;
}

.package-section {
  width: 100%;
  max-width: none;
  padding: 110px max(24px, calc((100vw - var(--max)) / 2));
  background:
    radial-gradient(circle at 82% 10%, rgba(243, 178, 51, 0.12), transparent 31%),
    #111214;
}

.package-builder {
  display: grid;
  grid-template-columns: minmax(260px, 0.44fr) minmax(0, 1.56fr);
  gap: 64px;
  align-items: start;
}

.package-builder h2 {
  max-width: 600px;
  color: white;
}

.package-builder__copy > p {
  max-width: 610px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.63);
}

.package-builder__price {
  width: fit-content;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 38px;
  padding: 20px 24px;
  border-left: 3px solid var(--gold);
  background: rgba(243, 178, 51, 0.08);
}

.package-builder__price strong {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 2.3rem;
  line-height: 1;
}

.package-builder__price span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package-builder__form {
  display: grid;
  gap: 28px;
  padding: 32px;
  border: 1px solid rgba(243, 178, 51, 0.35);
  background: rgba(6, 7, 8, 0.76);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
}

.package-choice {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.package-choice legend {
  width: 100%;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.package-choice legend span {
  display: inline-grid;
  width: 25px;
  height: 25px;
  margin-right: 8px;
  place-items: center;
  border: 1px solid rgba(243, 178, 51, 0.55);
  border-radius: 50%;
}

.package-choice__grid {
  display: grid;
  gap: 10px;
}

.package-choice__grid--burgers {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.package-choice__grid--extras {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.package-builder__plus {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
}

.package-builder__plus::before,
.package-builder__plus::after {
  content: "";
  height: 1px;
  flex: 1;
  background: rgba(243, 178, 51, 0.24);
}

.package-builder__plus span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(243, 178, 51, 0.45);
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 900;
}

.package-option {
  position: relative;
  min-width: 0;
  cursor: pointer;
}

.package-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.package-option > span {
  height: 100%;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: start;
  gap: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.19);
  background: #17191b;
  color: white;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.package-option:hover > span {
  transform: translateY(-2px);
  border-color: rgba(243, 178, 51, 0.55);
}

.package-option input:focus-visible + span {
  box-shadow: 0 0 0 3px rgba(243, 178, 51, 0.16);
}

.package-option input:checked + span {
  border-color: var(--gold);
  background: #211b12;
}

.package-option input:checked + span::after {
  content: "✓";
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: #171007;
  font-size: 0.72rem;
  font-weight: 950;
}

.package-option img {
  grid-column: 1 / -1;
  width: 100%;
  height: 104px;
  object-fit: cover;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.package-choice__grid--extras .package-option img {
  height: 126px;
}

.package-option__fries {
  object-position: 92% 86%;
  transform: scale(3);
  transform-origin: right bottom;
}

.package-option b,
.package-option small {
  display: block;
  padding: 0 11px;
}

.package-option b {
  overflow: hidden;
  padding-top: 9px;
  font-size: 0.68rem;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.package-option small {
  padding-top: 9px;
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 850;
  text-align: right;
}

.package-option > span::before {
  content: "";
  grid-column: 1 / -1;
  height: 8px;
}

.package-builder__drink {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 16px;
  border: 1px solid rgba(243, 178, 51, 0.22);
  background: rgba(243, 178, 51, 0.06);
}

.package-builder__drink > span {
  width: 34px;
  height: 34px;
  display: grid;
  flex: 0 0 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: #171007;
  font-size: 1.25rem;
  font-weight: 900;
}

.package-builder__drink p {
  margin: 0;
}

.package-builder__drink strong,
.package-builder__drink small {
  display: block;
}

.package-builder__drink strong {
  font-size: 0.77rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package-builder__drink small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.68rem;
}

.package-builder__summary {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 4px 20px;
  margin-top: 5px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.package-builder__summary span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.package-builder__summary strong {
  grid-column: 2;
  grid-row: 1 / span 2;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 2.5rem;
  line-height: 1;
}

.package-builder__summary small {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.68rem;
}

.package-builder__form .button {
  width: 100%;
  margin-top: 2px;
}

.package-builder__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.package-builder__actions .button--ghost {
  border-color: rgba(243, 178, 51, 0.62);
  background: #17191b;
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}

.package-builder__actions .button--ghost:hover,
.package-builder__actions .button--ghost:focus-visible {
  border-color: var(--gold);
  background: #1d1b17;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
}

.order-section {
  width: 100%;
  max-width: none;
  padding: 96px max(24px, calc((100vw - var(--max)) / 2));
  background: #08090a;
}

.order-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.28fr 1fr 0.58fr;
  align-items: center;
  gap: 58px;
  padding: 62px;
  border: 1px solid rgba(243, 178, 51, 0.32);
  background:
    radial-gradient(circle at 8% 50%, rgba(243, 178, 51, 0.1), transparent 27%),
    #0d0e10;
}

.order-panel::before {
  content: "";
  position: absolute;
  right: 31%;
  top: -130px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(243, 178, 51, 0.08);
  border-radius: 50%;
}

.order-panel__brand {
  display: grid;
  min-height: 180px;
  place-items: center;
  border-right: 1px solid var(--line);
}

.order-panel__brand img {
  width: min(142px, 88%);
  max-height: 180px;
  object-fit: contain;
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.32));
}

.order-panel h2 {
  color: white;
  font-size: clamp(3rem, 4.4vw, 5.2rem);
}

.order-panel__copy > p {
  max-width: 600px;
  margin: 20px 0 28px;
  color: rgba(255, 255, 255, 0.6);
}

.order-panel__hours {
  position: relative;
  z-index: 2;
  border-left: 1px solid var(--line);
  padding-left: 38px;
}

.order-panel__hours p {
  margin: 0;
  padding-block: 17px;
  border-bottom: 1px solid var(--line);
}

.order-panel__hours span,
.order-panel__hours strong {
  display: block;
}

.order-panel__hours span {
  margin-bottom: 7px;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.order-panel__hours strong {
  font-size: 0.88rem;
}

.order-panel__hours small {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.69rem;
  line-height: 1.5;
}

footer {
  width: min(var(--max), calc(100% - 48px));
  min-height: 125px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.74rem;
}

footer small {
  margin: 0;
}

footer div {
  display: flex;
  gap: 25px;
  color: rgba(255, 255, 255, 0.67);
  font-weight: 700;
}

footer a:hover {
  color: var(--gold);
}

.cart-fab {
  position: fixed;
  z-index: 70;
  right: 22px;
  bottom: 22px;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 16px;
  border: 1px solid rgba(0, 0, 0, 0.22);
  border-radius: 28px;
  background: var(--gold);
  color: #171007;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.cart-fab b,
.mobile-order b {
  min-width: 23px;
  height: 23px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #171007;
  color: var(--gold);
  font-size: 0.68rem;
}

.cart-backdrop {
  position: fixed;
  z-index: 89;
  inset: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.62);
  opacity: 0;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.cart-backdrop.is-open {
  visibility: visible;
  opacity: 1;
}

.cart-panel {
  position: fixed;
  z-index: 90;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(460px, 100%);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-left: 1px solid rgba(243, 178, 51, 0.3);
  background: #0e0f10;
  color: white;
  box-shadow: -24px 0 70px rgba(0, 0, 0, 0.48);
  transform: translateX(105%);
  transition: transform 260ms ease;
}

.cart-panel.is-open {
  transform: translateX(0);
}

.cart-is-open {
  overflow: hidden;
}

.cart-panel__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.cart-panel__header span {
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cart-panel__header h2 {
  margin: 5px 0 0;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: 0.025em;
  line-height: 1;
  text-transform: uppercase;
}

.cart-panel__header button {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: transparent;
  color: white;
  cursor: pointer;
  font-size: 1.5rem;
}

.cart-panel__items {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.cart-panel__empty {
  margin: 38px 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.87rem;
  text-align: center;
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: #17191b;
}

.cart-item__copy h3 {
  margin: 0;
  color: white;
  font-size: 0.84rem;
}

.cart-item__copy p {
  margin: 4px 0 7px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.68rem;
  line-height: 1.35;
}

.cart-item__copy strong {
  color: var(--gold);
  font-family: Georgia, serif;
}

.cart-item__controls {
  display: grid;
  grid-template-columns: 30px 24px 30px;
  align-items: center;
  justify-items: center;
  gap: 3px;
}

.cart-item__controls button:not(.cart-item__remove) {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(243, 178, 51, 0.38);
  background: transparent;
  color: white;
  cursor: pointer;
}

.cart-item__remove {
  grid-column: 1 / -1;
  margin-top: 5px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  font-size: 0.61rem;
  text-decoration: underline;
}

.cart-panel__notes {
  display: grid;
  gap: 7px;
  margin-top: auto;
  padding-top: 24px;
}

.cart-panel__notes span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.cart-panel__notes textarea {
  width: 100%;
  resize: vertical;
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 0;
  background: #17191b;
  color: white;
  font: inherit;
  font-size: 0.82rem;
}

.cart-panel__total {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 5px 15px;
  margin-top: 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.cart-panel__total span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cart-panel__total strong {
  grid-column: 2;
  grid-row: 1 / span 2;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 2.2rem;
}

.cart-panel__total small {
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.66rem;
}

.cart-panel__checkout[aria-disabled="true"] {
  pointer-events: none;
  opacity: 0.42;
}

.mobile-order {
  display: none;
}

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

  .desktop-nav {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.8fr);
  }

  .hero h1 {
    font-size: clamp(3.8rem, 6.2vw, 5.8rem);
  }

  .product-card {
    grid-column: span 3;
  }

  .product-card:nth-child(4) {
    grid-column: span 3;
  }

  .product-card:nth-child(5) {
    grid-column: 2 / span 3;
  }

  .extras-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .order-panel {
    grid-template-columns: 0.25fr 1fr;
  }

  .order-panel__hours {
    grid-column: 2;
    border-left: 0;
    padding-left: 0;
  }

  .order-panel__hours p {
    display: inline-block;
    width: 49%;
    border-bottom: 0;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 820px) {
  .section,
  .site-header,
  footer {
    width: min(100% - 34px, var(--max));
  }

  .extras-section,
  .package-section,
  .order-section {
    width: 100%;
    max-width: none;
  }

  .site-header {
    min-height: 86px;
  }

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

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 122px 17px 44px;
  }

  .hero__copy {
    min-width: 0;
    max-width: none;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 13vw, 6rem);
  }

  .hero__visual {
    width: 100%;
    min-width: 0;
    min-height: 480px;
  }

  .hero__badge {
    right: 12px;
    bottom: 22px;
    width: 122px;
    height: 122px;
  }

  .proof-bar {
    grid-template-columns: 1fr;
    padding: 15px 17px;
  }

  .proof-bar p {
    padding: 14px;
  }

  .proof-bar p + p {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .menu-section,
  .combos-section,
  .extras-section,
  .package-section,
  .order-section {
    padding: 82px 17px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 35px;
  }

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

  .burger-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-card,
  .product-card:nth-child(4),
  .product-card:nth-child(5) {
    grid-column: span 1;
  }

  .combo-grid,
  .package-builder {
    grid-template-columns: 1fr;
  }

  .combo-card {
    min-height: 0;
    display: grid;
    grid-template-rows: auto auto;
  }

  .combo-card::after {
    content: none;
  }

  .combo-card img {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    background: #090a0b;
  }

  .combo-card__overlay {
    position: static;
    padding: 24px;
    background: #111214;
  }

  .package-builder {
    gap: 45px;
  }

  .order-panel {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 42px 30px;
  }

  .order-panel__brand {
    min-height: 115px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-bottom: 25px;
  }

  .order-panel__hours {
    grid-column: 1;
  }

  footer {
    grid-template-columns: 1fr auto;
    padding-block: 36px 105px;
  }

  footer p,
  footer div {
    grid-column: 1 / -1;
  }

  .mobile-order {
    position: fixed;
    z-index: 80;
    right: 14px;
    bottom: 14px;
    left: 14px;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background: var(--gold);
    color: #171007;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .cart-fab {
    display: none;
  }
}

@media (max-width: 560px) {
  .site-header {
    width: calc(100% - 28px);
  }

  .wordmark-image {
    width: min(214px, 66vw);
  }

  .hero {
    padding: 104px 14px 36px;
  }

  .hero h1 {
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: clamp(2.85rem, 13.2vw, 3.45rem);
    line-height: 0.94;
  }

  .hero__lead {
    margin-top: 20px;
    font-size: 0.93rem;
    line-height: 1.65;
  }

  .hero__actions {
    display: grid;
  }

  .service-strip {
    display: grid;
    gap: 16px;
    margin-top: 32px;
  }

  .hero__visual {
    min-height: 370px;
  }

  .hero__image-frame {
    clip-path: none;
  }

  .hero__image-frame img {
    object-fit: contain;
    object-position: center;
    padding: 8px 0 30px;
  }

  .hero__badge {
    right: 8px;
    bottom: 8px;
    width: 104px;
    height: 104px;
  }

  .section-heading h2,
  .package-builder h2,
  .order-panel h2 {
    font-size: clamp(2.8rem, 13vw, 4.2rem);
  }

  .burger-grid,
  .extras-grid {
    grid-template-columns: 1fr;
  }

  .product-card__image {
    aspect-ratio: 1 / 0.8;
  }

  .combo-card__overlay {
    padding: 20px;
    grid-template-columns: 1fr auto;
  }

  .combo-card__overlay h3 {
    font-size: 2rem;
  }

  .combo-card__overlay strong {
    font-size: 1.6rem;
  }

  .extra-card {
    min-height: 0;
    grid-template-rows: auto auto;
    color: #171717;
    background: #fff;
  }

  .extra-card img {
    height: auto;
    aspect-ratio: 1 / 0.78;
    object-fit: cover;
  }

  .extra-card > div:not(.extra-card__number) {
    padding: 20px 20px 22px;
    color: #171717;
    background: #fff;
  }

  .extra-card h3 {
    max-width: none;
    color: #171717;
    font-size: 1.7rem;
  }

  .extra-card__actions,
  .product-card__actions {
    flex-wrap: wrap;
  }

  .package-section {
    padding: 68px 13px;
  }

  .package-builder {
    gap: 26px;
  }

  .package-builder__copy > p {
    margin-top: 16px;
    font-size: 0.87rem;
    line-height: 1.55;
  }

  .package-builder__price {
    margin-top: 18px;
    padding: 14px 18px;
  }

  .package-builder__price strong {
    font-size: 1.85rem;
  }

  .package-choice__grid--burgers {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .package-choice__grid--extras {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .package-option img,
  .package-choice__grid--extras .package-option img {
    height: 78px;
  }

  .package-option b {
    min-height: 31px;
    padding: 8px 7px 0;
    font-size: 0.58rem;
    line-height: 1.25;
    white-space: normal;
  }

  .package-option small {
    padding: 8px 7px 0 0;
    font-size: 0.55rem;
  }

  .package-choice__grid--extras .package-option > span {
    grid-template-columns: 1fr;
  }

  .package-choice__grid--extras .package-option b,
  .package-choice__grid--extras .package-option small {
    grid-column: 1;
    min-height: 0;
    padding: 7px 7px 0;
    text-align: left;
    white-space: nowrap;
  }

  .package-choice__grid--extras .package-option small {
    padding-top: 0;
  }

  .package-option > span::before {
    height: 4px;
  }

  .package-option input:checked + span::after {
    top: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    font-size: 0.6rem;
  }

  .package-builder__form {
    gap: 17px;
    padding: 19px 12px;
  }

  .package-builder__form > .button {
    margin-bottom: 58px;
  }

  .package-builder__actions {
    grid-template-columns: 1fr;
    margin-bottom: 58px;
  }

  .package-builder__actions .button {
    margin: 0;
  }

  .package-choice legend {
    margin-bottom: 10px;
    font-size: 0.63rem;
  }

  .package-builder__drink {
    padding: 11px 13px;
  }

  .package-builder__summary {
    padding: 16px 0;
  }

  .order-panel {
    padding: 34px 23px;
  }

  .order-panel__hours p {
    width: 100%;
  }

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

  footer small {
    justify-self: start;
  }

  .cart-panel {
    width: 100%;
    padding: 20px 17px 88px;
  }

  .cart-panel__header h2 {
    font-size: 1.8rem;
  }
}

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