.hero-wrapper {
    position: relative;
    /* Navbar floats on top of the hero, no reserved space */
}

.hero {
    position: relative;
    background: url(/assets/images/bg.webp) no-repeat center top / cover;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    height: clamp(600px, 66.67vw, 960px);
    border-radius: 0;
    margin: 0;

    transition:
        border-radius 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        margin 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Cloud-sky overlay */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(109.92deg, rgba(26, 164, 74, 0.58) 17.27%, rgba(26, 164, 74, 0) 80.94%);
    pointer-events: none;
    z-index: 1;
}

.hero__inner {
    max-width: 1224px;
    width: calc(100% - 120px);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    height: 100%;
    padding-bottom: 30px;
}

/* ── Hero text ── */
.hero__text {
    flex-shrink: 0;
    max-width: 44%;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1),
        padding 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero__headline {
    color: var(--color-white);
    line-height: 1.05;
    margin-bottom: 20px;
    transition: font-size 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero__sub {
    color: var(--color-white);
    max-width: 360px;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* ── Hero bottles ── */
.hero__bottles {
    flex-shrink: 0;
    width: 60%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    align-self: flex-end;
    position: relative;
    overflow: hidden;
    transition: width 0.55s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero__bottles-img {
    width: auto;
    height: 85%;
    max-width: 100%;
    object-fit: contain;
    object-position: bottom right;
    transition: height 0.55s cubic-bezier(0.4, 0, 0.2, 1),
        filter 0.4s ease;
}


.hero.is-scrolled {
    border-radius: var(--radius-md);
}


@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero__headline {
    animation: fadeUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.05s both;
}

.hero__sub {
    animation: fadeUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.20s both;
}

.hero__bottles {
    animation: slideInRight 1.0s cubic-bezier(0.22, 1, 0.36, 1) 0.10s both;
}

/* ======================================================
               BELOW-HERO SECTIONS
            ====================================================== */
.section {
    padding: 88px 24px;
}

.section__inner {
    max-width: var(--max);
    margin: 0 auto;
}

.eyebrow {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* ── Our Company ── */
/* Section Layout */
.company-section {
    width: 100%;
    padding: 80px 0;
    overflow: hidden;
}

.company-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography & Content styling */
.section-eyebrow {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    color: var(--color-900);
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 28px;
    line-height: 1.2;
}

.section-content p {
    color: var(--color-500);
    margin-bottom: 20px;
    font-size: 16px;
}

.section-content p:last-child {
    margin-bottom: 0;
}

/* Image Collage Layout */
.company-images {
    position: relative;
    width: 100%;
    padding-bottom: 85%;
}

.collage-img {
    position: absolute;
    border-radius: var(--radius-md);
    object-fit: cover;
    box-shadow: 0px 24px 56px -21px #58585880;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    cursor: pointer;
}

.collage-img:hover {
    transform: scale(1.02) translateY(-4px);
    box-shadow: 0 28px 56px rgba(10, 13, 20, 0.12);
    z-index: 10;
}

/* Exact layout mapping based on your layout image */
.img-single {
    top: 0%;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 1;
}

.img-main {
    top: 18%;
    left: 0;
    width: 76%;
    height: 58%;
    z-index: 1;
}

.img-top-right {
    top: 0;
    right: 0;
    width: 44%;
    height: 44%;
    z-index: 2;
}

.img-bottom-right {
    bottom: 0;
    right: 4%;
    width: 38%;
    height: 42%;
    z-index: 3;
}


/* ── Scroll reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* ── RECENT NEWS ── */
.news-section {
    padding: 48px 0;
    background: var(--bg);
}

.section-title {
    color: var(--color-500);
    margin-bottom: 48px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.news-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--color-200);
    transition: box-shadow 0.2s, transform 0.2s;
    cursor: pointer;
}

.news-card:hover {
    box-shadow: 0px 16px 32px -12px #585C5F1A;
    transform: translateY(-3px);
}

.news-card-img {
    width: 100%;
    height: 303px;
    object-fit: cover;
    background: var(--color-200);
    display: block;
}

.news-card-img {
    width: 100%;
    height: auto;
}

.news-card-body {
    padding: 16px;
}

.news-card-body h4 {
    font-weight: 600;
    font-style: normal;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0%;
    color: var(--color-900);
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-body p {
    color: var(--color-400);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-cta {
    text-align: center;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: var(--color-white);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 13px 28px;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-primary svg {
    width: 16px;
    height: 16px;
}

.btn-primary:hover svg {
    transform: translateX(4px);
}


/* ── NEWS CARD COLOURS ── */
.nc-1 {
    background: linear-gradient(135deg, #e0b8a0, #c8926a);
}

.nc-2 {
    background: linear-gradient(135deg, #a0b8d8, #6a8ab0);
}

.nc-3 {
    background: linear-gradient(135deg, #a8c8a0, #6a9860);
}

.page-wrapper {
    padding-top: 64px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .hero__text {    
        margin-top: 30px;
    }
    .news-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .company-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .company-images {
        padding-bottom: 70%;
        max-width: 600px;
        margin: 0 auto;
    }
}




@media (max-width: 900px) {
    .company__grid {
        grid-template-columns: 1fr;
    }

    .company__images {
        height: 280px;
    }
    

/* Hero: vertical stacking, text top → bottles bottom */
    .hero {
        align-items: flex-end;
        height: auto;
        /* min-height: calc(100dvh - 80px); */
        background-image: url(/assets/images/m-bg.webp);
        background-position: center top;
        background-size: cover;
        padding-bottom: 0;
        overflow: hidden;
    }

    .hero__inner {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        width: calc(100% - 40px);
        height: auto;
        padding: 140px 0 0;
        padding-bottom: 0;
        gap: 30px;
    }

    .hero__text {
        max-width: 100%;
        flex-shrink: 0;
        position: relative;
        z-index: 2;
    }

    .hero__headline {
        font-size: clamp(52px, 14vw, 80px);
        letter-spacing: -1.5px;
        line-height: 1.0;
        margin-bottom: 20px;
    }

    .hero__sub {
        font-size: 15px;
        max-width: 100%;
        line-height: 1.6;
    }

    /* Bottles: wide, tall, bleeding off bottom edge */
    .hero__bottles {
        width: 90%;
        margin: 0 auto;
        height: 100%;
        position: relative;
        z-index: 1;
        animation: fadeUp 1.0s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
        margin-bottom: 15px;
    }

    .hero__bottles-img {
        width: 100%;
        height: auto;
        max-width: none;
        object-fit: contain;
        object-position: bottom center;
    }

    .hero__accent {
        width: 140px;
        height: 140px;
    }

    /* Neutralise scroll-driven JS overrides on mobile */
    .hero.is-scrolled .hero__bottles {
        width: 100%;
    }

    .hero.is-scrolled .hero__bottles-img {
        height: auto;
    }

    .hero.is-scrolled .hero__headline {
        font-size: clamp(50px, 13vw, 76px);
    }

    .hero.is-scrolled .hero__accent {
        width: 140px;
        height: 140px;
    }
}


/* ── Hero Responsive + other 768px tweaks ── */
@media (max-width: 768px) {

    /* News */
    .news-section {
        padding: 56px 0;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 576px) {
    .company-section {
        padding: 48px 0;
    }

    .company-grid {
        padding: 0 20px;
        gap: 40px;
    }

    .section-title {
        font-size: 28px;
    }

    .company-images {
        padding-bottom: 90%;
    }

    .collage-img {
        border-width: 4px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .news-card {
        transition: none;
    }
}