/* ========================================
   WORDPRESS MENU RESET
   ======================================== */

/* Основное меню */

.site-nav,
.site-nav ul,
.site-nav li {
    margin: 0;
    padding: 0;
    list-style: none;
}


/* Убираем стандартное оформление списков */

.site-nav ul {
    display: flex;
    align-items: center;
    gap: 40px;
}


/* Элементы меню */

.site-nav li {
    display: block;
}


/* Ссылки */

.site-nav a {
    display: inline-block;
    margin: 0;
    padding: 0;

    text-decoration: none;
    border: 0;
    background: none;

    font: inherit;
    color: inherit;
}


/* Убираем возможные стили WordPress
   у активных пунктов */

.site-nav .current-menu-item > a,
.site-nav .current_page_item > a,
.site-nav .current-menu-parent > a,
.site-nav .current_page_parent > a {
    margin: 0;
    padding: 0;

    text-decoration: none;
}

/* =========================================
   FOOTER MENU RESET
========================================= */

.site-footer__nav {
    margin: 0;
    padding: 0;
}

.site-footer__nav .site-footer__menu {
    display: flex;
    align-items: center;
    gap: 32px;

    margin: 0;
    padding: 0;

    list-style: none;
}

@media screen and (max-width: 600px) {
    .site-footer__nav .site-footer__menu {
        flex-direction: column;
    }
}

.site-footer__nav .site-footer__menu li {
    display: block;

    margin: 0;
    padding: 0;

    list-style: none;
}

.site-footer__nav .site-footer__menu li::before,
.site-footer__nav .site-footer__menu li::after {
    display: none;
}

.site-footer__nav .site-footer__menu a {
    display: inline-block;

    margin: 0;
    padding: 0;

    text-decoration: none;
}
.site-footer__copyright{
	font-size:12px;
}
.site-footer__legal a{
	margin:10px;
	font-size:12px;
}

/* ========================================
   МОБИЛЬНОЕ МЕНЮ
   ======================================== */

.mobile-menu__nav,
.mobile-menu__nav ul,
.mobile-menu__nav li {
    margin: 0;
    padding: 0;
    list-style: none;
}


.mobile-menu__nav ul {
    display: flex;
    flex-direction: column;
}


.mobile-menu__nav li {
    display: block;
}


.mobile-menu__nav a {
    display: block;

    margin: 0;
    padding: 0;

    text-decoration: none;
    border: 0;
    background: none;

    font: inherit;
    color: inherit;
}


.mobile-menu__nav .current-menu-item > a,
.mobile-menu__nav .current_page_item > a,
.mobile-menu__nav .current-menu-parent > a,
.mobile-menu__nav .current_page_parent > a {
    margin: 0;
    padding: 0;

    text-decoration: none;
}

@charset "UTF-8";
/* ===== Fonts ===== */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("./fonts/montserrat-v30-cyrillic_latin-regular.woff2") format("woff2");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("./fonts/montserrat-v30-cyrillic_latin-700.woff2") format("woff2");
}
.forum-regular {
  font-family: "Forum", serif;
  font-weight: 400;
  font-style: normal;
  src: url("./fonts/Forum-Regular.ttf") format("woff2");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #f5f4ef;
  color: #171714;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

main {
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
}

.container {
  width: min(100% - 48px, 1240px);
  margin: 0 auto;
}

/* ========================================
GLASS
======================================== */
.glass-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 12px 40px rgba(20, 20, 15, 0.06);
}

/* ========================================
HEADER
======================================== */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 18px;
  left: 50%;
  width: min(100% - 36px, 1320px);
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

/* ========================================
INNER
======================================== */
.site-header__inner {
  position: relative;
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 22px;
}

/* ========================================
LOGO
======================================== */
.site-logo {
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.site-logo img {
  display: block;
  width: auto;
  height: 38px;
  -o-object-fit: contain;
     object-fit: contain;
}
.site-logo:hover {
  opacity: 0.75;
  transform: translateY(-1px);
}

/* ========================================
NAVIGATION
======================================== */
.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.site-nav a {
  position: relative;
  white-space: nowrap;
  font-family: "Forum", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #77766f;
  transition: color 0.25s ease;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: #171714;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.site-nav a:hover {
  color: #171714;
}
.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ========================================
SOCIAL
======================================== */
.site-social {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}

.social-link {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #171714;
  transition: background 0.25s ease, transform 0.25s ease, color 0.25s ease;
}
.social-link svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.7;
  overflow: visible;
}
.social-link:hover {
  background: #171714;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Instagram */
.social-link:nth-child(2) svg {
  fill: none;
}

/* Instagram center */
.social-link:nth-child(2) .icon-dot {
  fill: currentColor;
  stroke: none;
}

/* YouTube play button */
.social-link:first-child .icon-cutout {
  fill: #ffffff;
  stroke: none;
}

/* ========================================
MOBILE BUTTON
======================================== */
.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}
.mobile-menu-button span {
  display: block;
  width: 20px;
  height: 1px;
  margin: 5px auto;
  background: #171714;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ========================================
MOBILE MENU
======================================== */
.mobile-menu {
  display: none;
  padding: 10px 22px 28px;
  border-top: 1px solid rgba(23, 23, 20, 0.08);
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu__nav a {
  padding: 13px 0;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid rgba(23, 23, 20, 0.07);
  color: #171714;
  text-align: center;
}

.mobile-menu__social {
  display: flex;
  gap: 22px;
  padding-top: 25px;
  justify-content: center;
}
.mobile-menu__social a {
  font-size: 11px;
  color: #77766f;
}

/* ========================================
MOBILE ACTIVE
======================================== */
.mobile-menu-button.is-active span:first-child {
  transform: translateY(3px) rotate(45deg);
}
.mobile-menu-button.is-active span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.mobile-menu.is-open {
  display: block;
}

/* ========================================
TABLET
======================================== */
@media (max-width: 1050px) {
  .site-nav {
    gap: 18px;
  }
}
/* ========================================
MOBILE
======================================== */
@media (max-width: 800px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    border-radius: 17px;
  }
  .site-header__inner {
    min-height: 64px;
    display: flex;
    justify-content: space-between;
    padding: 0 16px;
  }
  .site-logo img {
    height: 34px;
  }
  .site-nav,
  .site-social {
    display: none;
  }
  .mobile-menu-button {
    display: block;
  }
}
/* ========================================
SMALL MOBILE
======================================== */
@media (max-width: 420px) {
  .site-logo img {
    height: 31px;
  }
  .site-header__inner {
    min-height: 60px;
  }
}
/* ========================================
HERO
======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 150px 0 90px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  top: 5%;
  right: -150px;
  background: #eed073;
  opacity: 0.12;
  border-radius: 50%;
  filter: blur(80px);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #77766f;
  margin-bottom: 28px;
}

.hero h1 {
  max-width: 800px;
  font-size: clamp(54px, 6vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.065em;
  font-weight: 500;
}

.hero h1 span {
  display: block;
  color: #77766f;
}

.hero__description {
  max-width: 530px;
  margin-top: 34px;
  font-size: 17px;
  color: #77766f;
}

.hero__actions {
  display: flex;
  gap: 12px;
  margin-top: 42px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.button:hover {
  transform: translateY(-3px);
}

.button--dark {
  background: #171714;
  color: #ffffff;
}
.button--dark:hover {
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
}

.button--light {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(23, 23, 20, 0.1);
}

.hero__visual {
  position: relative;
}

.hero__image {
  position: relative;
  aspect-ratio: 0.82;
  overflow: hidden;
  border-radius: 32px;
  background: #deddd7;
}

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

.hero__note {
  position: absolute;
  left: -50px;
  bottom: 35px;
  width: 230px;
  padding: 22px;
  border-radius: 18px;
}
.hero__note span {
  font-size: 10px;
  color: #77766f;
}
.hero__note p {
  margin-top: 20px;
  font-size: 13px;
  line-height: 1.5;
}

.hero__bottom {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
}

.hero__bottom-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #77766f;
}

.scroll-line {
  width: 70px;
  height: 1px;
  background: rgba(23, 23, 20, 0.1);
}

/* ========================================
SECTIONS
======================================== */
.section {
  padding: 0px 0;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #77766f;
  margin-bottom: 70px;
}
.section-label span {
  color: #171714;
}

h2 {
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  font-weight: 500;
}

h2 em {
  color: #77766f;
  font-style: normal;
}

/* ========================================
ABOUT
======================================== */
.about {
  background: #ecebe5;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}

.about__title h2 {
  max-width: 560px;
}

.about__content {
  max-width: 520px;
  padding-top: 8px;
}
.about__content p {
  color: #77766f;
  margin-bottom: 22px;
}
.about__content .lead {
  font-size: 21px;
  line-height: 1.5;
  color: #171714;
  margin-bottom: 30px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 600;
  border-bottom: 1px solid #171714;
  padding-bottom: 5px;
  transition: gap 0.25s ease;
}
.text-link span {
  transition: transform 0.25s ease;
}
.text-link:hover {
  gap: 20px;
}
.text-link:hover span {
  transform: translateX(3px);
}

/* ========================================
BOOKS
======================================== */
.books {
  background: #f5f4ef;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 50px;
  margin-bottom: 80px;
}
.section-heading p {
  max-width: 310px;
  color: #77766f;
  font-size: 14px;
}

.books__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.book-card {
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 360px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 22px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.book-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.book-card__image {
  background: #e3e1da;
  overflow: hidden;
}
.book-card__image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}

.book-card:hover .book-card__image img {
  transform: scale(1.04);
}

.book-card__body {
  padding: 34px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.book-card__number {
  font-size: 10px;
  color: #77766f;
}

.book-card h3 {
  margin-top: 50px;
  font-size: 25px;
  line-height: 1.15;
  letter-spacing: -0.035em;
  font-weight: 600;
}

.book-card p {
  margin-top: 18px;
  font-size: 13px;
  color: #77766f;
}

.book-card .text-link {
  margin-top: auto;
}

.section-action {
  margin-top: 50px;
  text-align: center;
}

/* ========================================
PRACTICES
======================================== */
.practices {
  background: #e9e8e2;
}

.practices__intro {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 100px;
  margin-bottom: 80px;
}
.practices__intro p {
  max-width: 430px;
  color: #77766f;
  align-self: end;
}

.practice-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.practice-item {
  display: grid;
  grid-template-columns: 70px 1fr 50px;
  align-items: center;
  gap: 30px;
  padding: 30px 34px;
  border-radius: 20px;
  transition: transform 0.3s ease, background 0.3s ease;
}
.practice-item:hover {
  transform: translateX(8px);
  background: rgba(255, 255, 255, 0.95);
}

.practice-item__number {
  font-size: 11px;
  color: #77766f;
}

.practice-item h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.practice-item p {
  margin-top: 5px;
  font-size: 13px;
  color: #77766f;
}

.practice-item__arrow {
  justify-self: end;
  font-size: 20px;
}

/* ========================================
MATERIALS
======================================== */
.all-materials {
  padding-top: 140px;
  padding-bottom: 150px;
}

.materials__heading{
	margin-bottom:40px;
}

.all-materials__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}
.all-materials__heading h2 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.045em;
  color: #171714;
}
.all-materials__heading h2 span {
  color: #99978e;
}
.all-materials__heading > p {
  max-width: 430px;
  margin: 0 0 5px;
  font-size: 16px;
  line-height: 1.75;
  color: #7d7b73;
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.material-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 10px;
  min-height: 50px;
  padding: 25px;
  background: #f5f3ee;
  border: 1px solid rgba(23, 23, 20, 0.08);
  border-radius: 20px;
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), background-color 0.35s ease;
}
.material-card:hover {
  transform: translateY(-5px);
  background: #eeece6;
}
.material-card:hover .material-card__visual img {
  transform: translateY(-5px) scale(1.03);
}
.material-card:hover .material-card__link {
  gap: 14px;
}

.material-card__visual {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 5px;
}
.material-card__visual img {
  display: block;
  width: 120px;
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.material-card__content {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.material-card__type {
  display: block;
  margin-bottom: 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #aaa89f;
}

.material-card h3 {
  margin: 0 0 12px;
  font-size: 27px;
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: -0.025em;
  color: #171714;
}

.material-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: #7d7b73;
}

.material-card__link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: auto;
  padding-top: 25px;
  font-size: 14px;
  font-weight: 600;
  color: #171714;
  text-decoration: none;
  transition: gap 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.material-card__link::after {
  content: "→";
  font-size: 16px;
  font-weight: 400;
}

@media (max-width: 1100px) {
  .materials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .material-card {
    grid-template-columns: 120px 1fr;
    gap: 25px;
    padding: 28px;
  }
  .material-card__visual img {
    width: 100px;
  }
}
@media (max-width: 900px) {
  .all-materials {
    padding-top: 100px;
    padding-bottom: 110px;
  }
  .all-materials__heading {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 60px;
  }
}
@media (max-width: 600px) {
  .section-label {
    font-size: 10px;
  }
  .all-materials {
    padding-top: 80px;
    padding-bottom: 90px;
    padding: 0px !important;
  }
  .all-materials__heading {
    gap: 25px;
    margin-bottom: 45px;
  }
  .all-materials__heading h2 {
    font-size: clamp(36px, 11vw, 52px);
  }
  .all-materials__heading > p {
    font-size: 15px;
    line-height: 1.65;
  }
  .materials-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .material-card {
    grid-template-columns: 95px 1fr;
    gap: 10px;
    min-height: 0;
    padding: 25px 20px;
  }
  .material-card__visual {
    padding-top: 8px;
  }
  .material-card__visual img {
    width: 80px;
  }
  .material-card h3 {
    font-size: 23px;
  }
  .material-card p {
    font-size: 14px;
  }
  .material-card__link {
    padding-top: 20px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .material-card,
  .material-card__visual img,
  .material-card__link {
    transition: none;
  }
}
/* ========================================
QUOTE
======================================== */
.quote-section {
  padding: 180px 0;
  background: #171714;
  color: #ffffff;
}

.quote {
  position: relative;
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.quote__mark {
  display: block;
  font-family: Georgia, serif;
  font-size: 100px;
  line-height: 0.5;
  color: #eed073;
}

.quote blockquote {
  margin-top: 50px;
  font-size: clamp(42px, 6vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.055em;
  font-weight: 400;
}

.quote__author {
  display: block;
  margin-top: 50px;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.5);
}

/* ========================================
COOPERATION
======================================== */
.cooperation {
  background: #ecebe5;
}

.cooperation__box {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 70px;
  padding: 70px;
  border-radius: 32px;
}
.cooperation__box h2 {
  max-width: 700px;
}
.cooperation__box p {
  max-width: 520px;
  margin-top: 30px;
  color: #77766f;
}
.cooperation__box .section-label {
  margin-bottom: 45px;
}

/* ========================================
FINAL CTA
======================================== */
.final-cta {
  padding: 180px 0;
  background: #171714;
  color: #ffffff;
  text-align: center;
}

.final-cta .eyebrow {
  color: rgba(255, 255, 255, 0.5);
}

.final-cta h2 {
  margin: 30px auto 50px;
  max-width: 900px;
  font-size: clamp(52px, 8vw, 110px);
}

/* ========================================
FOOTER
======================================== */
.footer {
  padding: 80px 0 30px;
  background: #171714;
  color: #ffffff;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.6fr;
  gap: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.logo--footer {
  color: #ffffff;
}

.footer__top p {
  max-width: 300px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
}

.footer__nav,
.footer__social {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer__nav a,
.footer__social a {
  width: -moz-fit-content;
  width: fit-content;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  transition: color 0.25s ease;
}
.footer__nav a:hover,
.footer__social a:hover {
  color: #ffffff;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 25px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.35);
}
.footer__bottom div {
  display: flex;
  gap: 25px;
}

/* ========================================
RESPONSIVE
======================================== */
@media (max-width: 900px) {
  .nav {
    position: fixed;
    top: 82px;
    left: 0;
    right: 0;
    padding: 25px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  }
  .nav--open {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .hero__visual {
    max-width: 650px;
    margin: auto;
  }
  .about__grid,
  .materials__grid,
  .practices__intro {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .books__grid {
    grid-template-columns: 1fr;
  }
  .section-heading {
    flex-direction: column;
    align-items: flex-start;
  }
  .cooperation__box {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
  .footer__social {
    grid-column: 2;
  }
}
@media (max-width: 600px) {
  .container {
    width: min(100% - 30px, 1240px);
  }
  .header {
    top: 10px;
    width: calc(100% - 20px);
  }
  .hero {
    padding-top: 125px;
    padding-bottom: 80px;
  }
  .hero h1 {
    font-size: clamp(48px, 14vw, 70px);
  }
  .hero__description {
    font-size: 15px;
  }
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .button {
    width: 100%;
  }
  .hero__note {
    left: 15px;
    bottom: 15px;
    width: 190px;
  }
  .section {
    padding: 50px 15px;
  }
  .section-label {
    margin-bottom: 45px;
  }
  h2 {
    font-size: 44px;
  }
  .book-card {
    grid-template-columns: 1fr;
  }
  .book-card__image {
    aspect-ratio: 1/1;
  }
  .book-card__body {
    min-height: 300px;
  }
  .book-card h3 {
    margin-top: 30px;
  }
  .practice-item {
    grid-template-columns: 35px 1fr 25px;
    gap: 15px;
    padding: 24px 20px;
  }
  .practice-item h3 {
    font-size: 15px;
  }
  .practice-item p {
    font-size: 12px;
  }
  .quote-section,
  .final-cta {
    padding: 120px 0;
  }
  .quote blockquote {
    font-size: 43px;
  }
  .cooperation__box {
    padding: 35px 25px;
  }
  .footer__top {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .footer__social {
    grid-column: auto;
  }
  .footer__bottom {
    flex-direction: column;
  }
  .footer__bottom div {
    flex-direction: column;
    gap: 10px;
  }
}
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f5f3ee;
  color: #363632;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
}

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

button,
input {
  font: inherit;
}

.section {
  width: min(100% - 48px, 1240px);
  margin: 0 auto;
  padding: 140px 0;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #53524f;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.section-label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: #eed073;
}

.button {
  min-height: 54px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.button:hover {
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .section-label {
    font-size: 10px;
  }
}
.button--dark {
  background: #171714;
  color: white;
}
.button--dark:hover {
  background: #292925;
}

.button--line {
  border: 1px solid rgba(23, 23, 20, 0.12);
  color: #171714;
}
.button--line:hover {
  background: white;
}

.button--light {
  background: white;
  color: #171714;
}
.button--light:hover {
  background: #eed073;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  border-bottom: 1px solid #171714;
  padding-bottom: 5px;
}
.text-link span {
  transition: transform 0.25s ease;
}
.text-link:hover span {
  transform: translate(3px, -3px);
}

.book-hero {
  min-height: 100vh;
  width: min(100% - 48px, 1240px);
  margin: 0 auto;
  padding-top: 100px;
  padding-bottom: 90px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 100px;
}

.book-hero__content {
  padding-left: 5%;
}

.book-hero .eyebrow {
  margin-bottom: 30px;
  color: #53524f;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  width: 100%;
  margin: 0 auto 20px;
  display: block;
}

.book-hero h1 {
  margin: 0;
  color: #171714;
  font-size: clamp(52px, 6vw, 92px);
  line-height: 0.94;
  font-family: forum;
  font-weight: 900;
}
.book-hero h1 span {
  letter-spacing: -0.065em;
  color: #8e8c84;
}

.book-hero__lead {
  max-width: 470px;
  margin: 40px 0 0;
  color: #53524f;
  font-size: 15px;
  line-height: 1.8;
}

.book-hero__actions {
  display: flex;
  gap: 12px;
  margin-top: 40px;
}

.book-hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 650px;
}

.book-glow {
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: rgba(238, 208, 115, 0.18);
  filter: blur(55px);
}

.book-cover {
  position: relative;
  z-index: 2;
  width: min(550px, 100%);
  filter: drop-shadow(25px 35px 35px rgba(0, 0, 0, 0.18));
  transition: transform 0.5s ease;
  animation: levitate 4s infinite ease-in-out;
}
.book-cover img {
  display: block;
  width: 100%;
}

@keyframes levitate {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
.book-caption {
  position: absolute;
  right: 0;
  bottom: 40px;
  display: flex;
  gap: 20px;
  color: #53524f;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.book-intro {
  border-top: 1px solid rgba(23, 23, 20, 0.12);
}

.book-intro__content {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 120px;
  margin-top: 75px;
}

.book-intro h2 {
  max-width: 750px;
  margin: 0;
  color: #171714;
  font-size: clamp(38px, 4vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  font-weight: 500;
}
.book-intro h2 em {
  color: #99978e;
  font-style: normal;
}

.book-intro__text {
  padding-top: 10px;
}
.book-intro__text p {
  margin: 0 0 25px;
  color: #53524f;
  font-size: 14px;
  line-height: 1.9;
}

.book-inside {
  padding-top: 140px;
  padding-bottom: 140px;
}

.book-inside__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 90px;
}
.book-inside__heading .book-inside__eyebrow {
  display: block;
  margin-bottom: 22px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #99978e;
}
.book-inside__heading h2 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.045em;
  color: #171714;
}
.book-inside__heading h2 span {
  color: #99978e;
}
.book-inside__heading > p {
  max-width: 440px;
  margin: 0 0 5px;
  font-size: 16px;
  line-height: 1.75;
  color: #7d7b73;
}

.book-topics {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.book-topic {
  display: grid;
  gap: 40px;
  align-items: start;
  position: relative;
  padding: 42px 20px;
  border-bottom: 2px solid rgba(23, 23, 20, 0.56);
  border-width: 0.1cap;
  background-color: #fff;
  border-radius: 20px;
}

.book-topic__number {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #aaa89f;
  transition: color 0.3s ease;
}

.book-topic__content {
  display: flex;
  flex-direction: column;
}

.book-topic__label {
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #aaa89f;
}

.book-topic h3 {
  margin: 0 0 10px;
  font-size: clamp(26px, 2.4vw, 38px);
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -0.035em;
  color: #171714;
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.book-topic p {
  max-width: 560px;
  margin: 4px 0 0;
  font-size: 15px;
  line-height: 1.7;
  color: #7d7b73;
  transition: color 0.3s ease;
}

.book-inside__bottom {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 40px;
  padding-top: 55px;
}
.book-inside__bottom span {
  padding-top: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #aaa89f;
}
.book-inside__bottom p {
  max-width: 700px;
  margin: 0;
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.35;
  letter-spacing: -0.025em;
  color: #171714;
}
.book-inside__bottom p span {
  padding: 0;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: none;
  color: #99978e;
}

@media (max-width: 900px) {
  .book-inside {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .book-inside__heading {
    grid-template-columns: 1fr;
    gap: 35px;
    margin-bottom: 65px;
  }
  .book-inside__heading h2 {
    max-width: 700px;
  }
  .book-inside__heading > p {
    max-width: 600px;
  }
  .book-topic {
    grid-template-columns: 70px minmax(160px, 0.7fr);
    gap: 25px;
    padding-top: 35px;
    padding-bottom: 35px;
  }
}
@media (max-width: 600px) {
  .book-inside {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .book-inside__heading {
    gap: 28px;
    margin-bottom: 50px;
  }
  .book-inside__heading .book-inside__eyebrow {
    margin-bottom: 18px;
  }
  .book-inside__heading h2 {
    font-size: clamp(36px, 11vw, 52px);
    line-height: 1.04;
  }
  .book-inside__heading > p {
    font-size: 15px;
    line-height: 1.65;
  }
  .book-topic {
    grid-template-columns: 15px 1fr;
    gap: 18px;
    padding: 30px !important;
  }
  .book-topic__number {
    font-size: 11px;
  }
  .book-topic__content {
    min-width: 0;
  }
  .book-topic__label {
    margin-bottom: 8px;
    font-size: 10px;
  }
  .book-topic h3 {
    font-size: 27px;
  }
  .book-topic p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.65;
  }
  .book-inside__bottom {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 40px;
  }
  .book-inside__bottom p {
    font-size: 22px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .book-topic,
  .book-topic::before,
  .book-topic h3,
  .book-topic p,
  .book-topic__number {
    transition: none;
  }
}
.book-for__layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 120px;
  margin-top: 70px;
}

.book-for h2 {
  margin: 0;
  color: #171714;
  font-size: clamp(45px, 5vw, 70px);
  line-height: 0.96;
  font-weight: 500;
}
.book-for h2 span {
  color: #98968d;
}

.book-for__items {
  border-top: 1px solid rgba(23, 23, 20, 0.12);
}

.for-item {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 20px;
  padding: 35px 0;
  border-bottom: 1px solid rgba(23, 23, 20, 0.12);
}
.for-item > span {
  color: #53524f;
  font-size: 10px;
}
.for-item h3 {
  max-width: 500px;
  margin: 0 0 10px;
  color: #171714;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 500;
}
.for-item p {
  max-width: 520px;
  margin: 0;
  color: #53524f;
  font-size: 13px;
  line-height: 1.8;
}

.book-quote {
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px 24px;
  background: #171714;
  color: white;
  text-align: center;
}

.book-quote__mark {
  margin-bottom: 30px;
  color: #eed073;
  font-size: 80px;
  line-height: 0.5;
  font-family: Georgia, serif;
}

.book-quote blockquote {
  max-width: 950px;
  margin: 0;
  font-size: clamp(38px, 5vw, 70px);
  line-height: 1.08;
  font-weight: 400;
}
.book-quote blockquote em {
  color: #eed073;
  font-style: normal;
}

.book-author__layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 110px;
  margin-top: 70px;
  align-items: center;
}

.book-author__image {
  overflow: hidden;
}
.book-author__image img {
  display: block;
  width: 100%;
  aspect-ratio: 4/5;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  filter: grayscale(33%);
}

.book-author__content h2 {
  margin: 0;
  color: #171714;
  font-size: clamp(45px, 5vw, 70px);
  line-height: 1;
  letter-spacing: 0.03em;
  font-weight: 500;
}

.author-role {
  margin: 15px 0 50px;
  color: #53524f;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.author-text p {
  max-width: 620px;
  margin: 0 0 25px;
  color: #53524f;
  font-size: 14px;
  line-height: 1.9;
}

.book-mission {
  padding-top: 40px;
  padding-bottom: 140px;
}

.book-mission__inner {
  padding: 100px;
  background: #eeece6;
  text-align: center;
  border-radius: 20px;
}

.mission-label {
  color: #53524f;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.book-mission h2 {
  margin: 35px 0;
  color: #171714;
  font-size: clamp(45px, 5vw, 75px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  font-weight: 500;
}

.book-mission p {
  max-width: 580px;
  margin: 0 auto;
  color: #53524f;
  font-size: 14px;
  line-height: 1.9;
}

.international-books {
  padding-top: 140px;
  padding-bottom: 150px;
}

.international-books__heading {
  text-align: center;
  margin: 0 auto 85px;
}
.international-books__heading h2 {
  max-width: 1100px;
  margin: 0 auto 22px;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.045em;
  color: #171714;
}
.international-books__heading h2 span {
  color: #99978e;
}
.international-books__heading p {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  color: #7d7b73;
}

.international-books__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 50px;
       column-gap: 50px;
  row-gap: 35px;
  max-width: 1250px;
  margin: 0 auto;
}

.international-books__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  padding: 25px;
  text-decoration: none;
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.3s ease;
}
.international-books__item img {
  display: block;
  width: auto;
  max-width: 210px;
  max-height: 75px;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0.9;
  transition: filter 0.4s ease, opacity 0.4s ease, transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.international-books__item:hover {
  transform: translateY(-5px);
}
.international-books__item:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.03);
}

@media (max-width: 900px) {
  .international-books {
    padding-top: 100px;
    padding-bottom: 110px;
  }
  .international-books__heading {
    margin-bottom: 60px;
  }
  .international-books__heading h2 {
    max-width: 700px;
  }
  .international-books__grid {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 30px;
         column-gap: 30px;
    row-gap: 25px;
  }
}
@media (max-width: 600px) {
  .book-buy__info h2 {
    text-align: center;
    font-size: 32px !important;
    letter-spacing: 0.03em !important;
  }
  .international-books {
    padding-top: 80px;
    padding-bottom: 90px;
  }
  .international-books__heading {
    margin-bottom: 45px;
  }
  .international-books__heading h2 {
    font-size: clamp(36px, 11vw, 52px);
  }
  .international-books__heading p {
    font-size: 15px;
  }
  .international-books__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .international-books__item {
    min-height: 100px;
    padding: 20px;
  }
  .international-books__item img {
    max-width: 190px;
    max-height: 60px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .international-books__item,
  .international-books__item img {
    transition: none;
  }
}
.book-buy {
  border-top: 1px solid rgba(23, 23, 20, 0.12);
}

.book-buy__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  margin-top: 70px;
}

.book-buy__info h2 {
  margin: 0;
  color: #171714;
  font-size: clamp(44px, 5vw, 68px);
  line-height: 0.96;
  letter-spacing: -0.06em;
  font-weight: 500;
}

.book-buy__info > p {
  max-width: 480px;
  margin: 35px 0;
  color: #53524f;
  font-size: 14px;
  line-height: 1.8;
}

.book-specs {
  display: flex;
  gap: 60px;
  margin-bottom: 40px;
}
.book-specs > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.book-specs > div span {
  color: #53524f;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.book-specs > div strong {
  color: #171714;
  font-size: 22px;
  font-weight: 500;
}

.book-buy__note {
  border-top: 1px solid rgba(23, 23, 20, 0.12);
}
.book-buy__note > span {
  display: block;
  margin-top: 30px;
  color: #53524f;
  font-size: 10px;
}
.book-buy__note p {
  max-width: 480px;
  margin: 12px 0 35px;
  color: #53524f;
  font-size: 13px;
  line-height: 1.8;
}

/* REVIEWS CAROUSEL */

.swiper-container {
  width: 100%;
  overflow: hidden;
}

.swiper-wrapper {
  display: flex;
  transition-timing-function: ease;
}


.reviews-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.reviews-carousel__track {
    display: flex;
    gap: 20px;
    transition: transform 0.45s ease;
    will-change: transform;
}

.review {
    flex: 0 0 calc((100% - 40px) / 3);
    box-sizing: border-box;
}


/* CONTROLS */

.reviews-carousel__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
}

.reviews-carousel__button {
    width: 46px;
    height: 46px;
    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    background: transparent;

    font-size: 20px;
    line-height: 1;

    cursor: pointer;
    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}

.reviews-carousel__button:hover {
    background: #111;
    color: #fff;
    border-color: #111;
}

.reviews-carousel__button:disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}

.reviews-carousel__counter {
    display: flex;
    align-items: center;
    gap: 6px;

    font-size: 14px;
}

.reviews-carousel__current {
    font-weight: 500;
}


/* TABLET */

@media (max-width: 991px) {

    .review {
        flex: 0 0 calc((100% - 20px) / 2);
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .reviews-carousel__track {
        gap: 15px;
    }

    .review {
        flex: 0 0 100%;
    }

    .reviews-carousel__controls {
        margin-top: 25px;
        gap: 18px;
    }

    .reviews-carousel__button {
        width: 42px;
        height: 42px;
    }

}



/* REVIEWS CAROUSEL FINISH*/


.book-reviews {
  border-top: 1px solid rgba(23, 23, 20, 0.12);
}

.book-reviews__heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-top: 70px;
  margin-bottom: 70px;
}

.book-reviews h2 {
  margin: 0;
  color: #171714;
  font-size: clamp(44px, 5vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  font-weight: 500;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 70px;
  border-top: 1px solid rgba(23, 23, 20, 0.12);
}

.review {
  min-height: 300px;
  padding: 35px 35px 35px 0;
  border-bottom: 1px solid rgba(23, 23, 20, 0.12);
}
.review:not(:last-child) {
  border-right: 1px solid rgba(23, 23, 20, 0.12);
  margin-right: 35px;
}
.review p {
  max-width: 330px;
  margin: 0 0 80px;
  color: #363632;
  font-size: 14px;
  line-height: 1.8;
}
.review span {
  color: #53524f;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.book-demo {
  padding-top: 150px;
  padding-bottom: 150px;
  background: #f5f3ee;
}

.book-demo__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  gap: 10px !important;
}

.book-demo__inner .section-label {
  margin-bottom: 25px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #99978e;
}

.book-demo__inner h2 {
  margin: 0;
  font-size: clamp(52px, 7vw, 92px);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.055em;
  color: #171714;
}
.book-demo__inner h2 span {
  color: #99978e;
}

.book-demo__inner > p {
  max-width: 570px;
  margin: 28px auto 0;
  font-size: 17px;
  line-height: 1.65;
  color: #7d7b73;
}
.book-demo__inner > p strong {
  display: inline-block;
  margin-top: 3px;
  font-weight: 500;
  color: #171714;
}

.book-demo form {
  display: flex;
  width:100%;
  max-width: 570px;
  margin-top: 42px;
/*   background: #ffffff; */
/*   border: 1px solid rgba(23, 23, 20, 0.12); */
  border-radius: 20px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
/* .demo-form:focus-within {
  border-color: rgba(23, 23, 20, 0.25);
  box-shadow: 0 18px 50px rgba(23, 23, 20, 0.09);
} */

.wpcf7-not-valid-tip{
  margin-bottom: 10px;
}

.wpcf7 form .wpcf7-response-output{
	display:none;
}

.book-demo input {
  width:100%;
  flex: 1;
  min-width: 0;
  height: 58px;
  padding: 0 20px;
  border: 1px solid #000;
  outline: none;
  background: transparent;
  font-family: inherit;
  font-size: 15px;
  color: #171714;
  border-radius: 20px 0 0 20px;
}
.book-demo input::-moz-placeholder {
  color: #aaa89f;
}
.book-demo input::placeholder {
  color: #aaa89f;
}

.book-demo input[type="submit"] {
  flex-shrink: 0;
  width:100%;
  height: 58px;
  padding: 0 28px;
  border: 0;
  background: #171714;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border-radius: 0px 20px 20px 0;
}
.book-demo input[type="submit"]:hover {
  background: #4a4a47;
}

@media (max-width: 600px) {
  .book-demo {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .book-demo__inner .section-label {
    margin-bottom: 20px;
  }
  .book-demo__inner h2 {
    font-size: clamp(48px, 15vw, 68px);
  }
  .book-demo__inner > p {
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.65;
  }
  .book-demo form {
    flex-direction: column;
    margin-top: 32px;
    padding: 0px;
    display: block;
    background: none;
    border: none;
    box-shadow: none;
  }
  .book-demo input {
    width: 100%;
    height: 54px;
    text-align: center;
    border-radius: 20px;
    margin-bottom: 10px;
    background-color: #fff;
  }
  .book-demo input[type="submit"] {
    width: 100%;
    height: 54px;
    box-shadow: none;
    border-radius: 20px;
  }
}
@media (prefers-reduced-motion: reduce) {
.book-demo input[type="submit"] {
    transition: none;
  }
}
.book-faq {
  border-top: 1px solid rgba(23, 23, 20, 0.12);
}

.faq-list {
  max-width: 900px;
  margin: 70px auto 0;
}

.faq-list details {
  border-top: 1px solid rgba(23, 23, 20, 0.12);
}
.faq-list details:last-child {
  border-bottom: 1px solid rgba(23, 23, 20, 0.12);
}

.faq-list summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 27px 0;
  color: #171714;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary span {
  color: #53524f;
  font-size: 20px;
  font-weight: 300;
  transition: transform 0.25s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list p {
  max-width: 700px;
  margin: -5px 0 30px;
  color: #53524f;
  font-size: 13px;
  line-height: 1.8;
}

.book-final {
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 24px;
  background: #171714;
  color: white;
  text-align: center;
}

.book-final__inner {
  max-width: 1000px;
}

.book-final span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.book-final h2 {
  margin: 35px 0 50px;
  font-size: clamp(55px, 7vw, 100px);
  line-height: 0.9;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.book-final h2 em {
  color: #eed073;
  font-style: normal;
}

.site-footer {
  padding: 50px max(24px, (100vw - 1240px) / 2);
  background: #171714;
  color: white;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.site-footer__top img {
  height: 32px;
  width: auto;
}
.site-footer__top nav {
  display: flex;
  gap: 25px;
}
.site-footer__top nav a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
}
.site-footer__top nav a:hover {
  color: white;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 25px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 9px;
}

.mobile-menu-button {
  display: none;
}

@media (max-width: 900px) {
  .site-nav,
  .site-social {
    display: none;
  }
  .site-header__inner {
    display: flex;
    justify-content: space-between;
  }
  .mobile-menu-button {
    display: block;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
  }
  .mobile-menu-button span {
    display: block;
    width: 20px;
    height: 1px;
    margin: 5px auto;
    background: #171714;
  }
  .book-hero {
    grid-template-columns: 1fr;
    gap: 60px;
    padding-top: 130px;
  }
  .book-hero__content {
    padding-left: 0;
    text-align: center;
  }
  .book-hero__lead {
    text-align: center;
    margin: 30px auto;
  }
  .book-hero__actions {
    justify-content: center;
  }
  .book-hero__visual {
    min-height: 500px;
  }
  .book-intro__content,
  .book-inside__heading,
  .book-for__layout,
  .book-author__layout,
  .book-buy__layout,
  .book-demo__inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .book-topics,
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }
  .book-topic:nth-child(3n) {
    border-right: 1px solid rgba(23, 23, 20, 0.12);
    padding-right: 40px;
  }
  .book-topic:nth-child(2n) {
    border-right: 0;
    padding-right: 0;
  }
  .book-demo__inner {
    padding: 60px 40px;
  }
}
@media (max-width: 750px) {
  .book-hero .eyebrow {
    text-align: center;
  }
  .book-hero__content {
    order: 2;
  }
  .book-hero__visual {
    order: 1;
    min-height: auto !important;
  }
  .book-caption {
    display: none;
  }
  .book-hero {
    gap: 0;
  }
  .section {
    width: min(100% - 36px, 1240px);
    padding: 50px 15px;
  }
  .book-hero {
    width: calc(100% - 36px);
    padding-top: 120px;
    padding-bottom: 60px;
  }
  .book-hero h1 {
    font-size: 48px;
    text-align: center;
  }
  .book-hero__lead {
    font-size: 13px;
    text-align: center;
  }
  .book-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .book-hero__visual {
    min-height: 430px;
  }
  .book-cover {
    width: 72%;
  }
  .book-intro__content {
    margin-top: 45px;
  }
  .book-intro h2,
  .book-inside h2,
  .book-for h2,
  .book-buy__info h2,
  .book-reviews h2 {
    font-size: 42px;
  }
  .book-topics,
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .book-topic,
  .book-topic:nth-child(3n) {
    border-right: 0;
    padding-right: 0;
  }
  .book-topic {
    min-height: auto;
    padding: 30px;
  }
  .book-topic h3 {
    margin-top: 20px;
  }
  .book-for__layout {
    margin-top: 50px;
  }
  .book-quote {
    min-height: 500px;
  }
  .book-quote blockquote {
    font-size: 40px;
  }
  .book-author__image img {
    aspect-ratio: 1/1;
  }
  .book-mission {
    padding: 0px !important;
  }
  .book-mission__inner {
    padding: 30px 25px;
  }
  .book-mission h2 {
    font-size: 42px;
  }
  .book-specs {
    gap: 35px;
  }
  .book-demo__inner {
    padding: 50px 25px;
  }
  .book-demo h2 {
    font-size: 42px;
  }
  .site-footer__top {
    flex-direction: column;
/*     align-items: flex-start; */
    gap: 30px;
  }
  .site-footer__top img {
    margin: 0 auto;
  }
  .site-footer__top nav {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .site-footer__bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
.products-page {
  min-height: 100vh;
  padding: 150px 6vw 120px;
  background: #f5f3ee;
  color: #171714;
  font-family: Georgia, "Times New Roman", Times, serif;
}

/* =========================
   HERO
========================= */
.products-hero {
  max-width: 850px;
  margin: 0 auto 100px;
  text-align: center;
}

.products-hero__label {
  display: block;
  margin-bottom: 28px;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #99978e;
}

.products-hero h1 {
  margin: 0;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -0.045em;
}

.products-hero h1 em {
  font-style: italic;
  color: #99978e;
}

.products-hero p {
  max-width: 570px;
  margin: 35px auto 0;
  font-size: 19px;
  line-height: 1.55;
  color: #77756d;
}

/* =========================
   GRID
========================= */
.products-grid {
  max-width: 1450px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px 28px;
}

/* =========================
   CARD
========================= */
.product-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

/* IMAGE */
.product-card__image {
  position: relative;
  border-radius: 20px;
  width: 100%;
  aspect-ratio: 1/1.12;
  margin-bottom: 27px;
  overflow: hidden;
  background: #e8e5de;
}

.product-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.product-card:hover .product-card__image img {
  transform: scale(1.035);
}

/* DARK PLACEHOLDER */
.product-card__image--dark {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #171714;
}

.product-card__symbol {
  font-size: 110px;
  line-height: 1;
  font-weight: 400;
  color: #eed073;
}

/* BODY */
.product-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card__type {
  margin-bottom: 13px;
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #99978e;
}

.product-card h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -0.025em;
}

.product-card p {
  max-width: 430px;
  margin: 17px 0 28px;
  font-size: 16px;
  line-height: 1.55;
  color: #77756d;
}

/* =========================
   BUTTONS
========================= */
.product-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: auto;
}

.product-card__actions a {
  min-height: 48px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 15px;
  text-align: center;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

/* MORE */
.product-card__more {
  border: 2px solid #5e5e5d;
  color: #171714;
  background: transparent;
}

.product-card__more:hover {
  border-color: #171714;
  background: #171714;
  color: #fff;
}

/* TELEGRAM */
.product-card__telegram {
  border: 1px solid #171714;
  background: #171714;
  color: #fff;
}

.product-card__telegram:hover {
  background: #eed073;
  border-color: #eed073;
  color: #171714;
}

/* =========================
   TABLET
========================= */
@media (max-width: 1050px) {
  .products-page {
    padding: 120px 5vw 90px;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 22px;
  }
}
/* =========================
   MOBILE
========================= */
@media (max-width: 650px) {
  .product-card__image img {
    animation: levitateMob 4s infinite ease-in-out;
  }
  @keyframes levitateMob {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-5px);
    }
    100% {
      transform: translateY(0);
    }
  }
  .products-page {
    padding: 90px 20px 70px;
  }
  .products-hero {
    margin-bottom: 25px;
  }
  .products-hero__label {
    margin-bottom: 20px;
  }
  .products-hero h1 {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0;
    display: none;
  }
  .products-hero p {
    margin-top: 20px;
    font-size: 11px;
  }
  .products-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .product-card__image {
    aspect-ratio: 1/1.08;
    margin-bottom: 22px;
    max-width: 200px;
    margin: 0 auto;
    background: none;
  }
  .product-card__type {
    text-align: center;
  }
  .product-card h2 {
    font-size: 27px;
    text-align: center;
  }
  .product-card p {
    max-width: 100%;
    font-size: 15px;
    margin-top: 13px;
    text-align: center;
  }
  .product-card__actions {
    grid-template-columns: 1fr;
  }
}
/* =========================
   REDUCED MOTION
========================= */
@media (prefers-reduced-motion: reduce) {
  .product-card__image img {
    transition: none;
  }
}
/* =========================================================
   ABOUT PAGE
   ========================================================= */
.about-page {
  --bg: #f5f3ee;
  --text: #171714;
  --muted: #77756d;
  --light: #99978e;
  --line: #dedbd3;
  --image-bg: #e5e2db;
  --accent: #eed073;
  width: 100%;
  overflow: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Georgia, "Times New Roman", Times, serif;
}

/* ---------------------------------------------------------
   RESET ONLY INSIDE ABOUT PAGE
   --------------------------------------------------------- */
.about-page *,
.about-page *::before,
.about-page *::after {
  box-sizing: border-box;
}

.about-page h1,
.about-page h2,
.about-page h3,
.about-page p,
.about-page blockquote {
  margin-top: 0;
}

.about-page img {
  max-width: 100%;
}

.about-page h1,
.about-page h2,
.about-page h3,
.about-page p,
.about-page blockquote {
  overflow-wrap: break-word;
}

/* =========================================================
   COMMON LABELS
   ========================================================= */
.about-label,
.about-section-label {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  line-height: 1.3;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--light);
}

/* =========================================================
   HERO
   ========================================================= */
.about-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: clamp(50px, 7vw, 110px);
  padding: 100px 7vw;
  border-bottom: 1px solid var(--line);
}

.about-hero__content {
  width: 100%;
  max-width: 760px;
  min-width: 0;
}

.about-hero h1 {
  max-width: 700px;
  margin: 30px 0 38px;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(64px, 8.5vw, 130px);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -0.035em;
  color: var(--text);
}

.about-hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: #8c8a82;
}

.about-hero__lead {
  width: 100%;
  max-width: 540px;
  margin: 0;
  font-size: clamp(18px, 1.4vw, 21px);
  line-height: 1.55;
  font-weight: 400;
  color: #69675f;
}

/* HERO PHOTO */
.about-hero__photo {
  width: 100%;
  height: min(76vh, 820px);
  border-radius: 20px;
  min-width: 0;
  overflow: hidden;
  background: var(--image-bg);
}

.about-hero__photo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 1s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.about-hero__photo:hover img {
  transform: scale(1.02);
}

/* HERO SCROLL */
.about-hero__scroll {
  position: absolute;
  left: 7vw;
  bottom: 35px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--light);
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
}

.about-hero__scroll span {
  display: block;
  width: 42px;
  height: 1px;
  flex-shrink: 0;
  background: var(--light);
}

.about-hero__scroll small {
  font-size: 9px;
  line-height: 1;
  letter-spacing: 0.15em;
}

/* =========================================================
   INTRO
   ========================================================= */
.about-intro {
  display: grid;
  grid-template-columns: 20% minmax(0, 1fr);
  gap: 7vw;
  padding: 170px 7vw;
  border-bottom: 1px solid var(--line);
}

.about-intro__label {
  padding-top: 10px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: 0.14em;
  color: var(--light);
}

.about-intro__content {
  max-width: 1050px;
  min-width: 0;
}

.about-intro h2 {
  max-width: 900px;
  margin: 0 0 70px;
  font-size: clamp(42px, 5.5vw, 82px);
  line-height: 1.04;
  font-weight: 400;
  letter-spacing: -0.025em;
}

.about-intro h2 em {
  color: #8c8a82;
  font-style: italic;
}

.about-intro__text {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(25px, 4vw, 70px);
  max-width: 1000px;
}

.about-intro__text p {
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
  color: #5f5d56;
}

/* =========================================================
   IMAGES
   ========================================================= */
.about-image {
  width: 100%;
  padding-left: 7vw;
  padding-right: 7vw;
}

.about-image__photo {
  overflow: hidden;
  background: var(--image-bg);
}

.about-image__photo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.about-image__photo:hover img {
  transform: scale(1.02);
}

.about-image__caption {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  padding-top: 13px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 9px;
  line-height: 1.4;
  letter-spacing: 0.12em;
  color: var(--light);
}

/* WIDE IMAGE */
.about-image--wide {
  padding-top: 50px;
  padding-bottom: 50px;
}

.about-image--wide .about-image__photo {
  width: 100%;
  max-width: 600px;
  border-radius: 20px;
  margin: 0 auto;
}

/* PORTRAIT IMAGE */
.about-image--portrait {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-top: 150px;
  padding-bottom: 160px;
}

.about-image--portrait .about-image__photo {
  width: 48%;
  max-width: 620px;
  aspect-ratio: 4/5;
}

/* EDITORIAL IMAGE */
.about-image--editorial {
  padding-top: 150px;
  padding-bottom: 160px;
}

.about-image--editorial .about-image__photo {
  width: 65%;
  max-width: 850px;
  margin-left: 8%;
  aspect-ratio: 4/3;
}

/* =========================================================
   STORY
   ========================================================= */
.about-story {
  display: grid;
  -moz-column-gap: 7vw;
       column-gap: 7vw;
  padding: 70px 7vw;
  border-bottom: 1px solid var(--line);
}

.about-story > .about-section-label {
  padding-top: 10px;
}

.about-story__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(220px, 0.7fr);
  align-items: end;
  gap: 6vw;
  max-width: 1100px;
  margin-bottom: 120px;
}

.about-story__heading h2 {
  margin: 0;
  font-size: clamp(48px, 6vw, 90px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.about-story__heading h2 em {
  color: #8c8a82;
  font-style: italic;
}

.about-story__heading p {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  color: #69675f;
}

/* STORY ITEMS */
.about-story__text {
  max-width: 1050px;
}

.about-story__item {
  display: grid;
  grid-template-columns: 55px minmax(0, 1fr);
  gap: 25px;
  padding: 35px 0;
  border-top: 1px solid var(--line);
}

.about-story__item > span {
  padding-top: 5px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--light);
}

.about-story__item h3 {
  margin: 0 0 14px;
  font-size: 29px;
  line-height: 1.1;
  font-weight: 400;
}

.about-story__item p {
  max-width: 700px;
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
  color: #69675f;
}

/* =========================================================
   QUOTE
   ========================================================= */
.about-quote {
  padding: 70px 7vw;
  border-bottom: 1px solid var(--line);
}

.about-quote__inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.about-quote blockquote {
  margin: 55px 0 45px;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.about-quote blockquote em {
  color: #8c8a82;
  font-style: italic;
}

.about-quote p {
  max-width: 620px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.65;
  color: #69675f;
}

/* =========================================================
   FOCUS
   ========================================================= */
.about-focus {
  padding: 70px 7vw;
  border-bottom: 1px solid var(--line);
}

.about-focus__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 100px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.about-focus__grid article {
  min-width: 0;
  padding: 40px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-focus__grid article > span {
  display: block;
  margin-bottom: 55px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--light);
}

.about-focus__grid h3 {
  margin: 0 0 18px;
  font-size: 32px;
  line-height: 1.05;
  font-weight: 400;
}

.about-focus__grid p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #69675f;
}

/* =========================================================
   PRINCIPLE
   ========================================================= */
.about-principle {
  display: grid;
  grid-template-columns: 20% minmax(0, 1fr);
  gap: 7vw;
  padding: 70px 7vw;
  border-bottom: 1px solid var(--line);
}

.about-principle__left {
  padding-top: 10px;
}

.about-principle__right {
  max-width: 950px;
}

.about-principle h2 {
  margin: 0 0 60px;
  font-size: clamp(48px, 6vw, 90px);
  line-height: 0.99;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.about-principle h2 em {
  color: #8c8a82;
  font-style: italic;
}

.about-principle p {
  max-width: 700px;
  margin: 0 0 25px;
  font-size: 18px;
  line-height: 1.65;
  color: #69675f;
}

.about-principle p:last-child {
  margin-bottom: 0;
}

/* =========================================================
   NUMBERS
   ========================================================= */
.about-numbers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 100px 7vw;
  border-bottom: 1px solid var(--line);
}

.about-number {
  min-width: 0;
  padding: 20px 40px;
  border-left: 1px solid var(--line);
}

.about-number:first-child {
  border-left: 0;
  padding-left: 0;
}

.about-number strong {
  display: block;
  margin-bottom: 20px;
  font-size: clamp(60px, 7vw, 110px);
  line-height: 0.9;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.about-number span {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--light);
}

/* =========================================================
   BOOKS
   ========================================================= */
.about-books {
  padding: 70px 7vw;
  border-bottom: 1px solid var(--line);
}

.about-books__heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
  margin-top: 100px;
}

.about-books h2 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(48px, 6vw, 90px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.about-books h2 em {
  color: #8c8a82;
  font-style: italic;
}

.about-books__link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--text);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  text-decoration: none;
}

.about-books__link span {
  font-size: 16px;
}

/* =========================================================
   FINAL
   ========================================================= */
.about-final {
  padding: 120px 7vw;
}

.about-final__inner {
  max-width: 950px;
  margin: 0 auto;
  text-align: center;
}

.about-final h2 {
  margin: 55px 0 40px;
  font-size: clamp(48px, 6vw, 90px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.about-final h2 em {
  color: #8c8a82;
  font-style: italic;
}

.about-final p {
  max-width: 520px;
  margin: 0 auto 45px;
  font-size: 18px;
  line-height: 1.6;
  color: #69675f;
}

.about-final__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  min-height: 52px;
  padding: 0 28px;
  background: var(--text);
  color: var(--bg);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease;
}

.about-final__button:hover {
  background: #eed073;
  color: #171714;
}

/* =========================================================
   TABLET
   ========================================================= */
@media (max-width: 1000px) {
  .about-hero {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.75fr);
    gap: 45px;
    padding-left: 5vw;
    padding-right: 5vw;
  }
  .about-intro,
  .about-story,
  .about-principle {
    grid-template-columns: 1fr;
    gap: 50px;
    padding-left: 5vw;
    padding-right: 5vw;
  }
  .about-intro__text {
    grid-template-columns: 1fr 1fr;
  }
  .about-intro__text p:last-child {
    grid-column: 1/-1;
    max-width: 600px;
  }
  .about-story__heading {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 80px;
  }
  .about-focus {
    padding-left: 5vw;
    padding-right: 5vw;
  }
  .about-focus__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about-principle {
    padding-top: 140px;
    padding-bottom: 140px;
  }
  .about-numbers {
    padding-left: 5vw;
    padding-right: 5vw;
  }
  .about-books {
    padding-left: 5vw;
    padding-right: 5vw;
  }
  .about-final {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
/* =========================================================
   MOBILE
   ========================================================= */
@media (max-width: 700px) {
  /* HERO */
  .about-hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
    gap: 50px;
    padding: 90px 20px 80px;
  }
  .about-hero h1 {
    margin: 20px 0 28px;
    font-size: clamp(52px, 17vw, 76px);
    line-height: 0.98;
    letter-spacing: -0.025em;
  }
  .about-hero__lead {
    font-size: 18px;
    line-height: 1.55;
  }
  .about-hero__photo {
    height: 540px;
  }
  .about-hero__scroll {
    display: none;
  }
  /* INTRO */
  .about-intro {
    display: block;
    padding: 100px 20px;
  }
  .about-intro__label {
    margin-bottom: 45px;
  }
  .about-intro h2 {
    margin-bottom: 50px;
    font-size: clamp(40px, 11vw, 62px);
    line-height: 1.03;
  }
  .about-intro__text {
    display: block;
  }
  .about-intro__text p {
    margin-bottom: 28px;
    font-size: 17px;
    line-height: 1.6;
  }
  .about-intro__text p:last-child {
    margin-bottom: 0;
  }
  /* IMAGES */
  .about-image {
    padding-left: 20px;
    padding-right: 20px;
  }
  .about-image--wide {
    padding-bottom: 90px;
  }
  .about-image--wide .about-image__photo {
    aspect-ratio: 4/5;
  }
  .about-image--portrait {
    display: block;
    padding-top: 90px;
    padding-bottom: 100px;
  }
  .about-image--portrait .about-image__photo {
    width: 100%;
    max-width: none;
    aspect-ratio: 4/5;
  }
  .about-image--editorial {
    padding-top: 90px;
    padding-bottom: 100px;
  }
  .about-image--editorial .about-image__photo {
    width: 100%;
    max-width: none;
    margin-left: 0;
    aspect-ratio: 4/3;
  }
  .about-image__caption {
    gap: 15px;
    font-size: 8px;
  }
  /* STORY */
  .about-story {
    display: block;
    padding: 100px 20px;
  }
  .about-story > .about-section-label {
    margin-bottom: 45px;
  }
  .about-story__heading {
    display: block;
    margin-bottom: 70px;
  }
  .about-story__heading h2 {
    margin-bottom: 30px;
    font-size: clamp(44px, 12vw, 65px);
    line-height: 1;
  }
  .about-story__heading p {
    font-size: 17px;
    line-height: 1.6;
  }
  .about-story__item {
    grid-template-columns: 35px minmax(0, 1fr);
    gap: 15px;
    padding: 28px 0;
  }
  .about-story__item h3 {
    margin-bottom: 12px;
    font-size: 27px;
  }
  .about-story__item p {
    font-size: 16px;
    line-height: 1.6;
  }
  /* QUOTE */
  .about-quote {
    padding: 110px 20px;
  }
  .about-quote blockquote {
    margin: 40px 0 35px;
    font-size: clamp(40px, 11vw, 62px);
    line-height: 1.03;
  }
  .about-quote p {
    font-size: 17px;
    line-height: 1.6;
  }
  /* FOCUS */
  .about-focus {
    padding: 100px 20px;
  }
  .about-focus__grid {
    grid-template-columns: 1fr;
    margin-top: 60px;
  }
  .about-focus__grid article {
    padding: 30px;
  }
  .about-focus__grid article > span {
    margin-bottom: 45px;
  }
  .about-focus__grid h3 {
    font-size: 29px;
  }
  .about-focus__grid p {
    font-size: 16px;
  }
  /* PRINCIPLE */
  .about-principle {
    display: block;
    padding: 100px 20px;
  }
  .about-principle__left {
    margin-bottom: 50px;
  }
  .about-principle h2 {
    margin-bottom: 45px;
    font-size: clamp(42px, 11vw, 64px);
    line-height: 1.01;
  }
  .about-principle p {
    font-size: 17px;
    line-height: 1.6;
  }
  /* NUMBERS */
  .about-numbers {
    display: block;
    padding: 80px 20px;
  }
  .about-number,
  .about-number:first-child {
    padding: 35px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }
  .about-number:last-child {
    border-bottom: 0;
  }
  .about-number strong {
    margin-bottom: 18px;
    font-size: 76px;
  }
  /* BOOKS */
  .about-books {
    padding: 100px 20px;
  }
  .about-books__heading {
    display: block;
    margin-top: 60px;
  }
  .about-books h2 {
    margin-bottom: 45px;
    font-size: clamp(42px, 11vw, 64px);
    line-height: 1.02;
  }
  /* FINAL */
  .about-final {
    padding: 120px 20px;
  }
  .about-final h2 {
    margin: 45px 0 35px;
    font-size: clamp(42px, 11vw, 64px);
    line-height: 1.02;
  }
  .about-final p {
    font-size: 17px;
    line-height: 1.6;
  }
}
/* =========================================================
   VERY SMALL PHONES
   ========================================================= */
@media (max-width: 380px) {
  .about-hero h1 {
    font-size: 49px;
  }
  .about-hero__photo {
    height: 470px;
  }
  .about-intro h2,
  .about-story__heading h2,
  .about-quote blockquote,
  .about-principle h2,
  .about-books h2,
  .about-final h2 {
    font-size: 40px;
  }
  .about-focus__grid article {
    padding: 25px;
  }
  .about-number strong {
    font-size: 68px;
  }
}
/* =========================================================
   REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  .about-page *,
  .about-page *::before,
  .about-page *::after {
    scroll-behavior: auto !important;
  }
  .about-hero__photo img,
  .about-image__photo img,
  .about-final__button {
    transition: none;
  }
}
/* =========================================================
   СОТРУДНИЧЕСТВО / КОНТАКТЫ
   АДАПТИВНАЯ ВЕРСИЯ
   ========================================================= */
.contact-page {
  --contact-bg: #f5f3ee;
  --contact-text: #171714;
  --contact-muted: #77756d;
  --contact-light: #99978e;
  --contact-line: #dedbd3;
  --contact-accent: #eed073;
  --contact-dark-bg: #ebe8e0;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  background: var(--contact-bg);
  color: var(--contact-text);
  font-family: Georgia, "Times New Roman", Times, serif;
  overflow: hidden;
}

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

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

.contact-page a {
  color: inherit;
  text-decoration: none;
}

.contact-page button,
.contact-page input,
.contact-page textarea {
  font: inherit;
}

/* =========================================================
   ОБЩИЕ ОГРАНИЧЕНИЯ
   ========================================================= */
.contact-page h1,
.contact-page h2,
.contact-page h3,
.contact-page p {
  margin-top: 0;
}

.contact-page p {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.contact-label,
.contact-main__label,
.contact-form-section__label {
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--contact-muted);
}

/* =========================================================
   HERO
   ========================================================= */
.contact-hero {
  position: relative;
  width: 100%;
  min-height: min(100vh, 850px);
  padding: clamp(100px, 12vw, 160px) clamp(24px, 8vw, 120px) 120px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--contact-line);
}

.contact-hero__content {
  width: 100%;
  max-width: 1100px;
}

.contact-hero__content .contact-label {
  margin-bottom: clamp(30px, 4vw, 48px);
}

.contact-hero h1 {
  margin: 0;
  font-size: clamp(64px, 10vw, 150px);
  line-height: 0.88;
  font-weight: 400;
  letter-spacing: -0.055em;
  overflow-wrap: normal;
}

.contact-hero h1 em {
  font-style: italic;
  font-weight: 400;
}

.contact-hero p {
  width: 100%;
  max-width: 560px;
  margin: clamp(35px, 5vw, 55px) 0 0;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
  color: var(--contact-muted);
}

/* =========================================================
   SCROLL
   ========================================================= */
.contact-hero__scroll {
  position: absolute;
  left: clamp(24px, 8vw, 120px);
  bottom: 35px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-hero__scroll span {
  position: relative;
  width: 1px;
  height: 42px;
  background: var(--contact-text);
}

.contact-hero__scroll span::after {
  content: "";
  position: absolute;
  left: -4px;
  bottom: 0;
  width: 9px;
  height: 9px;
  border-right: 1px solid var(--contact-text);
  border-bottom: 1px solid var(--contact-text);
  transform: rotate(45deg);
}

.contact-hero__scroll small {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--contact-muted);
}

/* =========================================================
   CONTACT MAIN
   ========================================================= */
.contact-main {
  width: 100%;
  padding: clamp(80px, 10vw, 150px) clamp(24px, 8vw, 120px) clamp(90px, 11vw, 160px);
}

.contact-main__label {
  margin-bottom: clamp(55px, 7vw, 95px);
}

.contact-main__content {
  width: 100%;
  max-width: 1450px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(60px, 9vw, 150px);
  margin: 0 auto;
}

/* =========================================================
   CONTACT INFO
   ========================================================= */
.contact-info {
  min-width: 0;
}

.contact-info h2 {
  margin: 0;
  font-size: clamp(52px, 6vw, 92px);
  line-height: 0.94;
  font-weight: 400;
  letter-spacing: -0.05em;
}

.contact-info h2 em {
  font-style: italic;
}

.contact-info__text {
  width: 100%;
  max-width: 520px;
  margin: clamp(30px, 4vw, 45px) 0 clamp(50px, 6vw, 75px);
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.65;
  color: var(--contact-muted);
}

/* =========================================================
   CONTACT LIST
   ========================================================= */
.contact-list {
  width: 100%;
  border-top: 1px solid var(--contact-line);
}

.contact-item {
  width: 100%;
  min-height: 78px;
  display: grid;
  grid-template-columns: minmax(100px, 140px) minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  padding: 8px 0;
  border-bottom: 1px solid var(--contact-line);
  transition: background-color 0.25s ease, padding 0.25s ease;
}

.contact-item:hover {
  padding-left: 12px;
  background: rgba(255, 255, 255, 0.3);
}

.contact-item__label {
  min-width: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--contact-light);
}

.contact-item__value {
  min-width: 0;
  font-size: clamp(15px, 1.5vw, 18px);
  overflow-wrap: anywhere;
}

.contact-item__arrow {
  display: inline-block;
  margin-left: 7px;
  font-size: 16px;
  transition: transform 0.25s ease;
}

.contact-item:hover .contact-item__arrow {
  transform: translate(4px, -4px);
}

/* =========================================================
   PARTNERS
   ========================================================= */
.contact-partners {
  width: 100%;
  min-width: 0;
  padding-top: 5px;
}

.contact-partners .contact-label {
  margin-bottom: clamp(30px, 4vw, 48px);
}

.contact-partners h3 {
  margin: 0;
  font-size: clamp(40px, 4.2vw, 66px);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -0.045em;
}

.contact-partners h3 em {
  font-style: italic;
}

.contact-partners p {
  width: 100%;
  max-width: 470px;
  margin: clamp(28px, 4vw, 42px) 0 0;
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.65;
  color: var(--contact-muted);
}

/* =========================================================
   FORM SECTION
   ========================================================= */
.contact-form-section {
  width: 100%;
  padding: clamp(80px, 10vw, 150px) clamp(24px, 8vw, 120px) clamp(90px, 11vw, 165px);
  background: var(--contact-dark-bg);
}

.contact-form-section__label {
  margin-bottom: clamp(55px, 7vw, 95px);
}

.contact-form-section__heading {
  width: 100%;
  max-width: 1450px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  margin: 0 auto clamp(60px, 7vw, 95px);
}

.contact-form-section__heading h2 {
  flex: 1 1 auto;
  margin: 0;
  max-width: 950px;
  font-size: clamp(48px, 6vw, 92px);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -0.05em;
}

.contact-form-section__heading h2 em {
  font-style: italic;
}

.contact-form-section__heading p {
  flex: 0 1 270px;
  margin: 0 0 5px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--contact-muted);
}

/* =========================================================
   FORM
   ========================================================= */
.contact-form {
  width: 100%;
  max-width: 1100px;
  margin: 0;
}

.contact-form__row {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(30px, 5vw, 65px);
  margin-bottom: clamp(35px, 4vw, 52px);
}

.contact-field {
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.contact-field label {
  margin-bottom: 14px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--contact-muted);
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 14px 0 17px;
  border: 0;
  border-bottom: 1px solid #bbb8af;
  outline: none;
  border-radius: 0;
  background: transparent;
  color: var(--contact-text);
  font-size: 18px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  box-shadow: none;
  transition: border-color 0.25s ease;
}

.contact-field input::-moz-placeholder, .contact-field textarea::-moz-placeholder {
  color: #aaa79f;
  opacity: 1;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #aaa79f;
  opacity: 1;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: var(--contact-text);
  box-shadow: none;
}

.contact-field textarea {
  min-height: 150px;
  line-height: 1.5;
  resize: vertical;
}

.contact-field--message {
  width: 100%;
  margin-top: 10px;
}

/* =========================================================
   FORM BOTTOM
   ========================================================= */
.contact-form__bottom {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: clamp(45px, 6vw, 70px);
}

.contact-form__bottom p {
  flex: 1 1 auto;
  max-width: 440px;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 11px;
  line-height: 1.5;
  color: var(--contact-light);
}

.contact-form__button {
  flex: 0 0 auto;
  display: inline-flex;
  border-radius: 50px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 56px;
  min-width: 240px;
  padding: 17px 27px;
  border: 1px solid var(--contact-text);
  background: var(--contact-text);
  color: var(--contact-bg);
  cursor: pointer;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.contact-form__button span {
  font-size: 17px;
  transition: transform 0.25s ease;
}

.contact-form__button:hover {
  background: transparent;
  color: var(--contact-text);
}

.contact-form__button:hover span {
  transform: translate(4px, -4px);
}

/* =========================================================
   FINAL
   ========================================================= */
.contact-final {
  width: 100%;
  padding: clamp(90px, 12vw, 170px) clamp(24px, 8vw, 120px);
  background: var(--contact-bg);
}

.contact-final__inner {
  width: 100%;
  max-width: 1100px;
}

.contact-final .contact-label {
  margin-bottom: clamp(35px, 5vw, 55px);
}

.contact-final h2 {
  margin: 0;
  font-size: clamp(55px, 8vw, 120px);
  line-height: 0.9;
  font-weight: 400;
  letter-spacing: -0.055em;
}

.contact-final h2 em {
  font-style: italic;
}

.contact-final__button {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: clamp(40px, 5vw, 65px);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--contact-text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-final__button span {
  transition: transform 0.25s ease;
}

.contact-final__button:hover span {
  transform: translate(4px, -4px);
}

/* =========================================================
   1200 PX
   ========================================================= */
@media (max-width: 1200px) {
  .contact-main__content {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.8fr);
    gap: 70px;
  }
  .contact-form-section__heading {
    gap: 40px;
  }
}
/* =========================================================
   1000 PX
   ========================================================= */
@media (max-width: 1000px) {
  .contact-hero {
    min-height: 680px;
    padding: 120px 6vw 100px;
  }
  .contact-hero__scroll {
    left: 6vw;
  }
  .contact-main,
  .contact-form-section,
  .contact-final {
    padding-left: 6vw;
    padding-right: 6vw;
  }
  .contact-main__content {
    grid-template-columns: 1fr;
    gap: 100px;
  }
  .contact-partners {
    max-width: 700px;
  }
  .contact-form-section__heading {
    display: block;
    margin-bottom: 75px;
  }
  .contact-form-section__heading p {
    max-width: 400px;
    margin-top: 30px;
  }
  .contact-form {
    max-width: 900px;
  }
}
/* =========================================================
   768 PX
   ========================================================= */
@media (max-width: 768px) {
  .contact-hero {
    min-height: 650px;
    padding: 100px 32px 90px;
    align-items: flex-start;
  }
  .contact-hero__content {
    padding-top: 35px;
  }
  .contact-hero h1 {
    font-size: clamp(58px, 13vw, 95px);
    line-height: 0.9;
  }
  .contact-hero p {
    max-width: 500px;
    font-size: 17px;
  }
  .contact-hero__scroll {
    left: 32px;
  }
  .contact-main {
    padding: 85px 32px 100px;
  }
  .contact-main__content {
    gap: 85px;
  }
  .contact-info h2 {
    font-size: clamp(50px, 11vw, 75px);
  }
  .contact-item {
    grid-template-columns: 110px minmax(0, 1fr);
    min-height: 72px;
    gap: 15px;
  }
  .contact-form-section {
    padding: 85px 32px 100px;
  }
  .contact-form-section__heading h2 {
    font-size: clamp(48px, 10vw, 75px);
  }
  .contact-form__row {
    gap: 40px;
  }
  .contact-final {
    padding: 100px 32px;
  }
  .contact-final h2 {
    font-size: clamp(55px, 12vw, 90px);
  }
}
/* =========================================================
   600 PX
   ========================================================= */
@media (max-width: 600px) {
  .contact-hero {
    min-height: 620px;
    padding: 90px 24px 85px;
  }
  .contact-hero__content {
    padding-top: 30px;
  }
  .contact-hero__content .contact-label {
    margin-bottom: 30px;
  }
  .contact-hero h1 {
    font-size: clamp(54px, 16vw, 82px);
    letter-spacing: -0.06em;
  }
  .contact-hero p {
    margin-top: 32px;
    font-size: 16px;
    line-height: 1.55;
  }
  .contact-hero__scroll {
    left: 24px;
    bottom: 28px;
  }
  .contact-main {
    padding: 75px 24px 90px;
  }
  .contact-main__label {
    margin-bottom: 55px;
  }
  .contact-main__content {
    gap: 75px;
  }
  .contact-info h2 {
    font-size: 52px;
  }
  .contact-info__text {
    margin: 30px 0 50px;
    font-size: 16px;
  }
  .contact-item {
    grid-template-columns: 1fr;
    gap: 5px;
    min-height: auto;
    padding: 17px 0;
  }
  .contact-item:hover {
    padding-left: 6px;
  }
  .contact-item__label {
    font-size: 9px;
  }
  .contact-item__value {
    font-size: 16px;
  }
  .contact-partners h3 {
    font-size: 45px;
  }
  .contact-partners p {
    font-size: 16px;
  }
  .contact-form-section {
    padding: 75px 24px 90px;
  }
  .contact-form-section__label {
    margin-bottom: 55px;
  }
  .contact-form-section__heading {
    margin-bottom: 60px;
  }
  .contact-form-section__heading h2 {
    font-size: 48px;
  }
  .contact-form-section__heading p {
    margin-top: 28px;
    font-size: 16px;
  }
  .contact-form__row {
    grid-template-columns: 1fr;
    gap: 38px;
    margin-bottom: 38px;
  }
  .contact-field--message {
    margin-top: 0;
  }
  .contact-field input,
  .contact-field textarea {
    font-size: 16px;
  }
  .contact-field textarea {
    min-height: 140px;
  }
  .contact-form__bottom {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
    margin-top: 45px;
  }
  .contact-form__bottom p {
    max-width: 100%;
    font-size: 10px;
  }
  .contact-form__button {
    width: 100%;
    min-width: 0;
    min-height: 58px;
  }
  .contact-final {
    padding: 85px 24px 100px;
  }
  .contact-final h2 {
    font-size: 55px;
  }
  .contact-final__button {
    margin-top: 45px;
    font-size: 11px;
  }
}
/* =========================================================
   420 PX
   ========================================================= */
@media (max-width: 420px) {
  .contact-hero {
    min-height: auto;
    padding: 80px 20px 80px;
  }
  .contact-hero h1 {
    font-size: 33px;
  }
  .contact-hero p {
    font-size: 15px;
  }
  .contact-hero__scroll {
    left: 20px;
  }
  .contact-main {
    padding: 65px 20px 80px;
  }
  .contact-main__content {
    gap: 65px;
  }
  .contact-info h2 {
    font-size: 48px;
  }
  .contact-info__text {
    font-size: 15px;
  }
  .contact-partners h3 {
    font-size: 41px;
  }
  .contact-form-section {
    padding: 65px 20px 80px;
  }
  .contact-form-section__heading h2 {
    font-size: 43px;
  }
  .contact-field input,
  .contact-field textarea {
    font-size: 15px;
  }
  .contact-form__button {
    padding: 0;
  }
  .contact-final {
    padding: 75px 20px 90px;
  }
  .contact-final h2 {
    font-size: 49px;
  }
}
/* =========================================================
   360 PX
   ========================================================= */
@media (max-width: 360px) {
  .contact-hero h1 {
    font-size: 49px;
  }
  .contact-info h2 {
    font-size: 44px;
  }
  .contact-partners h3 {
    font-size: 37px;
  }
  .contact-form-section__heading h2 {
    font-size: 39px;
  }
  .contact-final h2 {
    font-size: 44px;
  }
  .contact-form__button {
    padding-left: 15px;
    padding-right: 15px;
    font-size: 10px;
  }
}
/* =========================================================
   LANDSCAPE MOBILE
   ========================================================= */
@media (max-height: 550px) and (orientation: landscape) {
  .contact-hero {
    min-height: 100vh;
    padding-top: 70px;
    padding-bottom: 80px;
  }
  .contact-hero h1 {
    font-size: clamp(48px, 9vw, 75px);
  }
  .contact-hero p {
    margin-top: 25px;
  }
  .contact-hero__scroll {
    bottom: 20px;
  }
}
/* =========================================================
   REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  .contact-page *,
  .contact-page *::before,
  .contact-page *::after {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }
}/*# sourceMappingURL=style.css.map */