:root {
  --green: #5c7861;
  --green-soft: #839683;
  --ink: #10120f;
  --paper: #fff8ec;
  --cream: #f4ead8;
  --yellow: #f6c744;
  --red: #d34232;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(16, 18, 15, 0.18);
  --radius: 26px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Comfortaa", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: relative;
  top: 12px;
  z-index: 50;
  width: min(1240px, calc(100% - 28px));
  margin: 12px auto 0;
  min-height: 96px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 12px 20px;
  background: linear-gradient(90deg, var(--cream), var(--paper));
  color: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 28px;
  box-shadow: 8px 8px 0 var(--ink);
  overflow: visible;
}

.site-header.is-scrolled {
  box-shadow: 8px 8px 0 var(--ink);
}

.header-logo {
  position: relative;
  z-index: 4;
  width: clamp(70px, 7vw, 96px);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  padding: 8px;
  background: rgba(255, 255, 255, 0.96);
  border: 3px solid var(--ink);
  border-radius: 20px;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.header-logo:hover,
.header-logo:focus-visible {
  transform: translate(-1px, -2px);
  box-shadow: 7px 7px 0 var(--ink);
}

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

.header-logo--mr {
  width: clamp(150px, 18vw, 230px);
  aspect-ratio: 3.6 / 1;
  padding: 7px 12px;
}

.site-header.is-scrolled .header-logo {
  transform: none;
}

.main-nav,
.header-actions,
.hero__actions,
.location__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.main-nav {
  flex: 1 1 auto;
  justify-content: center;
  justify-self: center;
  width: max-content;
  max-width: 100%;
  font-family: "Comfortaa", sans-serif;
  font-weight: 700;
  padding: 8px;
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: 999px;
  box-shadow: 4px 4px 0 var(--ink);
}

.main-nav a {
  padding: 11px 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  line-height: 1;
  box-shadow: none;
  transition: transform 180ms ease, background 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: var(--yellow);
  color: var(--ink);
  transform: translateY(-1px);
}

.header-actions {
  flex: 0 0 auto;
  justify-content: center;
  gap: 7px;
  padding: 8px;
  background: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 22px;
  box-shadow: 5px 5px 0 var(--yellow);
}

.header-actions__label {
  align-self: stretch;
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  color: var(--cream);
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: 0;
}

.order-btn,
.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.order-btn:hover,
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 5px 5px 0 var(--ink);
}

.order-btn--efood { background: var(--red); color: var(--white); }
.order-btn--logo.order-btn--wolt { background: #11bfd4; color: var(--white); }
.order-btn--logo {
  width: 88px;
  min-height: 48px;
  padding: 8px 10px;
  background: var(--white);
  overflow: hidden;
  border: 2px solid var(--white);
  border-radius: 15px;
  box-shadow: none;
}

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

.order-btn--wolt img {
  width: 76px;
  height: 28px;
  object-fit: contain;
}

.order-btn--box {
  background: #f87a1d;
}

.order-btn--box img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 6px;
}

.btn--dark { background: var(--ink); color: var(--white); }
.btn--light { background: var(--white); color: var(--ink); }

.brand-gateway {
  width: min(1240px, calc(100% - 28px));
  margin: -112px auto 34px;
  padding: clamp(140px, 13vw, 180px) clamp(18px, 4vw, 48px) clamp(28px, 5vw, 58px);
  background:
    radial-gradient(circle at 12% 25%, rgba(79, 0, 160, 0.24) 0 10%, transparent 11%),
    radial-gradient(circle at 86% 18%, rgba(255, 198, 12, 0.32) 0 12%, transparent 13%),
    linear-gradient(135deg, var(--cream) 0%, #fff2a8 40%, #6a20b8 100%);
  border: 4px solid var(--ink);
  border-radius: 0 0 34px 34px;
  box-shadow: 10px 10px 0 var(--ink);
}

.brand-gateway__intro {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.brand-gateway__intro h1 {
  max-width: 900px;
  margin: 0;
  color: var(--ink);
  font-family: "Bungee Shade", cursive;
  font-size: clamp(2.4rem, 6vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.brand-gateway__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 28px);
}

.brand-choice {
  position: relative;
  min-height: clamp(260px, 31vw, 390px);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  padding: clamp(20px, 4vw, 42px);
  overflow: hidden;
  border: 4px solid var(--ink);
  border-radius: 28px;
  box-shadow: 8px 8px 0 var(--ink);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.brand-choice:hover,
.brand-choice:focus-visible {
  transform: translateY(-5px) rotate(-0.6deg);
  box-shadow: 12px 12px 0 var(--ink);
}

.brand-choice::before {
  content: "";
  position: absolute;
  inset: auto -20px 20px -20px;
  height: 84px;
  background: repeating-linear-gradient(135deg, rgba(17, 17, 17, 0.95) 0 18px, rgba(255, 255, 255, 0.16) 18px 34px);
  opacity: 0.22;
  transform: rotate(-3deg);
}

.brand-choice img,
.brand-choice span {
  position: relative;
  z-index: 1;
}

.brand-choice img {
  width: min(360px, 88%);
  max-height: 170px;
  object-fit: contain;
  filter: drop-shadow(5px 6px 0 rgba(17, 17, 17, 0.22));
}

.brand-choice span {
  display: inline-flex;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-choice--factory {
  background: linear-gradient(145deg, var(--white), var(--green-soft));
}

.brand-choice--mr {
  background:
    radial-gradient(circle at 18% 22%, rgba(79, 0, 160, 0.34), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(255, 198, 12, 0.42), transparent 30%),
    #fff2a8;
}

.brand-choice--mr span {
  background: #4f00a0;
  box-shadow: 4px 4px 0 var(--ink);
}

.entry-page {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 10% 14%, rgba(79, 0, 160, 0.28) 0 11%, transparent 12%),
    radial-gradient(circle at 88% 18%, rgba(255, 198, 12, 0.38) 0 12%, transparent 13%),
    radial-gradient(circle at 76% 88%, rgba(88, 26, 169, 0.28) 0 14%, transparent 15%),
    linear-gradient(135deg, #fffdf7 0%, #fff0a8 44%, #6a20b8 100%);
}

.entry-gateway {
  position: relative;
  display: grid;
  align-content: center;
  gap: clamp(22px, 4vw, 42px);
  width: min(1180px, calc(100% - 28px));
  min-height: 100vh;
  margin: 0 auto;
  padding: clamp(28px, 6vw, 72px) 0;
}

.entry-gateway::before,
.entry-gateway::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.entry-gateway::before {
  left: -8vw;
  top: 11vh;
  width: min(360px, 44vw);
  height: 122px;
  background: #111;
  clip-path: polygon(0 25%, 100% 0, 88% 78%, 8% 100%);
  transform: rotate(-8deg);
}

.entry-gateway::after {
  right: -8vw;
  bottom: 10vh;
  width: min(340px, 44vw);
  height: 138px;
  background: repeating-linear-gradient(135deg, #111 0 18px, #ffc60c 18px 34px);
  border: 4px solid #111;
  clip-path: polygon(8% 0, 100% 14%, 92% 100%, 0 82%);
  transform: rotate(6deg);
}

.entry-gateway__intro,
.entry-gateway__cards {
  position: relative;
  z-index: 1;
}

.entry-gateway__intro {
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
}

.entry-gateway__intro span {
  display: inline-flex;
  padding: 9px 14px;
  color: #fff;
  background: #4f00a0;
  border-radius: 999px;
  box-shadow: 4px 4px 0 #ffc60c;
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.entry-gateway__intro h1 {
  max-width: 960px;
  margin: 0;
  color: #111;
  font-family: "Comfortaa", sans-serif;
  font-size: clamp(2.4rem, 6vw, 5.7rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

.entry-gateway__intro p {
  margin: 0;
  color: #111;
  font-size: clamp(1rem, 1.7vw, 1.3rem);
  font-weight: 900;
}

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

.entry-choice {
  position: relative;
  min-height: clamp(330px, 36vw, 470px);
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 24px;
  padding: clamp(22px, 4vw, 44px);
  overflow: hidden;
  border: 4px solid #111;
  border-radius: 30px;
  box-shadow: 10px 10px 0 #111;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.entry-choice:hover,
.entry-choice:focus-visible {
  transform: translateY(-6px) rotate(-0.5deg);
  box-shadow: 14px 14px 0 #111;
}

.entry-choice::before {
  content: "";
  position: absolute;
  inset: auto -20px 24px -20px;
  height: 92px;
  background: repeating-linear-gradient(135deg, rgba(17, 17, 17, 0.96) 0 18px, rgba(255, 255, 255, 0.16) 18px 34px);
  opacity: 0.2;
  transform: rotate(-3deg);
}

.entry-choice img,
.entry-choice div {
  position: relative;
  z-index: 1;
}

.entry-choice img {
  width: min(420px, 92%);
  max-height: 190px;
  object-fit: contain;
  filter: drop-shadow(5px 6px 0 rgba(17, 17, 17, 0.22));
}

.entry-choice div {
  display: grid;
  gap: 7px;
}

.entry-choice strong {
  color: #111;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1;
}

.entry-choice span {
  display: inline-flex;
  justify-self: center;
  padding: 10px 14px;
  color: #fff;
  background: #111;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.entry-choice--factory {
  background: linear-gradient(145deg, #fff, var(--green-soft));
}

.entry-choice--mr {
  background:
    radial-gradient(circle at 18% 22%, rgba(88, 26, 169, 0.32), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(255, 198, 12, 0.44), transparent 30%),
    #fff2a8;
}

.entry-choice--mr span {
  background: #4f00a0;
  box-shadow: 4px 4px 0 #111;
}

.mr-page {
  background:
    linear-gradient(90deg, rgba(79, 0, 160, 0.15) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 198, 12, 0.2) 1px, transparent 1px),
    #fff8df;
  background-size: 28px 28px;
  overflow-x: hidden;
  padding-bottom: 104px;
}

.mr-page .site-footer {
  background: #111;
}

.mr-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.75fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
  width: min(1240px, calc(100% - 28px));
  min-height: 760px;
  margin: -112px auto 0;
  padding: clamp(150px, 15vw, 190px) clamp(18px, 4vw, 52px) 72px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 22%, rgba(88, 26, 169, 0.28) 0 10%, transparent 11%),
    radial-gradient(circle at 84% 20%, rgba(255, 198, 12, 0.34) 0 11%, transparent 12%),
    linear-gradient(135deg, #fff8e9 0%, #ffc60c 46%, #5a1aac 100%);
  border: 4px solid var(--ink);
  border-radius: 0 0 34px 34px;
  box-shadow: 10px 10px 0 var(--ink);
}

.mr-hero::before,
.mr-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.mr-hero::before {
  inset: 34px auto auto -70px;
  width: 360px;
  height: 126px;
  background: #111;
  transform: rotate(-9deg);
  clip-path: polygon(0 22%, 92% 0, 100% 68%, 8% 100%);
}

.mr-hero::after {
  right: -26px;
  bottom: 56px;
  width: 330px;
  height: 140px;
  background: repeating-linear-gradient(135deg, #111 0 18px, #ffc60c 18px 34px);
  border: 4px solid #111;
  transform: rotate(-4deg);
  clip-path: polygon(0 18%, 100% 0, 92% 92%, 8% 100%);
}

.mr-hero__copy,
.mr-hero__poster,
.mr-combo-strip__copy,
.mr-combo-strip__image {
  position: relative;
  z-index: 1;
}

.mr-logo {
  width: min(520px, 100%);
  margin-bottom: 22px;
  filter: drop-shadow(5px 6px 0 rgba(17, 17, 17, 0.22));
}

.mr-kicker {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 14px;
  padding: 8px 14px;
  background: #4f00a0;
  color: #fff;
  border: 3px solid #111;
  border-radius: 999px;
  box-shadow: 4px 4px 0 #ffc60c;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mr-hero h1,
.mr-section__title h2,
.mr-combo-strip__copy h2 {
  max-width: 760px;
  margin: 0;
  color: #111;
  font-family: "Bungee Shade", cursive;
  font-size: clamp(2.35rem, 5.6vw, 5.45rem);
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  text-wrap: balance;
  text-transform: uppercase;
}

.mr-hero p:not(.mr-kicker),
.mr-combo-strip__copy p {
  max-width: 680px;
  color: #171717;
  font-size: clamp(1rem, 1.4vw, 1.26rem);
  font-weight: 800;
  line-height: 1.55;
}

.mr-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.mr-hero__poster {
  transform: rotate(2deg);
}

.mr-hero__poster img,
.mr-combo-strip__image img {
  width: 100%;
  display: block;
  border: 4px solid #111;
  border-radius: 24px;
  box-shadow: 10px 10px 0 #111;
}

.mr-hero__poster img {
  max-height: 680px;
  object-fit: contain;
  background: #fff8e9;
}

.mr-section {
  width: min(1180px, calc(100% - 28px));
  margin: 70px auto;
}

.mr-section__title {
  margin-bottom: 28px;
}

.mr-offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.mr-offer {
  position: relative;
  display: flex;
  min-height: 310px;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px;
  overflow: hidden;
  border: 4px solid #111;
  border-radius: 22px;
  box-shadow: 8px 8px 0 #111;
}

.mr-offer::after {
  content: "";
  position: absolute;
  right: -54px;
  bottom: -34px;
  width: 170px;
  height: 126px;
  background: repeating-linear-gradient(135deg, rgba(17, 17, 17, 0.95) 0 14px, rgba(255, 255, 255, 0.15) 14px 26px);
  transform: rotate(-12deg);
}

.mr-offer--pink { background: #5a1aac; color: #fff; }
.mr-offer--blue { background: #ffc60c; color: #111; }
.mr-offer--yellow { background: #fff2a8; color: #111; }

.mr-offer span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  background: #111;
  color: #fff;
  border-radius: 999px;
  font-weight: 900;
}

.mr-offer h3 {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 2.6vw, 2.45rem);
  line-height: 0.98;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.mr-offer p {
  margin: 0;
  max-width: 320px;
  font-weight: 800;
  line-height: 1.45;
}

.mr-offer strong {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding: 8px 14px;
  background: #fff;
  color: #4f00a0;
  border: 3px solid #111;
  border-radius: 999px;
  box-shadow: 4px 4px 0 #111;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  transform: rotate(-5deg);
}

.mr-combo-strip {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  padding: clamp(18px, 3vw, 38px);
  background: #fff8df;
  border: 4px solid #111;
  border-radius: 30px;
  box-shadow: 10px 10px 0 #111;
}

.mr-combo-strip__image {
  transform: rotate(-2deg);
}

.mr-combo-strip__image img {
  object-fit: contain;
  background: #fff8e9;
}

.mr-combo-strip__copy .mr-kicker {
  background: #ffc60c;
  color: #111;
  border-color: #111;
  box-shadow: 4px 4px 0 #4f00a0;
}

.mr-flavors {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.mr-flavors span {
  padding: 10px 12px;
  background: #111;
  color: #fff;
  border-radius: 999px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.mr-flavors span:nth-child(2) { background: #5a1aac; }
.mr-flavors span:nth-child(3) { background: #ffc60c; color: #111; }
.mr-flavors span:nth-child(4) { background: #7d35d6; }

.mr-floating-banner {
  position: fixed;
  left: 50%;
  bottom: 16px;
  z-index: 90;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  width: min(980px, calc(100% - 24px));
  min-width: 0;
  padding: 10px 12px;
  background: #111;
  color: #fff;
  border: 3px solid #fff;
  border-radius: 18px;
  box-shadow: 0 0 0 4px #111, 8px 8px 0 rgba(0, 0, 0, 0.28);
  transform: translateX(-50%);
}

.mr-floating-banner.is-choosing {
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.mr-floating-banner img {
  width: clamp(112px, 18vw, 210px);
  max-height: 52px;
  object-fit: contain;
  background: #fff;
  border-radius: 10px;
  padding: 4px 8px;
}

.mr-floating-banner p {
  display: grid;
  gap: 2px;
  min-width: 0;
  margin: 0;
}

.mr-floating-banner strong {
  color: #ffe33b;
  font-size: clamp(0.92rem, 1.8vw, 1.28rem);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mr-floating-banner span {
  font-size: 0.82rem;
  font-weight: 800;
  opacity: 0.86;
}

.mr-floating-banner__btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  background: #5a1aac;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 999px;
  font-weight: 900;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
}

.mr-floating-banner.is-choosing .mr-floating-banner__btn {
  display: none;
}

.mr-delivery-options {
  display: none;
  gap: 10px;
  align-items: center;
  justify-content: end;
}

.mr-floating-banner.is-choosing .mr-delivery-options {
  display: flex;
}

.mr-delivery-option {
  width: 72px;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px;
  border: 2px solid #fff;
  border-radius: 14px;
  background: #fff;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.mr-delivery-option:hover,
.mr-delivery-option:focus-visible {
  transform: translateY(-3px);
  box-shadow: 4px 4px 0 #fff;
}

.mr-delivery-option img {
  width: 100%;
  max-height: 30px;
  object-fit: contain;
  padding: 0;
  border-radius: 7px;
  background: transparent;
}

.mr-delivery-option--efood { background: var(--red); }
.mr-delivery-option--wolt { background: #11bfd4; }
.mr-delivery-option--box { background: #f87a1d; }

.mr-delivery-option--box img {
  width: 31px;
  height: 31px;
}

.hero {
  width: min(1240px, calc(100% - 28px));
  margin: -112px auto 0;
  min-height: calc(100vh - 120px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: 28px;
  align-items: center;
  padding: clamp(150px, 12vw, 184px) clamp(34px, 6vw, 72px) clamp(34px, 6vw, 72px);
  background: var(--green);
  color: var(--white);
  border: 3px solid var(--green);
  border-top: 0;
  border-radius: 0 0 38px 38px;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -12% -24% -12%;
  height: 44%;
  background: var(--yellow);
  transform: rotate(-3deg);
}

.eyebrow {
  margin: 0 0 14px;
  font-family: "Comfortaa", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: "Bungee Shade", "Comfortaa", Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.94;
}

h1 {
  font-size: clamp(2.2rem, 5.8vw, 5.2rem);
  max-width: 10ch;
  text-transform: uppercase;
}

.hero-title {
  transform:
    translateY(calc(var(--hero-title-progress, 0) * -34px))
    scale(calc(1 - (var(--hero-title-progress, 0) * 0.08)))
    rotate(calc(var(--hero-title-progress, 0) * -1.2deg));
  opacity: calc(1 - (var(--hero-title-progress, 0) * 0.22));
  transform-origin: left center;
  transition: transform 80ms linear, opacity 80ms linear;
  will-change: transform, opacity;
}

h2 {
  font-size: clamp(2rem, 4.6vw, 4.8rem);
  max-width: 13ch;
}

.hero__lead {
  max-width: 680px;
  margin: 22px 0;
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  line-height: 1.45;
}

.hero__media {
  min-height: 430px;
  position: relative;
  z-index: 1;
}

.hero-img {
  position: absolute;
  object-fit: cover;
  border: 5px solid var(--ink);
  border-radius: 30px;
  box-shadow: 10px 10px 0 var(--ink);
  animation: floaty 5s ease-in-out infinite;
}

.hero-img--one {
  width: 72%;
  aspect-ratio: 1.18 / 1;
  right: 2%;
  top: -138px;
  object-position: center;
}

.hero-img--two {
  width: 56%;
  aspect-ratio: 0.78 / 1;
  left: 0;
  top: 0;
  animation-delay: -1.6s;
}

.hero-img--three {
  width: 54%;
  aspect-ratio: 1 / 1;
  right: 0;
  bottom: 0;
  animation-delay: -3s;
}

.sticker {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  min-height: 118px;
  padding: 18px;
  background: var(--yellow);
  color: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 50%;
  font-family: "Comfortaa", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  box-shadow: 6px 6px 0 var(--ink);
}

.sticker--top { left: 12%; top: -2%; transform: rotate(-12deg); }
.sticker--bottom { right: 10%; bottom: 30%; transform: rotate(12deg); }

.marquee {
  overflow: hidden;
  margin-top: clamp(28px, 5vw, 64px);
  border-block: 3px solid var(--ink);
  background: var(--yellow);
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 22s linear infinite;
}

.marquee span {
  padding: 18px 28px;
  font-family: "Comfortaa", sans-serif;
  font-size: clamp(1.3rem, 3vw, 2.6rem);
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.scroll-section-ready {
  opacity: 0;
  transform: translateY(34px) rotate(0.8deg);
  transition: opacity 640ms ease, transform 640ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.scroll-section-ready.is-scroll-visible {
  opacity: 1;
  transform: translateY(0) rotate(0);
}

.section {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 116px) 0;
}

.section-title {
  display: grid;
  grid-template-columns: minmax(180px, 0.5fr) 1fr;
  gap: 28px;
  align-items: start;
  margin-bottom: 34px;
}

.category-grid,
.review-grid,
.menu-grid {
  display: grid;
  gap: 18px;
}

.story-board {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1fr);
  grid-template-areas:
    "hero content"
    "hero strip";
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
  padding: clamp(16px, 2.5vw, 26px);
  background: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 34px;
  box-shadow: 10px 10px 0 rgba(16, 18, 15, 0.22);
  overflow: hidden;
  isolation: isolate;
}

.story-board::before {
  content: "";
  position: absolute;
  inset: auto -8% -20% 34%;
  width: 52%;
  aspect-ratio: 1;
  z-index: -1;
  background: var(--yellow);
  border-radius: 50%;
  opacity: 0.96;
}

.story-board__hero {
  position: relative;
  grid-area: hero;
  min-height: clamp(520px, 58vw, 660px);
  margin: 0;
  overflow: hidden;
  border: 3px solid var(--white);
  border-radius: 26px;
  box-shadow: 8px 8px 0 var(--yellow);
  transform: rotate(-1.2deg);
}

.story-board__hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 54%, rgba(16, 18, 15, 0.62)),
    radial-gradient(circle at 18% 18%, rgba(246, 199, 68, 0.26), transparent 30%);
  pointer-events: none;
}

.story-board__hero img,
.story-strip img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: contrast(1.08) saturate(1.06);
  transform: scale(1.04);
  transition: transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 760ms ease;
}

.story-board__hero:hover img,
.story-strip img:hover {
  filter: contrast(1.14) saturate(1.12);
  transform: scale(1.1);
}

.story-board__hero figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  max-width: calc(100% - 36px);
  padding: 12px 15px;
  background: var(--yellow);
  color: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 999px;
  box-shadow: 4px 4px 0 var(--ink);
  font-family: "Comfortaa", sans-serif;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.story-board__content {
  grid-area: content;
  display: grid;
  gap: 20px;
  align-content: center;
  padding: clamp(22px, 4vw, 44px);
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 26px;
  box-shadow: 8px 8px 0 var(--yellow);
}

.story-board__lead {
  margin: 0;
  font-size: clamp(1.28rem, 2.45vw, 2.15rem);
  font-weight: 800;
  line-height: 1.25;
}

.story-steps {
  display: grid;
  gap: 12px;
}

.story-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 18px;
  box-shadow: 4px 4px 0 var(--ink);
}

.story-step span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-weight: 900;
  line-height: 1;
}

.story-step p {
  margin: 0;
  font-size: clamp(0.98rem, 1.4vw, 1.12rem);
  line-height: 1.55;
}

.story-strip {
  grid-area: strip;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr 0.9fr;
  gap: 14px;
  min-height: 210px;
}

.story-strip img {
  min-height: 210px;
  overflow: hidden;
  border: 3px solid var(--white);
  border-radius: 22px;
  box-shadow: 5px 5px 0 var(--yellow);
}

.story-strip img:nth-child(1) {
  transform: rotate(1.6deg) scale(1.04);
}

.story-strip img:nth-child(1):hover {
  transform: rotate(1.6deg) scale(1.1);
}

.story-strip img:nth-child(2) {
  transform: translateY(-12px) rotate(-1.2deg) scale(1.04);
}

.story-strip img:nth-child(2):hover {
  transform: translateY(-12px) rotate(-1.2deg) scale(1.1);
}

.story-strip img:nth-child(3) {
  transform: rotate(2.2deg) scale(1.04);
}

.story-strip img:nth-child(3):hover {
  transform: rotate(2.2deg) scale(1.1);
}

.story-board__hero[data-reveal] {
  transform: translateY(34px) rotate(-3deg) scale(0.96);
}

.story-board__hero[data-reveal].is-visible {
  transform: translateY(0) rotate(-1.2deg) scale(1);
}

.story-step[data-reveal] {
  transform: translateX(24px);
}

.story-step[data-reveal].is-visible {
  transform: translateX(0);
}

.story-strip img[data-reveal] {
  opacity: 0;
}

.story-strip img[data-reveal].is-visible {
  opacity: 1;
}

.split-showcase__copy p,
.location p {
  margin: 0 0 14px;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.7;
}

.split-showcase {
  --showcase-progress: 0;
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 34px;
  align-items: center;
}

.split-showcase__media,
.split-showcase__copy {
  transition: transform 120ms linear, opacity 120ms linear;
  will-change: transform, opacity;
}

.split-showcase__media {
  opacity: calc(0.78 + (var(--showcase-progress) * 0.22));
  transform:
    translateX(calc((1 - var(--showcase-progress)) * -22px))
    translateY(calc((1 - var(--showcase-progress)) * 10px))
    rotate(calc((1 - var(--showcase-progress)) * -3deg))
    scale(calc(0.97 + (var(--showcase-progress) * 0.03)));
}

.split-showcase__media img {
  aspect-ratio: 0.82 / 1;
  width: 100%;
  object-fit: cover;
  border: 4px solid var(--ink);
  border-radius: 34px;
  box-shadow: 10px 10px 0 var(--red);
}

.split-showcase__copy {
  padding: clamp(26px, 5vw, 54px);
  background: var(--green);
  color: var(--white);
  border-radius: 34px;
  opacity: calc(0.78 + (var(--showcase-progress) * 0.22));
  transform:
    translateX(calc((1 - var(--showcase-progress)) * 22px))
    translateY(calc((1 - var(--showcase-progress)) * 10px))
    rotate(calc((1 - var(--showcase-progress)) * 2deg))
    scale(calc(0.97 + (var(--showcase-progress) * 0.03)));
}

.split-showcase__copy h2 {
  margin: 18px 0 24px;
  font-size: clamp(1.8rem, 3.6vw, 3.6rem);
}

.category-grid {
  grid-template-columns: repeat(4, 1fr);
}

.category-card {
  min-height: 330px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 14px;
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: 28px;
  box-shadow: 7px 7px 0 var(--ink);
}

.category-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 20px;
}

.category-card span {
  font-family: "Comfortaa", sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
}

.reviews {
  width: 100%;
  padding-inline: max(14px, calc((100vw - 1180px) / 2));
  background: var(--ink);
  color: var(--white);
}

.reviews__headline {
  margin-bottom: 28px;
}

.reviews__headline p:not(.eyebrow) {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.7;
}

blockquote {
  margin: 0;
  padding: clamp(24px, 4vw, 42px);
  background: var(--green);
  border-radius: 28px;
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  line-height: 1.55;
}

cite {
  display: block;
  margin-top: 18px;
  font-style: normal;
  font-weight: 800;
}

.review-carousel {
  position: relative;
}

.review-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(310px, calc((100% - 36px) / 3));
  gap: 18px;
  overflow-x: auto;
  padding: 4px 4px 18px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.review-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  height: 390px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: clamp(20px, 2.4vw, 28px);
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: 22px;
  color: var(--ink);
  box-shadow: 7px 7px 0 var(--ink);
  scroll-snap-align: start;
}

.review-card__top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  color: rgba(16, 18, 15, 0.62);
  font-size: 0.86rem;
  font-weight: 800;
}

.review-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-profile img {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  object-fit: cover;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--cream);
}

.review-profile cite {
  margin: 0;
  color: var(--ink);
  font-size: 1.02rem;
}

.google-mark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  text-decoration: none;
}

.google-mark img {
  width: 22px;
  height: 22px;
  padding: 3px;
  background: var(--white);
  border-radius: 50%;
}

.stars {
  display: block;
  color: var(--yellow);
  letter-spacing: 0;
  white-space: nowrap;
}

.review-card p {
  flex: 1 1 auto;
  overflow-y: auto;
  margin: 0;
  padding-right: 6px;
  color: rgba(16, 18, 15, 0.78);
  font-size: 0.96rem;
  line-height: 1.55;
  scrollbar-width: thin;
}

.review-card p::-webkit-scrollbar {
  width: 6px;
}

.review-card p::-webkit-scrollbar-track {
  background: rgba(16, 18, 15, 0.08);
  border-radius: 999px;
}

.review-card p::-webkit-scrollbar-thumb {
  background: rgba(16, 18, 15, 0.45);
  border-radius: 999px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  font: inherit;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.carousel-btn:hover {
  transform: translateY(-54%);
  box-shadow: 7px 7px 0 var(--ink);
}

.carousel-btn--prev {
  left: -18px;
}

.carousel-btn--next {
  right: -18px;
}

.reels-carousel {
  position: relative;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.gallery {
  display: grid;
  grid-template-columns: 0.8fr 1.1fr 0.8fr;
  gap: 16px;
  align-items: center;
}

.gallery img {
  width: 100%;
  height: clamp(280px, 38vw, 520px);
  object-fit: cover;
  border: 4px solid var(--ink);
  border-radius: 30px;
}

.gallery img:nth-child(2) {
  height: clamp(340px, 46vw, 620px);
}

.social-videos {
  width: 100%;
  max-width: none;
  padding-inline: max(14px, calc((100vw - 1180px) / 2));
  background: var(--cream);
  border-block: 3px solid var(--ink);
}

.social-videos .section-title {
  width: min(1180px, 100%);
  margin-inline: auto;
}

.social-video-actions {
  width: min(1180px, 100%);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: -12px auto 28px;
}

.tiktok-profile-wrap {
  display: flex;
  justify-content: center;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.tiktok-profile-wrap .tiktok-embed {
  width: 100%;
  max-width: 1180px !important;
  margin: 0 !important;
}

.social-logo-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 12px 16px;
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: 999px;
  box-shadow: 4px 4px 0 var(--ink);
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.social-logo-btn:hover {
  background: var(--yellow);
  transform: translateY(-3px);
  box-shadow: 6px 6px 0 var(--ink);
}

.social-logo-btn img {
  width: 22px;
  height: 22px;
}

.reels-gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(230px, 280px);
  gap: 18px;
  overflow-x: auto;
  padding: 6px 4px 22px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.reels-gallery::-webkit-scrollbar {
  display: none;
}

.reel-card {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 4px solid var(--ink);
  border-radius: 32px;
  background: var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
  scroll-snap-align: start;
}

.reel-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  pointer-events: none;
}

.reel-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reel-card__overlay {
  position: absolute;
  inset: 12px 12px auto;
  z-index: 3;
  display: grid;
  gap: 4px;
  padding: 14px;
  color: var(--white);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(16, 18, 15, 0.72), rgba(16, 18, 15, 0));
  pointer-events: none;
}

.reel-card__overlay span {
  font-size: 0.78rem;
  font-weight: 800;
}

.reel-card__overlay strong {
  font-size: 1.05rem;
}

.location {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 22px;
  align-items: stretch;
}

.location h2 {
  margin: 18px 0 22px;
}

.location iframe {
  min-height: 430px;
  width: 100%;
  border: 4px solid var(--ink);
  border-radius: 30px;
}

.site-footer {
  display: grid;
  place-items: center;
  gap: 10px;
  padding: 42px 18px;
  background: var(--green-soft);
  color: var(--white);
  text-align: center;
}

.site-footer img {
  width: 150px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  font-weight: 800;
  text-decoration: underline;
}

.menu-page {
  background: #f7f7f7;
  font-family: Roboto, Arial, sans-serif;
  padding-bottom: 48px;
}

.menu-hero {
  width: min(1180px, calc(100% - 28px));
  margin: -104px auto 0;
  padding: 104px 0 0;
  background: transparent;
  color: #1f1f1f;
}

.menu-hero__cover {
  height: clamp(180px, 26vw, 310px);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.18)),
    url("../img/photo_sf_1.png") center / cover;
  border-radius: 8px 8px 0 0;
}

.menu-hero__info {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 18px 20px 22px;
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-top: 0;
  border-radius: 0 0 8px 8px;
}

.menu-hero__info img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  background: #ffffff;
}

.menu-hero .eyebrow {
  margin-bottom: 7px;
  color: #707070;
  font-family: Roboto, Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.menu-hero h1 {
  max-width: 100%;
  font-family: Roboto, Arial, sans-serif;
  font-size: clamp(1.65rem, 3vw, 2.3rem);
  font-weight: 800;
  line-height: 1.15;
  text-transform: none;
}

.menu-hero p:not(.eyebrow) {
  max-width: 880px;
  margin: 8px 0 0;
  color: #686868;
  font-size: 0.95rem;
  line-height: 1.45;
}

.menu-section {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
  padding: 0 0 90px;
  display: grid;
  grid-template-columns: 244px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.menu-toolbar {
  position: sticky;
  top: 78px;
  z-index: 20;
  display: flex;
  flex-direction: column;
  padding: 8px 0;
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 8px;
}

.filter-chip {
  display: block;
  padding: 13px 18px;
  border-left: 3px solid transparent;
  color: #333333;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.25;
}

.filter-chip.is-active {
  border-left-color: #5c7861;
  background: #eef5ef;
  color: #3f6047;
}

.menu-grid {
  display: grid;
  gap: 16px;
}

.menu-category {
  scroll-margin-top: 128px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 8px;
}

.menu-category__title {
  max-width: none;
  margin: 0;
  padding: 20px 20px 14px;
  font-family: Roboto, Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.2;
}

.menu-category__items {
  display: grid;
}

.menu-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: stretch;
  min-height: 112px;
  background: #ffffff;
  border-top: 1px solid #eeeeee;
  overflow: hidden;
}

.menu-card__media {
  width: 112px;
  min-height: 112px;
  margin: 14px 16px 14px 0;
  overflow: hidden;
  background: #f1f1f1;
  border-radius: 6px;
}

.menu-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-card__body {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 16px 0 16px 20px;
}

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

.menu-card h2 {
  max-width: none;
  font-family: Roboto, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.menu-card p {
  margin: 0;
  color: #707070;
  font-size: 0.9rem;
  line-height: 1.45;
}

.menu-price {
  flex: 0 0 auto;
  color: #202020;
  font-weight: 800;
  white-space: nowrap;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 560ms ease, transform 560ms ease;
  transition-delay: var(--delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.split-showcase .split-showcase__media.is-visible {
  opacity: calc(0.78 + (var(--showcase-progress) * 0.22));
  transform:
    translateX(calc((1 - var(--showcase-progress)) * -22px))
    translateY(calc((1 - var(--showcase-progress)) * 10px))
    rotate(calc((1 - var(--showcase-progress)) * -3deg))
    scale(calc(0.97 + (var(--showcase-progress) * 0.03)));
}

.split-showcase .split-showcase__copy.is-visible {
  opacity: calc(0.78 + (var(--showcase-progress) * 0.22));
  transform:
    translateX(calc((1 - var(--showcase-progress)) * 22px))
    translateY(calc((1 - var(--showcase-progress)) * 10px))
    rotate(calc((1 - var(--showcase-progress)) * 2deg))
    scale(calc(0.97 + (var(--showcase-progress) * 0.03)));
}

@media (prefers-reduced-motion: reduce) {
  .split-showcase {
    --showcase-progress: 1;
  }

  .split-showcase__media,
  .split-showcase__copy,
  .scroll-section-ready {
    transition: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-16px) rotate(2deg); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 980px) {
  .site-header {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-areas:
      "logo actions"
      "nav nav";
    border-radius: 24px;
    gap: 10px;
    padding: 14px 18px 13px;
  }

  .header-logo {
    grid-area: logo;
    width: clamp(74px, 14vw, 92px);
    border-radius: 20px;
    box-shadow: 4px 4px 0 var(--ink);
  }

  .header-logo--mr {
    width: clamp(150px, 32vw, 220px);
  }

  .header-actions {
    grid-area: actions;
    justify-content: end;
    flex-wrap: nowrap;
  }

  .main-nav {
    grid-area: nav;
    width: 100%;
    justify-content: space-between;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .main-nav a {
    flex: 1 0 auto;
    text-align: center;
  }

  .hero,
  .mr-hero,
  .split-showcase,
  .location {
    grid-template-columns: 1fr;
  }

  .brand-gateway__cards {
    grid-template-columns: 1fr;
  }

  .entry-gateway__cards {
    grid-template-columns: 1fr;
  }

  .mr-hero {
    min-height: auto;
    padding-top: 148px;
  }

  .mr-hero__poster,
  .mr-combo-strip__image {
    transform: none;
  }

  .mr-offer-grid,
  .mr-combo-strip {
    grid-template-columns: 1fr;
  }

  .menu-section {
    grid-template-columns: 1fr;
    gap: 12px;
    width: min(1180px, calc(100% - 16px));
    padding-top: 0;
  }

  .menu-toolbar {
    flex-direction: row;
    overflow-x: auto;
    top: 0;
    padding: 8px;
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 8px;
  }

  .filter-chip {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 10px 13px;
    border: 0;
    border-radius: 999px;
    background: #f5f5f5;
  }

  .filter-chip.is-active {
    background: #eef5ef;
    color: #3f6047;
  }

  .hero-img--one {
    top: -86px;
  }

  .hero {
    min-height: auto;
  }

  .hero__media {
    min-height: 390px;
  }

  .section-title,
  .category-grid,
  .gallery,
  .menu-grid {
    grid-template-columns: 1fr 1fr;
  }

  .story-board {
    grid-template-columns: 1fr;
    grid-template-areas:
      "hero"
      "content"
      "strip";
  }

  .story-board__hero {
    min-height: 520px;
  }

  .story-strip {
    min-height: 260px;
  }

  .review-track {
    grid-auto-columns: minmax(300px, calc((100% - 18px) / 2));
  }

  .reels-gallery {
    grid-auto-columns: minmax(210px, 245px);
  }

}

@media (max-width: 680px) {
  .site-header {
    position: relative;
    top: 8px;
    width: calc(100% - 16px);
    margin-top: 8px;
    grid-template-columns: 1fr;
    grid-template-areas:
      "logo"
      "actions"
      "nav";
    border-radius: 22px;
    background: linear-gradient(180deg, var(--cream), var(--paper));
    box-shadow: 5px 5px 0 var(--ink);
    padding: 12px;
  }

  .header-logo {
    justify-self: center;
    width: 82px;
    padding: 8px;
    border-radius: 18px;
    box-shadow: 4px 4px 0 var(--ink);
  }

  .header-logo--mr {
    width: min(220px, 76vw);
    padding: 7px 12px;
  }

  .header-actions {
    width: 100%;
    gap: 7px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 8px;
    border-radius: 18px;
  }

  .header-actions__label {
    flex: 1 0 100%;
    justify-content: center;
    writing-mode: horizontal-tb;
    transform: none;
    min-height: 24px;
    padding: 0 10px 6px;
    border-right: 0;
    border-bottom: 1px solid rgba(244, 234, 216, 0.28);
  }

  .order-btn {
    min-height: 42px;
  }

  .order-btn--logo {
    width: calc((100% - 14px) / 3);
    min-height: 44px;
    padding: 7px 9px;
    border-width: 2px;
    box-shadow: none;
  }

  .order-btn--logo img {
    height: 24px;
  }

  .order-btn--wolt img {
    width: 58px;
    height: 24px;
  }

  .order-btn--box img {
    width: 30px;
    height: 30px;
  }

  .main-nav {
    gap: 6px;
    padding: 6px;
    background: var(--white);
  }

  .main-nav a {
    padding: 10px 12px;
    font-size: 0.78rem;
    border-width: 0;
    background: transparent;
    box-shadow: none;
  }

  .hero {
    border-radius: 0 0 28px 28px;
    margin-top: -58px;
    padding: 88px 28px 28px;
  }

  .brand-gateway {
    width: calc(100% - 16px);
    margin-top: -58px;
    padding: 96px 14px 28px;
    border-radius: 0 0 24px 24px;
    box-shadow: 5px 5px 0 var(--ink);
  }

  .brand-gateway__intro h1 {
    font-size: clamp(2.05rem, 12vw, 4rem);
  }

  .brand-choice {
    min-height: 220px;
    padding: 20px;
    border-radius: 22px;
    box-shadow: 5px 5px 0 var(--ink);
  }

  .brand-choice img {
    max-height: 128px;
  }

  .entry-gateway {
    width: calc(100% - 16px);
    padding: 24px 0;
  }

  .entry-gateway::before,
  .entry-gateway::after {
    opacity: 0.5;
  }

  .entry-gateway__intro h1 {
    font-size: clamp(2.15rem, 12vw, 4.2rem);
  }

  .entry-choice {
    min-height: 250px;
    padding: 20px;
    border-radius: 22px;
    box-shadow: 5px 5px 0 #111;
  }

  .entry-choice img {
    max-height: 128px;
  }

  .mr-page {
    padding-bottom: 134px;
  }

  .mr-hero {
    width: min(100% - 18px, 1240px);
    margin-top: -58px;
    padding: 104px 14px 42px;
    border-radius: 0 0 24px 24px;
    box-shadow: 5px 5px 0 var(--ink);
  }

  .mr-hero::before,
  .mr-hero::after {
    opacity: 0.72;
  }

  .mr-logo {
    margin-bottom: 16px;
  }

  .mr-hero h1,
  .mr-section__title h2,
  .mr-combo-strip__copy h2 {
    font-size: clamp(2.15rem, 12vw, 4.2rem);
  }

  .menu-hero {
    width: calc(100% - 16px);
    margin-top: 16px;
    padding: 0;
  }

  .menu-hero__cover {
    height: 178px;
  }

  .menu-hero__info {
    align-items: flex-start;
    padding: 14px;
  }

  .menu-hero__info img {
    width: 64px;
    height: 64px;
  }

  .menu-card {
    gap: 10px;
    min-height: 104px;
  }

  .menu-card__body {
    padding: 14px 0 14px 14px;
  }

  .menu-card__media {
    width: 92px;
    min-height: 92px;
    margin: 14px 14px 14px 0;
  }

  .hero__media {
    min-height: 320px;
  }

  .hero-img--one {
    width: 78%;
    top: -58px;
  }

  .hero-img--two,
  .hero-img--three {
    width: 56%;
  }

  .sticker {
    min-width: 92px;
    min-height: 92px;
    font-size: 0.82rem;
  }

  .mr-section {
    width: min(100% - 18px, 1180px);
    margin: 42px auto;
  }

  .mr-offer {
    min-height: 250px;
    padding: 20px;
  }

  .mr-combo-strip {
    padding: 16px;
    border-radius: 22px;
    box-shadow: 5px 5px 0 #111;
  }

  .mr-floating-banner {
    grid-template-columns: auto minmax(0, 1fr) auto;
    bottom: 10px;
    gap: 10px;
    padding: 8px;
    border-radius: 14px;
  }

  .mr-floating-banner > img {
    width: 104px;
    max-height: 44px;
  }

  .mr-floating-banner p {
    min-width: 0;
  }

  .mr-floating-banner span {
    display: none;
  }

  .mr-floating-banner__btn {
    min-height: 40px;
    padding: 8px 12px;
    font-size: 0.8rem;
  }

  .mr-delivery-options {
    gap: 7px;
  }

  .mr-delivery-option {
    width: 48px;
    min-height: 40px;
    padding: 5px;
    border-radius: 12px;
  }

  .mr-delivery-option img {
    max-height: 23px;
  }

  .mr-delivery-option--box img {
    width: 25px;
    height: 25px;
  }

  .section-title,
  .category-grid,
  .gallery,
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .story-board {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 12px;
    border-radius: 24px;
  }

  .story-board::before {
    inset: auto -30% -8% 16%;
    width: 88%;
  }

  .story-board__hero {
    min-height: 430px;
    border-radius: 20px;
    box-shadow: 5px 5px 0 var(--yellow);
  }

  .story-board__content {
    padding: 18px;
    border-radius: 20px;
    box-shadow: 5px 5px 0 var(--yellow);
  }

  .story-board__lead {
    font-size: 1.24rem;
  }

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

  .story-strip {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .story-strip img {
    min-height: 280px;
  }

  .story-strip img:nth-child(2) {
    transform: rotate(-1.2deg) scale(1.04);
  }

  .review-track {
    grid-auto-columns: minmax(260px, 88%);
  }

  .review-card {
    height: 420px;
    border-radius: 18px;
  }

  .review-card p {
    font-size: 0.92rem;
  }

  .reels-gallery {
    grid-auto-columns: minmax(210px, 78%);
  }

  .carousel-btn {
    top: auto;
    bottom: -18px;
    transform: none;
  }

  .carousel-btn:hover {
    transform: translateY(-2px);
  }

  .carousel-btn--prev {
    left: 14px;
  }

  .carousel-btn--next {
    right: 14px;
  }

  .category-card {
    min-height: auto;
  }

  .menu-category {
    scroll-margin-top: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
