@font-face {
  font-family: "Fraunces";
  src: url("/assets/fonts/subset-Fraunces72pt-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("/assets/fonts/subset-Fraunces72pt-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("/assets/fonts/subset-Fraunces72pt-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/subset-Manrope-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/subset-Manrope-ExtraBold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/subset-Manrope-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/subset-Manrope-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/subset-Manrope-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  min-width: 320px;
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: #13231d;
  background: #fbf7ed;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(217, 237, 240, 0.46), transparent 36%), repeating-linear-gradient(90deg, rgba(45, 107, 79, 0.035) 0 1px, transparent 1px 56px), #fbf7ed;
}
body::after {
  content: "";
  position: fixed;
  top: 7rem;
  right: -5rem;
  z-index: -1;
  width: 13rem;
  aspect-ratio: 0.72;
  pointer-events: none;
  border: 1px solid rgba(45, 107, 79, 0.18);
  border-radius: 52% 48% 45% 55%/58% 58% 42% 42%;
  transform: rotate(-16deg);
  opacity: 0.72;
}
body.is-menu-open, body.is-popup-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon,
.btn__icon {
  width: 1.15em;
  height: 1.15em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.container,
.header__container {
  width: min(100% - 2rem, 1180px);
  margin-inline: auto;
}
@media (min-width: 360px) {
  .container,
  .header__container {
    width: min(100% - 2.25rem, 1180px);
  }
}
@media (min-width: 1440px) {
  .container,
  .header__container {
    width: min(100% - 4rem, 1320px);
  }
}

.section {
  padding: 4rem 0;
}
@media (min-width: 768px) {
  .section {
    padding: 5.5rem 0;
  }
}
@media (min-width: 1024px) {
  .section {
    padding: 7rem 0;
  }
}
.section {
  position: relative;
}

.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0.85rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  overflow: hidden;
  transition: transform 220ms cubic-bezier(0.22, 0.9, 0.27, 1), border-color 220ms cubic-bezier(0.22, 0.9, 0.27, 1), background 220ms cubic-bezier(0.22, 0.9, 0.27, 1), color 220ms cubic-bezier(0.22, 0.9, 0.27, 1), box-shadow 220ms cubic-bezier(0.22, 0.9, 0.27, 1);
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.34) 42%, transparent 72%);
  transform: translateX(-120%);
  transition: transform 640ms cubic-bezier(0.22, 0.9, 0.27, 1);
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:hover::after {
  transform: translateX(120%);
}
.btn:focus-visible {
  outline: 3px solid rgba(242, 182, 63, 0.5);
  outline-offset: 3px;
}
.btn:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.btn--primary {
  color: #ffffff;
  background: linear-gradient(135deg, #2d6b4f, #1d4b3a);
  box-shadow: 0 12px 26px rgba(29, 75, 58, 0.25);
}
.btn--primary:hover {
  box-shadow: 0 18px 32px rgba(29, 75, 58, 0.28);
}

.btn--secondary {
  color: #1d4b3a;
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(45, 107, 79, 0.24);
}
.btn--secondary:hover {
  background: #ffffff;
  border-color: rgba(45, 107, 79, 0.42);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background: rgba(251, 247, 237, 0.88);
  border-bottom: 1px solid rgba(19, 35, 29, 0.08);
  backdrop-filter: blur(18px);
  transition: box-shadow 220ms cubic-bezier(0.22, 0.9, 0.27, 1), background 220ms cubic-bezier(0.22, 0.9, 0.27, 1);
}
.header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 28px rgba(19, 35, 29, 0.08);
}

.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.6rem;
  gap: 1rem;
}

.header__logo,
.footer__logo {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: baseline;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 750;
  line-height: 1;
  color: #13231d;
}
.header__logo::before,
.footer__logo::before {
  content: "";
  width: 0.82rem;
  height: 1.1rem;
  margin-right: 0.45rem;
  background: #f2b63f;
  border-radius: 52% 48% 45% 55%/58% 58% 42% 42%;
  transform: rotate(-12deg);
  box-shadow: inset -3px -5px 0 rgba(180, 106, 55, 0.16);
}

.header__logo--accent,
.footer__logo--accent {
  color: #2d6b4f;
}

.header__nav {
  position: fixed;
  top: 5.15rem;
  left: 1rem;
  right: 1rem;
  display: grid;
  gap: 1.15rem;
  padding: 1.15rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(19, 35, 29, 0.1);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(19, 35, 29, 0.14);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-0.9rem);
  transition: opacity 240ms cubic-bezier(0.22, 0.9, 0.27, 1), visibility 240ms cubic-bezier(0.22, 0.9, 0.27, 1), transform 240ms cubic-bezier(0.22, 0.9, 0.27, 1);
}
.header__nav.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.header__nav-list,
.footer__nav-list {
  display: grid;
  gap: 0.35rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.header__nav-link,
.footer__nav-link {
  position: relative;
  display: block;
  padding: 0.76rem 0.8rem;
  border-radius: 8px;
  color: rgba(19, 35, 29, 0.82);
  font-weight: 750;
  line-height: 1.2;
  transition: color 180ms cubic-bezier(0.22, 0.9, 0.27, 1), background 180ms cubic-bezier(0.22, 0.9, 0.27, 1);
}
.header__nav-link::after,
.footer__nav-link::after {
  content: "";
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.35rem;
  height: 2px;
  background: #f2b63f;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms cubic-bezier(0.22, 0.9, 0.27, 1);
}
.header__nav-link:hover, .header__nav-link:focus-visible,
.footer__nav-link:hover,
.footer__nav-link:focus-visible {
  color: #1d4b3a;
  background: rgba(45, 107, 79, 0.08);
}
.header__nav-link:hover::after, .header__nav-link:focus-visible::after,
.footer__nav-link:hover::after,
.footer__nav-link:focus-visible::after {
  transform: scaleX(1);
}

.header__phone {
  width: 100%;
}

.header__burger {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  padding: 0;
  background: #ffffff;
  border: 1px solid rgba(19, 35, 29, 0.12);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(19, 35, 29, 0.08);
}

.header__burger-line {
  position: absolute;
  width: 1.25rem;
  height: 2px;
  background: #13231d;
  border-radius: 2px;
  transition: transform 220ms cubic-bezier(0.22, 0.9, 0.27, 1), opacity 180ms cubic-bezier(0.22, 0.9, 0.27, 1);
}
.header__burger-line:nth-child(1) {
  transform: translateY(-0.42rem);
}
.header__burger-line:nth-child(3) {
  transform: translateY(0.42rem);
}

.header__burger.is-active .header__burger-line:nth-child(1) {
  transform: rotate(45deg);
}
.header__burger.is-active .header__burger-line:nth-child(2) {
  opacity: 0;
}
.header__burger.is-active .header__burger-line:nth-child(3) {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 42rem;
  padding: 8.3rem 0 4rem;
  overflow: hidden;
  background-color: #13231d;
  background-position: center;
  background-size: cover;
}
.hero::before {
  content: "";
  position: absolute;
  left: -5rem;
  bottom: 2rem;
  width: 14rem;
  aspect-ratio: 0.72;
  border: 1px solid rgba(242, 182, 63, 0.28);
  border-radius: 52% 48% 45% 55%/58% 58% 42% 42%;
  transform: rotate(18deg);
}
.hero::after {
  content: "ChickenLinker";
  position: absolute;
  right: -0.5rem;
  bottom: 2.2rem;
  color: rgba(255, 255, 255, 0.08);
  font-family: "Fraunces", Georgia, serif;
  font-size: 3.8rem;
  font-weight: 750;
  line-height: 1;
  writing-mode: vertical-rl;
  pointer-events: none;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(19, 35, 29, 0.88), rgba(19, 35, 29, 0.62) 54%, rgba(19, 35, 29, 0.34)), linear-gradient(0deg, rgba(19, 35, 29, 0.46), transparent 34%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 48rem;
}
.hero__content::before {
  content: "";
  display: block;
  width: 5rem;
  height: 0.35rem;
  margin-bottom: 1.25rem;
  background: linear-gradient(90deg, #f2b63f, #5f8f3d);
  border-radius: 2rem;
}

.hero__title {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 750;
  line-height: 1.06;
  letter-spacing: 0;
  color: #ffffff;
  max-width: 11ch;
  font-size: 2.2rem;
}

.hero__text {
  max-width: 40rem;
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
  line-height: 1.72;
}

.hero__features {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 1.65rem 0 0;
  list-style: none;
}

.hero__feature {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  padding: 0.62rem 0.78rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.hero__feature-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 2.1rem;
  width: 2.1rem;
  height: 2.1rem;
  color: #f2b63f;
  background: rgba(242, 182, 63, 0.2);
  border-radius: 8px;
}

.hero__feature-text {
  margin: 0;
  font-weight: 700;
  line-height: 1.25;
}

.hero__actions {
  display: grid;
  gap: 0.8rem;
  max-width: 26rem;
  margin-top: 2rem;
}

.about {
  overflow: hidden;
}
.about::before {
  content: "";
  position: absolute;
  top: 3rem;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(45, 107, 79, 0.24), transparent);
}

.about__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.about__media {
  position: relative;
}
.about__media::before {
  content: "";
  position: absolute;
  inset: -0.8rem auto auto -0.8rem;
  width: 58%;
  height: 58%;
  border: 1px solid rgba(45, 107, 79, 0.2);
  border-radius: 8px;
  transform: translate(0.35rem, 0.35rem);
}
.about__media::after {
  content: "";
  position: absolute;
  right: -0.7rem;
  bottom: -0.7rem;
  width: 6rem;
  height: 6rem;
  background: linear-gradient(135deg, transparent 46%, rgba(242, 182, 63, 0.9) 47% 53%, transparent 54%), linear-gradient(45deg, transparent 46%, rgba(45, 107, 79, 0.38) 47% 53%, transparent 54%);
  background-size: 1rem 1rem;
  border-radius: 8px;
}

.about__img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(19, 35, 29, 0.14);
  clip-path: polygon(0 0, 100% 0, 100% 88%, 84% 100%, 0 100%);
}

.about__subtitle,
.products__subtitle,
.benefits__subtitle,
.process__subtitle,
.quality__subtitle,
.reviews-faq__reviews-subtitle,
.reviews-faq__faq-subtitle,
.contact__subtitle {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 0.9rem;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2d6b4f;
}
.about__subtitle::before,
.products__subtitle::before,
.benefits__subtitle::before,
.process__subtitle::before,
.quality__subtitle::before,
.reviews-faq__reviews-subtitle::before,
.reviews-faq__faq-subtitle::before,
.contact__subtitle::before {
  content: "";
  width: 2rem;
  height: 2px;
  background: linear-gradient(90deg, #f2b63f, #2d6b4f);
}

.about__title,
.products__title,
.benefits__title,
.process__titles,
.quality__title,
.reviews-faq__reviews-title,
.reviews-faq__faq-title,
.contact__title {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 750;
  line-height: 1.06;
  letter-spacing: 0;
  color: #13231d;
  font-size: 2rem;
}

.about__description {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.2rem;
}

.about__description-text,
.products__card-text,
.benefits__card-text,
.process__item-text,
.quality__text,
.quality__list-item,
.reviews-faq__reviews-quote,
.reviews-faq__faq-text,
.contact__text,
.footer__text,
.quality__badge-text {
  color: #68756e;
  line-height: 1.7;
}

.about__description-text,
.products__card-text,
.benefits__card-text,
.process__item-text,
.quality__text,
.quality__list-item,
.reviews-faq__reviews-quote,
.reviews-faq__faq-text,
.contact__text,
.footer__text,
.quality__badge-text,
.reviews-faq__reviews-author-city {
  margin: 0;
}

.about__stats {
  display: grid;
  gap: 0.8rem;
  padding: 0;
  margin: 1.55rem 0 0;
  list-style: none;
}

.about__stat {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(19, 35, 29, 0.08);
  border-radius: 8px;
}

.about__stat-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 2.45rem;
  width: 2.45rem;
  height: 2.45rem;
  color: #1d4b3a;
  background: rgba(45, 107, 79, 0.1);
  border-radius: 8px;
}

.about__stat-text {
  margin: 0;
  font-weight: 800;
  line-height: 1.3;
}

.products {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(217, 237, 240, 0.38));
}

.products__header,
.benefits__header,
.process__header {
  max-width: 44rem;
  margin-bottom: 2rem;
}

.products__grid,
.benefits__grid {
  display: grid;
  gap: 1rem;
}

.products__card {
  position: relative;
  display: grid;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(19, 35, 29, 0.1);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(19, 35, 29, 0.14);
  backdrop-filter: blur(18px);
  transition: transform 260ms cubic-bezier(0.22, 0.9, 0.27, 1), box-shadow 260ms cubic-bezier(0.22, 0.9, 0.27, 1), border-color 260ms cubic-bezier(0.22, 0.9, 0.27, 1);
}
.products__card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 0.35rem;
  background: linear-gradient(#f2b63f, #2d6b4f);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 260ms cubic-bezier(0.22, 0.9, 0.27, 1);
}
.products__card:hover {
  transform: translateY(-0.35rem);
  border-color: rgba(45, 107, 79, 0.28);
  box-shadow: 0 24px 60px rgba(19, 35, 29, 0.16);
}
.products__card:hover::before {
  transform: scaleY(1);
}
.products__card:hover .products__card-img {
  transform: scale(1.04);
}

.products__card-media {
  position: relative;
  overflow: hidden;
}

.products__card-img {
  width: 100%;
  aspect-ratio: 16/11;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 360ms cubic-bezier(0.22, 0.9, 0.27, 1);
}

.products__card-icon-rounded {
  position: absolute;
  right: 1rem;
  bottom: -1.45rem;
  display: inline-grid;
  place-items: center;
  flex: 0 0 3.4rem;
  width: 3.4rem;
  height: 3.4rem;
  color: #13231d;
  background: #f2b63f;
  border-radius: 8px;
  border: 4px solid #ffffff;
  box-shadow: 0 12px 24px rgba(19, 35, 29, 0.16);
}

.products__card-content {
  display: grid;
  gap: 0.9rem;
  padding: 2.1rem 1rem 1rem;
}

.products__card-titles,
.benefits__card-title,
.process__item-title,
.quality__badge-title {
  margin: 0;
  color: #13231d;
  font-size: 1.12rem;
  line-height: 1.22;
}

.benefits {
  background: linear-gradient(90deg, rgba(45, 107, 79, 0.08), transparent 34%), #fbf7ed;
}

.benefits__card {
  position: relative;
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(19, 35, 29, 0.09);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 220ms cubic-bezier(0.22, 0.9, 0.27, 1), border-color 220ms cubic-bezier(0.22, 0.9, 0.27, 1), background 220ms cubic-bezier(0.22, 0.9, 0.27, 1);
}
.benefits__card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #2d6b4f, #f2b63f, #8bbbc5);
  transform: translateX(-101%);
  transition: transform 260ms cubic-bezier(0.22, 0.9, 0.27, 1);
}
.benefits__card:hover {
  transform: translateY(-0.25rem);
  background: #ffffff;
  border-color: rgba(45, 107, 79, 0.24);
}
.benefits__card:hover::before {
  transform: translateX(0);
}

.benefits__card-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 2.75rem;
  width: 2.75rem;
  height: 2.75rem;
  color: #1d4b3a;
  background: rgba(242, 182, 63, 0.22);
  border-radius: 8px;
}

.benefits__card-content {
  display: grid;
  gap: 0.4rem;
}

.process {
  background: #ffffff;
  overflow: hidden;
}
.process::after {
  content: "";
  position: absolute;
  right: -8rem;
  top: 6rem;
  width: 20rem;
  height: 20rem;
  background: repeating-linear-gradient(0deg, rgba(45, 107, 79, 0.09) 0 1px, transparent 1px 20px), repeating-linear-gradient(90deg, rgba(45, 107, 79, 0.09) 0 1px, transparent 1px 20px);
  transform: rotate(10deg);
  pointer-events: none;
}

.process__list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: process;
}

.process__item {
  position: relative;
  display: grid;
  gap: 0.65rem;
  padding: 1rem 1rem 1rem 4.2rem;
  background: #fbf7ed;
  border: 1px solid rgba(19, 35, 29, 0.09);
  border-radius: 8px;
}

.process__item-number {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  color: #13231d;
  background: #f2b63f;
  border-radius: 8px;
  font-weight: 900;
}

.process__item-icon-squared {
  display: inline-grid;
  place-items: center;
  flex: 0 0 2.75rem;
  width: 2.75rem;
  height: 2.75rem;
  color: #1d4b3a;
  background: rgba(45, 107, 79, 0.12);
  border-radius: 8px;
}

.quality {
  color: #ffffff;
  background: linear-gradient(135deg, rgba(45, 107, 79, 0.76), rgba(19, 35, 29, 0.98)), #13231d;
  overflow: hidden;
}
.quality::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 26px), linear-gradient(90deg, transparent, rgba(242, 182, 63, 0.12), transparent);
  pointer-events: none;
}

.quality__wrapper {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
}

.quality__subtitle {
  color: #f2b63f;
}
.quality__subtitle::before {
  background: linear-gradient(90deg, #ffffff, #f2b63f);
}

.quality__title {
  color: #ffffff;
}

.quality__text,
.quality__list-item,
.quality__badge-text {
  color: rgba(255, 255, 255, 0.76);
}

.quality__list {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 1.4rem 0 0;
  list-style: none;
}

.quality__list-item {
  position: relative;
  padding-left: 2rem;
}
.quality__list-item::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 0;
  width: 1.15rem;
  height: 0.7rem;
  border-left: 2px solid #f2b63f;
  border-bottom: 2px solid #f2b63f;
  transform: rotate(-45deg);
}

.quality__badges {
  display: grid;
  gap: 0.8rem;
}

.quality__badge {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.quality__badge-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.8rem;
  min-height: 2.4rem;
  padding: 0.25rem 0.6rem;
  margin-bottom: 0.8rem;
  color: #13231d;
  background: #f2b63f;
  border-radius: 8px;
  font-weight: 900;
}

.quality__badge-title {
  color: #ffffff;
}

.reviews-faq {
  background: linear-gradient(180deg, #fbf7ed, rgba(217, 237, 240, 0.36));
}

.reviews-faq__grid {
  display: grid;
  gap: 1.25rem;
}

.reviews-faq__reviews-list {
  display: grid;
  gap: 1rem;
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
}

.reviews-faq__reviews-item {
  position: relative;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(19, 35, 29, 0.09);
  border-radius: 8px;
}
.reviews-faq__reviews-item::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 1rem;
  bottom: 1rem;
  width: 3px;
  background: linear-gradient(#f2b63f, #2d6b4f);
  border-radius: 1rem;
}

.reviews-faq__reviews-stars {
  display: inline-grid;
  place-items: center;
  flex: 0 0 2.6rem;
  width: 2.6rem;
  height: 2.6rem;
  color: #1d4b3a;
  background: rgba(45, 107, 79, 0.1);
  border-radius: 8px;
  margin-left: 0.9rem;
}

.reviews-faq__reviews-quote {
  margin-top: 0.85rem;
  padding-left: 0.9rem;
  font-style: normal;
}

.reviews-faq__reviews-author {
  display: grid;
  gap: 0.15rem;
  margin-top: 1rem;
  padding-left: 0.9rem;
}

.reviews-faq__reviews-author-name {
  color: #13231d;
  font-weight: 900;
}

.reviews-faq__reviews-author-city {
  color: #68756e;
  font-size: 0.92rem;
}

.reviews-faq__faq-accordion {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.reviews-faq__faq-item {
  background: #ffffff;
  border: 1px solid rgba(19, 35, 29, 0.09);
  border-radius: 8px;
  overflow: hidden;
}

.reviews-faq__faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1rem;
  color: #13231d;
  background: transparent;
  border: 0;
  text-align: left;
}
.reviews-faq__faq-trigger:focus-visible {
  outline: 3px solid rgba(242, 182, 63, 0.45);
  outline-offset: -3px;
}

.reviews-faq__faq-question {
  font-weight: 900;
  line-height: 1.25;
}

.reviews-faq__faq-icon {
  display: grid;
  place-items: center;
  flex: 0 0 2rem;
  width: 2rem;
  height: 2rem;
  color: #1d4b3a;
  background: rgba(45, 107, 79, 0.1);
  border-radius: 8px;
  font-weight: 900;
  transition: transform 220ms cubic-bezier(0.22, 0.9, 0.27, 1), background 220ms cubic-bezier(0.22, 0.9, 0.27, 1);
}

.reviews-faq__faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 260ms cubic-bezier(0.22, 0.9, 0.27, 1);
}
.reviews-faq__faq-answer > * {
  overflow: hidden;
}

.reviews-faq__faq-text {
  padding: 0 1rem;
}

.reviews-faq__faq-item.is-open .reviews-faq__faq-icon {
  color: #13231d;
  background: #f2b63f;
  transform: rotate(45deg);
}
.reviews-faq__faq-item.is-open .reviews-faq__faq-answer {
  grid-template-rows: 1fr;
}
.reviews-faq__faq-item.is-open .reviews-faq__faq-text {
  padding-bottom: 1rem;
}

.contact {
  position: relative;
  overflow: hidden;
  background-color: #13231d;
  background-position: center;
  background-size: cover;
}
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(19, 35, 29, 0.92), rgba(19, 35, 29, 0.78)), linear-gradient(135deg, rgba(45, 107, 79, 0.42), transparent);
}

.contact__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
}

.contact__subtitle {
  color: #f2b63f;
}
.contact__subtitle::before {
  background: linear-gradient(90deg, #ffffff, #f2b63f);
}

.contact__title {
  color: #ffffff;
}

.contact__text {
  max-width: 42rem;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.78);
}

.contact__info {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.contact__info-item,
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact__info-icon,
.footer__contact-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 2.4rem;
  width: 2.4rem;
  height: 2.4rem;
  color: #f2b63f;
  background: rgba(242, 182, 63, 0.17);
  border-radius: 8px;
}

.contact__info-link,
.contact__info-address {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.55;
}

.contact__form {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(19, 35, 29, 0.1);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(19, 35, 29, 0.14);
  backdrop-filter: blur(18px);
}

.contact__form-wrapper {
  display: grid;
  gap: 1rem;
}

.contact__form-field {
  display: grid;
  gap: 0.45rem;
}

.contact__form-label {
  color: rgba(19, 35, 29, 0.78);
  font-size: 0.88rem;
  font-weight: 800;
}

.contact__form-input,
.contact__form-textarea {
  width: 100%;
  padding: 0.92rem 1rem;
  color: #13231d;
  background: #ffffff;
  border: 1px solid rgba(19, 35, 29, 0.14);
  border-radius: 8px;
  outline: 0;
  transition: border-color 180ms cubic-bezier(0.22, 0.9, 0.27, 1), box-shadow 180ms cubic-bezier(0.22, 0.9, 0.27, 1), background 180ms cubic-bezier(0.22, 0.9, 0.27, 1);
}
.contact__form-input:focus,
.contact__form-textarea:focus {
  border-color: rgba(45, 107, 79, 0.62);
  box-shadow: 0 0 0 4px rgba(45, 107, 79, 0.12);
}

.contact__form-textarea {
  min-height: 9rem;
  resize: vertical;
}

.contact__form.was-validated .contact__form-input:invalid,
.contact__form.was-validated .contact__form-textarea:invalid {
  border-color: rgba(180, 106, 55, 0.76);
  background: rgba(180, 106, 55, 0.06);
}

.contact__form-action {
  display: flex;
  justify-content: flex-start;
}

.contact__submit {
  min-width: 11rem;
}

.footer {
  color: rgba(255, 255, 255, 0.78);
  background: linear-gradient(135deg, rgba(29, 75, 58, 0.92), #13231d), #13231d;
}

.footer__grid {
  display: grid;
  gap: 2rem;
  padding: 3rem 0;
}

.footer__logo {
  color: #ffffff;
}

.footer__text {
  max-width: 24rem;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.72);
}

.footer__title {
  margin: 0 0 0.9rem;
  color: #ffffff;
  font-size: 1rem;
}

.footer__nav-link {
  padding: 0.35rem 0;
  color: rgba(255, 255, 255, 0.72);
}
.footer__nav-link:hover, .footer__nav-link:focus-visible {
  color: #ffffff;
  background: transparent;
}

.footer__contact {
  display: grid;
  gap: 0.9rem;
}

.footer__contact-link,
.footer__contact-address {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.footer__copyright {
  margin: 0;
  padding: 1rem;
  color: rgba(255, 255, 255, 0.62);
  background: rgba(19, 35, 29, 0.36);
  font-size: 0.9rem;
  text-align: center;
}

.popup {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms cubic-bezier(0.22, 0.9, 0.27, 1), visibility 220ms cubic-bezier(0.22, 0.9, 0.27, 1);
}
.popup.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.popup.is-open .popup__dialog {
  transform: translateY(0) scale(1);
}

.popup__backdrop {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(29, 75, 58, 0.38), rgba(19, 35, 29, 0.76)), rgba(19, 35, 29, 0.66);
  backdrop-filter: blur(9px);
}

.popup__dialog {
  position: relative;
  width: min(100%, 31rem);
  padding: 1.25rem;
  background: #ffffff;
  border: 1px solid rgba(19, 35, 29, 0.1);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(19, 35, 29, 0.14);
  backdrop-filter: blur(18px);
  transform: translateY(1rem) scale(0.96);
  transition: transform 260ms cubic-bezier(0.22, 0.9, 0.27, 1);
}
.popup__dialog::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(242, 182, 63, 0.32), transparent 30%), repeating-linear-gradient(135deg, rgba(45, 107, 79, 0.05) 0 1px, transparent 1px 18px);
  pointer-events: none;
}

.popup__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 2.55rem;
  height: 2.55rem;
  color: #13231d;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(19, 35, 29, 0.1);
  border-radius: 8px;
}

.popup__icon {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  flex: 0 0 3.8rem;
  width: 3.8rem;
  height: 3.8rem;
  color: #2d6b4f;
  background: rgba(45, 107, 79, 0.12);
  border-radius: 8px;
  margin-bottom: 1rem;
}
.popup__icon .icon {
  width: 2rem;
  height: 2rem;
}

.popup__title,
.popup__text,
.popup__action {
  position: relative;
  z-index: 1;
}

.popup__title {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 750;
  line-height: 1.06;
  letter-spacing: 0;
  color: #13231d;
  padding-right: 2.5rem;
  font-size: 1.85rem;
}

.popup__text {
  margin: 0.85rem 0 1.25rem;
  color: #68756e;
  line-height: 1.7;
}

@media (min-width: 360px) {
  .hero__title {
    font-size: 2.55rem;
  }
  .hero__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about__stats,
  .quality__badges {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 768px) {
  .header__nav {
    left: 2rem;
    right: 2rem;
  }
  .hero {
    min-height: 45rem;
    padding-top: 9rem;
  }
  .hero__title {
    max-width: 13ch;
    font-size: 3.55rem;
  }
  .hero__features {
    grid-template-columns: repeat(3, minmax(0, max-content));
    align-items: stretch;
  }
  .hero__feature {
    width: auto;
  }
  .about__grid,
  .contact__grid,
  .reviews-faq__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about__title,
  .products__title,
  .benefits__title,
  .process__titles,
  .quality__title,
  .reviews-faq__reviews-title,
  .reviews-faq__faq-title,
  .contact__title {
    font-size: 2.55rem;
  }
  .products__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .benefits__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .process__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .quality__wrapper {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
  }
  .contact__form {
    padding: 1.25rem;
  }
  .contact__form-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer__grid {
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  }
}
@media (min-width: 1024px) {
  .header__wrapper {
    min-height: 5.1rem;
  }
  .header__nav {
    position: static;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
  .header__nav-list {
    display: flex;
    align-items: center;
    gap: 0.15rem;
  }
  .header__nav-link {
    padding: 0.72rem 0.65rem;
    font-size: 0.92rem;
  }
  .header__phone {
    width: auto;
    min-height: 2.75rem;
    padding-inline: 0.95rem;
  }
  .header__burger {
    display: none;
  }
  .hero {
    min-height: 49rem;
  }
  .hero__title {
    font-size: 4.25rem;
  }
  .about__grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 4rem;
  }
  .benefits__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .process__list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .process__item {
    padding: 4.3rem 1rem 1rem;
  }
  .process__item-number {
    top: 1rem;
  }
  .process__item-icon-squared {
    position: absolute;
    top: 1rem;
    right: 1rem;
  }
  .contact__grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: start;
  }
}
@media (min-width: 1440px) {
  body::after {
    width: 18rem;
    right: -6rem;
  }
  .hero {
    min-height: 52rem;
  }
  .hero__title {
    font-size: 5rem;
  }
  .hero__text {
    font-size: 1.08rem;
  }
  .about__title,
  .products__title,
  .benefits__title,
  .process__titles,
  .quality__title,
  .reviews-faq__reviews-title,
  .reviews-faq__faq-title,
  .contact__title {
    font-size: 3rem;
  }
  .products__card-content,
  .benefits__card,
  .process__item,
  .quality__badge,
  .reviews-faq__reviews-item,
  .contact__form,
  .popup__dialog {
    padding: 1.35rem;
  }
  .products__card-content {
    padding-top: 2.4rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
.legal-page,
.not-found-page {
  padding-top: 4.6rem;
  background: linear-gradient(135deg, rgba(217, 237, 240, 0.5), transparent 34%), #fbf7ed;
}

.legal-hero,
.not-found {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(29, 75, 58, 0.96), rgba(19, 35, 29, 0.98)), #13231d;
}

.legal-hero::before,
.not-found::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.065) 0 1px, transparent 1px 28px), radial-gradient(circle at 84% 24%, rgba(242, 182, 63, 0.18), transparent 24rem);
  pointer-events: none;
}

.legal-hero::after,
.not-found::after {
  content: "";
  position: absolute;
  right: -4.5rem;
  bottom: -7rem;
  width: 16rem;
  aspect-ratio: 0.74;
  border: 1px solid rgba(242, 182, 63, 0.26);
  border-radius: 52% 48% 45% 55%/58% 58% 42% 42%;
  transform: rotate(-15deg);
}

.legal-hero .container,
.not-found .container {
  position: relative;
  z-index: 1;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.35rem;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  transition: color 180ms cubic-bezier(0.22, 0.9, 0.27, 1), transform 180ms cubic-bezier(0.22, 0.9, 0.27, 1);
}

.legal-back::before {
  content: "";
  width: 0.62rem;
  height: 0.62rem;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.legal-back:hover {
  color: #ffffff;
  transform: translateX(-0.2rem);
}

.legal-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.9rem;
  color: #f2b63f;
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-kicker::before {
  content: "";
  width: 2rem;
  height: 2px;
  background: linear-gradient(90deg, #ffffff, #f2b63f);
}

.legal-title,
.not-found__title {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 750;
  line-height: 1.06;
  letter-spacing: 0;
  max-width: 12ch;
  color: #ffffff;
  font-size: 2.25rem;
}

.legal-lead,
.not-found__text {
  max-width: 48rem;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.72;
}

.legal-meta {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 1.75rem 0 0;
}

.legal-meta__item {
  padding: 0.85rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.legal-meta dt,
.legal-meta dd {
  margin: 0;
}

.legal-meta dt {
  margin-bottom: 0.2rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.legal-meta dd {
  color: #ffffff;
  font-weight: 800;
  line-height: 1.35;
}

.legal-content {
  background: linear-gradient(90deg, rgba(45, 107, 79, 0.06), transparent 35%), #fbf7ed;
}

.legal-layout {
  display: grid;
  gap: 1rem;
}

.legal-toc {
  display: grid;
  gap: 0.25rem;
  align-self: start;
  padding: 0.85rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(19, 35, 29, 0.1);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(19, 35, 29, 0.14);
  backdrop-filter: blur(18px);
}

.legal-toc__label {
  margin-bottom: 0.45rem;
  color: #68756e;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-toc__link {
  position: relative;
  padding: 0.7rem 0.75rem 0.7rem 1rem;
  color: rgba(19, 35, 29, 0.76);
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.25;
  transition: color 180ms cubic-bezier(0.22, 0.9, 0.27, 1), background 180ms cubic-bezier(0.22, 0.9, 0.27, 1), transform 180ms cubic-bezier(0.22, 0.9, 0.27, 1);
}

.legal-toc__link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0.35rem;
  height: 0.35rem;
  background: #f2b63f;
  border-radius: 50%;
  transform: translateY(-50%);
}

.legal-toc__link:hover,
.legal-toc__link:focus-visible {
  color: #1d4b3a;
  background: rgba(45, 107, 79, 0.08);
  transform: translateX(0.15rem);
}

.legal-doc {
  display: grid;
  gap: 1rem;
}

.legal-block,
.legal-contact {
  position: relative;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(19, 35, 29, 0.1);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(19, 35, 29, 0.14);
  backdrop-filter: blur(18px);
}

.legal-block::before,
.legal-contact::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  bottom: 1rem;
  width: 3px;
  background: linear-gradient(#f2b63f, #2d6b4f);
  border-radius: 2rem;
}

.legal-block h2,
.legal-contact h2 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 750;
  line-height: 1.06;
  letter-spacing: 0;
  color: #13231d;
  font-size: 1.45rem;
}

.legal-block p,
.legal-contact p,
.legal-list,
.legal-table {
  color: #68756e;
  line-height: 1.75;
}

.legal-block p,
.legal-contact p {
  margin: 0.85rem 0 0;
}

.legal-block a,
.legal-contact a {
  color: #1d4b3a;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

.legal-list {
  display: grid;
  gap: 0.55rem;
  padding: 0;
  margin: 0.85rem 0 0;
  list-style: none;
}

.legal-list li {
  position: relative;
  padding-left: 1.45rem;
}

.legal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.55rem;
  height: 0.55rem;
  background: #f2b63f;
  border: 2px solid rgba(45, 107, 79, 0.28);
  border-radius: 50%;
}

.legal-table-wrap {
  width: 100%;
  margin-top: 1rem;
  overflow-x: auto;
  border: 1px solid rgba(19, 35, 29, 0.1);
  border-radius: 8px;
}

.legal-table {
  width: 100%;
  min-width: 42rem;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.72);
}

.legal-table th,
.legal-table td {
  padding: 0.9rem;
  border-bottom: 1px solid rgba(19, 35, 29, 0.08);
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  color: #13231d;
  background: rgba(242, 182, 63, 0.2);
  font-size: 0.88rem;
  font-weight: 900;
}

.legal-table tr:last-child td {
  border-bottom: 0;
}

.legal-contact {
  display: grid;
  gap: 0.35rem;
  background: linear-gradient(135deg, rgba(45, 107, 79, 0.1), rgba(242, 182, 63, 0.12)), rgba(255, 255, 255, 0.88);
}

.legal-contact h2,
.legal-contact p {
  margin-bottom: 0.35rem;
}

.not-found {
  min-height: calc(100vh - 4.6rem);
  display: grid;
  align-items: center;
}

.not-found__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.not-found__title {
  max-width: 11ch;
}

.not-found__actions {
  display: grid;
  gap: 0.85rem;
  max-width: 24rem;
  margin-top: 1.8rem;
}

.not-found__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 12rem;
}

.not-found__digit {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(5rem, 26vw, 10rem);
  font-weight: 750;
  line-height: 1;
  color: rgba(255, 255, 255, 0.88);
}

.not-found__egg {
  width: clamp(4rem, 18vw, 7rem);
  aspect-ratio: 0.72;
  background: radial-gradient(circle at 46% 42%, #f2b63f 0 27%, transparent 28%), #ffffff;
  border-radius: 52% 48% 45% 55%/58% 58% 42% 42%;
  box-shadow: inset -0.8rem -1.1rem 0 rgba(217, 237, 240, 0.7), 0 1.2rem 3rem rgba(0, 0, 0, 0.22);
  transform: rotate(-12deg);
}

@media (min-width: 360px) {
  .legal-title,
  .not-found__title {
    font-size: 2.65rem;
  }
  .legal-meta,
  .not-found__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 768px) {
  .legal-page,
  .not-found-page {
    padding-top: 5.1rem;
  }
  .legal-title,
  .not-found__title {
    font-size: 3.55rem;
  }
  .legal-meta {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .legal-block,
  .legal-contact {
    padding: 1.25rem 1.35rem;
  }
  .not-found {
    min-height: calc(100vh - 5.1rem);
  }
  .not-found__grid {
    grid-template-columns: 0.95fr 1.05fr;
  }
}
@media (min-width: 1024px) {
  .legal-layout {
    grid-template-columns: 18rem minmax(0, 1fr);
    gap: 1.5rem;
    align-items: start;
  }
  .legal-toc {
    position: sticky;
    top: 6.35rem;
  }
  .legal-doc {
    gap: 1.15rem;
  }
  .legal-title,
  .not-found__title {
    font-size: 4.35rem;
  }
  .legal-block,
  .legal-contact {
    padding: 1.45rem 1.6rem;
  }
  .not-found__visual {
    justify-content: flex-end;
  }
}
@media (min-width: 1440px) {
  .legal-title,
  .not-found__title {
    font-size: 5rem;
  }
  .legal-layout {
    grid-template-columns: 20rem minmax(0, 1fr);
    gap: 2rem;
  }
  .legal-block h2,
  .legal-contact h2 {
    font-size: 1.72rem;
  }
  .not-found__digit {
    font-size: 11rem;
  }
}
.icon {
  width: 2rem;
  height: 2rem;
}

.popup__title,
.popup__text,
.popup__action {
  position: relative;
  z-index: 1;
}

.popup__title {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 750;
  line-height: 1.06;
  letter-spacing: 0;
  color: #13231d;
  padding-right: 2.5rem;
  font-size: 1.85rem;
}

.popup__text {
  margin: 0.85rem 0 1.25rem;
  color: #68756e;
  line-height: 1.7;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 170;
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(19, 35, 29, 0.1);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(19, 35, 29, 0.14);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(1rem);
  transition: opacity 260ms cubic-bezier(0.22, 0.9, 0.27, 1), visibility 260ms cubic-bezier(0.22, 0.9, 0.27, 1), transform 260ms cubic-bezier(0.22, 0.9, 0.27, 1);
}
.cookie-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(242, 182, 63, 0.22), transparent 34%), repeating-linear-gradient(135deg, rgba(45, 107, 79, 0.045) 0 1px, transparent 1px 18px);
  pointer-events: none;
}
.cookie-banner.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
@media screen and (min-width: 1024px) {
  .cookie-banner {
    grid-template-columns: auto 1fr auto;
  }
}

.cookie-banner__icon,
.cookie-banner__content,
.cookie-banner__actions {
  position: relative;
  z-index: 1;
}

.cookie-banner__icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 2.85rem;
  width: 2.85rem;
  height: 2.85rem;
  color: #1d4b3a;
  background: rgba(45, 107, 79, 0.12);
  border-radius: 8px;
}

.cookie-banner__title {
  margin: 0;
  color: #13231d;
  font-size: 1rem;
  line-height: 1.25;
}

.cookie-banner__text {
  margin: 0.35rem 0 0;
  color: #68756e;
  font-size: 0.9rem;
  line-height: 1.58;
}
.cookie-banner__text a {
  color: #1d4b3a;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

.cookie-banner__actions {
  display: grid;
  gap: 0.65rem;
}
@media screen and (min-width: 1024px) {
  .cookie-banner__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.cookie-banner__actions .btn {
  min-height: 2.75rem;
  padding: 0.75rem 1rem;
}

@media (min-width: xs) {
  .cookie-banner__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: md) {
  .cookie-banner {
    left: 2rem;
    right: 2rem;
    grid-template-columns: 70px 1fr 1fr;
    align-items: center;
    padding: 1rem 1.1rem;
  }
  .cookie-banner__actions {
    min-width: 18rem;
  }
}