/* =============================================
   RESPONSIVE — TABLET (max-width: 1024px)
   ============================================= */
@media (max-width: 1024px) {
    :root {
        --space-section: 80px;
    }

    .container {
        padding: 0 var(--space-lg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-2xl);
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        max-width: 480px;
        margin: 0 auto;
    }

    .float-card-1 {
        left: -10px;
    }

    .float-card-2 {
        right: -10px;
    }

    .about-grid,
    .about-story-grid,
    .sustain-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .about-images {
        max-width: 500px;
        margin: 0 auto;
    }

    .products-grid,
    .shop-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid .testimonial-card:last-child {
        grid-column: 1 / -1;
        max-width: 500px;
        justify-self: center;
    }

    .newsletter-card {
        grid-template-columns: 1fr;
    }

    .newsletter-visual {
        height: 250px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =============================================
   RESPONSIVE — MOBILE (max-width: 768px)
   ============================================= */
@media (max-width: 768px) {
    :root {
        --space-section: 60px;
    }

    .container {
        padding: 0 var(--space-md);
    }

    /* Mobile Nav */
    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-container {
        height: 64px;
    }

    /* Hero */
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero-container {
        padding: 0 var(--space-md);
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }

    .hero-stats {
        gap: var(--space-lg);
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .hero-float-card {
        display: none;
    }

    .hero-scroll-indicator {
        display: none;
    }

    /* Products */
    .products-grid,
    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid .testimonial-card:last-child {
        max-width: 100%;
    }

    /* Newsletter */
    .newsletter-content {
        padding: var(--space-xl);
    }

    .newsletter-input-group {
        flex-direction: column;
    }

    .newsletter-visual {
        height: 200px;
    }

    /* About */
    .about-img-secondary {
        width: 150px;
        right: -10px;
        bottom: -20px;
    }

    .about-img-secondary img {
        height: 170px;
    }

    .about-img-main img {
        height: 400px;
    }

    /* Sustainability */
    .sustain-stats {
        flex-wrap: wrap;
        justify-content: center;
    }

    .sustain-image-grid {
        grid-template-columns: 1fr;
    }

    .sustain-img-1,
    .sustain-img-2,
    .sustain-img-3 {
        height: 200px;
    }

    /* Contact */
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrap {
        padding: var(--space-xl);
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .footer-brand {
        grid-column: auto;
    }

    /* Values */
    .values-grid {
        grid-template-columns: 1fr;
    }

    /* Page Hero */
    .page-hero {
        padding: 120px 0 60px;
        min-height: 300px;
    }

    .page-hero-sm {
        min-height: 250px;
        padding: 110px 0 50px;
    }

    /* Shop Filters */
    .shop-filters {
        gap: 6px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.82rem;
    }
}

/* =============================================
   RESPONSIVE — SMALL MOBILE (max-width: 480px)
   ============================================= */
@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .products-grid,
    .shop-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--space-md);
    }

    .about-img-secondary {
        display: none;
    }
}