:root {
  --font-main: "Roboto Condensed", Arial, sans-serif;
  --font-accent: "Shafarik", Georgia, serif;
  --font-decor: "Ponomar", Georgia, serif;
  --color-bg: #ffffff;
  --color-text: #1f1f1f;
  --color-muted: #6f6a62;
  --color-line: #e8e0d6;
  --color-title: #252523;
  --color-scroll-text: #554f44;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-width: 320px;
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.4;
  color: var(--color-text);
  background: var(--color-bg);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  color: var(--color-title);
  background-color: #ffffff;
  background-image: url("../images/optimized/noise-effect.webp?v=20260620-pattern2");
  background-repeat: repeat;
  background-size: 1024px 1024px;
  transform: translateY(0);
  transition: transform 0.35s ease;
  will-change: transform;
}

.site-header__inner {
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: 18px 20px;
}

.site-header__logo-link {
  display: block;
  width: 190px;
  height: 90px;
  margin: 0 auto;
}

.site-header__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

@media (prefers-reduced-motion: reduce) {
  .site-header {
    transition: none;
  }
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

.page {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 40px 20px;
}

a {
  color: inherit;
}

h1,
h2,
p {
  margin-top: 0;
}

.recipes-list__eyebrow,
.recipe__category {
  margin-bottom: 12px;
  font-family: var(--font-decor);
  font-size: 18px;
  color: var(--color-muted);
}

.recipes-list h1,
.recipe h1 {
  margin-bottom: 28px;
  font-family: var(--font-accent);
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.05;
}

.recipes-list__items {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.recipes-list__items a {
  display: block;
  padding: 18px 20px;
  border: 1px solid var(--color-line);
  border-radius: 16px;
  text-decoration: none;
}

.recipe-page {
  min-height: 100vh;
  color: var(--color-text);
}

.recipe-hero {
  position: relative;
  --hero-side: max(0px, calc((100vw - 1920px) / 2));
  width: 100%;
  height: 1532px;
  max-height: none;
  overflow: hidden;
  color: var(--color-title);
  background: #ffffff;
}

.recipe-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 34%, rgba(85, 79, 68, 0.06), transparent 24%);
  pointer-events: none;
}

.recipe-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 1;
  background-image: url("../images/optimized/noise-effect.webp?v=20260620-pattern2");
  background-repeat: repeat;
  background-size: 1024px 1024px;
  pointer-events: none;
}

.recipe-hero__content {
  position: relative;
  z-index: 2;
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: 178px 20px 92px;
  text-align: center;
}

.share-widget {
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 20;
  width: 500px;
  height: 236px;
  color: var(--color-title);
  pointer-events: auto;
}

.share-widget__toggle,
.share-widget__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  color: var(--color-title);
  background: transparent;
  cursor: pointer;
}

.share-widget__toggle {
  position: relative;
  z-index: 2;
  width: 354px;
  height: 70px;
  margin: 166px 0 0 0;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
  pointer-events: auto;
}

.share-widget__toggle img {
  width: 354px;
  height: 70px;
  object-fit: contain;
}

.share-widget__link {
  position: absolute;
  right: 146px;
  bottom: 15px;
  width: 40px;
  height: 40px;
  opacity: 0;
  transform: translate(0, 0) scale(0.72);
  transform-origin: center;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.24s ease,
    transform 0.3s cubic-bezier(0.2, 0.9, 0.2, 1),
    visibility 0s linear 0.24s;
}

.share-widget__link img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.share-widget__list {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.share-widget__button-label {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 354px;
  height: 70px;
  font-family: var(--font-main);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--color-title);
  pointer-events: none;
}

.share-widget:hover .share-widget__toggle,
.share-widget:focus-within .share-widget__toggle {
  transform: translateX(-6px);
}

.share-widget:hover .share-widget__link,
.share-widget:focus-within .share-widget__link {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity 0.24s ease,
    transform 0.3s cubic-bezier(0.2, 0.9, 0.2, 1),
    visibility 0s;
}

.share-widget:hover .share-widget__link:nth-child(2),
.share-widget:focus-within .share-widget__link:nth-child(2) {
  transform: translate(20px, -4px) scale(1);
}

.share-widget:hover .share-widget__link:nth-child(3),
.share-widget:focus-within .share-widget__link:nth-child(3) {
  transform: translate(50px, -34px) scale(1);
  transition-delay: 0.02s;
}

.share-widget:hover .share-widget__link:nth-child(4),
.share-widget:focus-within .share-widget__link:nth-child(4) {
  transform: translate(54px, -78px) scale(1);
  transition-delay: 0.04s;
}

.share-widget:hover .share-widget__link:nth-child(5),
.share-widget:focus-within .share-widget__link:nth-child(5) {
  transform: translate(28px, -114px) scale(1);
  transition-delay: 0.06s;
}

.share-widget:hover .share-widget__link:nth-child(6),
.share-widget:focus-within .share-widget__link:nth-child(6) {
  transform: translate(-18px, -126px) scale(1);
  transition-delay: 0.08s;
}

.breadcrumbs {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 38px;
  color: rgba(37, 37, 35, 0.55);
  font-size: 18px;
  line-height: 1.2;
}

.breadcrumbs a {
  position: relative;
  z-index: 5;
  text-decoration: none;
}

.breadcrumbs span:last-child {
  min-width: 0;
}

.recipe-hero h1 {
  max-width: 1180px;
  margin: 0 auto 70px;
  font-family: var(--font-accent);
  font-size: 116px;
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: 0.01em;
  color: var(--color-title);
}

.recipe-hero__scroll {
  position: relative;
  width: 970px;
  height: 340px;
  margin: 0 auto 122px;
  color: var(--color-scroll-text);
}

.recipe-hero__scroll img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(85, 79, 68, 0.28));
}

.recipe-hero__scroll dl {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 72px;
  width: 56%;
  margin: 0;
  transform: translate(-50%, -48%);
  text-align: left;
}

.recipe-hero__scroll div,
.recipe-hero__scroll dt,
.recipe-hero__scroll dd {
  margin: 0;
}

.recipe-hero__scroll dt {
  margin-bottom: 8px;
  font-family: var(--font-main);
  font-size: clamp(26px, 1.9vw, 36px);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.recipe-hero__scroll dd {
  font-size: clamp(14px, 0.9vw, 18px);
  line-height: 1.15;
}

.recipe-hero__quote {
  width: min(660px, 42vw);
  margin: 0 9% 0 auto;
  text-align: left;
  color: var(--color-title);
}

.recipe-hero__quote blockquote {
  margin: 0 0 34px;
  font-family: var(--font-accent);
  font-size: clamp(24px, 2vw, 38px);
  line-height: 1.15;
}

.recipe-hero__quote figcaption {
  font-family: var(--font-accent);
  font-size: clamp(18px, 1.25vw, 24px);
  color: var(--color-title);
  text-align: right;
}

.recipe-hero__paper,
.recipe-hero__church,
.recipe-hero__dish {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

.recipe-hero__paper {
  z-index: 110;
  opacity: 1;
}

.recipe-hero__paper--left {
  top: 0;
  left: var(--hero-side);
  width: 420px;
  height: 880px;
}

.recipe-hero__paper--right {
  top: 0;
  right: var(--hero-side);
  width: 610px;
  height: 270px;
}

.recipe-hero__church {
  bottom: -4px;
  left: calc(var(--hero-side) - 632px);
  width: 1400px;
  height: 1400px;
  object-fit: contain;
}

.recipe-hero__dish {
  top: 445px;
  right: calc(var(--hero-side) - 160px);
  width: 760px;
}

.recipe-pattern-screen {
  width: 100%;
  height: clamp(21px, 5vw, 96px);
  background-image: url("../images/optimized/pattern.webp?v=20260620-pattern2");
  background-repeat: repeat-x;
  background-position: top center;
  background-size: min(100vw, 1920px) 100%;
}

.recipe-intro {
  position: relative;
  --intro-side: max(0px, calc((100vw - 1920px) / 2));
  overflow: hidden;
  background: #f4eee4;
}

.recipe-intro__dark {
  position: relative;
  min-height: 760px;
  overflow: visible;
  color: #f4eee4;
  background: #252523;
}

.recipe-intro__dark::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: url("../images/optimized/noise-effect.webp?v=20260620-pattern2");
  background-repeat: repeat;
  background-size: 1024px 1024px;
  pointer-events: none;
}

.recipe-intro__clouds,
.recipe-intro__birds,
.recipe-intro__angel,
.recipe-intro__book {
  position: absolute;
  pointer-events: none;
  user-select: none;
}

.recipe-intro__clouds {
  top: 28px;
  right: var(--intro-side);
  z-index: 1;
  width: 760px;
  transform: translateX(var(--clouds-scroll-shift, 0px));
  will-change: transform;
}

.recipe-intro__birds {
  top: 170px;
  left: calc(var(--intro-side) + 48px);
  z-index: 1;
  width: 420px;
  opacity: 0.28;
  transform: translateX(var(--birds-scroll-shift, 0px));
  will-change: transform;
}

.recipe-intro__angel {
  top: 330px;
  left: var(--intro-side);
  z-index: 4;
  width: 430px;
}

.recipe-intro__text {
  position: absolute;
  z-index: 2;
  width: 600px;
  font-size: 24px;
  line-height: 1.35;
}

.recipe-intro__text p {
  margin: 0;
}

.recipe-intro__text--first {
  top: 145px;
  left: calc(var(--intro-side) + 150px);
}

.recipe-intro__text--second {
  top: 322px;
  left: calc(var(--intro-side) + 520px);
}

.recipe-intro__text--third {
  top: 499px;
  left: calc(var(--intro-side) + 900px);
  width: 600px;
}

.recipe-intro__ingredients {
  position: relative;
  min-height: 1470px;
  overflow: hidden;
  background: #f4eee4;
}

.recipe-intro__ingredients::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../images/optimized/noise-effect.webp?v=20260620-pattern2");
  background-repeat: repeat;
  background-size: 1024px 1024px;
  pointer-events: none;
}

.recipe-intro__heading {
  position: relative;
  z-index: 3;
  padding-top: 150px;
  text-align: center;
}

.recipe-intro__heading h2 {
  margin: 0 0 12px;
  font-family: var(--font-accent);
  font-size: 64px;
  font-weight: 400;
  line-height: 1;
  color: var(--color-title);
}

.recipe-intro__heading p {
  margin: 0;
  font-size: 18px;
  color: var(--color-title);
}

.recipe-intro__book {
  position: relative;
  z-index: 2;
  width: 1410px;
  height: 1061px;
  object-fit: contain;
}

.recipe-intro__book-wrap {
  position: absolute;
  left: 50%;
  bottom: 150px;
  z-index: 2;
  width: 1410px;
  height: 1061px;
  transform-origin: bottom center;
  transform: translateX(-50%);
}

.ingredients-book {
  position: absolute;
  top: 252px;
  left: 186px;
  z-index: 3;
  width: 450px;
  color: #554f44;
  font-size: 18px;
  line-height: 1.15;
}

.ingredients-book__list {
  display: grid;
  gap: 14px;
  margin: 0;
}

.ingredients-book__list div {
  display: grid;
  grid-template-columns: max-content 1fr max-content;
  align-items: end;
  gap: 8px;
}

.ingredients-book__list div::after {
  content: "";
  min-width: 24px;
  border-bottom: 1px dotted rgba(85, 79, 68, 0.45);
  transform: translateY(-4px);
}

.ingredients-book__list dt {
  grid-column: 1;
}

.ingredients-book__list dd {
  grid-column: 3;
  margin: 0;
}

.ingredients-book__nutrition {
  position: absolute;
  top: 820px;
  left: 234px;
  z-index: 3;
  width: 390px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 0;
  text-align: center;
  color: #554f44;
}

.ingredients-book__nutrition strong,
.ingredients-book__nutrition span {
  display: block;
}

.ingredients-book__nutrition strong {
  margin-bottom: 6px;
  font-size: 22px;
  line-height: 1;
  color: #252523;
}

.ingredients-book__nutrition span {
  font-size: 14px;
}

.ingredients-book__note {
  position: absolute;
  top: 894px;
  left: 234px;
  z-index: 3;
  width: 390px;
  margin: 0;
  text-align: center;
  font-size: 16px;
  color: #554f44;
}

.recipe-intro__paper-bottom {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 610px;
  height: auto;
  pointer-events: none;
  user-select: none;
}

.recipe-page__body {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: 60px 0;
}

.recipe-steps {
  position: relative;
  overflow: hidden;
  min-height: 1040px;
  color: #f4eee4;
  background: #252523;
  --steps-side: max(0px, calc((100vw - 1920px) / 2));
}

.recipe-steps::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image: url("../images/optimized/noise-effect.webp?v=20260620-pattern2");
  background-repeat: repeat;
  background-size: 1024px 1024px;
  pointer-events: none;
}

.recipe-steps__inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 130px 0 88px;
  text-align: center;
}

.recipe-steps h2 {
  margin: 0 0 70px;
  font-family: var(--font-accent);
  font-size: 72px;
  font-weight: 400;
  line-height: 1;
}

.recipe-steps__viewport {
  position: relative;
  height: 560px;
  cursor: grab;
}

.recipe-step {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(720px, 100%);
  min-height: 560px;
  padding: 100px 86px 70px;
  opacity: 0;
  transform: translateX(-50%) scale(0.92);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  text-align: left;
  pointer-events: none;
}

.recipe-step--long {
  width: min(780px, 100%);
}

.recipe-step.is-active {
  opacity: 1;
  transform: translateX(-50%) scale(1);
  pointer-events: auto;
}

.recipe-step.is-next {
  opacity: 0.58;
}

.recipe-step.is-prev {
  opacity: 0;
}

.recipe-step.is-prev {
  transform: translateX(calc(-50% - 760px)) scale(0.92);
}

.recipe-step.is-next {
  transform: translateX(calc(-50% + 760px)) scale(0.92);
}

.recipe-step h3 {
  margin: 0 0 28px;
  font-family: var(--font-main);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
}

.recipe-step p {
  margin: 0;
  font-size: 20px;
  line-height: 1.45;
}

.recipe-step__decor {
  position: absolute;
  width: 220px;
  opacity: 1;
  filter: brightness(0) invert(1);
  pointer-events: none;
}

.recipe-step__decor--top {
  top: 0;
  left: 0;
}

.recipe-step__decor--bottom {
  right: 0;
  bottom: 0;
}

.recipe-steps__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 74px;
  margin-top: 86px;
}

.recipe-steps__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.recipe-steps__arrow img {
  width: 70px;
  height: 40px;
  opacity: 0.38;
  filter: grayscale(1);
  object-fit: contain;
  transition:
    opacity 0.25s ease,
    filter 0.25s ease;
}

.recipe-steps__arrow.is-highlighted img {
  opacity: 1;
  filter: brightness(0) invert(1);
}

.recipe-steps__arrow:disabled {
  cursor: default;
  pointer-events: none;
}

.recipe-steps__counter {
  min-width: 86px;
  font-family: var(--font-accent);
  font-size: 30px;
  line-height: 1;
}

.recipe-steps__cucumbers,
.recipe-steps__potato {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

.recipe-steps__cucumbers {
  bottom: 60px;
  left: var(--steps-side);
  width: 520px;
}

.recipe-steps__potato {
  top: 0;
  right: var(--steps-side);
  width: 520px;
}

.ready-meal {
  position: relative;
  overflow: hidden;
  color: #252523;
  background: #f4eee4;
}

.ready-meal::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 1;
  background-image: url("../images/optimized/noise-effect.webp?v=20260620-pattern2");
  background-repeat: repeat;
  background-size: 1024px 1024px;
  pointer-events: none;
}

.ready-meal__inner {
  position: relative;
  z-index: 1;
  width: min(1920px, 100%);
  margin: 0 auto;
  padding: 120px 0 64px;
  text-align: center;
}

.ready-meal h2 {
  margin: 0 0 120px;
  font-family: var(--font-accent);
  font-size: 72px;
  font-weight: 400;
  line-height: 1;
}

.ready-meal__viewport {
  position: relative;
  height: 470px;
  overflow: visible;
  touch-action: pan-y;
  cursor: grab;
}

.ready-meal__slide {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(780px, calc(100vw - 120px));
  height: 470px;
  margin: 0;
  opacity: 0;
  transform: translateX(-50%);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  pointer-events: none;
}

.ready-meal__slide.is-active {
  opacity: 1;
  transform: translateX(-50%);
  pointer-events: auto;
}

.ready-meal__slide.is-prev {
  opacity: 0.7;
  transform: translateX(calc(-50% - 940px));
}

.ready-meal__slide.is-next {
  opacity: 0.7;
  transform: translateX(calc(-50% + 940px));
}

.ready-meal__slide > img:not(.ready-meal__decor) {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ready-meal__decor {
  position: absolute;
  z-index: 2;
  width: 180px;
  opacity: 0.7;
  filter: brightness(0) saturate(100%) invert(12%) sepia(3%) saturate(319%) hue-rotate(22deg) brightness(98%) contrast(88%);
  pointer-events: none;
}

.ready-meal__decor--top {
  top: -64px;
  left: -64px;
}

.ready-meal__decor--bottom {
  right: -64px;
  bottom: -64px;
}

.ready-meal__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 220px;
  margin-top: 90px;
}

.ready-meal__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.ready-meal__arrow img {
  width: 70px;
  height: 40px;
  opacity: 0.38;
  filter: grayscale(1);
  object-fit: contain;
  transition:
    opacity 0.25s ease,
    filter 0.25s ease;
}

.ready-meal__arrow.is-highlighted img {
  opacity: 1;
  filter: brightness(0) saturate(100%) invert(12%) sepia(3%) saturate(319%) hue-rotate(22deg) brightness(98%) contrast(88%);
}

.ready-meal__arrow:disabled {
  cursor: default;
  pointer-events: none;
}

.recipe-variants {
  position: relative;
  overflow: hidden;
  color: #252523;
  background: #f4eee4;
}

.recipe-variants::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 1;
  background-image: url("../images/optimized/noise-effect.webp?v=20260620-pattern2");
  background-repeat: repeat;
  background-size: 1024px 1024px;
  pointer-events: none;
}

.recipe-variants__inner {
  position: relative;
  z-index: 1;
  width: min(1840px, calc(100% - 80px));
  margin: 0 auto;
  padding: 90px 0 110px;
}

.recipe-variants__header {
  width: min(720px, 100%);
  margin: 0 auto 72px;
  text-align: center;
}

.recipe-variants h2 {
  margin: 0 0 24px;
  font-family: var(--font-accent);
  font-size: 72px;
  font-weight: 400;
  line-height: 1;
}

.recipe-variants__header p {
  margin: 0;
  font-size: 20px;
  line-height: 1.42;
}

.recipe-variants__grid {
  display: grid;
  grid-template-columns: repeat(2, 881px);
  justify-content: center;
  gap: 88px 42px;
}

.recipe-variant {
  position: relative;
  display: grid;
  width: 881px;
  min-height: 390px;
  grid-template-columns: 300px 1fr;
  gap: 42px;
  align-items: start;
  padding: 52px 58px;
  color: inherit;
  text-decoration: none;
}

.recipe-variant__image {
  position: relative;
  z-index: 2;
  width: 300px;
  height: auto;
  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}

.recipe-variant__content {
  position: relative;
  z-index: 2;
}

.recipe-variant h3 {
  margin: 0 0 26px;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.05;
}

.recipe-variant h3 span {
  display: block;
}

.recipe-variant p {
  margin: 0;
  font-size: 18px;
  line-height: 1.42;
}

.recipe-variant p + p {
  margin-top: 20px;
}

.recipe-variant__decor {
  position: absolute;
  z-index: 1;
  width: 150px;
  opacity: 0.42;
  filter: grayscale(1);
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    filter 0.35s ease,
    transform 0.35s ease;
}

.recipe-variant__decor--top {
  top: 0;
  left: 0;
}

.recipe-variant__decor--bottom {
  right: 0;
  bottom: 0;
}

.recipe-variant:hover .recipe-variant__image,
.recipe-variant:focus-visible .recipe-variant__image {
  filter: saturate(1.08) contrast(1.03);
  transform: translateY(-8px) scale(1.03);
}

.recipe-variant:hover .recipe-variant__decor,
.recipe-variant:focus-visible .recipe-variant__decor {
  opacity: 0.8;
  filter: brightness(0) saturate(100%) invert(12%) sepia(3%) saturate(319%) hue-rotate(22deg) brightness(98%) contrast(88%);
}

.recipe-variant:hover .recipe-variant__decor--top,
.recipe-variant:focus-visible .recipe-variant__decor--top {
  transform: translate(-10px, -10px);
}

.recipe-variant:hover .recipe-variant__decor--bottom,
.recipe-variant:focus-visible .recipe-variant__decor--bottom {
  transform: translate(10px, 10px);
}

.cooking-tips {
  position: relative;
  overflow: hidden;
  color: #252523;
  background: #f4eee4;
}

.cooking-tips::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 1;
  background-image: url("../images/optimized/noise-effect.webp?v=20260620-pattern2");
  background-repeat: repeat;
  background-size: 1024px 1024px;
  pointer-events: none;
}

.cooking-tips__inner {
  position: relative;
  z-index: 1;
  width: min(1500px, calc(100% - 80px));
  min-height: 980px;
  margin: 0 auto;
  padding: 86px 0 120px;
}

.cooking-tips__header {
  width: min(720px, 100%);
  margin: 0 auto 72px;
  text-align: center;
}

.cooking-tips h2,
.related-recipes h2 {
  margin: 0 0 22px;
  font-family: var(--font-accent);
  font-size: 72px;
  font-weight: 400;
  line-height: 1;
}

.cooking-tips__header p {
  margin: 0;
  font-size: 18px;
  line-height: 1.42;
}

.cooking-tips__content {
  width: min(760px, 58%);
  padding-top: 54px;
}

.cooking-tips__list {
  display: grid;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: cooking-tip;
}

.cooking-tips__list li {
  position: relative;
  min-height: 86px;
  padding-left: 72px;
  counter-increment: cooking-tip;
}

.cooking-tips__list li::before {
  content: counter(cooking-tip) ".";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.cooking-tips__list h3 {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.12;
}

.cooking-tips__list p,
.cooking-tips__summary {
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
}

.cooking-tips__summary {
  max-width: 720px;
  margin-top: 44px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.cooking-tips__quote {
  position: absolute;
  top: 420px;
  right: 90px;
  z-index: 2;
  width: 410px;
  margin: 0;
  font-family: var(--font-accent);
  font-size: 32px;
  line-height: 1.08;
}

.cooking-tips__quote blockquote {
  margin: 0 0 24px;
}

.cooking-tips__quote figcaption {
  text-align: right;
  font-size: 24px;
}

.cooking-tips__angel {
  position: absolute;
  right: -55px;
  bottom: -10px;
  z-index: 1;
  width: 430px;
  opacity: var(--cooking-angel-opacity, 0);
  transform: translateX(var(--cooking-angel-shift, 220px));
  transition: opacity 0.15s linear;
  will-change: opacity, transform;
  pointer-events: none;
  user-select: none;
}

.related-recipes {
  position: relative;
  overflow: hidden;
  color: #f4eee4;
  background: #252523;
}

.related-recipes::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.16;
  background-image: url("../images/optimized/noise-effect.webp?v=20260620-pattern2");
  background-repeat: repeat;
  background-size: 1024px 1024px;
  pointer-events: none;
}

.related-recipes__inner {
  position: relative;
  z-index: 1;
  width: min(1500px, calc(100% - 80px));
  margin: 0 auto;
  padding: 80px 0 92px;
  text-align: center;
}

.related-recipes h2 {
  margin-bottom: 56px;
}

.related-recipes__viewport {
  position: relative;
  height: 440px;
  touch-action: pan-y;
  cursor: grab;
}

.related-recipe {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: min(640px, calc(100vw - 80px));
  min-height: 420px;
  padding: 64px 68px 56px;
  color: inherit;
  text-align: left;
  text-decoration: none;
  opacity: 0;
  transform: translateX(-50%);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  pointer-events: none;
}

.related-recipe.is-active {
  opacity: 1;
  transform: translateX(calc(-50% - 360px));
  pointer-events: auto;
}

.related-recipe.is-next {
  opacity: 1;
  transform: translateX(calc(-50% + 360px));
  pointer-events: auto;
}

.related-recipe.is-prev {
  opacity: 0;
  transform: translateX(calc(-50% - 1080px));
}

.related-recipe__image {
  position: relative;
  z-index: 2;
  width: 300px;
  height: auto;
  margin: 0 auto 34px;
  transition:
    filter 0.35s ease,
    transform 0.35s ease;
}

.related-recipe__content,
.related-recipe__decor {
  position: relative;
  z-index: 2;
}

.related-recipe h3 {
  margin: 0 0 18px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.15;
}

.related-recipe p {
  margin: 0;
  font-size: 17px;
  line-height: 1.45;
}

.related-recipe__decor {
  position: absolute;
  z-index: 1;
  width: 150px;
  opacity: 0.32;
  filter: grayscale(1);
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    filter 0.35s ease,
    transform 0.35s ease;
}

.related-recipe__decor--top {
  top: 0;
  left: 0;
}

.related-recipe__decor--bottom {
  right: 0;
  bottom: 0;
}

.related-recipe:hover .related-recipe__image,
.related-recipe:focus-visible .related-recipe__image {
  filter: saturate(1.08) contrast(1.04);
  transform: translateY(-8px) scale(1.03);
}

.related-recipe:hover .related-recipe__decor,
.related-recipe:focus-visible .related-recipe__decor {
  opacity: 0.75;
  filter: brightness(0) invert(1);
}

.related-recipe:hover .related-recipe__decor--top,
.related-recipe:focus-visible .related-recipe__decor--top {
  transform: translate(-10px, -10px);
}

.related-recipe:hover .related-recipe__decor--bottom,
.related-recipe:focus-visible .related-recipe__decor--bottom {
  transform: translate(10px, 10px);
}

.related-recipes__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 220px;
  margin-top: 50px;
}

.related-recipes__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.related-recipes__arrow img {
  width: 70px;
  height: 40px;
  opacity: 0.38;
  filter: grayscale(1);
  object-fit: contain;
  transition:
    opacity 0.25s ease,
    filter 0.25s ease;
}

.related-recipes__arrow.is-highlighted img {
  opacity: 1;
  filter: brightness(0) invert(1);
}

.related-recipes__arrow:disabled {
  cursor: default;
  pointer-events: none;
}

.recipe-faq {
  position: relative;
  overflow: hidden;
  color: #252523;
  background: #f4eee4;
}

.recipe-faq::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 1;
  background-image: url("../images/optimized/noise-effect.webp?v=20260620-pattern2");
  background-repeat: repeat;
  background-size: 1024px 1024px;
  pointer-events: none;
}

.recipe-faq__inner {
  position: relative;
  z-index: 1;
  width: min(960px, calc(100% - 80px));
  margin: 0 auto;
  padding: 92px 0 120px;
}

.recipe-faq h2 {
  margin: 0 0 24px;
  font-family: var(--font-accent);
  font-size: 72px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
}

.recipe-faq__lead {
  width: min(680px, 100%);
  margin: 0 auto 54px;
  font-size: 18px;
  line-height: 1.42;
  text-align: center;
}

.recipe-faq__accordion {
  display: grid;
  gap: 18px;
  margin-bottom: 92px;
}

.recipe-faq__item {
  position: relative;
}

.recipe-faq__question {
  display: grid;
  width: 100%;
  grid-template-columns: 36px 1fr;
  gap: 20px;
  align-items: start;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.recipe-faq__question span:last-child {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.16;
}

.recipe-faq__chevron {
  position: relative;
  width: 22px;
  height: 22px;
  margin-top: 6px;
}

.recipe-faq__chevron::before,
.recipe-faq__chevron::after {
  content: "";
  position: absolute;
  top: 10px;
  width: 13px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.25s ease;
}

.recipe-faq__chevron::before {
  left: 1px;
  transform: rotate(45deg);
}

.recipe-faq__chevron::after {
  right: 1px;
  transform: rotate(-45deg);
}

.recipe-faq__item.is-open .recipe-faq__chevron::before {
  transform: rotate(-45deg);
}

.recipe-faq__item.is-open .recipe-faq__chevron::after {
  transform: rotate(45deg);
}

.recipe-faq__answer {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}

.recipe-faq__answer > div {
  padding: 16px 0 10px 56px;
}

.recipe-faq__answer p {
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
}

.recipe-faq__meta {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 28px;
  align-items: center;
  margin-bottom: 120px;
  font-size: 14px;
}

.recipe-faq__author {
  display: flex;
  align-items: center;
  gap: 22px;
}

.recipe-faq__avatar {
  width: 76px;
  height: 76px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #252523;
}

.recipe-faq__author strong,
.recipe-faq__author span {
  display: block;
}

.recipe-faq__author strong {
  margin-bottom: 8px;
  font-size: 26px;
  line-height: 1;
}

.recipe-faq__author span {
  color: #554f44;
  font-size: 16px;
}

.recipe-faq__rating,
.recipe-faq__share {
  display: flex;
  align-items: center;
  gap: 8px;
}

.recipe-faq__rating > span,
.recipe-faq__share > span {
  margin-right: 4px;
  color: #554f44;
}

.recipe-faq__rating img {
  width: 28px;
  height: 28px;
  filter: brightness(0) saturate(100%) invert(12%) sepia(3%) saturate(319%) hue-rotate(22deg) brightness(98%) contrast(88%);
}

.recipe-faq__share a {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  opacity: 0.72;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.recipe-faq__share a:hover,
.recipe-faq__share a:focus-visible {
  opacity: 1;
  transform: translateY(-2px);
}

.recipe-faq__share img {
  width: 28px;
  height: 28px;
}

.recipe-faq__text {
  display: grid;
  position: relative;
  min-height: clamp(520px, 34vw, 620px);
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  gap: 48px;
  align-items: center;
  font-size: 16px;
  line-height: 1.55;
}

.recipe-faq__media {
  position: absolute;
  left: clamp(-600px, -31vw, -260px);
  top: 50%;
  z-index: 0;
  width: clamp(760px, 64vw, 1230px);
  margin: 0;
  transform: translateY(-50%);
  pointer-events: none;
}

.recipe-faq__media img {
  width: 100%;
  max-width: none;
  height: auto;
  object-fit: contain;
}

.recipe-faq__text-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-column: 2;
  gap: 28px;
}

.recipe-faq__text p {
  margin: 0;
}

.site-footer {
  position: relative;
  overflow: hidden;
  color: #f4eee4;
  background: #3d533e;
}

.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  background-image: url("../images/optimized/noise-effect.webp?v=20260620-pattern2");
  background-repeat: repeat;
  background-size: 1024px 1024px;
  pointer-events: none;
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1320px, calc(100% - 80px));
  grid-template-columns: 1fr auto 1fr;
  gap: 72px;
  align-items: start;
  margin: 0 auto;
  padding: 96px 0 110px;
}

.site-footer__image {
  width: 100%;
  height: auto;
  margin: 0;
  pointer-events: none;
  user-select: none;
}

.site-footer__nav {
  display: flex;
  gap: 34px;
  align-items: center;
  padding-top: 42px;
  font-size: 22px;
  font-weight: 700;
}

.site-footer__nav--left {
  justify-content: flex-end;
}

.site-footer__nav--right {
  justify-content: flex-start;
}

.site-footer a,
.site-footer button {
  color: inherit;
}

.site-footer__nav a,
.site-footer__privacy,
.site-footer__details,
.site-footer__email {
  text-decoration: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.site-footer__nav a:hover,
.site-footer__nav a:focus-visible,
.site-footer__privacy:hover,
.site-footer__privacy:focus-visible,
.site-footer__details:hover,
.site-footer__details:focus-visible,
.site-footer__email:hover,
.site-footer__email:focus-visible {
  opacity: 0.78;
  transform: translateY(-2px);
}

.site-footer__center {
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.site-footer__logo img {
  width: 190px;
  height: auto;
  object-fit: contain;
}

.site-footer__privacy,
.site-footer__details,
.site-footer__email {
  font-size: 18px;
}

.site-footer__privacy {
  opacity: 0.68;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.site-footer__details {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.requisites-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.25s ease,
    visibility 0s linear 0.25s;
}

.requisites-modal.is-open {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.requisites-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(37, 37, 35, 0.62);
}

.requisites-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  padding: 52px 48px;
  color: #252523;
  background:
    url("../images/optimized/noise-effect.webp?v=20260620-pattern2") 0 0 / 1024px 1024px repeat,
    #f4eee4;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.requisites-modal__dialog h2 {
  margin: 0 0 28px;
  font-family: var(--font-accent);
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
}

.requisites-modal__dialog p {
  margin: 0;
  font-size: 20px;
  line-height: 1.45;
}

.requisites-modal__dialog p + p {
  margin-top: 12px;
}

.requisites-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.requisites-modal__close span {
  position: absolute;
  top: 16px;
  left: 5px;
  width: 24px;
  height: 3px;
  border-radius: 999px;
  background: #252523;
}

.requisites-modal__close span:first-child {
  transform: rotate(45deg);
}

.requisites-modal__close span:last-child {
  transform: rotate(-45deg);
}

body.is-modal-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .recipe-intro__clouds,
  .recipe-intro__birds,
  .recipe-step {
    animation: none;
    transition: none;
  }
}

.recipe__section {
  padding-top: 28px;
  border-top: 1px solid var(--color-line);
}

.recipe__section h2 {
  margin-bottom: 16px;
  font-size: 28px;
}

@media (max-width: 1650px) {
  .site-header__inner {
    width: min(1033px, 100%);
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .site-header__logo-link {
    width: 158px;
    height: 75px;
  }

  .recipe-hero {
    height: 1277px;
  }

  .recipe-hero__content {
    width: min(1033px, 100%);
    padding-top: 149px;
    padding-bottom: 77px;
  }

  .breadcrumbs {
    font-size: 15px;
  }

  .recipe-hero h1 {
    max-width: 983px;
    margin-bottom: 58px;
    font-size: 97px;
  }

  .recipe-hero__scroll {
    width: 808px;
    height: 283px;
    margin-bottom: 102px;
  }

  .recipe-hero__paper--left {
    width: 350px;
    height: 733px;
  }

  .recipe-hero__paper--right {
    width: 508px;
    height: 225px;
  }

  .recipe-hero__church {
    left: -527px;
    width: 1167px;
    height: 1167px;
  }

  .recipe-hero__dish {
    top: 371px;
    right: -133px;
    width: 633px;
  }

  .recipe-hero__quote {
    width: min(550px, 42vw);
  }

  .recipe-intro__dark {
    min-height: 600px;
  }

  .recipe-intro__clouds {
    width: 640px;
  }

  .recipe-intro__angel {
    top: 275px;
    width: 360px;
  }

  .recipe-intro__text {
    width: 500px;
    max-width: calc(100% - 96px);
    font-size: 20px;
  }

  .recipe-intro__text--first {
    left: 96px;
  }

  .recipe-intro__text--second {
    left: 390px;
  }

  .recipe-intro__text--third {
    left: 680px;
    right: auto;
  }

  .recipe-intro__ingredients {
    min-height: 1225px;
  }

  .recipe-intro__heading {
    padding-top: 122px;
  }

  .recipe-intro__heading h2 {
    font-size: 54px;
  }

  .recipe-intro__book-wrap {
    bottom: 125px;
    transform: translateX(-50%) scale(0.833);
  }

  .recipe-intro__paper-bottom {
    width: 508px;
  }
}

@media (max-width: 1550px) {
  .recipe-intro__dark {
    min-height: 630px;
  }

  .recipe-intro__text {
    width: 490px;
    max-width: calc(100% - 96px);
    font-size: 19px;
  }

  .recipe-intro__text--first {
    top: 128px;
    left: 92px;
  }

  .recipe-intro__text--second {
    top: 306px;
    left: 374px;
  }

  .recipe-intro__text--third {
    top: 484px;
    left: 652px;
  }

  .recipe-intro__ingredients {
    min-height: 1190px;
  }

  .recipe-intro__book-wrap {
    bottom: 120px;
    transform: translateX(-50%) scale(0.805);
  }
}

@media (max-width: 1500px) {
  .recipe-intro__dark {
    min-height: 640px;
  }

  .recipe-intro__text {
    width: 480px;
    max-width: calc(100% - 96px);
    font-size: 19px;
  }

  .recipe-intro__text--first {
    top: 130px;
    left: 90px;
  }

  .recipe-intro__text--second {
    top: 310px;
    left: 360px;
  }

  .recipe-intro__text--third {
    top: 490px;
    left: 630px;
  }

  .recipe-intro__ingredients {
    min-height: 1160px;
  }

  .recipe-intro__book-wrap {
    bottom: 118px;
    transform: translateX(-50%) scale(0.78);
  }
}

@media (max-width: 1600px) {
  .recipe-intro__dark {
    min-height: 620px;
  }

  .recipe-intro__text {
    width: 450px;
    max-width: calc(100% - 80px);
    font-size: 18px;
  }

  .recipe-intro__text--first {
    top: 122px;
    left: 80px;
  }

  .recipe-intro__text--second {
    top: 292px;
    left: 340px;
  }

  .recipe-intro__text--third {
    top: 462px;
    left: 590px;
  }

  .recipe-intro__ingredients {
    min-height: 1080px;
  }

  .recipe-intro__book-wrap {
    bottom: 112px;
    transform: translateX(-50%) scale(0.74);
  }
}

@media (max-width: 1350px) {
  .recipe-intro__dark {
    min-height: 610px;
  }

  .recipe-intro__text {
    width: 460px;
    max-width: calc(100% - 72px);
    font-size: 18px;
  }

  .recipe-intro__text--first {
    top: 118px;
    left: 72px;
  }

  .recipe-intro__text--second {
    top: 288px;
    left: 330px;
  }

  .recipe-intro__text--third {
    top: 458px;
    left: 600px;
  }

  .recipe-intro__ingredients {
    min-height: 1030px;
  }

  .recipe-intro__heading {
    padding-top: 108px;
  }

  .recipe-intro__heading h2 {
    font-size: 48px;
  }

  .recipe-intro__book-wrap {
    bottom: 110px;
    transform: translateX(-50%) scale(0.72);
  }

  .recipe-intro__paper-bottom {
    width: 430px;
  }
}

@media (max-width: 1200px) {
  .site-header__inner {
    width: min(775px, 100%);
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .site-header__logo-link {
    width: 119px;
    height: 56px;
  }

  .recipe-hero {
    height: 958px;
  }

  .recipe-hero__content {
    width: min(775px, 100%);
    padding-top: 112px;
    padding-bottom: 58px;
  }

  .breadcrumbs {
    margin-bottom: 28px;
    font-size: 12px;
  }

  .recipe-hero h1 {
    max-width: 738px;
    margin-bottom: 44px;
    font-size: 73px;
  }

  .recipe-hero__scroll {
    width: 606px;
    height: 213px;
    margin-bottom: 76px;
  }

  .recipe-hero__scroll dl {
    gap: 45px;
  }

  .recipe-hero__scroll dt {
    font-size: 27px;
  }

  .recipe-hero__scroll dd {
    font-size: 13px;
  }

  .recipe-hero__paper--left {
    width: 263px;
    height: 550px;
  }

  .recipe-hero__paper--right {
    width: 381px;
    height: 169px;
  }

  .recipe-hero__church {
    left: -395px;
    width: 875px;
    height: 875px;
  }

  .recipe-hero__dish {
    top: 278px;
    right: -100px;
    width: 475px;
  }

  .recipe-hero__quote {
    width: min(460px, 48vw);
  }

  .recipe-hero__quote blockquote {
    font-size: 29px;
  }

  .recipe-intro__dark {
    min-height: 520px;
  }

  .recipe-intro__clouds {
    width: 520px;
  }

  .recipe-intro__birds {
    width: 320px;
  }

  .recipe-intro__angel {
    top: 245px;
    width: 300px;
  }

  .recipe-intro__text {
    width: 420px;
    max-width: calc(100% - 72px);
    font-size: 17px;
  }

  .recipe-intro__text--first {
    top: 105px;
    left: 36px;
  }

  .recipe-intro__text--second {
    top: 230px;
    left: 300px;
  }

  .recipe-intro__text--third {
    top: 340px;
    left: 540px;
    right: auto;
  }

  .recipe-intro__ingredients {
    min-height: 924px;
  }

  .recipe-intro__heading {
    padding-top: 95px;
  }

  .recipe-intro__heading h2 {
    font-size: 44px;
  }

  .recipe-intro__book-wrap {
    bottom: 94px;
    transform: translateX(-50%) scale(0.625);
  }

  .recipe-intro__paper-bottom {
    width: 381px;
  }
}

@media (max-width: 992px) {
  .recipe-hero {
    height: 792px;
  }

  .recipe-hero__content {
    width: min(650px, 100%);
    padding-top: 104px;
  }

  .breadcrumbs {
    font-size: 11px;
  }

  .recipe-hero h1 {
    max-width: 610px;
    margin-bottom: 34px;
    font-size: 60px;
  }

  .recipe-hero__scroll {
    width: 501px;
    height: 176px;
    margin-bottom: 58px;
  }

  .recipe-hero__scroll dt {
    font-size: 23px;
  }

  .recipe-hero__scroll dd {
    font-size: 11px;
  }

  .recipe-hero__paper--left {
    width: 217px;
    height: 455px;
  }

  .recipe-hero__paper--right {
    width: 315px;
    height: 140px;
  }

  .recipe-hero__church {
    left: -327px;
    width: 723px;
    height: 723px;
  }

  .recipe-hero__dish {
    top: 230px;
    right: -83px;
    width: 393px;
  }

  .recipe-hero__quote {
    width: min(360px, 48vw);
    margin-right: 8%;
  }

  .recipe-hero__quote blockquote {
    font-size: 24px;
  }

  .recipe-hero__quote figcaption {
    font-size: 17px;
  }

  .recipe-intro__dark {
    min-height: 520px;
  }

  .recipe-intro__clouds {
    top: 22px;
    width: 460px;
  }

  .recipe-intro__angel {
    top: 255px;
    left: -70px;
    width: 280px;
  }

  .recipe-intro__text {
    width: 340px;
    max-width: calc(100% - 56px);
    font-size: 15px;
  }

  .recipe-intro__text--first {
    left: 28px;
  }

  .recipe-intro__text--second {
    left: 240px;
  }

  .recipe-intro__text--third {
    left: 420px;
    right: auto;
  }

  .recipe-intro__ingredients {
    min-height: 767px;
  }

  .recipe-intro__heading h2 {
    font-size: 38px;
  }

  .recipe-intro__book-wrap {
    bottom: 77px;
    transform: translateX(-50%) scale(0.516);
  }

  .recipe-intro__paper-bottom {
    width: 315px;
  }
}

@media (max-width: 900px) {
  .recipe-intro__angel {
    display: none;
  }
}

@media (max-width: 800px) {
  .site-header__inner {
    padding: 14px 16px;
  }

  .site-header__logo-link {
    width: 124px;
    height: auto;
    margin: 0;
  }

  .recipe-hero {
    height: auto;
    min-height: 0;
    max-height: none;
    overflow: hidden;
  }

  .recipe-hero__content {
    width: 100%;
    padding: 112px 16px 118px;
  }

  .breadcrumbs {
    display: block;
    justify-content: flex-start;
    font-size: 14px;
    text-align: left;
  }

  .breadcrumbs a,
  .breadcrumbs span {
    display: inline;
  }

  .recipe-hero h1 {
    max-width: 560px;
    margin-top: 470px;
    margin-bottom: 42px;
    font-size: 62px;
    line-height: 0.9;
  }

  .recipe-hero__scroll {
    width: min(660px, calc(100vw - 32px));
    height: auto;
    margin-bottom: 70px;
  }

  .recipe-hero__paper--left,
  .recipe-hero__church {
    display: none;
  }

  .recipe-hero__paper {
    z-index: 1;
  }

  .recipe-hero__paper--right {
    top: 0;
    right: -180px;
    width: 420px;
    height: 186px;
  }

  .recipe-hero__dish {
    top: 164px;
    left: 50%;
    right: auto;
    width: 500px;
    transform: translateX(-50%);
  }

  .recipe-intro__dark {
    position: relative;
    display: flex;
    min-height: 0;
    flex-direction: column;
    padding: 92px 0 300px;
  }

  .recipe-intro__clouds {
    position: absolute;
    top: auto;
    right: -120px;
    bottom: 44px;
    z-index: 1;
    width: 620px;
    max-width: 86vw;
  }

  .recipe-intro__birds {
    position: absolute;
    top: auto;
    left: 20px;
    bottom: 108px;
    z-index: 1;
    width: 300px;
  }

  .recipe-intro__text {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    order: 1;
    width: calc(100% - 40px);
    max-width: 540px;
    margin: 0 20px 34px auto;
    font-size: 18px;
    line-height: 1.45;
  }

  .recipe-intro__text--first {
    padding-top: 0;
  }

  .recipe-intro__ingredients {
    min-height: 835px;
  }

  .recipe-intro__heading {
    padding-top: 82px;
  }

  .recipe-intro__book-wrap {
    left: 18px;
    bottom: 74px;
    transform: scale(0.475);
    transform-origin: bottom left;
  }
}

@media (max-width: 768px) {
  .share-widget {
    right: 16px;
    bottom: 16px;
    width: min(360px, calc(100vw - 16px));
    height: 190px;
  }

  .share-widget__toggle,
  .share-widget__toggle img {
    width: 270px;
    height: 54px;
  }

  .share-widget__toggle {
    margin-top: 136px;
  }

  .share-widget__button-label {
    width: 270px;
    height: 54px;
    font-size: 22px;
  }

  .share-widget__link {
    right: 90px;
    bottom: 7px;
  }

  .share-widget__label {
    right: 48px;
    bottom: 48px;
    font-size: 18px;
  }

  .share-widget:hover .share-widget__link:nth-child(2),
  .share-widget:focus-within .share-widget__link:nth-child(2) {
    transform: translate(20px, -58px) scale(1);
  }

  .share-widget:hover .share-widget__link:nth-child(3),
  .share-widget:focus-within .share-widget__link:nth-child(3) {
    transform: translate(-24px, -86px) scale(1);
  }

  .share-widget:hover .share-widget__link:nth-child(4),
  .share-widget:focus-within .share-widget__link:nth-child(4) {
    transform: translate(-76px, -92px) scale(1);
  }

  .share-widget:hover .share-widget__link:nth-child(5),
  .share-widget:focus-within .share-widget__link:nth-child(5) {
    transform: translate(-128px, -78px) scale(1);
  }

  .share-widget:hover .share-widget__link:nth-child(6),
  .share-widget:focus-within .share-widget__link:nth-child(6) {
    transform: translate(-170px, -46px) scale(1);
  }

  .recipe-hero {
    height: auto;
    min-height: 0;
    max-height: none;
    overflow: hidden;
  }

  .recipe-hero__content {
    width: 100%;
    padding: 110px 16px 120px;
  }

  .breadcrumbs {
    display: block;
    justify-content: flex-start;
    font-size: 14px;
    text-align: left;
  }

  .breadcrumbs a,
  .breadcrumbs span {
    display: inline;
  }

  .recipe-hero h1 {
    max-width: 520px;
    margin-top: 390px;
    margin-bottom: 42px;
    font-size: 58px;
    line-height: 0.9;
  }

  .recipe-hero__scroll {
    width: min(620px, calc(100vw - 32px));
    height: auto;
    margin-bottom: 70px;
  }

  .recipe-hero__scroll dl {
    gap: 18px;
    width: 62%;
  }

  .recipe-hero__scroll dt {
    font-size: 18px;
  }

  .recipe-hero__scroll dd {
    font-size: 11px;
  }

  .recipe-hero__quote {
    width: min(520px, 86vw);
    margin: 0 auto;
  }

  .recipe-hero__paper--left {
    display: none;
  }

  .recipe-hero__paper--right {
    top: 0;
    right: -180px;
    width: 420px;
    height: 186px;
  }

  .recipe-hero__church {
    display: none;
  }

  .recipe-hero__dish {
    top: 160px;
    left: 50%;
    right: auto;
    width: 460px;
    transform: translateX(-50%);
  }

  .recipe-intro__dark {
    display: flex;
    min-height: 0;
    flex-direction: column;
    padding: 92px 0 80px;
  }

  .recipe-intro__clouds {
    position: relative;
    top: auto;
    right: auto;
    order: 2;
    align-self: flex-end;
    margin-top: 34px;
    width: 620px;
    max-width: 86vw;
    z-index: 2;
  }

  .recipe-intro__birds {
    position: relative;
    top: auto;
    left: auto;
    order: 2;
    align-self: flex-start;
    margin-top: -150px;
    margin-left: 20px;
    width: 300px;
    z-index: 1;
  }

  .recipe-intro__angel {
    top: 455px;
    left: -80px;
    width: 300px;
  }

  .recipe-intro__text {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    order: 1;
    width: calc(100% - 40px);
    max-width: 520px;
    margin: 0 20px 34px auto;
    font-size: 18px;
    line-height: 1.45;
  }

  .recipe-intro__text--first {
    padding-top: 0;
  }

  .recipe-intro__ingredients {
    min-height: 820px;
  }

  .recipe-intro__heading {
    padding-top: 80px;
  }

  .recipe-intro__heading h2 {
    font-size: 36px;
  }

  .recipe-intro__book-wrap {
    left: 18px;
    bottom: 72px;
    transform: scale(0.46);
    transform-origin: bottom left;
  }

  .recipe-intro__paper-bottom {
    width: 300px;
  }
}

@media (max-width: 700px) {
  .site-header__logo-link {
    width: 112px;
  }

  .recipe-hero h1 {
    max-width: 470px;
    margin-top: 410px;
    font-size: 52px;
  }

  .recipe-hero__dish {
    top: 150px;
    width: 390px;
  }

  .recipe-hero__scroll {
    width: min(560px, calc(100vw - 32px));
  }

  .recipe-intro__text {
    max-width: 480px;
    font-size: 17px;
  }

  .recipe-intro__ingredients {
    min-height: 750px;
  }

  .recipe-intro__heading {
    padding-top: 68px;
  }

  .recipe-intro__heading h2 {
    font-size: 34px;
  }

  .recipe-intro__book-wrap {
    left: 14px;
    bottom: 66px;
    transform: scale(0.425);
    transform-origin: bottom left;
  }
}

@media (max-width: 600px) {
  .recipe-hero h1 {
    max-width: 420px;
    margin-top: 340px;
    font-size: 46px;
  }

  .recipe-hero__dish {
    top: 150px;
    width: 390px;
  }

  .recipe-hero__quote {
    width: min(420px, 86vw);
  }

  .recipe-intro__dark {
    padding-top: 84px;
  }

  .recipe-intro__text {
    width: calc(100% - 48px);
    max-width: none;
    margin-right: 24px;
    margin-left: 24px;
    font-size: 17px;
    line-height: 1.45;
  }

  .recipe-intro__ingredients {
    min-height: 720px;
  }

  .recipe-intro__heading h2 {
    font-size: 32px;
  }

  .recipe-intro__book-wrap {
    left: 10px;
    bottom: 64px;
    transform: scale(0.4);
    transform-origin: bottom left;
  }
}

@media (max-width: 500px) {
  .recipe-hero h1 {
    max-width: 380px;
    margin-top: 390px;
    font-size: 40px;
  }

  .recipe-hero__dish {
    top: 162px;
    left: 50%;
    width: 350px;
    transform: translateX(-50%);
  }

  .recipe-hero__scroll {
    width: min(420px, calc(100vw - 32px));
  }

  .recipe-intro__ingredients {
    min-height: 690px;
  }

  .recipe-intro__heading {
    padding-top: 48px;
  }

  .recipe-intro__book-wrap {
    left: 8px;
    bottom: 62px;
    transform: scale(0.38);
    transform-origin: bottom left;
  }
}

@media (max-width: 420px) {
  .site-header__inner {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .site-header__logo-link {
    width: 104px;
  }

  .recipe-hero {
    height: auto;
    min-height: 0;
  }

  .recipe-hero__content {
    padding-top: 96px;
    padding-bottom: 110px;
  }

  .breadcrumbs {
    position: absolute;
    top: 100px;
    left: 16px;
    right: 16px;
    z-index: 5;
    justify-content: flex-start;
    font-size: 12px;
    text-align: left;
  }

  .recipe-hero__dish {
    top: 164px;
    left: 32px;
    right: auto;
    width: 340px;
    transform: none;
  }

  .recipe-hero h1 {
    margin-top: 420px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 42px;
    font-size: 36px;
  }

  .recipe-hero__scroll {
    width: 390px;
    max-width: calc(100vw - 32px);
    height: auto;
    margin-bottom: 74px;
  }

  .recipe-hero__quote {
    font-size: 24px;
  }

  .recipe-intro__dark {
    padding-top: 82px;
    padding-bottom: 70px;
  }

  .recipe-intro__clouds {
    position: relative;
    right: auto;
    top: auto;
    bottom: auto;
    order: 2;
    align-self: flex-end;
    margin-top: 28px;
    z-index: 2;
    width: 520px;
    max-width: 92vw;
  }

  .recipe-intro__birds {
    position: relative;
    left: auto;
    top: auto;
    bottom: auto;
    order: 2;
    z-index: 1;
    align-self: flex-start;
    margin-top: -126px;
    margin-left: -70px;
    width: 260px;
  }

  .recipe-intro__angel {
    display: none;
  }

  .recipe-intro__text {
    order: 1;
    width: calc(100% - 48px);
    max-width: none;
    margin-right: 24px;
    margin-left: 24px;
    font-size: 16px;
    line-height: 1.45;
  }

  .recipe-intro__text--first {
    padding-top: 0;
  }

  .recipe-intro__ingredients {
    min-height: 0;
    padding-bottom: 92px;
  }

  .recipe-intro__heading {
    padding-top: 38px;
  }

  .recipe-intro__heading h2 {
    font-size: 32px;
  }

  .recipe-intro__heading p {
    font-size: 14px;
  }

  .recipe-intro__book-wrap {
    position: relative;
    left: -18px;
    bottom: auto;
    width: 740px;
    height: 690px;
    margin-top: 40px;
    transform: none;
    transform-origin: bottom left;
  }

  .recipe-intro__book {
    width: 740px;
    height: 557px;
  }

  .ingredients-book {
    top: 87px;
    left: 63px;
    width: 250px;
    font-size: 17px;
    line-height: 1.18;
    transform: none;
  }

  .ingredients-book__list {
    gap: 1.5px;
  }

  .ingredients-book__list div {
    gap: 5px;
  }

  .ingredients-book__list div::after {
    min-width: 12px;
    transform: translateY(-3px);
  }

  .ingredients-book__nutrition {
    position: absolute;
    top: 595px;
    left: 22px;
    width: calc(100vw - 44px);
    gap: 18px;
    margin-top: 0;
    transform: none;
  }

  .ingredients-book__nutrition strong {
    font-size: 24px;
  }

  .ingredients-book__nutrition span {
    font-size: 16px;
  }

  .ingredients-book__note {
    position: absolute;
    top: 668px;
    left: 22px;
    width: calc(100vw - 44px);
    margin-top: 0;
    font-size: 18px;
    transform: none;
  }

  .recipe-intro__paper-bottom {
    width: 230px;
  }
}

@media (max-width: 1600px) {
  .recipe-steps {
    min-height: 960px;
  }

  .recipe-steps__inner {
    padding-top: 108px;
  }

  .recipe-steps h2 {
    font-size: 62px;
  }

  .recipe-steps__cucumbers,
  .recipe-steps__potato {
    width: 430px;
  }

  .ready-meal h2 {
    font-size: 62px;
  }

  .ready-meal__viewport,
  .ready-meal__slide {
    height: 390px;
  }

  .ready-meal__slide {
    width: min(660px, calc(100vw - 100px));
  }

  .ready-meal__slide.is-prev {
    transform: translateX(calc(-50% - 720px));
  }

  .ready-meal__slide.is-next {
    transform: translateX(calc(-50% + 720px));
  }

  .recipe-variants__inner {
    width: min(1320px, calc(100% - 64px));
  }

  .recipe-variants h2 {
    font-size: 62px;
  }

  .recipe-variants__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 68px 58px;
  }

  .recipe-variant {
    width: auto;
    grid-template-columns: 250px 1fr;
    gap: 32px;
    padding: 46px;
  }

  .recipe-variant__image {
    width: 250px;
  }

  .recipe-variant h3 {
    font-size: 28px;
  }

  .recipe-variant p {
    font-size: 16px;
  }

  .cooking-tips__inner,
  .related-recipes__inner {
    width: min(1320px, calc(100% - 64px));
  }

  .cooking-tips h2,
  .related-recipes h2 {
    font-size: 62px;
  }

  .cooking-tips__angel {
    right: -90px;
    width: 390px;
  }

  .cooking-tips__quote {
    right: 0;
    width: 360px;
    font-size: 28px;
  }

  .related-recipe {
    width: min(560px, calc(100vw - 80px));
  }

  .related-recipe.is-active {
    transform: translateX(calc(-50% - 310px));
  }

  .related-recipe.is-next {
    transform: translateX(calc(-50% + 310px));
  }
}

@media (max-width: 1650px) {
  .recipe-variants__inner {
    width: min(1440px, calc(100% - 40px));
  }

  .recipe-variants__grid {
    grid-template-columns: repeat(2, minmax(0, 700px));
    gap: 56px 32px;
  }

  .recipe-variant {
    display: block;
    padding: 46px 42px;
  }

  .recipe-variant__image {
    width: 250px;
    margin: 0 auto 28px;
  }

  .recipe-variant__content {
    text-align: left;
  }
}

@media (max-width: 992px) {
  .recipe-steps {
    min-height: 900px;
  }

  .recipe-steps__inner {
    padding-top: 86px;
  }

  .recipe-steps h2 {
    margin-bottom: 52px;
    font-size: 50px;
  }

  .recipe-steps__viewport {
    height: 510px;
  }

  .recipe-step {
    min-height: 510px;
    padding: 82px 56px 58px;
  }

  .recipe-step.is-prev {
    transform: translateX(calc(-50% - 620px)) scale(0.9);
  }

  .recipe-step.is-next {
    transform: translateX(calc(-50% + 620px)) scale(0.9);
  }

  .recipe-step h3 {
    font-size: 26px;
  }

  .recipe-step p {
    font-size: 17px;
  }

  .recipe-steps__cucumbers,
  .recipe-steps__potato {
    width: 310px;
  }

  .ready-meal__inner {
    padding-top: 68px;
  }

  .ready-meal h2 {
    margin-bottom: 36px;
    font-size: 50px;
  }

  .ready-meal__viewport,
  .ready-meal__slide {
    height: 320px;
  }

  .ready-meal__slide {
    width: min(540px, calc(100vw - 60px));
  }

  .ready-meal__slide.is-prev {
    transform: translateX(calc(-50% - 600px));
  }

  .ready-meal__slide.is-next {
    transform: translateX(calc(-50% + 600px));
  }

  .ready-meal__controls {
    gap: 150px;
  }

  .recipe-variants__inner {
    width: min(720px, calc(100% - 40px));
    padding-top: 74px;
    padding-bottom: 84px;
  }

  .recipe-variants__header {
    margin-bottom: 54px;
  }

  .recipe-variants h2 {
    font-size: 50px;
  }

  .recipe-variants__header p {
    font-size: 17px;
  }

  .recipe-variants__grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .recipe-variant {
    min-height: 0;
    grid-template-columns: 220px 1fr;
  }

  .recipe-variant__image {
    width: 220px;
  }

  .cooking-tips__inner,
  .related-recipes__inner {
    width: min(720px, calc(100% - 40px));
  }

  .cooking-tips__inner {
    min-height: 0;
    padding-top: 72px;
    padding-bottom: 560px;
  }

  .cooking-tips h2,
  .related-recipes h2 {
    font-size: 50px;
  }

  .cooking-tips__content {
    width: 100%;
  }

  .cooking-tips__quote {
    position: relative;
    top: auto;
    right: auto;
    width: min(420px, 100%);
    margin: 56px 0 0 auto;
  }

  .cooking-tips__angel {
    right: 50%;
    bottom: -20px;
    width: 360px;
    transform: translateX(calc(62% + var(--cooking-angel-shift, 220px)));
  }

  .related-recipes__viewport {
    height: 420px;
  }

  .related-recipe {
    width: min(520px, calc(100vw - 60px));
  }

  .related-recipe.is-active {
    transform: translateX(-50%);
  }

  .related-recipe.is-next,
  .related-recipe.is-prev {
    opacity: 0;
  }

  .related-recipes__controls {
    gap: 150px;
  }

  .recipe-faq__inner {
    width: min(720px, calc(100% - 40px));
    padding-top: 74px;
    padding-bottom: 92px;
  }

  .recipe-faq h2 {
    font-size: 50px;
  }

  .recipe-faq__question span:last-child {
    font-size: 24px;
  }

  .recipe-faq__meta {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 76px;
  }

  .recipe-faq__text {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .recipe-faq__media {
    position: relative;
    left: auto;
    top: auto;
    order: 2;
    width: 100%;
    transform: none;
    pointer-events: auto;
  }

  .recipe-faq__text-content {
    order: 1;
    grid-column: auto;
  }

  .recipe-faq__media img {
    width: min(760px, 118%);
    margin: 0 auto;
    transform: translateX(-6%);
  }

  .site-footer__inner {
    width: min(720px, calc(100% - 40px));
    grid-template-columns: 1fr;
    gap: 34px;
    justify-items: center;
  }

  .site-footer__center {
    order: 1;
  }

  .site-footer__nav {
    justify-content: center;
    padding-top: 0;
  }

  .site-footer__nav--left {
    order: 2;
  }

  .site-footer__nav--right {
    order: 3;
  }
}

@media (max-width: 800px) {
  .recipe-steps {
    min-height: 0;
  }

  .recipe-steps__inner {
    width: calc(100% - 32px);
    padding-top: 76px;
    padding-bottom: 72px;
  }

  .recipe-steps h2 {
    margin-bottom: 42px;
    font-size: 44px;
  }

  .recipe-steps__viewport {
    height: var(--steps-mobile-height, 570px);
    touch-action: pan-y;
    transition: height 0.35s ease;
  }

  .recipe-step {
    position: absolute;
    left: 50%;
    display: block;
    width: 100%;
    min-height: var(--steps-mobile-height, 570px);
    padding: 108px 56px 96px;
  }

  .recipe-step.is-active {
    transform: translateX(-50%) scale(1);
  }

  .recipe-step.is-prev,
  .recipe-step.is-next {
    opacity: 0;
  }

  .recipe-step h3 {
    margin-bottom: 20px;
    font-size: 22px;
  }

  .recipe-step p {
    font-size: 15px;
  }

  .recipe-step__decor {
    width: 124px;
  }

  .recipe-step__decor--top {
    top: 18px;
    left: 18px;
  }

  .recipe-step__decor--bottom {
    right: 18px;
    bottom: 18px;
  }

  .recipe-steps__controls {
    position: relative;
    z-index: 10;
    gap: 38px;
    margin-top: 28px;
  }

  .recipe-steps__cucumbers {
    bottom: 22px;
    left: -80px;
    width: 260px;
  }

  .recipe-steps__potato {
    top: -8px;
    right: -72px;
    width: 260px;
  }

  .ready-meal h2 {
    font-size: 44px;
  }

  .ready-meal__viewport,
  .ready-meal__slide {
    height: clamp(220px, 54vw, 300px);
  }

  .ready-meal__slide {
    width: min(500px, calc(100vw - 48px));
  }

  .ready-meal__slide > img:not(.ready-meal__decor) {
    object-fit: contain;
  }

  .ready-meal__decor {
    width: clamp(78px, 22vw, 120px);
  }

  .ready-meal__decor--top {
    top: -28px;
    left: -18px;
  }

  .ready-meal__decor--bottom {
    right: -18px;
    bottom: -28px;
  }

  .ready-meal__slide.is-prev,
  .ready-meal__slide.is-next {
    opacity: 0;
  }

  .ready-meal__controls {
    gap: 90px;
    margin-top: 40px;
  }

  .recipe-variants h2 {
    font-size: 44px;
  }

  .recipe-variant {
    grid-template-columns: 190px 1fr;
    gap: 28px;
    padding: 40px 34px;
  }

  .recipe-variant__image {
    width: 190px;
  }

  .recipe-variant__decor {
    width: 120px;
  }

  .recipe-variant h3 {
    font-size: 24px;
  }

  .recipe-variant p {
    font-size: 15px;
  }

  .cooking-tips h2,
  .related-recipes h2 {
    font-size: 44px;
  }

  .cooking-tips__header {
    margin-bottom: 52px;
  }

  .cooking-tips__list li {
    padding-left: 54px;
  }

  .cooking-tips__list h3 {
    font-size: 20px;
  }

  .cooking-tips__summary {
    font-size: 20px;
  }

  .related-recipe {
    padding: 52px 42px 48px;
  }

  .related-recipes__controls {
    gap: 90px;
    margin-top: 40px;
  }
}

@media (max-width: 600px) {
  .recipe-steps__viewport {
    height: var(--steps-mobile-height, 650px);
  }

  .recipe-step {
    min-height: var(--steps-mobile-height, 650px);
  }

  .recipe-steps__arrow,
  .recipe-steps__arrow img,
  .ready-meal__arrow,
  .ready-meal__arrow img {
    width: 56px;
  }

  .ready-meal__viewport,
  .ready-meal__slide {
    height: clamp(190px, 58vw, 240px);
  }

  .ready-meal__slide {
    width: calc(100vw - 40px);
  }

  .ready-meal__decor {
    width: clamp(64px, 21vw, 96px);
  }

  .ready-meal__decor--top {
    top: -20px;
    left: -10px;
  }

  .ready-meal__decor--bottom {
    right: -10px;
    bottom: -20px;
  }

  .recipe-variants__inner {
    width: calc(100% - 32px);
    padding-top: 62px;
    padding-bottom: 68px;
  }

  .recipe-variant {
    display: block;
    padding: 42px 28px;
  }

  .recipe-variant__image {
    width: 220px;
    margin: 0 auto 26px;
  }

  .recipe-variant__content {
    text-align: left;
  }

  .cooking-tips__inner {
    width: calc(100% - 32px);
    padding-bottom: 480px;
  }

  .cooking-tips__header p,
  .cooking-tips__list p {
    font-size: 16px;
  }

  .cooking-tips__quote {
    font-size: 24px;
  }

  .cooking-tips__angel {
    width: 320px;
  }

  .related-recipes__inner {
    width: calc(100% - 32px);
  }

  .related-recipe {
    width: min(430px, calc(100vw - 32px));
    padding: 46px 28px 42px;
  }

  .related-recipe__image {
    width: 230px;
  }

  .related-recipes__arrow,
  .related-recipes__arrow img {
    width: 56px;
  }

  .recipe-faq__inner {
    width: calc(100% - 32px);
    padding-top: 62px;
    padding-bottom: 76px;
  }

  .recipe-faq__lead,
  .recipe-faq__text,
  .recipe-faq__answer p {
    font-size: 16px;
  }

  .recipe-faq__text {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .recipe-faq__media {
    position: relative;
    left: auto;
    top: auto;
    order: 2;
    width: 100%;
    transform: none;
    pointer-events: auto;
  }

  .recipe-faq__text-content {
    order: 1;
    grid-column: auto;
    gap: 22px;
  }

  .recipe-faq__media img {
    width: min(720px, 135%);
    margin: 0 auto;
    transform: translateX(-10%);
  }

  .recipe-faq__accordion {
    margin-bottom: 64px;
  }

  .recipe-faq__question {
    grid-template-columns: 28px 1fr;
    gap: 14px;
  }

  .recipe-faq__question span:last-child {
    font-size: 20px;
  }

  .recipe-faq__answer > div {
    padding-left: 42px;
  }

  .recipe-faq__author strong {
    font-size: 22px;
  }

  .recipe-faq__avatar {
    width: 62px;
    height: 62px;
  }

  .recipe-faq__rating,
  .recipe-faq__share {
    flex-wrap: wrap;
  }

  .site-footer__inner {
    width: calc(100% - 32px);
    padding: 58px 0 72px;
  }

  .site-footer__nav {
    flex-wrap: wrap;
    gap: 18px 24px;
    font-size: 18px;
  }

  .site-footer__logo img {
    width: 156px;
  }

  .site-footer__privacy,
  .site-footer__details,
  .site-footer__email {
    font-size: 16px;
  }

  .requisites-modal__dialog {
    padding: 46px 30px 36px;
  }

  .requisites-modal__dialog h2 {
    font-size: 34px;
  }

  .requisites-modal__dialog p {
    font-size: 16px;
  }
}

@media (max-width: 420px) {
  .recipe-steps {
    min-height: 0;
  }

  .recipe-steps__inner {
    padding-top: 66px;
  }

  .recipe-steps h2 {
    font-size: 36px;
  }

  .recipe-steps__viewport {
    height: var(--steps-mobile-height, 720px);
  }

  .recipe-step {
    min-height: var(--steps-mobile-height, 720px);
    padding: 96px 34px 92px;
  }

  .recipe-step h3 {
    font-size: 20px;
  }

  .recipe-step p {
    font-size: 16px;
  }

  .recipe-step__decor {
    width: 108px;
  }

  .recipe-steps__counter {
    min-width: 64px;
    font-size: 24px;
  }

  .recipe-steps__controls {
    gap: 26px;
  }

  .recipe-steps__cucumbers {
    left: -118px;
    width: 250px;
  }

  .recipe-steps__potato {
    right: -112px;
    width: 250px;
  }

  .ready-meal__inner {
    padding-top: 54px;
    padding-bottom: 52px;
  }

  .ready-meal h2 {
    font-size: 36px;
  }

  .ready-meal__viewport,
  .ready-meal__slide {
    height: clamp(170px, 56vw, 210px);
  }

  .ready-meal__slide {
    width: calc(100vw - 32px);
  }

  .ready-meal__decor {
    width: clamp(56px, 20vw, 78px);
  }

  .ready-meal__decor--top {
    top: -14px;
    left: -6px;
  }

  .ready-meal__decor--bottom {
    right: -6px;
    bottom: -14px;
  }

  .ready-meal__controls {
    gap: 64px;
    margin-top: 32px;
  }

  .recipe-variants h2 {
    font-size: 36px;
  }

  .recipe-variants__header p {
    font-size: 15px;
  }

  .recipe-variant {
    padding: 38px 22px;
  }

  .recipe-variant__image {
    width: 190px;
  }

  .recipe-variant__decor {
    width: 104px;
  }

  .recipe-variant h3 {
    font-size: 22px;
  }

  .recipe-variant p {
    font-size: 16px;
  }

  .cooking-tips__inner {
    padding-top: 56px;
    padding-bottom: 420px;
  }

  .cooking-tips h2,
  .related-recipes h2 {
    font-size: 36px;
  }

  .cooking-tips__list li {
    padding-left: 42px;
  }

  .cooking-tips__list li::before {
    font-size: 24px;
  }

  .cooking-tips__list h3 {
    font-size: 18px;
  }

  .cooking-tips__summary {
    font-size: 18px;
  }

  .cooking-tips__angel {
    width: 280px;
  }

  .related-recipes__viewport {
    height: 440px;
  }

  .related-recipe__image {
    width: 200px;
  }

  .related-recipe h3 {
    font-size: 22px;
  }

  .related-recipe p {
    font-size: 16px;
  }

  .related-recipes__controls {
    gap: 64px;
  }

  .recipe-faq h2 {
    font-size: 36px;
  }

  .recipe-faq__lead {
    margin-bottom: 42px;
  }

  .recipe-faq__question span:last-child {
    font-size: 18px;
  }

  .recipe-faq__rating img,
  .recipe-faq__share a,
  .recipe-faq__share img {
    width: 24px;
    height: 24px;
  }
}

/* Menu page */

.menu-page {
  min-height: 100vh;
  color: var(--color-text);
}

.menu-hero.recipe-hero {
  height: 1120px;
}

.menu-hero .recipe-hero__content {
  z-index: 4;
  width: min(1920px, 100%);
  padding-left: clamp(24px, 5vw, 96px);
  padding-right: clamp(24px, 5vw, 96px);
  text-align: left;
}

.menu-hero .breadcrumbs {
  justify-content: flex-start;
}

.menu-hero.recipe-hero h1 {
  max-width: 560px;
  margin-top: 0;
  margin-right: auto;
  margin-left: 0;
  font-size: clamp(46px, 4.2vw, 68px);
  line-height: 1;
}

.menu-hero .recipe-hero__paper {
  z-index: 110;
}

.menu-hero .recipe-hero__church {
  z-index: 120;
  display: block;
  left: auto;
  right: calc(var(--hero-side) + clamp(32px, 5vw, 96px));
  bottom: clamp(150px, 10vw, 190px);
  width: clamp(760px, 48vw, 920px);
  height: auto;
  object-fit: contain;
}

.menu-hero + .recipe-pattern-screen {
  position: relative;
  z-index: 3;
  margin-top: -140px;
}

.menu-hero__dish {
  top: 420px;
  right: calc(var(--hero-side) - 120px);
  width: min(820px, 46vw);
  object-fit: contain;
}

.menu-hero__lead {
  max-width: 560px;
  margin: 0 0 72px;
  font-size: 22px;
  line-height: 1.45;
  color: var(--color-title);
}

#supy.menu-category {
  color: #f4eee4;
  background: #3d533e;
}

#supy.menu-category::after {
  opacity: 0;
  background-image: none;
}

#supy .menu-category__arrow img,
#supy .menu-category__arrow.is-highlighted img {
  filter: brightness(0) invert(1);
}

#supy .menu-category__viewport .menu-dish.recipe-variant .recipe-variant__decor,
#supy .menu-category__viewport .menu-dish.recipe-variant:hover .recipe-variant__decor,
#supy .menu-category__viewport .menu-dish.recipe-variant:focus-visible .recipe-variant__decor {
  filter: brightness(0) invert(1);
}

.menu-ornament-divider {
  position: relative;
  z-index: 4;
  height: 0;
  overflow: visible;
  background: transparent;
  pointer-events: none;
}

.menu-ornament-divider img {
  position: absolute;
  top: -200px;
  left: 0;
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
}

.menu-ornament-divider--forest-glade::before,
.menu-ornament-divider--vaalam::before,
.menu-ornament-divider--coffee-wheat::before,
.menu-ornament-divider--garden-vegetables::before,
.menu-ornament-divider--monks-coffee::before,
.menu-ornament-divider--sauces-appetizers::before,
.menu-ornament-divider--wheat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 240px;
  background-repeat: repeat-x;
  background-position: top center;
  background-size: auto 100%;
  transform: translateY(-50%);
}

.menu-ornament-divider--wheat::before {
  background-color: #3d533e;
  background-image: url("../images/optimized/wheat-sprout-pattern.webp?v=20260620-pattern2");
}

.menu-ornament-divider--forest-glade::before {
  top: -50px;
  height: 300px;
  background-image: url("../images/optimized/wheat-sprout-pattern-regenerated.webp?v=20260620-pattern2");
}

.menu-ornament-divider--coffee-wheat::before {
  top: 60px;
  z-index: 1;
  height: 200px;
  background-color: #44423E;
  background-image: url("../images/optimized/pattern-coffee-wheat.webp?v=20260620-pattern2");
  background-position: center 35px;
}

.menu-ornament-divider--garden-vegetables::before {
  top: -50px;
  height: 300px;
  background-image: url("../images/optimized/pattern-garden-vegetables.webp?v=20260620-pattern2");
  background-position: center 65px;
  background-size: auto 50%;
}

.menu-ornament-divider--monks-coffee::before {
  top: -30px;
  height: 180px;
  background-image: url("../images/optimized/orthodox-monks-coffee-pattern-2500x400.webp?v=20260620-pattern2");
  background-size: auto 70%;
}

.menu-ornament-divider--sauces-appetizers::before {
  top: -85px;
  height: 220px;
  background-image: url("../images/optimized/pattern-sauces-appetizers.webp?v=20260728-bg");
  background-position: center 40px;
  background-size: auto 187px;
}

.menu-ornament-divider--vaalam::before {
  top: -30px;
  height: 300px;
  background-image: url("../images/optimized/ornament-vaalam.webp?v=20260620-pattern2");
}

#supy .recipe-variants__inner {
  padding-bottom: 250px;
}

#goryachie .recipe-variants__inner {
  padding-top: 230px;
  padding-bottom: 260px;
}

#salaty .recipe-variants__inner {
  padding-top: 240px;
  padding-bottom: 260px;
}

#vypechka .recipe-variants__inner {
  padding-top: 240px;
}

#deserty .recipe-variants__inner {
  padding-top: 420px;
}

#napitki .recipe-variants__inner {
  padding-bottom: 260px;
}

#sousy .recipe-variants__inner {
  padding-top: 240px;
  padding-bottom: 240px;
}

#zakuski .recipe-variants__inner {
  padding-top: 240px;
}

@media (max-width: 1600px) {
  .menu-hero .recipe-hero__church {
    bottom: clamp(180px, 12vw, 210px);
    width: clamp(760px, 51vw, 860px);
  }
}

@media (max-width: 1440px) {
  .menu-hero .recipe-hero__content {
    padding-left: clamp(24px, 5vw, 72px);
    padding-right: clamp(24px, 5vw, 72px);
  }

  .menu-hero.recipe-hero h1,
  .menu-hero__lead {
    max-width: 500px;
  }

  .menu-hero .recipe-hero__church {
    right: calc(var(--hero-side) + clamp(24px, 5vw, 72px));
    bottom: 200px;
    width: clamp(720px, 54vw, 800px);
  }
}

@media (max-width: 1100px) {
  .menu-hero.recipe-hero h1,
  .menu-hero__lead {
    max-width: 390px;
  }

  .menu-hero.recipe-hero h1 {
    font-size: clamp(42px, 5vw, 54px);
  }

  .menu-hero__lead {
    font-size: 20px;
  }

  .menu-hero .recipe-hero__church {
    right: -80px;
    bottom: 180px;
    width: clamp(600px, 58vw, 660px);
  }
}

@media (max-width: 1024px) {
  .menu-hero.recipe-hero h1,
  .menu-hero__lead {
    max-width: 370px;
  }

  .menu-hero.recipe-hero h1 {
    font-size: clamp(40px, 5.2vw, 50px);
  }

  .menu-hero .recipe-hero__church {
    right: -112px;
    bottom: 176px;
    width: clamp(560px, 60vw, 620px);
  }
}

@media (max-width: 900px) {
  .menu-hero.recipe-hero h1,
  .menu-hero__lead {
    max-width: 340px;
  }

  .menu-hero .recipe-hero__church {
    right: -145px;
    bottom: 170px;
    width: clamp(520px, 66vw, 580px);
  }
}

.menu-category__viewport {
  --menu-visible-count: 3;
  --menu-card-gap: 40px;
  --menu-card-width: min(440px, calc((100% - 80px) / 3));
  --menu-card-height: 500px;
  --menu-card-image: 230px;
  --menu-card-decor: 80px;
  --menu-card-padding-x: 30px;
  --menu-card-padding-y: 34px;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: var(--menu-card-height);
  touch-action: pan-y;
  cursor: grab;
}

.menu-category__viewport .menu-dish.recipe-variant {
  position: absolute;
  top: 50%;
  left: 50%;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: minmax(0, auto) 1fr;
  gap: 24px;
  align-items: center;
  align-content: start;
  width: var(--menu-card-width);
  max-width: 100%;
  min-height: 0;
  height: calc(var(--menu-card-height) - 8px);
  margin: 0;
  padding: var(--menu-card-padding-y) var(--menu-card-padding-x);
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  pointer-events: none;
  z-index: 0;
}

.menu-category__viewport .menu-dish.recipe-variant.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(calc(-50% + var(--menu-slide-offset, 0px)), -50%);
  z-index: 1;
}

.menu-category__viewport .menu-dish.recipe-variant.is-active {
  z-index: 2;
}

.menu-category__viewport .menu-dish.recipe-variant .recipe-variant__image {
  position: relative;
  z-index: 2;
  align-self: center;
  width: 100%;
  max-width: var(--menu-card-image);
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  transition: filter 0.3s ease;
}

.menu-category__viewport .menu-dish.recipe-variant .recipe-variant__content {
  position: relative;
  z-index: 2;
  min-width: 0;
  align-self: start;
  text-align: center;
}

.menu-category__viewport .menu-dish.recipe-variant .recipe-variant__content p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
}

.menu-category__viewport .menu-dish.recipe-variant .recipe-variant__decor {
  position: absolute;
  z-index: 1;
  width: var(--menu-card-decor);
  opacity: 0.28;
  filter: brightness(0) saturate(100%) invert(12%) sepia(3%) saturate(319%) hue-rotate(22deg) brightness(98%) contrast(88%);
  pointer-events: none;
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.menu-category__viewport .menu-dish.recipe-variant .recipe-variant__decor--top {
  top: 0;
  left: 0;
}

.menu-category__viewport .menu-dish.recipe-variant .recipe-variant__decor--bottom {
  right: 0;
  bottom: 0;
}

.menu-category__viewport .menu-dish.recipe-variant h3 {
  margin: 0 0 12px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.12;
}

.menu-category__viewport .menu-dish.recipe-variant p {
  margin: 0;
  font-size: 16px;
  line-height: 1.42;
}

.menu-category__viewport .menu-dish.recipe-variant h3 a {
  color: inherit;
  text-decoration: none;
}

.menu-category__viewport .menu-dish.recipe-variant:hover .recipe-variant__image,
.menu-category__viewport .menu-dish.recipe-variant:focus-visible .recipe-variant__image {
  filter: saturate(1.06) contrast(1.02);
  transform: none;
}

.menu-category__viewport .menu-dish.recipe-variant:hover .recipe-variant__decor,
.menu-category__viewport .menu-dish.recipe-variant:focus-visible .recipe-variant__decor {
  opacity: 0.45;
  filter: brightness(0) saturate(100%) invert(12%) sepia(3%) saturate(319%) hue-rotate(22deg) brightness(98%) contrast(88%);
  transform: none;
}

.menu-category__viewport .menu-dish.recipe-variant:hover .recipe-variant__decor--top,
.menu-category__viewport .menu-dish.recipe-variant:focus-visible .recipe-variant__decor--top,
.menu-category__viewport .menu-dish.recipe-variant:hover .recipe-variant__decor--bottom,
.menu-category__viewport .menu-dish.recipe-variant:focus-visible .recipe-variant__decor--bottom {
  transform: none;
}

.menu-category__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 72px;
  margin-top: 50px;
}

.menu-category__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-category__arrow img {
  width: 70px;
  height: 40px;
  opacity: 0.38;
  filter: grayscale(1);
  object-fit: contain;
  transition:
    opacity 0.25s ease,
    filter 0.25s ease;
}

.menu-category__arrow.is-highlighted img {
  opacity: 1;
  filter: grayscale(1) brightness(0);
}

.menu-category__arrow:disabled {
  cursor: default;
  pointer-events: none;
}

.menu-category__counter {
  min-width: 86px;
  font-family: var(--font-accent);
  font-size: 30px;
  line-height: 1;
  text-align: center;
}

.menu-category--dark {
  color: #f4eee4;
  background: #252523;
}

.menu-category--dark::after {
  opacity: 0.16;
}

.menu-category--dark .menu-category__arrow img {
  filter: brightness(0) invert(1);
}

.menu-category--dark .menu-category__arrow.is-highlighted img {
  opacity: 1;
  filter: brightness(0) invert(1);
}

.menu-category--dark .menu-category__viewport .menu-dish.recipe-variant .recipe-variant__decor {
  filter: brightness(0) invert(1);
}

.menu-category--dark .menu-category__viewport .menu-dish.recipe-variant:hover .recipe-variant__decor,
.menu-category--dark .menu-category__viewport .menu-dish.recipe-variant:focus-visible .recipe-variant__decor {
  filter: brightness(0) invert(1);
  transform: none;
}

.menu-readings__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 420px));
  justify-content: center;
  gap: 42px 32px;
  text-align: left;
}

.menu-readings__grid--light {
  grid-template-columns: repeat(2, minmax(0, 520px));
}

.menu-reading {
  position: relative;
  display: block;
  min-height: 220px;
  padding: 42px 38px;
  color: inherit;
  text-decoration: none;
  background: rgba(244, 238, 228, 0.06);
  border: 1px solid rgba(244, 238, 228, 0.1);
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.menu-reading:hover,
.menu-reading:focus-visible {
  transform: translateY(-4px);
  background: rgba(244, 238, 228, 0.1);
}

.menu-reading h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.15;
}

.menu-reading p {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
}

.menu-reading__decor {
  position: absolute;
  z-index: 1;
  width: 120px;
  opacity: 0.28;
  filter: grayscale(1) brightness(0) invert(1);
  pointer-events: none;
}

.menu-reading__decor--top {
  top: 0;
  left: 0;
}

.menu-reading__decor--bottom {
  right: 0;
  bottom: 0;
}

.menu-reading--light {
  background: rgba(255, 255, 255, 0.42);
  border-color: rgba(37, 37, 35, 0.08);
}

.menu-reading--light:hover,
.menu-reading--light:focus-visible {
  background: rgba(255, 255, 255, 0.72);
}

.menu-readings--light .cooking-tips__header {
  color: #252523;
}

@media (min-width: 1600px) and (max-width: 1920px) {
  .menu-category__viewport {
    --menu-card-gap: 40px;
    --menu-card-width: min(420px, calc((100% - 80px) / 3));
    --menu-card-height: 480px;
    --menu-card-image: 220px;
    --menu-card-decor: 72px;
  }

  .menu-category__viewport .menu-dish.recipe-variant h3 {
    font-size: 22px;
  }
}

@media (min-width: 768px) and (max-width: 1599px) {
  .menu-category__viewport {
    --menu-visible-count: 2;
    --menu-card-gap: 36px;
    --menu-card-width: min(440px, calc((100% - 36px) / 2));
    --menu-card-height: 470px;
    --menu-card-image: 210px;
    --menu-card-decor: 72px;
    --menu-card-padding-x: 28px;
    --menu-card-padding-y: 24px;
  }

  .menu-category__viewport .menu-dish.recipe-variant {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .menu-category__viewport .menu-dish.recipe-variant h3 {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .menu-category__viewport {
    --menu-visible-count: 1;
    --menu-card-gap: 0px;
    --menu-card-width: min(400px, calc(100% - 32px));
    --menu-card-height: 500px;
    --menu-card-image: 200px;
    --menu-card-decor: 68px;
    --menu-card-padding-x: 24px;
    --menu-card-padding-y: 28px;
  }

  .menu-category__viewport .menu-dish.recipe-variant {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    height: calc(var(--menu-card-height) - 8px);
    text-align: center;
  }

  .menu-category__viewport .menu-dish.recipe-variant.is-visible {
    transform: translate(-50%, -50%);
  }

  .menu-category__viewport .menu-dish.recipe-variant .recipe-variant__image {
    max-width: var(--menu-card-image);
    margin: 0 auto;
  }

  .menu-category__viewport .menu-dish.recipe-variant .recipe-variant__content {
    text-align: center;
  }

  .menu-category__viewport .menu-dish.recipe-variant h3 {
    font-size: 21px;
  }

  .menu-category__controls {
    gap: 42px;
    margin-top: 36px;
  }
}

@media (max-width: 1200px) {
  .menu-readings__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-readings__grid--light {
    grid-template-columns: 1fr;
  }

  .menu-category__controls {
    gap: 58px;
    margin-top: 44px;
  }
}

@media (max-width: 767px) {
  .menu-hero.recipe-hero {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 860px;
    padding-bottom: 56px;
  }

  .menu-hero .recipe-hero__content {
    order: 1;
    padding-bottom: 28px;
  }

  .menu-hero .breadcrumbs {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    margin-bottom: 24px;
  }

  .menu-hero .recipe-hero__church {
    position: relative;
    order: 2;
    display: block;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: min(520px, 92vw);
    margin: 0 auto;
  }

  .menu-hero + .recipe-pattern-screen {
    margin-top: 0;
  }

  .menu-hero.recipe-hero h1 {
    max-width: 100%;
    margin-top: 0;
    font-size: clamp(34px, 10vw, 46px);
  }

  .menu-hero__lead {
    max-width: 100%;
    margin-bottom: 48px;
    font-size: 18px;
  }

  .menu-readings__grid,
  .menu-readings__grid--light {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 480px) {
  .menu-category__viewport {
    --menu-card-width: calc(100% - 24px);
    --menu-card-height: 460px;
    --menu-card-image: min(180px, 68vw);
    --menu-card-decor: 60px;
    --menu-card-padding-x: 20px;
    --menu-card-padding-y: 24px;
  }

  .menu-category__viewport .menu-dish.recipe-variant p {
    font-size: 14px;
  }

  .menu-category__controls {
    gap: 28px;
    margin-top: 32px;
  }

  .menu-category__counter {
    min-width: 64px;
    font-size: 24px;
  }

  .menu-category__arrow {
    width: 56px;
    height: 34px;
  }

  .menu-category__arrow img {
    width: 56px;
    height: 34px;
  }
}

/* Static menu grid */

.menu-category__viewport {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 96px 64px;
  height: auto;
  overflow: visible;
  cursor: default;
}

.menu-category__viewport .menu-dish.recipe-variant {
  position: relative;
  top: auto;
  left: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-content: start;
  width: 100%;
  height: auto;
  min-height: 430px;
  padding: 28px 24px;
  overflow: visible;
  opacity: 1;
  transform: none;
  pointer-events: auto;
  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}

.menu-category__viewport .menu-dish.recipe-variant:nth-of-type(n+10) {
  display: none;
}

.menu-category.is-expanded .menu-category__viewport .menu-dish.recipe-variant:nth-of-type(n+10) {
  display: grid;
}

.menu-category__viewport .menu-dish.recipe-variant .recipe-variant__image {
  width: min(230px, 82%);
  max-width: none;
  margin: 0 auto;
  transition:
    filter 0.35s ease,
    transform 0.35s ease;
}

.menu-category__viewport .menu-dish.recipe-variant .recipe-variant__content {
  align-self: start;
  text-align: center;
}

.menu-category__viewport .menu-dish.recipe-variant h3 {
  font-size: 25px;
}

.menu-category__viewport .menu-dish.recipe-variant p {
  font-size: 16px;
}

.menu-category__viewport .menu-dish.recipe-variant .recipe-variant__decor {
  opacity: 0.32;
  filter: grayscale(1);
  transition:
    opacity 0.35s ease,
    filter 0.35s ease,
    transform 0.35s ease;
}

.menu-category__viewport .menu-dish.recipe-variant .recipe-variant__decor--top {
  top: 12px;
  left: 12px;
}

.menu-category__viewport .menu-dish.recipe-variant .recipe-variant__decor--bottom {
  right: 12px;
  bottom: 24px;
}

.menu-category__viewport .menu-dish.recipe-variant:hover,
.menu-category__viewport .menu-dish.recipe-variant:focus-within {
  transform: none;
}

.menu-category__viewport .menu-dish.recipe-variant.recipe-variant--clickable {
  cursor: pointer;
}

.menu-category__viewport .menu-dish.recipe-variant.recipe-variant--clickable:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 8px;
}

.menu-category__viewport .menu-dish.recipe-variant:hover .recipe-variant__image,
.menu-category__viewport .menu-dish.recipe-variant:focus-within .recipe-variant__image {
  filter: saturate(1.08) contrast(1.04);
  transform: translateY(-8px) scale(1.03);
}

.menu-category__viewport .menu-dish.recipe-variant:hover .recipe-variant__decor,
.menu-category__viewport .menu-dish.recipe-variant:focus-within .recipe-variant__decor {
  opacity: 0.75;
  filter: brightness(0) saturate(100%) invert(12%) sepia(3%) saturate(319%) hue-rotate(22deg) brightness(98%) contrast(88%);
}

.menu-category__viewport .menu-dish.recipe-variant:hover .recipe-variant__decor--top,
.menu-category__viewport .menu-dish.recipe-variant:focus-within .recipe-variant__decor--top {
  transform: translate(-10px, -10px);
}

.menu-category__viewport .menu-dish.recipe-variant:hover .recipe-variant__decor--bottom,
.menu-category__viewport .menu-dish.recipe-variant:focus-within .recipe-variant__decor--bottom {
  transform: translate(10px, 10px);
}

.menu-category--dark .menu-category__viewport .menu-dish.recipe-variant:hover .recipe-variant__decor,
.menu-category--dark .menu-category__viewport .menu-dish.recipe-variant:focus-within .recipe-variant__decor {
  filter: brightness(0) invert(1);
}

.menu-category__controls {
  display: none;
}

.menu-category__more {
  display: block;
  min-height: 58px;
  margin: 56px auto 0;
  padding: 18px 46px;
  border: 1px solid rgba(37, 37, 35, 0.22);
  color: #252523;
  font-family: var(--font-main);
  font-size: 18px;
  line-height: 1;
  background: rgba(255, 255, 255, 0.34);
  cursor: pointer;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.menu-category__more[hidden] {
  display: none;
}

.menu-category__more:hover,
.menu-category__more:focus-visible {
  color: #fff;
  background: #252523;
  border-color: #252523;
  transform: translateY(-3px);
}

.menu-category--dark .menu-category__more {
  color: #f4eee4;
  background: rgba(244, 238, 228, 0.08);
  border-color: rgba(244, 238, 228, 0.28);
}

.menu-category--dark .menu-category__more:hover,
.menu-category--dark .menu-category__more:focus-visible {
  color: #252523;
  background: #f4eee4;
  border-color: #f4eee4;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .menu-category__viewport {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 82px 52px;
  }

  .menu-category__viewport .menu-dish.recipe-variant {
    min-height: 420px;
  }
}

@media (max-width: 992px) {
  .menu-ornament-divider--sauces-appetizers::before {
    top: -70px;
    height: 200px;
    background-position: top center;
    background-size: auto 200px;
  }
}

@media (max-width: 767px) {
  .menu-category__viewport {
    grid-template-columns: 1fr;
    gap: 92px;
  }

  .menu-category__viewport .menu-dish.recipe-variant {
    min-height: 0;
    padding: 24px 18px 48px;
  }

  .menu-category__viewport .menu-dish.recipe-variant .recipe-variant__image {
    width: min(220px, 78vw);
  }

  .menu-category__viewport .menu-dish.recipe-variant .recipe-variant__decor--bottom {
    bottom: 8px;
  }

  .menu-category__viewport .menu-dish.recipe-variant h3 {
    font-size: 22px;
  }

  .menu-category__viewport .menu-dish.recipe-variant p {
    font-size: 15px;
  }

  .menu-ornament-divider--forest-glade::before,
  .menu-ornament-divider--vaalam::before,
  .menu-ornament-divider--wheat::before {
    height: 190px;
    background-size: auto 190px;
  }

  .menu-ornament-divider--forest-glade::before {
    top: -30px;
  }

  .menu-ornament-divider--coffee-wheat::before {
    top: 40px;
    height: 150px;
    background-position: center 28px;
    background-size: auto 150px;
  }

  .menu-ornament-divider--garden-vegetables::before {
    top: -30px;
    height: 220px;
    background-position: center 72px;
    background-size: auto 40%;
  }

  .menu-ornament-divider--monks-coffee::before {
    top: -20px;
    height: 140px;
    background-size: auto 55%;
  }

  .menu-ornament-divider--sauces-appetizers::before {
    top: -60px;
    height: 190px;
    background-position: top center;
    background-size: auto 190px;
  }

}

@media (max-width: 420px) {
  .menu-category__viewport {
    gap: 104px;
  }

  .menu-category__viewport .menu-dish.recipe-variant {
    padding-bottom: 56px;
  }

  .menu-category__viewport .menu-dish.recipe-variant .recipe-variant__decor--bottom {
    bottom: 4px;
  }

  .menu-ornament-divider--forest-glade::before,
  .menu-ornament-divider--vaalam::before,
  .menu-ornament-divider--wheat::before {
    height: 160px;
    background-size: auto 160px;
  }

  .menu-ornament-divider--coffee-wheat::before {
    height: 130px;
    background-size: auto 130px;
  }

  .menu-ornament-divider--garden-vegetables::before {
    height: 190px;
    background-size: auto 36%;
  }

  .menu-ornament-divider--monks-coffee::before {
    height: 120px;
    background-size: auto 48%;
  }

  .menu-ornament-divider--sauces-appetizers::before {
    top: -50px;
    height: 160px;
    background-position: top center;
    background-size: auto 160px;
  }
}
