/* =========================================================
   NEUROHYPNOS.COM
   ЕДИНЫЙ ЧИСТЫЙ STYLE.CSS
========================================================= */


/* =========================================================
   1. ОБЩИЕ НАСТРОЙКИ
========================================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    width:100%;
    overflow-x:hidden;
}

body{
    width:100%;
    min-height:100vh;
    overflow-x:hidden;

    font-family:'Lora', serif;
    font-size:20px;
    font-weight:400;
    line-height:1.8;

    color:#4A4038;

    background-color:#F8F2EC;
    background-image:url("images/background.png");
    background-repeat:repeat-y;
    background-position:top center;
    background-size:100% auto;
}

body::before{
    content:"";
    position:fixed;
    inset:0;

    background-image:url("images/dracaena.svg");
    background-repeat:no-repeat;
    background-position:center;
    background-size:cover;

    opacity:.06;

    pointer-events:none;
    z-index:-1;
}

img,
video{
    max-width:100%;
}

a{
    color:inherit;
}

p{
    margin:0 0 22px;
}

strong{
    font-weight:600;
}


/* =========================================================
   2. МЕНЮ — КОМПЬЮТЕР
========================================================= */

nav{
    width:100%;
    height:82px;

    display:flex;
    justify-content:center;
    align-items:flex-end;

    gap:10px;

    padding:20px 20px 0;

    position:relative;
}

nav::after{
    content:"";

    position:absolute;
    left:0;
    right:0;
    bottom:0;

    height:3px;

    background:#C7AD98;

    z-index:1;
}

nav a{
    position:relative;
    z-index:2;

    height:46px;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:0 22px;

    background:#5F9F9A;
    color:#ffffff;

    font-family:'Lora', serif;
    font-size:16px;
    font-weight:600;
    line-height:1.2;

    text-decoration:none;
    white-space:nowrap;

    border-radius:18px 18px 0 0;

    box-shadow:0 8px 20px rgba(95,159,154,.18);

    transition:.3s;
}

nav a:hover{
    color:#ffffff;
    transform:translateY(-3px);
    box-shadow:0 10px 24px rgba(95,159,154,.28);
}


/* =========================================================
   3. ЕДИНАЯ ТИПОГРАФИКА
========================================================= */

.text h1,
.about-left > h2:first-child,
.hypnosis-content > h1:first-child,
.reviews-page > h1:first-child,
.contact-intro > h1:first-child{
    font-family:'Lora', serif;
    font-size:52px;
    font-weight:600;
    line-height:1.2;

    color:#4A4038;
}

.text h2,
.about-left h2,
.certificates h2,
.hypnosis-content h2,
.reviews-page h2,
.contact-intro h2,
.page-content h2{
    font-family:'Lora', serif;
    font-size:38px;
    font-weight:500;
    line-height:1.3;

    color:#4A4038;

    letter-spacing:0;
    text-transform:none;
}

.text h3,
.about-left h3,
.hypnosis-content h3,
.reviews-page h3,
.contact-intro h3,
.page-content h3{
    font-family:'Lora', serif;
    font-size:28px;
    font-weight:500;
    line-height:1.35;

    color:#4A4038;

    margin:22px 0 18px;
}

.text p,
.about-left p,
.hypnosis-content p,
.reviews-page p,
.contact-intro p,
.page-content p,
.review-card p,
.leave-review p,
.video-name{
    font-family:'Lora', serif;
    font-size:20px;
    font-weight:400;
    line-height:1.8;

    color:#4A4038;
}


/* =========================================================
   4. КНОПКИ
========================================================= */

button{
    display:inline-block;

    padding:18px 42px;

    background:#5F9F9A;
    color:#ffffff;

    border:0;
    border-radius:50px;

    font-family:'Lora', serif;
    font-size:17px;
    font-weight:600;

    cursor:pointer;

    box-shadow:0 12px 30px rgba(95,159,154,.25);

    transition:.3s;
}

button:hover{
    background:#4C8883;
    transform:translateY(-2px);
}


/* =========================================================
   5. ГЛАВНАЯ СТРАНИЦА — КОМПЬЮТЕР
========================================================= */

.hero{
    width:96%;
    max-width:1500px;

    margin:0 auto;

    min-height:82vh;

    padding:60px 0 90px;

    display:flex;
    align-items:center;
    justify-content:center;

    gap:55px;
}

.photo{
    flex:0 1 470px;

    display:flex;
    justify-content:center;
}

.photo img{
    display:block;

    width:470px;
    max-width:100%;
    height:auto;

    border-radius:4px;

    filter:
        saturate(88%)
        brightness(103%)
        contrast(95%);

    box-shadow:
        0 10px 25px rgba(0,0,0,.15),
        0 25px 50px rgba(0,0,0,.08);
}

.text{
    flex:1 1 700px;
    min-width:0;
    max-width:900px;
}

.text h1{
    margin:0 0 12px;
}

.text h2{
    margin:0 0 22px;
}

.text h3{
    margin:22px 0 18px;
}

.text p{
    margin:0 0 22px;
}


/* =========================================================
   6. ОБО МНЕ — КОМПЬЮТЕР
========================================================= */

.about-page{
    width:100%;
    padding:60px 0 100px;
}

.about-layout{
    width:94%;
    max-width:1500px;

    margin:0 auto;

    display:grid;
    grid-template-columns:minmax(0, 1fr) 440px;

    gap:60px;
    align-items:start;
}

.about-left{
    min-width:0;
}

.about-left > h2:first-child{
    margin:0 0 28px;
}

.about-left p{
    margin:0 0 18px;
}

.education-title{
    margin-top:50px !important;
}

.about-video{
    width:440px;
    max-width:100%;

    justify-self:center;
}

.about-video video{
    display:block;

    width:100%;
    height:750px;

    object-fit:contain;
    object-position:center;

    background:#4A4038;

    border:5px solid #5F9F9A;
    border-radius:14px;

    box-shadow:0 10px 28px rgba(74,64,56,.16);
}


/* =========================================================
   7. СЕРТИФИКАТЫ
========================================================= */

.certificates{
    width:100%;

    margin:55px 0 0;
    padding:0 0 40px;

    text-align:left;
}

.certificates h2{
    margin:0 0 22px;
}

.certificates-grid{
    display:grid;
    grid-template-columns:repeat(4, minmax(0,1fr));

    gap:24px;
}

.certificate-placeholder{
    min-height:210px;

    padding:30px 24px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    text-align:center;

    font-family:'Lora', serif;
    font-size:20px;
    line-height:1.5;

    color:#6F5A49;

    background:rgba(248,242,236,.78);

    border:1px solid rgba(166,123,91,.28);

    box-shadow:0 10px 28px rgba(90,70,50,.08);
}

.certificate-placeholder span{
    display:block;

    margin-top:18px;

    font-size:14px;

    color:#9B7A60;
}

.certificates-link{
    display:inline-block;

    padding-bottom:5px;

    font-family:'Lora', serif;
    font-size:20px;
    font-weight:600;

    color:#5F9F9A;

    text-decoration:none;

    border-bottom:1px solid #5F9F9A;
}

.certificates-link:hover{
    color:#4C8883;
    border-color:#4C8883;
}


/* =========================================================
   8. ГИПНОТЕРАПИЯ — КОМПЬЮТЕР
========================================================= */

.hypnosis-page{
    width:calc(100% - 6cm);
    max-width:1500px;

    margin:0 auto;

    padding:60px 0 110px;
}

.hypnosis-content{
    width:100%;
}

.hypnosis-content > h1:first-child{
    text-align:center;
    margin:0 0 45px;
}

.hypnosis-content h2{
    margin:55px 0 22px;
}

.hypnosis-content h3{
    margin:32px 0 12px;
}

.hypnosis-content p{
    margin:0 0 22px;
}

.hypnosis-intro{
    max-width:900px;

    margin:0 auto 55px;

    text-align:center;

    font-size:22px !important;
}

.science-note{
    margin:38px 0;

    padding:30px 36px;

    background:rgba(248,242,236,.82);

    border-left:4px solid #C7AD98;

    box-shadow:0 8px 24px rgba(74,64,56,.07);
}

.science-note strong{
    display:block;

    margin-bottom:12px;

    font-family:'Lora', serif;
    font-size:25px;
    font-weight:600;
}

.science-note p{
    margin-bottom:0;
}

.hypnosis-list{
    margin:30px 0 35px;

    display:grid;
    grid-template-columns:1fr 1fr;

    gap:14px 35px;
}

.hypnosis-list p{
    margin:0;

    padding:15px 20px;

    background:rgba(248,242,236,.60);

    border-left:3px solid #5F9F9A;
}

.hypnosis-action{
    margin:70px 0 60px;

    padding:45px;

    text-align:center;

    background:rgba(248,242,236,.78);

    border:1px solid rgba(199,173,152,.45);
}

.hypnosis-action h2{
    margin-top:0;
}

.hypnosis-action p{
    max-width:700px;
    margin:0 auto 30px;
}

.hypnosis-button{
    display:inline-block;

    padding:20px 48px;

    background:#5F9F9A;
    color:#ffffff;

    font-family:'Lora', serif;
    font-size:19px;
    font-weight:600;

    text-decoration:none;

    border-radius:50px;

    box-shadow:0 8px 20px rgba(95,159,154,.22);

    transition:.3s;
}

.hypnosis-button:hover{
    background:#4C8883;
}

.hypnosis-sources{
    margin-top:70px;

    padding-top:35px;

    border-top:2px solid #C7AD98;
}

.hypnosis-sources h2{
    font-size:30px;
    margin-top:0;
}

.hypnosis-sources p{
    font-size:16px;
    line-height:1.7;

    margin-bottom:14px;
}

.source-links{
    margin-top:28px;

    display:flex;
    flex-direction:column;
    align-items:flex-start;

    gap:10px;
}

.source-links a{
    font-family:'Lora', serif;
    font-size:16px;

    color:#5F9F9A;

    text-decoration:none;

    border-bottom:1px solid rgba(95,159,154,.5);
}


/* =========================================================
   9. ОТЗЫВЫ — КОМПЬЮТЕР
========================================================= */

.reviews-page{
    width:90%;
    max-width:1200px;

    margin:0 auto;

    padding:60px 0 110px;
}

.reviews-page > h1:first-child{
    text-align:center;

    margin:0 0 45px;
}

.video-section{
    width:100%;

    padding:20px 0 60px;

    text-align:center;
}

.video-section h2{
    margin-bottom:35px;
}

.video-grid{
    width:100%;
    max-width:1150px;

    margin:0 auto;

    display:grid;
    grid-template-columns:repeat(5, 200px);

    justify-content:center;

    gap:24px;
}

.video-review{
    width:200px;

    text-align:center;
}

.video-grid video{
    display:block;

    width:200px;
    height:350px;

    object-fit:cover;
    object-position:center top;

    background:#F8F2EC;

    border:8px solid #5F9F9A;
    border-radius:36px;

    box-shadow:0 8px 20px rgba(74,64,56,.18);
}

.video-grid .yuri-video video{
    width:200px;
    height:350px;

    object-fit:cover;
    object-position:center center;
}

.video-name{
    margin:12px 0 0;

    text-align:center;

    font-size:18px;
    line-height:1.5;
}


/* Письменные отзывы */

.written-reviews{
    width:90%;
    max-width:900px;

    margin:20px auto 0;

    padding:50px 0 30px;

    text-align:center;
}

.written-reviews h2{
    margin-bottom:35px;
}

.review-card{
    width:100%;

    margin-bottom:25px;

    padding:30px 36px;

    text-align:left;

    background:rgba(248,242,236,.88);

    border:1px solid rgba(95,159,154,.28);
    border-radius:8px;

    box-shadow:0 10px 28px rgba(74,64,56,.09);
}

.review-card p{
    margin:0;
}


/* Форма отзыва */

.leave-review{
    width:90%;
    max-width:720px;

    margin:50px auto 0;

    padding:40px 0 20px;

    text-align:center;
}

.leave-review h2{
    margin-bottom:20px;
}

.leave-review > p{
    margin-bottom:35px;
}

.leave-review form{
    display:flex;
    flex-direction:column;

    text-align:left;
}

.leave-review label{
    display:block;

    margin-bottom:10px;

    font-family:'Lora', serif;
    font-size:17px;
    font-weight:600;

    color:#4A4038;
}

.leave-review input,
.leave-review textarea{
    width:100%;

    display:block;

    padding:16px 18px;
    margin-bottom:24px;

    font-family:'Lora', serif;
    font-size:17px;

    color:#4A4038;

    background:rgba(255,255,255,.65);

    border:1px solid rgba(95,159,154,.35);
    border-radius:7px;

    outline:none;
}

.leave-review textarea{
    resize:vertical;
}

.leave-review input:focus,
.leave-review textarea:focus{
    border-color:#5F9F9A;
}

.whatsapp-button{
    display:inline-block;

    margin-top:10px;

    padding:18px 40px;

    background:#5F9F9A;
    color:#ffffff;

    text-decoration:none;

    border-radius:50px;

    font-family:'Lora', serif;
    font-size:18px;
    font-weight:600;
}


/* Показать ещё */

.more-reviews-wrap{
    width:100%;

    display:flex;
    justify-content:center;

    margin-top:30px;
}

#load-more-reviews{
    padding:13px 30px;

    background:#5F9F9A;
    color:#ffffff;

    border:0;
    border-radius:24px;

    font-family:'Lora', serif;
    font-size:16px;
    font-weight:600;

    cursor:pointer;
}


/* Увеличение видео */

.review-video{
    cursor:pointer;
}

.video-open{
    margin-top:8px;
    padding:0;

    background:none;
    border:0;

    box-shadow:none;

    font-family:'Lora', serif;
    font-size:14px;
    font-weight:500;

    color:#5F9F9A;

    border-bottom:1px solid rgba(95,159,154,.45);
    border-radius:0;
}

.video-open:hover{
    background:none;
    color:#4C8883;
    transform:none;
}

.video-overlay{
    display:none;

    position:fixed;
    inset:0;

    background:rgba(50,40,34,.65);

    z-index:9000;
}

.video-overlay.show{
    display:block;
}

.video-review.expanded{
    position:fixed;

    left:50%;
    top:50%;

    transform:translate(-50%,-50%);

    width:auto;

    z-index:9001;

    padding:25px;

    background:#F8F2EC;

    border-radius:18px;

    box-shadow:0 20px 60px rgba(0,0,0,.35);
}

.video-review.expanded .review-video,
.video-review.expanded video{
    display:block;

    width:auto;
    height:auto;

    max-width:75vw;
    max-height:75vh;

    object-fit:contain;
    object-position:center;

    margin:0 auto;
}

.video-review.expanded .video-open{
    display:none;
}

.video-close{
    display:none;
}

.video-review.expanded .video-close{
    display:block;

    position:absolute;

    right:10px;
    top:5px;

    width:32px;
    height:32px;

    padding:0;

    background:none;

    border:0;
    border-radius:0;

    box-shadow:none;

    font-size:30px;
    line-height:1;

    color:#4A4038;

    z-index:2;
}

.video-review video:fullscreen,
.video-review video:-webkit-full-screen{
    width:100%;
    height:100%;

    object-fit:contain;

    background:#000000;
}


/* =========================================================
   10. ЗАПИСЬ НА КОНСУЛЬТАЦИЮ — КОМПЬЮТЕР
========================================================= */

.contact-page{
    width:90%;
    max-width:1500px;

    margin:0 auto;

    padding:60px 0 110px;

    text-align:center;
}

.contact-intro{
    width:100%;

    margin:0 auto;

    text-align:center;
}

.contact-intro h1{
    margin:0 0 25px;
}

.contact-intro h2{
    margin:25px 0 22px;
}

.contact-intro p{
    max-width:none;

    margin:0 auto 12px;

    text-align:center;
}

.contact-actions{
    margin-top:55px;

    display:flex;
    flex-direction:column;
    align-items:center;

    gap:22px;
}

.contact-button{
    display:inline-block;

    padding:22px 55px;

    background:#5F9F9A;
    color:#ffffff;

    font-family:'Lora', serif;
    font-size:20px;
    font-weight:600;

    text-decoration:none;

    border-radius:50px;

    box-shadow:0 8px 20px rgba(95,159,154,.22);
}

.contact-secondary{
    display:inline-block;

    padding-bottom:4px;

    font-family:'Lora', serif;
    font-size:18px;
    font-weight:500;

    color:#5F9F9A;

    text-decoration:none;

    border-bottom:1px solid #5F9F9A;
}


/* =========================================================
   11. КУРСОР
========================================================= */

.cursor-aura{
    position:fixed;

    width:80px;
    height:80px;

    border-radius:50%;

    pointer-events:none;

    z-index:9999;

    transform:translate(-50%,-50%);

    background:
        radial-gradient(
            circle,
            rgba(255,226,120,.28) 0%,
            rgba(212,175,55,.18) 28%,
            rgba(212,175,55,.08) 50%,
            rgba(212,175,55,0) 72%
        );
}

.cursor-aura::before,
.cursor-aura::after{
    content:"✦  ✧  ✦";

    position:absolute;

    left:50%;
    top:50%;

    transform:translate(-50%,-50%);

    color:#D4AF37;

    font-size:9px;
    letter-spacing:8px;

    animation:auraTwinkle 1.2s ease-in-out infinite alternate;
}

.cursor-aura::after{
    content:"·  ✦  ·";

    font-size:7px;

    transform:translate(-50%,-50%) rotate(35deg);

    animation-delay:.5s;
}

@keyframes auraTwinkle{
    from{
        opacity:.25;
    }

    to{
        opacity:1;
    }
}

.cosmic-spark{
    position:fixed;

    width:3px;
    height:3px;

    border-radius:50%;

    background:#FFD86A;

    pointer-events:none;

    z-index:9999;

    box-shadow:
        0 0 3px #FFF4C2,
        0 0 6px #FFD86A,
        0 0 10px rgba(212,175,55,.8);

    animation:cosmicTwinkle 900ms ease-out forwards;
}

@keyframes cosmicTwinkle{
    0%{
        opacity:0;
        transform:scale(.2);
    }

    25%{
        opacity:1;
        transform:scale(1.5);
    }

    55%{
        opacity:.8;
        transform:scale(.8);
    }

    75%{
        opacity:1;
        transform:scale(1.2);
    }

    100%{
        opacity:0;
        transform:scale(.2);
    }
}


/* =========================================================
   12. ПЛАНШЕТ
========================================================= */

@media (max-width:1100px){

    nav{
        height:auto;

        flex-wrap:wrap;

        padding:15px 12px 0;

        gap:6px;
    }

    nav a{
        padding:0 14px;
        font-size:14px;
    }


    /* Главная */

    .hero{
        width:92%;

        flex-direction:column;

        min-height:0;

        padding:45px 0 80px;

        gap:35px;
    }

    .photo{
        width:470px;
        max-width:100%;

        flex:none;
    }

    .text{
        width:100%;
        max-width:700px;

        flex:none;
    }


    /* Обо мне */

    .about-layout{
        width:90%;

        grid-template-columns:1fr;

        gap:45px;
    }

    .about-video{
        width:440px;

        justify-self:center;
    }

    .certificates-grid{
        grid-template-columns:repeat(2,1fr);
    }


    /* Гипнотерапия */

    .hypnosis-page{
        width:88%;
    }


    /* Отзывы */

    .video-grid{
        grid-template-columns:repeat(3,200px);
    }

}


/* =========================================================
   13. ТЕЛЕФОН
========================================================= */

@media (max-width:700px){

    body{
        font-size:17px;
        line-height:1.6;

        background-size:100% auto;
        background-position:top center;
    }


    /* ---------- МЕНЮ ---------- */

    nav{
        width:100%;
        height:auto;

        display:grid;
        grid-template-columns:repeat(2, minmax(0,1fr));

        gap:5px;

        padding:10px 8px 3px;

        align-items:stretch;
    }

    nav::after{
        height:3px;
    }

    nav a{
        width:100%;
        height:auto;
        min-height:42px;

        padding:8px 5px;

        font-size:12px;
        line-height:1.2;

        text-align:center;
        white-space:normal;

        border-radius:10px 10px 0 0;
    }

    nav a:last-child{
        grid-column:1 / -1;
    }

    nav a:hover{
        transform:none;
    }


    /* ---------- ЕДИНЫЕ РАЗМЕРЫ ТЕКСТА ---------- */

    .text h1,
    .about-left > h2:first-child,
    .hypnosis-content > h1:first-child,
    .reviews-page > h1:first-child,
    .contact-intro > h1:first-child{
        font-size:30px;
        line-height:1.2;
    }

    .text h2,
    .about-left h2,
    .certificates h2,
    .hypnosis-content h2,
    .reviews-page h2,
    .contact-intro h2,
    .page-content h2{
        font-size:25px;
        line-height:1.3;
    }

    .text h3,
    .about-left h3,
    .hypnosis-content h3,
    .reviews-page h3,
    .contact-intro h3,
    .page-content h3{
        font-size:20px;
        line-height:1.4;
    }

    .text p,
    .about-left p,
    .hypnosis-content p,
    .reviews-page p,
    .contact-intro p,
    .page-content p,
    .review-card p,
    .leave-review p,
    .video-name{
        font-size:17px;
        line-height:1.6;
    }


    /* ---------- ГЛАВНАЯ ---------- */

    .hero{
        width:100%;
        max-width:100%;

        min-height:0;

        margin:0;

        padding:25px 14px 55px;

        display:flex;
        flex-direction:column;
        align-items:center;

        gap:25px;
    }

    .photo{
        width:100%;
        max-width:420px;

        flex:none;

        margin:0 auto;
    }

    .photo img{
        width:100%;
        max-width:100%;
        height:auto;

        margin:0 auto;
    }

    .text{
        width:100%;
        max-width:420px;
        min-width:0;

        flex:none;

        margin:0 auto;

        text-align:left;
    }

    .text h1{
        margin:0 0 8px;
    }

    .text h2{
        margin:0 0 16px;
    }

    .text h3{
        margin:18px 0 15px;
    }

    .text p{
        width:100%;

        margin:0 0 16px;
    }

    .text button{
        width:100%;

        margin-top:8px;

        padding:16px 20px;

        font-size:16px;
    }


    /* ---------- ОБО МНЕ ---------- */

    .about-page{
        padding:35px 0 60px;
    }

    .about-layout{
        width:calc(100% - 28px);

        margin:0 auto;

        display:flex;
        flex-direction:column;

        gap:35px;
    }

    .about-left{
        width:100%;
        margin:0;
    }

    .about-left > h2:first-child{
        margin:0 0 20px;
    }

    .about-left p{
        margin-bottom:15px;
    }

    .education-title{
        margin-top:35px !important;
    }

    .about-video{
        width:100%;
        max-width:420px;

        margin:0 auto;

        transform:none;
    }

    .about-video video{
        width:100%;
        height:auto;
        max-height:none;

        object-fit:contain;
    }

    .certificates{
        margin-top:40px;
    }

    .certificates-grid{
        grid-template-columns:1fr;

        gap:16px;
    }

    .certificate-placeholder{
        min-height:160px;

        padding:22px 18px;

        font-size:17px;
    }


    /* ---------- ГИПНОТЕРАПИЯ ---------- */

    .hypnosis-page{
        width:100%;
        max-width:100%;

        padding:35px 14px 65px;
    }

    .hypnosis-content{
        width:100%;
    }

    .hypnosis-content > h1:first-child{
        margin:0 0 28px;
    }

    .hypnosis-content h2{
        margin:38px 0 16px;
    }

    .hypnosis-content h3{
        margin:25px 0 12px;
    }

    .hypnosis-intro{
        width:100%;

        margin:0 auto 35px;

        font-size:18px !important;

        text-align:left;
    }

    .science-note{
        margin:28px 0;

        padding:22px 18px;
    }

    .science-note strong{
        font-size:20px;
    }

    .hypnosis-list{
        grid-template-columns:1fr;

        gap:10px;
    }

    .hypnosis-list p{
        padding:13px 15px;
    }

    .hypnosis-action{
        margin:45px 0;

        padding:25px 18px;
    }

    .hypnosis-button{
        width:100%;

        padding:16px 15px;

        font-size:16px;

        text-align:center;
    }

    .hypnosis-sources{
        margin-top:45px;

        padding-top:25px;
    }

    .hypnosis-sources h2{
        font-size:24px;
    }

    .source-links a{
        overflow-wrap:anywhere;
    }


    /* ---------- ОТЗЫВЫ ---------- */

    .reviews-page{
        width:100%;

        padding:35px 14px 65px;
    }

    .reviews-page > h1:first-child{
        margin:0 0 28px;
    }

    .video-section{
        padding:15px 0 40px;
    }

    .video-grid{
        width:100%;

        grid-template-columns:repeat(2, minmax(0,1fr));

        gap:20px 10px;
    }

    .video-review{
        width:100%;
        min-width:0;
    }

    .video-grid video,
    .video-grid .yuri-video video{
        width:100%;
        height:auto;
        aspect-ratio:200 / 350;

        object-fit:cover;
    }

    .video-name{
        font-size:15px;
        line-height:1.4;
    }

    .written-reviews{
        width:100%;

        padding:35px 0 20px;
    }

    .review-card{
        padding:22px 18px;
    }

    .leave-review{
        width:100%;

        margin-top:30px;

        padding:30px 0 20px;
    }

    .leave-review input,
    .leave-review textarea{
        font-size:16px;
    }

    .whatsapp-button{
        width:100%;

        padding:16px;

        text-align:center;

        font-size:16px;
    }

    .video-review.expanded{
        width:calc(100% - 24px);

        padding:20px 12px;
    }

    .video-review.expanded .review-video,
    .video-review.expanded video{
        max-width:100%;
        max-height:75vh;
    }


    /* ---------- ЗАПИСЬ НА КОНСУЛЬТАЦИЮ ---------- */

    .contact-page{
        width:100%;

        padding:35px 14px 65px;
    }

    .contact-intro{
        width:100%;
    }

    .contact-intro h1{
        margin:0 0 20px;
    }

    .contact-intro h2{
        margin:28px 0 16px;
    }

    .contact-intro p{
        text-align:left;
        margin-bottom:15px;
    }

    .contact-actions{
        margin-top:35px;
    }

    .contact-button{
        width:100%;

        padding:17px 15px;

        font-size:17px;

        text-align:center;
    }

    .contact-secondary{
        font-size:16px;
    }


/* На сенсорном экране курсор не нужен,
   но блёстки при касании оставляем */

.cursor-aura{
    display:none;
}

.cosmic-spark{
    display:block;
}

}


/* =========================================================
   14. ОЧЕНЬ МАЛЕНЬКИЙ ТЕЛЕФОН
========================================================= */

@media (max-width:380px){

    nav a{
        font-size:11px;
    }

    .hero{
        padding-left:10px;
        padding-right:10px;
    }

    .text h1,
    .about-left > h2:first-child,
    .hypnosis-content > h1:first-child,
    .reviews-page > h1:first-child,
    .contact-intro > h1:first-child{
        font-size:28px;
    }

    .video-grid{
        grid-template-columns:1fr;
    }

    .video-review{
        width:200px;

        margin:0 auto;
    }

    .video-grid video,
    .video-grid .yuri-video video{
        width:200px;
        height:350px;
    }

/* =========================================================
   ЕДИНАЯ ТИПОГРАФИКА НА КОМПЬЮТЕРЕ
========================================================= */

@media (min-width:1101px){

    .text h1,
    .about-left > h2:first-child,
    .hypnosis-content > h1:first-child,
    .reviews-page > h1:first-child,
    .contact-intro > h1:first-child{
        font-size:52px;
        line-height:1.2;
    }

    .text h2,
    .about-left h2,
    .certificates h2,
    .hypnosis-content h2,
    .reviews-page h2,
    .contact-intro h2,
    .page-content h2,
    .hypnosis-sources h2{
        font-size:38px;
        line-height:1.3;
    }

    .text h3,
    .about-left h3,
    .hypnosis-content h3,
    .reviews-page h3,
    .contact-intro h3,
    .page-content h3,
    .science-note strong{
        font-size:28px;
        line-height:1.35;
    }

    .text p,
    .about-left p,
    .hypnosis-content p,
    .hypnosis-intro,
    .reviews-page p,
    .contact-intro p,
    .page-content p,
    .review-card p,
    .leave-review p{
        font-size:20px !important;
        line-height:1.8;
    }
}