.page-wrapper {
    margin: 180px auto 100px;
}

.hero-wrapper {
    position: relative;
}

.hero {
    position: relative;
    overflow: hidden;
    height: clamp(600px, 55vw, 935px);
}

.hero.is-scrolled {
    border-radius: var(--radius-md);
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.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 {
    flex-shrink: 0;
    max-width: 45%;
    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 {
    font-size: clamp(52px, 5vw, 80px);
    color: var(--color-white);
    margin-bottom: 20px;
    transition: font-size 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.05s both;
}

:lang(my) .hero__headline {
    font-size: clamp(36px, 6vw, 45px);
    line-height: 1.5;
}

.hero__sub {
    color: var(--color-white);
    max-width: 525px;
    transition: opacity 0.4s ease, transform 0.4s ease;
    animation: fadeUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.20s both;
}

.hero__bottles {
    flex-shrink: 0;
    width: 55%;
    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);
    animation: slideInRight 1.0s cubic-bezier(0.22, 1, 0.36, 1) 0.10s both;
}

.hero__bottles-img {
    width: auto;
    height: 80%;
    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;
}

@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);
    }
}

.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;
}

.company-section {
    width: 100%;
    padding: 96px 0 48px;
    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;
}

.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: clamp(28px, 2.5vw, 36px);
    font-weight: 700;
    margin-bottom: 28px;
    line-height: 1.2;
}

:lang(my) .section-title {
    font-size: clamp(24px, 2.3vw, 32px);
    line-height: 1.6;
}

.section-content p {
    color: var(--color-500);
    margin-bottom: 20px;
}

.section-content p:last-child {
    margin-bottom: 0;
}

.company-images {
    position: relative;
    width: 100%;
}

.collage-img {
    border-radius: var(--radius-md);
    object-fit: cover;
}


.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;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

.news-section {
    padding: 48px 0;
    background: var(--bg);
}

.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;
    padding: 16px 16px 0;
    object-fit: cover;
    display: block;
}

.news-card-img img {
    width: 100%;
    min-height: 237px;
    height: 100%;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.news-card-body {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 16px;
}

.news-card-body h4 {
    font-weight: 600;
    font-style: normal;
    font-size: 24px;
    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 {
    display: -webkit-box;
    -webkit-line-clamp: 5;      
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-body p:not(:last-child) {
    margin-bottom: 16px;
}


.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);
}

@media (max-width: 1024px) {
    .hero__text {
        margin-top: 30px;
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .company-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .company-images {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 900px) {
    .company__grid {
        grid-template-columns: 1fr;
    }

    .company__images {
        height: 280px;
    }

    .hero {
        align-items: flex-end;
        padding-bottom: 0;
        overflow: hidden;
    }

    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;
        background: rgba(0, 0, 0, 0.25);
    }

    .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(36px, 4vw, 72px);
        letter-spacing: -1.5px;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    :lang(my) .hero__headline {
        font-size: 28px;
    }

    .hero__sub {
        max-width: 100%;
    }

    .hero__bottles {
        width: 90%;
        margin: 0 auto 15px;
        height: 100%;
        position: relative;
        z-index: 1;
        animation: fadeUp 1.0s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
    }

    .hero__bottles-img {
        width: 100%;
        height: auto;
        max-width: none;
        object-fit: contain;
        object-position: bottom center;
    }

    .hero__accent {
        width: 140px;
        height: 140px;
    }

    .hero.is-scrolled .hero__bottles {
        width: 100%;
    }

    .hero.is-scrolled .hero__bottles-img {
        height: auto;
    }

    .hero.is-scrolled .hero__accent {
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 768px) {
    
    .page-wrapper {
        margin: 150px auto 100px;
    }

    .news-section {
        padding: 36px 0;
    }

    .news-card-body h4 {
        font-size: 20px;
    }

    .company-section {
        padding: 72px 0 36px;
    }
}

@media (max-width: 576px) {
    .hero {
        height: 100vh;
    }

    .company-grid {
        gap: 40px;
    }

    .section-title {
        font-size: 28px;
    }

    :lang(my) .section-title {
        font-size: 26px;
    }


    .collage-img {
        border-width: 4px;
    }
    
    

    .news-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .news-card {
        transition: none;
    }
}