:root {
    --nav-h: 80px;
    --bg-dark: #262626;
    --bg-anthracite: #1a1a1a;
    --white: #ffffff;
    --pt-serif: "PT Serif", serif;
    --satoshi: 'Satoshi', sans-serif;
    --cubic: cubic-bezier(0.23, 1, 0.32, 1);
    --container-w: 1200px;
    --side-gutter: 25px;
}

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

body,
html {
    scroll-behavior: smooth;
    width: 100%;
    background-color: var(--bg-dark);
    color: var(--white);
    font-family: var(--satoshi);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ===== NAVIGATION ===== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-h);
    z-index: 10000;
    display: flex;
    align-items: center;
    background-color: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    width: 100%;
    max-width: var(--container-w);
    margin: 0 auto;
    padding: 0 var(--side-gutter);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 35px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    opacity: 0.6;
    transition: 0.3s;
}

.nav-links a:hover {
    opacity: 1;
}

/* Состояние активной ссылки */
.nav-links a.active {
    opacity: 1;
    position: relative;
}

/* Линия под текстом */
.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    /* Расстояние от текста до линии */
    left: 0;
    width: 100%;
    height: 2px;
    /* Толщина линии */
    background-color: var(--white);
}

/* Burger */
.burger-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 10001;
}

.burger-btn span {
    width: 28px;
    height: 2px;
    background-color: var(--white);
    transition: 0.4s var(--cubic);
}

.burger-btn.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.burger-btn.is-active span:nth-child(2) {
    opacity: 0;
}

.burger-btn.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-dark);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    transition: right 0.6s var(--cubic);
}

.mobile-menu.is-active {
    right: 0;
}

.mobile-menu a {
    font-family: var(--pt-serif);
    font-size: 28px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-parallax-bg {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 120%;
    background-image: url('hero_image.png');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 2;
}

.container {
    width: 100%;
    max-width: var(--container-w);
    margin: 0 auto;
    padding: 0 var(--side-gutter);
    position: relative;
    z-index: 10;
}

.hero-title {
    font-family: var(--pt-serif);
    font-size: clamp(45px, 9vw, 100px);
    line-height: 0.95;
    font-weight: 700;
    margin-bottom: 25px;
}

.line-mask {
    display: block;
    overflow: hidden;
}

.line-mask span {
    display: block;
    transform: translateY(110%);
}

.hero-desc {
    font-size: clamp(16px, 2vw, 19px);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 500px;
    opacity: 0;
    transform: translateY(30px);
}

.hero-btn {
    display: inline-block;
    padding: 18px 45px;
    background-color: var(--white);
    color: var(--bg-dark);
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 11px;
    opacity: 0;
    transform: scale(0.9);
}

/* ===== VIDEO SECTION (16:9) ===== */
/* Секция 50/50 */
.v-split-section {
    padding: 120px 0;
    background-color: #0b0b0b;
}

.v-split-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

.v-split-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.v-split-text { flex: 0 0 calc(50% - 40px); }
.v-split-media { flex: 0 0 calc(50% - 40px); }

.v-split-title {
    font-family: var(--pt-serif);
    font-size: clamp(32px, 4vw, 50px);
    margin-bottom: 25px;
    color: #fff;
}

.v-split-desc {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,0.6);
}

/* Видео превью */
.v-split-video-wrapper {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
}

.v-static-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.v-split-video-wrapper:hover .v-static-img {
    transform: scale(1.05);
}

.v-video-hint {
    position: absolute;
    bottom: 20px; right: 20px;
    color: #fff;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(10px);
    transition: 0.4s ease;
    z-index: 10;
}


.v-split-video-wrapper:hover .v-video-hint {
    opacity: 1;
    transform: translateY(0);
}


.video-popup {
    position: fixed;
    inset: 0;
    z-index: 30000;
    display: none; /* Переключается через JS */
    align-items: center;
    justify-content: center;
    padding: 20px; /* Отступ, чтобы видео не прилипало к краям экрана */
}

.v-play-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 50px; height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(3px);
    display: flex; align-items: center; justify-content: center;
    transition: 0.4s var(--cubic);
}

.v-play-btn svg { width: 24px; fill: #fff; }
.v-split-video-wrapper:hover .v-play-btn { background: rgba(255,255,255,0.25); transform: translate(-50%, -50%) scale(1.1); }

/* Стили Попапа */
/* Настройки попапа и Close-метки */
#vVideoPopup {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    z-index: 30000; display: none; align-items: center; justify-content: center;
    opacity: 0;
    /* Убрали cursor: none, чтобы стандартный курсор остался */
}

.v-cursor-close {
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 31000;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    opacity: 0;
    background: rgba(0,0,0,0.3);
    padding: 5px 10px;
    border-radius: 4px;
    backdrop-filter: blur(2px);
}
#vVideoPopup.is-active { display: flex; }

.popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.popup-content {
    position: relative;
    z-index: 2;
    width: auto;      /* Ширина зависит от видео */
    height: auto;     /* Высота зависит от видео */
    max-width: 90vw;  /* Ограничение: не шире экрана */
    max-height: 85vh; /* Ограничение: не выше экрана */
    line-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.popup-content video {
    width: auto;
    height: auto;
    max-width: 100%;  /* Видео впишется в max-width контента */
    max-height: 85vh; /* Видео впишется в max-height контента */
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    background: #000;
}
/* Класс, который блокирует скролл */
body.v-lock-scroll {
    overflow: hidden;
    height: 100vh;
    /* Если на сайте есть фиксированная шапка, 
       добавление padding-right может предотвратить "дергание" страницы */
    touch-action: none; 
}


.popup-content video { width: 100%; height: auto; border-radius: 4px; }

#vModalVideo { width: 100%; height: auto; }

@media (max-width: 768px) {
    .v-cursor-close {
        display: block;
        position: absolute;
        top: -40px;
        right: 0;
        left: auto;
        opacity: 1 !important; /* На мобилках всегда видна */
    }
    
    .popup-content {
        max-width: 100%;
        max-height: 75vh;
    }
    
    .popup-content video {
        max-height: 75vh;
    }
}

/* ===== ABOUT ===== */
.about {
    background-color: #111;
    color: #fff;
    padding: 120px 0;
}

.about-flex {
    display: flex;
    /* Центрирует по вертикали оба дочерних элемента (контент и маску фото) */
    align-items: center; 
    justify-content: space-between;
    gap: 80px;
    /* Гарантируем, что флекс-контейнер не растягивается больше контента */
    align-content: center; 
}

.about-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    /* Если внутри контента есть смещения, это их выровняет */
    justify-content: center; 
}

.about-title {
    font-family: var(--pt-serif);
    font-size: clamp(35px, 5vw, 70px);
    line-height: 1.1;
    margin-bottom: 25px;
}

.about-text {
    line-height: 1.7;
    color: #fff;
    opacity:0.5;
    max-width: 480px;
    /* Убираем все внешние отступы, чтобы центровка была математической */
    margin: 0; 
}

/* =========================================================
   ABOUT IMAGE SLIDER
   ========================================================= */

.about-image-mask {
    position: relative;

    flex: 0 0 450px;
    aspect-ratio: 1 / 1;

    overflow: hidden;

    clip-path: inset(0 0 100% 0);

    user-select: none;
    touch-action: pan-y;

    background: #151515;
}

/* Сам slider */
.about-slider {
    position: absolute;
    inset: 0;

    overflow: hidden;
}

/* Каждый слайд лежит друг на друге */
.about-slide {
    position: absolute;
    inset: 0;

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transform: scale(1.035);

    transition:
        opacity 0.7s cubic-bezier(0.23, 1, 0.32, 1),
        transform 1.1s cubic-bezier(0.23, 1, 0.32, 1),
        visibility 0s linear 0.7s;
}

/* Активный слайд */
.about-slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: scale(1);
    transition:
        opacity 0.7s cubic-bezier(0.23, 1, 0.32, 1),
        transform 1.2s cubic-bezier(0.23, 1, 0.32, 1),
        visibility 0s linear 0s;
}

.about-slide img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    /*
     * Небольшой начальный zoom.
     * Не выглядит как AI-эффект — просто cinematic motion.
     */
    transform: scale(1.06);

    transition:
        transform 3.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.about-slide.is-active img {
    transform: scale(1);
}


/* =========================================================
   PROGRESS INDICATORS
   ========================================================= */

.about-slider-progress {
    position: absolute;

    left: 50%;
    bottom: 22px;

    transform: translateX(-50%);

    display: flex;
    align-items: center;

    gap: 7px;

    z-index: 10;

    padding: 6px 8px;

    /*
     * Очень лёгкая подложка, чтобы точки не терялись
     * на светлых фотографиях.
     */
    background: rgba(0, 0, 0, 0.16);

    border-radius: 999px;

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}


/* Обычная точка */
.about-progress {
    position: relative;

    width: 7px;
    height: 7px;

    padding: 0;
    margin: 0;

    border: 0;
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.55);

    cursor: pointer;

    overflow: hidden;

    transition:
        width 0.08s linear,
        background 0.25s ease;

    appearance: none;
    -webkit-appearance: none;
}


/*
 * Активная точка сразу становится pill.
 *
 * Важно:
 * transition ширины здесь отключён.
 * Поэтому превращение из точки в pill происходит
 * практически мгновенно при смене слайда.
 */
.about-progress.is-active {
    width: 34px;

    background: rgba(255, 255, 255, 0.28);
}


/*
 * Внутренняя полоска заполняется
 * от центра к краям.
 */
.about-progress span {
    position: absolute;

    left: 50%;
    top: 0;

    width: 0;
    height: 100%;

    transform: translateX(-50%);

    border-radius: inherit;

    background: #fff;

    pointer-events: none;
}


/*
 * Когда индикатор активен,
 * span расширяется от центра.
 */
.about-progress.is-active span {
    animation: aboutProgress 3s linear forwards;
}


@keyframes aboutProgress {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}


/* =========================================================
   DESKTOP HOVER
   ========================================================= */

@media (hover: hover) and (pointer: fine) {

    .about-progress:not(.is-active):hover {
        background: rgba(255, 255, 255, 0.85);
    }

}


/* =========================================================
   TABLET / MOBILE
   ========================================================= */

@media (max-width: 900px) {

    .about-flex {
        gap: 50px;
    }

    .about-image-mask {
        flex-basis: 400px;
    }

}


@media (max-width: 700px) {

    .about {
        padding: 90px 0;
    }

    .about-flex {
        flex-direction: column;
        align-items: stretch;
    }

    .about-content {
        width: 100%;
    }

    .about-text {
        max-width: none;
    }

    .about-image-mask {
        width: 100%;
        flex: none;
    }

}

/* =========================================================
   EXPERIENCE
   ========================================================= */

.experience {
    position: relative;

    width: 100%;

    background: #000;
    color: #fff;

    padding: 150px 0 170px;

    overflow: hidden;

    /* создаём отдельный stacking context */
    isolation: isolate;
}


/* =========================================================
   BACKGROUND VIDEO
   ========================================================= */

.experience-video {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    /*
     * Видео занимает ВЕСЬ блок,
     * а не только 1200px контейнер.
     */
    object-fit: cover;
    object-position: center bottom;

    /*
     * Насколько хорошо виден дым.
     */
    opacity: 0.3;

    /*
     * Видео находится за контентом,
     * но НЕ за background самого .experience.
     */
    z-index: 0;

    pointer-events: none;
    user-select: none;

    display: block;
}


/* =========================================================
   VIDEO OVERLAY
   ========================================================= */

.experience-overlay {
    position: absolute;

    inset: 0;

    /*
     * Затемнение очень слабое.
     * Дым должен быть реально виден.
     */
    background: rgba(0, 0, 0, 0.18);

    z-index: 1;

    pointer-events: none;
}


/* =========================================================
   CONTENT CONTAINER
   ========================================================= */

.exp-inner {
    position: relative;

    z-index: 2;

    /*
     * КОНТЕНТ РОВНО 1200px.
     */
    width: min(1200px, calc(100% - 80px));

    margin: 0 auto;
}


/* =========================================================
   TOP
   ========================================================= */

.exp-top {
    display: flex;
    align-items: center;

    gap: 22px;

    margin-bottom: 75px;
}


/* =========================================================
   ICON
   ========================================================= */

.exp-icon {
    display: block;

    width: 54px;
    height: 54px;

    object-fit: contain;

    opacity: 0;

    filter: brightness(0) invert(1);

    pointer-events: none;
}


/* =========================================================
   LABEL
   ========================================================= */

.exp-label {
    position: relative;

    font-size: 11px;
    font-weight: 500;

    letter-spacing: .28em;
    text-transform: uppercase;

    color: rgba(255,255,255,.45);

    opacity: 0;
}


/* вертикальная линия возле TƏCRÜBƏ */

.exp-label::before {
    content: "";

    position: absolute;

    left: -22px;
    top: 50%;

    width: 1px;
    height: 28px;

    background: rgba(255,255,255,.25);

    transform: translateY(-50%);
}


/* =========================================================
   CONTENT
   ========================================================= */

.exp-content {
    max-width: 1080px;

    opacity: 1;
}


/* =========================================================
   TOP LINE
   ========================================================= */

.exp-line {
    display: flex;
    align-items: baseline;
}


.exp-line-top {
    gap: 20px;

    border-bottom: 1px solid rgba(255,255,255,.18);

    padding-bottom: 18px;
}


/* =========================================================
   "Təcrübəmiz"
   ========================================================= */

.exp-small {
    font-size: clamp(20px, 2vw, 28px);

    color: rgba(255,255,255,.7);

    white-space: nowrap;
}


/* =========================================================
   COUNTERS
   ========================================================= */

.exp-number {
    display: inline-block;

    font-size: clamp(80px, 11vw, 150px);

    line-height: .8;

    font-weight: 500;

    letter-spacing: -.07em;

    font-variant-numeric: tabular-nums;

    color: #fff;

    white-space: nowrap;
}


/* =========================================================
   "İL"
   ========================================================= */

.exp-unit {
    font-size: 13px;

    letter-spacing: .22em;

    color: rgba(255,255,255,.4);

    white-space: nowrap;
}


/* =========================================================
   MIDDLE TEXT
   ========================================================= */

.exp-text {
    margin: 30px 0 35px;

    font-size: clamp(20px, 2.2vw, 32px);

    line-height: 1.25;

    color: rgba(255,255,255,.55);

    opacity: 0;
}


/* =========================================================
   SECOND LINE
   ========================================================= */

.exp-line-bottom {
    justify-content: flex-end;

    align-items: flex-end;

    gap: 8px;

    border-bottom: 1px solid rgba(255,255,255,.18);

    padding-bottom: 22px;
}


/* =========================================================
   SECOND COUNTER
   ========================================================= */

.exp-line-bottom .exp-number {
    font-size: clamp(75px, 10vw, 135px);
}


/* =========================================================
   PLUS
   ========================================================= */

.exp-plus {
    align-self: flex-start;

    margin-top: 5px;

    font-size: 30px;

    color: rgba(255,255,255,.5);
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.exp-description {
    max-width: 260px;

    margin-left: 28px;
    margin-bottom: 8px;

    font-size: 14px;

    line-height: 1.5;

    letter-spacing: .04em;

    color: rgba(255,255,255,.55);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .experience {
        padding: 110px 0 130px;
    }

    .exp-inner {
        width: calc(100% - 50px);
    }

    .experience-video {
        opacity: 0.12;
    }

    .exp-top {
        margin-bottom: 60px;
    }

    .exp-number {
        font-size: clamp(75px, 12vw, 120px);
    }

    .exp-line-bottom .exp-number {
        font-size: clamp(70px, 11vw, 115px);
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .experience {
        padding: 100px 0 110px;
    }

    .exp-inner {
        width: calc(100% - 40px);
    }

    .experience-video {
        opacity: 0.09;

        object-position: center bottom;
    }

    .exp-top {
        margin-bottom: 55px;
    }

    .exp-icon {
        width: 54px;
        height: 54px;
    }

    .exp-line-top {
        flex-wrap: wrap;

        gap: 12px;
    }

    .exp-line-top .exp-number {
        width: 100%;

        font-size: clamp(90px, 27vw, 140px);
    }

    .exp-text {
        margin: 25px 0 30px;
    }

    .exp-line-bottom {
        justify-content: flex-start;

        flex-wrap: wrap;
    }

    .exp-line-bottom .exp-number {
        font-size: clamp(80px, 25vw, 130px);
    }

    .exp-description {
        width: 100%;

        max-width: 280px;

        margin-left: 0;
        margin-top: 10px;
    }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .experience-video {
        display: none;
    }

    .exp-icon,
    .exp-label,
    .exp-text {
        opacity: 1;
        transform: none;
    }
}

/* ===== CATALOG & CLOUDS ===== */
.hookah-catalog {
    background-color: #111;
    color: #fff;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.clouds-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.cloud {
    position: absolute;
    width: 100vw;
    opacity: 0.3;
    filter: blur(10px);
    will-change: transform;
}

/* Позиции для реверса облаков */
.cloud-1 { top: 5%; left: 80%; }  /* Начинает справа */
.cloud-2 { top: 35%; left: -80%; } /* Начинает слева */
.cloud-3 { bottom: 5%; left: 70%; } /* Начинает справа */

.catalog-main-title {
    text-align: center;
    font-family: var(--pt-serif);
    font-size: clamp(32px, 5vw, 45px);
    margin-bottom: 80px;
    text-transform: uppercase;
    position: relative;
    z-index: 5;
}

.tobacco-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px 40px;
    position: relative;
    z-index: 5;
}

.tobacco-card {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.t-image-box {
    flex: 0 0 240px; 
    aspect-ratio: 5 / 6;
    overflow: hidden;
    background: #f4f4f4;
    border-radius: 4px;
}

.t-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--cubic);
}

.tobacco-card:hover .t-image-box img {
    transform: scale(1.08);
}

.t-info {
    flex: 1;
}

.t-name {
    font-family: var(--pt-serif);
    font-size: 26px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.t-flavours {
    font-size: 13px;
    line-height: 1.6;
    color: #fff;
    opacity:0.7;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.t-flavours strong {
    color: #fff;
}

.t-more {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    letter-spacing: 2px;
    border-bottom: 1px solid #262626;
    padding-bottom: 4px;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .t-image-box { flex: 0 0 180px; }
    .tobacco-grid { gap: 40px 20px; }
}

@media (max-width: 768px) {
    .tobacco-grid { grid-template-columns: 1fr; }
    .tobacco-card { flex-direction: column; text-align: center; align-items: center; }
    .t-image-box { width: 100%; max-width: 300px; flex: none; }
}

/* ===== RESTAURANT PROMO ===== */
.restaurant-promo {
    background-color: #111;
    padding: 120px 0;
    color: #fff;
}

.promo-flex {
    display: flex;
    align-items: center;
    gap: 80px;
}

.promo-image {
    flex: 0 0 500px;
    aspect-ratio: 1/1;
    overflow: hidden;
    opacity: 0;
    transform: translateX(-50px);
}

.promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-content {
    flex: 1;
    opacity: 0;
    transform: translateX(50px);
}

.promo-title {
    font-family: var(--pt-serif);
    font-size: clamp(30px, 5vw, 50px);
    margin-bottom: 25px;
}

.promo-text {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 450px;
}

.promo-btn {
    display: inline-block;
    padding: 18px 45px;
    background: #fff;
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 11px;
}

@media (max-width: 991px) {
    .nav-links {
        display: none;
    }

    .burger-btn {
        display: flex;
    }

    .about-flex,
    .hookah-item,
    .promo-flex {
        flex-direction: column !important;
        text-align: left;
        gap: 40px;
    }

    .about-image-mask,
    .hookah-img-box,
    .promo-image {
        flex: none;
        width: 100%;
        aspect-ratio: 1/1;
    }
}

/* ===== COMPACT LUXURY FOOTER ===== */
.footer {
    background-color: var(--bg-dark);
    color: var(--white);
    padding: 60px 0 30px;
    /* Уменьшили вертикальные отступы в 2 раза */
    font-family: var(--satoshi);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: var(--container-w);
    margin: 0 auto;
    padding: 0 var(--side-gutter);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    /* Меньше отступ до разделителя */
}

/* Компактный левый блок */
.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
    /* Лого еще аккуратнее */
    width: auto;
}

.footer-address {
    font-style: normal;
    font-size: 10px;
    /* Чуть меньше шрифт */
    line-height: 1.6;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.5;
    margin-bottom: 20px;
}

.footer-contacts-links {
    display: flex;
    gap: 20px;
    /* Теперь в ряд, а не столбиком */
    margin-bottom: 0;
}

.footer-link {
    color: var(--white);
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 0.05em;
    opacity: 0.8;
    transition: opacity 0.3s;
}

/* Правый блок (Навигация в ряд) */
.footer-nav-wrapper ul {
    list-style: none;
    display: flex;
    /* Ссылки теперь в строчку */
    gap: 25px;
}

.footer-nav-wrapper a {
    color: var(--white);
    text-decoration: none;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.6;
    transition: 0.3s;
}

.footer-nav-wrapper a:hover {
    opacity: 1;
}

.footer-divider {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Социалки теперь маленькие и рядом с контактами */
.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-socials img {
    width: 14px;
    opacity: 0.5;
}

/* Адаптив для мобилок */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        gap: 40px;
    }

    .footer-nav-wrapper ul {
        flex-direction: column;
        gap: 12px;
    }

    .footer-contacts-links {
        flex-direction: column;
        gap: 10px;
    }
}




/* ============================================================
   MOBILE ADAPTATION (ALL EXCEPT NAV & FOOTER)
   ============================================================ */

@media (max-width: 768px) {
    /* --- General Контейнер --- */
    .container {
        padding: 0 20px;
    }

    /* --- Hero Section --- */
    .hero {
        height: 85vh; /* Немного уменьшаем высоту, чтобы виден был следующий контент */
        text-align: center;
    }

    .hero-title {
        font-size: clamp(40px, 12vw, 60px); /* Увеличиваем относительный размер для читаемости */
        line-height: 1.1;
    }

    .hero-desc {
        margin: 0 auto 30px;
        font-size: 16px;
    }

    /* --- V-Split Sections (Мишлен, Детали, Выбор) --- */
    .v-split-section {
        padding: 60px 0;
    }

    .v-split-flex {
        flex-direction: column !important; /* Складываем текст и видео в колонку */
        gap: 40px;
    }

    .v-split-text, 
    .v-split-media {
        flex: 0 0 100%;
        width: 100%;
    }

    .v-split-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .v-split-media {
        aspect-ratio: 16/9; /* Сохраняем пропорции видео */
    }

    /* --- About Section (Missiya) --- */
    .about {
        padding: 80px 0;
    }

    .about-flex {
        flex-direction: column-reverse !important; /* Картинка сверху или снизу по желанию */
        gap: 40px;
    }

    .about-image-mask {
        flex: 0 0 300px;
        width: 100%;
        max-width: 400px;
    }

    .about-text {
        max-width: 100%;
        text-align: center;
    }

    .about-title {
        text-align: center;
        font-size: 32px;
    }

    /* --- Experience (Цифры) --- */
    .experience {
        padding: 60px 0;
    }

    .exp-text {
        font-size: 20px;
        padding: 0 10px;
    }

    /* --- Hookah Catalog (Kolleksiya) --- */
    .hookah-catalog {
        padding: 80px 0;
    }

    .tobacco-grid {
        grid-template-columns: 1fr; /* Один товар в ряд */
        gap: 50px;
    }

    .tobacco-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .t-image-box {
        flex: 0 0 320px;
        width: 100%;
    }

    .t-info {
        width: 100%;
    }

    .t-name {
        font-size: 22px;
    }

    .catalog-main-title {
        margin-bottom: 40px;
    }

    /* --- Restaurant Promo --- */
    .restaurant-promo {
        padding: 80px 0;
    }

    .promo-flex {
        flex-direction: column !important;
        text-align: center;
    }

    .promo-image {
        flex: 0 0 300px;
        width: 100%;
        transform: none !important; /* Убираем смещение для анимации на мобилках */
        opacity: 1 !important;
    }

    .promo-content {
        transform: none !important;
        opacity: 1 !important;
    }

    .promo-text {
        margin: 0 auto 25px;
    }

    /* --- Video Popups --- */
    .popup-content {
        max-width: 95vw;
    }
}

/* Маленькие экраны (iPhone SE и т.д.) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-btn {
        width: 100%;
        padding: 18px 20px;
    }
    
    .v-split-title {
        font-size: 24px;
    }
}
