@import url('/src/assets/style/animate.min.css');

@font-face {
  font-family: 'Montserrat';
  src: url('/src/assets/fonts/Montserrat-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900; 
  font-style: normal;
  font-stretch: 0% 100%;
}

@font-face {
  font-family: 'TenorSans';
  src: url('/src/assets/fonts/TenorSans-Regular.ttf') format('truetype');
  font-weight: 100 900; 
  font-style: normal;
  font-stretch: 0% 100%;
}


:root {
    --color-bg: #D4D4D4;
    --color-text: #222222;
    --color-red: #a81d1d;
    --color-white: #ffffff;
    --font-main: 'Montserrat', sans-serif;
    --container-width: 1200px;
    --mobile-padding: 15px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    width: 100%;
    overflow-x: hidden; 
    background-color: var(--color-bg);
    font-family: var(--font-main);
    color: var(--color-text);
    line-height: 1.5;
    font-size: 16px; 
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--mobile-padding);
}

.exclusions {
   margin-top: 40px; 
}

.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh; 
    padding: 0;
    margin-bottom: 40px;
}

.hero__image-wrapper {
    position: relative;
    width: 100%; 
    max-width: none;
    height: 100vh;
    object-fit: cover;
    overflow: hidden;
    margin: 0;
    z-index: 1;
    border-radius: 0; 
    box-shadow: none;
}

.hero__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.hero__text-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 40px 15px; 
    margin-top: 0;
}

.hero__text-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(15px);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 40%, black 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 40%, black 100%);   
}

.hero__title {
    color: var(--color-white);
    font-family: TenorSans, sans-serif; 
    font-weight: 300;
    line-height: 0.95;
    margin-bottom: 15px;
    text-align: center;
    font-size: clamp(4rem, 12vw, 5rem); 
}

.hero__title-row {
    display: block;
}

.hero__subtitle {
    color: #cacaca; 
    line-height: 1.3;
    font-weight: 700;
    text-align: center;
    font-size: clamp(1rem, 4vw, 1.4rem);
    padding: 0 10px;
}

.about__image-wrapper {
    float: left;
      width: 40%;
      height: 20%;
      display: block;
      margin-top: 2%;
      margin-right: 3%;
      border-radius: 25px;
}

.about__photo {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 25px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* .about__container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
} */

.section__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    gap: 15px;
}

.section__title {
    hyphens: auto;
    color: var(--color-red); 
    font-weight: 800;
    line-height: 1.1;
    font-size: clamp(1.8rem, 5vw, 2.5rem);
}

.section__title--large { 
    font-size: clamp(2rem, 6vw, 4rem);
    margin-bottom: 20px;
}

.section__title--center { 
    text-align: center;
    display: block;
    width: 100%;
}

.section__content { 
    padding: 0;
}

.text { 
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.4;
    font-size: clamp(1.1rem, 2vw, 1.87rem);
    text-align: left;
}

.text--bold { 
    font-weight: 700;
}

.text-custom-height { 
    line-height: 1.5;
}

.types__list { 
    list-style: none;
    border-top: none;
}

.types__item { 
    padding: 20px 10px;
    border-bottom: none;
    text-align: center;
    font-weight: 600;
    font-size: clamp(1.2rem, 3vw, 1.7rem);
}

.list {
    list-style-position: inside;
    padding-left: 10px;
}
.list__item {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 10px;
    font-size: clamp(1.2rem, 3vw, 1.7rem);
    text-align: left;
}

.list__item::marker { 
    color: var(--color-text);
}

.button {
    display: inline-block;
    background-color: var(--color-red);
    color: var(--color-white);
    text-decoration: none;
    font-weight: 800;
    padding: 20px 30px;
    border-radius: 15px;
    text-align: center;
    transition: background 0.3s ease;
    font-size: clamp(1.2rem, 2.5vw, 1.88rem);
    width: 100%;
    margin-bottom: 30px;
    box-sizing: border-box;
}

.button:hover { 
    background-color: #8a1616;
}

.footer { 
    text-align: left; 
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 600;
    color: #555;
    margin-top: auto;
    padding-top: 20px;
}

.footer__info p { 
    margin-bottom: 6px;
    word-break: break-word;
}

.footer__legal {
    margin-top: 30px;
    padding: 20px 15px;
    background-color: #888888;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
    min-height: 70px;
}

.footer__link { 
    color: var(--color-bg);
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    display: block;
}
.footer__separator { 
    color: var(--color-bg);
    margin: 0 5px;
    display: none;
}

/* ---Accordion Styles--- */
.accordion-header { 
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.accordion-content { 
    max-height: 0; 
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

.section__line {
    position: relative;
    display: block;
    width: 45px;  
    height: 45px;
    background-color: transparent;
    display: inline-block; flex-shrink: 0;
}

.section__line::before,
.section__line::after {
    content: '';
    position: absolute;
    background-color: var(--color-red);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
}

.section__line::before {
    width: 100%;
    height: 5px;
}

.section__line::after {
    width: 5px;
    height: 100%;
}

.accordion-header.active .section__line::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.animate-on-scroll { 
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease-out, transform .6s ease-out;
}

.animate-on-scroll.show { 
    animation: fadeInUp 1s ease-out forwards;
}

/* --- */


/* --- Off blocks --- */

.footer__info, .footer__legal {
    display: none;
}

/* =========================================
   НОВЫЙ ПЕРВЫЙ ЭКРАН — NADIN
   ========================================= */

.hero {
    position: relative;
    display: grid;
    grid-template-columns: 52% 48%;
    align-items: stretch;
    min-height: 720px;
    padding: 0;
    margin-bottom: 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 45%, rgba(255, 255, 255, 0.85), transparent 38%),
        linear-gradient(110deg, #f7f1ea 0%, #eee4dc 58%, #191716 58%, #0d0d0d 100%);
}

/* Фотография справа */
.hero__image-wrapper {
    position: relative;
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    height: 720px;
    max-width: none;
    margin: 0;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
    z-index: 1;
}

.hero__photo {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center 24%;
    filter: saturate(0.88) contrast(1.03);
}

/* Мягкое затемнение у границы фото */
.hero__image-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(17, 16, 15, 0.28) 0%,
        rgba(17, 16, 15, 0.04) 24%,
        rgba(17, 16, 15, 0) 58%
    );
    pointer-events: none;
}

/* Текст слева */
.hero__text-wrapper {
    position: relative;
    grid-column: 1;
    grid-row: 1;
    bottom: auto;
    left: auto;
    width: auto;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 110px 7vw 80px 10vw;
    margin: 0;
    color: #171514;
}

/* Убираем старое тёмное затемнение */
.hero__text-wrapper::before {
    display: none;
}

/* Небольшая подпись над заголовком */
.hero__label {
    margin: 0 0 20px;
    color: #a85e5d;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

/* Главный заголовок */
.hero__title {
    max-width: 600px;
    margin: 0 0 28px;
    color: #171514;
    font-family: "TenorSans", serif;
    font-size: clamp(44px, 4.1vw, 66px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.025em;
    text-align: left;
}

.hero__title-row {
    display: block;
}

/* Короткая пудровая линия */
.hero__title::after {
    content: "";
    display: block;
    width: 52px;
    height: 2px;
    margin-top: 26px;
    background: #ad6260;
}

/* Описание */
.hero__subtitle {
    max-width: 590px;
    margin: 0;
    padding: 0;
    color: #373230;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.75;
    text-align: left;
}

/* Кнопка записи — появится после изменения HTML */
.hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    margin-top: 30px;
    padding: 0 30px;
    border: 1px solid #ad6260;
    border-radius: 2px;
    background: #ad6260;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.hero__button:hover {
    background: #171514;
    border-color: #171514;
    transform: translateY(-2px);
}

/* Параметры консультации — появятся после изменения HTML */
.hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 28px;
    margin-top: 26px;
    color: #3e3936;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    line-height: 1.4;
}

.hero__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Одна калла слева — появится после загрузки изображения */
.hero__calla {
    position: absolute;
    left: 1.6vw;
    bottom: 22px;
    width: clamp(76px, 8vw, 126px);
    max-height: 340px;
    object-fit: contain;
    object-position: bottom;
    opacity: 0.96;
    z-index: 2;
    pointer-events: none;
}

/* Планшеты */
@media (max-width: 1000px) {
    .hero {
        grid-template-columns: 56% 44%;
        min-height: 650px;
    }

    .hero__image-wrapper {
        height: 650px;
    }

    .hero__text-wrapper {
        padding: 90px 5vw 70px 8vw;
    }

    .hero__title {
        font-size: clamp(39px, 5vw, 54px);
    }

    .hero__calla {
        opacity: 0.65;
    }
}

/* Телефон */
@media (max-width: 720px) {
    .hero {
        display: flex;
        flex-direction: column;
        min-height: auto;
        background: #f4ece5;
    }

    .hero__image-wrapper {
        order: 1;
        width: 100%;
        height: 52vh;
        min-height: 390px;
    }

    .hero__photo {
        object-position: center 20%;
    }

    .hero__image-wrapper::after {
        background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0) 55%,
            rgba(0, 0, 0, 0.28) 100%
        );
    }

    .hero__text-wrapper {
        order: 2;
        width: 100%;
        padding: 44px 24px 50px;
    }

    .hero__label {
        margin-bottom: 14px;
        font-size: 10px;
    }

    .hero__title {
        max-width: 100%;
        margin-bottom: 22px;
        font-size: clamp(34px, 10vw, 46px);
        line-height: 1.08;
    }

    .hero__title::after {
        margin-top: 20px;
    }

    .hero__subtitle {
        max-width: 100%;
        font-size: 14px;
        line-height: 1.65;
    }

    .hero__button {
        width: 100%;
        margin-top: 26px;
        padding: 0 18px;
        text-align: center;
    }

    .hero__meta {
        gap: 13px 18px;
        margin-top: 22px;
        font-size: 11px;
    }

    .hero__calla {
        display: none;
    }
}/* ===== НОВЫЙ ДИЗАЙН: ВОЗМОЖНО, ВЫ УЗНАЕТЕ СЕБЯ ===== */

.recognition {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    box-sizing: border-box;
    background: #11100f;
    color: #f4eee8;
    padding: 46px 40px 52px;
}

.recognition__inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.recognition__title {
    position: relative;
    margin: 0 0 40px;
    text-align: center;
    font-family: 'TenorSans', serif;
    font-size: 25px;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: #f4eee8;
}

.recognition__title::before,
.recognition__title::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 27%;
    height: 1px;
    background: rgba(181, 112, 105, 0.55);
}

.recognition__title::before {
    left: 0;
}

.recognition__title::after {
    right: 0;
}

.recognition__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: stretch;
}

.recognition__item {
    min-height: 82px;
    padding: 4px 25px;
    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    line-height: 1.65;
    font-weight: 400;
    color: rgba(244, 238, 232, 0.88);
}

.recognition__item + .recognition__item {
    border-left: 1px solid rgba(181, 112, 105, 0.28);
}


/* ===== НОВЫЙ БЛОК ОБО МНЕ ===== */

/* Блок «Обо мне» на всю ширину окна */
.about-new {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.about-new__content {
    width: 100%;
    max-width: none;
    min-height: 490px;
    margin: 0;

    display: grid;
    grid-template-columns: 42% 58%;
    align-items: stretch;
}

.about-new__text {
    padding: 68px 70px 62px 45px;
}

.about-new__label {
    position: relative;
    margin: 0 0 40px;

    font-family: 'TenorSans', serif;
    font-size: 30px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.about-new__label::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -16px;
    width: 38px;
    height: 2px;
    background: #a85151;
}

.about-new__title {
    margin: 0 0 25px;
    font-family: 'TenorSans', serif;
    font-size: 22px;
    font-weight: 400;
}

.about-new__text p:not(.about-new__label):not(.about-new__signature) {
    max-width: 520px;
    margin: 0 0 20px;

    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.8;
    font-weight: 400;
}

.about-new__signature {
    margin-top: 32px;
    font-family: 'TenorSans', serif;
    font-size: 22px;
    font-style: italic;
    color: #a85151;
}

.about-new__visual {
    position: relative;
    min-height: 540px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(255,255,255,0.08),
            transparent 42%
        ),
        #151311;
}

/* Пока здесь создаём композиционное место под каллу.
   Само изображение каллы подключим отдельно. */

.about-new__calla-placeholder {
    position: absolute;
    width: 2px;
    height: 68%;
    left: 52%;
    bottom: 0;
    background: rgba(211, 202, 189, 0.38);
}


/* ===== АДАПТАЦИЯ НОВЫХ БЛОКОВ ===== */

@media (max-width: 900px) {

    .recognition {
        padding: 40px 25px;
    }

    .recognition__title::before,
    .recognition__title::after {
        width: 18%;
    }

    .recognition__grid {
        grid-template-columns: 1fr;
    }

    .recognition__item {
        min-height: auto;
        padding: 18px 10px;
    }

    .recognition__item + .recognition__item {
        border-left: 0;
        border-top: 1px solid rgba(181, 112, 105, 0.25);
    }

    .about-new__content {
        grid-template-columns: 1fr;
    }

    .about-new__text {
        padding: 55px 30px;
    }

    .about-new__visual {
        min-height: 420px;
    }
}
/* Финальный блок «Обо мне»: фото слева, текст справа */

.about-new__content {
    width: 100%;
    max-width: none;
    min-height: 490px;
    margin: 0;

    display: grid;
    grid-template-columns: 42% 58%;
    align-items: stretch;
}

.about-new__photo {
    width: 100%;
    height: 490px;
    overflow: hidden;
    background: #151311;
}

.about-new__photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
}

.about-new__text {
    width: 100%;
    min-height: 490px;
    padding: 55px 45px 45px;
    background: #eee7df;
}

@media (max-width: 700px) {
    .about-new__content {
        grid-template-columns: 1fr;
    }

    .about-new__photo,
    .about-new__text {
        min-height: auto;
    }

    .about-new__photo {
        height: 440px;
    }

    .about-new__text {
        padding: 40px 25px;
    }
}
/* ОБО МНЕ — на всю ширину страницы */
.about-new {
    width: 100% !important;
    max-width: none !important;
}

.about-new__content {
    width: 100% !important;
    max-width: none !important;
    grid-template-columns: 42% 58% !important;
}
/* ===== С ЧЕМ Я РАБОТАЮ ===== */

.work-with {
    width: 100%;
    background: #f4eee8;
    color: #171514;
    padding: 0 0 90px;
}

.work-with__intro {
    display: grid;
    grid-template-columns: 44% 56%;
    min-height: 560px;
}

.work-with__content {
    padding: 90px 70px 80px max(70px, calc((100vw - 1200px) / 2));
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.work-with__label {
    margin: 0 0 18px;
    color: #b57069;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.work-with__title {
    margin: 0;
    font-family: "Tenor Sans", serif;
    font-size: clamp(38px, 4vw, 62px);
    line-height: 1.08;
    font-weight: 400;
}

.work-with__line {
    width: 42px;
    height: 1px;
    margin: 24px 0 28px;
    background: #b57069;
}

.work-with__description {
    max-width: 520px;
    margin: 0;
    color: #4c4743;
    font-size: 16px;
    line-height: 1.75;
}

.work-with__photo {
    min-height: 560px;
    overflow: hidden;
    background: #171514;
}

.work-with__photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center 38%;
}

.work-with__list {
    width: min(1200px, calc(100% - 80px));
    margin: 90px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.work-with__item {
    min-height: 220px;
    padding: 34px 32px;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(181, 112, 105, 0.16);
    box-shadow: 0 12px 36px rgba(33, 25, 21, 0.045);
}

.work-with__item h3 {
    margin: 0 0 16px;
    font-family: "Tenor Sans", serif;
    font-size: 21px;
    line-height: 1.3;
    font-weight: 400;
}

.work-with__item p {
    margin: 0;
    color: #57504b;
    font-size: 15px;
    line-height: 1.7;
}

@media (max-width: 620px) {
    .work-with__intro {
        grid-template-columns: 1fr;
    }

    .work-with__content {
        padding: 65px 30px;
    }

    .work-with__photo {
        min-height: 520px;
    }

    .work-with__list {
        width: calc(100% - 50px);
        grid-template-columns: repeat(2, 1fr);
        margin-top: 50px;
    }
}

@media (max-width: 600px) {
    .work-with {
        padding-bottom: 60px;
    }

    .work-with__content {
        padding: 55px 24px;
    }

    .work-with__title {
        font-size: 38px;
    }

    .work-with__description {
        font-size: 16px;
    }

    .work-with__photo {
        min-height: 430px;
    }

    .work-with__list {
        width: calc(100% - 36px);
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 36px;
    }

    .work-with__item {
        min-height: auto;
        padding: 28px 24px;
    }
}/* Заголовок "Виды терапевтических сессий" */
.types__title {
    color: #4c4743;
    font-family: "TenorSans", serif;
    font-size: clamp(38px, 4vw, 56px);
    font-weight: 400;
    line-height: 1.08;
    text-align: left;
}/* Список "Виды терапевтических сессий" */
.types .types__list {
    list-style: none;
    margin: 32px 0 0;
    padding: 0;
    width: 100%;
}

.types .types__item {
    padding: 18px 0;
    margin: 0;
    border-bottom: 1px solid rgba(76, 71, 67, 0.20);

    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
    color: #4c4743;
    text-align: left;
}

.types .types__item:first-child {
    border-top: 1px solid rgba(76, 71, 67, 0.20);
}/* Финальная настройка блока терапевтических сессий */

.types .types__list {
    max-width: 850px;
    margin: 34px 0 0;
}

.types .types__item {
    padding: 16px 0;
    font-size: 15px;
    line-height: 1.55;
    color: #57504b;
    border-bottom: 1px solid rgba(76, 71, 67, 0.12);
}

.types .types__item:first-child {
    border-top: 1px solid rgba(76, 71, 67, 0.12);
}/* Коррекция читаемости списка */
.types .types__list {
    margin-top: 26px;
}

.types .types__item {
    font-size: 16px;
    line-height: 1.6;
    padding: 17px 0;
    color: #4c4743;
}/* Блок "Не работаю" */
.exclusions {
    padding-top: 40px;
    padding-bottom: 20px;
}

.exclusions .section__title {
    color: #4c4743;
    font-family: "TenorSans", serif;
    font-size: clamp(34px, 3.5vw, 48px);
    font-weight: 400;
    line-height: 1.1;
    text-align: left;
    margin-bottom: 28px;
}

.exclusions .list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 850px;
}

.exclusions .list__item {
    padding: 15px 0;
    border-bottom: 1px solid rgba(76, 71, 67, 0.12);
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #4c4743;
}

.exclusions .list__item:first-child {
    border-top: 1px solid rgba(76, 71, 67, 0.12);
}/* ===== IMPORTANT SECTION ===== */

.important {
    padding-top: 20px;
    padding-bottom: 70px;
}

.important .section__title {
    font-family: 'TenorSans', serif;
    font-size: clamp(32px, 3vw, 46px);
    font-weight: 400;
    line-height: 1.15;
    color: #333333;
    text-align: left;
    margin-bottom: 28px;
}

.important .text {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: #555555;
    text-align: left;
}/* Продолжительность сессии и способ оплаты */

.session-duration,
.payment-info {
    padding-top: 24px;
    padding-bottom: 24px;
}

.session-duration .section__header,
.payment-info .section__header {
    display: block;
}

.session-duration .section__title,
.payment-info .section__title {
    margin: 0;
    font-family: "TenorSans", serif;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 400;
    line-height: 1.15;
    color: #4c4743;
    text-align: left;
}

.session-duration .section__line,
.payment-info .section__line {
    display: none;
}

.session-duration .section__content,
.payment-info .section__content {
    max-height: none;
    overflow: visible;
}

.session-duration .content-inner,
.payment-info .content-inner {
    padding-top: 18px;
}

.session-duration .text,
.payment-info .text {
    margin: 0;
    max-width: 850px;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: #4c4743;
    text-align: left;
}/* Отмена и перенос */

.cancellation-info {
    padding-top: 32px;
    padding-bottom: 32px;
}

.cancellation-info .section__header {
    display: block;
}

.cancellation-info .section__title {
    margin: 0;
    font-family: "TenorSans", serif;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 400;
    line-height: 1.15;
    color: #4c4743;
    text-align: left;
}

.cancellation-info .section__line {
    display: none;
}

.cancellation-info .section__content {
    max-height: none;
    overflow: visible;
}

.cancellation-info .content-inner {
    padding-top: 18px;
}

.cancellation-info .text {
    margin: 0;
    max-width: 850px;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: #4c4743;
    text-align: left;
}/* Контакты, конфиденциальность и образование */

.contacts-info,
.privacy-info,
.education-info {
    padding-top: 32px;
    padding-bottom: 32px;
}

.contacts-info .section__header,
.privacy-info .section__header,
.education-info .section__header {
    display: block;
}

.contacts-info .section__title,
.privacy-info .section__title,
.education-info .section__title {
    margin: 0;
    font-family: "TenorSans", serif;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 400;
    line-height: 1.15;
    color: #4c4743;
    text-align: left;
}

.contacts-info .section__line,
.privacy-info .section__line,
.education-info .section__line {
    display: none;
}

.contacts-info .section__content,
.privacy-info .section__content,
.education-info .section__content {
    max-height: none;
    overflow: visible;
}

.contacts-info .content-inner,
.privacy-info .content-inner,
.education-info .content-inner {
    padding-top: 18px;
}.education-info .content-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    align-items: start;
}

.contacts-info .text,
.privacy-info .text,
.education-info .text {
    margin: 0;
    max-width: 850px;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: #4c4743;
    text-align: left;
}/* ==================================================
   ПОДВАЛ САЙТА: РЕКВИЗИТЫ И ПРАВОВАЯ ИНФОРМАЦИЯ
   ================================================== */

.site-footer {
    width: 100%;
    margin: 0;
    padding: 90px max(30px, calc((100vw - 1200px) / 2)) 0;
    background: #171514;
    color: #f4eee8;
}

.site-footer__inner {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 90px;
    padding-bottom: 70px;
}

.site-footer__column {
    min-width: 0;
}

.site-footer__label {
    margin: 0 0 16px;
    color: #b57069;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.site-footer__title {
    margin: 0 0 38px;
    color: #f4eee8;
    font-family: "TenorSans", serif;
    font-size: clamp(32px, 3vw, 46px);
    font-weight: 400;
    line-height: 1.12;
}

.site-footer__requisites {
    margin: 0;
    padding: 0;
}

.site-footer__requisite {
    display: grid;
    grid-template-columns: minmax(145px, 0.8fr) minmax(0, 1.4fr);
    gap: 24px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(244, 238, 232, 0.12);
}

.site-footer__requisite:first-child {
    border-top: 1px solid rgba(244, 238, 232, 0.12);
}

.site-footer__requisite dt,
.site-footer__requisite dd {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    line-height: 1.6;
}

.site-footer__requisite dt {
    color: rgba(244, 238, 232, 0.58);
}

.site-footer__requisite dd {
    color: #f4eee8;
}

.site-footer__legal-nav {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(244, 238, 232, 0.12);
}

.site-footer__legal-link {
    position: relative;
    display: block;
    padding: 16px 34px 16px 0;
    border-bottom: 1px solid rgba(244, 238, 232, 0.12);
    color: #f4eee8;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
    text-decoration: none;
    transition:
        color 0.2s ease,
        padding-left 0.2s ease;
}

.site-footer__legal-link::after {
    content: "↗";
    position: absolute;
    top: 16px;
    right: 2px;
    color: #b57069;
    font-size: 16px;
}

.site-footer__legal-link:not(.is-placeholder):hover {
    padding-left: 8px;
    color: #d5aaa5;
}

.site-footer__legal-link.is-placeholder {
    cursor: default;
    pointer-events: none;
    color: rgba(244, 238, 232, 0.62);
}

.site-footer__legal-link.is-placeholder::after {
    content: "скоро";
    top: 18px;
    color: rgba(244, 238, 232, 0.36);
    font-family: "Montserrat", sans-serif;
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-footer__notice {
    max-width: 560px;
    margin: 26px 0 0;
    color: rgba(244, 238, 232, 0.52);
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    line-height: 1.7;
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 25px 0 28px;
    border-top: 1px solid rgba(244, 238, 232, 0.14);
}

.site-footer__bottom p {
    max-width: 620px;
    margin: 0;
    color: rgba(244, 238, 232, 0.48);
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    line-height: 1.6;
}

/* Планшеты */
@media (max-width: 900px) {
    .site-footer {
        padding-top: 70px;
    }

    .site-footer__inner {
        grid-template-columns: 1fr;
        gap: 65px;
    }
}

/* Телефоны */
@media (max-width: 600px) {
    .site-footer {
        padding: 60px 24px 0;
    }

    .site-footer__inner {
        gap: 55px;
        padding-bottom: 55px;
    }

    .site-footer__title {
        margin-bottom: 28px;
        font-size: 32px;
    }

    .site-footer__requisite {
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 14px 0;
    }

    .site-footer__requisite dt,
    .site-footer__requisite dd {
        font-size: 13px;
    }

    .site-footer__legal-link {
        padding-top: 15px;
        padding-bottom: 15px;
        padding-right: 48px;
        font-size: 13px;
    }

    .site-footer__bottom {
        flex-direction: column;
        gap: 12px;
    }
}/* ==================================================
   ПОЛНОЭКРАННЫЙ ПРОСМОТР ДИПЛОМОВ
   ================================================== */

.diploma-image {
    cursor: zoom-in;
}

.diploma-viewer {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 70px 90px;
    background: rgba(15, 14, 13, 0.94);
    backdrop-filter: blur(8px);
}

.diploma-viewer.is-open {
    display: flex;
}

.diploma-viewer__figure {
    width: 100%;
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.diploma-viewer__image {
    display: block;
    max-width: 100%;
    max-height: calc(100vh - 130px);
    width: auto;
    height: auto;
    object-fit: contain;
    background: #ffffff;
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.45);
    user-select: none;
}

.diploma-viewer__counter {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.75);
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    letter-spacing: 0.08em;
}

.diploma-viewer__close,
.diploma-viewer__arrow {
    position: absolute;
    z-index: 2;
    padding: 0;
    border: 0;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    font-family: Arial, sans-serif;
    line-height: 1;
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

.diploma-viewer__close:hover,
.diploma-viewer__arrow:hover {
    opacity: 0.7;
}

.diploma-viewer__close {
    top: 24px;
    right: 32px;
    width: 48px;
    height: 48px;
    font-size: 46px;
    font-weight: 200;
}

.diploma-viewer__arrow {
    top: 50%;
    width: 58px;
    height: 80px;
    font-size: 66px;
    font-weight: 200;
    transform: translateY(-50%);
}

.diploma-viewer__arrow--prev {
    left: 22px;
}

.diploma-viewer__arrow--next {
    right: 22px;
}

.viewer-open {
    overflow: hidden;
}

@media (max-width: 700px) {
    .diploma-viewer {
        padding: 65px 12px 60px;
    }

    .diploma-viewer__image {
        max-height: calc(100vh - 125px);
    }

    .diploma-viewer__close {
        top: 12px;
        right: 12px;
        width: 44px;
        height: 44px;
        font-size: 40px;
    }

    .diploma-viewer__arrow {
        top: auto;
        bottom: 10px;
        width: 54px;
        height: 48px;
        font-size: 48px;
        transform: none;
    }

    .diploma-viewer__arrow--prev {
        left: calc(50% - 75px);
    }

    .diploma-viewer__arrow--next {
        right: calc(50% - 75px);
    }

    .diploma-viewer__counter {
        margin-top: 10px;
    }
}/* ==================================================
   ФИНАЛЬНАЯ ДОВОДКА ПЕРВОГО ЭКРАНА
   ================================================== */

.hero__content {
    padding-top: 70px;
    padding-bottom: 58px;
}

.hero__title {
    max-width: 620px;
    margin-bottom: 28px;
    font-size: clamp(42px, 4.6vw, 68px);
    line-height: 1.08;
}

.hero__description {
    max-width: 560px;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.75;
}

.hero__button,
.hero .button {
    min-height: 52px;
    padding: 15px 26px;
    font-size: 14px;
}

.hero__meta {
    margin-top: 24px;
    gap: 18px;
    font-size: 12px;
    line-height: 1.5;
}

.recognition {
    padding-top: 54px;
}

.recognition__title {
    margin-bottom: 34px;
}

/* Планшет */
@media (max-width: 900px) {
    .hero__content {
        padding-top: 58px;
        padding-bottom: 50px;
    }

    .hero__title {
        font-size: clamp(38px, 6vw, 56px);
    }

    .hero__description {
        font-size: 15px;
    }
}

/* Телефон */
@media (max-width: 600px) {
    .hero__content {
        padding: 46px 24px 42px;
    }

    .hero__title {
        margin-bottom: 22px;
        font-size: 40px;
        line-height: 1.08;
    }

    .hero__description {
        margin-bottom: 24px;
        font-size: 15px;
        line-height: 1.65;
    }

    .hero__button,
    .hero .button {
        width: 100%;
        min-height: 50px;
    }

    .hero__meta {
        display: flex;
        flex-wrap: wrap;
        gap: 10px 16px;
        margin-top: 20px;
        font-size: 11px;
    }

    .recognition {
        padding-top: 44px;
    }

}
/* =========================================
   ВИДЫ ТЕРАПЕВТИЧЕСКИХ СЕССИЙ + ПАПОРОТНИК
   ========================================= */

.types--editorial {
    padding: clamp(58px, 6vw, 88px) 24px;
    background-color: #f3f1ec;
}

.types--editorial .types__layout {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
    gap: clamp(32px, 4vw, 56px);
    align-items: stretch;
}

.types--editorial .types__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.types--editorial .types__eyebrow {
    margin: 0 0 16px;
    color: #9b6f67;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.types--editorial .types__title {
    margin: 0;
    max-width: 760px;

    color: #2f332d;
    font-family: "TenorSans", serif;
    font-size: clamp(42px, 4.2vw, 66px);
    font-weight: 400;
    line-height: 1.08;
    text-align: left;
    word-break: normal;
    hyphens: none;
}

.types--editorial .types__line {
    display: block;
    width: 46px;
    height: 1px;
    margin: 28px 0 16px;
    background-color: #9b6f67;
}

.types--editorial .types__list {
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid rgba(47, 51, 45, 0.15);
}

.types--editorial .types__item {
    margin: 0;
    padding: 18px 0;

    color: #3e423c;
    border-bottom: 1px solid rgba(47, 51, 45, 0.15);

    font-size: clamp(15px, 1.08vw, 17px);
    font-weight: 400;
    line-height: 1.6;
    text-align: left;
}

.types--editorial .types__visual {
    min-height: 680px;
    overflow: hidden;
    background-color: #18231a;
}

.types--editorial .types__visual img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 680px;
    object-fit: cover;
    object-position: center;
}


/* Планшет */

@media (max-width: 900px) {
    .types--editorial {
        padding: 72px 24px;
    }

    .types--editorial .types__layout {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .types--editorial .types__visual {
        min-height: 0;
        aspect-ratio: 16 / 10;
    }

    .types--editorial .types__visual img {
        min-height: 0;
    }
}


/* Телефон */

@media (max-width: 600px) {
    .types--editorial {
        padding: 56px 20px;
    }

    .types--editorial .types__layout {
        gap: 34px;
    }

    .types--editorial .types__eyebrow {
        margin-bottom: 12px;
        font-size: 11px;
    }

    .types--editorial .types__title {
        font-size: 38px;
        line-height: 1.1;
    }

    .types--editorial .types__line {
        margin: 22px 0 10px;
    }

    .types--editorial .types__item {
        padding: 15px 0;
        font-size: 15px;
        line-height: 1.55;
    }

    .types--editorial .types__visual {
        aspect-ratio: 4 / 5;
    }
}/* =========================================
   НЕ РАБОТАЮ + ВАЖНО
   ========================================= */

.exclusions {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px, 24px, 20px;
    background-color: #f3f1ec;
}

.exclusions .section__title {
    margin: 0 0 28px;
    color: #2f332d;
    font-family: "TenorSans", serif;
    font-size: clamp(38px, 4vw, 58px);
    font-weight: 400;
    line-height: 1.1;
    text-align: left;
    text-transform: none;
}

.exclusions .list {
    max-width: 760px;
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid rgba(47, 51, 45, 0.15);
}

.exclusions .list__item {
    position: relative;
    margin: 0;
    padding: 18px 0;
    border-bottom: 1px solid rgba(47, 51, 45, 0.15);
    color: #3e423c;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
}

.exclusions .list__item::marker {
    content: "";
}


/* Блок «Важно» */

.important {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px clamp(72px, 8vw, 110px);
    background-color: #f3f1ec;
}

.important .section__title {
    margin: 0 0 28px;
    color: #2f332d;
    font-family: "TenorSans", serif;
    font-size: clamp(38px, 4vw, 58px);
    font-weight: 400;
    line-height: 1.1;
    text-align: left;
}

.important .section__content {
    max-width: 760px;
    margin: 0;
}

.important .text,
.important .text--bold {
    margin: 0;
    color: #4c4743;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
}


/* Телефон */

@media (max-width: 600px) {
    .exclusions {
        padding: 52px 20px 38px;
    }

    .important {
        padding: 38px 20px 64px;
    }

    .exclusions .section__title,
    .important .section__title {
        font-size: 38px;
    }

    .exclusions .list__item,
    .important .text,
    .important .text--bold {
        font-size: 15px;
    }
}
/* =========================================
   ПРАКТИЧЕСКАЯ ИНФОРМАЦИЯ — СЕТКА КАРТОЧЕК
   ========================================= */

.practical {
    padding: clamp(72px, 8vw, 110px) 24px;
    background-color: #f3f1ec;
}

.practical__inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.practical__eyebrow {
    margin: 0 0 14px;
    color: #9b6f67;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.practical__title {
    margin: 0;
    color: #2f332d;
    font-family: "TenorSans", serif;
    font-size: clamp(42px, 4vw, 60px);
    font-weight: 400;
    line-height: 1.08;
}

.practical__line {
    display: block;
    width: 46px;
    height: 1px;
    margin: 26px 0 44px;
    background-color: #9b6f67;
}

.practical__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.practical__card {
    min-height: 250px;
    padding: 30px 28px;
    background-color: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(47, 51, 45, 0.08);
}

.practical__card-title {
    margin: 0 0 18px;
    color: #2f332d;
    font-family: "TenorSans", serif;
    font-size: 23px;
    font-weight: 400;
    line-height: 1.2;
}

.practical__card-text {
    color: #4c4743;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.65;
}

.practical__card-text p {
    margin: 0 0 10px;
}

.practical__card-text p:last-child {
    margin-bottom: 0;
}


/* Планшет */

@media (max-width: 900px) {
    .practical__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .practical__card {
        min-height: 230px;
    }
}


/* Телефон */

@media (max-width: 600px) {
    .practical {
        padding: 56px 20px 64px;
    }

    .practical__title {
        font-size: 38px;
    }

    .practical__line {
        margin: 22px 0 32px;
    }

    .practical__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .practical__card {
        min-height: 0;
        padding: 24px 22px;
    }

    .practical__card-title {
        font-size: 22px;
    }

    .practical__card-text {
        font-size: 14px;
    }
}/* Финальная компактность блока */

.practical {
    padding-top: 64px;
    padding-bottom: 64px;
}

.practical__title {
    font-size: clamp(38px, 3.4vw, 52px);
}

.practical__line {
    margin: 20px 0 32px;
}

.practical__grid {
    gap: 14px;
}

.practical__card {
    min-height: 0;
    padding: 24px 24px 22px;
}

.practical__card-title {
    margin-bottom: 14px;
    font-size: 21px;
}

.practical__card-text {
    font-size: 13px;
    line-height: 1.55;
}

.practical__card-text p {
    margin-bottom: 8px;
}/* =========================================
   КОНТАКТНЫЙ CTA-БЛОК С ПОРТРЕТОМ
   ========================================= */

.contact-pause {
    padding: clamp(72px, 8vw, 110px) 24px;
    background-color: #f3f1ec;
}

.contact-pause__inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    align-items: stretch;
    gap: 0;
}

.contact-pause__content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: clamp(48px, 6vw, 82px);
    background-color: #f3f1ec;
}

.contact-pause__eyebrow {
    margin: 0 0 18px;
    color: #9b6f67;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-pause__title {
    margin: 0;
    max-width: 560px;

    color: #2f332d;
    font-family: "TenorSans", serif;
    font-size: clamp(34px, 3.6vw, 52px);
    font-weight: 400;
    line-height: 1.14;
}

.contact-pause__line {
    display: block;
    width: 46px;
    height: 1px;
    margin: 28px 0 20px;
    background-color: #9b6f67;
}

.contact-pause__note {
    margin: 0 0 30px;
    color: #9b6f67;
    font-family: "TenorSans", serif;
    font-size: 24px;
    font-style: italic;
    line-height: 1.2;
}

.contact-pause__button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    width: 100%;
    max-width: 390px;
    min-height: 58px;
    padding: 0 22px;

    background-color: #a85f57;
    color: #ffffff;

    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.02em;
    text-decoration: none;
    text-transform: uppercase;

    transition:
        background-color 0.25s ease,
        transform 0.25s ease;
}

.contact-pause__button:hover {
    background-color: #914f49;
    transform: translateY(-1px);
}

.contact-pause__button span {
    font-size: 22px;
    line-height: 1;
}

.contact-pause__links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 26px;
    margin-top: 24px;
}

.contact-pause__links a {
    position: relative;

    color: #4c4743;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    text-decoration: none;
}

.contact-pause__links a:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -14px;

    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: #9b6f67;

    transform: translateY(-50%);
}

.contact-pause__visual {
    min-height: 540px;
    overflow: hidden;
    background-color: #0e110e;
}

.contact-pause__visual img {
    width: 100%;
    height: 100%;
    min-height: 540px;
    object-fit: cover;
    object-position: 50% 42%;
    display: block;
}


/* Планшет */

@media (max-width: 900px) {
    .contact-pause__inner {
        grid-template-columns: 1fr 1fr;
    }

    .contact-pause__content {
        padding: 46px 36px;
    }

    .contact-pause__visual,
    .contact-pause__visual img {
        min-height: 540px;
    }

    .contact-pause__title {
        font-size: 36px;
    }
}


/* Телефон */

@media (max-width: 700px) {
    .contact-pause {
        padding: 56px 20px 64px;
    }

    .contact-pause__inner {
        display: flex;
        flex-direction: column-reverse;
    }

    .contact-pause__content {
        padding: 38px 24px 42px;
    }

    .contact-pause__visual,
    .contact-pause__visual img {
        min-height: 420px;
    }

    .contact-pause__visual img {
        object-position: 62% 38%;
    }

    .contact-pause__title {
        font-size: 34px;
    }

    .contact-pause__note {
        margin-bottom: 24px;
        font-size: 22px;
    }

    .contact-pause__button {
        max-width: none;
        min-height: 54px;
        font-size: 12px;
    }

    .contact-pause__links {
        gap: 10px 20px;
    }

    .contact-pause__links a {
        font-size: 12px;
    }

    .contact-pause__links a:not(:last-child)::after {
        right: -11px;
    }
}/* Фирменный знак папоротника над первым экраном */

.brand-symbol {
    width: 54px;
    height: 54px;
    margin: 0 0 16px;
    padding: 0;

    display: block;
}

.brand-symbol img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    opacity: 0.82;
}

@media (max-width: 700px) {
    .brand-symbol {
        width: 40px;
        height: 40px;
        margin-bottom: 14px;
    }
}

/* Исправление первого экрана на телефоне */

@media (max-width: 700px) {
    .hero {
        min-height: auto;
        display: flex;
        flex-direction: column;
    }

    .hero__image-wrapper {
        order: 1;
        width: 100%;
        height: auto;
    }

    .hero__text-wrapper {
        order: 2;
        width: 100%;
        padding: 34px 22px 42px;
        background-color: #f3f1ec;
    }
}

