/* ============================================================
   eat24 Sustainability Page
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #3B0000;
    background: #FDF5EC;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
img { max-width: 100%; display: block; }

.sust-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}


/* ============================================================
   NAVBAR
   ============================================================ */
.corp-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #C5960C;
    padding: 0 56px;
}
.corp-nav__inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    height: 80px;
    gap: 32px;
}
.corp-nav__left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}
.corp-nav__logo img { height: 52px; }
.corp-nav__badge {
    font-size: 18px;
    font-weight: 700;
    color: #CDFF50;
    padding-left: 20px;
    border-left: 2px solid rgba(255,255,255,.35);
}
.corp-nav__links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.corp-nav__link {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    transition: opacity .2s;
    white-space: nowrap;
}
.corp-nav__link:hover { opacity: .75; }
.corp-nav__link--active {
    background: rgba(0,0,0,.15);
    padding: 8px 20px;
    border-radius: 50px;
}
.corp-nav__right {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-left: auto;
    flex-shrink: 0;
}
.corp-nav__contact-btn {
    font-size: 15px;
    font-weight: 700;
    color: #3B0000;
    background: #fff;
    padding: 10px 28px;
    border-radius: 50px;
    transition: all .2s;
    white-space: nowrap;
}
.corp-nav__contact-btn:hover {
    background: #FDF5EC;
    transform: translateY(-1px);
}
.corp-nav__lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #C5960C;
    background: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    transition: all .2s;
}
.corp-nav__lang-btn:hover { opacity: .85; }
.corp-nav__mobile-toggle {
    display: none;
    font-size: 24px;
    color: #fff;
    margin-left: auto;
}


/* ============================================================
   MOBILE MENU
   ============================================================ */
.corp-mobile-menu {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 200;
    pointer-events: none;
    opacity: 0;
    transition: opacity .3s;
}
.corp-mobile-menu.active {
    pointer-events: auto;
    opacity: 1;
}
.corp-mobile-menu__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
}
.corp-mobile-menu__panel {
    position: absolute;
    top: 0; right: 0;
    width: 320px;
    height: 100%;
    background: #fff;
    padding: 32px 28px;
    transform: translateX(100%);
    transition: transform .35s ease;
    overflow-y: auto;
}
.corp-mobile-menu.active .corp-mobile-menu__panel {
    transform: translateX(0);
}
.corp-mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}
.corp-mobile-menu__logo { height: 40px; }
.corp-mobile-menu__close { font-size: 22px; color: #3B0000; }
.corp-mobile-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.corp-mobile-menu__nav a {
    font-size: 18px;
    font-weight: 600;
    color: #3B0000;
    transition: color .2s;
}
.corp-mobile-menu__nav a:hover { color: #C5960C; }


/* ============================================================
   HERO
   ============================================================ */
.sust-hero {
    background: #C5960C;
    overflow: hidden;
}
.sust-hero__inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    min-height: 520px;
    padding: 60px 56px;
    position: relative;
}
.sust-hero__text {
    flex: 1;
    min-width: 0;
    z-index: 1;
}
.sust-hero__title {
    font-size: 80px;
    font-weight: 900;
    color: #fff;
    line-height: 1.25;
}
.sust-hero__highlight {
    display: inline;
    background: #3B0000;
    color: #CDFF50;
    padding: 8px 24px;
    font-style: italic;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    margin-top: 8px;
}
.sust-hero__image {
    flex-shrink: 0;
    z-index: 1;
}
.sust-hero__image-frame {
    width: 480px;
    height: 420px;
    border-radius: 28px;
    border: 5px solid #3B0000;
    overflow: hidden;
    transform: rotate(3deg);
}
.sust-hero__image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ============================================================
   SUSTAINABILITY INTRO
   ============================================================ */
.sust-intro {
    padding: 120px 0 80px;
}
.sust-intro__text-block {
    max-width: 820px;
    margin: 0 auto;
}
.sust-intro__title {
    font-size: 38px;
    font-weight: 800;
    color: #3B0000;
    margin-bottom: 36px;
}
.sust-intro__columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
.sust-intro__columns p {
    font-size: 15px;
    line-height: 1.8;
    color: #6b5050;
}
.sust-intro__columns strong {
    color: #3B0000;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}


/* ============================================================
   CREATING POSITIVE IMPACT — wavy banner
   ============================================================ */
.sust-wave {
    padding: 160px 0 140px;
    position: relative;
    overflow: hidden;
}
.sust-wave__wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.sust-wave__line {
    width: 100%;
    height: 100%;
}
.sust-wave__title {
    font-size: 72px;
    font-weight: 900;
    color: #3B0000;
    line-height: 1.15;
    position: relative;
    z-index: 2;
}
.sust-wave__accent {
    color: #C5960C;
}


/* ============================================================
   SUSTAINABILITY INITIATIVES
   ============================================================ */
.sust-initiatives {
    padding: 100px 0;
}
.sust-initiatives__heading {
    font-size: 36px;
    font-weight: 800;
    color: #3B0000;
    margin-bottom: 48px;
}

/* Two-column row */
.sust-initiatives__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

/* Single centered card */
.sust-initiatives__single {
    max-width: 600px;
}

/* Card block (icon card + text) */
.sust-initiatives__card-block h3 {
    font-size: 24px;
    font-weight: 800;
    color: #3B0000;
    margin-bottom: 16px;
}
.sust-initiatives__card-block p {
    font-size: 14px;
    line-height: 1.75;
    color: #6b5050;
    margin-bottom: 12px;
}
.sust-initiatives__card-block p:last-child {
    margin-bottom: 0;
}

/* Orange icon card */
.sust-initiatives__card {
    background: #C5960C;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    margin-bottom: 28px;
    aspect-ratio: 1.4 / 1;
}
.sust-initiatives__card svg {
    width: 160px;
    height: auto;
}


/* ============================================================
   FULL-WIDTH PHOTO
   ============================================================ */
.sust-photo {
    padding: 40px 0 80px;
}
.sust-photo__frame {
    border-radius: 24px;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}
.sust-photo__frame img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}


/* ============================================================
   FOOTER
   ============================================================ */
.corp-footer {
    background: #e8e0d5;
    padding: 80px 0 40px;
}
.corp-footer__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 56px;
}
.corp-footer__logo img { height: 48px; }
.corp-footer__social {
    display: flex;
    gap: 14px;
}
.corp-footer__social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #C5960C;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: transform .2s;
}
.corp-footer__social a:hover { transform: scale(1.1); }

.corp-footer__contacts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 56px;
}
.corp-footer__contact-item h4 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 6px;
}
.corp-footer__contact-item p {
    font-size: 13px;
    color: #6b5050;
    margin-bottom: 10px;
}
.corp-footer__contact-item a {
    font-size: 13px;
    color: #3B0000;
    text-decoration: underline;
}

.corp-footer__links {
    display: flex;
    gap: 100px;
    margin-bottom: 56px;
}
.corp-footer__col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.corp-footer__col h5 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 6px;
}
.corp-footer__col a {
    font-size: 14px;
    color: #6b5050;
    text-decoration: underline;
    transition: color .2s;
}
.corp-footer__col a:hover { color: #3B0000; }

.corp-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 0;
    border-top: 1px solid rgba(59,0,0,.12);
    margin-bottom: 24px;
}
.corp-footer__app {
    display: flex;
    align-items: center;
    gap: 12px;
}
.corp-footer__app-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    overflow: hidden;
}
.corp-footer__app-icon img { width: 100%; height: 100%; object-fit: cover; }
.corp-footer__app-text {
    font-size: 14px;
    font-weight: 600;
}
.corp-footer__stores {
    display: flex;
    gap: 12px;
}
.corp-footer__store-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid rgba(59,0,0,.15);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    transition: background .2s;
}
.corp-footer__store-badge:hover { background: rgba(255,255,255,.5); }
.corp-footer__lang a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border: 1px solid rgba(59,0,0,.15);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

.corp-footer__legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(59,0,0,.08);
    font-size: 13px;
    color: #6b5050;
}
.corp-footer__legal a { text-decoration: underline; }


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .sust-hero__title { font-size: 60px; }
    .sust-hero__image-frame { width: 380px; height: 340px; }
    .sust-wave__title { font-size: 56px; }
}

@media (max-width: 900px) {
    .corp-nav { padding: 0 24px; }
    .corp-nav__links,
    .corp-nav__right { display: none; }
    .corp-nav__mobile-toggle { display: block; }

    .sust-container { padding: 0 24px; }

    .sust-hero__inner {
        flex-direction: column;
        padding: 40px 24px;
        min-height: auto;
        gap: 40px;
    }
    .sust-hero__title { font-size: 48px; }
    .sust-hero__image-frame {
        width: 100%;
        height: 300px;
        transform: none;
    }

    .sust-intro { padding: 80px 0 60px; }
    .sust-intro__columns { grid-template-columns: 1fr; gap: 20px; }

    .sust-wave { padding: 100px 0 80px; }
    .sust-wave__title { font-size: 40px; }

    .sust-initiatives__row { grid-template-columns: 1fr; }
    .sust-initiatives__single { max-width: 100%; }

    .corp-footer__contacts { grid-template-columns: 1fr; gap: 24px; }
    .corp-footer__links { flex-direction: column; gap: 32px; }
    .corp-footer__bottom { flex-direction: column; gap: 20px; }
}

@media (max-width: 480px) {
    .sust-hero__title { font-size: 36px; }
    .sust-wave__title { font-size: 30px; }
    .sust-initiatives__heading { font-size: 28px; }
    .sust-initiatives__card { padding: 24px; }
    .corp-footer__top { flex-direction: column; gap: 20px; }
}
