/* EvaFlow — static HTML version. BEM, longhand only, no variables, no pseudo-elements, no descendant selectors. */

.page {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  background-color: #fdfbf7;
  color: #1a1a1a;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.main-wrapper {
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  padding-left: 16px;
  padding-right: 16px;
  box-sizing: border-box;
}

.container--narrow {
  width: 100%;
  max-width: 896px;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  padding-left: 16px;
  padding-right: 16px;
  box-sizing: border-box;
}

.container--wide {
  width: 100%;
  max-width: 1280px;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  padding-left: 16px;
  padding-right: 16px;
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .container,
  .container--narrow,
  .container--wide {
    padding-left: 24px;
    padding-right: 24px;
  }
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background-color: rgba(253, 251, 247, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(26, 26, 26, 0.1);
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.header__brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  color: #1a1a1a;
  background-color: transparent;
  background-image: none;
  border-width: 0;
  border-style: none;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  margin: 0;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  box-shadow: none;
}

.header__logo {
  height: 56px;
  width: auto;
  display: block;
  object-fit: contain;
}

@media (min-width: 768px) {
  .header__logo {
    height: 64px;
  }
}

.header__nav {
  display: none;
  column-gap: 24px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 500;
}

.header__link {
  color: #1a1a1a;
  text-decoration: none;
  transition-property: color;
  transition-duration: 200ms;
  cursor: pointer;
  background-color: transparent;
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
  font: inherit;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
}

.header__link--active {
  color: #8b7355;
}

.header__phone {
  display: none;
  font-size: 12px;
  font-weight: 500;
  color: #1a1a1a;
  text-decoration: none;
}

.header__burger {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
  cursor: pointer;
  color: #1a1a1a;
  margin-right: -8px;
}

.header__burger-icon {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}

.menu-mobile {
  display: none;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(26, 26, 26, 0.1);
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 24px;
  padding-right: 24px;
  background-color: #fdfbf7;
  flex-direction: column;
  row-gap: 16px;
}

.menu-mobile--open {
  display: flex;
}

.menu-mobile__link {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #1a1a1a;
  text-decoration: none;
  background-color: transparent;
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
  text-align: left;
  cursor: pointer;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  font-family: inherit;
}

.menu-mobile__contact {
  font-size: 14px;
  color: #8b7355;
  text-decoration: none;
  padding-top: 10px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(26, 26, 26, 0.1);
}

/* PAGE VIEWS */
.page-view {
  display: none;
}

.page-view--active {
  display: block;
}

/* HERO */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(to bottom, rgba(26, 26, 26, 0.45), rgba(26, 26, 26, 0.35), #fdfbf7);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  padding-top: 96px;
  padding-bottom: 96px;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  box-sizing: border-box;
}

.hero__eyebrow {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  margin-bottom: 24px;
  color: rgba(253, 251, 247, 0.9);
}

.hero__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: #fdfbf7;
  font-size: 40px;
  line-height: 1.05;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 0;
}

.hero__title-italic {
  font-style: italic;
  display: block;
  margin-top: 8px;
}

.hero__lead {
  margin-top: 24px;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  max-width: 640px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(253, 251, 247, 0.92);
  font-weight: 300;
}

.hero__actions {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 12px;
  column-gap: 12px;
}

.hero__meta {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 20px;
  row-gap: 6px;
  font-size: 11px;
  color: rgba(253, 251, 247, 0.85);
  letter-spacing: 0.06em;
}

.hero__meta-item {
  display: inline-block;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-top: 14px;
  padding-bottom: 14px;
  padding-left: 28px;
  padding-right: 28px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-decoration: none;
  cursor: pointer;
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
  font-family: inherit;
  transition-property: background-color, color, border-color;
  transition-duration: 200ms;
}

.btn--light {
  background-color: #fdfbf7;
  color: #1a1a1a;
}

.btn--outline-light {
  background-color: transparent;
  color: #fdfbf7;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: #fdfbf7;
}

.btn--dark {
  background-color: #1a1a1a;
  color: #fdfbf7;
}

.btn--outline-dark {
  background-color: transparent;
  color: #1a1a1a;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: rgba(26, 26, 26, 0.3);
}

/* SECTION */
.section {
  padding-top: 64px;
  padding-bottom: 64px;
}

.section--cream {
  background-color: rgba(244, 237, 225, 0.5);
}

.section--dark {
  background-color: #1a1a1a;
  color: #fdfbf7;
}

.section__eyebrow {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #8b7355;
  margin-bottom: 16px;
  text-align: center;
}

.section__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 32px;
  line-height: 1.15;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 0;
  text-align: center;
}

.section__title--italic {
  font-style: italic;
}

.section__title-light {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 32px;
  line-height: 1.15;
  font-weight: 400;
  color: #fdfbf7;
  margin-top: 0;
  margin-bottom: 0;
  text-align: center;
  font-style: italic;
}

.section__lead {
  margin-top: 16px;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  max-width: 640px;
  font-size: 15px;
  line-height: 1.65;
  text-align: center;
  color: rgba(26, 26, 26, 0.7);
}

.section__head {
  max-width: 640px;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 48px;
  margin-left: auto;
}

/* STATS */
.stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 16px;
  row-gap: 24px;
  text-align: center;
  padding-top: 48px;
  padding-bottom: 48px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(26, 26, 26, 0.1);
}

.stats__value {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 32px;
  color: #8b7355;
  margin-top: 0;
  margin-bottom: 0;
}

.stats__label {
  margin-top: 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(26, 26, 26, 0.7);
}

/* ABOUT */
.about {
  max-width: 720px;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  text-align: center;
}

.about__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 400;
  margin-top: 24px;
  margin-bottom: 0;
}

.about__text {
  margin-top: 20px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(26, 26, 26, 0.8);
  text-align: left;
}

/* GRIDS */
.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 24px;
  row-gap: 32px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 32px;
  row-gap: 40px;
}

/* SERVICE CARD (home) */
.service-card {
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(26, 26, 26, 0.15);
  padding-top: 20px;
}

.service-card__num {
  font-family: ui-monospace, monospace;
  font-size: 11px;
  color: rgba(26, 26, 26, 0.45);
}

.service-card__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  margin-top: 12px;
  margin-bottom: 0;
}

.service-card__text {
  margin-top: 12px;
  font-size: 14px;
  color: rgba(26, 26, 26, 0.78);
  line-height: 1.65;
}

/* PROCESS CARD */
.process-card {
  padding-top: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
  padding-right: 24px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: rgba(26, 26, 26, 0.1);
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

.process-card__step {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #8b7355;
}

.process-card__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  margin-top: 12px;
  margin-bottom: 0;
}

.process-card__text {
  margin-top: 12px;
  font-size: 14px;
  color: rgba(26, 26, 26, 0.78);
  line-height: 1.65;
}

/* TESTIMONIALS */
.testimonial {
  padding-top: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
  padding-right: 24px;
  background-color: #fdfbf7;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: rgba(26, 26, 26, 0.1);
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

.testimonial__head {
  display: flex;
  align-items: center;
  column-gap: 16px;
  margin-bottom: 14px;
}

.testimonial__avatar {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  background-color: rgba(139, 115, 85, 0.2);
  color: #8b7355;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 18px;
}

.testimonial__name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 17px;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 0;
}

.testimonial__role {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(26, 26, 26, 0.6);
  margin-top: 4px;
}

.testimonial__text {
  font-size: 14px;
  color: rgba(26, 26, 26, 0.8);
  line-height: 1.65;
  font-style: italic;
  margin-top: 0;
  margin-bottom: 0;
}

/* FAQ */
.faq-item {
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: rgba(26, 26, 26, 0.1);
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  padding-top: 14px;
  padding-bottom: 14px;
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 12px;
  background-color: #fdfbf7;
}

.faq-item__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 16px;
  cursor: pointer;
  background-color: transparent;
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
  width: 100%;
  text-align: left;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  font-family: inherit;
  color: #1a1a1a;
}

.faq-item__question {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 18px;
}

.faq-item__toggle {
  color: #8b7355;
  font-size: 22px;
  line-height: 1;
  transition-property: transform;
  transition-duration: 200ms;
}

.faq-item__toggle--open {
  transform: rotate(45deg);
}

.faq-item__answer {
  margin-top: 12px;
  font-size: 14px;
  color: rgba(26, 26, 26, 0.78);
  line-height: 1.65;
  display: none;
}

.faq-item__answer--open {
  display: block;
}

/* CTA BLOCK */
.cta {
  padding-top: 56px;
  padding-bottom: 56px;
  padding-left: 24px;
  padding-right: 24px;
  background-color: #1a1a1a;
  color: #fdfbf7;
  text-align: center;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

.cta__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 0;
  color: #fdfbf7;
}

.cta__text {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(253, 251, 247, 0.85);
  max-width: 520px;
  margin-right: auto;
  margin-left: auto;
}

.cta__actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 12px;
  row-gap: 12px;
}

.cta__link {
  color: #fdfbf7;
  text-decoration: none;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(253, 251, 247, 0.4);
  padding-bottom: 4px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 18px;
}

.cta__row {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 20px;
  row-gap: 12px;
}

/* PAGE HEADER */
.page-header {
  padding-top: 72px;
  padding-bottom: 48px;
}

.page-header__eyebrow {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #8b7355;
  margin-bottom: 20px;
}

.page-header__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 40px;
  line-height: 1.05;
  font-weight: 400;
  max-width: 720px;
  margin-top: 0;
  margin-bottom: 0;
}

.page-header__lead {
  margin-top: 24px;
  max-width: 640px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(26, 26, 26, 0.78);
}

/* SERVICES PAGE */
.services-nav {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  column-gap: 18px;
  row-gap: 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.services-nav__link {
  color: rgba(26, 26, 26, 0.7);
  text-decoration: none;
  cursor: pointer;
  background-color: transparent;
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
  font-family: inherit;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
}

.service-block {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 32px;
  row-gap: 24px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(26, 26, 26, 0.1);
  padding-top: 48px;
  padding-bottom: 0;
  margin-bottom: 64px;
  scroll-margin-top: 96px;
}

.service-block__image-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: rgba(244, 237, 225, 0.5);
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

.service-block__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-block__tag {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(26, 26, 26, 0.5);
  margin-bottom: 12px;
}

.service-block__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 32px;
  line-height: 1.15;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 0;
}

.service-block__lead {
  margin-top: 18px;
  font-size: 16px;
  color: rgba(26, 26, 26, 0.85);
  line-height: 1.6;
}

.service-block__body {
  margin-top: 14px;
  font-size: 14px;
  color: rgba(26, 26, 26, 0.75);
  line-height: 1.7;
}

.service-block__examples-title {
  margin-top: 28px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(26, 26, 26, 0.6);
  margin-bottom: 12px;
}

.service-block__examples {
  list-style-type: none;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
}

.service-block__example-item {
  display: flex;
  column-gap: 12px;
  padding-top: 4px;
  padding-bottom: 4px;
  font-size: 14px;
  color: rgba(26, 26, 26, 0.85);
}

.service-block__example-dash {
  color: #8b7355;
  flex-shrink: 0;
}

.service-block__actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  column-gap: 12px;
  row-gap: 12px;
}

/* PORTFOLIO */
.portfolio-item {
  overflow: hidden;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  background-color: #fdfbf7;
  margin-bottom: 40px;
}

.portfolio-item__image-wrap {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background-color: rgba(244, 237, 225, 0.5);
}

.portfolio-item__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.portfolio-item__body {
  padding-top: 24px;
  padding-bottom: 8px;
}

.portfolio-item__meta {
  display: flex;
  flex-wrap: wrap;
  column-gap: 12px;
  row-gap: 4px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(26, 26, 26, 0.55);
  margin-bottom: 10px;
}

.portfolio-item__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 26px;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 0;
}

.portfolio-item__place {
  margin-top: 6px;
  font-size: 13px;
  color: rgba(26, 26, 26, 0.6);
}

.portfolio-item__palette {
  margin-top: 10px;
  font-size: 12px;
  color: #8b7355;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.portfolio-item__desc {
  margin-top: 14px;
  font-size: 14px;
  color: rgba(26, 26, 26, 0.8);
  line-height: 1.7;
}

.portfolio-item__highlights-title {
  margin-top: 18px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(26, 26, 26, 0.55);
  margin-bottom: 8px;
}

.portfolio-item__highlights {
  list-style-type: none;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
}

.portfolio-item__highlight {
  display: flex;
  column-gap: 12px;
  padding-top: 4px;
  padding-bottom: 4px;
  font-size: 13px;
  color: rgba(26, 26, 26, 0.8);
}

.portfolio-item__highlight-dash {
  color: #8b7355;
  flex-shrink: 0;
}

/* CATALOG */
.catalog-card {
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: rgba(26, 26, 26, 0.1);
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  overflow: hidden;
  background-color: #fdfbf7;
  margin-bottom: 20px;
}

.catalog-card__image-wrap {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: rgba(244, 237, 225, 0.5);
}

.catalog-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.catalog-card__body {
  padding-top: 22px;
  padding-bottom: 22px;
  padding-left: 22px;
  padding-right: 22px;
}

.catalog-card__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  column-gap: 12px;
  margin-bottom: 6px;
}

.catalog-card__name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 0;
}

.catalog-card__season {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #8b7355;
  flex-shrink: 0;
}

.catalog-card__latin {
  font-size: 12px;
  font-style: italic;
  color: rgba(26, 26, 26, 0.5);
  margin-bottom: 14px;
}

.catalog-card__palette-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(26, 26, 26, 0.6);
  margin-bottom: 4px;
}

.catalog-card__palette {
  font-size: 14px;
  color: rgba(26, 26, 26, 0.85);
  margin-bottom: 14px;
}

.catalog-card__note {
  font-size: 13px;
  color: rgba(26, 26, 26, 0.75);
  line-height: 1.65;
}

/* CAREERS */
.vacancy-card {
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: rgba(26, 26, 26, 0.1);
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  padding-top: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
  padding-right: 24px;
  background-color: #fdfbf7;
  margin-bottom: 20px;
}

.vacancy-card__head {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  cursor: pointer;
  background-color: transparent;
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
  width: 100%;
  text-align: left;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  font-family: inherit;
  color: #1a1a1a;
}

.vacancy-card__dept {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #8b7355;
}

.vacancy-card__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 26px;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 0;
}

.vacancy-card__meta {
  display: flex;
  flex-wrap: wrap;
  column-gap: 16px;
  row-gap: 6px;
  font-size: 12px;
  color: rgba(26, 26, 26, 0.65);
  margin-top: 4px;
}

.vacancy-card__salary {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 20px;
  color: #1a1a1a;
  margin-top: 4px;
}

.vacancy-card__toggle {
  margin-top: 12px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #8b7355;
}

.vacancy-card__body {
  display: none;
  margin-top: 20px;
  padding-top: 20px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(26, 26, 26, 0.1);
}

.vacancy-card__body--open {
  display: block;
}

.vacancy-card__summary {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(26, 26, 26, 0.85);
  margin-top: 0;
  margin-bottom: 20px;
}

.vacancy-card__group-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(26, 26, 26, 0.55);
  margin-bottom: 8px;
  margin-top: 18px;
}

.vacancy-card__list {
  list-style-type: none;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
}

.vacancy-card__list-item {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(26, 26, 26, 0.82);
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 18px;
  position: relative;
}

.vacancy-card__bullet {
  color: #8b7355;
  position: absolute;
  left: 0;
  top: 4px;
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 40px;
  row-gap: 40px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(26, 26, 26, 0.1);
  padding-top: 48px;
}

.contact-block {
  margin-bottom: 40px;
}

.contact-block__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(26, 26, 26, 0.5);
  margin-bottom: 14px;
}

.contact-block__phone {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  color: #1a1a1a;
  text-decoration: none;
  margin-bottom: 10px;
}

.contact-block__email {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  color: #1a1a1a;
  text-decoration: none;
  word-break: break-all;
}

.contact-block__hours {
  margin-top: 14px;
  font-size: 14px;
  color: rgba(26, 26, 26, 0.7);
}

.contact-block__address {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  color: #1a1a1a;
  text-decoration: none;
  line-height: 1.3;
}

.contact-block__note {
  margin-top: 12px;
  font-size: 14px;
  color: rgba(26, 26, 26, 0.7);
  line-height: 1.6;
}

.contact-block__link {
  color: #8b7355;
  text-decoration: underline;
}

.contact-block__legal {
  display: block;
  padding-top: 6px;
  padding-bottom: 6px;
  font-size: 14px;
  color: rgba(26, 26, 26, 0.85);
}

.map-wrap {
  margin-top: 48px;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: rgba(26, 26, 26, 0.1);
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  background-color: rgba(244, 237, 225, 0.5);
}

.map-wrap__iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
}

/* FORM */
.form {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}

.form__field {
  display: flex;
  flex-direction: column;
  row-gap: 6px;
}

.form__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(26, 26, 26, 0.6);
}

.form__input {
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 14px;
  padding-right: 14px;
  font-size: 15px;
  font-family: inherit;
  color: #1a1a1a;
  background-color: #fdfbf7;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: rgba(26, 26, 26, 0.15);
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

.form__textarea {
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 14px;
  padding-right: 14px;
  font-size: 15px;
  font-family: inherit;
  color: #1a1a1a;
  background-color: #fdfbf7;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: rgba(26, 26, 26, 0.15);
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  min-height: 140px;
  resize: vertical;
}

.form__submit {
  align-self: flex-start;
  margin-top: 8px;
}

.form__note {
  font-size: 12px;
  color: rgba(26, 26, 26, 0.6);
  line-height: 1.5;
}

.form__success {
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  background-color: rgba(139, 115, 85, 0.1);
  color: #1a1a1a;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  font-size: 14px;
}

/* LEGAL */
.legal {
  padding-top: 72px;
  padding-bottom: 96px;
  max-width: 720px;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
}

.legal__eyebrow {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #8b7355;
  margin-bottom: 20px;
}

.legal__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 32px;
  line-height: 1.15;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 0;
}

.legal__stamp {
  margin-top: 16px;
  font-size: 12px;
  color: rgba(26, 26, 26, 0.6);
}

.legal__section {
  margin-top: 32px;
}

.legal__subtitle {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 12px;
  margin-top: 0;
}

.legal__text {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(26, 26, 26, 0.85);
  margin-top: 12px;
  margin-bottom: 0;
}

.legal__list {
  padding-left: 24px;
  margin-top: 8px;
  margin-bottom: 0;
}

.legal__list-item {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(26, 26, 26, 0.85);
  padding-top: 2px;
  padding-bottom: 2px;
}

.legal__link {
  color: #8b7355;
  text-decoration: underline;
}

/* FOOTER */
.footer {
  padding-top: 56px;
  padding-bottom: 32px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(26, 26, 26, 0.1);
  background-color: #fdfbf7;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 32px;
  row-gap: 32px;
  margin-bottom: 32px;
}

.footer__col-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(26, 26, 26, 0.5);
  margin-bottom: 14px;
}

.footer__brand {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  background-color: transparent;
  background-image: none;
  border-width: 0;
  border-style: none;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  box-shadow: none;
}

.footer__logo {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer__text {
  font-size: 13px;
  color: rgba(26, 26, 26, 0.75);
  line-height: 1.6;
  margin-top: 0;
  margin-bottom: 0;
}

.footer__list {
  list-style-type: none;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
}

.footer__list-item {
  padding-top: 4px;
  padding-bottom: 4px;
}

.footer__link {
  color: rgba(26, 26, 26, 0.85);
  text-decoration: none;
  font-size: 14px;
  cursor: pointer;
  background-color: transparent;
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
  font-family: inherit;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
}

.footer__requisites {
  margin-top: 20px;
  font-size: 11px;
  line-height: 1.9;
  color: rgba(26, 26, 26, 0.6);
}

.footer__requisites-link {
  color: rgba(26, 26, 26, 0.75);
  text-decoration: none;
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  row-gap: 8px;
  padding-top: 20px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(26, 26, 26, 0.1);
  font-size: 11px;
  color: rgba(26, 26, 26, 0.5);
  letter-spacing: 0.06em;
  text-align: center;
}

/* COOKIE BANNER */
.cookie {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  background-color: #1a1a1a;
  color: #fdfbf7;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 24px;
  padding-right: 24px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  display: none;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.cookie--visible {
  display: block;
}

.cookie__inner {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  align-items: flex-start;
}

.cookie__text {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(253, 251, 247, 0.9);
  margin-top: 0;
  margin-bottom: 0;
}

.cookie__link {
  color: #fdfbf7;
  text-decoration: underline;
  cursor: pointer;
  background-color: transparent;
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
  font-family: inherit;
  font-size: inherit;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
}

.cookie__actions {
  display: flex;
  column-gap: 12px;
  flex-shrink: 0;
}

.cookie__btn {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
  cursor: pointer;
  font-family: inherit;
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
}

.cookie__btn--accept {
  background-color: #fdfbf7;
  color: #1a1a1a;
}

.cookie__btn--dismiss {
  background-color: transparent;
  color: #fdfbf7;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: rgba(253, 251, 247, 0.4);
}

/* CHAT WIDGET */
.chat-launcher {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 65;
  height: 60px;
  padding-top: 6px;
  padding-bottom: 6px;
  padding-left: 8px;
  padding-right: 18px;
  column-gap: 12px;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  background-color: #1a1a1a;
  color: #fdfbf7;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
  box-shadow: 0 8px 24px rgba(26, 26, 26, 0.25);
  transition-property: background-color;
  transition-duration: 200ms;
}

.chat-launcher:hover {
  background-color: #8b7355;
}

.chat-launcher--hidden {
  display: none;
}

.chat-launcher__avatar-wrap {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
}

.chat-launcher__avatar {
  width: 44px;
  height: 44px;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  object-fit: cover;
  border-top-width: 2px;
  border-right-width: 2px;
  border-bottom-width: 2px;
  border-left-width: 2px;
  border-style: solid;
  border-color: #fdfbf7;
  display: block;
}

.chat-launcher__status {
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 12px;
  height: 12px;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  background-color: #34d399;
  border-top-width: 2px;
  border-right-width: 2px;
  border-bottom-width: 2px;
  border-left-width: 2px;
  border-style: solid;
  border-color: #1a1a1a;
}

.chat-launcher__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 500;
  display: none;
}

@media (min-width: 640px) {
  .chat-launcher__label {
    display: inline;
  }
}

.chat-panel {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 66;
  width: 340px;
  max-width: calc(100vw - 32px);
  height: 500px;
  max-height: calc(100vh - 32px);
  background-color: #fdfbf7;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: rgba(26, 26, 26, 0.15);
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  display: none;
  flex-direction: column;
  overflow: hidden;
}

.chat-panel--open {
  display: flex;
}

.chat-panel__header {
  padding-top: 14px;
  padding-bottom: 14px;
  padding-left: 16px;
  padding-right: 16px;
  background-color: #1a1a1a;
  color: #fdfbf7;
  display: flex;
  align-items: center;
  column-gap: 12px;
}

.chat-panel__avatar {
  width: 44px;
  height: 44px;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  object-fit: cover;
  border-top-width: 2px;
  border-right-width: 2px;
  border-bottom-width: 2px;
  border-left-width: 2px;
  border-style: solid;
  border-color: rgba(253, 251, 247, 0.3);
  flex-shrink: 0;
  display: block;
}

.chat-panel__title-wrap {
  flex-grow: 1;
  min-width: 0;
}

.chat-panel__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 0;
}

.chat-panel__subtitle {
  font-size: 11px;
  color: rgba(253, 251, 247, 0.75);
  margin-top: 2px;
  display: flex;
  align-items: center;
  column-gap: 6px;
}

.chat-panel__dot {
  width: 6px;
  height: 6px;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  background-color: #34d399;
  display: inline-block;
}


.chat-panel__close {
  background-color: transparent;
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
  color: #fdfbf7;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-panel__close-icon {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.chat-panel__body {
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 16px;
  padding-right: 16px;
  overflow-y: auto;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  background-color: rgba(244, 237, 225, 0.4);
}

.chat-message {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 14px;
  padding-right: 14px;
  font-size: 14px;
  line-height: 1.5;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  max-width: 85%;
}

.chat-message--bot {
  background-color: #fdfbf7;
  color: #1a1a1a;
  align-self: flex-start;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: rgba(26, 26, 26, 0.08);
}

.chat-message--user {
  background-color: #1a1a1a;
  color: #fdfbf7;
  align-self: flex-end;
}

.chat-panel__footer {
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 12px;
  padding-right: 12px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(26, 26, 26, 0.1);
  display: flex;
  column-gap: 8px;
  background-color: #fdfbf7;
}

.chat-panel__input {
  flex-grow: 1;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 12px;
  padding-right: 12px;
  font-size: 14px;
  font-family: inherit;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: rgba(26, 26, 26, 0.15);
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  background-color: #fdfbf7;
  color: #1a1a1a;
}

.chat-panel__send {
  width: 40px;
  height: 40px;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  background-color: #8b7355;
  color: #fdfbf7;
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chat-panel__send-icon {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: currentColor;
}

/* TABLET */
@media (min-width: 640px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }
  .container--narrow {
    padding-left: 24px;
    padding-right: 24px;
  }
  .container--wide {
    padding-left: 24px;
    padding-right: 24px;
  }
  .hero__title {
    font-size: 56px;
  }
  .hero__actions {
    flex-direction: row;
    justify-content: center;
    column-gap: 16px;
  }
  .section__title {
    font-size: 40px;
  }
  .section__title-light {
    font-size: 40px;
  }
  .about__title {
    font-size: 36px;
  }
  .cta__title {
    font-size: 36px;
  }
  .stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .service-block {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
  .service-block__title {
    font-size: 40px;
  }
  .page-header__title {
    font-size: 56px;
  }
  .legal__title {
    font-size: 40px;
  }
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
  .section {
    padding-top: 96px;
    padding-bottom: 96px;
  }
  .footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
  .footer__bottom {
    flex-direction: row;
    text-align: left;
  }
  .cookie__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    column-gap: 24px;
  }
  .cookie__text {
    flex-grow: 1;
  }
}

/* DESKTOP */
@media (min-width: 1024px) {
  .header__nav {
    display: flex;
  }
  .header__phone {
    display: inline-block;
  }
  .header__burger {
    display: none;
  }
  .menu-mobile--open {
    display: none;
  }
  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .hero__title {
    font-size: 68px;
  }
  .section__title {
    font-size: 48px;
  }
  .section__title-light {
    font-size: 48px;
  }
  .page-header__title {
    font-size: 64px;
  }
}
