@font-face {
    font-family: "Inter Display";
    src: url("../fonts/Inter-4.1/web/InterDisplay-Regular.woff2") format("woff2");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Inter Display";
    src: url("../fonts/Inter-4.1/web/InterDisplay-Medium.woff2") format("woff2");
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: "Inter Display";
    src: url("../fonts/Inter-4.1/web/InterDisplay-SemiBold.woff2") format("woff2");
    font-style: normal;
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: "Inter Display";
    src: url("../fonts/Inter-4.1/web/InterDisplay-Bold.woff2") format("woff2");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: "Inter Display";
    src: url("../fonts/Inter-4.1/web/InterDisplay-ExtraBold.woff2") format("woff2");
    font-style: normal;
    font-weight: 800;
    font-display: swap;
}

@font-face {
    font-family: "Inter Display";
    src: url("../fonts/Inter-4.1/web/InterDisplay-Black.woff2") format("woff2");
    font-style: normal;
    font-weight: 900;
    font-display: swap;
}
@font-face {
    font-family: "IBM Plex Sans";
    src: url("../fonts/IBM-Plex-Sans/IBM Plex Sans Var-Roman.woff2") format("woff2");
    font-style: normal;
    font-weight: 100 700;
    font-display: swap;
}

@font-face {
    font-family: "IBM Plex Sans";
    src: url("../fonts/IBM-Plex-Sans/IBM Plex Sans Var-Italic.woff2") format("woff2");
    font-style: italic;
    font-weight: 100 700;
    font-display: swap;
}
:root {
 --ebg-black: #000;
 --ebg-white: #fff;
 --ebg-paper: #f4f4f6;
 --ebg-gray: #666;
 --ebg-green: #6b9e55;
 --ebg-max: 1440px;
 --header-h: 70px;
}

* {
 box-sizing: border-box;
}

html {
 scroll-behavior: smooth;
}

html.lenis {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.lenis.lenis-scrolling iframe {
  pointer-events: none;
}
html,
body {
    font-family: "Inter Display", "Inter Display Placeholder", sans-serif;
}
body {
 margin: 0;
 background: #fff;
 color: #000;
 font-size: 16px;
 line-height: 1.25;
 -webkit-font-smoothing: antialiased;
}
img,
video {
 max-width: 100%;
 display: block;
}
a {
 color: inherit;
 text-decoration: none;
}
button,
input,
select,
textarea {
 font: inherit;
}
.site-shell {
 min-height: 100vh;
 overflow: hidden;
}
.brandmark {
 position: fixed;
 z-index: 110;
 top: 15px;
 left: 20px;
 display: flex;
 flex-direction: column;
 align-items: flex-end;
 width: 334px;
 mix-blend-mode: difference;
 color: #fff;
 line-height: 1;
 pointer-events: auto;
}
.brandmark .brandmark-logo {
    width: 100%;
    height: auto;
    display: block;
    filter: invert(1); 
}

/* Base header with alignment lock and transitions */
.site-header {
 position: fixed;
 z-index: 105;
 top: 0;
 right: 0;
 background: #fff;
 min-height: 56px; /* Sleeker height (reduced from 70px) */
 display: flex;
 align-items: center;
 padding: 0 20px; /* Sleeker padding */
 box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.03);
 justify-content: flex-end; /* LOCKS alignment so nav items don't shift left */
 transition: background 0.4s ease, backdrop-filter 0.4s ease, width 0.4s ease, left 0.4s ease, box-shadow 0.4s ease !important;
}

/* Glassmorphism class added via JS */
.site-header.header-glass {
 left: 0 !important;
 width: 100% !important;
 background: rgba(255, 255, 255, 0.75) !important; /* Semi-transparent White */
 backdrop-filter: blur(16px) !important;
 -webkit-backdrop-filter: blur(16px) !important;
 box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05) !important; /* Soft depth shadow */
}

.site-header nav {
 display: flex;
 align-items: center;
 gap: 28px; /* Tighter gap between links */
 font-family: "Inter Display", "Inter Display Placeholder", sans-serif;
 font-size: 14px; /* Sleeker text size */
 font-weight: 500; /* Balanced font weight */
}

.site-header a.nav-link {
 font-family: "IBM Plex Sans", "IBM Plex Sans Placeholder", sans-serif;
 font-weight: 500;
 position: relative;
 padding: 8px 0; /* Removed bulky vertical padding */
}

.site-header a.nav-link:after {
 content: "";
 position: absolute;
 left: 0;
 bottom: 2px; /* Underline closer to the text */
 width: 0;
 height: 1px;
 background: #000;
 transition: width 0.25s ease;
}

.site-header a.nav-link:hover:after,
.site-header a.nav-link[aria-current="page"]:after {
 width: 100%;
}

/* Make the Contact Us button specifically sleeker in the header */
.site-header .nav-cta {
 min-height: 38px;
 padding: 8px 20px;
 font-size: 13px;
 margin-left: 8px; /* Slight separation from the text links */
}

/* Mobile Toggle adjusted for sleekness */
.menu-toggle {
 display: none;
 background: #000;
 color: #fff;
 border: 0;
 width: 40px; /* Sleeker button */
 height: 40px;
 cursor: pointer;
 align-items: center;
 justify-content: center;
}
.menu-toggle i,
.menu-toggle i:before,
.menu-toggle i:after {
 content: "";
 display: block;
 width: 18px;
 height: 2px;
 background: currentColor;
 position: relative;
}
.menu-toggle i:before {
 position: absolute;
 top: -5px;
}
.menu-toggle i:after {
 position: absolute;
 top: 5px;
}
.btn-ebg {
 position: relative;
 isolation: isolate;
 display: inline-flex;
 align-items: center;
 justify-content: center;
 min-height: 48px;
 padding: 12px 24px;
 background: #000;
 color: #fff;
 border: 1px solid #000;
 font-family: "Inter Display", "Inter Display Placeholder", sans-serif;
 font-weight: 700;
 font-size: 14px;
 overflow: hidden;
 transition: color 0.25s ease, background 0.25s ease;
}
.btn-ebg:before {
 content: "";
 position: absolute;
 z-index: -1;
 left: 0;
 bottom: 0;
 width: 7px;
 height: 7px;
 background: #fff;
 transition: width 0.25s ease, height 0.25s ease;
}
.btn-ebg:hover {
 color: #000;
}
.btn-ebg:hover:before {
 width: 100%;
 height: 100%;
}
.btn-light {
 background: #fff;
 color: #000;
 border-color: #fff;
}
.btn-light:before {
 background: #000;
}
.btn-light:hover {
 color: #fff;
}
.kicker {
    font-family: "Inter Display", "Inter Display Placeholder", sans-serif;
 font-size: 12px;
 font-weight: 700;
 letter-spacing: 0.08em;
 text-transform: uppercase;
}

/* Update Display Fonts */
.display-xl,
.display-lg,
.display-md {
 font-family: "Inter Display", "Inter Display Placeholder", sans-serif;
}

.display-xl {
 font-size: clamp(48px, 7vw, 110px);
 font-weight: 400;
 line-height: 0.9;
 letter-spacing: -0.055em;
}

.display-lg {
 font-size: clamp(42px, 5.5vw, 82px);
 font-weight: 400;
 line-height: 0.95;
 letter-spacing: -0.045em;
}

.display-md {
 font-size: clamp(34px, 4vw, 60px);
 font-weight: 400;
 line-height: 1;
 letter-spacing: -0.04em;
}

/* Update Hero Heading */
.hero-card h1 {
 grid-column: 1/-1;
 margin: 0;
 font-family: "Inter Display", "Inter Display Placeholder", sans-serif;
 font-size: clamp(42px, 4.2vw, 72px);
 font-weight: 400;
 letter-spacing: -0.045em;
 line-height: 1;
}

/* Update Button and Nav Fonts (Optional: Remove if you want them to stay Inter Display) */
.site-header nav,
.btn-ebg,
.kicker {
 font-family: "Inter Display", "Inter Display Placeholder", sans-serif;
}


.copy-lg {
 font-size: clamp(18px, 2vw, 26px);
 line-height: 1.25;
}
.muted {
 color: #6d6d6d;
}
.container-ebg {
 width: min(calc(100% - 80px), var(--ebg-max));
 margin-inline: auto;
}
.section {
 padding: 96px 0;
}
.section-sm {
 padding: 64px 0;
}
.section-black {
 background: #000;
 color: #fff;
}
.hairline {
 border-top: 1px solid currentColor;
}
.hero-home {
 height: 100vh;
 min-height: 640px;
 position: relative;
 display: flex;
 align-items: flex-end;
 overflow: hidden;
 background: linear-gradient(135deg, #80909a, #4f5a60 55%, #8a755e);
}
.hero-home video {
 position: absolute;
 inset: 0;
 width: 100%;
 height: 100%;
 object-fit: cover;
}
.hero-card {
 position: relative;
 z-index: 2;
 width: 538px;
 min-height: 292px;
 padding: 32px 34px 24px;
 background: linear-gradient(#ffffffb0, #fff);
 backdrop-filter: blur(13px);
 -webkit-backdrop-filter: blur(13px);
 display: grid;
 grid-template-columns: 1fr auto;
 grid-template-rows: auto 1fr auto;
 gap: 12px;
}
.hero-card h1 {
 grid-column: 1/-1;
 margin: 0;
 font-family: "Inter Display", "Inter Display Placeholder", sans-serif;
 font-size: clamp(42px, 4.2vw, 72px);
 font-weight: 400;
 letter-spacing: -0.045em;
 line-height: 1;
}
.hero-card h1 span {
 display: block;
 text-align: right;
}
.hero-card p {
 align-self: end;
 max-width: 360px;
 font-size: 18px;
}
.hero-card .btn-ebg {
 align-self: end;
}
.feature-grid {
 display: grid;
 grid-template-columns: repeat(3, minmax(0, 1fr));
 gap: 32px;
}


/* Lock aspect ratio for desktop */
.feature-card {
    position: relative;
    aspect-ratio: 4 / 5; 
    min-height: auto !important; 
    overflow: hidden;
    background: #e9e9e7;
}

.feature-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.feature-card:hover img {
    transform: scale(1.08); 
}

.feature-card::after {
    display: none !important; 
}

/* Strict padding locks the text inside without needing max-width */
.feature-card .feature-copy {
    position: absolute;
    inset: 0 !important; 
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; 
    padding: 32px 25% 32px 32px !important; /* 25% right padding FORCES text to wrap safely inside */
    background: transparent !important; 
}

/* Dynamic White Box */
.feature-card .feature-copy::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 85%; /* Safely extends past the 25% text padding */
    height: 55%; /* Adapts dynamically if the card grows */
    min-height: 280px; /* Fallback so it's never too short for wrapped text */
    background: #ffffff;
    z-index: -1; 
    transition: all 0.5s ease-in-out; 
}

/* Hover State Glassmorphism */
.feature-card:hover .feature-copy::before {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85); 
    backdrop-filter: blur(12px); 
    -webkit-backdrop-filter: blur(12px);
}

/* Text stays pitch black and layered correctly */
.feature-card .feature-copy h3,
.feature-card .feature-copy p {
    position: relative;
    z-index: 2; 
    max-width: 100%; /* Automatically fills the padded area */
    margin-left: 0;
}

.feature-card .feature-copy h3 {
    color: #000 !important; 
    font-size: 25px;
    font-weight: 500;
    margin: 0 0 12px 0;
}

.feature-card .feature-copy p {
    color: #222 !important; 
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}


.segment-head {
 display: flex;
 align-items: flex-end;
 justify-content: space-between;
 gap: 32px;
 margin-bottom: 54px;
}
.segment-grid {
 display: grid;
 grid-template-columns: repeat(4, minmax(0, 1fr));
 gap: 30px;
}
.segment-card {
 display: block;
}
.segment-card .img {
 aspect-ratio: 1.65;
 overflow: hidden;
 background: #222;
}
.segment-card img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 filter: saturate(0.85);
 transition: filter 0.25s, transform 0.45s;
}
.segment-card:hover img {
 filter: saturate(1.2);
 transform: scale(1.035);
}
.segment-card h3 {
 font-size: 15px;
 font-weight: 400;
 margin: 12px 0 0;
}
.brands-strip {
 display: flex;
 gap: 30px;
 overflow: auto;
 padding-bottom: 18px;
 scroll-snap-type: x proximity;
}
.brand-tile {
 flex: 0 0 280px;
 height: 333px;
 background: #141414;
 position: relative;
 overflow: hidden;
 scroll-snap-align: start;
}
.brand-tile:after {
 content: "";
 position: absolute;
 inset: 0;
 background: linear-gradient(transparent 45%, rgba(0, 0, 0, 0.75));
}
.brand-tile img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 opacity: 0.72;
}
.brand-tile strong,
.brand-tile small {
 position: absolute;
 z-index: 2;
 left: 20px;
}
.brand-tile strong {
 bottom: 40px;
}
.brand-tile small {
 bottom: 20px;
 color: #bbb;
}
.vision-grid {
 display: grid;
 grid-template-columns: 400px 1fr;
 align-items: stretch;
 max-width: 1300px;
 margin: auto;
}
.vision-copy {
 background: #f4f4f6;
 padding: 30px;
 display: flex;
 flex-direction: column;
 gap: 32px;
}
.vision-copy h2 {
 font-size: 28px;
 font-weight: 400;
}
.vision-copy p {
 font-size: 16px;
 line-height: 1.4;
}
.vision-photo {
 min-height: 500px;
 background: #ddd;
 overflow: hidden;
}
.vision-photo img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 object-position: center 25%;
}




/* More About Section */
.more-grid {
    display: grid;
    /* First column takes ~22% for the title/button, the rest splits equally */
    grid-template-columns: 0.8fr 1fr 1fr 1fr; 
    gap: 28px; /* Clean gap between cards */
    align-items: flex-start; /* Align content to the top */
}

/* Flex layout for the title and button column */
.more-grid > div:first-child {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 38px; /* Exact spacing between heading and button */
}

.more-grid h2 {
    margin: 0;
    font-size: clamp(24px, 2.5vw, 32px);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.more-grid .mini-card {
    display: flex;
    flex-direction: column;
    gap: 16px; /* Spacing between image and text */
}

.more-grid .mini-card img {
    width: 100%;
    aspect-ratio: 2.8 / 1; /* Creates the wide, panoramic landscape crop */
    object-fit: cover;
    background: #f4f4f6;
    transition: transform 0.4s ease;
}

.more-grid .mini-card:hover img {
    transform: scale(1.02); /* Subtle hover effect */
}

.more-grid h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.more-grid small {
    margin: 0;
    font-size: 14px;
    color: #666;
}

/* Tablet Override */
@media (max-width: 1199.98px) {
    
}

/* Mobile Override */
@media (max-width: 809.98px) {
    .more-grid {
        grid-template-columns: 1fr; /* Stack vertically on small screens */
        gap: 32px;
    }
    .more-grid .mini-card img {
        aspect-ratio: 16 / 9; /* Slightly taller aspect ratio on mobile for better visibility */
    }
}




/* =========================================
   News Swiper Section
   ========================================= */

.news-card {
    display: flex !important; /* Flexbox ensures cards stretch to equal heights */
    flex-direction: column;
    border-top: 1px solid #000;
    padding-top: 14px;
    height: auto; /* Let Swiper handle the height matching */
}

/* Image locking */
.news-card img {
    width: 100%;
    aspect-ratio: 1.22;
    object-fit: cover;
    background: #ddd;
    margin-bottom: 16px;
}

/* Content wrapper pushes bottom elements down */
.news-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Pushes the Read More button to the bottom */
}

/* Title: Locked to max 2 lines with ellipsis */
.news-card h3 {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
    margin: 0 0 10px 0;
    color: #111;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Truncates after 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Description: Locked to max 3 lines with ellipsis */
.news-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin: 0 0 16px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Truncates after 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card time {
    font-size: 12px;
    color: #888;
    margin-bottom: 16px;
    display: block;
}

/* Read More Button anchored to bottom left */
.news-read-more {
    margin-top: auto; /* Pushes button to the very bottom of the flex container */
    font-family: "Inter Display", "Inter Display Placeholder", sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    transition: transform 0.25s ease;
}

.news-read-more:hover {
    transform: translateX(4px); /* Slight nudge right on hover */
}

/* -------------------------------------
   Dark Swiper Controls Specific to News
   ------------------------------------- */

/* Force arrows to be black */
.news-controls .swiper-btn {
    color: #000;
    border-color: #000;
}

.news-controls .swiper-btn:hover {
    background: #000;
    color: #fff;
}

/* Override dot colors for the white background */
.news-controls .swiper-pagination-bullet {
    background-color: #ccc; 
}

.news-controls .swiper-pagination-bullet-active {
    background-color: #000; 
}


/* =========================================
   Footer Section
   ========================================= */
.footer {
    background: #000;
    color: #fff;
    padding: 80px 0 30px;
    font-family: "Inter Display", "Inter Display Placeholder", sans-serif;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: flex-start;
    padding-bottom: 60px;
}

.footer-top h2 {
    margin: 0;
    font-size: clamp(32px, 4vw, 45px); /* Perfectly scaled to the screenshot */
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.footer-side {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
}

.footer-side p {
    margin: 0;
    font-size: 18px;
    line-height: 1.5;
    color: #fff;
    max-width: 480px;
}

/* Middle Section: SDG Block */
.sdg-block {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.sdg-main-logo {
    width: min(100%, 550px);
    margin-bottom: 10px;
}

.sdg-block p {
    font-size: 14px;
    line-height: 1.6;
    color: #fff;
    margin: 0;
}

.sdg-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.sdg-icons img {
    width: clamp(50px, 8vw, 90px);
    height: auto;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.sdg-icons a:hover img {
    transform: translateY(-5px);
}

/* Bottom Section: Footer Links & Socials Row */
.footer-links-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2); /* Faded divider line */
    flex-wrap: wrap;
    gap: 30px;
}

.footer-nav {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-nav a {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.footer-nav a:hover {
    color: #ccc;
}

/* Social Icons via FontAwesome */
.socials {
    display: flex;
    gap: 12px;
}

.socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    text-decoration: none;
    transition: transform 0.25s ease, background 0.25s ease;
}

.socials a:hover {
    transform: scale(1.1);
    background: #e0e0e0;
}

/* Copyright & Legal Row */
.footer-legal-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    font-size: 13px;
    color: #888;
    flex-wrap: wrap;
    gap: 20px;
}

.legal-links {
    display: flex;
    gap: 40px;
}

.legal-links a {
    color: #888;
    text-decoration: none;
    transition: color 0.2s ease;
}

.legal-links a:hover {
    color: #fff;
}

/* Responsive Overrides */
@media (max-width: 810px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-links-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-legal-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .legal-links {
        gap: 20px;
        flex-direction: column;
    }
}


/* Inner pages */
.inner-hero {
 min-height: 650px;
 padding: 100px 0 70px;
 display: flex;
 align-items: flex-end;
 position: relative;
}
.inner-hero.split {
 display: grid;
 grid-template-columns: 1fr 1fr;
 align-items: stretch;
 padding: 0;
 min-height: 760px;
}
.inner-hero .hero-copy {
 padding: 120px 70px 70px;
 display: flex;
 flex-direction: column;
 justify-content: flex-end;
}
.inner-hero .hero-media {
 min-height: 600px;
 background: #ddd;
 overflow: hidden;
}
.inner-hero .hero-media img {
 width: 100%;
 height: 100%;
 object-fit: cover;
}
.stats-row {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 border-top: 1px solid #000;
 border-bottom: 1px solid #000;
}
.stat {
 padding: 28px;
 border-right: 1px solid #000;
}
.stat:last-child {
 border-right: 0;
}
.stat strong {
 display: block;
 font-family: "Inter Display", "Inter Display Placeholder", sans-serif;
 font-size: clamp(44px, 5vw, 78px);
 font-weight: 400;
 letter-spacing: -0.05em;
}
.editorial-grid {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 70px;
 align-items: start;
}
.editorial-grid .media {
 overflow: hidden;
 background: #eee;
}
.editorial-grid .media img {
 width: 100%;
 height: 100%;
 object-fit: cover;
}
.editorial-copy {
 padding-top: 12px;
}
.editorial-copy p {
 font-size: 20px;
 line-height: 1.35;
}
.timeline {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 border-top: 1px solid #000;
}
.timeline article {
 padding: 24px;
 border-right: 1px solid #000;
}
.timeline article:last-child {
 border-right: 0;
}
.timeline h3 {
 font-size: 42px;
 font-weight: 400;
}
.principles {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 border-top: 1px solid currentColor;
 border-left: 1px solid currentColor;
}
.principles article {
 padding: 28px;
 min-height: 210px;
 border-right: 1px solid currentColor;
 border-bottom: 1px solid currentColor;
}
.principles h3 {
 font-size: 22px;
 font-weight: 400;
 margin-top: 28px;
}
.team-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 24px;
}
.team-card .portrait {
 aspect-ratio: 0.86;
 background: linear-gradient(140deg, #eee, #cfcfcf);
 overflow: hidden;
}
.team-card .portrait img {
 width: 100%;
 height: 100%;
 object-fit: cover;
}
.team-card .meta {
 padding: 18px;
}
.brand-category {
 padding: 34px 0 50px;
 border-top: 1px solid #000;
}
.brand-category-head {
 display: grid;
 grid-template-columns: 1fr 3fr;
 gap: 30px;
 margin-bottom: 24px;
}
.brand-category h2 {
 font-size: clamp(34px, 4vw, 56px);
 font-weight: 400;
 letter-spacing: -0.03em;
}
.brand-grid {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 gap: 18px;
}

.brand-card {
    position: relative;
    min-height: 220px;
    padding: 0 !important; /* Reset default padding */
    display: flex !important;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    transition: transform 0.3s ease;
}

/* Background Image wrapper */
.brand-card .brand-img-wrap {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.brand-card .brand-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* Hover Zoom Effect */
.brand-card:hover .brand-img-wrap img {
    transform: scale(1.06);
}

/* Text Content Box at the Bottom */
.brand-card > div:last-child {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    padding: 20px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: background 0.3s ease;
}

.brand-card:hover > div:last-child {
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.brand-card span {
    font-size: 11px;
    color: #bbb;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.brand-card strong {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin: 0;
}

.manifesto {
 font-size: clamp(32px, 4.8vw, 72px);
 line-height: 1.02;
 letter-spacing: -0.04em;
 max-width: 1150px;
}
.green-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 22px;
}
.green-card {
 background: #e9efe6;
 min-height: 480px;
 display: flex;
 flex-direction: column;
}
.green-card img {
 height: 260px;
 width: 100%;
 object-fit: cover;
}
.green-card .copy {
 padding: 24px;
}
.green-card h3 {
 font-size: 26px;
 font-weight: 400;
}
.green-card strong {
 font-size: 48px;
 font-weight: 400;
}
.office-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 28px;
}
.office-card {
 border: 1px solid #ddd;
 background: #fff;
}
.office-card img {
 width: 100%;
 aspect-ratio: 1.6;
 object-fit: cover;
 background: #eee;
}
.office-card .copy {
 padding: 20px;
}
.office-card h3 {
 font-size: 24px;
 font-weight: 400;
 margin: 0 0 10px;
}
.office-card p {
 font-size: 14px;
 line-height: 1.35;
}
.faq {
 border-top: 1px solid #000;
}
.faq details {
 border-bottom: 1px solid #000;
 padding: 20px 0;
}
.faq summary {
 cursor: pointer;
 font-size: 21px;
 list-style: none;
 display: flex;
 justify-content: space-between;
}
.faq summary:after {
 content: "+";
}
.faq details[open] summary:after {
 content: "−";
}
.faq p {
 max-width: 780px;
 color: #555;
 line-height: 1.5;
}
.form-grid {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 20px;
}
.field {
 display: flex;
 flex-direction: column;
 gap: 8px;
}
.field.full {
 grid-column: 1/-1;
}
.field input,
.field textarea,
.field select {
 border: 0;
 border-bottom: 1px solid #000;
 padding: 14px 4px;
 background: transparent;
 outline: none;
}
.field textarea {
 min-height: 120px;
 resize: vertical;
}
.legal {
 max-width: 950px;
 margin: auto;
}
.legal h1 {
 font-size: clamp(52px, 7vw, 100px);
 font-weight: 400;
 letter-spacing: -0.05em;
}
.legal h2 {
 font-size: 28px;
 font-weight: 400;
 margin-top: 44px;
}
.legal p,
.legal li {
 line-height: 1.55;
 color: #333;
}
.blog-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 30px;
}
.blog-card {
 border-top: 1px solid #000;
 padding-top: 16px;
}
.blog-card .thumb {
 aspect-ratio: 1.35;
 background: #e8e8e8;
 display: grid;
 place-items: center;
 font-size: 58px;
}
.blog-card h3 {
 font-size: 26px;
 font-weight: 400;
 line-height: 1.05;
}
.article {
 max-width: 900px;
 margin: auto;
}
.article h1 {
 font-size: clamp(48px, 6vw, 86px);
 font-weight: 400;
 line-height: 0.96;
 letter-spacing: -0.05em;
}
.article .lead {
 font-size: 24px;
 line-height: 1.35;
}
.article h2 {
 font-size: 34px;
 font-weight: 400;
 margin-top: 44px;
}
.article p {
 font-size: 18px;
 line-height: 1.6;
}
.seo-hero {
 padding: 160px 0 80px;
 border-bottom: 1px solid #000;
}
.seo-hero h1 {
 max-width: 1100px;
}
.seo-body {
 display: grid;
 grid-template-columns: 340px 1fr;
 gap: 80px;
}
.seo-aside {
 position: sticky;
 top: 100px;
 height: max-content;
}
.seo-content section {
 padding: 34px 0;
 border-top: 1px solid #000;
}
.seo-content h2 {
 font-size: 40px;
 font-weight: 400;
 letter-spacing: -0.03em;
}
.seo-content p,
.seo-content li {
 font-size: 18px;
 line-height: 1.55;
}
.food-hero {
 min-height: 720px;
 background: #111;
 color: #fff;
 display: grid;
 grid-template-columns: 1.2fr 0.8fr;
 align-items: stretch;
}
.food-hero .copy {
 padding: 150px 70px 60px;
 display: flex;
 flex-direction: column;
 justify-content: flex-end;
}
.food-hero .lead-form {
 background: #f1ede4;
 color: #000;
 padding: 120px 50px 50px;
 display: flex;
 flex-direction: column;
 justify-content: center;
}
.food-hero h1 {
 font-size: clamp(60px, 7vw, 110px);
 font-weight: 400;
 line-height: 0.9;
 letter-spacing: -0.05em;
}
.food-snapshot {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 border: 1px solid #000;
}
.food-snapshot article {
 padding: 32px;
 border-right: 1px solid #000;
}
.food-snapshot article:last-child {
 border-right: 0;
}
.thankyou {
 min-height: 70vh;
 display: grid;
 place-items: center;
 text-align: center;
 padding: 100px 20px;
}
.thankyou h1 {
 font-size: clamp(72px, 12vw, 180px);
 font-weight: 400;
 letter-spacing: -0.06em;
 margin: 0;
}
.reveal {
 opacity: 0;
 transform: translateY(18px);
 transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.in {
 opacity: 1;
 transform: none;
}
@media (max-width: 1199.98px) {
 .brandmark {
  width: 230px;
 }
 .brandmark span {
  font-size: 25px;
 }
 .feature-grid {
  grid-template-columns: repeat(2, 1fr);
 }
 .feature-card:last-child {
   grid-column: 1/-1; /*[cite: 3] */
   aspect-ratio: 2 / 1; /* Forces a landscape shape to kill the extreme height */
  }

 .segment-grid {
  grid-template-columns: repeat(2, 1fr);
 }
 .vision-grid {
     grid-template-columns: 1fr; /* Changes to full width stack on tablets */
     gap: 24px;
   }

   .more-grid {
       grid-template-columns: 1fr 1fr; /* Switch to a 2x2 grid */
       gap: 40px 24px;
   }
 .news-grid {
  grid-template-columns: repeat(2, 1fr);
 }
 .inner-hero.split {
  grid-template-columns: 1fr 1fr;
 }
 .brand-grid {
  grid-template-columns: repeat(3, 1fr);
 }
 .office-grid {
  grid-template-columns: repeat(2, 1fr);
 }
 .team-grid {
  grid-template-columns: repeat(2, 1fr);
 }
}
@media (max-width: 809.98px) {
 :root {
  --header-h: 64px;
 }
 .container-ebg {
  width: min(calc(100% - 40px), var(--ebg-max));
 }
 .section {
  padding: 60px 0;
 }
 .brandmark {
  width: 154px;
  top: 13px;
  left: 18px;
  gap: 0;
 }
 .brandmark span {
  font-size: 22px;
  margin-top: -8px;
 }
 .site-header {
  left: 0;
  right: 0;
  min-height: 64px;
  justify-content: flex-end;
  padding: 9px 18px;
  background: rgba(255, 255, 255, 0.97);
 }
 .site-header nav {
  display: none;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  background: #fff;
  padding: 24px 20px 34px;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  border-top: 1px solid #eee;
 }
 .site-header.open nav {
  display: flex;
 }
 .site-header a.nav-link {
  padding: 10px 0;
  font-size: 20px;
 }
 .site-header .nav-cta {
  margin-top: 8px;
 }
 .menu-toggle {
  display: flex;
 }
 .hero-home {
  min-height: 680px;
 }
 .hero-card {
  width: 100%;
  min-height: 265px;
  padding: 26px 20px 30px;
  grid-template-columns: 1fr auto;
  margin-bottom: -1px;
 }
 .hero-card h1 {
  font-size: 46px;
 }
 .hero-card p {
  font-size: 14px;
  max-width: 220px;
 }
 .hero-card .btn-ebg {
  padding: 10px 16px;
  min-height: 42px;
 }
 .feature-grid {
  grid-template-columns: 1fr;
  gap: 20px;
 }
 .feature-card {
   min-height: 380px; /*[cite: 3] */
   aspect-ratio: 1 / 1; /* Square cards prevent vertical scrolling fatigue */
  }
  
  .feature-card:last-child {
   grid-column: auto; /*[cite: 3] */
   aspect-ratio: 1 / 1; /* Reset the tablet override */
  }
  
  .feature-card .feature-copy {
   padding: 24px 20% 24px 24px !important; /* Slightly reduces padding so text fits nicely on small phones */
  }
 .segment-head {
  align-items: flex-start;
  flex-direction: column;
 }
 .segment-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
 }
 .vision-grid {
  grid-template-columns: 1fr;
 }
 .vision-photo {
  min-height: 350px;
 }
 .more-grid {
  grid-template-columns: 1fr;
 }
 .news-grid {
  grid-template-columns: 1fr;
 }
 .footer-top {
  grid-template-columns: 1fr;
 }
 .footer-links {
  align-items: flex-start;
  flex-direction: column;
 }
 .inner-hero {
  min-height: 580px;
  padding: 90px 0 50px;
 }
 .inner-hero.split {
  grid-template-columns: 1fr;
  min-height: auto;
 }
 .inner-hero .hero-copy {
  padding: 110px 20px 50px;
  min-height: 520px;
 }
 .inner-hero .hero-media {
  min-height: 360px;
 }
 .stats-row {
  grid-template-columns: 1fr;
 }
 .stat {
  border-right: 0;
  border-bottom: 1px solid #000;
 }
 .stat:last-child {
  border-bottom: 0;
 }
 .editorial-grid {
  grid-template-columns: 1fr;
  gap: 35px;
 }
 .editorial-grid .media {
  min-height: 360px;
 }
 .timeline {
  grid-template-columns: 1fr 1fr;
 }
 .timeline article:nth-child(2) {
  border-right: 0;
 }
 .principles {
  grid-template-columns: 1fr;
 }
 .team-grid {
  grid-template-columns: 1fr;
 }
 .brand-category-head {
  grid-template-columns: 1fr;
 }
 .brand-grid {
  grid-template-columns: repeat(2, 1fr);
 }
 .green-grid {
  grid-template-columns: 1fr;
 }
 .office-grid {
  grid-template-columns: 1fr;
 }
 .form-grid {
  grid-template-columns: 1fr;
 }
 .field.full {
  grid-column: auto;
 }
 .blog-grid {
  grid-template-columns: 1fr;
 }
 .seo-body {
  grid-template-columns: 1fr;
  gap: 28px;
 }
 .seo-aside {
  position: static;
 }
 .food-hero {
  grid-template-columns: 1fr;
 }
 .food-hero .copy {
  padding: 130px 20px 60px;
 }
 .food-hero .lead-form {
  padding: 60px 20px;
 }
 .food-snapshot {
  grid-template-columns: 1fr;
 }
 .food-snapshot article {
  border-right: 0;
  border-bottom: 1px solid #000;
 }
 .food-snapshot article:last-child {
  border-bottom: 0;
 }
}
@media (max-width: 420px) {
 .brand-grid {
  grid-template-columns: 1fr;
 }
 .segment-grid {
  grid-template-columns: 1fr;
 }
 .timeline {
  grid-template-columns: 1fr;
 }
 .timeline article {
  border-right: 0;
  border-bottom: 1px solid #000;
 }
 .timeline article:last-child {
  border-bottom: 0;
 }
 .hero-card h1 {
  font-size: 40px;
 }
}
@media (prefers-reduced-motion: reduce) {
 html {
  scroll-behavior: auto;
 }
 .reveal {
  opacity: 1;
  transform: none;
  transition: none;
 }
 .feature-card img,
 .segment-card img {
  transition: none;
 }
}

/* ===== EBG Enhanced Layer ===== */

:root {
 --ebg-ink: #050505;
 --ebg-paper: #f4f4f2;
 --ebg-muted: #686868;
 --ebg-line: #d9d9d6;
 --ebg-accent: #87a878;
 --ebg-max: 1480px;
 --ebg-gutter: clamp(20px, 4vw, 64px);
 --ebg-radius: 0px;
 --header-height: 72px;
}
* {
 box-sizing: border-box;
}
html {
 scroll-behavior: smooth;
}
body {
 margin: 0;
 background: #fff;
 color: var(--ebg-ink);
 font-family: "Inter Display", "Inter Display Placeholder", sans-serif;
 font-size: 16px;
 line-height: 1.35;
 letter-spacing: -0.01em;
 -webkit-font-smoothing: antialiased;
 text-rendering: optimizeLegibility;
}
body.nav-lock {
 overflow: hidden;
}
img,
video {
 display: block;
 max-width: 100%;
}
button,
input,
select,
textarea {
 font: inherit;
}
a {
 color: inherit;
 text-decoration: none;
}
::selection {
 background: #000;
 color: #fff;
}
.site-shell {
 min-height: 100vh;
 overflow: clip;
}
.container-ebg {
 width: min(calc(100% - 2 * var(--ebg-gutter)), var(--ebg-max));
 margin-inline: auto;
}
.container-wide {
 width: min(calc(100% - 20px), 1800px);
 margin-inline: auto;
}
.section {
 padding: clamp(72px, 8vw, 132px) 0;
}
.section-tight {
 padding: clamp(44px, 6vw, 86px) 0;
}
.section-black {
 background: #000;
 color: #fff;
}
.section-paper {
 background: var(--ebg-paper);
}
.section-soft {
 background: #f7f7f5;
}
.hairline {
 border-top: 1px solid currentColor;
}
.eyebrow {
 margin: 0 0 16px;
 font-family: "Inter Display", "Inter Display Placeholder", sans-serif;
 font-size: 12px;
 font-weight: 700;
 letter-spacing: 0.1em;
 text-transform: uppercase;
}
.display-xl,
.display-lg,
.display-md {
 margin: 0;
 font-family: "Inter Display", "Inter Display Placeholder", sans-serif;
 font-weight: 400;
}
.display-xl {
 font-size: clamp(26px, 4vw, 66px);
 line-height: 0.86;
 letter-spacing: -0.065em;
}
.display-lg {
 font-size: clamp(44px, 6vw, 92px);
 line-height: 0.9;
 letter-spacing: -0.055em;
}
.display-md {
 font-size: clamp(34px, 4.2vw, 62px);
 line-height: 0.96;
 letter-spacing: -0.045em;
}
.copy-xl {
 font-size: clamp(22px, 2.6vw, 38px);
 line-height: 1.14;
 letter-spacing: -0.025em;
}
.copy-lg {
 font-size: clamp(18px, 1.5vw, 24px);
 line-height: 1.34;
}
.muted {
 color: var(--ebg-muted);
}
.max-700 {
 max-width: 700px;
}
.max-900 {
 max-width: 900px;
}
.center {
 text-align: center;
}
.page-grid {
 display: grid;
 grid-template-columns: repeat(12, minmax(0, 1fr));
 gap: clamp(18px, 3vw, 48px);
}
.span-5 {
 grid-column: span 5;
}
.span-6 {
 grid-column: span 6;
}
.span-7 {
 grid-column: span 7;
}
.span-8 {
 grid-column: span 8;
}
.stack {
 display: flex;
 flex-direction: column;
}
.cluster {
 display: flex;
 flex-wrap: wrap;
 gap: 12px;
}

/* fixed identity + header */
.brandmark {
 position: fixed;
 z-index: 120;
 top: 15px;
 left: 20px;
 display: flex;
 flex-direction: column;
 align-items: flex-end;
 width: clamp(154px, 19vw, 334px);
 height: auto;
 color: #fff;
 mix-blend-mode: difference;
 transform-origin: 0% 0%;
 will-change: transform;
 transition: none;
 pointer-events: auto;
}
.brandmark .brandmark-logo {
 width: 100%;
 height: auto;
 display: block;
}
/* Footer Active State for Logo */
.brandmark.footer-active {
    background: #000000;
    mix-blend-mode: unset;
    padding: clamp(6px, 1vw, 12px);
    border-radius: 4px;
    transition: background 0.3s ease, padding 0.3s ease;
}

.brandmark .brandmark-name {
 margin-top: -9px;
 margin-right: 0;
 font-family: "Inter Display", "Inter Display Placeholder", sans-serif;
 font-size: 25px;
 line-height: 1;
 font-weight: 700;
 letter-spacing: -0.04em;
}
.site-header {
 position: fixed;
 z-index: 110;
 top: 0;
 right: 0;
 min-height: var(--header-height);
 display: flex;
 align-items: center;
 padding: 0 28px;
 background: rgba(255, 255, 255, 0.98);
 box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}
.primary-nav {
 display: flex;
 align-items: center;
 gap: clamp(20px, 2.7vw, 42px);
 font-family: "Inter Display", "Inter Display Placeholder", sans-serif;
 font-weight: 700;
 font-size: 14px;
}
.primary-nav .nav-link {
 position: relative;
 padding: 25px 0 22px;
}
.primary-nav .nav-link::after {
 content: "";
 position: absolute;
 left: 0;
 right: 100%;
 bottom: 15px;
 height: 1px;
 background: #000;
 transition: right 0.28s ease;
}
.primary-nav .nav-link:hover::after,
.primary-nav .nav-link.is-active::after {
 right: 0;
}
.menu-toggle {
 display: none;
 border: 0;
 background: #000;
 color: #fff;
 width: 48px;
 height: 48px;
 align-items: center;
 justify-content: center;
 cursor: pointer;
}
.menu-toggle-bars,
.menu-toggle-bars::before,
.menu-toggle-bars::after {
 display: block;
 content: "";
 position: relative;
 width: 20px;
 height: 2px;
 background: currentColor;
 transition: transform 0.25s ease;
}
.menu-toggle-bars::before {
 position: absolute;
 top: -7px;
}
.menu-toggle-bars::after {
 position: absolute;
 top: 7px;
}
.site-header.open .menu-toggle-bars {
 transform: rotate(45deg);
}
.site-header.open .menu-toggle-bars::before {
 top: 0;
 transform: rotate(90deg);
}
.site-header.open .menu-toggle-bars::after {
 opacity: 0;
}
@media (max-width: 810px) {
 .site-header {
  left: 0;
  right: 0;
  padding: 8px 18px;
  background: transparent;
  justify-content: flex-end;
  min-height: 64px;
  box-shadow: none;
 }
 
 .primary-nav {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 64px;
  padding: 24px var(--ebg-gutter) 32px;
  background: #fff;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  border-top: 1px solid #ececea;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08); /* Default shadow */
 }

 /* 1. White background on the header when menu is open */
 .site-header.open {
  background: #fff; 
 }

 /* 2. Show the menu and forcefully remove the shadow */
 .site-header.open .primary-nav {
  display: flex;
  box-shadow: none !important;
  border-top: none;
 }

 .primary-nav .nav-link {
  font-size: 20px;
  padding: 9px 0;
 }
 .primary-nav .nav-link::after {
  bottom: 4px;
 }
 .menu-toggle {
  display: flex;
 }
 .brandmark {
  top: 13px;
  left: 18px;
  width: 154px;
 }
 .brandmark .brandmark-name {
  font-size: 22px;
  margin-top: -8px;
 }
}
@media (max-width: 420px) {
 .brandmark {
  width: 132px;
 }
 .brandmark .brandmark-name {
  font-size: 19px;
 }
}

/* buttons */
.btn-ebg {
 position: relative;
 isolation: isolate;
 display: inline-flex;
 align-items: center;
 justify-content: center;
 gap: 12px;
 min-height: 48px;
 padding: 13px 22px;
 background: #000;
 color: #fff;
 border: 1px solid #000;
 font-family: "Inter Display", "Inter Display Placeholder", sans-serif;
 font-size: 13px;
 font-weight: 700;
 line-height: 1;
 overflow: hidden;
 transition: color 0.28s ease, background 0.28s ease, border-color 0.28s ease,
  transform 0.28s ease;
}
.btn-ebg::before {
 content: "";
 position: absolute;
 z-index: -1;
 left: 0;
 bottom: 0;
 width: 8px;
 height: 8px;
 background: #fff;
 transition: width 0.28s ease, height 0.28s ease;
}
.btn-ebg:hover {
 color: #000;
 transform: translateY(-2px);
}
.btn-ebg:hover::before {
 width: 100%;
 height: 100%;
}
.btn-light {
 background: #fff;
 color: #000;
 border-color: #fff;
}
.btn-light::before {
 background: #000;
}
.btn-light:hover {
 color: #fff;
}
.btn-ghost {
 background: transparent;
 color: #000;
 border-color: #000;
}
.btn-ghost::before {
 background: #000;
}
.btn-ghost:hover {
 color: #fff;
}
.link-arrow {
 display: inline-flex;
 align-items: center;
 gap: 8px;
 font-family: "Inter Display", "Inter Display Placeholder", sans-serif;
 font-size: 13px;
 font-weight: 700;
}
.link-arrow::after {
 content: "↗";
 transition: transform 0.2s ease;
}
.link-arrow:hover::after {
 transform: translate(3px, -3px);
}

/* home hero */
.hero-home {
 position: relative;
 min-height: 100svh;
 height: 100svh;
 display: flex;
 align-items: flex-end;
 background: #586168;
 overflow: hidden;
}

.hero-video-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 1;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.hero-video-poster.is-hidden {
  opacity: 0;
}

/* Hero card poster ke upar rahe */
.hero-home .hero-card {
  z-index: 2;
}

.hero-home::after {
 content: "";
 position: absolute;
 inset: 0;
 background: linear-gradient(
  180deg,
  rgba(0, 0, 0, 0.12),
  transparent 46%,
  rgba(0, 0, 0, 0.18)
 );
 z-index: 1;
 pointer-events: none;
}
.hero-home > video,
.hero-home > img {
 position: absolute;
 inset: 0;
 width: 100%;
 height: 100%;
 object-fit: cover;
}
.hero-card {
 position: relative;
 z-index: 3;
 width: min(538px, calc(100% - 40px));
 min-height: 292px;
 margin: 0 0 0 0;
 padding: 32px 34px 24px;
 display: grid;
 grid-template-columns: 1fr auto;
 grid-template-rows: auto 1fr auto;
 gap: 14px;
 background: linear-gradient(
  135deg,
  rgba(255, 255, 255, 0.78),
  rgba(255, 255, 255, 0.98)
 );
 -webkit-backdrop-filter: blur(18px);
 backdrop-filter: blur(18px);
}
.hero-card h1 {
    font-family: "Inter Display", "Inter Display Placeholder", sans-serif;
 grid-column: 1/-1;
 font-size: 45px;
 font-weight: 500;
 letter-spacing: -0.01em;
 line-height: 1.55;
}
.hero-card h1 span {
 display: block;
 text-align: right;
}
.hero-card p {
 align-self: end;
 max-width: 365px;
 margin: 0;
 font-size: 17px;
 line-height: 1.35;
}
.hero-card .btn-ebg {
 align-self: end;
}

/* floating media cards */
.feature-grid {
 display: grid;
 grid-template-columns: repeat(3, minmax(0, 1fr));
 gap: clamp(16px, 2.4vw, 34px);
}
.feature-card {
 position: relative;
 min-height: 520px;
 overflow: hidden;
 background: #e9e9e7;
}
.feature-card img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.45s ease;
}
.feature-card::after {
 content: "";
 position: absolute;
 inset: 0;
 background: linear-gradient(transparent 42%, rgba(0, 0, 0, 0.64));
 opacity: 0.84;
}
.feature-card:hover img {
 transform: scale(1.045);
}
.feature-card .feature-copy {
 position: absolute;
 z-index: 2;
 left: 0;
 right: 12%;
 bottom: 0;
 padding: 26px;
 color: #fff;
}
.feature-card .feature-copy h3 {
 margin: 0 0 10px;
 font-size: 28px;
 font-weight: 400;
 letter-spacing: -0.035em;
}
.feature-card .feature-copy p {
 margin: 0;
 max-width: 520px;
 font-size: 14px;
 line-height: 1.45;
 color: #eee;
}

/* segment / brand sliders */
.section-heading-row {
 display: flex;
 align-items: flex-end;
 justify-content: space-between;
 gap: 30px;
 margin-bottom: 46px;
}


/* Swiper Base Containers */
.swiper-shell {
  position: relative;
}
.swiper {
  overflow: visible;
}
.swiper-card {
  height: 100%;
}

/* Swiper Controls Row (Arrows + Dots) */
.swiper-control-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 26px;
}
.swiper-controls {
  display: flex;
  gap: 8px;
}

/* Navigation Arrows */
.swiper-btn {
  width: 46px;
  height: 46px;
  display: grid !important; /* Ensures rendering */
  place-items: center;
  background: transparent;
  color: #fff; /* Arrow color */
  border: 1px solid #fff; /* Border color */
  opacity: 1 !important; /* Force visibility */
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}
.swiper-btn:hover {
  background: #fff;
  color: #000;
}

/* Pagination Track & Dots */
.swiper-pagination {
  position: static !important;
  display: flex;
  gap: 6px;
  justify-content: flex-end;
}
.swiper-pagination-bullet {
  margin: 0 !important;
  background-color: #444; /* Inactive line color */
  opacity: 1; /* Solid visibility */
  transition: background-color 0.25s ease;
}
.swiper-pagination-bullet-active {
  background-color: #0d6efd; /* Active blue color */
}

.segment-card {
 display: block;
}
.segment-media {
 position: relative;
 aspect-ratio: 1.65;
 overflow: hidden;
 background: #222;
}
.segment-media img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 transition: transform 0.65s ease, filter 0.35s ease;
}
.segment-card:hover .segment-media img {
 transform: scale(1.045);
 filter: saturate(1.12);
}
.segment-card h3 {
 margin: 13px 0 0;
 font-size: 15px;
 font-weight: 400;
}


/* Swiper Override */
.brand-tile.swiper-slide {
    flex: none;
    width: 100%;
}

/* Base Card */
.brand-tile {
    position: relative;
    height: 360px;
    overflow: hidden;
    background: #121212;
    display: block;
}

.brand-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: transform 0.65s ease;
}

/* Hide the old static gradient */
.brand-tile::after {
    display: none !important;
}

/* 1. Top Right Arrow (Hidden initially) */
.brand-tile .brand-arrow {
    position: absolute;
    top: 24px;
    right: 24px;
    color: #fff;
    font-size: 20px;
    z-index: 3;
    opacity: 0;
    /* Rotate to point top-right, and start slightly bottom-left for fly-in */
    transform: translate(-15px, 15px) rotate(-45deg); 
    transition: all 0.4s ease;
}

/* 2. Text Container (No background initially, Flexbox to wrap content perfectly) */
.brand-tile .meta {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    padding: 45px 24px;
    color: #fff;
    background: rgba(0, 0, 0, 0); 
    transition: all 0.4s ease;
}

.brand-tile .meta strong {
    font-size: 23px;
    font-weight: 400;
    margin: 0; /* Reset margin to prevent clipping */
    transition: text-shadow 0.4s ease, color 0.4s ease;
}

.brand-tile .meta small {
    margin-top: 4px;
    color: #e0e0e0;
    font-size: 14px;
    margin-bottom: 0; /* Reset margin */
}

/* ==================================
   HOVER ANIMATIONS
   ================================== */

/* Image Zoom */
.brand-tile:hover img {
    transform: scale(1.06);
}

/* Arrow flies into the top right */
.brand-tile:hover .brand-arrow {
    opacity: 1;
    transform: translate(0, 0) rotate(-45deg);
}

/* Bottom box becomes dark Glassmorphism */
.brand-tile:hover .meta {
    background: rgba(0, 0, 0, 0.65); 
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px);
    /* Border-top removed to kill the white line */
}

/* Text gets a shining glow effect */
.brand-tile:hover .meta strong {
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
    color: #fff;
}


/* Vision Section */
.vision-grid {
 display: grid;
 grid-template-columns: minmax(300px, 1fr) 1fr; /* Allows text side to be slightly narrower if needed, matching the screenshot ratio */
 align-items: stretch;
 gap: clamp(30px, 5vw, 60px); /* Creates the visible gap between text box and photo */
}

.vision-copy {
 background: var(--ebg-paper, #f4f4f6);
 padding: clamp(40px, 6vw, 80px) clamp(30px, 5vw, 60px); /* Generous padding to match the screenshot */
 display: flex;
 flex-direction: column;
 justify-content: flex-start;
 gap: 32px;
}

.vision-copy h2 {
 margin: 0;
 font-size: clamp(32px, 4vw, 42px); /* Matched to screenshot hierarchy */
 font-weight: 500;
 letter-spacing: -0.035em;
}

.vision-copy p {
 margin: 0;
 font-size: 16px;
 line-height: 1.6; /* Improved readability to match design */
 color: #444; /* Slightly softer black for body copy */
}

.vision-photo {
 min-height: 500px;
 background: #ddd;
 overflow: hidden;
 width: 100%; /* Ensures it fills its grid column completely */
}

.vision-photo img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 object-position: center 25%;
}

/* =========================================
   Scroll Expanding Video Section (Lag-Free)
   ========================================= */

.video-section-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0;
    overflow: hidden;
    margin: 64px 0;
}

.video-band {
    position: relative;
    aspect-ratio: 16 / 9;
    max-height: 760px;
    /* Default smaller width */
    width: calc(100% - 80px);
    max-width: var(--ebg-max);
    background: #111;
    overflow: hidden;
    /* Hardware-accelerated smooth transition */
    transition: width 0.8s cubic-bezier(0.25, 1, 0.5, 1), max-width 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Expanded State triggered by JS */
.video-band.is-expanded {
    width: 100%; 
    max-width: 100%; /* Forces it to go full edge-to-edge */
}

/* YouTube iframe 'object-fit: cover' hack */
.video-band iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 ratio */
    min-height: 100%;
    min-width: 177.77vh; 
    transform: translate(-50%, -50%);
    pointer-events: none; 
    border: none;
    z-index: 0;
}

.video-band::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.7));
    z-index: 1;
}

.video-band .video-copy {
    position: absolute;
    z-index: 2;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    /* Locks text to the grid even when background expands */
    width: min(calc(100% - 80px), var(--ebg-max)); 
    margin: 0 auto; 
    color: #fff;
}

.video-band .video-copy h2 {
    font-size: clamp(42px, 5vw, 76px);
    font-weight: 400;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin: 0 0 16px 0;
}

.video-band .video-copy p {
    font-size: clamp(16px, 2vw, 22px);
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 810px) {
    .video-band { width: calc(100% - 40px); }
    .video-band .video-copy { width: min(calc(100% - 40px), var(--ebg-max)); }
}

/* news */
.news-grid {
 display: grid;
 grid-template-columns: repeat(4, minmax(0, 1fr));
 gap: clamp(16px, 2vw, 28px);
}
.news-card {
 display: flex;
 flex-direction: column;
 border-top: 1px solid currentColor;
 padding-top: 14px;
 min-width: 0;
}
.news-card img {
 width: 100%;
 aspect-ratio: 1.22;
 object-fit: cover;
 background: #ddd;
}
.news-card h3 {
 margin: 12px 0 10px;
 font-size: 18px;
 line-height: 1.15;
 font-weight: 400;
 letter-spacing: -0.025em;
}
.news-card time {
 font-size: 12px;
 color: var(--ebg-muted);
 margin-top: auto;
}



/* common inner pages */

/* =========================================
   Universal Inner Page Hero (2026 Standards)
   ========================================= */

.seo-hero {
    position: relative;
    min-height: 55vh; /* Gives it a premium, cinematic height */
    display: flex;
    align-items: center;
    padding: 150px 0 90px; /* Space for the fixed header */
    overflow: hidden;
    color: #fff;
    border-bottom: none; /* Removing the old black border */
}

/* Background Image */
.seo-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.seo-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* 2026 Style Dark Gradient Fade (Left to Right) */
.seo-hero-gradient {
    position: absolute;
    inset: 0;
    /* Fades from solid black on the left to semi-transparent on the right */
    background: linear-gradient(90deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.75) 45%, rgba(0,0,0,0.1) 100%);
}

/* Content Container */
.seo-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px; /* Keeps the text from spanning too wide */
}

/* Kicker / Breadcrumb styling from your screenshot */
.seo-hero-content .kicker.text-lime {
    color: rgb(255, 255, 255);
    text-shadow: 0 1px 2px rgb(255 0 0 / 65%);
    letter-spacing: 0.15em; /* Wide, tech-style spacing */
    margin-bottom: 24px;
    font-size: 13px;
    font-family: "Inter Display", Arial, sans-serif;
}

/* Bold White Title */
.seo-hero-content h1.display-xl {
    margin: 0 0 20px 0;
    color: #fff;
    font-weight: 700; /* Extra bold to match the 'Mailer' typography */
    line-height: 1.05;
}

/* Soft Grey Subtitle */
.seo-hero-content p.copy-lg {
    margin: 0;
    color: #d1d1d1; /* Soft contrast against pure white */
    line-height: 1.6;
    max-width: 650px;
    font-size: clamp(18px, 2vw, 22px);
}

/* Mobile Adjustments for Inner Hero */
@media (max-width: 810px) {
    .seo-hero {
        min-height: 45vh;
        padding: 120px 0 60px;
    }
    .seo-hero-gradient {
        /* On mobile, gradient should fade top to bottom so text remains readable */
        background: linear-gradient(180deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.95) 50%, rgba(0,0,0,0.6) 100%);
    }
    .seo-hero-content h1.display-xl {
        font-size: clamp(40px, 10vw, 55px);
    }
}

.split-hero {
 display: grid;
 grid-template-columns: 1fr 1fr;
 min-height: 720px;
}
.split-hero .copy {
 padding: 100px var(--ebg-gutter) 76px;
 display: flex;
 flex-direction: column;
 justify-content: flex-end;
}
.split-hero .media {
 min-height: 600px;
 background: #e6e6e4;
 overflow: hidden;
}
.split-hero .media img,
.split-hero .media video {
 width: 100%;
 height: 100%;
 object-fit: cover;
}
.stats-row {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 border-block: 1px solid #000;
}
.stat {
 padding: 28px;
 border-right: 1px solid #000;
}
.stat:last-child {
 border-right: 0;
}
.stat strong {
 display: block;
 font-size: clamp(50px, 6vw, 88px);
 font-weight: 400;
 line-height: 0.9;
 letter-spacing: -0.06em;
}
.stat span {
 display: block;
 margin-top: 9px;
 font-size: 13px;
 color: #555;
}
.editorial-grid {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: clamp(28px, 6vw, 90px);
 align-items: start;
}
.editorial-media {
 min-height: 520px;
 overflow: hidden;
 background: #eee;
}
.editorial-media img {
 width: 100%;
 height: 100%;
 object-fit: cover;
}
.editorial-copy {
 padding-top: 10px;
}
.editorial-copy h2 {
 font-size: clamp(34px, 4vw, 58px);
 font-weight: 400;
 line-height: 0.98;
 letter-spacing: -0.045em;
 margin: 0 0 22px;
}
.editorial-copy p,
.editorial-copy li {
 font-size: 18px;
 line-height: 1.55;
 color: #444;
}
.editorial-copy ul {
 padding-left: 18px;
}
.timeline {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 border-top: 1px solid #000;
}
.timeline article {
 padding: 25px;
 border-right: 1px solid #000;
}
.timeline article:last-child {
 border-right: 0;
}
.timeline article small {
 font-size: 12px;
 color: #666;
}
.timeline h3 {
 font-size: 50px;
 font-weight: 400;
 margin: 28px 0 10px;
 letter-spacing: -0.05em;
}
.principles {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 border-top: 1px solid currentColor;
 border-left: 1px solid currentColor;
}
.principles article {
 min-height: 230px;
 padding: 28px;
 border-right: 1px solid currentColor;
 border-bottom: 1px solid currentColor;
}
.principles h3 {
 margin: 32px 0 0;
 font-size: 23px;
 font-weight: 400;
}
.team-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 24px;
}
.team-card {
  background: none;
  box-shadow: 0 1px 2px rgba(0,0,0,0.25);
}


.team-card .portrait {
 aspect-ratio: 0.86;
 overflow: hidden;
 background: #ddd;
}
.team-card .portrait img {
 width: 100%;
 height: 100%;
 object-fit: cover;
}
.team-card .meta {
 padding: 18px;
}
.team-card .meta strong {
 display: block;
 font-size: 21px;
 font-weight: 400;
}
.team-card .meta span {
 display: block;
 margin-top: 5px;
 font-size: 13px;
 color: #666;
}
.brand-category {
 padding: 34px 0 50px;
 border-top: 1px solid #000;
}
.brand-category-head {
 display: grid;
 grid-template-columns: minmax(220px, 1fr) 3fr;
 gap: 34px;
 margin-bottom: 20px;
}
.brand-category h2 {
 margin: 0;
 font-size: clamp(36px, 4.5vw, 62px);
 font-weight: 400;
 letter-spacing: -0.045em;
}
.brand-grid {
 display: grid;
 grid-template-columns: repeat(4, minmax(0, 1fr));
 gap: 16px;
}

.manifesto {
 max-width: 1150px;
 margin: 0;
 font-size: clamp(36px, 5.3vw, 84px);
 line-height: 0.98;
 letter-spacing: -0.055em;
}
.green-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 22px;
}
.green-card {
 background: #e9efe6;
 min-height: 500px;
}
.green-card img {
 height: 250px;
 width: 100%;
 object-fit: cover;
}
.green-card .copy {
 padding: 24px;
}
.green-card h3 {
 margin: 0 0 22px;
 font-size: 27px;
 font-weight: 400;
}
.green-card strong {
 font-size: 54px;
 font-weight: 400;
}
.office-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 28px;
}
.office-card {
 border: 1px solid #dededb;
 background: #fff;
}
.office-card img {
 width: 100%;
 aspect-ratio: 1.6;
 object-fit: cover;
}
.office-card .copy {
 padding: 20px;
}
.office-card h3 {
 margin: 0 0 8px;
 font-size: 25px;
 font-weight: 400;
}
.office-card p {
 margin: 0;
 color: #555;
 font-size: 14px;
 line-height: 1.5;
}
.faq {
 border-top: 1px solid #000;
}
.faq details {
 border-bottom: 1px solid #000;
 padding: 20px 0;
}
.faq summary {
 display: flex;
 justify-content: space-between;
 gap: 20px;
 cursor: pointer;
 font-size: 21px;
 font-weight: 400;
 list-style: none;
}
.faq summary::-webkit-details-marker {
 display: none;
}
.faq summary::after {
 content: "+";
 font-size: 28px;
 line-height: 1;
 font-weight: 400;
}
.faq details[open] summary::after {
 content: "−";
}
.faq details p {
 max-width: 800px;
 color: #555;
 line-height: 1.55;
}
.form-grid {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 20px;
}
.field {
 display: flex;
 flex-direction: column;
 gap: 7px;
}
.field.full {
 grid-column: 1/-1;
}
.field label {
 font-family: "Inter Display", "Inter Display Placeholder", sans-serif;
 font-size: 12px;
 font-weight: 700;
 text-transform: uppercase;
 letter-spacing: 0.06em;
}
.field input,
.field textarea,
.field select {
 width: 100%;
 border: 0;
 border-bottom: 1px solid #000;
 border-radius: 0;
 background: transparent;
 padding: 13px 2px;
 outline: none;
}
.field textarea {
 min-height: 130px;
 resize: vertical;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
 border-color: #6b8d58;
 box-shadow: 0 2px 0 #6b8d58;
}
.legal {
 max-width: 960px;
 margin-inline: auto;
}
.legal h1 {
 font-size: clamp(54px, 7vw, 110px);
 font-weight: 400;
 letter-spacing: -0.06em;
 line-height: 0.88;
}
.legal h2 {
 font-size: 28px;
 font-weight: 400;
 margin: 46px 0 12px;
}
.legal p,
.legal li {
 color: #3d3d3d;
 line-height: 1.6;
}
.legal ul {
 padding-left: 20px;
}
.blog-grid {
 display: grid;
 grid-template-columns: repeat(3, minmax(0, 1fr));
 gap: 28px;
}
.blog-card {
 display: flex;
 flex-direction: column;
 border-top: 1px solid #000;
 padding-top: 15px;
}
.blog-card .thumb {
 aspect-ratio: 1.35;
 background: #ececea;
 display: grid;
 place-items: center;
 overflow: hidden;
}
.blog-card .thumb img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 transition: transform 0.65s ease;
}
.blog-card:hover .thumb img {
 transform: scale(1.04);
}
.blog-card h3 {
 margin: 15px 0 9px;
 font-size: 25px;
 font-weight: 400;
 line-height: 1.06;
}
.blog-card time {
 font-size: 12px;
 color: #666;
}
.article {
 max-width: 900px;
 margin-inline: auto;
}
.article h1 {
 font-size: clamp(48px, 6.6vw, 94px);
 font-weight: 400;
 line-height: 0.92;
 letter-spacing: -0.06em;
}
.article .lead {
 font-size: clamp(22px, 2.2vw, 30px);
 line-height: 1.28;
 color: #444;
}
.article h2 {
 font-size: 34px;
 font-weight: 400;
 margin-top: 46px;
}
.article p,
.article li {
 font-size: 18px;
 line-height: 1.65;
 color: #3d3d3d;
}
.article figure {
 margin: 45px 0;
}
.article figure img {
 width: 100%;
}
.article figcaption {
 font-size: 12px;
 color: #777;
 margin-top: 8px;
}
.food-hero {
 display: grid;
 grid-template-columns: 1.2fr 0.8fr;
 min-height: 720px;
 background: #111;
 color: #fff;
}
.food-hero .copy {
 padding: 130px var(--ebg-gutter) 66px;
 display: flex;
 flex-direction: column;
 justify-content: flex-end;
}
.food-hero h1 {
 font-size: clamp(62px, 8vw, 124px);
 font-weight: 400;
 line-height: 0.84;
 letter-spacing: -0.065em;
 margin: 0;
}
.food-hero .lead-form {
 padding: 80px 50px;
 background: #f1ede4;
 color: #000;
 display: flex;
 flex-direction: column;
 justify-content: center;
}
.food-snapshot {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 border: 1px solid #000;
}
.food-snapshot article {
 padding: 30px;
 border-right: 1px solid #000;
}
.food-snapshot article:last-child {
 border-right: 0;
}
.food-snapshot strong {
 display: block;
 font-size: 48px;
 font-weight: 400;
 letter-spacing: -0.04em;
}
.food-snapshot span {
 display: block;
 margin-top: 8px;
 color: #555;
}
.thankyou {
 min-height: 75vh;
 display: grid;
 place-items: center;
 text-align: center;
 padding: 120px 20px;
}
.thankyou h1 {
 margin: 0;
 font-size: clamp(76px, 13vw, 190px);
 font-weight: 400;
 line-height: 0.8;
 letter-spacing: -0.07em;
}

/* motion */
.reveal {
 opacity: 0;
 transform: translateY(24px);
 transition: opacity 0.72s ease, transform 0.72s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.is-visible {
 opacity: 1;
 transform: none;
}
[data-delay="1"] {
 transition-delay: 0.06s;
}
[data-delay="2"] {
 transition-delay: 0.12s;
}
[data-delay="3"] {
 transition-delay: 0.18s;
}
.image-zoom {
 overflow: hidden;
}
.image-zoom img {
 transition: transform 0.75s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.image-zoom:hover img {
 transform: scale(1.04);
}
.marquee-strip {
 overflow: hidden;
 border-block: 1px solid #000;
}
.marquee-track {
 display: flex;
 width: max-content;
 animation: ebg-marquee 28s linear infinite;
}
.marquee-track span {
 padding: 16px 28px;
 font-family: "Inter Display", "Inter Display Placeholder", sans-serif;
 font-size: 12px;
 font-weight: 700;
 text-transform: uppercase;
 letter-spacing: 0.08em;
 white-space: nowrap;
}
@keyframes ebg-marquee {
 to {
  transform: translateX(-50%);
 }
}
@media (prefers-reduced-motion: reduce) {
 html {
  scroll-behavior: auto;
 }
 .reveal {
  opacity: 1;
  transform: none;
  transition: none;
 }
 .marquee-track {
  animation: none;
 }
 .image-zoom img,
 .feature-card img,
 .segment-media img,
 .brand-tile img,
 .blog-card .thumb img {
  transition: none;
 }
}
/* responsive */
@media (max-width: 1200px) {
 .feature-grid {
  grid-template-columns: repeat(2, 1fr);
 }
 .feature-card:last-child {
  grid-column: 1/-1;
 }
 .news-grid {
  grid-template-columns: repeat(2, 1fr);
 }
 .team-grid {
  grid-template-columns: repeat(2, 1fr);
 }
 .office-grid {
  grid-template-columns: repeat(2, 1fr);
 }
 .brand-grid {
  grid-template-columns: repeat(3, 1fr);
 }
 .timeline {
  grid-template-columns: repeat(2, 1fr);
 }
 .timeline article:nth-child(2) {
  border-right: 0;
 }
 .timeline article:nth-child(-n + 2) {
  border-bottom: 1px solid #000;
 }
 .editorial-grid {
  gap: 44px;
 }
}
@media (max-width: 810px) {
 :root {
  --header-height: 64px;
 }
 .section {
  padding: 62px 0;
 }
 .display-xl {
  font-size: clamp(49px, 15vw, 88px);
 }
 .hero-home {
  min-height: 680px;
  height: calc(100svh - 0px);
 }
 .hero-card {
  width: 100%;
  min-height: 276px;
  padding: 25px 20px 26px;
 }
 .hero-card h1 {
  font-size: 44px;
 }
 .hero-card p {
   font-size: 14px;
   max-width: 100%; /* Lets the text expand to fill its grid column */
   padding-right: 10px; /* Optional: adds a tiny bit of extra breathing room between the text and the button */
  }
 .feature-grid {
  grid-template-columns: 1fr;
  gap: 18px;
 }
 .feature-card:last-child {
  grid-column: auto;
 }
 .feature-card {
  min-height: 380px;
 }
 .section-heading-row {
  align-items: flex-start;
  flex-direction: column;
  margin-bottom: 30px;
 }
 .vision-grid {
  grid-template-columns: 1fr;
 }
 .vision-photo {
  min-height: 360px;
 }
 .vision-copy {
  padding: 28px;
 }
 .footer-top {
  grid-template-columns: 1fr;
  gap: 40px;
 }
 .footer-links {
  align-items: flex-start;
  flex-direction: column;
 }
 .split-hero {
  grid-template-columns: 1fr;
  min-height: auto;
 }
 .split-hero .copy {
  min-height: 560px;
  padding: 120px var(--ebg-gutter) 55px;
 }
 .split-hero .media {
  min-height: 360px;
 }
 .stats-row {
  grid-template-columns: 1fr;
 }
 .stat {
  border-right: 0;
  border-bottom: 1px solid #000;
 }
 .stat:last-child {
  border-bottom: 0;
 }
 .editorial-grid {
  grid-template-columns: 1fr;
  gap: 30px;
 }
 .editorial-media {
  min-height: 360px;
 }
 .principles {
  grid-template-columns: 1fr;
 }
 .brand-category-head {
  grid-template-columns: 1fr;
  gap: 14px;
 }
 .brand-grid {
  grid-template-columns: repeat(2, 1fr);
 }
 .green-grid,
 .office-grid {
  grid-template-columns: 1fr;
 }
 .form-grid {
  grid-template-columns: 1fr;
 }
 .field.full {
  grid-column: auto;
 }
 .blog-grid {
  grid-template-columns: 1fr;
 }
 .food-hero {
  grid-template-columns: 1fr;
 }
 .food-hero .copy {
  padding: 124px var(--ebg-gutter) 60px;
 }
 .food-hero .lead-form {
  padding: 58px var(--ebg-gutter);
 }
 .food-snapshot {
  grid-template-columns: 1fr;
 }
 .food-snapshot article {
  border-right: 0;
  border-bottom: 1px solid #000;
 }
 .food-snapshot article:last-child {
  border-bottom: 0;
 }
 .page-grid {
  grid-template-columns: 1fr;
 }
 .span-5,
 .span-6,
 .span-7,
 .span-8 {
  grid-column: auto;
 }
}
@media (max-width: 520px) {
 .brand-grid {
  grid-template-columns: 1fr;
 }
 .team-grid {
  grid-template-columns: 1fr;
 }
 .news-grid {
  grid-template-columns: 1fr;
 }
 .timeline {
  grid-template-columns: 1fr;
 }
 .timeline article,
 .timeline article:nth-child(2) {
  border-right: 0;
  border-bottom: 1px solid #000;
 }
 .timeline article:last-child {
  border-bottom: 0;
 }
 .hero-card h1 {
  font-size: 39px;
 }
 .feature-card {
  min-height: 350px;
 }
 .brand-tile {
  height: 330px;
 }
}

/* framework normalization: custom design always wins */
.btn,
.btn-primary,
.btn-dark,
.btn-light {
 font-family: "Inter Display", "Inter Display Placeholder", sans-serif;
 border-radius: 0;
}

/* Carousel host normalization */
.news-grid:has(> .ebg-swiper),
.blog-grid:has(> .ebg-swiper),
.team-grid:has(> .ebg-swiper),
.segment-grid:has(> .ebg-swiper) {
 display: block;
 gap: 0;
}
.ebg-swiper {
 width: 100%;
}
.ebg-swiper .swiper-slide {
 height: auto;
}
@media (max-width: 520px) {
 .ebg-swiper .swiper-slide {
  width: auto;
 }
}

/* =========================================================
   PEOPLE / PLANET / PROFIT — dark split section
   ========================================================= */
.ppp-section {
    padding: 90px 0;
}

.ppp-grid {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) 1.15fr;
    gap: clamp(30px, 5vw, 70px);
    align-items: center;
}

.ppp-media {
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.ppp-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ppp-heading {
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.05;
    margin: 0 0 28px;
}


/* =========================================================
   PPP LIST — arrow image bullets
   ========================================================= */
.ppp-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.ppp-list li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 10px 16px 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);

    font-size: 15px;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
}

/* Arrow image */
.ppp-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 20px;
    height: 20px;
    transform: translateY(-50%);

    background-image: url("../images/img/ebg_arrow_32x32.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* Vertical divider */
.ppp-list li:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    padding-right: 20px;
}

.ppp-list li:nth-child(even) {
    padding-left: 32px;
}

/* =========================================================
   PLANET — stacked full-bleed image cards
   ========================================================= */
.planet-section { padding: 90px 0; }
.planet-head { max-width: 720px; margin: 0 0 48px; }
.planet-head h2 { font-size: clamp(32px, 4vw, 50px); font-weight: 500; letter-spacing: -0.01em; margin: 0 0 14px; }
.planet-head p { font-size: 18px; color: #555; margin: 0; }
.planet-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    min-height: 420px;
    margin-bottom: 40px;
    background: #222;
}
.planet-card:last-child { margin-bottom: 0; }
.planet-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.planet-card-panel {
    position: relative;
    z-index: 2;
    max-width: 460px;
    margin: 40px;
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(6px);
    padding: 30px 32px;
    border-radius: 6px;
}
.planet-card-panel h3 { font-size: 25px; font-weight: 500; margin: 0 0 12px; letter-spacing: -0.01em; }
.planet-card-panel p { font-size: 15px; color: #444; font-weight: 300; margin: 0 0 24px; }
.planet-stats { display: flex; gap: 34px; border-top: 1px solid rgba(0,0,0,0.12); padding-top: 20px; }
.planet-stat strong { display: block; font-size: 34px; font-weight: 500; letter-spacing: -0.02em; color: #323e59; line-height: 1; margin-bottom: 6px; }
.planet-stat span { font-size: 13px; color: #565f78; line-height: 1.3; display: block; max-width: 160px; }

/* =========================================================
   PROFIT & BRANDS — dark mission + logo strip
   ========================================================= */
.mission-section { padding: 90px 0 70px; }
.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 56px;
}
.mission-heading { font-size: clamp(32px, 4vw, 50px); font-weight: 500; letter-spacing: -0.01em; margin: 0; text-align: right; }
.mission-copy { font-size: 18px; color: rgba(255,255,255,0.85); font-weight: 300; margin: 16px 0 0; text-align: right; }
.mission-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 10px;
    padding: 36px;
    display: flex;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
}
.mission-card .figure {
    font-size: 48px;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: #a9d94b;
    line-height: 1;
}
.mission-card .figure-label {
    font-size: 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-top: 10px;
}
.mission-card .figure-copy {
    flex: 1;
    min-width: 220px;
    font-size: 16px;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    border-left: 1px solid rgba(255,255,255,0.16);
    padding-left: 26px;
}
.logo-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: clamp(28px, 4vw, 56px);
    padding-top: 44px;
    border-top: 1px solid rgba(255,255,255,0.12);
}
.logo-strip span {
    font-family: "Inter Display", "Inter Display Placeholder", sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    font-size: 20px;
    color: rgba(255,255,255,0.55);
    white-space: nowrap;
}

/* =========================================================
   OUR BRANDS teaser carousel (reuses .brand-tile styling)
   ========================================================= */
.brands-teaser { padding: 90px 0; }
.brands-teaser-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.brands-teaser-head h2 { font-size: clamp(32px, 4vw, 50px); font-weight: 500; letter-spacing: -0.01em; margin: 0 0 10px; }
.brands-teaser-head p { max-width: 420px; color: #555; margin: 0; }
.brand-tile .meta { opacity: 1; background: rgba(0,0,0,0.35); backdrop-filter: blur(4px); }

/* =========================================================
   VOICES OF OUR PEOPLE — photo + quote swiper
   ========================================================= */
.voices-section { padding: 90px 0; }
.voices-grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 40px;
    align-items: stretch;
}
.voices-side {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.voices-side h2 { font-size: clamp(30px, 3.6vw, 44px); font-weight: 500; letter-spacing: -0.01em; margin: 0 0 14px; }
.voices-side p { color: rgba(255,255,255,0.65); margin: 0 0 22px; max-width: 320px; }
.voice-photo-wrap { position: relative; }
.voice-photo {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
}
.voice-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.voice-next-btn {
    position: absolute;
    bottom: -18px;
    right: -18px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fff;
    color: #0c0a0b;
    display: grid;
    place-items: center;
    border: none;
    cursor: pointer;
    font-size: 18px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}
.voice-quote-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: clamp(30px, 4vw, 56px);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.voice-quote-card p.quote {
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255,255,255,0.92);
    margin: 0 0 32px;
}
.voice-author strong { display: block; font-size: 18px; font-weight: 500; margin-bottom: 4px; }
.voice-author span { color: rgba(255,255,255,0.6); font-size: 14px; }

@media (max-width: 900px) {
    .ppp-grid, .mission-grid, .voices-grid { grid-template-columns: 1fr; }
    .mission-heading, .mission-copy { text-align: left; }
    .voices-grid { gap: 30px; }
    .voice-photo { max-width: 280px; }
    .planet-card-panel { margin: 20px; max-width: none; }
}
@media (max-width: 560px) {
    .ppp-list { grid-template-columns: 1fr; }
    .ppp-list li:nth-child(odd) { border-right: none; padding-right: 10px; }
    .ppp-list li:nth-child(even) { padding-left: 32px; }
    .planet-stats { flex-direction: column; gap: 16px; }
}

@media (min-width: 560px) {
    .ppp-list li:nth-child(even) { margin-left: 10px; }
}


/**/
/* Custom styling for the bullet list */
.ideology-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 2rem;
}
@media (min-width: 768px) {
    .ideology-list {
        grid-template-columns: 1fr 1fr;
    }
}
.ideology-list li {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 12px;
}
.ideology-list li i {
    font-size: 1.25rem;
}

/* Continuous Smooth Auto Slider (Marquee) */
.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.marquee-content {
    display: inline-flex;
    align-items: center;
    animation: scroll-marquee 40s linear infinite;
}

.marquee-content span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.marquee-content img {
    height: 42px;
    width: auto;
    max-width: 180px;
    display: block;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.7;
}


@keyframes scroll-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Responsive border utility */
@media (min-width: 768px) {
    .border-md-end {
        border-right: 1px solid rgba(255, 255, 255, 0.15) !important;
    }
}

/* Specifically invert swiper controls for the white background section */
.brands-teaser .swiper-btn {
    color: #000;
    border-color: #000;
}
.brands-teaser .swiper-btn:hover {
    background: #000;
    color: #fff;
}
.brands-teaser .swiper-pagination-bullet {
    background-color: #ccc; 
}
.brands-teaser .swiper-pagination-bullet-active {
    background-color: #000; 
}