:root {
  --ink: #181512;
  --muted: #736b60;
  --paper: #fbfaf7;
  --porcelain: #ffffff;
  --line: #e7dfd3;
  --olive: #526142;
  --clay: #b75f36;
  --gold: #b78a35;
  --shadow: 0 18px 50px rgba(31, 24, 16, .12);
}

.qr-home {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
}

.qr-card {
  width: min(420px, 100%);
  padding: 34px 34px 28px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;
  background: rgba(255, 255, 255, .84);
  box-shadow: var(--shadow);
}

.qr-card .logo {
  margin: 0 auto 18px;
}

.logo-large {
  width: min(280px, 78vw);
  height: auto;
}

.qr-card h1 {
  margin: 0 0 10px;
  font-size: clamp(34px, 9vw, 48px);
}

.qr-card p {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.55;
}

.qr-actions {
  display: grid;
  gap: 12px;
}

.qr-button {
  position: relative;
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  overflow: visible;
  padding: 14px 62px 14px 18px;
  border: 1px solid rgba(24, 21, 18, .12);
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 850;
  background: transparent;
  box-shadow: 0 12px 28px rgba(24, 21, 18, .14);
  transition: background .22s ease, transform .22s ease, box-shadow .22s ease;
}

.button-label {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.qr-button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 8px;
  background: var(--ink);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transition: background .22s ease, clip-path .46s cubic-bezier(.2, .72, .22, 1);
}

.cutlery-icon {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  top: 50%;
  right: -18px;
  display: flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(248, 234, 209, .34);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, .24), transparent 34%),
    linear-gradient(135deg, rgba(183, 138, 53, .92), rgba(82, 97, 66, .96));
  box-shadow: 0 14px 30px rgba(24, 21, 18, .24);
  opacity: 0;
  transform: translate(22px, -50%) rotate(-16deg) scale(.7);
  transition: opacity .26s ease, transform .26s cubic-bezier(.2, .9, .25, 1.35);
}

.fork-shape {
  position: relative;
  width: 14px;
  height: 32px;
}

.fork-shape::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1px;
  width: 3px;
  height: 13px;
  border-radius: 999px;
  background: #fff7e8;
  box-shadow:
    5px 0 0 #fff7e8,
    10px 0 0 #fff7e8;
}

.fork-shape::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 11px;
  width: 4px;
  height: 21px;
  border-radius: 999px;
  background: #fff7e8;
  box-shadow: 0 -1px 0 3px rgba(255, 247, 232, .18);
}

.knife-shape {
  position: relative;
  width: 8px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffffff 0%, #fff7e8 50%, #cdb57d 100%);
  clip-path: polygon(54% 0, 92% 5%, 100% 45%, 68% 62%, 62% 100%, 30% 100%, 30% 62%, 0 48%, 12% 14%);
}

.knife-shape::after {
  content: "";
  position: absolute;
  top: 5px;
  right: 1px;
  width: 2px;
  height: 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
}

.qr-button:hover,
.qr-button:focus-visible {
  outline: none;
  transform: translateY(-1px);
  background: transparent;
  box-shadow: 0 16px 34px rgba(24, 21, 18, .2);
}

.qr-button:hover::before,
.qr-button:focus-visible::before {
  background: var(--olive);
}

.qr-button:hover .cutlery-icon,
.qr-button:focus-visible .cutlery-icon {
  opacity: 1;
  transform: translate(0, -50%) rotate(0) scale(1);
}

.qr-button.is-cutting::before {
  background: var(--olive);
}

.qr-button.is-cut::before {
  background: var(--olive);
  clip-path: polygon(0 0, calc(100% - 34px) 0, 100% 34px, 100% 100%, 0 100%);
}

.qr-button.is-cutting .cutlery-icon,
.qr-button:active .cutlery-icon {
  opacity: 1;
  animation: refined-cut .62s cubic-bezier(.2, .72, .22, 1) both;
}

.review-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  place-items: center;
  padding: 22px;
  background: rgba(19, 15, 11, .62);
  backdrop-filter: blur(12px);
}

.review-modal.is-open {
  display: grid;
}

.review-panel {
  position: relative;
  width: min(420px, 100%);
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 8px;
  background: rgba(251, 250, 247, .96);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .28);
}

.review-panel h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1;
}

.review-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: #fff;
  font-size: 22px;
  cursor: pointer;
}

.review-actions {
  display: grid;
  gap: 10px;
}

.review-choice {
  display: grid;
  gap: 4px;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  text-decoration: none;
  background: #fff;
  box-shadow: 0 10px 28px rgba(31, 24, 16, .07);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.review-choice:hover,
.review-choice:focus-visible {
  outline: none;
  transform: translateY(-1px);
  border-color: rgba(183, 138, 53, .55);
  box-shadow: 0 16px 34px rgba(24, 21, 18, .13);
}

.review-choice span {
  font-size: 18px;
  font-weight: 900;
}

.review-choice small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

@keyframes refined-cut {
  0% {
    transform: translate(0, -50%) rotate(0) scale(1);
  }

  34% {
    transform: translate(-28px, -62%) rotate(-36deg) scale(1.08);
  }

  62% {
    transform: translate(-12px, -56%) rotate(-18deg) scale(1.04);
  }

  100% {
    transform: translate(0, -50%) rotate(0) scale(1);
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% -10%, rgba(183, 95, 54, .12), transparent 28rem),
    linear-gradient(180deg, #fffaf1 0%, var(--paper) 34%, #f3efe7 100%);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding: 20px clamp(22px, 4vw, 64px);
  background: rgba(251, 250, 247, .88);
  border-bottom: 1px solid rgba(231, 223, 211, .75);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .02em;
}

.logo {
  width: 150px;
  height: auto;
  object-fit: contain;
  display: block;
}

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

.nav-link,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 750;
  background: rgba(255, 255, 255, .68);
  box-shadow: 0 8px 22px rgba(24, 21, 18, .06);
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.nav-link::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(183, 138, 53, .13);
}

.nav-link:hover {
  transform: translateY(-1px);
  border-color: rgba(183, 138, 53, .45);
  background: #fff;
  box-shadow: 0 14px 30px rgba(24, 21, 18, .11);
}

.nav-instagram {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #181512, #b75f36);
}

.nav-instagram::before {
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, .18);
}

.nav-instagram:hover {
  border-color: transparent;
  background: linear-gradient(135deg, #211c17, #c96a3d);
}

.btn {
  color: #fff;
  border-color: transparent;
  background: var(--ink);
  box-shadow: 0 10px 26px rgba(24, 21, 18, .15);
}

.btn.secondary {
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
  box-shadow: none;
}

.landing {
  width: min(1580px, calc(100% - clamp(36px, 5vw, 88px)));
  margin: 0 auto;
  padding: clamp(42px, 7vw, 88px) 0 56px;
}

.landing-hero {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(560px, 1.28fr);
  gap: clamp(28px, 4.8vw, 76px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 8vw, 86px);
  line-height: .92;
  letter-spacing: 0;
}

.subtitle {
  max-width: 660px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.65;
}

.branch-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 30px);
}

.branch-card {
  position: relative;
  min-height: clamp(360px, 27vw, 470px);
  overflow: hidden;
  padding: clamp(26px, 2.4vw, 40px);
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  background:
    linear-gradient(180deg, rgba(20, 18, 14, .08), rgba(20, 18, 14, .84)),
    var(--branch-image, linear-gradient(135deg, #66553d, #1f271c));
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.branch-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 6px;
  pointer-events: none;
}

.branch-card span,
.branch-card strong,
.branch-card small {
  position: relative;
  z-index: 1;
}

.branch-card span {
  display: block;
  margin-bottom: clamp(170px, 15vw, 270px);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.branch-card strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 3vw, 48px);
  line-height: 1;
}

.branch-card small {
  display: block;
  max-width: min(320px, 100%);
  margin-top: 12px;
  color: rgba(255, 255, 255, .82);
  line-height: 1.5;
}

.menu-page {
  padding-bottom: 64px;
}

.branch-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: 18px;
  align-items: stretch;
  width: min(1240px, calc(100% - 36px));
  margin: 18px auto 0;
}

.branch-copy {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(26px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .64);
  box-shadow: var(--shadow);
}

.branch-copy h1 {
  margin-bottom: 10px;
  font-size: clamp(42px, 7vw, 72px);
}

.branch-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: #fff;
  font-size: 13px;
  font-weight: 800;
}

.hero-gallery {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 10px;
  min-height: 260px;
}

.hero-photo,
.product-photo,
.detail-photo {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(82, 97, 66, .12), rgba(183, 95, 54, .12)),
    var(--image, none);
  background-size: cover;
  background-position: center;
}

.hero-photo:first-child {
  grid-row: span 2;
}

.hero-photo::after,
.product-photo::after,
.detail-photo::after {
  content: none;
  position: absolute;
  inset: auto 12px 12px;
  padding: 8px 10px;
  border-radius: 6px;
  color: rgba(24, 21, 18, .72);
  background: rgba(255, 255, 255, .84);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .04em;
}

.menu-shell {
  width: min(1240px, calc(100% - 36px));
  margin: 28px auto 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin: 34px 0 16px;
}

.section-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 48px);
}

.menu-note {
  margin: -4px 0 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

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

.product-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(150px, .72fr);
  gap: 12px;
  align-items: start;
  width: 100%;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  text-align: left;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 10px 28px rgba(31, 24, 16, .07);
  cursor: pointer;
}

.product-card:hover,
.product-card:focus-visible {
  border-color: rgba(183, 138, 53, .62);
  outline: none;
  transform: translateY(-1px);
}

.product-photo {
  min-height: 0;
  aspect-ratio: 16 / 10;
  grid-row: span 2;
  margin: 4px 4px 2px;
  border-radius: 7px;
  background-size: cover;
}

.feature-heading {
  margin-top: 46px;
}

.feature-menu-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(20, 18, 14, .04), rgba(20, 18, 14, .58)),
    var(--image, none);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.feature-menu-card + .feature-menu-card {
  margin-top: 18px;
}

.feature-menu-card:hover,
.feature-menu-card:focus-visible {
  outline: none;
  transform: translateY(-1px);
  border-color: rgba(183, 138, 53, .62);
  box-shadow: 0 18px 42px rgba(31, 24, 16, .14);
}

.feature-menu-card span {
  position: absolute;
  left: 24px;
  bottom: 22px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  line-height: 1;
}

.product-main {
  align-self: start;
  padding: 8px 4px 4px;
}

.product-main h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2.4vw, 26px);
}

.product-person {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.product-card > .product-main .ingredients,
.product-card > .product-stats .calorie {
  display: none;
}

.product-card > .product-stats {
  display: flex;
}

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

.product-stats {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  align-self: end;
  padding: 4px 4px 8px;
}

.calorie {
  text-align: left;
  color: var(--olive);
  font-weight: 900;
}

.calorie span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.price {
  font-size: 24px;
  font-weight: 950;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  padding: 22px;
  background: rgba(19, 15, 11, .62);
  backdrop-filter: blur(12px);
}

.modal.is-open {
  display: grid;
  place-items: center;
}

@media (min-width: 861px) {
  .modal.is-open {
    place-items: center;
  }
}

.modal-panel {
  position: relative;
  width: min(1180px, 100%);
  max-height: min(760px, calc(100vh - 44px));
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .28);
}

.modal-menu-video {
  position: absolute;
  top: 58px;
  right: -20px;
  z-index: 1;
  width: clamp(150px, 12vw, 210px);
  aspect-ratio: 1 / 1;
  overflow: visible;
  border-radius: 0;
  pointer-events: none;
  filter: drop-shadow(0 10px 14px rgba(19, 15, 11, .18));
}

.modal-menu-video[hidden] {
  display: none;
}

.modal-menu-video img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: contrast(1.18) saturate(1.08);
}

.modal-close {
  position: absolute;
  top: -18px;
  right: -18px;
  z-index: 5;
  width: 42px;
  height: 42px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: #fff;
  font-size: 24px;
  cursor: pointer;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(520px, 1.6fr) minmax(330px, .85fr);
  gap: 30px;
  align-items: center;
  height: min(760px, calc(100vh - 44px));
  overflow: hidden;
  padding: 32px;
}

.detail-photo {
  min-height: 500px;
  max-height: calc(100vh - 108px);
  align-self: center;
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: zoom-in;
  transition: transform .22s ease, box-shadow .22s ease;
}

.detail-photo:hover,
.detail-photo:focus-visible {
  outline: none;
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(31, 24, 16, .16);
}

.detail-content {
  position: relative;
  align-self: start;
  justify-self: end;
  width: 100%;
  max-width: 470px;
  max-height: calc(100vh - 108px);
  overflow-x: hidden;
  overflow-y: auto;
  padding: 96px 2px 10px;
  padding-right: 10px;
  scrollbar-width: thin;
  scrollbar-color: rgba(183, 138, 53, .55) transparent;
}

.modal.has-menu-video .detail-content {
  padding-right: 118px;
}

.modal.has-menu-video .detail-content > .ingredients {
  margin-right: 28px;
}

.detail-content::-webkit-scrollbar {
  width: 6px;
}

.detail-content::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(183, 138, 53, .5);
}

.detail-content h2 {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4.5vw, 64px);
  line-height: 1;
}

.modal-title-person {
  display: block;
  margin-top: 6px;
  font-family: inherit;
  font-size: 1em;
  line-height: 1.1;
}

@media (min-width: 861px) {
  .modal-menu-video {
    top: -6px;
    right: 0;
    width: clamp(78px, 5.8vw, 104px);
  }

  .modal.has-menu-video .detail-content {
    padding-right: 58px;
  }

  .modal.has-menu-video .detail-content > .ingredients {
    margin-right: 0;
  }

  .modal.has-menu-video .detail-content ul {
    width: 100%;
  }

  .modal-title-person {
    margin-top: 8px;
    font-size: .58em;
    line-height: 1;
  }
}

.detail-price {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-top: 16px;
  padding: 8px 14px;
  border: 1px solid rgba(183, 138, 53, .34);
  border-radius: 999px;
  color: var(--clay);
  background: rgba(255, 255, 255, .7);
  font-size: 26px;
  font-weight: 950;
}

.detail-content ul {
  display: grid;
  gap: 0;
  margin: 22px 0 0;
  padding: 0;
  color: var(--muted);
  line-height: 1.35;
  list-style: none;
}

.modal.has-menu-video .detail-content ul {
  width: 100%;
}

.detail-content li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 11px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.detail-content li span {
  min-width: 0;
  color: var(--ink);
  font-weight: 850;
}

.detail-content li strong {
  justify-self: end;
  margin-left: auto;
  min-width: 78px;
  color: var(--olive);
  text-align: right;
  font-size: 14px;
  font-weight: 950;
}

.detail-price[hidden] {
  display: none;
}

.detail-content li strong em {
  display: block;
  margin-top: 3px;
  color: var(--clay);
  font-style: normal;
  font-size: 13px;
  font-weight: 950;
}

.detail-content li small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.photo-preview {
  position: fixed;
  inset: 18px;
  z-index: 7;
  display: none;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 8px;
  background:
    linear-gradient(rgba(19, 15, 11, .18), rgba(19, 15, 11, .18)),
    var(--preview-image, none) center / contain no-repeat,
    rgba(19, 15, 11, .88);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .42);
  cursor: zoom-out;
}

.modal.is-photo-open .photo-preview {
  display: block;
}

.footer {
  padding: 32px 18px;
  color: var(--muted);
  text-align: center;
}

@media (min-width: 861px) and (max-width: 1120px) {
  .landing {
    width: min(100% - 44px, 980px);
  }

  .landing-hero {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .branch-grid {
    gap: 18px;
  }

  .branch-card {
    min-height: 330px;
    padding: 26px;
  }

  .branch-card span {
    margin-bottom: 150px;
  }
}

@media (max-width: 860px) {
  .site-header {
    position: static;
  }

  .modal-menu-video {
    top: 28px;
    right: -8px;
    width: 112px;
  }

  .modal.has-menu-video .detail-content {
    padding-right: 76px;
  }

  .landing-hero,
  .branch-hero {
    grid-template-columns: 1fr;
  }

  .detail-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: start;
    height: auto;
    max-height: min(760px, calc(100vh - 44px));
    overflow: auto;
  }

  .branch-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .branch-card {
    min-height: 250px;
    padding: 16px;
  }

  .branch-card span {
    margin-bottom: 112px;
    font-size: 10px;
    letter-spacing: .1em;
  }

  .branch-card strong {
    font-size: 28px;
  }

  .branch-card small {
    font-size: 12px;
    line-height: 1.35;
  }

  .hero-gallery {
    min-height: 190px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-photo:first-child {
    grid-row: auto;
  }

  .product-card {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .product-photo {
    grid-row: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .feature-menu-card {
    min-height: 260px;
  }

  .product-stats {
    flex-direction: row;
    align-items: center;
    padding-top: 0;
  }

  .detail-photo {
    min-height: 0;
    aspect-ratio: 16 / 10;
    height: auto;
    grid-column: 1;
    grid-row: auto;
  }

  .detail-content {
    grid-column: 1;
    justify-self: end;
    max-width: 100%;
    max-height: none;
    overflow: visible;
    padding: 8px 2px 10px;
  }

  .detail-content h2 {
    font-size: 30px;
  }

  .detail-content ul {
    gap: 0;
    margin-top: 12px;
  }

  .modal.has-menu-video .detail-content ul {
    width: 100%;
  }

  .detail-content li {
    padding: 9px 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
  }

}

@media (max-width: 560px) {
  .qr-home {
    padding: 18px;
  }

  .qr-card {
    padding: 30px 30px 26px 18px;
  }

  .qr-button {
    min-height: 52px;
    padding: 13px 52px 13px 16px;
  }

  .cutlery-icon {
    right: -10px;
    width: 48px;
    height: 48px;
    gap: 4px;
  }

  .fork-shape {
    width: 12px;
    height: 27px;
  }

  .fork-shape::before {
    width: 3px;
    height: 11px;
    box-shadow:
      4px 0 0 #fff7e8,
      8px 0 0 #fff7e8;
  }

  .fork-shape::after {
    left: 5px;
    top: 9px;
    width: 4px;
    height: 18px;
  }

  .knife-shape {
    width: 7px;
    height: 29px;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .brand {
    position: static;
    align-self: center;
    transform: none;
  }

  .top-nav {
    margin-left: 0;
    width: 100%;
  }

  .nav-link,
  .btn {
    flex: 1;
    padding-inline: 12px;
  }

  .landing {
    width: min(100% - 24px, 1120px);
    padding-top: 34px;
  }

  .branch-hero,
  .menu-shell {
    width: min(100% - 18px, 1240px);
  }

  .branch-copy {
    min-height: 230px;
    padding: 22px;
  }

  .hero-gallery {
    min-height: 150px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .branch-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .branch-card {
    min-height: 210px;
    padding: 12px;
  }

  .branch-card::before {
    inset: 7px;
  }

  .branch-card span {
    margin-bottom: 88px;
    font-size: 9px;
  }

  .branch-card strong {
    font-size: 22px;
  }

  .branch-card small {
    margin-top: 8px;
    font-size: 10px;
  }

  .hero-photo:first-child {
    grid-row: auto;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .product-card {
    padding: 10px;
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .product-photo {
    min-height: 0;
    aspect-ratio: 16 / 10;
    margin: 3px 3px 0;
  }

  .feature-heading {
    margin-top: 32px;
  }

  .feature-menu-card {
    min-height: 210px;
  }

  .product-main h3 {
    font-size: 16px;
  }

  .product-person {
    margin-top: 3px;
    font-size: 10px;
  }

  .ingredients {
    font-size: 12px;
    line-height: 1.35;
  }

  .product-stats {
    gap: 8px;
    padding: 0 3px 4px;
  }

  .calorie {
    font-size: 11px;
  }

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

  .price {
    font-size: 17px;
  }

  .modal {
    padding: 10px;
  }

  .modal-close {
    top: -12px;
    right: -6px;
  }

  .detail-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px;
  }

  .detail-photo {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .detail-content li {
    gap: 8px;
    padding: 8px 0;
  }

  .detail-content li strong {
    min-width: 58px;
    font-size: 12px;
  }

  .detail-content li span {
    font-size: 12px;
  }

}
