/* ══════════════════════════════════════
        FOOTER MAIN — dark bg
    ══════════════════════════════════════ */
    .footer-accent {
        width: 100%;
        height: 1px;
        margin: 0 0 0 0;
    }

    .footer {
        position: relative;
        background: #161616;
        overflow: hidden;
    }

    /* ── Icon wallpaper grid ── */
    .footer-icon-grid {
        position: absolute;
        inset: 0;
        display: grid;
        grid-template-columns: repeat(auto-fill, 90px);
        grid-template-rows: repeat(auto-fill, 90px);
        pointer-events: none;
        z-index: 0;
    }

    .fig-icon {
        width: 90px;
        height: 90px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .fig-icon svg {
        width: 38px;
        height: 38px;
        stroke: rgba(255, 255, 255, .09);
        fill: none;
        stroke-width: 1.2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    /* ── Inner content ── */
    .footer-inner {
        position: relative;
        z-index: 2;
        max-width: 1280px;
        margin: 0 auto;
        padding: clamp(2.5rem, 5vw, 4rem) clamp(1.2rem, 5vw, 4rem) clamp(2rem, 4vw, 3rem);
        display: grid;
        grid-template-columns: 1.6fr 1fr 1.2fr 1.4fr;
        gap: clamp(2rem, 4vw, 4rem);
    }

    /* ══════════════════════════════════════
       COL 1 — Brand
    ══════════════════════════════════════ */

    .ft-logo {
        display: flex;
        align-items: center;
        gap: .5rem;
        margin-bottom: 1.1rem;
    }

    .ft-logo-icon {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }

    .ft-logo-icon svg {
        width: 100%;
        height: 100%
    }

    .ft-logo-name {
        font-family: 'Barlow', sans-serif;
        font-weight: 800;
        font-size: 1.35rem;
        color: #fff;
        letter-spacing: 1em;
    }

    .ft-desc {
        font-size: clamp(.8rem, 1.2vw, .88rem);
        font-weight: 400 !important;
        color: rgba(255, 255, 255, 0.59);
        line-height: 1.7;
        margin-bottom: 1.6rem;
        max-width: 300px;
    }

    /* Social icons */
    .ft-socials {
        display: flex;
        gap: .65rem;
        flex-wrap: wrap;
    }

    .ft-social {
        width: 40px;
        height: 40px;
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, .12);
        background: rgba(255, 255, 255, .05);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background .22s, border-color .22s, transform .22s;
    }

    .ft-social:hover {
        background: rgba(255, 255, 255, .15);
        border-color: rgba(255, 255, 255, .25);
        transform: translateY(-2px);
    }

    .ft-social svg {
        width: 17px;
        height: 17px;
        stroke: rgba(255, 255, 255, .65);
        fill: none;
        stroke-width: 1.6;
        stroke-linecap: round;
        stroke-linejoin: round;
        transition: stroke .22s;
    }

    .ft-social:hover svg {
        stroke: #fff
    }

    /* ══════════════════════════════════════
        COL 2 & 3 — Links
    ══════════════════════════════════════ */
    .ft-col-title {
        font-weight: 500;
        font-size: clamp(.95rem, 1.5vw, 1.1rem);
        color: #ffffffb9;
        letter-spacing: .01em;
        margin-bottom: 1.4rem;
        position: relative;
        padding-bottom: .7rem;
    }

    .ft-col-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 28px;
        height: 2px;
        background: rgba(255, 255, 255, .22);
        border-radius: 2px;
    }

    .ft-links {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: .7rem;
    }

    .ft-links a {
        font-size: clamp(.8rem, 1.2vw, .88rem);
        font-weight: 400;
        color: rgba(255, 255, 255, 0.59);
        display: inline-flex;
        align-items: center;
        gap: .45rem;
        transition: color .2s, gap .2s;
    }

    .ft-links a::before {
        content: '';
        display: block;
        width: 0;
        height: 1px;
        background: rgba(255, 255, 255, .5);
        transition: width .22s;
        flex-shrink: 0;
    }

    .ft-links a:hover {
        color: rgba(255, 255, 255, .9)
    }

    .ft-links a:hover::before {
        width: 12px
    }

    /* ══════════════════════════════════════
        COL 4 — Contact
    ══════════════════════════════════════ */
    .ft-contact-list {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 1.1rem;
    }

    .ft-contact-item {
        display: flex;
        align-items: flex-start;
        gap: .75rem;
    }

    .ft-ci-icon {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
        border-radius: 8px;
        background: rgba(255, 255, 255, .07);
        border: 1px solid rgba(255, 255, 255, .1);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: .1rem;
        transition: background .22s, border-color .22s;
    }

    .ft-contact-item:hover .ft-ci-icon {
        background: rgba(255, 255, 255, .13);
        border-color: rgba(255, 255, 255, .2);
    }

    .ft-ci-icon svg {
        width: 19px;
        height: 19px;
        stroke: rgba(255, 255, 255, .6);
        fill: none;
        stroke-width: 1;
        stroke-linecap: round;
        stroke-linejoin: round;
        transition: stroke .22s;
    }

    .ft-contact-item:hover .ft-ci-icon svg {
        stroke: #fff
    }


    .ft-ci-label {
        font-size: .62rem;
        font-weight: 500;
        letter-spacing: .12em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, .28);
        display: block;
        margin-bottom: .18rem;
    }

    .ft-ci-val {
        font-size: clamp(.78rem, 1.1vw, .56rem);
        font-weight: 400;
        color: rgba(255, 255, 255, 0.59);
        line-height: 1.55;
        transition: color .2s;
    }

    .ft-contact-item:hover .ft-ci-val {
        color: rgba(255, 255, 255, .9)
    }

    a.ft-contact-item {
        cursor: pointer
    }

    /* ══════════════════════════════════════
        FOOTER BOTTOM DIVIDER + COPYRIGHT
    ══════════════════════════════════════ */
    .footer-bottom {
        position: relative;
        z-index: 2;
        border-top: 1px solid rgba(255, 255, 255, .08);
        background: #111;
    }

    .footer-bottom-inner {
        max-width: 1280px;
        margin: 0 auto;
        padding: 1.1rem clamp(1.2rem, 5vw, 4rem);
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: .75rem;
    }

    .ft-copy {
        font-size: clamp(.72rem, 1.1vw, .8rem);
        font-weight: 400;
        color: rgba(255, 255, 255, 0.44);
        letter-spacing: .04em;
        text-transform: uppercase;
    }

    .ft-copy strong {
        color: rgba(255, 255, 255, 0.74);
        font-weight: 600
    }

    .ft-bottom-links {
        display: flex;
        gap: 1.4rem;
        flex-wrap: wrap;
    }

    .ft-bottom-links a {
        font-size: .72rem;
        font-weight: 600;
        letter-spacing: .04em;
        color: rgba(255, 255, 255, 0.45);
        text-transform: uppercase;
        transition: color .2s;
    }

    .ft-bottom-links a:hover {
        color: rgba(255, 255, 255, .65)
    }


 @media (max-width: 900px) {
        .nav-links {
            display: none;
        }

        .hamburger {
            display: flex;
        }

        .btn-quote .ql {
            display: none;
        }

        .btn-quote {
            padding: 0.48rem 0.52rem;
        }

        .hero-glass {
            position: static;
            transform: none;
            margin: 1.2rem auto 0;
            width: auto;
            display: inline-block;
            text-align: center;
        }

        .hero-content {
            padding-bottom: 1.2rem;
        }

        .about {
            grid-template-columns: 1fr;
            gap: 2.5rem;
            padding: 2.5rem 1.3rem;
        }

        .about-divider {
            display: none;
        }

        .about-right {
            padding-top: 2.5rem;
            justify-content: flex-end;
        }

        .bag-float {
            left: 0;
            bottom: -16px;
        }

        .about-photo {
            max-width: 100%;
        }

        .products-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .contact-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .contact-right {
            padding-top: 0;
        }

        .wcu-cards {
            grid-template-columns: repeat(2, 1fr);
        }

        .wcu-header {
            padding-bottom: clamp(6rem, 14vw, 10rem);
        }
    }

    /* Phone ≤ 600px */
    @media (max-width: 600px) {
        :root {
            --nav-h: 60px;
        }

        .hero {
            margin: 0 6px;
            border-radius: 0 0 12px 12px;
        }

        .hero-title {
            font-size: 2.2rem;
        }

        .hero-sub {
            font-size: 0.8rem;
        }

        .hero-glass {
            min-width: unset;
            padding: 0.9rem 1.1rem;
        }

        .glass-pct {
            font-size: 1.8rem;
        }

        .hero-products {
            gap: 2px;
            padding: 0 4px;
        }

        .p-bag {
            max-width: 62px;
            height: 88px;
        }

        .p-tub {
            max-width: 66px;
            height: 80px;
        }

        .p-can {
            max-width: 46px;
            height: 78px;
        }

        .pb-sm {
            max-width: 50px;
            height: 70px;
        }

        .bag-brand,
        .bag-tag {
            display: none;
        }

        .tub-label,
        .can-label {
            font-size: 0.45rem;
        }

        .footer-bar {
            gap: 0.85rem;
            padding: 1rem;
        }

        .fb-sep {
            display: none;
        }

        .fb-item {
            font-size: 0.72rem;
        }

        .truck-wrap {
            max-width: 100%;
        }

        .about-heading {
            font-size: 1.5rem;
        }

        .mv-icon {
            width: 48px;
            height: 48px;
        }

        .bag-float {
            width: clamp(110px, 28vw, 160px);
        }

        .about-right {
            padding-top: 2rem;
        }

        .form-row {
            grid-template-columns: 1fr;
        }

        .info-cards {
            grid-template-columns: 1fr;
        }

        .info-card.full-width {
            grid-column: 1;
        }

        .contact-heading {
            font-size: 1.55rem;
        }

        .wcu-cards {
            grid-template-columns: 1fr;
        }

        .wcu-header {
            padding-bottom: clamp(5rem, 12vw, 7rem);
        }

        .wcu-cards-wrap {
            margin-top: clamp(-4rem, -8vw, -5rem);
            padding: 0 1rem 1.5rem;
        }
    }

    /* Small phone ≤ 400px */
    @media (max-width: 400px) {
        .hero-title {
            font-size: 1.85rem;
        }

        .hero-sub {
            font-size: 0.75rem;
        }

        .p-bag {
            max-width: 50px;
            height: 74px;
        }

        .p-tub {
            max-width: 56px;
            height: 68px;
        }

        .p-can {
            display: none;
        }

        .about {
            padding: 2rem 1rem;
        }

        .about-heading {
            font-size: 1.35rem;
        }

        .stat-num {
            font-size: 1.2rem;
        }

        .products-grid {
            grid-template-columns: 1fr;
        }

        .card-img-wrap {
            aspect-ratio: 4/3;
        }

        .card-img-wrap img {
            max-height: 90%;
        }

        .contact-section {
            padding: 1.5rem 1rem;
        }

        .contact-heading {
            font-size: 1.35rem;
        }

        .info-hero {
            padding: 1.3rem;
        }
    }

    /* Large ≥ 1400px */
    @media (min-width: 1400px) {
        .hero {
            min-height: 650px;
            margin: 0px 50px;
        }

        .products-grid {
            gap: 1.5rem;
        }

        .wcu-cards {
            gap: 1.4rem;
        }
    }