@font-face {
  font-family: "Museo Sans Cyrl";
  src: url("assets/fonts/MuseoSansCyrl-300.woff") format("woff");
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Museo Sans Cyrl";
  src: url("assets/fonts/MuseoSansCyrl-500.woff") format("woff");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Museo Sans Cyrl";
  src: url("assets/fonts/MuseoSansCyrl-700.woff") format("woff");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Museo Sans Cyrl";
  src: url("assets/fonts/MuseoSansCyrl-900.woff") format("woff");
  font-weight: 900;
  font-display: swap;
}

@font-face {
  font-family: "Museo Cyrl";
  src: url("assets/fonts/Museocyrl500.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}

:root {
  --bg: #f7f7f8;
  --surface: #ffffff;
  --surface-soft: #f1f1f3;
  --green: #be152c;
  --green-dark: #941124;
  --green-light: #f9e7ea;
  --orange: #507c53;
  --orange-dark: #3e6542;
  --orange-soft: #edf4ed;
  --text: #1f1f1f;
  --muted: #707070;
  --border: #e5e5e5;
  --shadow: 0 18px 55px rgba(31, 31, 31, 0.1);
  --radius-lg: 32px;
  --radius-md: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--bg);
  font-family: "Museo Sans Cyrl", Arial, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.96);
}

.header-inner,
.menu-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-inner {
  min-height: 84px;
}

.brand,
.header-phone {
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  height: 64px;
}

.brand img {
  width: 161px;
  height: 64px;
  object-fit: contain;
  object-position: left center;
}

.header-phone span,
.header-phone small {
  display: block;
}

.header-phone small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.header-phone {
  text-align: right;
}

.header-phone span {
  color: var(--green-dark);
  font-size: 17px;
  font-weight: 800;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 74px 0 84px;
}

.hero::before,
.hero::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero::before {
  top: -200px;
  right: -170px;
  width: 580px;
  height: 580px;
  border: 90px solid rgba(190, 21, 44, 0.045);
}

.hero::after {
  bottom: -180px;
  left: -150px;
  width: 360px;
  height: 360px;
  background: rgba(80, 124, 83, 0.05);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 0.92fr);
  gap: 64px;
  align-items: center;
}

.hero-content,
.hero-visual {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow span {
  margin-right: 5px;
  font-size: 9px;
  vertical-align: 2px;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2 {
  margin: 0;
  color: var(--green-dark);
  font-family: "Museo Cyrl", "Museo Sans Cyrl", Arial, sans-serif;
  font-weight: 500;
  letter-spacing: -0.025em;
}

h1 {
  max-width: 680px;
  font-size: clamp(48px, 5.2vw, 72px);
  line-height: 0.98;
}

h1 span {
  color: var(--orange);
}

h2 {
  font-size: clamp(35px, 4vw, 50px);
  line-height: 1.08;
}

h3 {
  color: var(--green-dark);
  line-height: 1.25;
}

.hero-lead {
  max-width: 590px;
  margin: 24px 0 28px;
  color: #536158;
  font-size: clamp(18px, 2vw, 21px);
}

.promo-box {
  display: inline-flex;
  min-width: 360px;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 16px 20px 16px 24px;
  border: 2px dashed rgba(190, 21, 44, 0.55);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 12px 35px rgba(31, 31, 31, 0.08);
}

.promo-label,
.promo-code {
  display: block;
}

.promo-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.promo-code {
  color: var(--green-dark);
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.15;
}

.promo-discount {
  display: grid;
  width: 72px;
  height: 50px;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: var(--orange);
  font-size: 21px;
  font-weight: 900;
  transform: rotate(-3deg);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 22px;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
  max-width: 100%;
}

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

.button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(248, 58, 84, 0.45);
  outline-offset: 3px;
}

.button-primary {
  color: #fff;
  background: var(--green);
  box-shadow: 0 10px 20px rgba(248, 58, 84, 0.36);
}

.button-primary:hover {
  background: var(--green-dark);
  box-shadow: 0 10px 20px #f83a54, inset 0 0 15px rgba(0, 0, 0, 0.15);
}

.button-secondary {
  border: 1px solid var(--border);
  color: var(--green-dark);
  background: var(--surface);
}

.button-secondary:hover {
  background: #fff;
  box-shadow: 0 10px 25px rgba(39, 69, 48, 0.09);
}

.button svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.promo-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.hero-notes {
  display: grid;
  gap: 9px;
  margin-top: 14px;
}

.order-note {
  max-width: 590px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.order-note strong {
  color: var(--text);
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 510px;
  display: flex;
  align-items: center;
}

.hero-photo {
  position: relative;
  overflow: hidden;
  width: 100%;
  border: 8px solid #fff;
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 28px 55px rgba(31, 31, 31, 0.16);
}

.hero-photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero-dish-caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  color: #fff;
  background: rgba(31, 31, 31, 0.9);
}

.hero-dish-caption strong,
.hero-dish-caption small {
  display: block;
}

.hero-dish-caption strong {
  font-size: 17px;
  font-weight: 700;
}

.hero-dish-caption small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
}

.hero-badge,
.delivery-note {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  border: 1px solid rgba(190, 21, 44, 0.1);
  background: rgba(255, 253, 248, 0.96);
  box-shadow: var(--shadow);
}

.hero-badge {
  top: -12px;
  right: -12px;
  width: 112px;
  height: 112px;
  flex-direction: column;
  justify-content: center;
  border-radius: 50%;
  text-align: center;
  transform: rotate(5deg);
}

.hero-badge strong {
  color: var(--orange);
  font-family: "Museo Cyrl", "Museo Sans Cyrl", sans-serif;
  font-size: 31px;
  line-height: 1;
}

.hero-badge span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
}

.delivery-note {
  right: -10px;
  bottom: 22px;
  gap: 12px;
  padding: 13px 17px;
  border-radius: 16px;
}

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

.delivery-note strong {
  color: var(--green-dark);
  font-size: 14px;
}

.delivery-note small {
  color: var(--muted);
  font-size: 11px;
}

.delivery-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-weight: 900;
}

.section {
  padding: 94px 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 42px;
}

.section-heading-centered {
  display: block;
  text-align: center;
}

.section-intro {
  max-width: 470px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 17px;
}

.benefits {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 52px;
}

.benefit-card {
  position: relative;
  padding: 72px 26px 30px;
  border: 1px solid var(--border);
  border-top: 0;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  background: #fff;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.benefit-card:hover {
  transform: none;
  box-shadow: 0 18px 45px rgba(31, 31, 31, 0.12);
}

.benefit-icon,
.step-icon {
  display: grid;
  place-items: center;
}

.benefit-icon {
  position: absolute;
  z-index: 1;
  top: -52px;
  left: 50%;
  width: 104px;
  height: 104px;
  border: 6px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  box-shadow: 0 16px 24px rgba(248, 58, 84, 0.38);
  transform: translateX(-50%);
}

.benefit-icon strong {
  font-size: 25px;
  font-weight: 500;
}

.benefit-icon svg,
.step-icon svg {
  width: 43px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.benefit-card h3 {
  margin: 0 0 11px;
  font-size: 19px;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.menu {
  background: var(--bg);
}

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

.dish-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: 0 12px 35px rgba(39, 69, 48, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.dish-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.dish-image {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #f1f1f3;
}

.dish-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 350ms ease;
}

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

.dish-tag {
  position: absolute;
  z-index: 2;
  top: 13px;
  left: 13px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--orange);
  font-size: 11px;
  font-weight: 800;
}

.dish-content {
  display: flex;
  min-height: 222px;
  flex-direction: column;
  padding: 21px;
}

.dish-content h3 {
  margin: 0 0 9px;
  font-size: 20px;
}

.dish-content p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
}

.dish-price {
  margin-top: auto;
  color: var(--orange-dark);
  font-size: 22px;
}

.menu-footer {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.menu-footer p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.reviews {
  background: var(--surface);
}

.reviews-title {
  margin-bottom: 26px;
}

.review-tabs {
  display: grid;
  margin-bottom: 30px;
  border-bottom: 1px solid #d5d9df;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.review-tab {
  position: relative;
  padding: 16px 20px 20px;
  border: 0;
  color: #1d58a1;
  background: transparent;
  cursor: pointer;
  font-size: 20px;
  font-weight: 700;
}

.review-tab::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: transparent;
  content: "";
}

.review-tab.is-active {
  color: var(--text);
}

.review-tab.is-active::after {
  background: var(--text);
}

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

.video-review {
  min-width: 0;
  color: var(--text);
  text-decoration: none;
}

.video-review-image {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 0.72;
  margin-bottom: 14px;
  border-radius: 24px;
  background: var(--surface-soft);
}

.video-review-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 250ms ease;
}

.video-review:hover img {
  transform: scale(1.025);
}

.video-play {
  position: absolute;
  bottom: 14px;
  left: 14px;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  padding-left: 3px;
  border-radius: 50%;
  color: #1d58a1;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
  font-size: 17px;
}

.video-review strong,
.video-review small {
  display: block;
}

.video-review strong {
  font-size: 15px;
}

.video-review small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.yandex-review-card {
  display: grid;
  min-height: 300px;
  padding: 46px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(135deg, #fff 0%, #f7f7f8 100%);
  box-shadow: var(--shadow);
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.yandex-mark {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border-radius: 24px;
  color: #fff;
  background: #fc3f1d;
  font-size: 48px;
  font-weight: 900;
}

.yandex-label {
  margin: 0 0 8px;
  color: #fc3f1d;
  font-weight: 700;
}

.yandex-review-card h3 {
  max-width: 570px;
  margin: 0;
  font-size: clamp(24px, 3vw, 36px);
}

.yandex-review-card p:last-child {
  max-width: 620px;
  margin: 12px 0 0;
  color: var(--muted);
}

.reviews-action {
  margin-top: 38px;
  text-align: center;
}

.final-cta {
  padding: 90px 0;
  background: var(--bg);
}

.final-card {
  position: relative;
  display: grid;
  overflow: hidden;
  padding: 56px 64px;
  border-radius: var(--radius-lg);
  color: #fff;
  background: linear-gradient(271.51deg, #507c53 0%, #75be7a 100%);
  grid-template-columns: minmax(0, 1.3fr) minmax(250px, 0.7fr);
  gap: 54px;
  align-items: center;
}

.final-card::before,
.final-card::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.final-card::before {
  top: -125px;
  right: -105px;
  width: 340px;
  height: 340px;
  border: 70px solid rgba(255, 255, 255, 0.04);
}

.final-card::after {
  bottom: -90px;
  left: 33%;
  width: 190px;
  height: 190px;
  background: rgba(190, 21, 44, 0.1);
}

.final-copy,
.final-promo {
  position: relative;
  z-index: 1;
}

.eyebrow-light {
  color: #f7a86f;
}

.final-copy h2 {
  color: #fff;
}

.final-copy > p:not(.eyebrow) {
  max-width: 660px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
}

.button-accent {
  color: #fff;
  background: var(--green);
  box-shadow: 0 10px 20px rgba(248, 58, 84, 0.34);
}

.button-accent:hover {
  background: var(--green-dark);
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
}

.final-promo {
  padding: 26px;
  border: 2px dashed rgba(255, 255, 255, 0.34);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
  transform: rotate(2deg);
}

.final-promo span,
.final-promo strong,
.final-promo small {
  display: block;
}

.final-promo span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.final-promo strong {
  margin: 7px 0 4px;
  font-size: clamp(36px, 5vw, 52px);
  letter-spacing: 0.08em;
  line-height: 1;
}

.final-promo small {
  color: #ffb37e;
  font-weight: 700;
}

.site-footer {
  padding: 44px 0 26px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.footer-main {
  display: grid;
  padding-bottom: 30px;
  grid-template-columns: 1.1fr 0.8fr 1.4fr;
  gap: 40px;
}

.footer-about img {
  width: 151px;
  height: 60px;
  object-fit: contain;
  object-position: left center;
}

.footer-about p {
  max-width: 310px;
  margin: 12px 0 0;
}

.footer-contacts,
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer-contacts a {
  color: var(--green);
  font-weight: 700;
}

.footer-contacts a,
.footer-main a {
  text-decoration: none;
}

.footer-main,
.footer-bottom,
.company-details {
  color: var(--muted);
  font-size: 13px;
}

.footer-legal strong {
  color: var(--text);
  font-size: 15px;
}

.footer-main a:hover,
.footer-bottom a:hover {
  color: var(--green);
}

.company-details {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.company-details summary {
  padding: 17px 0;
  color: var(--text);
  cursor: pointer;
  font-weight: 700;
}

.company-details-grid {
  display: grid;
  padding: 0 0 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 30px;
}

.company-details-grid p {
  margin: 0;
}

.company-address {
  grid-column: 1 / -1;
}

.company-details strong {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 22px;
}

.footer-bottom a {
  color: var(--muted);
}

.toast {
  position: fixed;
  z-index: 50;
  right: 24px;
  bottom: 24px;
  display: flex;
  visibility: hidden;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 14px;
  color: #fff;
  background: var(--green-dark);
  box-shadow: 0 14px 35px rgba(23, 75, 49, 0.28);
  font-size: 14px;
  font-weight: 800;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.toast span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: var(--green-dark);
  background: #fff;
}

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

@media (max-width: 1050px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
    gap: 30px;
  }

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

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

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

  .final-card {
    padding: 50px 44px;
  }
}

@media (max-width: 800px) {
  .hero {
    padding: 55px 0 68px;
  }

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

  .hero-content {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  h1,
  .hero-lead {
    margin-inline: auto;
  }

  .promo-box {
    text-align: left;
  }

  .hero-content .actions {
    justify-content: center;
  }

  .order-note {
    margin-inline: auto;
  }

  .hero-visual {
    width: min(100%, 560px);
    min-height: 0;
    margin: 22px auto 0;
  }

  .section {
    padding: 75px 0;
  }

  .section-heading {
    display: block;
    text-align: center;
  }

  .section-intro {
    margin: 15px auto 0;
  }

  .menu-footer {
    flex-direction: column;
    text-align: center;
  }

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

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

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

  .footer-bottom nav {
    justify-content: flex-start;
  }

  .yandex-review-card {
    padding: 36px;
    grid-template-columns: auto minmax(0, 1fr);
  }

  .yandex-review-card .button {
    grid-column: 1 / -1;
  }

  .final-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .final-copy > p:not(.eyebrow) {
    margin-inline: auto;
  }

  .final-copy .actions {
    justify-content: center;
  }

  .final-promo {
    width: min(100%, 360px);
    margin-inline: auto;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .header-inner {
    min-height: 72px;
  }

  .header-phone small {
    display: none;
  }

  .brand {
    height: 56px;
  }

  .brand img {
    width: 141px;
    height: 56px;
  }

  .header-phone span {
    font-size: 0;
  }

  .header-phone span::after {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--green);
    content: "\260E";
    font-size: 19px;
  }

  .hero {
    padding-top: 43px;
  }

  h1 {
    font-size: clamp(40px, 12vw, 53px);
  }

  h2 {
    font-size: 35px;
  }

  .hero-lead {
    margin-top: 19px;
    font-size: 17px;
  }

  .promo-box {
    width: 100%;
    min-width: 0;
    gap: 15px;
  }

  .promo-box > div {
    min-width: 0;
  }

  .promo-code {
    font-size: 28px;
  }

  .promo-discount {
    width: 65px;
  }

  .actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
    min-height: 58px;
  }

  .hero-visual {
    min-height: 0;
    margin-top: 28px;
  }

  .hero-badge {
    width: 88px;
    height: 88px;
  }

  .hero-badge strong {
    font-size: 25px;
  }

  .delivery-note {
    right: 0;
    bottom: -22px;
  }

  .hero-photo {
    border-width: 5px;
    border-radius: 22px;
    transform: none;
  }

  .hero-dish-caption {
    right: 10px;
    bottom: 10px;
    left: 10px;
    padding: 11px 13px;
    border-radius: 12px;
  }

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

  .benefit-card {
    padding: 67px 22px 26px;
    text-align: center;
  }

  .benefit-card h3 {
    margin: 0;
  }

  .benefit-card p {
    margin-top: 10px;
  }

  .benefits-grid {
    gap: 70px;
    padding-top: 48px;
  }

  .benefit-icon {
    width: 96px;
    height: 96px;
    top: -48px;
  }

  .dish-content {
    min-height: 195px;
  }

  .menu-footer .button {
    margin-top: 3px;
  }

  .review-tabs {
    margin-bottom: 22px;
  }

  .review-tab {
    padding: 13px 8px 16px;
    font-size: 16px;
  }

  .video-reviews {
    grid-auto-columns: 82%;
    grid-auto-flow: column;
    grid-template-columns: none;
    overflow-x: auto;
    padding-bottom: 14px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .video-reviews::-webkit-scrollbar {
    display: none;
  }

  .video-review {
    scroll-snap-align: start;
  }

  .video-review-image {
    border-radius: 20px;
  }

  .yandex-review-card {
    min-height: 0;
    padding: 28px 22px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .yandex-mark {
    width: 72px;
    height: 72px;
    margin-inline: auto;
    border-radius: 20px;
    font-size: 40px;
  }

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

  .final-cta {
    padding: 60px 0;
  }

  .final-card {
    padding: 40px 20px;
    border-radius: 25px;
    gap: 36px;
  }

  .final-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .toast {
    right: 14px;
    bottom: 14px;
    left: 14px;
    justify-content: center;
  }

  .footer-main,
  .company-details-grid {
    grid-template-columns: 1fr;
  }

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

  .company-address {
    grid-column: auto;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
