:root {
  --color-text: #2f2f35;
  --color-muted: #4d4d54;
  --color-accent: #ffd53f;
  --color-accent-strong: #f4c400;
  --color-cream: #fffaf0;
  --container-width: 1330px;
}

@font-face {
  font-family: "Gilroy";
  src:
    url("../fonts/gilroy/Gilroy-Regular.woff2") format("woff2"),
    url("../fonts/gilroy/Gilroy-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src:
    url("../fonts/gilroy/Gilroy-Medium.woff2") format("woff2"),
    url("../fonts/gilroy/Gilroy-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src:
    url("../fonts/gilroy/Gilroy-Semibold.woff2") format("woff2"),
    url("../fonts/gilroy/Gilroy-Semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src:
    url("../fonts/gilroy/Gilroy-Bold.woff2") format("woff2"),
    url("../fonts/gilroy/Gilroy-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src:
    url("../fonts/gilroy/Gilroy-Extrabold.woff2") format("woff2"),
    url("../fonts/gilroy/Gilroy-Extrabold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src:
    url("../fonts/gilroy/Gilroy-Black.woff2") format("woff2"),
    url("../fonts/gilroy/Gilroy-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--color-text);
  font-family: "Gilroy", Arial, sans-serif;
  background: #fff;
}

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

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

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

.site-header {
  position: relative;
  z-index: 3;
  background: #fff;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 94px;
  gap: 32px;
}

.logo {
  flex: 0 0 auto;
}

.logo img {
  width: 120px;
  height: auto;
  overflow: visible;
}

.header__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 auto;
  gap: clamp(18px, 3vw, 36px);
  margin-left: auto;
  color: #2e3038;
  font-size: 18px;
  font-weight: 600;
}

.header__nav a {
  transition:
    color 180ms ease,
    opacity 180ms ease;
  white-space: nowrap;
}

.header__nav a:hover {
  color: #111217;
  opacity: 0.75;
}

.header__phone {
  flex: 0 0 auto;
  color: var(--color-accent);
  font-size: 18px;
  font-weight: 800;
  white-space: nowrap;
}

.header__burger {
  display: none;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  padding: 4px 2px;
  border: 0;
  color: #303037;
  background: transparent;
  cursor: pointer;
}

.header__burger span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.header__burger span + span {
  margin-top: 4px;
}

.site-header--menu-open .header__burger span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header--menu-open .header__burger span:nth-child(2) {
  opacity: 0;
}

.site-header--menu-open .header__burger span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 590px;
  background:
    linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.92) 9%, rgba(255, 255, 255, 0) 24%),
    linear-gradient(90deg, #fff 0%, #fff8e6 32%, #f7eccd 62%, #f0dfb9 100%);
}

.hero__content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  min-height: 590px;
  padding-block: 58px 74px;
}

.hero__text {
  position: relative;
  z-index: 2;
  max-width: 570px;
}

.hero h1 {
  margin: 0;
  color: #313137;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.hero h1 span {
  color: var(--color-accent);
}

.hero p {
  max-width: 470px;
  margin: 34px 0 0;
  color: var(--color-muted);
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.25;
  font-weight: 600;
}

.order-card {
  margin-top: 64px;
}

.order-card h2 {
  margin: 0 0 24px;
  color: #303037;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.order-card__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(160px, 1fr));
  gap: 12px;
  max-width: 600px;
}

.order-card__button {
  min-height: 70px;
  padding: 18px 32px;
  border: 2px solid rgba(255, 213, 63, 0.75);
  border-radius: 8px;
  color: #303037;
  font: inherit;
  font-size: 17px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.34);
  cursor: not-allowed;
  opacity: 1;
}

.order-card__button--active {
  border-color: var(--color-accent);
  background: var(--color-accent);
  box-shadow: 0 14px 28px rgba(255, 213, 63, 0.24);
}

.hero__phone {
  position: absolute;
  right: clamp(-70px, 3vw, 18px);
  bottom: -8px;
  z-index: 1;
  width: min(54vw, 590px);
  min-width: 430px;
  pointer-events: none;
}

.hero__phone img {
  width: 100%;
  height: auto;
}

.partners {
  position: relative;
  z-index: 4;
  margin-top: -44px;
  padding: 58px 0 48px;
  background: #fff;
  border-radius: 42px 42px 0 0;
}

.partners .container {
  filter: drop-shadow(0 18px 38px rgba(66, 52, 17, 0.08));
}

.partners picture {
  display: block;
}

.partners img {
  width: 100%;
  border-radius: 20px;
}

.order-promo {
  padding: 24px 0 58px;
  background: #fff;
}

.order-promo__card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.44fr) minmax(420px, 0.56fr);
  align-items: center;
  min-height: 294px;
  overflow: hidden;
  padding: 54px 62px;
  background: linear-gradient(100deg, #fff8df 0%, #fff7df 52%, #fff 100%);
  border-radius: 26px;
}

.order-promo__text {
  position: relative;
  z-index: 2;
  max-width: 410px;
}

.order-promo h2,
.service-stats h2 {
  margin: 0;
  color: #303037;
  font-size: clamp(34px, 3.4vw, 48px);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.order-promo p {
  margin: 14px 0 28px;
  color: #3f4047;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.22;
  font-weight: 500;
}

.order-promo__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 300px;
  min-height: 70px;
  padding: 18px 36px;
  border-radius: 8px;
  color: #303037;
  font-size: 20px;
  font-weight: 600;
  background: var(--color-accent);
  box-shadow: 0 14px 28px rgba(255, 213, 63, 0.24);
}

.order-promo__image {
  position: absolute;
  right: -10px;
  top: 0;
  bottom: 0;
  width: min(62vw, 744px);
}

.order-promo__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.service-stats {
  padding: 0 0 80px;
  background: #fff;
}

.service-stats h2 {
  max-width: 1160px;
}

.service-stats h2 span {
  display: block;
  color: var(--color-accent);
}

.service-stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 42px;
}

.service-stats__card {
  min-height: 170px;
  padding: 34px 30px 28px;
  background: #f8f8f8;
  border-radius: 20px;
}

.service-stats__card--accent {
  background: #fff8df;
}

.service-stats__card strong {
  display: block;
  color: var(--color-accent);
  font-size: clamp(48px, 5vw, 70px);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.service-stats__card p {
  max-width: 320px;
  margin: 26px 0 0;
  color: #3f4047;
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.22;
  font-weight: 600;
}

.mobile-app {
  padding: 0 0 88px;
  background: #fff;
}

.mobile-app__card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(430px, 0.62fr) minmax(320px, 0.38fr);
  min-height: 470px;
  overflow: hidden;
  padding: 82px 68px 60px;
  background: #fff8df;
  border-radius: 26px;
}

.mobile-app__content {
  position: relative;
  z-index: 2;
  max-width: 660px;
}

.mobile-app h2 {
  margin: 0;
  color: #303037;
  font-size: clamp(38px, 3.8vw, 54px);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.mobile-app p {
  max-width: 520px;
  margin: 34px 0 32px;
  color: #3f4047;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.18;
  font-weight: 500;
}

.mobile-app__download {
  display: flex;
  align-items: center;
  gap: 24px;
}

.mobile-app__qr {
  width: 172px;
  flex: 0 0 auto;
  border-radius: 10px;
}

.mobile-app__download-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.mobile-app__download-text span {
  color: #3f4047;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 500;
}

.mobile-app__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 285px;
  min-height: 66px;
  padding: 18px 30px;
  border-radius: 8px;
  color: #303037;
  font-size: 18px;
  font-weight: 600;
  background: var(--color-accent);
  box-shadow: 0 14px 28px rgba(255, 213, 63, 0.24);
}

.mobile-app__phone {
  position: absolute;
  right: 86px;
  bottom: -6px;
  width: min(32vw, 385px);
}

.mobile-app__phone img {
  width: 100%;
}

.partner-carousel {
  overflow: hidden;
  padding: 0 0 88px;
  background: #fff;
}

.partner-carousel h2 {
  margin: 0 0 44px;
  color: #303037;
  text-align: center;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.partner-carousel__viewport {
  width: 100%;
  overflow: hidden;
}

.partner-carousel__track {
  display: flex;
  width: max-content;
  padding-block: 8px 14px;
  animation: partner-carousel-scroll 22s linear infinite;
}

.partner-carousel__viewport:hover .partner-carousel__track {
  animation-play-state: paused;
}

.partner-carousel__group {
  display: flex;
  gap: 24px;
  padding-right: 24px;
}

.partner-carousel__item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 280px;
  background: #fff;
  border-radius: 14px;
  box-shadow:
    0 3px 0 rgba(0, 0, 0, 0.06),
    0 6px 14px rgba(40, 35, 24, 0.16);
}

.partner-carousel__item img {
  max-width: 100%;
}

@keyframes partner-carousel-scroll {
  from {
    transform: translateX(0);
  }

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

.how-it-works {
  padding: 0 0 96px;
  background: #fff;
}

.how-it-works h2 {
  margin: 0 0 34px;
  color: #303037;
  text-align: center;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.how-it-works__card {
  padding: 52px 70px 62px;
  background: #f7f7f7;
  border-radius: 26px;
}

.how-it-works__intro {
  text-align: center;
}

.how-it-works__intro h3 {
  margin: 0;
  color: #303037;
  font-size: clamp(34px, 3vw, 52px);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.how-it-works__intro p {
  margin: 14px 0 0;
  color: #4a4a50;
  font-size: clamp(22px, 2.1vw, 32px);
  line-height: 1.16;
  font-weight: 500;
}

.how-it-works__steps {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) 70px minmax(180px, 1fr) 70px minmax(180px, 1fr);
  align-items: center;
  gap: 34px;
  margin-top: 64px;
}

.how-it-works__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.how-it-works__step img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.how-it-works__step p {
  max-width: 270px;
  margin: 28px 0 0;
  color: #3f4047;
  font-size: clamp(18px, 1.55vw, 24px);
  line-height: 1.08;
  font-weight: 500;
}

.how-it-works__arrow {
  width: 62px;
  justify-self: center;
}

.how-to-order {
  padding: 0 0 96px;
  background: #fff;
}

.how-to-order h2 {
  margin: 0 0 34px;
  color: #303037;
  text-align: center;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.how-to-order__card {
  overflow: hidden;
  background: #fff;
  border-radius: 26px;
  box-shadow:
    0 3px 0 rgba(0, 0, 0, 0.04),
    0 10px 30px rgba(40, 35, 24, 0.12);
}

.how-to-order__tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-bottom: 1px solid #eeeeee;
}

.how-to-order__tab {
  position: relative;
  min-height: 82px;
  border: 0;
  color: rgba(48, 48, 55, 0.34);
  font: inherit;
  font-size: clamp(22px, 2.1vw, 32px);
  font-weight: 500;
  background: transparent;
  opacity: 1;
}

.how-to-order__tab--active {
  color: #303037;
}

.how-to-order__tab--active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 4px;
  background: var(--color-accent);
}

.how-to-order__steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 26px 34px 46px;
  list-style: none;
}

.how-to-order__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.how-to-order__number {
  display: block;
  margin-bottom: 18px;
  color: #dddddd;
  font-size: clamp(42px, 4.2vw, 70px);
  line-height: 0.9;
  font-weight: 600;
}

.how-to-order__step img {
  width: 100%;
  object-fit: contain;
}

.how-to-order__step p {
  max-width: 210px;
  margin: 26px 0 0;
  color: #303037;
  font-size: clamp(18px, 1.55vw, 24px);
  line-height: 1.08;
  font-weight: 500;
}

.app-info {
  padding: 0 0 96px;
  background: #fff;
}

.app-info__card {
  position: relative;
  display: grid;
  grid-template-columns: 260px minmax(360px, 1fr) 230px;
  align-items: center;
  gap: 42px;
  min-height: 326px;
  overflow: hidden;
  padding: 50px 60px;
  background: #f7f7f7;
  border-radius: 26px;
}

.app-info__phone {
  align-self: stretch;
  position: relative;
}

.app-info__phone img {
  position: absolute;
  left: -28px;
  bottom: -94px;
  width: 300px;
  max-width: none;
}

.app-info__content {
  position: relative;
  z-index: 2;
}

.app-info h2 {
  max-width: 560px;
  margin: 0;
  color: #303037;
  font-size: clamp(34px, 3vw, 48px);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.app-info p {
  max-width: 540px;
  margin: 10px 0 22px;
  color: #4a4a50;
  font-size: clamp(20px, 1.9vw, 30px);
  line-height: 1.1;
  font-weight: 500;
}

.app-info__stores {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 12px 18px;
  align-items: center;
}

.app-info__stores img {
  height: 38px;
  width: auto;
}

.app-info__qr {
  justify-self: end;
  width: 208px;
  border-radius: 10px;
}

.reviews {
  padding: 0 0 96px;
  background: #fff;
}

.reviews h2 {
  max-width: none;
  margin: 0 auto 48px;
  color: #303037;
  text-align: center;
  font-size: clamp(34px, 3.5vw, 56px);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.reviews h2 span {
  color: var(--color-accent);
  white-space: nowrap;
}

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

.reviews__card {
  min-height: 340px;
  padding: 42px 36px;
  background: #f8f8f8;
  border-radius: 20px;
}

.reviews__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.reviews__header div {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.reviews__header strong {
  color: #303037;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 600;
}

.reviews__header time {
  color: #a0a0a6;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
}

.reviews__rating {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  white-space: nowrap;
}

.reviews__rating img {
  width: 24px;
  height: 24px;
}

.reviews__card p {
  margin: 0;
  color: #303037;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.18;
  font-weight: 500;
}

.route-banner {
  padding: 0 0 96px;
  background: #fff;
}

.route-banner__card {
  position: relative;
  overflow: hidden;
  min-height: 292px;
  padding: 52px 68px;
  background:
    linear-gradient(90deg, #fffae8 0%, #fffae8 28%, rgba(255, 250, 232, 0.78) 46%, rgba(255, 250, 232, 0) 68%),
    url("../icons/foods-desktop.png") center right / cover no-repeat,
    #fff8df;
  border-radius: 26px;
}

.route-banner__logo {
  position: relative;
  z-index: 1;
  width: 128px;
  height: auto;
}

.route-banner p {
  position: relative;
  z-index: 1;
  margin: 34px 0 0;
  color: #303037;
  font-size: clamp(34px, 3.2vw, 52px);
  line-height: 0.96;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.route-banner p span {
  color: var(--color-accent);
}

.taste-gallery {
  padding: 0 0 96px;
  background: #fff;
}

.taste-gallery h2 {
  margin: 0 0 34px;
  color: #303037;
  text-align: center;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.taste-gallery h2 span {
  color: var(--color-accent);
}

.taste-gallery__grid {
  --gallery-slant: 18px;
  display: flex;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
}

.taste-gallery__item {
  flex: 1 1 0;
  min-width: 0;
  height: 430px;
  overflow: hidden;
  background: #fff;
}

.taste-gallery__item + .taste-gallery__item {
  margin-left: calc((var(--gallery-slant) - 6px) * -1);
}

.taste-gallery__item--first {
  clip-path: polygon(0 0, 100% 0, calc(100% - var(--gallery-slant)) 100%, 0 100%);
}

.taste-gallery__item--middle {
  clip-path: polygon(var(--gallery-slant) 0, 100% 0, calc(100% - var(--gallery-slant)) 100%, 0 100%);
}

.taste-gallery__item--last {
  clip-path: polygon(var(--gallery-slant) 0, 100% 0, 100% 100%, 0 100%);
}

.taste-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq {
  padding: 0 0 96px;
  background: #fff;
}

.faq h2 {
  margin: 0 0 46px;
  color: #303037;
  text-align: center;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.faq__list {
  max-width: 1220px;
  margin: 0 auto;
}

.faq__item {
  border-top: 1px solid #dddddd;
}

.faq__item:last-child {
  border-bottom: 1px solid #dddddd;
}

.faq__item summary {
  display: grid;
  grid-template-columns: 1fr 32px;
  align-items: center;
  gap: 28px;
  min-height: 64px;
  padding: 12px 84px;
  color: #303037;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "+";
  justify-self: center;
  color: #303037;
  font-size: 28px;
  line-height: 1;
  font-weight: 400;
}

.faq__item[open] summary::after {
  content: "−";
}

.faq__item p {
  margin: -4px 0 20px;
  padding: 0 150px 0 84px;
  color: #9d9da3;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 500;
}

.site-footer {
  padding: 0 0 28px;
  background: #fff;
}

.site-footer__surface {
  background:
    linear-gradient(90deg, #fff 0%, #fffaf0 34%, #fff1b8 100%);
  border-radius: 28px 28px 0 0;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 300px 1fr 1.2fr;
  gap: 120px;
  padding: 38px 68px 26px;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.site-footer__logo {
  width: 128px;
  margin-bottom: 44px;
}

.site-footer__qr {
  width: 150px;
  margin-bottom: 34px;
  border-radius: 8px;
}

.site-footer__apps {
  margin-bottom: 36px;
}

.site-footer__brand p {
  margin: 0;
  color: #303037;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 500;
}

.site-footer__nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.site-footer__nav h2 {
  margin: 0 0 20px;
  color: #b9ad90;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 600;
}

.site-footer__nav a {
  color: #303037;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 500;
}

.site-footer__nav a + a {
  margin-top: 20px;
}

.site-footer__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.site-footer__contacts {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 48px;
}

.site-footer__contacts > a:first-child {
  color: #303037;
  font-size: 20px;
  line-height: 1;
  font-weight: 500;
}

.site-footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: #fff;
  font-size: 9px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  background: #303037;
}

.site-footer__partners {
  margin-top: auto;
  margin-left: -250px;
  mix-blend-mode: multiply;
  max-width: none !important;
}

@media (max-width: 1080px) {
  .header__inner {
    min-height: 82px;
    gap: 22px;
  }

  .header__nav {
    order: 3;
    flex-basis: 100%;
    flex-wrap: wrap;
    gap: 14px 24px;
    justify-content: flex-start;
  }

  .header__inner {
    flex-wrap: wrap;
    padding-block: 14px 18px;
  }

  .hero__content {
    grid-template-columns: 1fr;
    min-height: 650px;
    align-items: start;
  }

  .hero__phone {
    right: -112px;
    bottom: -18px;
    width: 520px;
    opacity: 0.9;
  }

  .order-promo__card {
    grid-template-columns: 1fr;
    min-height: 520px;
    padding: 44px;
  }

  .order-promo__image {
    right: -90px;
    width: 660px;
  }

  .service-stats__grid {
    grid-template-columns: 1fr;
  }

  .mobile-app__card {
    grid-template-columns: 1fr;
    min-height: 690px;
  }

  .mobile-app__phone {
    right: 50%;
    bottom: -20px;
    width: 360px;
    transform: translateX(50%);
  }

  .partner-carousel__item {
    flex-basis: 220px;
  }

  .how-it-works__card {
    padding-inline: 42px;
  }

  .how-it-works__steps {
    grid-template-columns: minmax(150px, 1fr) 48px minmax(150px, 1fr) 48px minmax(150px, 1fr);
    gap: 22px;
  }

  .how-to-order__steps {
    gap: 14px;
    padding-inline: 20px;
  }

  .how-to-order__step img {
    height: 220px;
  }

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

@media (max-width: 720px) {
  .container {
    width: min(100% - 32px, var(--container-width));
  }

  .site-header {
    position: sticky;
    top: 0;
  }

  .header__inner {
    flex-wrap: nowrap;
    min-height: 56px;
    gap: 10px;
    padding-block: 8px;
  }

  .header__nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border-radius: 16px;
    font-size: 16px;
    background: #fff;
    box-shadow: 0 18px 40px rgba(40, 35, 24, 0.14);
  }

  .header__nav a {
    padding: 12px 10px;
  }

  .site-header--menu-open .header__nav {
    display: flex;
  }

  .header__phone {
    margin-left: auto;
    font-size: 16px;
  }

  .header__burger {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
  }

  .hero {
    min-height: auto;
  }

  .hero__content {
    min-height: auto;
    padding-block: 20px 0;
  }

  .hero p {
    margin-top: 14px;
  }

  .order-card {
    margin-top: 24px;
  }

  .order-card__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
    gap: 8px;
  }

  .order-card__button {
    min-height: 46px;
    padding: 12px 14px;
    font-size: 14px;
  }

  .hero__phone {
    position: relative;
    left: 50%;
    right: auto;
    bottom: auto;
    width: min(112vw, 440px);
    min-width: 0;
    margin-top: 18px;
    transform: translateX(-50%);
  }

  .partners {
    margin-top: -30px;
    padding: 42px 0 32px;
    border-radius: 30px 30px 0 0;
  }

  .order-promo {
    padding: 10px 0 42px;
  }

  .order-promo__card {
    display: block;
    min-height: auto;
    padding: 28px 16px 16px;
    border-radius: 20px;
  }

  .order-promo__text {
    max-width: none;
  }

  .order-promo h2 {
    max-width: 260px;
    font-size: 24px;
    line-height: 1;
  }

  .order-promo p {
    max-width: 300px;
    margin: 12px 0 14px;
    font-size: 12px;
    line-height: 1.15;
  }

  .order-promo__button {
    width: 100%;
    min-width: 0;
    min-height: 34px;
    font-size: 18px;
    border-radius: 6px;
  }

  .order-promo__image {
    display: none;
  }

  .service-stats {
    padding-bottom: 52px;
  }

  .service-stats__grid {
    gap: 16px;
    margin-top: 28px;
  }

  .service-stats__card {
    min-height: 150px;
    padding: 28px 24px 24px;
  }

  .mobile-app {
    padding-bottom: 52px;
  }

  .mobile-app__card {
    display: block;
    min-height: auto;
    padding: 28px 16px 0;
    border-radius: 20px;
  }

  .mobile-app h2 {
    max-width: 320px;
    font-size: 24px;
    line-height: 0.95;
  }

  .mobile-app p {
    max-width: 300px;
    margin: 12px 0 14px;
    font-size: 12px;
    line-height: 1.15;
  }

  .mobile-app__download {
    display: block;
  }

  .mobile-app__qr,
  .mobile-app__download-text span {
    display: none;
  }

  .mobile-app__button {
    width: 100%;
    min-width: 0;
    min-height: 34px;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 14px;
  }

  .mobile-app__phone {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(92vw, 385px);
    margin: 28px auto 0;
    transform: none;
  }

  .partner-carousel {
    padding-bottom: 52px;
  }

  .partner-carousel h2 {
    margin-bottom: 22px;
    text-align: left;
    font-size: 18px;
  }

  .partner-carousel__track {
    animation-duration: 18s;
  }

  .partner-carousel__group {
    gap: 8px;
    padding-right: 8px;
  }

  .partner-carousel__item {
    flex-basis: 200px;
    border-radius: 8px;
  }

  .how-it-works {
    padding-bottom: 52px;
  }

  .how-it-works h2 {
    margin-bottom: 18px;
    text-align: center;
    font-size: 22px;
  }

  .how-it-works__card {
    padding: 26px 18px 32px;
    border-radius: 20px;
  }

  .how-it-works__intro {
    text-align: left;
  }

  .how-it-works__intro h3 {
    max-width: 250px;
    font-size: 28px;
    line-height: 0.98;
  }

  .how-it-works__intro p {
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.15;
  }

  .how-it-works__steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 34px;
  }

  .how-it-works__step img {
    width: 54px;
    height: 54px;
  }

  .how-it-works__step p {
    max-width: 260px;
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.14;
  }

  .how-it-works__arrow {
    width: 42px;
    transform: rotate(90deg);
  }

  .how-to-order {
    padding-bottom: 52px;
  }

  .how-to-order h2 {
    margin-bottom: 18px;
    text-align: center;
    font-size: 22px;
  }

  .how-to-order__card {
    border-radius: 12px;
  }

  .how-to-order__tab {
    min-height: 54px;
    font-size: 16px;
  }

  .how-to-order__tab--active::after {
    height: 2px;
  }

  .how-to-order__steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 34px;
    padding: 18px 16px 34px;
  }

  .how-to-order__number {
    margin-bottom: 16px;
    font-size: 34px;
  }

  .how-to-order__step img {
    height: auto;
  }

  .how-to-order__step p {
    max-width: 280px;
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.08;
  }

  .app-info {
    padding-bottom: 52px;
  }

  .app-info__card {
    display: grid;
    grid-template-columns: max-content 126px;
    grid-template-areas:
      "title title"
      "text text"
      "stores qr"
      "phone phone";
    align-items: start;
    justify-content: center;
    gap: 18px 12px;
    min-height: auto;
    padding: 36px 22px 0;
    border-radius: 12px;
  }

  .app-info__content {
    display: contents;
  }

  .app-info h2 {
    grid-area: title;
    justify-self: start;
    max-width: 270px;
    font-size: 28px;
    line-height: 0.98;
  }

  .app-info p {
    grid-area: text;
    justify-self: start;
    max-width: 290px;
    margin: -8px 0 0;
    font-size: 16px;
    line-height: 1.12;
  }

  .app-info__stores {
    grid-area: stores;
    grid-template-columns: 1fr;
    gap: 8px;
    align-self: center;
  }

  .app-info__stores img {
    height: 28px;
  }

  .app-info__qr {
    grid-area: qr;
    width: 126px;
    justify-self: start;
  }

  .app-info__phone {
    grid-area: phone;
    height: 265px;
    margin-top: 0;
  }

  .app-info__phone img {
    left: 50%;
    bottom: -150px;
    width: min(108vw, 420px);
    transform: translateX(-50%) rotate(10deg);
  }

  .reviews {
    padding-bottom: 52px;
  }

  .reviews h2 {
    max-width: 330px;
    margin-bottom: 28px;
    font-size: 28px;
  }

  .reviews__grid {
    gap: 28px;
  }

  .reviews__card {
    min-height: auto;
    padding: 32px 26px;
    border-radius: 14px;
  }

  .reviews__header {
    gap: 12px;
    margin-bottom: 16px;
  }

  .reviews__header div {
    gap: 10px;
  }

  .reviews__header strong {
    font-size: 18px;
  }

  .reviews__header time {
    font-size: 14px;
  }

  .reviews__rating {
    gap: 1px;
  }

  .reviews__rating img {
    width: 20px;
    height: 20px;
  }

  .reviews__card p {
    font-size: 18px;
    line-height: 1.16;
  }

  .route-banner {
    padding-bottom: 52px;
  }

  .route-banner__card {
    min-height: 278px;
    padding: 42px 36px;
    background:
      linear-gradient(135deg, #fffae8 0%, #fffae8 34%, rgba(255, 250, 232, 0.74) 58%, rgba(255, 250, 232, 0) 100%),
      url("../icons/foods-mobile.png") center right / cover no-repeat,
      #fff8df;
    border-radius: 12px;
  }

  .route-banner__logo {
    width: 126px;
  }

  .route-banner p {
    margin-top: 34px;
    font-size: 28px;
    line-height: 1;
  }

  .taste-gallery {
    padding-bottom: 52px;
  }

  .taste-gallery h2 {
    margin-bottom: 22px;
    font-size: 24px;
  }

  .taste-gallery__grid {
    --gallery-slant: 14px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px 0;
    border-radius: 14px;
  }

  .taste-gallery__item {
    height: 290px;
  }

  .taste-gallery__item + .taste-gallery__item {
    margin-left: 0;
  }

  .taste-gallery__item:nth-child(2),
  .taste-gallery__item:nth-child(4) {
    margin-left: calc((var(--gallery-slant) - 5px) * -1);
  }

  .taste-gallery__item:nth-child(1),
  .taste-gallery__item:nth-child(3) {
    clip-path: polygon(0 0, 100% 0, calc(100% - var(--gallery-slant)) 100%, 0 100%);
  }

  .taste-gallery__item:nth-child(2),
  .taste-gallery__item:nth-child(4) {
    clip-path: polygon(var(--gallery-slant) 0, 100% 0, 100% 100%, 0 100%);
  }

  .faq {
    padding-bottom: 52px;
  }

  .faq h2 {
    margin-bottom: 22px;
    text-align: left;
    font-size: 22px;
  }

  .faq__item summary {
    grid-template-columns: 1fr 24px;
    gap: 18px;
    min-height: 50px;
    padding: 10px 0;
    font-size: 14px;
    line-height: 1.25;
  }

  .faq__item summary::after {
    font-size: 24px;
  }

  .faq__item p {
    margin: -2px 0 14px;
    padding: 0 34px 0 0;
    font-size: 14px;
    line-height: 1.3;
  }

  .site-footer {
    padding-bottom: 0;
  }

  .site-footer__surface {
    border-radius: 0 28px 0 0;
    background: linear-gradient(90deg, #fff 0%, #fffaf0 35%, #fff1b8 100%);
  }

  .site-footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 100%;
    padding: 34px 14px 26px;
  }

  .site-footer__brand,
  .site-footer__nav,
  .site-footer__info {
    align-items: center;
    text-align: center;
  }

  .site-footer__logo {
    width: 128px;
    margin-bottom: 26px;
  }

  .site-footer__qr {
    width: 146px;
    margin-bottom: 22px;
  }

  .site-footer__apps {
    margin-bottom: 0;
  }

  .site-footer__brand p {
    order: 10;
    margin-top: 26px;
    font-size: 13px;
  }

  .site-footer__nav h2 {
    margin-bottom: 18px;
    font-size: 18px;
  }

  .site-footer__nav a {
    font-size: 13px;
  }

  .site-footer__nav a + a {
    margin-top: 14px;
  }

  .site-footer__contacts {
    margin-top: 28px;
    justify-content: center;
  }

  .site-footer__contacts > a:first-child {
    font-size: 13px;
  }

  .site-footer__partners {
    margin-left: 0;
    width: 80%;
    margin-top: 28px;
  }
}

@media (max-width: 480px) {
  .header__inner {
    align-items: center;
  }

  .logo img {
    width: 120px;
    height: auto;
    overflow: visible;
  }

  .header__phone {
    margin-top: 0;
  }

  .hero__content {
    min-height: auto;
    padding-bottom: 0;
  }

  .hero__phone {
    width: min(120vw, 390px);
  }

  .order-promo__button {
    font-size: 14px;
  }
}
