@font-face {
  font-family: "Manrope";
  src: url("../assets/fonts/Manrope-VariableFont_wght.ttf") format("truetype");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-bg: #f4f4f2;
  --color-surface: #ececeb;
  --color-text: #2b2b2e;
  --color-text-soft: rgba(43, 43, 46, 0.7);
  --color-text-faint: rgba(43, 43, 46, 0.5);
  --color-border: rgba(43, 43, 46, 0.12);
  --color-border-strong: rgba(43, 43, 46, 0.2);
  --color-inverse: #f7f7f4;
  --color-footer: #2b2b2f;
  --container: 1320px;
  --gutter: 24px;
  --section-gap: 124px;
  --header-height: 78px;
  --font-body: 16px;
  --lh-body: 18px;
  --font-copy: 22px;
  --lh-copy: 28px;
  --font-h1: 64px;
  --lh-h1: 67px;
  --font-h2: 32px;
  --lh-h2: 36px;
  --font-nav: 14px;
  --lh-nav: 18px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: var(--font-body);
  line-height: var(--lh-body);
  color: var(--color-text);
  background: var(--color-bg);
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
  color: inherit;
}

button {
  border: 0;
  background: none;
  padding: 0;
}

.container {
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
}

.page--inner {
  padding-top: var(--header-height);
}

.section-label {
  position: relative;
  display: inline-flex;
  align-items: flex-start;
  padding-left: 12px;
  font-size: var(--font-nav);
  line-height: var(--lh-nav);
  color: var(--color-text-soft);
}

.section-label::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 7px;
  height: 7px;
  background-color: currentColor;
  mask: url("/newsite/assets/icons/star.svg") center / contain no-repeat;
  -webkit-mask: url("/newsite/assets/icons/star.svg") center / contain no-repeat;
}

.link-underline,
.link-inline {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--font-nav);
  line-height: var(--lh-nav);
}

.link-underline::after,
.link-inline::after,
.form__submit::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.link-underline:hover::after,
.link-inline:hover::after,
.form__submit:hover::after {
  transform: scaleX(1);
}

.link-underline--light {
  color: rgba(247, 247, 244, 0.95);
}

.link-underline--dark {
  color: var(--color-text);
}

.header {
  position: relative;
  z-index: 100;
  width: 100%;
  background: rgba(247, 247, 244, 0.92);
  backdrop-filter: blur(10px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--header-height);
}

.logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.logo img {
  width: auto;
  height: 58px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 42px;
}

.nav-shortcuts {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 0;
  font-size: 10px;
  line-height: 12px;
  color: rgba(43, 43, 46, 0.7);
}

.nav-shortcuts a {
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 101;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: rgba(244, 244, 242, 0.72);
  cursor: pointer;
}

.nav-toggle__line {
  position: absolute;
  width: 16px;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle__line:nth-child(1) {
  transform: translateY(-5px);
}

.nav-toggle__line:nth-child(3) {
  transform: translateY(5px);
}

.menu-open .nav-toggle__line:nth-child(1) {
  transform: rotate(45deg);
}

.menu-open .nav-toggle__line:nth-child(2) {
  opacity: 0;
}

.menu-open .nav-toggle__line:nth-child(3) {
  transform: rotate(-45deg);
}

.nav .link-underline {
  font-size: 16px;
  line-height: 20px;
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  background: url("../assets/images/hero.jpg") center / cover no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(16, 16, 16, 0.18);
}

.hero__center {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 48px var(--gutter);
  color: var(--color-inverse);
  text-align: center;
}

.hero__title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.hero__title img {
  width: min(520px, 72vw);
  height: auto;
}

.hero__subtitle {
  margin: 0;
  font-size: var(--font-copy);
  line-height: var(--lh-copy);
}

.about-projects {
  padding: 56px 0 0;
}

.about__text {
  max-width: 1000px;
  margin: 0;
  font-size: var(--font-copy);
  line-height: var(--lh-copy);
}

.projects-head,
.production-head,
.coop__head,
.products__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
}

.projects-head {
  margin-top: 38px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 36px 48px;
  margin-top: 18px;
}

.project-card__media,
.cat-card__media,
.product-card__media {
  overflow: hidden;
  background: var(--color-surface);
}

.project-card__media img,
.cat-card__media img,
.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ratio-610-530 {
  aspect-ratio: 610 / 530;
}

.ratio-610-734 {
  aspect-ratio: 610 / 734;
}

.ratio-1020-600 {
  aspect-ratio: 1020 / 600;
}

.ratio-610-500 {
  aspect-ratio: 610 / 500;
}

.ratio-871-646 {
  aspect-ratio: 871 / 646;
}

.project-card__title {
  margin: 10px 0 0;
  font-size: 16px;
  line-height: 18px;
  font-weight: 400;
}

.project-card__desc {
  max-width: 520px;
  margin: 6px 0 0;
  color: var(--color-text-soft);
}

.project-card--a {
  grid-column: 1 / span 5;
}

.project-card--b {
  grid-column: 8 / span 5;
}

.project-card--c {
  grid-column: 1 / span 8;
}

.clients {
  padding: var(--section-gap) 0;
}

.clients__marquee {
  display: flex;
  align-items: center;
  height: 303px;
  margin-top: 18px;
  overflow: hidden;
}

.marquee__track {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
  animation: marquee 22s linear infinite;
}

.marquee__set {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 96px;
  padding: 0 48px;
}

.marquee__set img {
  display: block;
  flex: 0 0 auto;
  max-width: none;
  width: auto;
  height: 28px;
  opacity: 0.95;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

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

.production {
  padding: 0;
}

.production-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 28px;
  margin-top: 18px;
}

.cat-card {
  position: relative;
  display: block;
  background: #ffffff;
}

.cat-card__meta {
  position: absolute;
  inset: 14px 14px auto;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cat-card__name,
.cat-card__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  background: rgba(244, 244, 242, 0.92);
  border: 1px solid rgba(43, 43, 46, 0.08);
}

.cat-card__count {
  min-width: 30px;
  padding: 0;
}

.cat-card__media img,
.product-card__media img {
  transition: transform 0.35s ease;
}

.cat-card:hover .cat-card__media img,
.product-card:hover .product-card__media img {
  transform: scale(1.03);
}

.cat-card--sm {
  grid-column: span 5;
}

.cat-card--lg {
  grid-column: span 7;
}

.production-grid .cat-card:nth-child(1) {
  grid-column: 1 / span 5;
  grid-row: 1;
}

.production-grid .cat-card:nth-child(2) {
  grid-column: 8 / span 5;
  grid-row: 2;
}

.production-grid .cat-card:nth-child(3) {
  grid-column: 6 / span 7;
  grid-row: 1;
}

.production-grid .cat-card:nth-child(4) {
  grid-column: 1 / span 7;
  grid-row: 2;
}

.project-feature {
  position: relative;
  height: 1100px;
  margin-top: var(--section-gap);
  overflow: hidden;
}

.project-feature__media,
.project-feature__overlay {
  position: absolute;
  inset: 0;
}

.project-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-feature__overlay {
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.3) 0%, rgba(13, 13, 13, 0.12) 40%, rgba(13, 13, 13, 0.45) 100%);
}

.project-feature__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 64px 0;
  color: var(--color-inverse);
}

.project-feature__top,
.project-feature__title {
  font-size: var(--font-h2);
  line-height: var(--lh-h2);
  font-weight: 400;
}

.project-feature__bottom {
  display: grid;
  gap: 12px;
}

.coop {
  padding: var(--section-gap) 0 62px;
}

.coop__head {
  margin-bottom: 18px;
}

.coop__grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 48px;
  align-items: stretch;
}

.coop__media {
  min-height: 646px;
  background: var(--color-surface);
}

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

.coop__content {
  display: flex;
  flex-direction: column;
}

.coop__accordion {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-top: 1px solid var(--color-border);
}

.coop__item {
  border-bottom: 1px solid var(--color-border);
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.coop__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  padding: 18px 0;
  text-align: left;
  cursor: pointer;
}

.coop__trigger-title {
  font-size: var(--font-h2);
  line-height: var(--lh-h2);
  letter-spacing: -0.02em;
}

.coop__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.coop__icon img {
  width: 16px;
  height: 16px;
}

.coop__panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}

.coop__panel-text {
  max-width: 520px;
  margin: 0;
  padding: 8px 0 24px;
  color: var(--color-text-soft);
  line-height: 22px;
}

.coop__item.is-active .coop__icon {
  transform: rotate(45deg);
}

.coop__item.is-active {
  order: -1;
}

.coop__item.is-active .coop__trigger {
  padding-top: 0;
  padding-bottom: 18px;
}

.coop__item.is-active .coop__icon {
  opacity: 0.4;
}

.products {
  padding: 62px 0 var(--section-gap);
}

.products__head {
  margin-bottom: 18px;
}

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

.product-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-card__media {
  aspect-ratio: 420 / 420;
}

.product-card__meta {
  display: grid;
  gap: 4px;
}

.product-card__title,
.product-card__price {
  font-size: 12px;
  line-height: 14px;
}

.product-card__title {
  color: var(--color-text-soft);
}

.product-card__price {
  font-weight: 700;
}

.feedback {
  padding: 0 0 25px;
}

.feedback__title {
  margin: 0 0 36px;
  font-size: var(--font-h2);
  line-height: var(--lh-h2);
  font-weight: 400;
}

.form-notice {
  width: min(60%, 760px);
  margin-bottom: 22px;
  padding: 14px 18px;
  border: 1px solid var(--color-border);
  background: rgba(244, 241, 235, 0.72);
  font-size: 14px;
  line-height: 18px;
}

.form-notice--success {
  border-color: rgba(69, 104, 65, 0.26);
  color: #2f4e2d;
}

.form-notice--error {
  border-color: rgba(168, 79, 62, 0.28);
  color: #8a4635;
}

.feedback .form,
.cooperation-form-section .form {
  width: min(60%, 760px);
}

.form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 48px;
}

.field {
  position: relative;
  padding-top: 18px;
}

.field--full {
  grid-column: 1 / -1;
}

.field__input,
.file {
  width: 100%;
  padding: 14px 0 10px;
  border: 0;
  border-bottom: 1px solid var(--color-border-strong);
  background: transparent;
}

.field__input {
  outline: none;
}

.field__textarea {
  min-height: 56px;
  resize: vertical;
}

.field__label {
  position: absolute;
  top: 18px;
  left: 0;
  display: inline-flex;
  align-items: flex-start;
  padding-left: 12px;
  color: var(--color-text-soft);
  pointer-events: none;
  transform-origin: left top;
  transition: transform 0.22s ease, color 0.22s ease;
}

.field__label::before,
.file__label::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 7px;
  height: 7px;
  background-color: currentColor;
  mask: url("/newsite/assets/icons/star.svg") center / contain no-repeat;
  -webkit-mask: url("/newsite/assets/icons/star.svg") center / contain no-repeat;
}

.field__input:focus + .field__label,
.field__input:not(:placeholder-shown) + .field__label,
.field__input.is-filled + .field__label {
  transform: translateY(-14px) scale(0.78);
  color: var(--color-text-faint);
}

.field__file {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.file {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
}

.file__label {
  display: inline-flex;
  position: relative;
  align-items: flex-start;
  padding-left: 12px;
  color: var(--color-text-soft);
}

.file__name {
  max-width: 55%;
  overflow: hidden;
  color: var(--color-text-faint);
  white-space: nowrap;
  text-overflow: ellipsis;
}

.check {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text-soft);
  cursor: pointer;
}

.check__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.check__box {
  width: 14px;
  height: 14px;
  border: 1px solid rgba(43, 43, 46, 0.55);
}

.check__input:checked + .check__box {
  background: var(--color-text);
}

.form__submit {
  position: relative;
  margin-top: 42px;
  font-size: var(--font-h2);
  line-height: var(--lh-h2);
  font-weight: 400;
  cursor: pointer;
}

.cookie {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 24px;
  min-width: 420px;
  max-width: 520px;
  padding: 20px 24px;
  background: #fff;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.cookie__text {
  flex: 1;
}

.cookie__close {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 18px;
  line-height: 1;
  opacity: 0.6;
  cursor: pointer;
}

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

  .marquee__track,
  .coop__panel,
  .coop__icon,
  .cat-card__media img,
  .product-card__media img {
    animation: none;
    transition: none;
  }
}

@media (max-width: 1024px) {
  :root {
    --section-gap: 88px;
    --font-h1: 52px;
    --lh-h1: 56px;
    --font-h2: 28px;
    --lh-h2: 32px;
  }

  .projects-grid,
  .production-grid,
  .products__grid {
    gap: 24px;
  }

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

  .feedback .form,
  .cooperation-form-section .form {
    width: 100%;
  }

  .project-feature {
    height: 860px;
  }
}

@media (max-width: 768px) {
  :root {
    --gutter: 16px;
    --header-height: 64px;
    --font-copy: 18px;
    --lh-copy: 24px;
    --font-h1: 32px;
    --lh-h1: 42px;
    --font-h2: 32px;
    --lh-h2: 42px;
  }

  .header__inner {
    height: var(--header-height);
  }

  .logo img {
    height: 46px;
  }

  .nav {
    gap: 24px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .hero__title img {
    width: min(420px, 70vw);
  }

  .projects-head,
  .production-head,
  .coop__head,
  .products__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .projects-grid,
  .production-grid,
  .products__grid {
    grid-template-columns: 1fr;
  }

  .project-card--a,
  .project-card--b,
  .project-card--c,
  .cat-card--sm,
  .cat-card--lg {
    grid-column: auto;
  }

  .production-grid .cat-card:nth-child(1),
  .production-grid .cat-card:nth-child(2),
  .production-grid .cat-card:nth-child(3),
  .production-grid .cat-card:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }

  .clients {
    padding: 88px 0;
  }

  .clients__marquee {
    height: 180px;
  }

  .marquee__set {
    gap: 48px;
    padding: 0 24px;
  }

  .project-feature {
    height: 520px;
  }

  .project-feature__content {
    padding: 32px 0;
  }

  .coop__media {
    min-height: 360px;
  }

  .feedback .form,
  .cooperation-form-section .form {
    width: 100%;
  }

  .form__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cookie {
    right: 16px;
    bottom: 16px;
    left: 16px;
    min-width: 0;
    max-width: none;
  }
}

@media (max-width: 640px) {
  :root {
    --section-gap: 64px;
    --font-copy: 14px;
    --lh-copy: 19px;
    --font-h2: 22px;
    --lh-h2: 28px;
  }

  .header__inner {
    gap: 12px;
    height: 48px;
  }

  .logo {
    position: relative;
    z-index: 101;
  }

  .logo img {
    height: 30px;
  }

  .header--glass .logo img {
    height: 30px;
    width: auto;
  }

  .nav-toggle {
    display: inline-flex;
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 0;
  }

  .nav-toggle__line {
    width: 14px;
  }

  .nav-toggle__line:nth-child(1) {
    transform: translateY(-4px);
  }

  .nav-toggle__line:nth-child(3) {
    transform: translateY(4px);
  }

  .nav-shortcuts {
    display: inline-flex;
    flex: 1 1 auto;
  }

  .nav {
    position: fixed;
    inset: 48px 0 auto;
    display: grid;
    gap: 0;
    padding: 12px 16px 24px;
    background: rgba(244, 244, 242, 0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--color-border);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .menu-open .nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav .link-underline {
    width: 100%;
    justify-content: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 16px;
    line-height: 20px;
  }

  .nav .link-underline:last-child {
    border-bottom: 0;
  }

  .nav .link-underline::after {
    display: none;
  }

  .hero__center {
    justify-content: flex-end;
    align-items: flex-start;
    min-height: calc(100vh - 48px);
    padding: 32px 16px 24px;
    text-align: left;
  }

  .hero__title {
    justify-content: flex-start;
  }

  .hero__title img {
    width: min(260px, 70vw);
  }

  .hero__subtitle {
    max-width: 200px;
  }

  .about-projects {
    padding-top: 24px;
  }

  .production {
    padding-top: 8px;
  }

  .production-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 18px;
  }

  .cat-card {
    width: 100%;
    border: 0;
    background: #ffffff;
  }

  .cat-card:nth-child(2) {
    order: 1;
    width: 76%;
    align-self: flex-start;
  }

  .cat-card:nth-child(3) {
    order: 2;
  }

  .cat-card:nth-child(1) {
    order: 3;
    width: 76%;
    align-self: flex-end;
  }

  .cat-card:nth-child(4) {
    order: 4;
  }

  .cat-card__meta {
    inset: 12px 12px auto;
    justify-content: flex-start;
  }

  .cat-card__name {
    min-height: 34px;
    padding: 0 12px;
    font-size: 14px;
    line-height: 18px;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.96);
  }

  .cat-card__count {
    display: none;
  }

  .cat-card__media img {
    object-fit: cover;
  }

  .cat-card:nth-child(2) .cat-card__media,
  .cat-card:nth-child(1) .cat-card__media {
    aspect-ratio: 304 / 238;
  }

  .cat-card:nth-child(3) .cat-card__media,
  .cat-card:nth-child(4) .cat-card__media {
    aspect-ratio: 404 / 238;
  }

  .about__text {
    max-width: 100%;
    font-size: 14px;
    line-height: 19px;
  }

  .projects-head {
    margin-top: 24px;
  }

  .projects-grid,
  .production-grid,
  .products__grid {
    gap: 16px 12px;
    margin-top: 16px;
  }

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

  .project-card--c {
    grid-column: 1 / -1;
  }

  .project-card__title {
    margin-top: 8px;
    font-size: 12px;
    line-height: 14px;
  }

  .project-card__desc,
  .coop__panel-text {
    font-size: 12px;
    line-height: 16px;
  }

  .section-label,
  .link-underline,
  .link-inline {
    font-size: 10px;
    line-height: 12px;
  }

  .clients {
    padding: 64px 0;
  }

  .clients__marquee {
    height: 100px;
    margin-top: 16px;
  }

  .marquee__set {
    gap: 28px;
    padding: 0 16px;
  }

  .marquee__set img {
    height: 22px;
  }

  .cat-card__meta {
    inset: 10px 10px auto;
    gap: 8px;
  }

  .cat-card__name,
  .cat-card__count {
    min-height: 28px;
    padding: 0 10px;
    font-size: 12px;
    line-height: 14px;
  }

  .cat-card__count {
    min-width: 28px;
    padding: 0;
  }

  .project-feature {
    height: 280px;
    margin-top: 64px;
  }

  .project-feature__content {
    padding: 16px 0;
  }

  .project-feature__top {
    font-size: 12px;
    line-height: 14px;
  }

  .project-feature__title {
    font-size: 20px;
    line-height: 24px;
  }

  .coop {
    padding: 64px 0 24px;
  }

  .coop__head,
  .products__head {
    margin-bottom: 16px;
  }

  .coop__grid {
    gap: 20px;
  }

  .coop__media {
    min-height: 200px;
  }

  .coop__trigger {
    padding: 14px 0;
    gap: 12px;
  }

  .coop__trigger-title {
    font-size: 16px;
    line-height: 20px;
  }

  .products {
    padding: 32px 0 64px;
  }

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

  .product-card__media {
    aspect-ratio: 172 / 188;
  }

  .product-card {
    gap: 8px;
  }

  .product-card__title,
  .product-card__price {
    font-size: 11px;
    line-height: 13px;
  }

  .feedback__title,
  .cooperation-form-section__title,
  .cooperation-intro__title,
  .cooperation-offers__title,
  .catalog-title {
    letter-spacing: -0.02em;
  }

  .feedback {
    padding-bottom: 28px;
  }

  .feedback__title {
    margin-bottom: 24px;
    font-size: 22px;
    line-height: 28px;
  }

  .form-notice,
  .feedback .form,
  .cooperation-form-section .form {
    width: 100%;
  }

  .form__submit {
    margin-top: 24px;
    font-size: 16px;
    line-height: 20px;
  }

  .file {
    gap: 16px;
    align-items: flex-end;
  }

  .file__name {
    max-width: 58%;
    text-align: right;
  }

  .field,
  .field--full {
    padding-top: 14px;
  }

  .field__input,
  .file {
    padding: 12px 0 8px;
  }

  .field__label,
  .file__label,
  .check,
  .file__name {
    font-size: 12px;
    line-height: 14px;
  }

  .page--inner {
    padding-top: 48px;
  }
}
