.adaptive-header {
    display: none;
}

@media (max-width: 1024px) {
    .adaptive-header {
        display: block;
        background: white;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        position: sticky;
        top: 0;
        z-index: 1000;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .header__inner {
        padding: 15px 0;
    }
    
    .nav_list {
        gap: 20px;
    }
    
    .header_cta {
        display: none;
    }
    
    .navigation {
        display: none;
    }
    
    .header {
        margin-top: 80px;
        padding: 40px 20px;
    }
    
    .features,
    .products,
    .coffee-process,
    .coffee-types,
    .content-grid,
    .masonry-grid {
        padding: 40px 20px;
    }
    
    .header {
        flex-direction: column;
        height: auto;
        gap: 30px;
        padding-top: 100px;
    }
    
    .header__left,
    .header__right {
        width: 100%;
        align-items: center;
        text-align: center;
    }
    
    .header__logo-link {
        align-items: center;
    }
    
    .header__right-content {
        align-items: center;
    }
    
    .header__text-container {
        text-align: center;
    }
    
    .header__banner-img {
        width: 100%;
        height: auto;
        max-height: 400px;
    }
    
    .features__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .coffee-types__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .products__row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .coffee-process__content {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .coffee-process__main-image {
        width: 100%;
        max-width: 463px;
        height: 350px;
    }
    
    .masonry-grid__container {
        column-count: 2;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: white;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        padding: 80px 30px 30px;
        transition: right 0.4s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav_list {
        flex-direction: column;
        gap: 0;
    }
    
    .nav_item {
        width: 100%;
    }
    
    .nav_link {
        display: block;
        width: 100%;
        padding: 15px 0;
        font-size: 18px;
        border-bottom: 1px solid #eee;
    }
    
    .nav_link:hover,
    .nav_link.active {
        background: transparent;
        color: #8B4513;
        padding-left: 10px;
    }
    
    .btn {
        min-width: 120px;
    }
    
    .scroll-top {
        width: 52px;
        height: 52px;
        bottom: 20px;
        right: 20px;
        font-size: 22px;
    }
    
    .features__grid,
    .coffee-types__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-item {
        flex-direction: column;
        gap: 20px;
    }
    
    .product-item__image {
        width: 100%;
        max-width: 235px;
        margin: 0 auto;
    }
    
    .product-item__button {
        align-self: stretch;
        text-align: center;
    }
    
    .features__title,
    .products__title,
    .coffee-process__title,
    .coffee-types__title,
    .content-grid__title,
    .masonry-grid__title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .navigation__list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .masonry-grid__container {
        column-count: 1;
    }
}

@media (max-width: 480px) {
    .nav {
        width: 100%;
    }
    
    .logo img {
        width: 100px;
        height: auto;
    }
    
    body {
        font-size: 17px;
    }
    
    .features__title,
    .products__title,
    .coffee-process__title,
    .coffee-types__title,
    .content-grid__title,
    .masonry-grid__title {
        font-size: 24px;
    }
    
    .header__brand-name {
        font-size: 22px;
    }
    
    .header__icon-label {
        font-size: 20px;
    }
    
    .header__slogan {
        font-size: 16px;
    }
    
    .product-item__title,
    .coffee-type__name {
        font-size: 20px;
    }
    
    .product-item__description,
    .coffee-type__description {
        font-size: 14px;
    }
    
    .product-item__price,
    .coffee-type__price {
        font-size: 22px;
    }
    
    .coffee-process__main-image {
        height: 250px;
    }
    
    .navigation {
        padding: 8px 12px;
        font-size: 14px;
    }
    
    .content-grid__container {
        grid-template-columns: 1fr;
    }
}