/* ======================================================
   CONTAINER — общий контейнер для всех секций
====================================================== */
.container{
    width:100%;
    max-width:1700px;
    margin:0 auto;
    padding:0 42px;
}



/* ======================================================
   HEADER — шапка сайта (прозрачная с размытием)
====================================================== */
.site-header{
    background:rgba(255,255,255,.45); /* белый фон с прозрачностью 45% */
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
}

/* Кнопка «Записаться» в шапке */
.btn-header{
    height:50px;
    padding:0 34px;
    border-radius:10px;
    background:#8E9872;
    color:#fff;
    font-size:17px;
    font-weight:500;
    box-shadow:none;
    text-decoration:none;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
    opacity:.80;            /* прозрачность текста */
    text-shadow:0 1px 4px rgba(0,0,0,.12); /* тень текста */
}

.btn-header:hover{
    background:#7D8764;
    color:#fff;
}


/* ======================================================
   BUTTONS — глобальные стили кнопок (основная и светлая)
====================================================== */
.btn{
    height:60px;            /* высота кнопки — 60 пикселей */
    padding:20px 40px;      /* отступы внутри кнопки — 20px сверху/снизу, 40px слева/справа */
    border-radius:10px;     /* скругление углов — 10 пикселей */
    background:#8E9872;     /* цвет фона кнопки — зеленоватый */
    color:#fff;             /* цвет текста — белый */
    font-size:17px;         /* размер шрифта текста — 17 пикселей */
    font-weight:500;        /* жирность шрифта — средняя (500 из 900) */
    box-shadow:none;        /* тень кнопки — отключена */
    white-space:nowrap;     /* запрет переноса текста — текст всегда в одну строку */
    opacity:.80;            /* прозрачность кнопки */
    text-shadow:0 1px 4px rgba(0,0,0,.12); /* тень текста */
}

.btn:hover{
    background:#7D8764;
    transform:none;
}

/* Светлая кнопка (полупрозрачный фон) */
.btn-light{
    background:rgba(255,255,255,.55);
    backdrop-filter:blur(10px);
    border:1px solid rgba(166,140,109,.35);
    color:#6d5a48;
    box-shadow:none;
}

.btn-light:hover{
    background:rgba(255,255,255,.8);
}


/* ======================================================
   UTILITY — вспомогательные классы
====================================================== */
.underline{
    display:inline;
    text-decoration:underline;
    text-decoration-thickness:2px;
    text-underline-offset:4px;
}


/* ======================================================
   HERO — первый экран сайта (фон, заголовок, кнопки)
====================================================== */
.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    padding:120px 0 80px;
    background:url("../img/hero2.jpg") center/cover no-repeat;
}

/* Скрытое фото (если есть в HTML) */
.hero-image{
    display:none;
}

/* Сетка Hero — две колонки */
.hero-grid{
    min-height:calc(100vh - 90px);
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
}

/* Контентный блок Hero (текст и кнопки) */
.hero-content{
    position:relative;
    z-index:2;
    max-width:520px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    min-height:100vh;
    padding-left:0;
}

/* Сдвиг текста вниз на десктопе */
@media(min-width:993px){
    .hero-content{
        margin-top:-90px;
    }
}

/* Бейдж «Практикующий психолог» */
.hero-label{
    display:inline-flex;
    align-items:center;
    padding:14px 26px;
    background:rgba(255,255,255,.55);
    backdrop-filter:blur(12px);
    border-radius:40px;
    font-size:14px;
    letter-spacing:.08em;
    text-transform:uppercase;
    font-weight:600;
    color:#8F7A63;
    margin-bottom:40px;
}

/* Главный заголовок «Ирина Позднякова» */
.hero h1{
    font-family:"Cormorant Garamond",serif;
    font-size:130px;
    font-weight:500;
    line-height:.85;
    letter-spacing:-2px;
    color:#634B3D;
    margin-bottom:45px;
    opacity:.90;                  /* слегка прозрачный */
    text-shadow:0 2px 8px rgba(0,0,0,.30); /* тень для читаемости */
}

/* Описание под заголовком */
.hero-text{
    font-size:22px;
    line-height:1.5;
    color:#705B4C;
    opacity:.75;                  /* слегка прозрачный */
    text-shadow:0 2px 8px rgba(0,0,0,.30); /* тень для читаемости */
    margin-bottom:50px;
}

/* Группа кнопок в Hero */
.hero-buttons{
    display:flex;
    gap:18px;
}

.hero-buttons a{
    display:flex;
    align-items:center;
    justify-content:center;
}

/* Фото автора */
.hero-photo{
    width:100%;
    border-radius:36px;
    display:block;
    box-shadow:0 35px 70px rgba(0,0,0,.12);
    transition:.4s;
}

.hero-photo:hover{
    transform:translateY(-8px);
}

/* HERO — мобильная версия (до 992px) */
@media(max-width:992px){
    .hero{
        padding:100px 0 50px;
        min-height:auto;
        overflow:hidden;
    }
    .hero-grid{
        grid-template-columns:1fr;
        min-height:auto;
    }
    .hero-content{
        order:2;
        margin-top:0;
        padding-left:0;
        padding-right:0;
        min-height:auto;
        max-width:100%;
        width:100%;
    }
    .hero h1{
        font-size:43px;         /* размер заголовка */
        line-height:1.1;        /* межстрочный интервал */
        margin-top:55px;        /* сдвиг вниз */
        margin-bottom:30px;     /* отступ снизу от заголовка */
        opacity:.90;                  /* слегка прозрачный */
        text-shadow:0 6px 12px rgba(0,0,0,.50); /* тень для читаемости */
    }
    .hero-text{
        font-size:14px;         /* размер текста */
        line-height:1.8;        /* расстояние между строками */
        margin-top:60px;        /* сдвиг вниз */
        margin-bottom:50px;     /* расстояние до кнопок */
        margin-right:10px;      /* уменьшает доступную ширину */
        opacity:.95;                  /* слегка прозрачный */
        text-shadow:0 6px 12px rgba(0,0,0,.80); /* тень для читаемости */
    }
    .hero-buttons{
        justify-content:flex-start;
        flex-wrap:wrap;
        gap:12px;
    }
    .hero-buttons a{
        min-width:auto;
        padding:12px 24px;
        width:100%;
        text-align:center;
        font-size:16px;
        height:auto;
    }
}

/* HERO — маленькие экраны (до 768px) */
@media(max-width:768px){
    .hero{
        padding:120px 0 80px;
    }

    .hero h1{
        font-size:43px;         /* размер заголовка */
        line-height:1.1;        /* межстрочный интервал */
        margin-top:80px;        /* сдвиг вниз */
        margin-bottom:30px;     /* отступ снизу от заголовка */
        opacity:.90;                  /* слегка прозрачный */
        text-shadow:0 6px 12px rgba(0,0,0,.50); /* тень для читаемости */
    }
    .mobile-break{
        display:inline;         /* показать принудительный перенос строки */
    }
    .hero-text{
        font-size:13px;         /* размер текста */
        line-height:1.7;        /* расстояние между строками */
        margin-top:60px;        /* сдвиг вниз */
        margin-bottom:20px;     /* расстояние до кнопок */
        margin-right:0;         /* уменьшает доступную ширину */
        opacity:.95;                  /* слегка прозрачный */
        text-shadow:0 6px 12px rgba(0,0,0,.80); /* тень для читаемости */
        background:rgba(255,248,240,.55);
        backdrop-filter:blur(4px);
        padding:20px;
        border-radius:20px;
    }
}

/* ======================================================
   ABOUT — секция «Обо мне»
====================================================== */

.about{
    padding:130px 0;

    /* Светлый кремовый базовый тон */
    background-color:#fdf1e2;

    /* Эффект мягкой штукатурки */
    background-image:
        linear-gradient(180deg, rgba(255,255,255,.30), rgba(242,228,206,.14)),
        radial-gradient(circle at 18% 22%, rgba(255,255,255,.22) 0, rgba(255,255,255,0) 34%),
        radial-gradient(circle at 78% 30%, rgba(236,214,184,.14) 0, rgba(236,214,184,0) 30%),
        radial-gradient(circle at 52% 78%, rgba(229,205,176,.10) 0, rgba(229,205,176,0) 28%),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.1'/%3E%3C/svg%3E");

    background-repeat:repeat;
    background-size:auto;
}

.about-grid{
    display:grid;
    grid-template-columns:520px 1fr;
    gap:90px;
    align-items:center;
}

/* Блок с изображением */
.about-image{
    position:relative;
}

.about-image img{
    width:100%;
    display:block;
    border-radius:36px;
    box-shadow:0 35px 70px rgba(0,0,0,.12);
    transition:.4s;
}

.about-image img:hover{
    transform:translateY(-8px);
}

/* Универсальный бейдж-подпись секции */
.section-label{
    display:inline-flex;
    align-items:center;
    padding:10px 20px;
    background:#efe6da;
    border-radius:40px;
    font-size:15px;
    color:#9b8265;
    margin-bottom:25px;
}

.about h2{
    font-size:54px;
    line-height:1.15;
    color:#2d2d2d;
    margin-bottom:30px;
}

.about p{
    font-size:22px;
    line-height:1.9;
    color:#666;
    margin-bottom:24px;
}

/* Список преимуществ */
.about-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin:45px 0;
}

.about-item{
    padding:18px 22px;
    border-radius:18px;
    background:#ffffff; /* Сделали белым для контраста со штукатуркой */
    border:1px solid #f0e6d7;
    transition:.3s;
}

.about-item:hover{
    transform:translateY(-4px);
    background:#f7f2ea;
}

/* Блок статистики (цифры + подписи) */
.about-stats{
    display:flex;
    gap:22px;
    flex-wrap:wrap;
    margin-top:45px;
}

.stat{
    flex:1;
    min-width:150px;
    padding:28px;
    background:#ffffff; /* Сделали белым для контраста со штукатуркой */
    border-radius:24px;
    text-align:center;
}

.number{
    display:block;
    font-size:44px;
    font-weight:700;
    color:#6E7F5D;
}

.text{
    display:block;
    margin-top:12px;
    font-size:15px;
    color:#666;
}

/* ABOUT — мобильная версия */
@media(max-width:992px){
    .about{
        padding:90px 0;
    }
    .about-grid{
        grid-template-columns:1fr;
        gap:55px;
    }
    .about-image{
        max-width:500px;
        margin:auto;
    }
    .about h2{
        font-size:40px;
    }
    .about-list{
        grid-template-columns:1fr;
    }
    .about-stats{
        justify-content:center;
    }
}

/* ======================================================
   SERVICES — секция «Услуги» (карточки с фоном)
====================================================== */
.services{
    padding:140px 0;
    background:#faf8f4;
    overflow:hidden;            /* обрезает декоративные картинки */
}

/* Общий заголовок секции */
.section-title{
    font-size:56px;
    text-align:center;
    margin-bottom:22px;
}

/* Описание секции */
.section-description{
    max-width:820px;
    margin:0 auto 80px;
    text-align:center;
    color:#666;
    font-size:20px;
    line-height:1.8;
}

/* Сетка карточек услуг — 2 колонки */
.services-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:48px;
    align-items:stretch;
}

/* Карточка услуги */
.service-card{
    position:relative;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    padding:32px;
    min-height:330px;
    border-radius:34px;
    background:linear-gradient(180deg,#FAFBF8 0%,#F3F6F0 100%);
    border:1px solid rgba(212,193,165,.35);
    box-shadow:
        0 20px 45px rgba(139,117,88,.08),
        inset 0 1px 0 rgba(255,255,255,.7);
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 35px 70px rgba(139,117,88,.12);
}

/* Световое пятно на карточке */
.service-card::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    border-radius:50%;
    right:-180px;
    top:-180px;
    background:radial-gradient(
        circle,
        rgba(255,255,255,.95),
        rgba(255,255,255,0)
    );
}

/* Заголовок карточки */
.service-card h3{
    position:relative;
    z-index:2;
    width:72%;
    font-size:29px;
    line-height:1.2;
    white-space:nowrap;
    color:#2f2f2f;
    margin:0 0 14px;
}

/* Описание карточки */
.service-card p{
    position:relative;
    z-index:2;
    width:58%;
    font-size:16px;
    line-height:1.5;
    color:#666;
}

.service-card strong{
    color:#3c3c3c;
}

/* Кнопка «Записаться» на карточке услуги */
.service-link{
    position:relative;
    z-index:2;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:max-content;
    margin-top:22px;
    padding:14px 28px;
    border-radius:10px;
    background:#6E7F5D;
    color:#fff;
    text-decoration:none;
    font-size:17px;
    font-weight:600;
    transition:.3s;
    box-shadow:0 10px 25px rgba(183,156,119,.30);
}

.service-link:hover{
    background:#5B6A4D;
    transform:translateY(-3px);
    box-shadow:0 12px 28px rgba(110,127,93,.30);
}

.service-link span{
    margin-left:10px;
    transition:.3s;
}

.service-link:hover span{
    transform:translateX(5px);
}

/* Декоративные PNG-иллюстрации на карточках */
.service-bg{
    position:absolute;
    right:-20px;
    bottom:-15px;
    width:340px;
    opacity:.85;
    pointer-events:none;
    z-index:1;
}

/* Индивидуальные размеры для каждой карточки */
.consultation{
    width:560px;
    right:-120px;
    bottom:-280px;
}

.brainstorm{
    width:600px;
    right:-10px;
    bottom:-10px;
}

.group{
    width:560px;
    right:-120px;
    bottom:-130px;
    opacity:.80;
}

.practicum{
    width:400px;
    right:-40px;
    bottom:-20px;
}

/* SERVICES — мобильная версия */
@media(max-width:992px){
    .services{
        padding:70px 0;
    }
    .services .container{
        max-width:100%;
        padding:0 10px;
    }
    .services-grid{
        grid-template-columns:1fr;
        gap:22px;
    }
    .service-card{
        padding:26px;
        min-height:auto;
        border-radius:26px;
    }
    .service-card h3{
        width:100%;
        font-size:26px;
        line-height:1.25;
        letter-spacing:-0.2px;
        margin-bottom:14px;
    }
    .service-card p{
        width:90%;
        padding-right:120px;
        font-size:14px;
        line-height:1.2;
        margin-bottom:15px;
    }
    .service-link{
        width:100%;
        justify-content:center;
        padding:12px 0;
        font-size:15px;
        border-radius:10px;
    }
    .service-bg{
        width:180px;
        right:-20px;
        bottom:-30px;
        opacity:.85;
    }
    /* Декоративные PNG — мобильная версия */
    .consultation{
        width:340px;
        right:-80px;
        bottom:-100px;
    }
    .brainstorm{
        width:500px;
        right:-40px;
        bottom:60px;
    }
    .group{
        width:300px;
        right:-115px;
        bottom:-10px;
    }
    .practicum{
        width:250px;
        right:-40px;
        bottom:60px;
    }
}


/* ======================================================
   PROCESS — секция «Как проходит работа» (4 шага)
====================================================== */
.process{
    padding:130px 0;
    background:#fff;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:32px;
    margin-top:70px;
}

.process-card{
    background:#faf7f2;
    border-radius:30px;
    padding:40px 35px;
    transition:.35s;
    border:1px solid rgba(205,188,161,.25);
}

.process-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 55px rgba(0,0,0,.08);
}

/* Кружок с номером шага */
.step{
    width:64px;
    height:64px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    background:#6E7F5D;
    color:#fff;
    font-size:24px;
    font-weight:700;
    margin-bottom:25px;
}

.process-card h3{
    font-size:30px;
    margin-bottom:18px;
}

.process-card p{
    color:#666;
    line-height:1.8;
}

/* PROCESS — мобильная версия (до 992px — 2 колонки) */
@media(max-width:992px){
    .process-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

/* PROCESS — маленькие экраны (до 680px — 1 колонка) */
@media(max-width:680px){
    .process-grid{
        grid-template-columns:1fr;
    }
}


/* ======================================================
   REVIEWS — слайдер отзывов на главной
====================================================== */
.reviews{
    padding:130px 0;
    background:#faf8f4;
}

.reviews-slider{
    max-width:950px;
    margin:70px auto;
}

/* Карточка отзыва (скрыта по умолчанию) */
.review-card{
    display:none;
    padding:55px;
    border-radius:34px;
    background:white;
    box-shadow:0 20px 55px rgba(0,0,0,.06);
    text-align:center;
}

/* Активная карточка отзыва */
.review-card.active{
    display:block;
    animation:fade .5s;
}

.review-card p{
    font-size:22px;
    line-height:1.9;
    color:#555;
}

.review-card h4{
    margin-top:35px;
    color:#b38b5d;
    font-size:20px;
}

/* Навигация слайдера (стрелки) */
.slider-nav{
    display:flex;
    justify-content:center;
    gap:18px;
}

.slider-nav button{
    width:58px;
    height:58px;
    border:none;
    border-radius:50%;
    background:#6E7F5D;
    color:white;
    font-size:22px;
    cursor:pointer;
    transition:.3s;
}

.slider-nav button:hover{
    background:#5B6A4D;
}

/* REVIEWS — мобильная версия */
@media(max-width:992px){
    .review-card{
        padding:30px;
    }
}


/* ======================================================
   CONTACTS — секция контактов и форма обратной связи
====================================================== */
.contacts{
    padding:130px 0;
    background:#fff;
}

.contacts-grid{
    display:grid;
    grid-template-columns:360px 640px;
    justify-content:center;
    gap:70px;
    align-items:start;
}

.contact-info{
    font-size:18px;
    line-height:2;
}

.contact-info a{
    color:#9a7854;
    text-decoration:none;
}

/* Форма обратной связи */
.contact-form form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-form input,
.contact-form textarea,
.contact-form select{
    width:100%;
    padding:18px 24px;
    border:none;
    border-radius:22px;
    background:#f8f4ed;
    font-size:17px;
    color:#444;
    font-family:inherit;
    box-shadow:
        inset 0 2px 6px rgba(0,0,0,.03),
        0 8px 20px rgba(0,0,0,.03);
    transition:.3s;
}

.contact-form textarea{
    min-height:180px;
    resize:vertical;
}

/* Фокус на полях формы */
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus{
    outline:none;
    background:#fff;
    box-shadow:
        0 0 0 4px rgba(107,123,78,.15),
        0 15px 30px rgba(0,0,0,.06);
}

/* Кнопка отправки формы */
.contact-form .btn{
    width:100%;
    height:62px;
    border-radius:10px;
    font-size:18px;
    font-weight:600;
    background:#6B7B4E;
    color:#fff;
    border:none;
    cursor:pointer;
    transition:.3s;
}

.contact-form .btn:hover{
    background:#596842;
    transform:translateY(-2px);
}

/* CONTACTS — мобильная версия */
@media(max-width:992px){
    .contacts-grid{
        grid-template-columns:1fr;
        gap:40px;
    }
    .contacts{
        padding:90px 0;
    }
}


/* ======================================================
   GLOBAL MOBILE — общие правила для мобильной версии
====================================================== */
@media(max-width:992px){
    .hero-grid,
    .about-grid,
    .contacts-grid{
        grid-template-columns:1fr;
    }
}

/* Маленькие экраны — дополнительные стили */
@media(max-width:768px){
    .process-grid{
        grid-template-columns:1fr;
    }
    .section-title{
        font-size:34px;
    }
}


/* ======================================================
   FOOTER — подвал сайта
====================================================== */
.site-footer{
    background:#f7f2ea;
    padding:90px 0 35px;
    border-top:1px solid rgba(0,0,0,.05);
}

.footer-grid{
    display:grid;
    grid-template-columns:1.6fr 1fr 1fr;
    gap:60px;
    align-items:start;
}

.footer-logo a{
    font-size:34px;
    font-family:"Cormorant Garamond",serif;
    text-decoration:none;
    color:#333;
}

.footer-about p{
    margin-top:20px;
    color:#666;
    line-height:1.9;
    max-width:420px;
}

.site-footer h3{
    margin-bottom:25px;
    font-size:24px;
}

.footer-navigation{
    list-style:none;
    margin:0;
    padding:0;
}

.footer-navigation li{
    margin-bottom:14px;
}

.footer-navigation a,
.footer-contacts a{
    text-decoration:none;
    color:#666;
    transition:.3s;
}

.footer-navigation a:hover,
.footer-contacts a:hover{
    color:#6E7F5D;
}

/* Нижняя строка (копирайт) */
.footer-bottom{
    margin-top:60px;
    padding-top:25px;
    border-top:1px solid rgba(0,0,0,.06);
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:#888;
}

/* FOOTER — мобильная версия */
@media(max-width:900px){
    .footer-grid{
        grid-template-columns:1fr;
        gap:40px;
    }
}


/* ======================================================
   INNER PAGES — общие стили внутренних страниц
====================================================== */
.inner-page{
    padding:160px 0 100px;
}

.inner-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.inner-image img{
    width:100%;
    border-radius:30px;
    box-shadow:0 25px 60px rgba(0,0,0,.1);
}

.inner-content h1{
    font-size:56px;
    line-height:1.2;
    margin-bottom:30px;
}

.inner-content h2{
    font-size:36px;
    margin-top:40px;
}

.inner-content p{
    font-size:18px;
    color:#666;
    line-height:1.8;
}

/* Список с галочками */
.check-list{
    list-style:none;
    padding:0;
    margin-top:30px;
}

.check-list li{
    padding:15px 20px;
    margin-bottom:12px;
    background:#faf8f4;
    border-radius:15px;
}

.check-list li:before{
    content:"✓";
    color:#b89b74;
    font-weight:bold;
    margin-right:12px;
}

/* INNER PAGES — мобильная версия */
@media(max-width:900px){
    .inner-grid{
        grid-template-columns:1fr;
    }
    .inner-content h1{
        font-size:40px;
    }
}


/* ======================================================
   SERVICES PAGE — страница «Услуги»
====================================================== */
.page-title{
    font-size:56px;
    margin:20px 0;
}

.page-intro{
    max-width:800px;
    font-size:20px;
    line-height:1.7;
    color:#666;
    margin-bottom:60px;
}

.services-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

.service-box{
    background:#faf8f4;
    padding:45px;
    border-radius:30px;
    transition:.3s;
}

.service-box:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.service-box h2{
    font-size:32px;
    margin-bottom:20px;
}

.service-box p{
    font-size:18px;
    line-height:1.7;
    color:#666;
}

.service-box ul{
    padding-left:20px;
    margin:30px 0;
}

.service-box li{
    margin-bottom:12px;
    color:#555;
}

/* SERVICES PAGE — мобильная версия */
@media(max-width:900px){
    .services-list{
        grid-template-columns:1fr;
    }
    .page-title{
        font-size:40px;
    }
}


/* ======================================================
   REVIEWS PAGE — страница отзывов
====================================================== */
.reviews-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
    margin-top:60px;
}

.review-box{
    background:#faf8f4;
    padding:40px;
    border-radius:28px;
}

/* Рейтинг звёздами */
.stars{
    color:#b89b74;
    font-size:24px;
    letter-spacing:4px;
    margin-bottom:25px;
}

.review-box p{
    font-size:18px;
    line-height:1.8;
    color:#555;
}

.review-box h3{
    margin-top:25px;
    font-size:20px;
}

/* Блок призыва оставить отзыв */
.review-action{
    margin-top:80px;
    padding:60px;
    background:#efe6da;
    border-radius:30px;
    text-align:center;
}

.review-action h2{
    font-size:38px;
    margin-bottom:20px;
}

.review-action p{
    font-size:18px;
    color:#666;
    margin-bottom:30px;
}

/* REVIEWS PAGE — мобильная версия */
@media(max-width:900px){
    .reviews-grid{
        grid-template-columns:1fr;
    }
    .review-action{
        padding:35px;
    }
    .review-action h2{
        font-size:30px;
    }
}


/* ======================================================
   BLOG — список статей и одиночный пост
====================================================== */
.blog-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:38px;
    margin-top:65px;
}

.blog-card{
    overflow:hidden;
    border-radius:32px;
    background:white;
    transition:.35s;
    box-shadow:0 18px 45px rgba(0,0,0,.05);
}

.blog-card:hover{
    transform:translateY(-10px);
    box-shadow:0 35px 70px rgba(0,0,0,.08);
}

.blog-card img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.blog-card-content{
    padding:35px;
}

.blog-date{
    color:#999;
    font-size:14px;
    margin-bottom:18px;
}

.blog-card h2{
    font-size:30px;
    line-height:1.3;
}

.blog-card h2 a{
    color:#333;
    text-decoration:none;
}

.blog-card p{
    margin:20px 0;
    color:#666;
    line-height:1.8;
}

/* Ссылка «Читать далее» */
.read-more{
    color:#6E7F5D;
    font-weight:600;
    text-decoration:none;
}

/* Одиночный пост блога */
.post-title{
    font-size:56px;
    line-height:1.2;
    max-width:900px;
}

.post-meta{
    color:#999;
    margin:20px 0 40px;
}

.post-image img{
    width:100%;
    max-height:600px;
    object-fit:cover;
    border-radius:30px;
}

.post-content{
    max-width:850px;
    font-size:19px;
    line-height:1.9;
    margin-top:50px;
}

/* BLOG — мобильная версия */
@media(max-width:992px){
    .blog-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:700px){
    .blog-grid{
        grid-template-columns:1fr;
    }
    .post-title{
        font-size:38px;
    }
}


/* ======================================================
   МОБИЛЬНОЕ МЕНЮ — прозрачный фон и размытие
====================================================== */
@media(max-width:768px){

    .mobile-menu{
        background:rgba(255,255,255,.2); /* Прозрачность регулируется последним числом 2, 4, 55, 8 */
        backdrop-filter:blur(14px);
        -webkit-backdrop-filter:blur(14px);
        box-shadow:0 12px 35px rgba(0,0,0,.12);
         /* ДОБАВИТЬ ЭТО: */
        width: 230px;   /* Жесткая ширина меню (сделай меньше, если нужно) */
        max-width: 85%; /* Защита: чтобы на совсем крошечных экранах меню не вылезло за рамки */
    }

    .mobile-menu-list{
        background:transparent;
    }

    .mobile-menu-list li,
    .mobile-menu-list a{
        background:transparent;
    }
}