:root {
  --bg: #120c09;
  --deep: #17100c;
  --deep-2: #1d130f;
  --paper: #fff6e9;
  --cream: #f7e5cb;
  --gold: #efa72c;
  --gold-light: #ffd477;
  --gold-dark: #bc7016;
  --orange: #d75b26;
  --muted: #c8b9ad;
  --muted-dark: #9d8d82;
  --line: #4b3a31;
  --line-soft: rgba(255, 240, 222, .13);
  --card: #211612;
  --card-light: #2a1c16;
  --danger: #ff8f72;
  --success: #9fd58a;
  --header-height: 94px;
  --section-pad: max(5%, calc((100% - 1360px) / 2));
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% -20%, rgba(142, 61, 26, .13), transparent 42%),
    var(--bg);
  color: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body.no-scroll {
  overflow: hidden;
}

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

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

button {
  touch-action: manipulation;
}

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

a,
button {
  outline-offset: 4px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--gold-light);
}

[hidden] {
  display: none !important;
}

section {
  scroll-margin-top: calc(var(--header-height) + 16px);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 16px;
  top: 14px;
  padding: 12px 16px;
  color: #1c1109;
  background: var(--gold-light);
  border-radius: 6px;
  font-weight: 900;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

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

.topbar {
  min-height: var(--header-height);
  padding: 9px 4.5%;
  display: flex;
  align-items: center;
  gap: clamp(13px, 2.2vw, 34px);
  position: sticky;
  z-index: 30;
  top: 0;
  border-bottom: 1px solid rgba(238, 199, 156, .17);
  background: rgba(18, 12, 9, .94);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .2);
  backdrop-filter: blur(16px);
}

.brand {
  width: 76px;
  min-width: 76px;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  color: var(--paper);
  text-decoration: none;
}

.brand-logo {
  width: 76px;
  height: 83px;
  flex: 0 0 auto;
  object-fit: contain;
  object-position: center;
  border: 0;
  border-radius: 7px;
  box-shadow: 0 7px 20px rgba(0, 0, 0, .28);
}

.topbar nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
  margin: 0 auto;
}

.topbar nav a {
  position: relative;
  padding: 13px 11px;
  color: #d8cbc0;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  transition: color .18s ease;
}

.topbar nav a::after {
  content: "";
  position: absolute;
  height: 2px;
  left: 11px;
  right: 11px;
  bottom: 5px;
  border-radius: 5px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .18s ease;
}

.topbar nav a:hover,
.topbar nav a.active {
  color: #fff;
}

.topbar nav a.active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
}

.account-button,
.cart-button {
  min-height: 43px;
  padding: 7px 9px 7px 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #544238;
  border-radius: 28px;
  background: #19110e;
  color: var(--paper);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, color .18s ease;
}

.account-button:hover,
.cart-button:hover {
  border-color: var(--gold);
  background: #241711;
  color: var(--gold-light);
}

.account-button svg,
.cart-button svg {
  width: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.account-button i {
  width: 7px;
  height: 7px;
  display: block;
  border-radius: 50%;
  background: #75655b;
  box-shadow: 0 0 0 3px rgba(117, 101, 91, .12);
}

.account-button i.online {
  background: #9fd58a;
  box-shadow: 0 0 0 3px rgba(159, 213, 138, .12);
}

.cart-button b {
  min-width: 27px;
  height: 27px;
  padding: 0 7px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: var(--gold);
  color: #251408;
  font-size: 12px;
}

.delivery-button,
.gold-button {
  min-height: 49px;
  padding: 15px 24px;
  border: 0;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 56%, #e08c1c);
  box-shadow: 0 8px 25px rgba(197, 109, 15, .2);
  color: #251509;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
}

.delivery-button:hover,
.gold-button:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 11px 29px rgba(218, 129, 25, .26);
}

.delivery-button:disabled,
.gold-button:disabled {
  filter: grayscale(.65);
  opacity: .5;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.delivery-button,
#heroOrder,
#bottomOrder,
#footerOrder {
  display: none;
}

.platform-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
}

.platform-links a {
  min-height: 45px;
  padding: 13px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 28px;
  background: #19110e;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.platform-links a:hover {
  background: var(--gold);
  color: #251509;
  transform: translateY(-2px);
}

.header-platform-links {
  flex-wrap: nowrap;
  gap: 5px;
}

.header-platform-links a {
  min-height: 37px;
  padding: 10px 10px;
  font-size: 9px;
}

.center-platform-links {
  position: relative;
  z-index: 1;
  justify-content: center;
}

.footer-platform-links a {
  min-height: 38px;
  padding: 10px 13px;
  font-size: 10px;
}

.hero {
  height: min(780px, calc(100svh - var(--header-height)));
  min-height: 640px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #180d08;
}

.hero-photo,
.hero-shade,
.hero-glow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-photo {
  z-index: -4;
  object-fit: cover;
  object-position: center 52%;
  animation: heroSettle 1.2s ease-out both;
}

.hero-shade {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(9, 5, 3, .98) 0%, rgba(14, 8, 5, .91) 34%, rgba(13, 7, 4, .45) 64%, rgba(9, 5, 3, .17) 100%),
    linear-gradient(0deg, rgba(11, 6, 4, .6), transparent 35%);
  pointer-events: none;
}

.hero-glow {
  z-index: -2;
  background: radial-gradient(circle at 73% 44%, rgba(232, 133, 36, .08), transparent 32%);
  pointer-events: none;
}

@keyframes heroSettle {
  from {
    opacity: .35;
    transform: scale(1.035);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-content {
  width: min(760px, 90%);
  height: 100%;
  margin-left: var(--section-pad);
  padding: clamp(70px, 10vh, 112px) 0 45px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.kicker {
  margin: 0 0 21px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 3.1px;
  line-height: 1.35;
}

.kicker > span {
  width: 31px;
  height: 1px;
  display: inline-block;
  background: var(--gold);
}

.kicker.center {
  justify-content: center;
}

.hero h1,
h2 {
  margin: 0;
  color: #fff8ee;
  font-family: var(--serif);
  font-weight: 800;
  letter-spacing: -3.3px;
  line-height: .98;
}

.hero h1 {
  max-width: 750px;
  font-size: clamp(51px, 6vw, 84px);
  text-shadow: 0 4px 28px rgba(0, 0, 0, .44);
}

h1 em,
h2 em {
  color: var(--gold-light);
  font-weight: inherit;
}

.hero-copy {
  max-width: 650px;
  margin: 28px 0 30px;
  color: #e8dbce;
  font-size: 17px;
  line-height: 1.65;
  text-shadow: 0 2px 15px #000;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 13px;
}

.outline-button {
  min-height: 49px;
  padding: 14px 24px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 246, 232, .56);
  border-radius: 30px;
  background: rgba(20, 12, 8, .63);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

.outline-button:hover {
  border-color: var(--gold-light);
  background: rgba(39, 24, 15, .85);
  transform: translateY(-2px);
}

.stats {
  margin-top: clamp(32px, 5vh, 48px);
  display: flex;
  gap: 10px;
}

.stats div {
  min-width: 157px;
  padding: 13px 18px;
  border: 1px solid rgba(234, 208, 181, .23);
  border-radius: 10px;
  background: rgba(18, 11, 8, .72);
  backdrop-filter: blur(8px);
}

.stats b {
  display: block;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 25px;
}

.stats span {
  margin-top: 3px;
  display: block;
  color: #cfbeb0;
  font-size: 11px;
}

.marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 17px 0;
  border-block: 1px solid #49382f;
  background: #17100c;
  color: #eaded2;
  white-space: nowrap;
}

.marquee-track {
  width: max-content;
  display: inline-flex;
  animation: marqueeMove 37s linear infinite;
}

.marquee-track span {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
}

.marquee i {
  padding: 0 20px;
  color: var(--gold);
  font-style: normal;
}

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

.menu-section,
.why-section,
.story,
.order-section {
  padding-left: var(--section-pad);
  padding-right: var(--section-pad);
}

.menu-section {
  padding-top: 105px;
  padding-bottom: 120px;
}

.section-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
}

.section-intro h2,
.why-heading h2,
.story h2,
.order-section h2 {
  font-size: clamp(44px, 5.3vw, 72px);
}

.section-intro > p {
  width: min(390px, 100%);
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.menu-toolbar {
  margin: 46px 0 29px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 25px;
  border-bottom: 1px solid var(--line);
}

.tabs {
  display: flex;
  gap: 31px;
  overflow-x: auto;
  scrollbar-width: none;
}

.tabs::-webkit-scrollbar {
  display: none;
}

.tab {
  margin: 0;
  padding: 0 1px 16px;
  position: relative;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
}

.tab::after {
  content: "";
  height: 3px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  border-radius: 3px 3px 0 0;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .18s ease;
}

.tab:hover,
.tab.active {
  color: var(--paper);
}

.tab.active::after {
  transform: scaleX(1);
}

.menu-result {
  margin: 0 0 16px;
  color: var(--muted-dark);
  font-size: 12px;
  white-space: nowrap;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 19px;
}

.item {
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(245, 214, 181, .11);
  border-radius: 3px;
  background: var(--card);
  box-shadow: 0 13px 32px rgba(0, 0, 0, .13);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.item:hover {
  border-color: rgba(239, 167, 44, .42);
  background: var(--card-light);
  transform: translateY(-5px);
}

.item-media {
  aspect-ratio: 1.27 / 1;
  min-height: 190px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(211, 112, 33, .18), transparent 52%),
    #24150e;
}

.item-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 -32px 40px rgba(13, 8, 5, .13);
}

.item-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.002);
  transition: transform .45s ease, opacity .25s ease;
}

.item:hover .item-media img {
  transform: scale(1.045);
}

.item-media.image-missing img {
  display: none;
}

.item-media.image-missing::before {
  content: "Fresh photo coming through";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 25px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-align: center;
}

.item-badge,
.heat-badge {
  position: absolute;
  z-index: 2;
  top: 13px;
  left: 13px;
  border-radius: 20px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .3);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.3px;
}

.item-badge {
  padding: 8px 10px;
  background: var(--gold);
  color: #271408;
}

.item-badge.hot {
  background: #a63e20;
  color: white;
}

.heat-badge {
  width: 37px;
  height: 37px;
  left: auto;
  right: 13px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 205, 154, .38);
  background: rgba(112, 31, 12, .9);
  color: #ffe3c6;
  letter-spacing: .4px;
}

.item-body {
  min-height: 224px;
  padding: 20px 19px 18px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.item-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 13px;
}

.item h3 {
  margin: 0;
  color: #fff6e9;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.12;
  letter-spacing: -.35px;
}

.item-top > strong {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 19px;
  white-space: nowrap;
}

.item p {
  margin: 12px 0 18px;
  color: #c6b7ab;
  font-size: 12.5px;
  line-height: 1.56;
}

.add {
  min-height: 42px;
  width: 100%;
  margin-top: auto;
  padding: 9px 11px 9px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #554238;
  background: transparent;
  color: var(--paper);
  font-size: 12px;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
  transition: color .18s ease, border-color .18s ease, background .18s ease;
}

.add b {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #37271f;
  color: var(--gold-light);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}

.add:hover,
.add.added {
  border-color: var(--gold);
  background: rgba(239, 167, 44, .07);
  color: var(--gold-light);
}

.add.added b {
  background: var(--gold);
  color: #241207;
}

.why-section {
  padding-top: 102px;
  padding-bottom: 110px;
  display: grid;
  grid-template-columns: .74fr 1.26fr;
  gap: 7%;
  border-block: 1px solid var(--line-soft);
  background:
    linear-gradient(110deg, rgba(111, 43, 19, .16), transparent 37%),
    #19100c;
}

.why-heading {
  align-self: center;
}

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

.why-grid article {
  min-height: 340px;
  padding: 32px 25px;
  position: relative;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.why-grid article:last-child {
  border-right: 1px solid var(--line);
}

.why-icon {
  width: 56px;
  height: 56px;
  margin-bottom: auto;
  display: grid;
  place-items: center;
  border: 1px solid #564035;
  border-radius: 50%;
  color: var(--gold);
}

.why-icon svg {
  width: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-grid article > span {
  margin-bottom: 12px;
  color: #8c776a;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2px;
}

.why-grid h3 {
  margin: 0;
  color: #fff4e5;
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.1;
}

.why-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.story {
  padding-top: 112px;
  padding-bottom: 112px;
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 9%;
  align-items: center;
  background:
    radial-gradient(circle at 20% 45%, rgba(154, 72, 26, .13), transparent 30%),
    #211510;
}

.story-mark {
  min-height: 560px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #4a352b;
  background:
    linear-gradient(145deg, rgba(239, 167, 44, .05), transparent 45%),
    #130c09;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .25);
}

.logo-frame {
  width: min(365px, 100%);
}

.story-mark img {
  width: 100%;
  max-height: 440px;
  object-fit: contain;
  border-radius: 9px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .48);
}

.story-copy > p:not(.kicker) {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.rule-list {
  margin-top: 30px;
  padding: 21px 0;
  display: grid;
  gap: 14px;
  border-block: 1px solid var(--line);
  color: #eaded2;
  font-size: 13px;
  font-weight: 800;
}

.rule-list i {
  margin-right: 11px;
  color: var(--gold);
  font-style: normal;
}

.text-link {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--gold-dark);
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  padding-bottom: 6px;
}

.text-link:hover {
  color: white;
}

.order-section {
  min-height: 600px;
  padding-top: 101px;
  padding-bottom: 105px;
  position: relative;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(circle at 50% 43%, rgba(140, 56, 20, .25), transparent 31%),
    #120c09;
}

.order-watermark {
  position: absolute;
  left: 50%;
  bottom: -47px;
  color: rgba(255, 235, 209, .025);
  font-family: var(--serif);
  font-size: clamp(140px, 23vw, 350px);
  font-weight: 900;
  letter-spacing: -18px;
  line-height: 1;
  transform: translateX(-50%);
  pointer-events: none;
}

.order-logo-wrap {
  width: 104px;
  height: 114px;
  margin: 0 auto 28px;
  position: relative;
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(0, 0, 0, .38);
  overflow: hidden;
}

.order-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.order-section h2,
.order-section > p,
.order-section > button,
.order-section > small,
.order-section .kicker {
  position: relative;
  z-index: 1;
}

.order-section > p:not(.kicker) {
  max-width: 620px;
  margin: 24px auto 30px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.gold-button.large {
  min-height: 57px;
  padding: 17px 31px;
  font-size: 15px;
}

.order-section > small {
  margin-top: 17px;
  display: block;
  color: #8e7e73;
  font-size: 10px;
}

footer {
  padding: 58px 5% 24px;
  display: grid;
  grid-template-columns: 1.35fr .65fr 1fr;
  gap: 6%;
  border-top: 1px solid var(--line);
  background: #0e0907;
}

.footer-brand {
  width: 70px;
  min-width: 70px;
}

.footer-brand .brand-logo {
  width: 70px;
  height: 77px;
}

.footer-brand-wrap > p {
  margin: 19px 0 0;
  color: #9e8e83;
  font-size: 12px;
  line-height: 1.6;
}

.footer-nav,
.footer-callout {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-nav > strong,
.footer-callout > strong {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 9px;
  letter-spacing: 2.3px;
}

.footer-nav a {
  margin-bottom: 11px;
  color: #c3b5aa;
  font-size: 12px;
  text-decoration: none;
}

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

.footer-callout p {
  margin: 0 0 18px;
  color: #c3b5aa;
  font-family: var(--serif);
  font-size: 21px;
}

.footer-callout button {
  padding: 0 0 6px;
  display: inline-flex;
  gap: 11px;
  border: 0;
  border-bottom: 1px solid #76532d;
  background: transparent;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.footer-bottom {
  margin-top: 38px;
  padding-top: 20px;
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #2e211b;
}

.footer-bottom small {
  color: #776a61;
  font-size: 10px;
}

.cart {
  width: min(470px, 100%);
  height: 100%;
  padding: 32px 31px 25px;
  position: fixed;
  z-index: 60;
  right: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 95% 0, rgba(180, 83, 28, .12), transparent 27%),
    #1d1410;
  box-shadow: -24px 0 60px rgba(0, 0, 0, .55);
  transform: translateX(105%);
  visibility: hidden;
  transition: transform .3s ease, visibility .3s;
}

.cart.open {
  transform: translateX(0);
  visibility: visible;
}

.cart-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.cart h2,
.modal h2 {
  font-size: clamp(39px, 5vw, 52px);
}

.x {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid #58463c;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #1a110e;
  color: #fff;
  font-size: 27px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  transition: border-color .18s ease, color .18s ease;
}

.x:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.cart-progress {
  margin: 24px 0 7px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.cart-progress span {
  height: 3px;
  border-radius: 4px;
  background: #3d3029;
}

.cart-progress span.active {
  background: var(--gold);
}

.cart-items {
  min-height: 160px;
  padding: 17px 3px 18px 0;
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.empty {
  min-height: 100%;
  padding: 45px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.empty-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 19px;
  display: grid;
  place-items: center;
  border: 1px solid #584238;
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 34px;
}

.empty h3 {
  margin: 0;
  color: #fff4e6;
  font-family: var(--serif);
  font-size: 25px;
}

.empty p {
  max-width: 260px;
  margin: 10px 0 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.empty button {
  padding: 10px 0 5px;
  border: 0;
  border-bottom: 1px solid var(--gold-dark);
  background: none;
  color: var(--gold-light);
  font-weight: 900;
  cursor: pointer;
}

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

.cart-row-image {
  width: 78px;
  height: 71px;
  overflow: hidden;
  background: #2c1c15;
}

.cart-row-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-row-main {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.cart-row-main strong {
  overflow: hidden;
  color: #fff3e3;
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.15;
  text-overflow: ellipsis;
}

.cart-row-main > span {
  margin-top: 5px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 900;
}

.quantity {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.quantity button {
  width: 25px;
  height: 25px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid #5c483e;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.quantity button:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.quantity span {
  min-width: 17px;
  color: #eee1d4;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.remove-item {
  align-self: start;
  padding: 3px;
  border: 0;
  background: transparent;
  color: #88776c;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.remove-item:hover {
  color: var(--danger);
}

.cart-bottom {
  padding-top: 19px;
  border-top: 1px solid var(--line);
}

.subtotal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #d3c6bb;
  font-size: 13px;
}

.subtotal-row b {
  color: #fff5e8;
  font-family: var(--serif);
  font-size: 24px;
}

.cart-bottom > p {
  margin: 10px 0 0;
  color: #887a70;
  font-size: 10px;
  line-height: 1.45;
}

.full {
  width: 100%;
  margin-top: 18px;
}

.continue-shopping {
  width: 100%;
  margin-top: 13px;
  padding: 7px;
  border: 0;
  background: transparent;
  color: #b9a99d;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.continue-shopping:hover {
  color: var(--gold-light);
}

.scrim {
  position: fixed;
  z-index: 55;
  inset: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, .73);
  opacity: 0;
  backdrop-filter: blur(2px);
  transition: opacity .25s ease, visibility .25s;
}

.scrim.show {
  visibility: visible;
  opacity: 1;
}

.modal {
  padding: 20px;
  position: fixed;
  z-index: 80;
  inset: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 3, 2, .85);
  opacity: 0;
  backdrop-filter: blur(4px);
  transition: opacity .22s ease, visibility .22s;
}

.modal.open {
  visibility: visible;
  opacity: 1;
}

.modal-card {
  width: min(680px, 100%);
  max-height: calc(100svh - 30px);
  padding: 39px;
  position: relative;
  overflow-y: auto;
  border: 1px solid #4d382e;
  background:
    radial-gradient(circle at 100% 0, rgba(181, 80, 25, .11), transparent 28%),
    #201611;
  box-shadow: 0 25px 80px rgba(0, 0, 0, .65);
  transform: translateY(15px) scale(.985);
  transition: transform .22s ease;
}

.modal.open .modal-card {
  transform: translateY(0) scale(1);
}

.modal-x {
  position: absolute;
  z-index: 3;
  right: 18px;
  top: 18px;
}

.modal-heading {
  padding-right: 35px;
}

.modal-heading > p:not(.kicker) {
  max-width: 550px;
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

form {
  margin-top: 27px;
}

fieldset {
  min-width: 0;
}

.fulfillment-fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.fulfillment-fieldset legend,
form > label,
.form-grid > label {
  display: block;
  color: #eee2d7;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .25px;
}

.fulfillment-options {
  margin-top: 9px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
}

.choice {
  position: relative;
  cursor: pointer;
}

.choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice > span {
  min-height: 78px;
  padding: 14px;
  display: grid;
  grid-template-columns: 31px 1fr;
  grid-template-rows: auto auto;
  column-gap: 11px;
  align-items: center;
  border: 1px solid #58463c;
  background: #17100d;
  transition: border-color .18s ease, background .18s ease;
}

.choice svg {
  width: 28px;
  grid-row: 1 / 3;
  fill: none;
  stroke: #bba99c;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.choice b {
  color: #eee2d6;
  font-size: 12px;
}

.choice small {
  color: #8f8076;
  font-size: 10px;
  font-weight: 400;
}

.choice input:checked + span {
  border-color: var(--gold);
  background: rgba(239, 167, 44, .07);
}

.choice input:checked + span svg {
  stroke: var(--gold-light);
}

.choice input:focus-visible + span {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

.form-grid {
  margin-top: 5px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 13px;
}

form > label,
.form-grid > label {
  margin-top: 15px;
}

label small {
  color: #8e7e73;
  font-weight: 400;
}

input,
textarea,
select {
  width: 100%;
  margin-top: 7px;
  padding: 12px 13px;
  border: 1px solid #514036;
  border-radius: 0;
  background: #140e0b;
  color: #fff7ec;
  font-size: 13px;
}

input,
select {
  height: 45px;
}

select {
  color-scheme: dark;
}

textarea {
  min-height: 78px;
  resize: vertical;
  line-height: 1.45;
}

input::placeholder,
textarea::placeholder {
  color: #73655d;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--gold);
  outline: 1px solid var(--gold);
}

.summary {
  margin-top: 21px;
  padding: 16px;
  border: 1px solid #4c392f;
  background: #17100d;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.summary-title,
.summary-total {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  color: #fff2e2;
  font-weight: 900;
}

.summary-lines {
  margin: 10px 0;
  padding: 10px 0;
  border-block: 1px solid #392c25;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.summary-total strong {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 17px;
}

.submit-order {
  min-height: 53px;
}

.form-note {
  margin: 11px 0 0;
  color: #82746b;
  font-size: 9.5px;
  line-height: 1.45;
  text-align: center;
}

.status {
  min-height: 18px;
  margin: 10px 0 0;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
}

.status.error {
  color: var(--danger);
}

.status.success {
  color: var(--success);
}

.success-panel {
  padding: 24px 8px 9px;
  text-align: center;
}

.success-icon {
  width: 88px;
  margin: 0 auto 24px;
  color: var(--gold);
}

.success-icon svg {
  width: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.success-panel > p:not(.kicker) {
  max-width: 520px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.success-summary {
  margin: 24px 0 6px;
  padding: 15px;
  border: 1px solid #4d392f;
  background: #17100d;
  color: #d8c9bd;
  font-size: 12px;
  line-height: 1.6;
}

.account-modal {
  z-index: 90;
}

.account-modal-card {
  width: min(760px, 100%);
}

.account-heading > p:not(.kicker) {
  max-width: 590px;
}

.auth-tabs {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid #4b392f;
}

.auth-tab {
  min-height: 49px;
  padding: 12px;
  position: relative;
  border: 0;
  background: transparent;
  color: #a8988d;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.auth-tab::after {
  content: "";
  height: 3px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .18s ease;
}

.auth-tab:hover,
.auth-tab.active {
  color: #fff5e9;
}

.auth-tab.active::after {
  transform: scaleX(1);
}

.auth-form {
  max-width: 520px;
  margin: 25px auto 0;
  padding: 25px;
  border: 1px solid #4b382f;
  background:
    linear-gradient(145deg, rgba(239, 167, 44, .035), transparent 45%),
    #18100d;
}

.auth-form-copy {
  margin-bottom: 7px;
  display: grid;
  gap: 5px;
}

.auth-form-copy strong {
  color: #fff3e5;
  font-family: var(--serif);
  font-size: 24px;
}

.auth-form-copy span {
  color: #9f9085;
  font-size: 11px;
  line-height: 1.5;
}

.auth-form > label {
  display: block;
  margin-top: 16px;
  color: #eee2d7;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .25px;
}

.auth-submit {
  min-height: 52px;
}

.auth-privacy {
  margin: 11px auto 0;
  color: #7f7168;
  font-size: 9.5px;
  line-height: 1.5;
  text-align: center;
}

.auth-status {
  margin-bottom: 0;
}

.account-dashboard-head {
  padding-right: 50px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.account-dashboard-head h2 {
  font-size: clamp(43px, 6vw, 60px);
}

.account-dashboard-head > div > p:not(.kicker) {
  margin: 13px 0 0;
  color: #9f9085;
  font-size: 11px;
}

.account-head-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.refresh-orders,
.sign-out-button {
  min-height: 40px;
  padding: 10px 13px;
  border: 1px solid #554238;
  background: #17100d;
  color: #d8cabf;
  font-size: 10px;
  font-weight: 900;
  cursor: pointer;
  transition: border-color .18s ease, color .18s ease;
}

.refresh-orders {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.refresh-orders svg {
  width: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.refresh-orders:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.sign-out-button:hover {
  border-color: var(--danger);
  color: var(--danger);
}

.refresh-orders:disabled,
.sign-out-button:disabled {
  opacity: .55;
  cursor: wait;
}

.account-status {
  min-height: 17px;
  margin: 20px 0 8px;
  color: #a7988d;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.45;
}

.account-status.success {
  color: var(--success);
}

.account-status.error {
  color: var(--danger);
}

.orders-list {
  max-height: min(540px, calc(100svh - 270px));
  padding-right: 4px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.orders-loading,
.orders-empty {
  min-height: 300px;
  padding: 45px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid #49372e;
  background: #17100d;
  text-align: center;
}

.orders-loading strong,
.orders-empty h3 {
  margin: 0;
  color: #fff3e4;
  font-family: var(--serif);
  font-size: 24px;
}

.orders-loading p,
.orders-empty p {
  max-width: 340px;
  margin: 10px 0 0;
  color: #988a80;
  font-size: 12px;
  line-height: 1.55;
}

.orders-empty .empty-icon {
  margin-bottom: 18px;
}

.orders-empty button {
  margin-top: 20px;
  padding: 9px 0 5px;
  border: 0;
  border-bottom: 1px solid var(--gold-dark);
  background: transparent;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
}

.spinner {
  width: 34px;
  height: 34px;
  margin-bottom: 20px;
  border: 3px solid #49372e;
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spinnerRotate .8s linear infinite;
}

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

.saved-order {
  margin-top: 11px;
  padding: 19px;
  border: 1px solid #4b382f;
  background:
    linear-gradient(135deg, rgba(239, 167, 44, .035), transparent 47%),
    #17100d;
}

.saved-order:first-child {
  margin-top: 0;
}

.saved-order-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
}

.saved-order-head > div {
  display: grid;
  gap: 5px;
}

.saved-order-date {
  color: #8d7e74;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .7px;
  text-transform: uppercase;
}

.saved-order-head strong {
  color: #fff3e5;
  font-family: var(--serif);
  font-size: 20px;
}

.order-status {
  padding: 7px 9px;
  border: 1px solid #7e5a2d;
  border-radius: 20px;
  background: rgba(239, 167, 44, .08);
  color: var(--gold-light);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.order-status.status-cancelled {
  border-color: #624038;
  background: rgba(255, 143, 114, .05);
  color: #b99c92;
}

.order-status.status-confirmed,
.order-status.status-completed {
  border-color: #55734d;
  background: rgba(159, 213, 138, .06);
  color: var(--success);
}

.saved-order ul {
  margin: 16px 0 0;
  padding: 13px 0;
  display: grid;
  gap: 7px;
  border-block: 1px solid #382a24;
  list-style: none;
}

.saved-order li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: #c9b9ad;
  font-size: 11px;
  line-height: 1.45;
}

.saved-order li b {
  color: #dfd0c4;
  white-space: nowrap;
}

.saved-order-total {
  padding-top: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #9c8d82;
  font-size: 11px;
}

.saved-order-total strong {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 20px;
}

.saved-order-actions {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.saved-order-actions button {
  min-height: 37px;
  padding: 9px 13px;
  border: 1px solid #5a4539;
  background: transparent;
  color: #e5d6c9;
  font-size: 9px;
  font-weight: 900;
  cursor: pointer;
  transition: border-color .18s ease, color .18s ease, background .18s ease;
}

.saved-order-actions button:hover {
  border-color: var(--gold);
  background: rgba(239, 167, 44, .05);
  color: var(--gold-light);
}

.saved-order-actions button.cancel-order:hover {
  border-color: var(--danger);
  background: rgba(255, 143, 114, .04);
  color: var(--danger);
}

.saved-order-actions button:disabled {
  opacity: .55;
  cursor: wait;
}

.toast {
  max-width: calc(100% - 30px);
  min-height: 54px;
  padding: 8px 9px 8px 11px;
  position: fixed;
  z-index: 100;
  left: 50%;
  bottom: max(20px, env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #5b493e;
  border-radius: 30px;
  background: #241914;
  box-shadow: 0 14px 45px rgba(0, 0, 0, .5);
  color: #f5eadf;
  font-size: 12px;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 18px);
  transition: opacity .2s ease, transform .2s ease;
}

.toast.show {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.toast-check {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: #221308;
  font-size: 15px;
}

.toast button {
  margin-left: 8px;
  padding: 9px 12px;
  border: 0;
  border-radius: 20px;
  background: #433027;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 900;
  cursor: pointer;
}

@media (max-width: 1320px) {
  .topbar {
    gap: 13px;
  }

  .topbar nav a {
    padding-inline: 8px;
  }

  .topbar nav a::after {
    left: 8px;
    right: 8px;
  }

  .account-button span,
  .cart-label {
    display: none;
  }

  .account-button {
    padding-inline: 11px;
  }
}

@media (max-width: 1220px) {
  .menu-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .why-section {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .header-platform-links a {
    padding-inline: 8px;
  }
}

@media (max-width: 1020px) {
  .header-platform-links {
    display: none;
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 82px;
  }

  .topbar {
    padding: 7px 4.5%;
  }

  .brand {
    width: 61px;
    min-width: 61px;
  }

  .brand-logo {
    width: 61px;
    height: 67px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    margin-left: auto;
    padding: 10px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid #4e3d34;
    border-radius: 50%;
    background: transparent;
    color: white;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 19px;
    height: 1.5px;
    margin-inline: auto;
    display: block;
    background: currentColor;
    transition: transform .18s ease, opacity .18s ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  .topbar nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    margin: 0;
    padding: 12px 5% 20px;
    visibility: hidden;
    align-items: stretch;
    flex-direction: column;
    border-bottom: 1px solid var(--line);
    background: rgba(20, 13, 10, .99);
    box-shadow: 0 22px 35px rgba(0, 0, 0, .45);
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s;
  }

  .topbar nav.show {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .topbar nav a {
    padding: 13px 4px;
    border-bottom: 1px solid #342821;
  }

  .topbar nav a::after {
    display: none;
  }

  .header-actions {
    order: 3;
  }

  .hero {
    height: 720px;
    min-height: 0;
  }

  .hero-content {
    margin-left: 5%;
    padding-top: 65px;
  }

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

  .story {
    grid-template-columns: .9fr 1.1fr;
    gap: 6%;
  }

  .story-mark {
    min-height: 480px;
    padding: 28px;
  }
}

@media (max-width: 760px) {
  .delivery-button {
    display: none;
  }

  .hero {
    height: 760px;
  }

  .hero-photo {
    object-position: 62% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(9, 5, 3, .96) 0%, rgba(13, 7, 4, .82) 56%, rgba(9, 5, 3, .42) 100%),
      linear-gradient(0deg, rgba(10, 6, 4, .74), transparent 55%);
  }

  .hero-content {
    width: 90%;
    justify-content: flex-end;
    padding: 80px 0 57px;
  }

  .hero h1 {
    font-size: clamp(47px, 12vw, 69px);
  }

  .hero-copy {
    max-width: 570px;
    font-size: 15px;
  }

  .stats {
    width: 100%;
  }

  .stats div {
    min-width: 0;
    flex: 1;
  }

  .menu-section {
    padding-top: 78px;
    padding-bottom: 83px;
  }

  .section-intro {
    display: block;
  }

  .section-intro > p {
    margin-top: 20px;
  }

  .menu-toolbar {
    margin-top: 34px;
    display: block;
  }

  .tabs {
    width: 100%;
  }

  .menu-result {
    display: none;
  }

  .item-media {
    min-height: 220px;
  }

  .why-section {
    padding-top: 78px;
    padding-bottom: 82px;
  }

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

  .why-grid article {
    min-height: 245px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .why-grid article:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .why-icon {
    margin-bottom: 35px;
  }

  .story {
    padding-top: 82px;
    padding-bottom: 85px;
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .story-mark {
    min-height: 480px;
  }

  .order-section {
    min-height: 570px;
    padding-top: 83px;
    padding-bottom: 86px;
  }

  footer {
    grid-template-columns: 1fr 1fr;
    row-gap: 45px;
  }

  .footer-callout {
    grid-column: 1 / -1;
  }

  .account-dashboard-head {
    padding-right: 40px;
    align-items: flex-start;
    flex-direction: column;
  }

  .account-head-actions {
    margin-top: -8px;
  }

  .orders-list {
    max-height: none;
  }
}

@media (max-width: 560px) {
  .topbar {
    gap: 7px;
    padding-inline: 14px;
  }

  .brand {
    width: 54px;
    min-width: 54px;
  }

  .brand-logo {
    width: 54px;
    height: 59px;
  }

  .account-button,
  .cart-button {
    min-height: 40px;
    padding: 6px 7px 6px 9px;
  }

  .account-button svg,
  .cart-button svg {
    width: 17px;
  }

  .account-button i {
    width: 6px;
    height: 6px;
  }

  .cart-button b {
    min-width: 23px;
    height: 23px;
    padding-inline: 6px;
  }

  .hero-actions .platform-links {
    width: 100%;
  }

  .hero-actions .platform-links a {
    flex: 1;
  }

  .hero {
    height: 750px;
  }

  .hero-content {
    margin-left: 20px;
  }

  .kicker {
    letter-spacing: 2.3px;
  }

  .hero h1 {
    font-size: 45px;
    letter-spacing: -2.3px;
  }

  .hero-copy {
    margin-block: 22px;
    line-height: 1.55;
  }

  .hero-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

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

  .stats {
    margin-top: 25px;
  }

  .stats div {
    padding: 12px 10px;
  }

  .stats b {
    font-size: 21px;
  }

  .stats span {
    font-size: 9.5px;
  }

  .stats div:last-child {
    display: none;
  }

  .marquee {
    padding-block: 14px;
  }

  .menu-section,
  .why-section,
  .story,
  .order-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-intro h2,
  .why-heading h2,
  .story h2,
  .order-section h2 {
    font-size: 43px;
    letter-spacing: -2.2px;
  }

  .tabs {
    gap: 25px;
  }

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

  .item-media {
    min-height: 245px;
  }

  .item-body {
    min-height: 210px;
  }

  .story-mark {
    min-height: 420px;
    padding: 25px;
  }

  .story-mark img {
    max-height: 355px;
  }

  .order-watermark {
    display: none;
  }

  footer {
    padding-inline: 20px;
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .cart {
    padding: 25px 20px 20px;
  }

  .cart-row {
    grid-template-columns: 69px 1fr auto;
    gap: 11px;
  }

  .cart-row-image {
    width: 69px;
    height: 66px;
  }

  .modal {
    padding: 0;
    align-items: flex-end;
  }

  .modal-card {
    max-height: calc(100svh - 9px);
    padding: 31px 20px 24px;
    border-width: 1px 0 0;
  }

  .modal-heading {
    padding-right: 32px;
  }

  .modal h2 {
    font-size: 39px;
    letter-spacing: -2px;
  }

  .fulfillment-options,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .choice > span {
    min-height: 68px;
  }

  .auth-tabs {
    margin-top: 25px;
  }

  .auth-form {
    padding: 20px 16px;
  }

  .account-dashboard-head {
    gap: 18px;
  }

  .account-head-actions {
    width: 100%;
  }

  .refresh-orders,
  .sign-out-button {
    flex: 1;
    justify-content: center;
  }

  .saved-order {
    padding: 16px;
  }

  .saved-order-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .saved-order-actions button {
    width: 100%;
  }

  .orders-loading,
  .orders-empty {
    min-height: 280px;
  }

  .toast {
    width: calc(100% - 24px);
    justify-content: flex-start;
  }

  .toast button {
    margin-left: auto;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 40px;
  }

  .hero {
    height: 730px;
  }

  .item-media {
    min-height: 220px;
  }

  .brand {
    width: 49px;
    min-width: 49px;
  }

  .brand-logo {
    width: 49px;
    height: 54px;
  }

  .menu-toggle {
    width: 39px;
    height: 39px;
  }

  .account-button,
  .cart-button {
    min-height: 38px;
  }

  .account-button {
    padding-inline: 8px;
  }
}

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

  .hero-photo,
  .marquee-track,
  .spinner {
    animation: none;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}