:root {
  --lime: #96bd19;
  --lime-dark: #75970f;
  --lime-soft: #f1f7dd;
  --yellow: #ffd83d;
  --ink: #20272d;
  --muted: #687178;
  --line: #dfe3e5;
  --paper: #ffffff;
  --soft: #f5f6f3;
  --container: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

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

button {
  font: inherit;
}

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

h1,
h2,
h3 {
  margin: 0;
  font-family: "Montserrat", "Manrope", Arial, sans-serif;
}

h1 {
  max-width: 690px;
  font-size: clamp(50px, 6.4vw, 86px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

h1 span {
  color: var(--lime-dark);
}

h2 {
  font-size: clamp(36px, 4.2vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h3 {
  line-height: 1.25;
}

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

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

.header-inner {
  display: flex;
  min-height: 91px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand img {
  width: 200px;
  height: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

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

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

.header-phone strong {
  font-size: 18px;
}

.header-phone span {
  color: var(--muted);
  font-size: 12px;
}

.header-order {
  padding: 12px 19px;
  border: 1px solid var(--lime-dark);
  border-radius: 7px;
  color: var(--lime-dark);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 88px;
  background:
    radial-gradient(circle at 88% 18%, rgba(150, 189, 25, 0.15) 0 90px, transparent 91px),
    linear-gradient(90deg, rgba(150, 189, 25, 0.08) 1px, transparent 1px) 0 0 / 80px 80px,
    linear-gradient(rgba(150, 189, 25, 0.08) 1px, transparent 1px) 0 0 / 80px 80px,
    var(--soft);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(430px, 0.96fr);
  gap: 72px;
  align-items: center;
}

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

.hero-lead {
  max-width: 650px;
  margin: 25px 0 27px;
  color: #536067;
  font-size: clamp(18px, 2vw, 21px);
}

.gift-card {
  display: flex;
  width: min(100%, 580px);
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  border-left: 5px solid var(--yellow);
  background: #fff;
  box-shadow: 0 14px 35px rgba(32, 39, 45, 0.08);
}

.gift-icon {
  display: grid;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--yellow);
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
}

.gift-card small,
.gift-card strong,
.gift-promo {
  display: block;
}

.gift-card small {
  color: var(--muted);
  font-size: 12px;
}

.gift-card strong {
  font-size: 17px;
}

.gift-promo {
  margin-top: 7px;
  color: var(--ink);
  font-size: 13px;
}

.gift-promo b {
  display: inline-block;
  margin: 0 3px;
  padding: 3px 8px;
  border: 1px dashed var(--lime-dark);
  border-radius: 4px;
  color: var(--lime-dark);
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 27px;
}

.button {
  display: inline-flex;
  min-height: 57px;
  align-items: center;
  justify-content: center;
  gap: 17px;
  padding: 15px 25px;
  border: 0;
  border-radius: 7px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(117, 151, 15, 0.35);
  outline-offset: 3px;
}

.button-primary {
  color: #fff;
  background: var(--lime-dark);
  box-shadow: 0 13px 25px rgba(117, 151, 15, 0.25);
}

.button-primary:hover {
  background: #66840c;
}

.button-link {
  min-height: auto;
  padding-inline: 5px;
  border-radius: 0;
  border-bottom: 1px solid var(--ink);
}

.button-dark {
  color: #fff;
  background: var(--ink);
}

.button-white {
  color: var(--ink);
  background: #fff;
  box-shadow: 0 12px 35px rgba(32, 39, 45, 0.18);
}

.hero-facts {
  display: grid;
  max-width: 650px;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(3, 1fr);
}

.hero-facts li {
  padding-right: 15px;
  border-right: 1px solid #cdd2ce;
}

.hero-facts li + li {
  padding-left: 20px;
}

.hero-facts li:last-child {
  border-right: 0;
}

.hero-facts strong,
.hero-facts span {
  display: block;
}

.hero-facts strong {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
}

.hero-facts span {
  color: var(--muted);
  font-size: 11px;
}

.hero-visual {
  position: relative;
  min-width: 0;
  padding: 38px 26px 28px 20px;
}

.hero-visual::before {
  position: absolute;
  z-index: 0;
  top: 5px;
  right: -18px;
  bottom: 0;
  left: 70px;
  border-radius: 38px 90px 38px 90px;
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.26) 0 7px, transparent 8px),
    radial-gradient(circle at 90% 27%, rgba(255, 255, 255, 0.22) 0 4px, transparent 5px),
    var(--lime);
  box-shadow: 0 28px 60px rgba(117, 151, 15, 0.2);
  content: "";
  transform: rotate(3deg);
}

.hero-visual::after {
  position: absolute;
  z-index: 0;
  right: -42px;
  bottom: 65px;
  width: 108px;
  height: 108px;
  border: 22px solid var(--yellow);
  border-radius: 50%;
  content: "";
}

.hero-photo {
  position: relative;
  z-index: 1;
  overflow: hidden;
  aspect-ratio: 4 / 4.25;
  border: 10px solid #fff;
  border-radius: 48% 48% 18px 18px;
  background: #fff;
  box-shadow: 0 30px 70px rgba(32, 39, 45, 0.25);
}

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

.hero-caption {
  position: absolute;
  z-index: 2;
  right: -24px;
  bottom: 26px;
  width: min(360px, 78%);
  padding: 19px 22px;
  color: #fff;
  background: var(--ink);
}

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

.hero-caption span {
  color: var(--yellow);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-caption strong {
  margin-top: 4px;
  font-size: 21px;
}

.hero-caption small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
}

.hero-sticker {
  position: absolute;
  z-index: 3;
  top: 10px;
  left: -38px;
  display: grid;
  width: 118px;
  height: 118px;
  place-content: center;
  border: 8px solid var(--soft);
  border-radius: 50%;
  color: var(--ink);
  background: var(--yellow);
  text-align: center;
  transform: rotate(-7deg);
}

.hero-sticker strong {
  font-family: "Montserrat", sans-serif;
  font-size: 29px;
  line-height: 1;
}

.hero-sticker span {
  margin-top: 4px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.25;
}

.section {
  padding: 105px 0;
}

.section-heading {
  margin-bottom: 45px;
}

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

.section-heading.split,
.reviews-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
}

.section-heading.split > p {
  max-width: 490px;
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 17px;
}

.benefits {
  border-bottom: 1px solid var(--line);
}

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

.benefit-card {
  position: relative;
  min-height: 245px;
  padding: 38px 30px;
  border: 1px solid var(--line);
  border-right: 0;
  background: #fff;
}

.benefit-card:last-child {
  border-right: 1px solid var(--line);
}

.benefit-card.featured {
  color: #fff;
  border-color: var(--lime-dark);
  background: var(--lime-dark);
  transform: translateY(-18px);
}

.benefit-number {
  color: var(--lime);
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 800;
}

.featured .benefit-number {
  color: var(--yellow);
}

.benefit-card h3 {
  margin-top: 45px;
  font-size: 20px;
}

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

.featured p {
  color: rgba(255, 255, 255, 0.75);
}

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

.menu-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr 0.82fr;
  gap: 22px;
}

.dish-card {
  overflow: hidden;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 15px 40px rgba(32, 39, 45, 0.08);
}

.dish-card > img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
}

.dish-card-wide {
  position: relative;
  min-height: 510px;
}

.dish-card-wide > img {
  height: 100%;
  aspect-ratio: auto;
}

.dish-card-wide::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(18, 24, 28, 0.92) 100%);
  content: "";
}

.dish-overlay {
  position: absolute;
  z-index: 1;
  right: 34px;
  bottom: 30px;
  left: 34px;
  color: #fff;
}

.dish-overlay span,
.dish-body span {
  color: var(--lime);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dish-overlay h3 {
  margin-top: 5px;
  font-size: 29px;
}

.dish-overlay p {
  max-width: 500px;
  margin: 9px 0 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.dish-overlay strong,
.dish-body strong {
  color: var(--yellow);
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
}

.dish-body {
  display: flex;
  min-height: 270px;
  flex-direction: column;
  padding: 25px;
}

.dish-body h3 {
  margin-top: 8px;
  font-size: 21px;
}

.dish-body p {
  margin: 11px 0 20px;
  color: var(--muted);
  font-size: 14px;
}

.dish-body strong {
  margin-top: auto;
  color: var(--lime-dark);
}

.menu-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 30px;
}

.menu-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.delivery {
  color: #fff;
  background: var(--ink);
}

.delivery-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(500px, 1.15fr);
  gap: 85px;
  align-items: center;
}

.delivery .eyebrow {
  color: var(--yellow);
}

.delivery-intro > p:not(.eyebrow) {
  max-width: 530px;
  margin: 22px 0 20px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 17px;
}

.delivery-intro > a {
  color: var(--lime);
  font-weight: 800;
  text-decoration: none;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.steps li {
  display: grid;
  padding: 23px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  grid-template-columns: 55px 1fr;
  gap: 20px;
}

.steps li > span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
}

.steps strong {
  font-size: 17px;
}

.steps p {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.reviews {
  overflow: hidden;
}

.reviews-heading {
  align-items: center;
}

.review-tabs {
  display: flex;
  gap: 8px;
  padding: 5px;
  border-radius: 8px;
  background: var(--soft);
}

.review-tab {
  padding: 11px 16px;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.review-tab.is-active {
  color: #fff;
  background: var(--ink);
}

.review-scroller {
  display: grid;
  grid-auto-columns: minmax(330px, 1fr);
  grid-auto-flow: column;
  gap: 22px;
  overflow-x: auto;
  padding: 20px max(1px, calc((100vw - var(--container)) / 2)) 30px 1px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--lime) var(--soft);
}

.review-card {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  padding: 31px;
  border: 1px solid #cfd3d5;
  border-radius: 9px;
  background: #fff;
  scroll-snap-align: start;
}

.review-card img {
  width: 130px;
  height: 68px;
  margin: -52px 0 18px;
  padding: 7px;
  object-fit: contain;
  background: #fff;
  box-shadow: 0 10px 30px rgba(32, 39, 45, 0.08);
}

.review-card h3 {
  font-size: 19px;
}

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

.review-card a {
  margin-top: auto;
  color: var(--lime-dark);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.yandex-card {
  display: grid;
  min-height: 300px;
  padding: 45px;
  border-radius: 14px;
  background: var(--soft);
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
}

.yandex-mark {
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  background: #fc3f1d;
  font-size: 43px;
  font-weight: 800;
}

.yandex-card span {
  color: #fc3f1d;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.yandex-card h3 {
  max-width: 580px;
  margin-top: 7px;
  font-size: 28px;
}

.yandex-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.yandex-card iframe {
  width: 150px;
  height: 50px;
  border: 0;
}

.yandex-card .button {
  grid-column: 2 / -1;
  justify-self: start;
}

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

.final-card {
  position: relative;
  display: flex;
  overflow: hidden;
  min-height: 300px;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 56px 64px;
  background: var(--lime);
}

.final-card::after {
  position: absolute;
  right: 13%;
  width: 250px;
  height: 250px;
  border: 45px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  content: "";
}

.final-card > * {
  position: relative;
  z-index: 1;
}

.final-card .eyebrow {
  color: var(--ink);
}

.final-card h2 {
  max-width: 750px;
}

.final-card p:not(.eyebrow) {
  max-width: 720px;
  margin: 16px 0 0;
  color: rgba(32, 39, 45, 0.74);
}

.final-card .button {
  flex: 0 0 auto;
}

.site-footer {
  padding: 52px 0 23px;
  color: rgba(255, 255, 255, 0.7);
  background: #171d21;
  font-size: 13px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 50px;
}

.footer-grid img {
  width: 170px;
  padding: 8px;
  background: #fff;
}

.footer-grid p {
  max-width: 280px;
  margin: 16px 0 0;
}

.footer-grid strong,
.footer-grid a,
.footer-grid span {
  display: block;
}

.footer-grid strong {
  margin-bottom: 12px;
  color: #fff;
}

.footer-grid a {
  margin-top: 6px;
  color: var(--lime);
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 11px;
}

.footer-bottom a {
  color: inherit;
}

@media (max-width: 1060px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.78fr);
    gap: 35px;
  }

  .hero-sticker {
    left: -20px;
  }

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

  .benefit-card:nth-child(2) {
    border-right: 1px solid var(--lime-dark);
  }

  .benefit-card.featured {
    transform: none;
  }

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

  .dish-card-wide {
    grid-column: 1 / -1;
    min-height: 490px;
  }

  .delivery-grid {
    gap: 45px;
  }
}

@media (max-width: 800px) {
  .hero-grid,
  .delivery-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-lead,
  .gift-card,
  .hero-facts {
    margin-inline: auto;
  }

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

  .hero-visual {
    width: min(100%, 560px);
    margin: 20px auto 0;
    padding: 32px 20px 24px;
  }

  .hero-photo {
    aspect-ratio: 1.1;
    border-radius: 26px;
  }

  .hero-visual::before {
    right: 0;
    left: 48px;
    border-radius: 30px 65px 30px 65px;
  }

  .hero-visual::after {
    right: -14px;
    bottom: 30px;
    width: 82px;
    height: 82px;
    border-width: 17px;
  }

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

  .section-heading.split > p {
    margin: 16px auto 0;
  }

  .review-tabs {
    width: fit-content;
    margin: 22px auto 0;
  }

  .delivery-intro {
    text-align: center;
  }

  .delivery-intro > p:not(.eyebrow) {
    margin-inline: auto;
  }

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

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

  .yandex-card .button {
    grid-column: 1 / -1;
    justify-self: stretch;
  }

  .final-card {
    display: block;
    text-align: center;
  }

  .final-card .button {
    margin-top: 27px;
  }
}

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

  .header-inner {
    min-height: 76px;
    gap: 12px;
  }

  .brand img {
    width: 145px;
  }

  .header-phone {
    display: none;
  }

  .header-order {
    padding: 10px 11px;
    font-size: 11px;
    white-space: nowrap;
  }

  .hero {
    padding: 54px 0 70px;
  }

  h1 {
    font-size: clamp(41px, 12vw, 52px);
    letter-spacing: -0.06em;
  }

  h2 {
    font-size: 35px;
  }

  .gift-card {
    align-items: flex-start;
    text-align: left;
  }

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

  .button {
    width: 100%;
  }

  .button-link {
    justify-self: center;
    width: auto;
  }

  .hero-facts {
    gap: 12px;
  }

  .hero-facts li,
  .hero-facts li + li {
    padding: 0 6px;
  }

  .hero-facts strong {
    font-size: 14px;
  }

  .hero-caption {
    right: 10px;
    bottom: 10px;
    left: 10px;
    width: auto;
  }

  .hero-sticker {
    top: -25px;
    left: -5px;
    width: 92px;
    height: 92px;
    border-width: 5px;
  }

  .hero-sticker strong {
    font-size: 23px;
  }

  .section {
    padding: 76px 0;
  }

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

  .benefit-card,
  .benefit-card:nth-child(2),
  .benefit-card:last-child {
    border: 1px solid var(--line);
    border-bottom: 0;
  }

  .benefit-card:last-child {
    border-bottom: 1px solid var(--line);
  }

  .benefit-card.featured {
    border-color: var(--lime-dark);
  }

  .dish-card-wide {
    grid-column: auto;
    min-height: 450px;
  }

  .menu-footer {
    display: block;
    text-align: center;
  }

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

  .review-tabs {
    display: grid;
    width: 100%;
  }

  .review-scroller {
    grid-auto-columns: 88%;
  }

  .yandex-card {
    padding: 30px 22px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .yandex-mark {
    margin-inline: auto;
  }

  .yandex-card iframe,
  .yandex-card .button {
    grid-column: auto;
    justify-self: center;
  }

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

  .final-card {
    min-height: 0;
    padding: 42px 22px;
  }

  .footer-grid {
    text-align: center;
  }

  .footer-grid img,
  .footer-grid p {
    margin-inline: auto;
  }

  .footer-bottom {
    display: grid;
    text-align: center;
  }
}

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

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