@import url("https://fonts.googleapis.com/css2?family=Bellefair&family=Julee&family=Roboto:wght@400;500&display=swap");

[x-cloak] {
  display: none !important;
}

:root {
  --red: #dc0000;
  --red-dark: #a60000;
  --gold: #d1b575;
  --ink: #131313;
  --ink-soft: #1d1c1b;
  --paper: #fbfaf7;
  --cream: #f2eee7;
  --gray: #6c6c6c;
  --line: #d7d0c5;
  --white: #ffffff;
  --font-heading: "Bellefair", Georgia, serif;
  --font-display: "Julee", "Segoe Print", cursive;
  --font-ui: "Roboto", Arial, sans-serif;
  --shell: min(1140px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

button,
input {
  font: inherit;
}

button,
a,
input,
select,
[role="button"] {
  touch-action: manipulation;
}

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

button {
  color: inherit;
}

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

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

p,
h1,
h2,
h3,
blockquote,
figure,
dl,
dd {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section-pad {
  padding: 128px 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 12px 20px;
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.utility-bar {
  position: relative;
  z-index: 60;
  background: #080808;
  color: #d7d3cb;
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.utility-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.utility-inner p span {
  color: var(--red);
  font-size: 7px;
  margin-right: 8px;
  vertical-align: 2px;
}

.utility-inner div {
  display: flex;
  align-items: center;
  gap: 26px;
}

.utility-inner a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  color: var(--gold);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 82px;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(19, 19, 19, 0.12);
  backdrop-filter: blur(16px);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  display: block;
  width: clamp(205px, 19vw, 255px);
  height: 72px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.brand-mark {
  width: 49px;
  height: 49px;
  display: grid;
  place-items: center;
  background: var(--red);
  border-radius: 50px 75px 50px 75px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1;
  transform: rotate(-4deg);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-family: var(--font-heading);
  font-size: 29px;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.brand-copy small {
  margin-top: 3px;
  color: var(--red);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.7vw, 40px);
  margin-left: auto;
}

.main-nav > a {
  position: relative;
  padding: 29px 0 25px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.045em;
}

.main-nav > a:not(.nav-order)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.main-nav > a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.main-nav .nav-order {
  margin-left: 4px;
  padding: 12px 17px;
  background: var(--ink);
  color: var(--white);
  transition: background 0.3s ease, transform 0.3s ease;
}

.main-nav .nav-order:hover {
  background: var(--red);
  transform: translateY(-3px);
}

.cart-trigger {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 44px;
  min-height: 44px;
  margin-left: 16px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.cart-trigger span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.cart-trigger b {
  min-width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: calc(100svh - 116px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 43%;
  background: var(--red);
  opacity: 0.08;
}

.hero-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to right, black, transparent 78%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.92fr);
  align-items: center;
  gap: clamp(48px, 7vw, 112px);
  padding-block: 74px 92px;
}

.eyebrow {
  color: var(--red);
  font-family: var(--font-heading);
  font-size: 18px;
  letter-spacing: 0.1em;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 1px;
  margin: 0 12px 5px 0;
  background: currentColor;
}

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

.hero h1,
.story-copy h2,
.section-heading h2,
.menu-intro h2 {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 700px;
  margin-top: 22px;
  font-size: clamp(64px, 7.4vw, 108px);
  line-height: 0.82;
}

h1 em,
h2 em {
  color: var(--red);
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
}

.hero h1 em {
  display: inline-block;
  margin-left: 9%;
  color: var(--gold);
  font-size: 0.82em;
  transform: rotate(-2deg);
}

.hero-lede {
  max-width: 580px;
  margin-top: 34px;
  color: #c7c1b7;
  font-family: var(--font-heading);
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 38px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 14px 25px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.button:hover {
  transform: translateY(-5px);
}

.button-primary {
  background: var(--red);
  color: var(--white);
}

.button-primary:hover {
  background: var(--red-dark);
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.button-outline:hover {
  border-color: var(--red);
  background: var(--red);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding-block: 7px;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: color 0.25s ease, gap 0.25s ease;
}

.text-link:hover {
  gap: 24px;
  color: var(--red);
}

.text-link.light {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 50px;
}

.stars {
  color: #fcb900;
  font-size: 13px;
  letter-spacing: 0.15em;
}

.hero-proof p {
  color: #9d9890;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-proof strong {
  color: var(--white);
}

.hero-visual {
  position: relative;
  min-height: 555px;
}

.hero-image-frame {
  position: absolute;
  inset: 22px 18px 30px 40px;
  z-index: 2;
  overflow: hidden;
  border: 7px solid var(--white);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.35);
  transform: rotate(2.5deg);
}

.hero-image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, transparent 48%, rgba(0, 0, 0, 0.38));
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.09);
}

.red-disc {
  position: absolute;
  top: -8px;
  right: -25px;
  z-index: 4;
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 43px;
  box-shadow: 0 0 0 10px rgba(220, 0, 0, 0.16);
}

.dish-note {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 17px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.26);
}

.dish-note span {
  color: var(--red);
  font-family: var(--font-display);
  font-size: 25px;
}

.dish-note p {
  font-family: var(--font-heading);
  font-size: 15px;
  line-height: 1.15;
}

.note-top {
  top: 93px;
  left: -8px;
}

.note-bottom {
  right: -6px;
  bottom: 0;
}

.scroll-cue {
  position: absolute;
  right: 26px;
  bottom: 20px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 15px;
  color: #a8a198;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-cue i {
  color: var(--red);
  font-style: normal;
  font-size: 18px;
}

.services {
  position: relative;
  z-index: 3;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

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

.services article {
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 21px;
  padding: 25px 35px;
  border-right: 1px solid var(--line);
}

.services article:first-child {
  border-left: 1px solid var(--line);
}

.service-icon {
  flex: 0 0 62px;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50px 75px 50px 75px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 26px;
}

.services h2 {
  font-family: var(--font-heading);
  font-size: 25px;
  font-weight: 400;
  line-height: 1.2;
}

.services p {
  margin-top: 4px;
  color: var(--gray);
  font-size: 12px;
}

.story-section {
  overflow: hidden;
  background: var(--paper);
}

.story-grid {
  display: grid;
  grid-template-columns: 1.03fr 0.83fr;
  align-items: center;
  gap: clamp(70px, 9vw, 140px);
}

.story-collage {
  position: relative;
  min-height: 615px;
}

.story-image {
  position: absolute;
  overflow: hidden;
  border: 7px solid var(--white);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.story-image:hover img {
  transform: scale(1.06);
}

.story-main {
  inset: 0 95px 70px 0;
  transform: rotate(-2deg);
}

.story-small {
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 46%;
  height: 290px;
  transform: rotate(3deg);
}

.year-stamp {
  position: absolute;
  top: 30px;
  right: 16px;
  z-index: 4;
  width: 124px;
  height: 124px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50px 75px 50px 75px;
  background: var(--red);
  color: var(--white);
  text-align: center;
  transform: rotate(5deg);
}

.year-stamp strong {
  font-family: var(--font-display);
  font-size: 37px;
  font-weight: 400;
  line-height: 1;
}

.year-stamp span {
  margin-top: 6px;
  font-size: 8px;
  letter-spacing: 0.13em;
  line-height: 1.45;
  text-transform: uppercase;
}

.story-copy h2,
.section-heading h2,
.menu-intro h2 {
  font-size: clamp(49px, 5vw, 70px);
  line-height: 0.97;
}

.story-copy h2 {
  margin-top: 18px;
}

.divider {
  width: 115px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 27px 0;
  color: var(--red);
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 2px;
  background: currentColor;
}

.divider span {
  font-size: 9px;
}

.story-copy > p:not(.eyebrow) {
  color: var(--gray);
  font-size: 14px;
}

.story-copy .large-copy {
  margin-bottom: 15px;
  color: var(--ink) !important;
  font-family: var(--font-heading);
  font-size: 23px !important;
  line-height: 1.45;
}

.story-copy blockquote {
  margin: 27px 0;
  padding: 4px 0 4px 22px;
  border-left: 3px solid var(--red);
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 18px;
  line-height: 1.4;
}

.signatures {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.signatures::before {
  content: "味";
  position: absolute;
  top: -130px;
  right: -30px;
  color: rgba(255, 255, 255, 0.022);
  font-family: var(--font-heading);
  font-size: 430px;
  line-height: 1;
}

.section-heading,
.menu-intro {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 58px;
}

.section-heading > p,
.menu-intro > p {
  max-width: 390px;
  padding-bottom: 5px;
  color: #aaa49b;
  font-family: var(--font-heading);
  font-size: 19px;
  line-height: 1.55;
}

.signature-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.dish-card {
  min-width: 0;
}

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

.dish-image {
  position: relative;
  height: 250px;
  overflow: hidden;
  background: #252423;
}

.dish-card.feature .dish-image {
  height: 532px;
}

.dish-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), transparent 60%);
}

.dish-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
  transition: transform 0.45s ease;
}

.dish-card:hover .dish-image img {
  transform: scale(1.06);
}

.dish-image span {
  position: absolute;
  right: 15px;
  bottom: 15px;
  z-index: 2;
  padding: 7px 10px;
  background: var(--red);
  color: var(--white);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dish-card-copy {
  position: relative;
  padding: 21px 20px 28px 54px;
  border-bottom: 1px solid #343230;
}

.dish-number {
  position: absolute;
  top: 22px;
  left: 0;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 24px;
}

.dish-card-copy h3 {
  font-family: var(--font-heading);
  font-size: 25px;
  font-weight: 400;
  line-height: 1.15;
}

.dish-card-copy > p:last-child {
  margin-top: 7px;
  color: #8f8a83;
  font-size: 12px;
  line-height: 1.55;
}

.menu-section {
  background-color: var(--cream);
  background-image: radial-gradient(rgba(19, 19, 19, 0.04) 1px, transparent 1px);
  background-size: 7px 7px;
}

.menu-intro > p {
  color: var(--gray);
}

.menu-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--ink);
}

.menu-search {
  position: relative;
  width: min(100%, 460px);
}

.menu-search > span {
  display: block;
  margin-bottom: 7px;
  color: var(--gray);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.menu-search input {
  width: 100%;
  height: 49px;
  padding: 0 48px 0 15px;
  border: 1px solid #d6cfc5;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
  outline: none;
}

.menu-search input:focus {
  border: 2px solid var(--ink);
}

.menu-search i {
  position: absolute;
  right: 16px;
  bottom: 8px;
  color: var(--red);
  font-style: normal;
  font-size: 25px;
}

.menu-toolbar > p {
  color: var(--gray);
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.category-scroll {
  display: flex;
  gap: 0;
  overflow-x: auto;
  margin: 22px 0 54px;
  border-bottom: 1px solid #c9c2b8;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}

.category-scroll::-webkit-scrollbar {
  height: 3px;
}

.category-scroll::-webkit-scrollbar-thumb {
  background: var(--line);
}

.category-scroll button {
  flex: 0 0 auto;
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 10px 17px;
  border: 0;
  border-bottom: 3px solid transparent;
  background: transparent;
  color: #716d68;
  cursor: pointer;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.035em;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.category-scroll button:hover,
.category-scroll button.active {
  border-color: var(--red);
  color: var(--ink);
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 72px;
}

.menu-item {
  min-height: 117px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 22px 0;
  border-top: 1px dashed #857f77;
}

.menu-item-main {
  min-width: 0;
  flex: 1;
}

.menu-item-title {
  display: flex;
  align-items: baseline;
  gap: 9px;
}

.menu-item h3 {
  flex: 0 1 auto;
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 400;
  line-height: 1.12;
}

.dot-rule {
  min-width: 12px;
  flex: 1;
  border-bottom: 1px dotted #aaa39a;
}

.menu-item strong {
  color: var(--red);
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 400;
  white-space: nowrap;
}

.menu-item-main > p {
  max-width: 430px;
  margin-top: 6px;
  color: var(--gray);
  font-size: 11px;
  line-height: 1.5;
}

.menu-item > button {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid #b9b1a6;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 23px;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.menu-item > button:hover {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
  transform: translateY(-3px);
}

.menu-item > button:active {
  transform: scale(0.92);
}

.menu-item.is-lunch-only .menu-item-title h3::after {
  content: "Lunch hours";
  margin-left: 9px;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--red);
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  vertical-align: middle;
}

.lunch-notice {
  margin-bottom: 28px;
  padding: 16px 20px;
  border: 1px dashed var(--red);
  background: var(--cream);
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.5;
}

.show-more,
.empty-menu button,
.empty-cart button,
.clear-cart {
  display: block;
  margin: 42px auto 0;
  padding: 11px 2px;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.show-more span {
  margin-left: 12px;
  color: var(--red);
}

.menu-note {
  margin-top: 50px;
  color: #8a857d;
  font-size: 10px;
  text-align: center;
}

.lunch-group {
  margin-bottom: 54px;
}

.lunch-group:last-of-type {
  margin-bottom: 0;
}

.lunch-group > h3 {
  margin-bottom: 24px;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
}

/* Server-rendered full menu (no-JS / crawler view). Alpine removes this
   container on init and renders the interactive version in .menu-list. */
.menu-list-static {
  margin-top: 10px;
}

.menu-group-static {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 72px;
  margin-bottom: 54px;
}

.menu-group-static:last-of-type {
  margin-bottom: 0;
}

.menu-group-static-heading {
  grid-column: 1 / -1;
  margin-bottom: 8px;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  color: var(--red);
}

.empty-menu {
  grid-column: 1 / -1;
  padding: 55px 0;
  border-top: 1px dashed #857f77;
  text-align: center;
}

.empty-menu h3,
.empty-cart h3 {
  font-family: var(--font-heading);
  font-size: 29px;
  font-weight: 400;
}

.empty-menu p,
.empty-cart p {
  margin-top: 8px;
  color: var(--gray);
  font-size: 12px;
}

.review-section {
  position: relative;
  overflow: hidden;
  background: var(--red);
  color: var(--white);
}

.review-section::before {
  content: "CONCERTO";
  position: absolute;
  left: -20px;
  bottom: -75px;
  color: rgba(255, 255, 255, 0.06);
  font-family: var(--font-heading);
  font-size: clamp(120px, 18vw, 270px);
  line-height: 1;
}

.review-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(40px, 7vw, 100px);
}

.review-score {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.review-score .eyebrow {
  color: var(--white);
  font-size: 14px;
}

.review-score > strong {
  font-family: var(--font-display);
  font-size: 84px;
  font-weight: 400;
  line-height: 1;
}

.review-score > p:last-child {
  margin-top: 8px;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.review-grid blockquote {
  position: relative;
  max-width: 660px;
}

.review-grid blockquote > span {
  position: absolute;
  top: -46px;
  left: -24px;
  color: rgba(255, 255, 255, 0.2);
  font-family: var(--font-heading);
  font-size: 110px;
  line-height: 1;
}

.review-grid blockquote p {
  position: relative;
  font-family: var(--font-heading);
  font-size: clamp(26px, 3vw, 39px);
  line-height: 1.2;
}

.review-grid blockquote footer {
  margin-top: 17px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hours-location {
  --hours-surface: oklch(0.968 0.017 73);
  --hours-line: oklch(0.866 0.035 72);
  --hours-copy: oklch(0.34 0.045 47);
  padding: 75px 0 48px;
  background: var(--hours-surface);
  color: var(--ink);
}

.hours-location-shell {
  width: min(1000px, calc(100% - 48px));
  margin-inline: auto;
}

.hours-location-heading {
  margin-bottom: 53px;
  text-align: center;
}

.hours-location-heading p {
  color: var(--red-dark);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.35em;
  line-height: 1;
  text-transform: uppercase;
}

.hours-location-heading h2 {
  margin-top: 17px;
  font-family: var(--font-heading);
  font-size: clamp(38px, 4vw, 43px);
  font-weight: 400;
  letter-spacing: -0.012em;
  line-height: 1;
  text-wrap: balance;
}

.hours-location-heading > span {
  width: 56px;
  height: 2px;
  display: block;
  margin: 17px auto 0;
  background: oklch(0.72 0.18 53);
}

.hours-location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
  gap: 48px;
}

.hours-location-details h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.012em;
  line-height: 1.2;
}

.hours-table {
  width: 100%;
  margin-top: 22px;
  border-collapse: collapse;
  color: var(--hours-copy);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  line-height: 1.25;
}

.hours-table th,
.hours-table td {
  height: 42px;
  padding: 9px 0;
  border-bottom: 1px solid var(--hours-line);
  vertical-align: middle;
}

.hours-table th {
  width: 48%;
  color: var(--ink);
  font-weight: 500;
  text-align: left;
}

.hours-table td {
  text-align: left;
}

.today-dot {
  width: 7px;
  height: 7px;
  display: inline-block;
  margin-left: 8px;
  border-radius: 50%;
  background: oklch(0.69 0.18 150);
  vertical-align: 1px;
}

.hours-caveat {
  margin-top: 8px;
  color: oklch(0.43 0.055 46);
  font-family: var(--font-heading);
  font-size: 11px;
  font-style: italic;
  line-height: 1.4;
}

.hours-caveat a {
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
  transition: text-decoration-color 160ms ease;
}

.location-detail-list {
  margin-top: 31px;
}

.location-detail-row {
  min-height: 65px;
  display: grid;
  grid-template-columns: 17px minmax(0, 1fr);
  align-items: start;
  gap: 11px;
  padding: 11px 1px;
  border-bottom: 1px solid var(--hours-line);
}

.location-detail-row.is-link {
  transition: color 160ms ease, transform 160ms cubic-bezier(0.16, 1, 0.3, 1);
}

.location-detail-icon {
  color: var(--red-dark);
  line-height: 1;
}

.location-detail-icon svg {
  width: 17px;
  height: 17px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.location-detail-copy {
  min-width: 0;
  display: block;
}

.location-detail-label {
  display: block;
  margin-bottom: 2px;
  color: oklch(0.36 0.06 43);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.location-detail-copy strong,
.location-detail-copy small {
  display: block;
}

.location-detail-copy strong {
  color: var(--red-dark);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
  text-wrap: pretty;
}

.location-detail-row:first-child .location-detail-copy strong,
.location-detail-row:not(.is-link) .location-detail-copy strong {
  color: var(--ink);
}

.location-detail-copy small {
  color: var(--hours-copy);
  font-size: 11px;
  line-height: 1.4;
}

.location-map {
  height: 424px;
  overflow: hidden;
  border: 2px solid oklch(0.79 0.13 69);
  background: oklch(0.93 0.012 73);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

@media (hover: hover) {
  .hours-caveat a:hover {
    text-decoration-color: currentColor;
  }

  .location-detail-row.is-link:hover {
    color: var(--red-dark);
    transform: translateX(3px);
  }
}

.footer {
  background: #090909;
  color: #a39e97;
}

.footer-grid {
  min-height: 170px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 35px;
}

.footer-brand .brand-copy strong {
  color: var(--white);
}

.footer-brand .brand-logo {
  width: 250px;
  height: 98px;
  filter: grayscale(1) invert(1);
  mix-blend-mode: screen;
}

.footer-grid > p {
  font-family: var(--font-heading);
  font-size: 15px;
  letter-spacing: 0.04em;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 25px;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.footer-bottom {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #282624;
  color: #5c5955;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 79;
  background: rgba(0, 0, 0, 0.64);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  width: min(450px, 100vw);
  display: flex;
  flex-direction: column;
  background: var(--paper);
  box-shadow: -20px 0 80px rgba(0, 0, 0, 0.25);
  transform: translateX(105%);
  transition: transform 0.38s ease;
  overscroll-behavior: contain;
  padding-top: env(safe-area-inset-top);
}

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

.cart-head {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 30px;
  border-bottom: 1px solid var(--line);
}

.cart-head .eyebrow {
  font-size: 13px;
}

.cart-head h2 {
  font-family: var(--font-heading);
  font-size: 35px;
  font-weight: 400;
  line-height: 1;
}

.cart-head > button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 29px;
}

.cart-body {
  min-height: 0;
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 0 30px;
}

.empty-cart {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 70px 25px;
  text-align: center;
}

.empty-cart > span {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 50px 75px 50px 75px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 29px;
}

.empty-cart button {
  margin-top: 24px;
}

.cart-lines li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px dashed #aaa39a;
}

.cart-line-copy > span {
  color: var(--red);
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cart-line-copy h3 {
  margin-top: 2px;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
}

.cart-line-copy p {
  margin-top: 5px;
  color: var(--gray);
  font-size: 11px;
}

.quantity-control {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
}

.quantity-control button,
.quantity-control span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
}

.quantity-control button {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 17px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.quantity-control button:hover {
  background: var(--ink);
  color: var(--white);
}

.quantity-control button:active {
  transform: scale(0.9);
}

.quantity-control span {
  border-inline: 1px solid var(--line);
  font-size: 11px;
}

.cart-footer {
  padding: 25px 30px calc(30px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: var(--white);
}

.cart-footer > div {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-size: 20px;
}

.cart-footer > div strong {
  color: var(--red);
  font-weight: 400;
}

.cart-footer > p {
  margin: 5px 0 18px;
  color: var(--gray);
  font-size: 9px;
}

.cart-footer .button {
  width: 100%;
}

.clear-cart {
  margin-top: 15px;
  color: var(--gray);
}

.modifier-backdrop {
  position: fixed;
  inset: 0;
  z-index: 81;
  background: rgba(0, 0, 0, 0.64);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.modifier-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 82;
  width: min(450px, 100vw);
  display: flex;
  flex-direction: column;
  background: var(--paper);
  box-shadow: -20px 0 80px rgba(0, 0, 0, 0.25);
  transform: translateX(105%);
  transition: transform 0.38s ease;
  overscroll-behavior: contain;
  padding-top: env(safe-area-inset-top);
}

.modifier-drawer.is-open {
  transform: translateX(0);
}

.modifier-head {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 30px;
  border-bottom: 1px solid var(--line);
}

.modifier-head .eyebrow {
  font-size: 13px;
}

.modifier-head h2 {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
}

.modifier-head > button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 29px;
}

.modifier-body {
  min-height: 0;
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 0 30px;
}

.modifier-group {
  padding: 24px 0;
  border-bottom: 1px dashed #aaa39a;
}

.modifier-group-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.modifier-group-head h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
}

.modifier-required {
  flex: 0 0 auto;
  color: var(--red);
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.modifier-options {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modifier-options label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.modifier-options label.is-active {
  border-color: var(--red);
  background: var(--white);
}

.modifier-options input[type="radio"],
.modifier-options input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin: 0;
  accent-color: var(--red);
  cursor: pointer;
}

.modifier-option-copy {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.modifier-option-name {
  font-size: 13px;
}

.modifier-option-delta {
  flex: 0 0 auto;
  color: var(--gray);
  font-size: 11px;
}

.modifier-footer {
  padding: 25px 30px calc(30px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: var(--white);
}

.modifier-footer > div {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-size: 20px;
}

.modifier-footer > div strong {
  color: var(--red);
  font-weight: 400;
}

.modifier-footer .button {
  margin-top: 15px;
  width: 100%;
}

@media (max-width: 1060px) {
  .main-nav {
    gap: 20px;
  }

  .main-nav > a {
    font-size: 12px;
  }

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

  .hero-visual {
    min-height: 480px;
  }

  .story-grid {
    gap: 60px;
  }

  .story-collage {
    min-height: 540px;
  }

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

  .dish-card.feature {
    grid-row: span 1;
  }

  .dish-card.feature .dish-image {
    height: 250px;
  }

  .review-grid {
    grid-template-columns: 150px 1fr;
  }

  .review-grid .button {
    grid-column: 2;
    justify-self: start;
  }

}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 34px, 720px);
  }

  .section-pad {
    padding: 84px 0;
  }

  .utility-inner > p {
    display: none;
  }

  .utility-inner {
    justify-content: center;
  }

  .utility-inner div {
    width: 100%;
    justify-content: space-between;
  }

  .site-header {
    height: 73px;
  }

  .brand-mark {
    width: 43px;
    height: 43px;
    font-size: 27px;
  }

  .brand-logo {
    width: 190px;
    height: 62px;
  }

  .brand-copy strong {
    font-size: 25px;
  }

  .nav-toggle {
    position: relative;
    z-index: 56;
    width: 44px;
    height: 44px;
    display: block;
    margin-left: auto;
    border: 0;
    background: var(--ink);
    cursor: pointer;
  }

  .nav-toggle span {
    position: absolute;
    left: 12px;
    width: 19px;
    height: 1px;
    background: var(--white);
    transition: transform 0.25s ease, top 0.25s ease;
  }

  .nav-toggle span:first-child {
    top: 17px;
  }

  .nav-toggle span:last-child {
    top: 25px;
  }

  .nav-toggle[aria-expanded="true"] span:first-child {
    top: 21px;
    transform: rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:last-child {
    top: 21px;
    transform: rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    top: 107px;
    right: 0;
    left: 0;
    height: calc(100dvh - 107px);
    z-index: 55;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    margin: 0;
    padding: 45px 28px calc(45px + env(safe-area-inset-bottom));
    background: var(--ink);
    color: var(--white);
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateY(-12px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav > a,
  .main-nav .nav-order {
    width: 100%;
    margin: 0;
    padding: 15px 5px;
    border-bottom: 1px solid #33312f;
    background: transparent;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 400;
  }

  .main-nav > a::after {
    display: none;
  }

  .main-nav .nav-order {
    margin-top: 25px;
    padding: 15px 20px;
    background: var(--red);
    font-family: var(--font-ui);
    font-size: 12px;
    text-align: center;
    text-transform: uppercase;
  }

  .cart-trigger {
    margin-left: 11px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 55px;
    padding-block: 75px 90px;
  }

  .hero h1 {
    font-size: clamp(57px, 14vw, 86px);
  }

  .hero h1 em {
    margin-left: 2%;
  }

  .hero-visual {
    min-height: 560px;
  }

  .hero-image-frame {
    inset: 25px 30px 25px 30px;
  }

  .red-disc {
    right: 0;
  }

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

  .services article,
  .services article:first-child {
    min-height: 115px;
    justify-content: flex-start;
    padding-inline: 25px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 75px;
  }

  .story-collage {
    min-height: 600px;
  }

  .section-heading,
  .menu-intro {
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
  }

  .section-heading > p,
  .menu-intro > p {
    max-width: 580px;
  }

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

  .review-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .review-grid .button {
    grid-column: auto;
  }

  .hours-location {
    padding-block: 68px;
  }

  .hours-location-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .location-map {
    height: 390px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    padding-block: 35px;
  }

  .footer-grid > p {
    display: none;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100vw - 28px);
  }

  .section-pad {
    padding: 68px 0;
  }

  .utility-inner div {
    gap: 10px;
    font-size: 9px;
  }

  .brand-copy small {
    font-size: 7px;
  }

  .cart-trigger b {
    min-width: 27px;
    height: 27px;
  }

  .hero-grid {
    padding-top: 62px;
    gap: 38px;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 56px);
    line-height: 0.9;
  }

  .hero-lede {
    margin-top: 26px;
    font-size: 18px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 17px;
  }

  .text-link {
    align-self: flex-start;
  }

  .hero-proof {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    margin-top: 38px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero-image-frame {
    inset: 20px 14px 25px 14px;
    border-width: 5px;
  }

  .red-disc {
    width: 75px;
    height: 75px;
    font-size: 30px;
  }

  .dish-note {
    padding: 10px 12px;
  }

  .note-top {
    top: 54px;
    left: -3px;
  }

  .note-bottom {
    right: 0;
  }

  .scroll-cue {
    display: none;
  }

  .story-collage {
    min-height: 420px;
  }

  .story-main {
    right: 45px;
    bottom: 50px;
  }

  .story-small {
    width: 48%;
    height: 180px;
  }

  .year-stamp {
    top: 12px;
    right: 1px;
    width: 93px;
    height: 93px;
  }

  .year-stamp strong {
    font-size: 29px;
  }

  .story-copy h2,
  .section-heading h2,
  .menu-intro h2 {
    font-size: 45px;
  }

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

  .dish-image,
  .dish-card.feature .dish-image {
    height: 310px;
  }

  .menu-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .menu-toolbar > p {
    align-self: flex-end;
  }

  .category-scroll {
    margin-bottom: 35px;
  }

  .category-scroll button {
    padding-inline: 13px;
  }

  .menu-item {
    min-height: 110px;
  }

  .menu-item h3 {
    font-size: 19px;
  }

  .review-score > strong {
    font-size: 68px;
  }

  .hours-location {
    padding: 58px 0 46px;
  }

  .hours-location-shell {
    width: calc(100% - 28px);
  }

  .hours-location-heading {
    margin-bottom: 44px;
  }

  .hours-location-heading h2 {
    font-size: 38px;
  }

  .hours-location-grid {
    gap: 42px;
  }

  .hours-table {
    font-size: 12px;
  }

  .hours-table th {
    width: 45%;
  }

  .location-map {
    height: 310px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-links {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    padding-block: 14px;
  }

  .cart-head,
  .cart-body,
  .cart-footer,
  .modifier-head,
  .modifier-body,
  .modifier-footer {
    padding-right: 20px;
    padding-left: 20px;
  }
}

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

/* Online checkout */
.checkout-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 92% 8%, rgba(209, 181, 117, 0.22), transparent 24rem),
    var(--cream);
}

.checkout-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  padding: 14px max(24px, calc((100vw - 1320px) / 2));
  border-bottom: 1px solid rgba(19, 19, 19, 0.14);
  background: rgba(251, 250, 247, 0.94);
  backdrop-filter: blur(16px);
}

.checkout-brand {
  display: inline-flex;
  align-items: center;
}

.checkout-brand .brand-logo {
  width: 245px;
  height: 68px;
}

.checkout-back {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 4px;
  border-bottom: 1px solid transparent;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.checkout-back:hover {
  border-color: var(--red);
  color: var(--red);
}

.checkout-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 450px);
  gap: clamp(40px, 6vw, 92px);
  width: min(1320px, calc(100% - 48px));
  margin-inline: auto;
  padding: 72px 0 110px;
}

.checkout-main {
  min-width: 0;
}

.checkout-intro {
  max-width: 720px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.checkout-intro h1 {
  margin-top: 14px;
  font-family: var(--font-heading);
  font-size: clamp(52px, 6vw, 86px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.88;
}

.checkout-intro h1 em {
  color: var(--red);
  font-family: var(--font-display);
  font-weight: 400;
}

.checkout-intro > p:last-child {
  max-width: 610px;
  margin-top: 28px;
  color: var(--gray);
}

.checkout-form {
  display: grid;
}

.checkout-section {
  margin: 0;
  padding: 50px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
}

.checkout-section legend {
  display: flex;
  align-items: center;
  gap: 13px;
  width: 100%;
  margin-bottom: 27px;
  font-family: var(--font-heading);
  font-size: 28px;
  line-height: 1;
}

.checkout-section legend > span {
  color: var(--red);
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
}

.fulfillment-options,
.schedule-options,
.tip-options {
  display: grid;
  gap: 12px;
}

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

.fulfillment-options button {
  min-height: 112px;
  padding: 22px;
  border: 1px solid #beb5a8;
  background: rgba(255, 255, 255, 0.48);
  text-align: left;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.fulfillment-options button:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}

.fulfillment-options button.is-active {
  border-color: var(--red);
  background: var(--white);
  box-shadow: inset 4px 0 var(--red);
}

.fulfillment-options strong,
.fulfillment-options span {
  display: block;
}

.fulfillment-options strong {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 400;
}

.fulfillment-options span {
  margin-top: 4px;
  color: var(--gray);
  font-size: 12px;
}

.pickup-note,
.payment-note {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
  padding: 18px 20px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.52);
}

.pickup-note > span,
.payment-note > span {
  display: grid;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--red);
  font-family: var(--font-heading);
  font-size: 20px;
}

.pickup-note strong,
.pickup-note small,
.payment-note strong,
.payment-note small {
  display: block;
}

.pickup-note strong,
.payment-note strong {
  font-size: 13px;
  font-weight: 500;
}

.pickup-note small,
.payment-note small {
  margin-top: 2px;
  color: var(--gray);
  font-size: 11px;
}

.delivery-fields {
  margin-top: 24px;
  padding: 25px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.45);
}

.delivery-status {
  margin-top: 16px;
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 500;
}

.field-grid {
  display: grid;
  gap: 18px;
}

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

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

.form-field {
  display: grid;
  gap: 8px;
}

.form-field > span:first-child {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-field > span small {
  color: var(--gray);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid #b9b1a6;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-field input {
  min-height: 52px;
  padding: 0 15px;
}

.form-field textarea {
  min-height: 120px;
  padding: 14px 15px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--red);
  background: var(--white);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(220, 0, 0, 0.08);
}

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

.schedule-options label {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 86px;
  padding: 16px 18px;
  border: 1px solid #beb5a8;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.schedule-options label.is-active {
  border-color: var(--red);
  background: var(--white);
}

.schedule-options input {
  width: 18px;
  height: 18px;
  accent-color: var(--red);
}

.schedule-options strong,
.schedule-options small {
  display: block;
}

.schedule-options strong {
  font-size: 13px;
}

.schedule-options small {
  margin-top: 2px;
  color: var(--gray);
  font-size: 11px;
}

.schedule-field,
.custom-tip {
  max-width: 390px;
  margin-top: 18px;
}

.tip-options {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tip-options button {
  min-height: 52px;
  border: 1px solid #beb5a8;
  background: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  font-weight: 500;
}

.tip-options button:hover,
.tip-options button.is-active {
  border-color: var(--red);
  background: var(--white);
  color: var(--red);
}

.money-input {
  position: relative;
  display: block;
}

.money-input b {
  position: absolute;
  top: 50%;
  left: 15px;
  z-index: 1;
  color: var(--gray);
  transform: translateY(-50%);
}

.money-input input {
  padding-left: 32px;
}

.checkout-error {
  margin-top: 24px;
  padding: 16px 18px;
  border: 1px solid rgba(166, 0, 0, 0.35);
  border-left: 4px solid var(--red);
  background: rgba(255, 255, 255, 0.68);
  color: var(--red-dark);
  font-size: 13px;
  font-weight: 500;
}

.checkout-security {
  min-height: 70px;
  padding-top: 22px;
}

.checkout-summary {
  min-width: 0;
}

.summary-card {
  position: sticky;
  top: 118px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 18px 22px 0 rgba(209, 181, 117, 0.18);
}

.summary-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding: 27px 28px 22px;
  border-bottom: 1px solid var(--line);
}

.summary-heading h2 {
  margin-top: 3px;
  font-family: var(--font-heading);
  font-size: 31px;
  font-weight: 400;
}

.summary-heading > a {
  color: var(--red);
  border-bottom: 1px solid currentColor;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.summary-lines {
  max-height: 360px;
  overflow-y: auto;
  padding: 0 28px;
  overscroll-behavior: contain;
}

.summary-lines li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px dashed #b8afa3;
}

.summary-lines li > div:first-child {
  min-width: 0;
}

.summary-lines li > div:first-child span,
.summary-lines li > div:first-child strong,
.summary-lines li > div:first-child small {
  display: block;
}

.summary-lines li > div:first-child span {
  color: var(--red);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.summary-lines li > div:first-child strong {
  overflow: hidden;
  margin-top: 3px;
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.summary-lines li > div:first-child small {
  margin-top: 5px;
  color: var(--gray);
}

.summary-quantity {
  display: grid;
  flex: 0 0 auto;
  grid-template-columns: 38px 30px 38px;
  align-items: center;
  border: 1px solid var(--line);
}

.summary-quantity button,
.summary-quantity span {
  display: grid;
  height: 38px;
  place-items: center;
}

.summary-quantity button {
  border: 0;
  background: transparent;
}

.summary-quantity button:hover {
  background: var(--ink);
  color: var(--white);
}

.summary-quantity span {
  border-inline: 1px solid var(--line);
  font-size: 11px;
}

.summary-totals {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 24px 28px 0;
}

.summary-totals > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--gray);
  font-size: 12px;
}

.summary-totals dd {
  color: var(--ink);
  font-weight: 500;
}

.summary-totals .summary-total {
  align-items: baseline;
  margin-top: 6px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 22px;
}

.summary-totals .summary-total dd {
  color: var(--red);
  font-size: 28px;
  font-weight: 400;
}

.submit-order {
  width: calc(100% - 56px);
  margin: 25px 28px 0;
  border-radius: 0;
}

.submit-order:disabled {
  cursor: wait;
  opacity: 0.65;
}

.summary-fineprint {
  padding: 14px 28px 27px;
  color: var(--gray);
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
}

.checkout-empty {
  display: grid;
  max-width: 610px;
  justify-items: start;
  padding: 62px 0;
}

.checkout-empty > span {
  color: var(--red);
  font-family: var(--font-heading);
  font-size: 54px;
}

.checkout-empty h2 {
  margin-top: 12px;
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 400;
}

.checkout-empty p {
  margin-top: 8px;
  color: var(--gray);
}

.checkout-empty .button {
  width: auto;
  margin-top: 25px;
}

.checkout-confirmation {
  width: min(760px, calc(100% - 48px));
  margin-inline: auto;
  padding: 88px 0 120px;
  text-align: center;
}

.confirmation-mark {
  display: grid;
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  place-items: center;
  border: 1px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  font-family: var(--font-heading);
  font-size: 35px;
}

.checkout-confirmation h1 {
  margin-top: 10px;
  font-family: var(--font-heading);
  font-size: clamp(48px, 7vw, 78px);
  font-weight: 400;
  line-height: 0.95;
}

.confirmation-lede {
  margin-top: 24px;
  color: var(--gray);
  font-size: 18px;
}

.confirmation-lede strong {
  color: var(--red);
  letter-spacing: 0.06em;
}

.confirmation-card {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 42px 0 24px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 14px 16px 0 rgba(209, 181, 117, 0.18);
}

.confirmation-card > div {
  padding: 24px 18px;
}

.confirmation-card > div + div {
  border-left: 1px solid var(--line);
}

.confirmation-card span,
.confirmation-card strong {
  display: block;
}

.confirmation-card span {
  color: var(--gray);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.confirmation-card strong {
  margin-top: 7px;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
}

.checkout-confirmation > p:not(.eyebrow):not(.confirmation-lede) {
  color: var(--gray);
}

.confirmation-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 34px;
}

.confirmation-actions .button {
  width: auto;
}

@media (max-width: 980px) {
  .checkout-shell {
    grid-template-columns: 1fr;
    width: min(760px, calc(100% - 40px));
    padding-top: 52px;
  }

  .checkout-summary {
    grid-row: 1;
  }

  .summary-card {
    position: static;
    box-shadow: 12px 14px 0 rgba(209, 181, 117, 0.18);
  }

  .summary-lines {
    max-height: 280px;
  }
}

@media (max-width: 620px) {
  .checkout-header {
    min-height: 74px;
    padding: 10px 16px;
  }

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

  .checkout-back {
    font-size: 10px;
  }

  .checkout-shell {
    width: calc(100% - 28px);
    gap: 52px;
    padding: 34px 0 78px;
  }

  .checkout-intro {
    padding-bottom: 36px;
  }

  .checkout-intro h1 {
    font-size: 51px;
  }

  .checkout-section {
    padding: 40px 0;
  }

  .checkout-section legend {
    font-size: 24px;
  }

  .fulfillment-options,
  .schedule-options,
  .field-grid-two {
    grid-template-columns: 1fr;
  }

  .field-wide {
    grid-column: auto;
  }

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

  .delivery-fields {
    padding: 18px;
  }

  .summary-heading,
  .summary-lines,
  .summary-totals {
    padding-right: 20px;
    padding-left: 20px;
  }

  .summary-lines li {
    align-items: flex-start;
    flex-direction: column;
  }

  .submit-order {
    width: calc(100% - 40px);
    margin-right: 20px;
    margin-left: 20px;
  }

  .confirmation-card {
    grid-template-columns: 1fr;
  }

  .confirmation-card > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

/* Blog */

.blog-index {
  padding: 96px 0 120px;
}

.blog-index-heading {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}

.blog-index-heading h1 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 48px);
  margin: 8px 0 12px;
}

.blog-index-heading p:last-child {
  color: var(--gray);
}

.blog-index-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.blog-card {
  display: block;
  color: inherit;
  text-decoration: none;
  border: 1px solid var(--line);
  background: var(--white);
}

.blog-card:hover .blog-card-image {
  transform: scale(1.04);
}

.blog-card-image {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.blog-card-body {
  padding: 20px 24px 28px;
}

.blog-card-date {
  color: var(--red);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.blog-card-body h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 10px;
}

.blog-card-body > p:last-child {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.6;
}

.blog-post {
  max-width: 720px;
  padding: 64px 0 96px;
}

.blog-post-breadcrumb {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 24px;
}

.blog-post-breadcrumb a {
  color: var(--gray);
}

.blog-post-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  margin: 4px 0 24px;
  line-height: 1.15;
}

.blog-post-cover {
  width: 100%;
  height: 360px;
  object-fit: cover;
  margin-bottom: 32px;
}

.blog-post-content {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink);
}

.blog-post-content h2 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 400;
  margin: 40px 0 12px;
}

.blog-post-content p {
  margin: 0 0 20px;
}

.blog-post-content a {
  color: var(--red);
}

.blog-post > .button {
  margin-top: 24px;
}

@media (max-width: 720px) {
  .blog-post-cover {
    height: 220px;
  }
}
