/* ===== RESPONSIVE — TABLET (768px – 1199px) ===== */

/* Hidden on desktop */
.header__burger {
    display: none;
}

.mobile-menu {
    display: none;
}

/* Show only on mobile */

@media (max-width: 1199px) {

    .header__burger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 30px;
        height: 30px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        margin-left: 12px;
        z-index: 1001;
        position: relative;
    }

    .header__burger span {
        display: block;
        width: 100%;
        height: 2px;
        background: var(--c-black);
        border-radius: 2px;
        transition: all 0.3s ease;
        transform-origin: center;
    }

    /* Burger → X animation */
    .header__burger--active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .header__burger--active span:nth-child(2) {
        opacity: 0;
    }

    .header__burger--active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* Mobile menu panel */
    .mobile-menu {
        display: block;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        height: calc(100vh - 46px);
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.35s ease, visibility: 0.35s ease;
    }

    .mobile-menu--open {
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu__body {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
        padding: 20px;
        gap: 40px;
    }

    .mobile-menu__nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .mobile-menu__link {
        font-family: var(--ff-main);
        font-weight: 700;
        font-size: 22px;
        line-height: 1.3;
        color: var(--c-black);
        text-transform: uppercase;
        transition: color 0.3s ease;
    }

    .mobile-menu__link:hover {
        color: var(--c-teal);
    }

    .mobile-menu__contacts {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .mobile-menu__phone {
        font-family: var(--ff-main);
        font-weight: 700;
        font-size: 20px;
        color: var(--c-teal);
    }

    .mobile-menu__email {
        font-family: var(--ff-main);
        font-weight: 400;
        font-size: 16px;
        color: var(--c-black);
    }

    .mobile-menu__address {
        font-family: var(--ff-main);
        font-weight: 400;
        font-size: 14px;
        color: var(--c-black);
        text-align: center;
        opacity: 0.7;
    }

    .mobile-menu__btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 270px;
        height: 44px;
        background: var(--c-teal);
        border-radius: var(--br-btn);
        font-family: var(--ff-main);
        font-weight: 700;
        font-size: 13px;
        color: var(--c-white);
        text-transform: uppercase;
        text-align: center;
        transition: all 0.3s ease;
    }

    .mobile-menu__btn:hover {
        background: var(--c-teal-dark);
    }

    /* Lock body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }

    .container {
        max-width: 960px;
        padding: 0 30px;
    }

    /* --- Header --- */
    .header__nav {
        display: none;
    }
    /*.header__nav {
        gap: 20px;
    }

    .header__nav-link {
        font-size: 14px;
    }*/
    .header__container {
        justify-content: space-between;
    }

    .header__btn--outline {
        width: 220px;
        font-size: 12px;
    }

    /* --- Hero --- */
    .hero__content {
        padding-top: 80px;
        padding-bottom: 50px;
    }
    .hero__title-line--main {
        font-size: 70px;
        text-align: center;
    }

    .hero__title-line--sub {
        font-size: 28px;
    }

    .hero__title {
        width: 100%;
        display: block;
    }

    .hero__tagline {
        font-size: 38px;
    }

    /* --- Catalog --- */
    .catalog {
        padding-bottom: 40px;
    }
    .catalog__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .catalog__container {
        padding-top: 40px;
    }

    .catalog__tagline {
        font-size: 22px;
        margin-top: 40px;
    }

    /* --- Partner --- */
    .partner {
        padding-top: 40px;
    }
    .partner__logo-img {
        width: auto;
        height: auto;
    }
    .partner__logo-banner {
        width: 100%;
        height: auto;
        left: 0;
        transform: none;
        position: static;
    }

    .partner__body {
        min-height: auto;
    }

    .partner__photo {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        max-width: 700px;
        margin: 40px auto 0;
    }

    .partner__info {
        max-width: 100%;
    }

    .partner__title {
        font-size: 36px;
        white-space: normal;
        text-align: left;
    }

    .partner__desc {
        max-width: 100%;
    }

    /* --- Clients --- */
    .clients__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .clients__card {
        width: 100%;
        height: 300px;
    }

    /* --- About --- */
    .about__title {
        font-size: 50px;
    }

    .about__subtitle {
        font-size: 26px;
        margin-top: -15px;
    }

    .about__bg-image {
        display: none;
    }

    .about__content {
        max-width: 100%;
        margin-left: 0;
    }

    /* --- Freshness --- */
    .freshness__container {
        padding-top: 200px;
    }

    .freshness__title {
        font-size: 48px;
    }

    .freshness__subtitle {
        font-size: 34px;
    }

    .freshness__header {
        margin-bottom: 60px;
    }

    .freshness__video-wrap {
        height: 480px;
    }

    video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .freshness__avocado {
        width: 400px;
        height: 330px;
    }

    /* --- Contacts --- */
    .contacts__title {
        font-size: 64px;
        margin-bottom: 20px;
    }

    .contacts__content {
        flex-direction: column;
    }

    .contacts__info {
        width: 100%;
    }

    .contacts__map {
        width: 100%;
        height: 350px;
    }

    /* --- Footer --- */
    .footer__container {
        padding-top: 40px;
        padding-bottom: 25px;
    }

    .footer__top {
        flex-wrap: wrap;
        gap: 30px 20px;
    }

    .footer__col,
    .footer__col--logo {
        width: calc(50% - 10px);
    }
}


/* ===== RESPONSIVE — MOBILE (до 767px) ===== */
@media (max-width: 767px) {

    .mobile-menu {
        top: 50px;
    }

    .container {
        max-width: 100%;
        padding: 0 15px;
    }

    .footer__container {
        padding-top: 40px;
        padding-bottom: 25px;
    }

    /* --- Header --- */
    .header {
        height: 50px;
    }

    .header__btn {
        display: none;
    }

    .header__btn--outline {
        width: 155px;
        height: 34px;
        font-size: 11px;
        margin-left: auto;
    }

    .header__logo-icon {
        width: 36px;
        height: 36px;
    }

    .header__logo-text {
        height: 18px;
    }

    /* --- Hero --- */
    .hero {
        height: 100vh;
        min-height: 500px;
    }
    .hero__content {
        padding-top: 80px;
        padding-bottom: 50px;
    }
    .hero__title {
        width: 100%;
        align-items: center;
    }

    .hero__title-line--main {
        font-size: 44px;
        text-align: center;
        line-height: 1.1;
    }

    .hero__title-line--sub {
        font-size: 20px;
        text-align: center;
    }

    .hero__tagline {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .hero__btn {
        width: 240px;
        height: 40px;
        font-size: 12px;
    }

    /* --- Catalog --- */
    .catalog {
        padding-bottom: 40px;
    }

    .catalog__gradient-bg {
        height: 200px;
    }

    .catalog__container {
        padding-top: 20px;
    }

    .catalog__grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .catalog__card-title {
        font-size: 20px;
        bottom: 40px;
    }

    .catalog__card-desc {
        font-size: 14px;
        bottom: 18px;
    }

    .catalog__tagline {
        font-size: 16px;
        margin-top: 30px;
    }

    /* --- Partner --- */
    .partner {
        padding-top: 40px;
    }

    .partner__logo-banner {
        width: 100%;
        left: 0;
        transform: none;
        height: auto;
    }

    .partner__logo-img {
        height: auto;
    }

    .partner__body {
        min-height: auto;
        padding-bottom: 40px;
    }

    .partner__title {
        font-size: 22px;
        white-space: normal;
        text-align: center;
        margin-bottom: 25px;
    }

    .partner__desc {
        font-size: 16px;
        max-width: 100%;
        margin-bottom: 30px;
    }

    .partner__info {
        max-width: 100%;
    }

    .partner__features {
        gap: 24px;
    }

    .partner__feature {
        gap: 20px;
    }

    .partner__feature-icon {
        width: 50px;
        height: 50px;
    }

    .partner__feature-title {
        font-size: 16px;
    }

    .partner__feature-desc {
        font-size: 15px;
        max-width: 100%;
    }

    .partner__photo {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        margin: 30px auto 0;
    }

    /* --- Clients --- */
    .clients {
        padding: 40px 0;
    }

    .clients__grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .clients__card {
        width: 100%;
        height: 170px;
        /*aspekt-ratio: 1 / 1;*/
        border-radius: 12px;
    }

    .clients__card-title {
        font-size: 14px;
        top: 50%;
        transform: translateY(-50%);
    }

    /* --- About --- */
    .about {
        margin-top: -50px;
        min-height: auto;
    }

    .about__gradient-top {
        height: 200px;
    }

    .about__body {
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .about__header {
        text-align: center;
        margin-bottom: 30px;
    }

    .about__title {
        font-size: 26px;
        line-height: 1;
    }

    .about__subtitle {
        font-size: 18px;
        margin-top: 0;
    }

    .about__content {
        max-width: 100%;
        margin-left: 0;
        gap: 20px;
    }

    .about__block {
        gap: 15px;
    }

    .about__block-icon {
        width: 50px;
        height: 46px;
    }

    .about__block-title {
        font-size: 16px;
    }

    .about__block-desc {
        font-size: 15px;
        max-width: 100%;
    }

    /* --- Freshness --- */
    .freshness__gradient-bg {
        height: 300px;
    }

    .freshness__container {
        padding-top: 120px;
    }

    .freshness__header {
        margin-bottom: 40px;
    }

    .freshness__title {
        font-size: 24px;
    }

    .freshness__subtitle {
        font-size: 16px;
        margin-top: -5px;
    }

    .freshness__video-wrap {
        height: 220px;
        border-radius: 12px;
    }

    .freshness__play-btn {
        width: 50px;
        height: 50px;
    }

    .freshness__play-btn svg {
        width: 50px;
        height: 50px;
    }

    .freshness__avocado {
        width: 200px;
        height: 164px;
    }

    /* --- Contacts --- */
    .contacts {
        padding: 40px 0 60px;
    }

    .contacts__title {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .contacts__content {
        flex-direction: column;
        gap: 30px;
    }

    .contacts__info {
        width: 100%;
    }

    .contacts__label {
        font-size: 18px;
    }

    .contacts__value {
        font-size: 18px;
    }

    .contacts__btn {
        width: 100%;
        max-width: 270px;
    }

    .contacts__map {
        max-width: 100%;
        width: 100%;
        height: 280px;
    }

    /* --- Footer --- */

    .footer__top {
        flex-direction: column;
        gap: 25px;
    }

    .footer__col,
    .footer__col--logo {
        width: 100%;
    }

    .footer__logo {
        margin-bottom: 5px;
    }

    .footer__disclaimer {
        font-size: 14px;
    }

    .footer__col-heading {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .footer__col-text {
        font-size: 14px;
    }

    .footer__nav-link {
        font-size: 14px;
    }

    .footer__copyright {
        font-size: 13px;
    }

    .footer__bottom {
        padding-top: 15px;
    }
}